commit
stringlengths 40
40
| old_file
stringlengths 4
237
| new_file
stringlengths 4
237
| old_contents
stringlengths 1
4.24k
| new_contents
stringlengths 1
4.87k
| subject
stringlengths 15
778
| message
stringlengths 15
8.75k
| lang
stringclasses 266
values | license
stringclasses 13
values | repos
stringlengths 5
127k
|
---|---|---|---|---|---|---|---|---|---|
f93813f89d077bca8c12d09cb833c98d0b461009
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 7.1
install:
- composer install
script:
- composer test
|
language: php
php:
- 7.0
- 7.1
- 7.2
install:
- composer install
script:
- composer test
|
Add PHP 7.2 into Travis CI Configuration
|
Add PHP 7.2 into Travis CI Configuration
|
YAML
|
mit
|
wandersonwhcr/romans
|
5bbd515bfe4b7f4bf83a5a80c818df2aa56a867d
|
.travis.yml
|
.travis.yml
|
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: 7.0
before_script:
- travis_retry composer selfupdate
- travis_retry composer install --no-interaction --prefer-source
script:
- ./vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover
|
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: 7.0
before_script:
- travis_retry composer selfupdate
- travis_retry composer install --no-interaction --prefer-source
script:
- ./vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- if [[ "$TRAVIS_PHP_VERSION" == "5.6" ]]; then vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi;
|
Use code coverage from PHP 5.6 test
|
Use code coverage from PHP 5.6 test
|
YAML
|
mit
|
treehouselabs/keystone-client,treehouselabs/keystone-client
|
aa6fd6c097255dff2dfac7475d6152177fa50573
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
before_install:
- sudo apt-get install liblapack-dev gfortran
- pip install -r requirements.txt
- pip install pytest
install:
- python setup.py install
script:
- (cd tests && py.test test*.py)
|
language: python
python:
- "2.7"
before_install:
- sudo apt-get update
- sudo apt-get install python-numpy python-scipy cython libatlas-dev liblapack-dev gfortran
- pip install -r requirements.txt
- pip install pytest
install:
- python setup.py install
script:
- (cd tests && py.test test*.py)
|
Move to apt-get install sci/numpy
|
Move to apt-get install sci/numpy
|
YAML
|
isc
|
r9y9/librosa,Cortexelus/librosa,r9y9/librosa,yunque/librosa,carlthome/librosa,imsparsh/librosa,decebel/librosa,ruohoruotsi/librosa,craffel/librosa,stefan-balke/librosa,imsparsh/librosa,ruohoruotsi/librosa,craffel/librosa,yunque/librosa,Cortexelus/librosa,carlthome/librosa,r9y9/librosa,ruohoruotsi/librosa,decebel/librosa,carlthome/librosa,Cortexelus/librosa,stefan-balke/librosa,craffel/librosa,stefan-balke/librosa
|
1001c1df84c2cb8098b8927b09be5afdd794f8e9
|
.travis.yml
|
.travis.yml
|
# Config file for automatic testing at travis-ci.org
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "./requirements.sh"
- "pip install -e ."
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
- "curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de405.bsp"
- "curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de421.bsp"
- "curl -O http://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/satellites/jup310.bsp"
script:
- "pip install unittest2"
- "assay --batch skyfield.tests"
- "ln *.bsp skyfield/documentation"
# - "if [ $TRAVIS_PYTHON_VERSION != 2.6 ] && [ $TRAVIS_PYTHON_VERSION != 3.3 ] ; then make -C skyfield/documentation doctest; fi"
|
# Config file for automatic testing at travis-ci.org
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "./requirements.sh"
- "pip install -e ."
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
- "curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de405.bsp"
- "curl -O ftp://ssd.jpl.nasa.gov/pub/eph/planets/bsp/de421.bsp"
- "curl -O https://naif.jpl.nasa.gov/pub/naif/generic_kernels/spk/satellites/jup310.bsp"
script:
- "pip install unittest2"
- "assay --batch skyfield.tests"
- "ln *.bsp skyfield/documentation"
# - "if [ $TRAVIS_PYTHON_VERSION != 2.6 ] && [ $TRAVIS_PYTHON_VERSION != 3.3 ] ; then make -C skyfield/documentation doctest; fi"
|
Correct method of curl request from Travis CI
|
Correct method of curl request from Travis CI
|
YAML
|
mit
|
skyfielders/python-skyfield,skyfielders/python-skyfield
|
c52c621acd1d3756637d64624fd9bfd7f6534b14
|
.travis.yml
|
.travis.yml
|
language: c
compiler:
- clang
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq automake debootstrap libtool lsb-release
script: ./autogen.sh && ./configure && make && make test
env:
- TEST_DEBOOTSTRAP=1
|
language: c
compiler:
- clang
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq automake debootstrap libtool lsb-release
script: ./autogen.sh && ./configure && make && make test
env:
- TEST_DEBOOTSTRAP=1
branches:
except:
- /^archive\//
- /^stash\//
|
Exclude some branches for Travis
|
Exclude some branches for Travis
|
YAML
|
lgpl-2.1
|
giuliolunati/fakechroot,giuliolunati/fakechroot,andrewgregory/fakechroot,andrewgregory/fakechroot,giuliolunati/fakechroot,andrewgregory/fakechroot
|
34b35a6a8ee8a3d86dc044d647e9f124a834812d
|
.travis.yml
|
.travis.yml
|
language: python
python:
- '3.5'
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=flask_forecaster setup.py test
after_success: coveralls
deploy:
- provider: cloudfoundry
edge: true
api: https://api.run.pez.pivotal.io
username: $CF_USERNAME
password: $CF_PASSWORD
organization: labs-playground
space: Jonathan Sharpe
manifest: manifest.yml
|
language: python
python:
- '3.5'
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=flask_forecaster setup.py test
after_success: coveralls
deploy:
- provider: cloudfoundry
edge: true
api: https://api.run.pivotal.io
username: $CF_USERNAME
password: $CF_PASSWORD
organization: labs-playground
space: Jonathan Sharpe
manifest: manifest.yml
|
Switch to labs-playground for deployment (2)
|
Switch to labs-playground for deployment (2)
|
YAML
|
isc
|
textbook/flask-forecaster,textbook/flask-forecaster
|
96b66b71b98e7cb61defe72db2b5fbe13c8e5e91
|
playbook/roles/wkhtmltopdf/tasks/main.yml
|
playbook/roles/wkhtmltopdf/tasks/main.yml
|
---
- name: Install needed packages to run wkhtmltopdf
yum:
name={{ item }}
state=present
with_items:
- openssl
- xorg-x11-server-Xorg
- xorg-x11-server-Xvfb
- fontconfig
- libXrender
- libXext
- xorg-x11-fonts-Type1
- xorg-x11-fonts-75dpi
- freetype
- libpng
- zlib
- name: Download wktohtmlpdf
get_url:
url: https://downloads.wkhtmltopdf.org/0.12/0.12.3/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
dest: /tmp/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
- name: Unpack wktohtmlpdf
shell: cd /tmp && tar xf "/tmp/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz" wkhtmltox/bin/wkhtmltopdf
- shell: mv /tmp/wkhtmltox/bin/wkhtmltopdf /usr/bin/wkhtmltopdf && chmod 755 /usr/bin/wkhtmltopdf
- copy:
src=xvfb.service
dest=/etc/systemd/system/xvfb.service
notify:
- restart xvfb
- shell:
systemctl daemon-reload
- name: Start xvfb
service: name=xvfb state=started enabled=yes
|
---
- name: Install needed packages to run wkhtmltopdf
yum:
name={{ item }}
state=present
with_items:
- openssl
- xorg-x11-server-Xorg
- xorg-x11-server-Xvfb
- fontconfig
- libXrender
- libXext
- xorg-x11-fonts-Type1
- xorg-x11-fonts-75dpi
- freetype
- libpng
- zlib
- name: Download wktohtmlpdf
get_url:
url: https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.4/wkhtmltox-0.12.4_linux-generic-amd64.tar.xz
dest: /tmp/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
- name: Unpack wktohtmlpdf
shell: cd /tmp && tar xf "/tmp/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz" wkhtmltox/bin/wkhtmltopdf
- shell: mv /tmp/wkhtmltox/bin/wkhtmltopdf /usr/bin/wkhtmltopdf && chmod 755 /usr/bin/wkhtmltopdf
- copy:
src=xvfb.service
dest=/etc/systemd/system/xvfb.service
notify:
- restart xvfb
- shell:
systemctl daemon-reload
- name: Start xvfb
service: name=xvfb state=started enabled=yes
|
Change wkhtmltopdf to github release page because the website is offline causing the role to fail.
|
Change wkhtmltopdf to github release page because the website is offline causing the role to fail.
|
YAML
|
mit
|
wunderkraut/WunderMachina,wunderkraut/WunderMachina,wunderkraut/WunderMachina,wunderkraut/WunderMachina
|
d014e57883031b87829f64ecb7e77237622d149c
|
.travis.yml
|
.travis.yml
|
language: python
addons:
apt:
config:
retries: true
cache:
apt: true
pip: true
matrix:
include:
- os: linux
dist: xenial
python: 2.7
env: TOXENV=py27
name: "2.7 Xenial"
- os: linux
dist: xenial
python: 3.5
env: TOXENV=py35
name: "3.5 Xenial"
- os: linux
dist: xenial
python: 3.6
env: TOXENV=py36
name: "3.6 Xenial"
- os: linux
dist: xenial
python: 3.7
env: TOXENV=py37
name: "3.7 Xenial"
- os: linux
dist: bionic
python: 3.7
env: TOXENV=py37-pre-commit
name: "3.7 Bionic"
before_install:
- sudo apt-get install -y tesseract-ocr
- sudo apt-get install -y tesseract-ocr-fra
- tesseract --version
- tesseract --list-langs
install:
pip install tox
script:
tox
notifications:
email: false
|
language: python
addons:
apt:
config:
retries: true
cache:
apt: true
pip: true
matrix:
include:
- os: linux
dist: xenial
python: 2.7
env: TOXENV=py27
name: "2.7 Xenial"
- os: linux
dist: xenial
python: 3.5
env: TOXENV=py35
name: "3.5 Xenial"
- os: linux
dist: xenial
python: 3.6
env: TOXENV=py36
name: "3.6 Xenial"
- os: linux
dist: xenial
python: 3.7
env: TOXENV=py37
name: "3.7 Xenial"
- os: linux
dist: bionic
python: 3.8
env: TOXENV=py38-pre-commit
name: "3.8 Bionic"
before_install:
- sudo apt-get install -y tesseract-ocr
- sudo apt-get install -y tesseract-ocr-fra
- tesseract --version
- tesseract --list-langs
install:
pip install tox
script:
tox
notifications:
email: false
|
Add python 3.8 CI build config
|
Add python 3.8 CI build config
|
YAML
|
apache-2.0
|
madmaze/pytesseract
|
eb4a72c7f99451c2ed6be8c14dc0262cd4f2900c
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1
- 2.2
- rbx-2
- ruby-head
- jruby-head
env:
- COVERAGE=true JRUBY_OPTS=--debug
sudo: false
cache: bundler
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.6.10.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-2.6.10/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null &
- bundle exec rake errbit:bootstrap
script:
- bundle exec rspec
- bundle exec rubocop --lint
matrix:
allow_failures:
- rvm: rbx-2
- rvm: ruby-head
- rvm: jruby-head
|
language: ruby
rvm:
- 2.1
- 2.2
- 2.3.0
- rbx-2
- ruby-head
- jruby-head
env:
- COVERAGE=true JRUBY_OPTS=--debug
sudo: false
cache: bundler
before_script:
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-2.6.10.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-2.6.10/bin/mongod --dbpath /tmp/data --bind_ip 127.0.0.1 --auth &> /dev/null &
- bundle exec rake errbit:bootstrap
script:
- bundle exec rspec
- bundle exec rubocop --lint
matrix:
allow_failures:
- rvm: rbx-2
- rvm: ruby-head
- rvm: jruby-head
|
Test against Ruby 2.3.0 on Travis CI
|
Test against Ruby 2.3.0 on Travis CI
|
YAML
|
mit
|
mikk150/errbit,Cloud-Temple/errbit,rud/errbit,bonanza-market/errbit,3zcurdia/errbit,francetv/errbit,errbit/errbit,errbit/errbit,wombatsecurity/errbit,rud/errbit,openSUSE/errbit,stevecrozz/errbit,startdatelabs/errbit,Cloud-Temple/errbit,subvisual/errbit,espnbr/errbit,bonanza-market/errbit,mvz/errbit,mvz/errbit,fusco/errbit,subvisual/errbit,jordoh/errbit,threatsim/errbit,openSUSE/errbit,wombatsecurity/errbit,fusco/errbit,openSUSE/errbit,threatsim/errbit,jordoh/errbit,cognoa/errbit,ninech/errbit,diowa/errbit,bengler/errbit,errbit/errbit,dwilkie/errbit,mak-it/errbit,iFixit/errbit,3zcurdia/errbit,rightscale/errbit,espnbr/errbit,jordoh/errbit,ninech/errbit,rud/errbit,shyftplan/errbit,diowa/errbit,subvisual/errbit,shyftplan/errbit,mikk150/errbit,mak-it/errbit,disvelop/errbit,rightscale/errbit,bengler/errbit,Cloud-Temple/errbit,threatsim/errbit,wombatsecurity/errbit,cognoa/errbit,espnbr/errbit,micred/errbit,threatsim/errbit,francetv/errbit,3zcurdia/errbit,francetv/errbit,disvelop/errbit,dwilkie/errbit,startdatelabs/errbit,bengler/errbit,startdatelabs/errbit,ninech/errbit,micred/errbit,micred/errbit,iFixit/errbit,bonanza-market/errbit,subvisual/errbit,mak-it/errbit,disvelop/errbit,mikk150/errbit,stevecrozz/errbit,diowa/errbit,cognoa/errbit,fusco/errbit,iFixit/errbit,mvz/errbit,wombatsecurity/errbit,rightscale/errbit,dwilkie/errbit,stevecrozz/errbit,shyftplan/errbit
|
17c695f20f5e026a5fd866050cbfd54327228ec8
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
# command to install dependencies
install:
- "pip install ."
- "pip install -r requirements.txt"
# command to run tests
script: nosetests
|
language: python
python:
- "2.7"
# command to install dependencies
install:
# - "pip install ."
- "pip install -r requirements.txt"
# command to run tests
script: nosetests
|
Remove the install of the project
|
Remove the install of the project
Project is not yet installable.
|
YAML
|
mit
|
samueljackson92/major-project,samueljackson92/major-project,samueljackson92/major-project,samueljackson92/major-project
|
5e14f84d7220f52aae07f87c797014b7e5816e24
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: nosetests
|
language: python
python:
- "2.7"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: nosetests
|
Remove Travis CI support for Python 2.6
|
Remove Travis CI support for Python 2.6
|
YAML
|
mit
|
aryeh/py-authorize,ClearcodeHQ/py-authorize,uglycitrus/py-authorize,vcatalano/py-authorize
|
2166e428f43164d546a3b7497c04ddf0c97edc1a
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
- oraclejdk9
os:
- linux
script: mvn clean install -Prun-its
after_success:
- mvn jacoco:report coveralls:report
|
language: java
jdk:
- openjdk8
- openjdk9
- openjdk11
- openjdk-ea
os:
- linux
script: mvn clean install -Prun-its
after_success:
- mvn jacoco:report coveralls:report
|
Add other JDK versions in Travis build
|
Add other JDK versions in Travis build
|
YAML
|
apache-2.0
|
Zlika/reproducible-build-maven-plugin,Zlika/reproducible-build-maven-plugin
|
58c5789b73b61e9d65d3a6d0583cc53490d1290c
|
.travis.yml
|
.travis.yml
|
language: cpp
dist: trusty
sudo: required
matrix:
include:
- os: linux
compiler: gcc
# - os: linux
#compiler: clang
script:
- (cd bigtable/api && cmake . && make)
addons:
apt:
packages:
- vim
- curl
- git-core
- make
- gcc
- g++
- build-essential
- autoconf
- automake
- autoconf-archive
- libtool
- pkg-config
- cmake
- clang++-3.9
# Cache the grpc directory because building it takes so long ...
cache:
directories:
- grpc-build
install:
# Make clang++-3.9 available as clang++
- sudo update-alternatives --install \
/usr/bin/clang clang /usr/bin/clang-3.9 100
- sudo update-alternatives --install \
/usr/bin/clang++ clang++ /usr/bin/clang++-3.9 100
# If needed clone the grpc directory
- test -d grpc-build/grpc/.git || git clone https://github.com/grpc/grpc.git grpc-build/grpc
# needed or not, update the grpc directory ...
- (cd grpc-build/grpc && git pull && git submodule update --init)
# build and install in $HOME/local
- (cd grpc-build/grpc && make -j 2 && sudo make install)
- (cd grpc-build/grpc/third_party/protobuf && sudo make install)
notifications:
email: false
|
language: cpp
dist: trusty
sudo: required
matrix:
include:
- os: linux
compiler: gcc
# - os: linux
#compiler: clang
script:
- (cd bigtable/api && cmake . && make)
addons:
apt:
packages:
- vim
- curl
- git-core
- make
- gcc
- g++
- build-essential
- autoconf
- automake
- autoconf-archive
- libtool
- pkg-config
- cmake
- clang++-3.9
# Cache the grpc directory because building it takes so long ...
cache:
directories:
- grpc-build
install:
# Make clang++-3.9 available as clang++
- sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-3.9 100
- sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.9 100
# If needed clone the grpc directory
- test -d grpc-build/grpc/.git || git clone https://github.com/grpc/grpc.git grpc-build/grpc
# needed or not, update the grpc directory ...
- (cd grpc-build/grpc && git pull && git submodule update --init)
# build and install in $HOME/local
- (cd grpc-build/grpc && make -j 2 && sudo make install)
- (cd grpc-build/grpc/third_party/protobuf && sudo make install)
notifications:
email: false
|
Join update-alternatives command to one line.
|
Join update-alternatives command to one line.
Seems the backslash at end of line confused things.
|
YAML
|
apache-2.0
|
GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples,GoogleCloudPlatform/cpp-samples
|
c793a932b67488b03557315af261a64d0cce1f25
|
src/main/resources/application.yaml
|
src/main/resources/application.yaml
|
info:
app:
name: JVM Bloggers
description: Application to spread info about polish blogging JVM Developers
spring:
mandatory-file-encoding: UTF-8
jpa.hibernate.ddl-auto: validate
liquibase.change-log: classpath:db/changelog/db.changelog.xml
server.compression:
enabled: true
mime-types: application/atom+xml,text/html,text/xml,text/plain,text/css,text/javascript,application/javascript
bloggers.data.file.url: https://raw.githubusercontent.com/jvm-bloggers/jvm-bloggers/master/src/main/resources/blogs/bloggers.json
companies.data.file.url: https://raw.githubusercontent.com/jvm-bloggers/jvm-bloggers/master/src/main/resources/blogs/companies.json
youtube.data.file.url: https://raw.githubusercontent.com/jvm-bloggers/jvm-bloggers/master/src/main/resources/blogs/videos.json
generated.rss.entries.limit: 50
items.pagination.size: 15
application.baseUrl: http://jvm-bloggers.com
# Logging
logging.level.root: INFO
logging.level.com.jvm_bloggers: INFO
scheduler.fetch-bloggers-data: 0 0 7,9,11,13,15,17,19,21,23 * * *
scheduler.fetch-rss-for-new-blogs: 0 30 * * * *
scheduler.publish-new-issue: 0 0 13 * * FRI
|
info:
app:
name: JVM Bloggers
description: Application to spread info about polish blogging JVM Developers
spring:
mandatory-file-encoding: UTF-8
jpa.hibernate.ddl-auto: validate
liquibase.change-log: classpath:db/changelog/db.changelog.xml
server.compression:
enabled: true
mime-types: application/atom+xml,text/html,text/xml,text/plain,text/css,text/javascript,application/javascript
bloggers.data.file.url: https://raw.githubusercontent.com/jvm-bloggers/jvm-bloggers/master/src/main/resources/blogs/bloggers.json
companies.data.file.url: https://raw.githubusercontent.com/jvm-bloggers/jvm-bloggers/master/src/main/resources/blogs/companies.json
youtube.data.file.url: https://raw.githubusercontent.com/jvm-bloggers/jvm-bloggers/master/src/main/resources/blogs/videos.json
generated.rss.entries.limit: 50
items.pagination.size: 15
application.baseUrl: http://jvm-bloggers.com
# Logging
logging.level.root: INFO
logging.level.com.jvm_bloggers: INFO
scheduler.fetch-bloggers-data: 0 0 7,9,11,13,15,17,19,21,23 * * *
scheduler.fetch-rss-for-new-blogs: 0 30 * * * *
scheduler.publish-new-issue: 0 0 11 * * FRI
|
Move publication to original time
|
Move publication to original time
|
YAML
|
mit
|
szpak/jvm-bloggers,tdziurko/jvm-bloggers,jvm-bloggers/jvm-bloggers,szpak/jvm-bloggers,tdziurko/jvm-bloggers,kraluk/jvm-bloggers,jvm-bloggers/jvm-bloggers,szpak/jvm-bloggers,tdziurko/jvm-bloggers,jvm-bloggers/jvm-bloggers,kraluk/jvm-bloggers,tdziurko/jvm-bloggers,szpak/jvm-bloggers,jvm-bloggers/jvm-bloggers,kraluk/jvm-bloggers,kraluk/jvm-bloggers
|
2ceae98280a3da098da9751713762039bbf0fee1
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
|
language: ruby
rvm:
- "1.9.3"
- "2.0"
- "2.1"
- "2.2"
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
|
Add 2.2, ruby-head/jruby-head, allow failures
|
Add 2.2, ruby-head/jruby-head, allow failures
If required rubies fail tests, skip remaining tests via fast_finish.
|
YAML
|
mit
|
kbrock/awesome_spawn,ManageIQ/awesome_spawn
|
6c75519b8289ac849a8e677712f27068a8e6da6d
|
.travis.yml
|
.travis.yml
|
language: python
python:
- '3.5'
- '3.6'
env:
- HASS=0.64.3
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
|
language: python
python:
- '3.5'
- '3.6'
env:
- HASS=0.65.3
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
|
Update Home Assistant to 0.65.3 for config checks in Travis CI
|
Update Home Assistant to 0.65.3 for config checks in Travis CI
|
YAML
|
mit
|
davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config
|
533ae8881e73704b2b7e0096448d2bfbead9ea5f
|
.travis.yml
|
.travis.yml
|
language: go
go:
- tip
- 1.6
- 1.5
- 1.4
- 1.3
- 1.2
|
language: go
go:
- tip
- 1.10
- 1.9
- 1.8
- 1.7
- 1.6
- 1.5
- 1.4
- 1.3
- 1.2
|
Test on Go 1.7 - 1.10
|
Test on Go 1.7 - 1.10
|
YAML
|
mit
|
mineo/gocaa
|
a3eab3d1a1630aae44fbd376a97e38ee39a5bc95
|
.travis.yml
|
.travis.yml
|
language: android
android:
components:
- build-tools-22.0.1
- android-22
- extra
script: ./gradlew test
|
language: android
sudo: false
android:
components:
- build-tools-22.0.1
- android-22
- extra
script: ./gradlew test
|
Migrate to new infrastracture on Travis
|
Migrate to new infrastracture on Travis
|
YAML
|
apache-2.0
|
MaTriXy/android-db-commons,futuresimple/android-db-commons,futuresimple/android-db-commons
|
c5229e037d8432464d5649f945138e3ce4f942ed
|
.travis.yml
|
.travis.yml
|
language: go
env:
- DEP_VERSION="0.3.2"
before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
install:
- dep ensure
go:
- 1.7
- 1.8
- 1.9
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
before_script:
- go vet ./...
script:
- go test -v
|
language: go
env:
- DEP_VERSION="0.3.2"
before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
install:
- dep ensure
go:
- 1.8
- 1.9
- 1.10
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
before_script:
- go vet ./...
script:
- go test -v
|
Test on 1.10, stop testing on 1.7
|
Test on 1.10, stop testing on 1.7
|
YAML
|
mit
|
caio/go-tdigest
|
9c1ead2f70ddd512c24f3e58bd625093aeaedb13
|
.travis.yml
|
.travis.yml
|
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- rbx-18mode
- rbx-19mode
gemfile:
- Gemfile
- ci/Gemfile.capybara1-0
- ci/Gemfile.capybara1-1
|
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- rbx-18mode
gemfile:
- Gemfile
- ci/Gemfile.capybara1-0
- ci/Gemfile.capybara1-1
|
Revert "try rbx 1.9 mode"
|
Revert "try rbx 1.9 mode"
This reverts commit 02ea570c790bd320721ba584b91e74fd2d7f0ddc.
|
YAML
|
mit
|
SolarCS/poltergeist,roblander/poltergeist,TalentBox/poltergeist,airservice/poltergeist,martijnrusschen/poltergeist,exchangegroup/poltergeist,tribble/poltergeist,ryansch/poltergeist,teampoltergeist/poltergeist,mattrw89/poltergeist,sferik/poltergeist,Nuru/poltergeist,Nuru/poltergeist,tribble/poltergeist,tribble/poltergeist,jjoos/poltergeist,OneTechLP/Poltergeist,TalentBox/poltergeist,geminiyellow/poltergeist,ducthanh/poltergeist,OneTechLP/Poltergeist,rafaelfranca/poltergeist,exchangegroup/poltergeist,ducthanh/poltergeist,thomasrogers03/poltergeist,ryansch/poltergeist,tribble/poltergeist,mattrw89/poltergeist,jjoos/poltergeist,irfanah/poltergeist,afn/poltergeist,geminiyellow/poltergeist,dv/poltergeist,dv/poltergeist,rafaelfranca/poltergeist,geminiyellow/poltergeist,exchangegroup/poltergeist,martijnrusschen/poltergeist,airservice/poltergeist,Nuru/poltergeist,roblander/poltergeist,vietch2612/poltergeist,martijnrusschen/poltergeist,teampoltergeist/poltergeist,irfanah/poltergeist,thomasrogers03/poltergeist,thomasrogers03/poltergeist,ducthanh/poltergeist,ryansch/poltergeist,roblander/poltergeist,bigloser/poltergeist,teampoltergeist/poltergeist,airservice/poltergeist,irfanah/poltergeist,exviva/poltergeist,rafaelfranca/poltergeist,exchangegroup/poltergeist,bigloser/poltergeist,dv/poltergeist,TalentBox/poltergeist,Nuru/poltergeist,irfanah/poltergeist,geminiyellow/poltergeist,exviva/poltergeist,roblander/poltergeist,teampoltergeist/poltergeist,vietch2612/poltergeist,sferik/poltergeist,ryansch/poltergeist,OneTechLP/Poltergeist,SolarCS/poltergeist,SolarCS/poltergeist,sferik/poltergeist,TalentBox/poltergeist,martijnrusschen/poltergeist,SolarCS/poltergeist,afn/poltergeist,twalpole/poltergeist,jjoos/poltergeist,bigloser/poltergeist,twalpole/poltergeist,dv/poltergeist,exviva/poltergeist,mattrw89/poltergeist,twalpole/poltergeist,rafaelfranca/poltergeist,thomasrogers03/poltergeist,vietch2612/poltergeist,ducthanh/poltergeist,afn/poltergeist,airservice/poltergeist,vietch2612/poltergeist,afn/poltergeist,bigloser/poltergeist,mattrw89/poltergeist,twalpole/poltergeist,jjoos/poltergeist
|
96cdb5b56e89c2ae15e38630e4f99b57c838983f
|
config/yaml/parameters.yml
|
config/yaml/parameters.yml
|
database:
driver: pdo_mysql
username: root
password: root
dbname: cms
host: localhost
mail:
char_set: utf-8
host:
smtp_auth: true
username:
password:
port: 587
|
database:
driver: pdo_mysql
username: cmsv4
password: cmsv4
dbname: cmsv4
host: localhost
mail:
char_set: utf-8
host:
smtp_auth: true
username:
password:
port: 587
|
Update default credentials for vagrant box
|
Update default credentials for vagrant box
|
YAML
|
mit
|
rmatil/angular-cms,rmatil/angular-cms
|
a78d641c6c4c89e0236dad1f1b8ceff10b860cf6
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- 0.12
- 4.1
|
language: node_js
sudo: false
node_js:
- 4
- 5
|
Build only reasonable node versions
|
Build only reasonable node versions
|
YAML
|
mit
|
StephanHoyer/mithril-query
|
48fc80518f434576492c9388a892bd76fc5cba83
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.6
- 1.7
- 1.8
install:
- go get github.com/nsf/termbox-go
sudo: false
os:
- linux
- osx
|
language: go
go:
- 1.7
- 1.8
- 1.9
install:
- go get github.com/nsf/termbox-go
sudo: false
os:
- linux
- osx
|
Drop CI tests for Go 1.6 and add Go 1.9
|
Drop CI tests for Go 1.6 and add Go 1.9
|
YAML
|
mit
|
maxzender/jv
|
947d799554e394d80271a17d62482e635ea10a58
|
roles/personalized/tmux/tasks/main.yml
|
roles/personalized/tmux/tasks/main.yml
|
- name: Ensure that the desired git repository folder exists
file:
state: directory
path: "{{ git_repo_folder }}"
- name: Check if personal tmux configuration repository exists locally
stat:
path: "{{ git_repo_folder }}/config.tmux"
register: st
- name: Acquire personal tmux configuration
git:
repo: https://github.com/cmrosenberg/config.tmux.git
dest: "{{ git_repo_folder }}/config.tmux"
when: st.stat.isdir is not defined
- name: Link core configuration to ~/.tmux.conf
file:
state: link
src: "{{ git_repo_folder }}/config.tmux/core.conf"
dest: ~/.tmux.conf
- name: Link OS-specific pre-configuration to ~/.tmux.conf.os-specific
file:
state: link
src: "{{ git_repo_folder }}/config.tmux/osx.conf"
dest: ~/.tmux.conf.os-specific
when: ansible_distribution == "MacOSX"
- name: Link desired tmux color scheme to ~/.tmux.conf.colors
file:
state: link
src: "{{ git_repo_folder }}/config.tmux/colors/{{ tmux_colorscheme }}"
dest: ~/.tmux.conf.colors
- name: Create ~/.tmux.conf.local for local modifications
file:
state: touch
path: ~/.tmux.conf.local
|
- name: Ensure that the desired git repository folder exists
file:
state: directory
path: "{{ git_repo_folder }}"
- name: Check if personal tmux configuration repository exists locally
stat:
path: "{{ git_repo_folder }}/config.tmux"
register: st
- name: Acquire personal tmux configuration
git:
repo: https://github.com/cmrosenberg/config.tmux.git
dest: "{{ git_repo_folder }}/config.tmux"
when: st.stat.isdir is not defined
- name: Link core configuration to ~/.tmux.conf
file:
state: link
src: "{{ git_repo_folder }}/config.tmux/core.conf"
dest: ~/.tmux.conf
- name: Link OS-specific pre-configuration to ~/.tmux.conf.os-specific
file:
state: link
src: "{{ git_repo_folder }}/config.tmux/osx.conf"
dest: ~/.tmux.conf.os-specific
when: ansible_distribution == "MacOSX"
- name: Link OS-specific pre-configuration to ~/.tmux.conf.os-specific
file:
state: link
src: "{{ git_repo_folder }}/config.tmux/linux-bsd.conf"
dest: ~/.tmux.conf.os-specific
when: (ansible_os_family == "Debian") or (ansible_distribution == "FreeBSD")
- name: Link desired tmux color scheme to ~/.tmux.conf.colors
file:
state: link
src: "{{ git_repo_folder }}/config.tmux/colors/{{ tmux_colorscheme }}"
dest: ~/.tmux.conf.colors
- name: Create ~/.tmux.conf.local for local modifications
file:
state: touch
path: ~/.tmux.conf.local
|
Make personalized tmux role install new os-specific settings for BSD and Linux
|
Make personalized tmux role install new os-specific settings for BSD and Linux
|
YAML
|
mit
|
cmrosenberg/setup
|
a92bac27b97aeef626f43f2f82613831f7a28a90
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.9
- 0.8
- 0.6
before_install: "npm install -g bob"
script: "bob build"
|
language: node_js
node_js:
- 0.8
- 0.6
before_install: "npm install -g bob"
script: "bob build"
|
Drop 0.9 for now until Buster fixes compatibility issue.
|
Drop 0.9 for now until Buster fixes compatibility issue.
|
YAML
|
mit
|
cliffano/couchpenter
|
ef444a6b9689d91fbe063ccd41aa7090f01daf6c
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.7
- tip
script: go test -v
sudo: false
|
language: go
go:
- 1.8
- tip
script: go test -v
sudo: false
|
Build using current Go release.
|
Build using current Go release.
|
YAML
|
mit
|
tebeka/go2xunit,tebeka/go2xunit,tebeka/go2xunit
|
fe95dfd6dfe988d0073d4aff5266778612b5a8b3
|
csunplugged/at_a_distance/content/structure/lessons.yaml
|
csunplugged/at_a_distance/content/structure/lessons.yaml
|
parity-magic:
order-number: 1
# qr-codes:
# order-number: 2
# product-code-check-digits:
# order-number: 3
finite-state-automata:
order-number: 4
# image-representation:
# order-number: 5
binary-representation:
order-number: 6
stroop-effect:
order-number: 7
|
# parity-magic:
# order-number: 1
# qr-codes:
# order-number: 2
# product-code-check-digits:
# order-number: 3
finite-state-automata:
order-number: 4
# image-representation:
# order-number: 5
binary-representation:
order-number: 6
stroop-effect:
order-number: 7
|
Hide parity-magic lesson until ready for publishing
|
Hide parity-magic lesson until ready for publishing
|
YAML
|
mit
|
uccser/cs-unplugged,uccser/cs-unplugged,uccser/cs-unplugged,uccser/cs-unplugged
|
77cfff9c6037126200411b2d38fdd05707f56040
|
.travis.yml
|
.travis.yml
|
language: python
services:
- postgresql memcached
env:
- DATABASE_URL='postgres://postgres:@localhost:5432/robotix' DJANGO_SECRET_KEY='tT\xd7\xb06\xf7\x9b\xff\x0fZL\xca\xca\x11\xefM\xacr\xfb\xdf\xca\x9b' DJANGO_SETTINGS_MODULE='config.settings.production'
python:
- '3.4'
- '2.7'
- 'nightly'
addons:
postgresql: '9.3'
install:
- pip install -r requirements.txt
- pip install -r requirements/test.txt
before_script:
- python manage.py collectstatic --noinput
- psql -c 'create database robotix;' -U postgres
- psql robotix < database.sql
script:
- coverage run manage.py test
after_success:
- coveralls
|
language: python
services:
- postgresql memcached
env:
- DATABASE_URL='postgres://postgres:@localhost:5432/robotix' DJANGO_SECRET_KEY='tT\xd7\xb06\xf7\x9b\xff\x0fZL\xca\xca\x11\xefM\xacr\xfb\xdf\xca\x9b' DJANGO_SETTINGS_MODULE='config.settings.production'
python:
- '3.4'
- '2.7'
addons:
postgresql: '9.3'
install:
- pip install -r requirements.txt
- pip install -r requirements/test.txt
before_script:
- python manage.py collectstatic --noinput
- psql -c 'create database robotix;' -U postgres
- psql robotix < database.sql
script:
- coverage run manage.py test
after_success:
- coveralls
|
Drop TRAVIS builds for Python nightly
|
Drop TRAVIS builds for Python nightly
|
YAML
|
bsd-3-clause
|
narayanaditya95/Robotix,narayanaditya95/Robotix,narayanaditya95/Robotix,narayanaditya95/Robotix
|
276e55d980373100d2aedb83ef556cd795acee37
|
.travis.yml
|
.travis.yml
|
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
after_success:
- mvn clean cobertura:cobertura coveralls:report
|
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
after_success:
- mvn clean cobertura:cobertura coveralls:report
|
Add oraclejdk7 to Travis CI.
|
Add oraclejdk7 to Travis CI.
git-svn-id: 306be505b4acf4ccace778b4b2465237cc9581ba@1790598 13f79535-47bb-0310-9956-ffa450edef68
|
YAML
|
apache-2.0
|
apache/commons-logging,apache/commons-logging,apache/commons-logging
|
acafa98951cd15b6f496091bbb8ed93e29825531
|
.travis.yml
|
.travis.yml
|
# https://travis-ci.org/danielkoster/argosd
language: python
python:
- 3.4
- 3.5
install:
- pip install -r requirements-test.txt --quiet
script:
- nosetests tests -v --with-coverage --cover-package=argosd --cover-inclusive
- pep8 argosd
- pep8 tests
after_success:
- python-codacy-coverage -r coverage.xml
|
# https://travis-ci.org/danielkoster/argosd
language: python
python:
- 3.4
- 3.5
install:
- pip install -r requirements-test.txt --quiet
script:
- nosetests tests -v --with-coverage --cover-package=argosd --cover-inclusive --cover-xml
- pep8 argosd
- pep8 tests
after_success:
- python-codacy-coverage -r coverage.xml
|
Create XML coverage for Codacy
|
Create XML coverage for Codacy
|
YAML
|
mit
|
danielkoster/argosd
|
00cf471c5235dfbd8393d9817997dc762ec874c9
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev --no-interaction --prefer-source
- cp phpunit.xml.dist phpunit.xml
|
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- DOCTRINE_VERSION="2.2.*"
- DOCTRINE_VERSION="2.3.*"
- DOCTRINE_VERSION="dev-master"
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar require doctrine/orm:${DOCTRINE_VERSION} doctrine/dbal:${DOCTRINE_VERSION} doctrine/common:${DOCTRINE_VERSION} --dev --no-interaction --prefer-source
- cp phpunit.xml.dist phpunit.xml
|
Test on all doctrine branches
|
Test on all doctrine branches
|
YAML
|
mit
|
Prezent/doctrine-translatable
|
9a320a994744abf29a04d9d6e67b71844461d2ec
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
- 3.3
env:
- DJANGO=Django==1.4.13
- DJANGO=Django==1.5.8
- DJANGO=Django==1.6.5
- DJANGO=https://github.com/django/django/tarball/stable/1.7.x
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a --branch setup.py test
matrix:
exclude:
- python: 2.6
env: DJANGO=Django==1.6.5
- python: 2.6
env: DJANGO=https://github.com/django/django/tarball/stable/1.7.x
- python: 3.3
env: DJANGO=Django==1.4.13
after_success: coveralls
|
language: python
python:
- 2.6
- 2.7
- 3.3
env:
- DJANGO=Django==1.4.13
- DJANGO=Django==1.5.8
- DJANGO=Django==1.6.5
- DJANGO=https://github.com/django/django/tarball/stable/1.7.x
install:
- pip install --use-mirrors coverage coveralls $DJANGO
script: coverage run -a --branch setup.py test
matrix:
exclude:
- python: 2.6
env: DJANGO=Django==1.6.5
- python: 2.6
env: DJANGO=https://github.com/django/django/tarball/stable/1.7.x
- python: 3.3
env: DJANGO=Django==1.4.13
after_success: coveralls
|
Use single line for pip install in Travis
|
Use single line for pip install in Travis
|
YAML
|
mit
|
treyhunner/django-email-log,treyhunner/django-email-log
|
b74ee183571c9277e45e6d1313cd9cacc14a8535
|
.travis.yml
|
.travis.yml
|
language: python
python: 3.6
cache: pip
install:
- "pip install coveralls"
- "pip install -r requirements.txt"
before_script: # configure a headless display to test plot generation
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
# - flake8 .
# - pytest --cov=artistools
- coverage run --source artistools setup.py test
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
after_success:
# - codecov
- coveralls
git:
lfs_skip_smudge: false
|
language: python
python: 3.6
cache: pip
install:
- "pip install coveralls"
- "pip install -r requirements.txt"
before_script: # configure a headless display to test plot generation
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
# - flake8 .
# - pytest --cov=artistools
- coverage run --source artistools setup.py test
- find . -name ".coverage"
- pwd
after_script:
- ./cc-test-reporter after-build -t coverage.py --exit-code $TRAVIS_TEST_RESULT
after_success:
# - codecov
- coveralls
git:
lfs_skip_smudge: false
|
Add -t coverage.py to TravisCI config
|
Add -t coverage.py to TravisCI config
|
YAML
|
mit
|
lukeshingles/artistools,lukeshingles/artistools
|
6e712ce0a42bbc9e5b9de26649737773ddcabfba
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.8"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g [email protected]'
- npm install -g npm@latest
|
sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
|
Add node 0.12 and 0.11
|
Add node 0.12 and 0.11
use container based travis
|
YAML
|
mit
|
researchgate/grunt-changed
|
4b0b6f2262f420ff1c9681349c0691bf7eabad52
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install:
# Travis bundler versions are quite out of date and can cause install errors
# see: https://github.com/rubygems/rubygems/issues/1419
- gem update bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
- 2.3.0
- 2.4.0
- 2.5.0
- 2.6.0
env:
global:
secure: MBTxmpWCjrsNKPlOoFwJUMHze3GPMz8YCXQFQG3zJBh3WGNQnz4z91ra/1P/DClyVCxHGSFCOswxCNe4kJ2zAnPyQLqGSinXy9uDpqZQUEdaRoQbPnh4/bguZNSJ429gtTpMdDSNOgQ+Hra2EFnWwHA+rLF6ImksMsu3XGKGxGE=
|
language: ruby
before_install:
- gem update bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
- 2.3.0
- 2.4.0
- 2.5.0
- 2.6.0
env:
global:
secure: MBTxmpWCjrsNKPlOoFwJUMHze3GPMz8YCXQFQG3zJBh3WGNQnz4z91ra/1P/DClyVCxHGSFCOswxCNe4kJ2zAnPyQLqGSinXy9uDpqZQUEdaRoQbPnh4/bguZNSJ429gtTpMdDSNOgQ+Hra2EFnWwHA+rLF6ImksMsu3XGKGxGE=
- CC_TEST_REPORTER_ID=86c5edffe4c38e16cb1467e3220a4f3dfa0a0ac8fa6ee8fddd62e200245f4b77
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- bundle exec rspec
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
Add Code Climate test reporter hook
|
Add Code Climate test reporter hook
|
YAML
|
mit
|
DamirSvrtan/fasterer
|
13f21cf7caf54fcdd375980d396d52769c79b64f
|
.travis.yml
|
.travis.yml
|
---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.5.0" STRICT_VARIABLES="yes"
notifications:
email: false
|
---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes" ORDERING="random"
notifications:
email: false
|
Add support for Puppet 4.0
|
Add support for Puppet 4.0
|
YAML
|
apache-2.0
|
dhoppe/puppet-resolv,dhoppe/puppet-resolv
|
1ff42157c2599b67918f7427e9fd0f97b19e3794
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
before_script: cd test/
script: jjs -DNnClassLoader.debug=true test-all.js
|
language: java
jdk:
- oraclejdk8
- oraclejdk9
before_script: cd test/
script: jjs -DNnClassLoader.debug=true test-all.js
|
Add jdk9 testing to CI
|
Add jdk9 testing to CI
|
YAML
|
apache-2.0
|
NashornTools/NnClassLoader
|
9663e6ac9cd962ddcb99172a06f9cf0e37886516
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_install:
- phpenv rehash
- echo '' > ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- sh -c 'if [ $(php -r "echo PHP_MINOR_VERSION;") -le 4 ]; then echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- COMPOSER_ROOT_VERSION=dev-master composer self-update
- COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --no-interaction --dev install
script: phpunit
matrix:
fast_finish: true
allow_failures:
- php: hhvm
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
- hhvm-nightly
before_install:
- phpenv rehash
- echo '' > ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- sh -c 'if [ $(php -r "echo PHP_MINOR_VERSION;") -le 4 ]; then echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- COMPOSER_ROOT_VERSION=dev-master composer self-update
- COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --no-interaction --dev install
script: phpunit
notifications:
irc: "irc.freenode.org#ppi"
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
- php: hhvm-nightly
|
Add PHP 7 and hhvm-nightly to Travis build matrix
|
Add PHP 7 and hhvm-nightly to Travis build matrix
|
YAML
|
mit
|
ppi/framework,ppi/framework,BeastModeON/framework,omeripek/framework,BeastModeON/framework,omeripek/framework
|
8f7a3837c1c77c7a91a0481462edd61a8cfc732c
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.5"
- "2.6"
- "2.7"
- "3.1"
- "3.2"
- "3.3"
before_install:
- sudo apt-get install graphviz
install:
- pip install Sphinx --use-mirrors
- pip install pep8 --use-mirrors
before_script:
- pep8 --exclude=asizeof.py,metadata.py,bottle*.py --max-line-length=80 pympler
script:
- python setup.py try
- python setup.py install
- python setup.py test
- python run.py --doctest
- python run.py --html
|
language: python
python:
- "2.5"
- "2.6"
- "2.7"
- "3.1"
- "3.2"
before_install:
- sudo apt-get install graphviz python-tk
install:
- pip install Sphinx --use-mirrors
- pip install pep8 --use-mirrors
before_script:
- pep8 --exclude=asizeof.py,metadata.py,bottle*.py --max-line-length=80 pympler
script:
- python setup.py try
- python setup.py install
- python setup.py test
- python run.py --doctest
- python run.py --html
|
Remove Python 3.3 as it's not yet supported by Travis
|
Remove Python 3.3 as it's not yet supported by Travis
|
YAML
|
apache-2.0
|
pympler/pympler,Khan/pympler,yunjianfei/pympler,pympler/pympler,swiftstack/pympler,Khan/pympler,yunjianfei/pympler
|
dc943c03d0923dd0299243f653ca79d5b0f932e2
|
.build.yml
|
.build.yml
|
image: archlinux
packages:
- meson
- ninja
- wayland
- wayland-protocols
- mesa
- libinput
- pixman
- libxkbcommon
- xcb-util-image
- libcap
- rustup
- clang
- libxcb
- xorg-xinput
- xcb-util-image
- xcb-util-cursor
- xcb-util-wm
sources:
- https://github.com/swaywm/wlroots-rs
tasks:
- setup: |
rustup install stable
export CC=clang
rustup default stable
export RUST_BACKTRACE=full
cd wlroots-rs
git submodule update --init --recursive
- build: |
cd wlroots-rs
cd wlroots-sys
cd wlroots
meson build
ninja -C build
cd ../
cargo build --verbose --features static
cd ../
cargo build --verbose
cargo build --verbose --features="static, unstable"
cargo build --examples
cargo build --examples --features="static, unstable"
# For doc tests
cargo doc
cargo doc --features="static, unstable"
cargo test --all --features="static, unstable"
|
image: archlinux
packages:
- meson
- ninja
- wayland
- wayland-protocols
- mesa
- libinput
- pixman
- libxkbcommon
- xcb-util-image
- libcap
- rustup
- clang
- libxcb
- xorg-xinput
- xcb-util-image
- xcb-util-cursor
- xcb-util-wm
sources:
- https://github.com/swaywm/wlroots-rs
tasks:
- setup: |
rustup install stable
export CC=clang
rustup default stable
export RUST_BACKTRACE=full
cd wlroots-rs
git submodule update --init --recursive
- build: |
cd wlroots-rs
cd wlroots-sys
cd wlroots
meson build
ninja -C build
cd ../
cargo build --verbose --features static
cd ../
cargo build --verbose
cargo build --verbose --features="static, unstable"
# Test dynamic building as well
cargo build --verbose --features="unstable"
cargo build --examples
cargo build --examples --features="static, unstable"
# For doc tests
cargo doc
cargo doc --features="static, unstable"
cargo test --all --features="static, unstable"
|
Check that dynamic linking works in CI
|
Check that dynamic linking works in CI
|
YAML
|
mit
|
way-cooler/wlroots-rs,way-cooler/wlroots-rs
|
27e82024826d8dec9da2dc328679168dfabd22ed
|
.zuul.yaml
|
.zuul.yaml
|
- project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-yoga-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
|
- project:
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-zed-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
|
Add Python3 zed unit tests
|
Add Python3 zed unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for zed.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I20476524c984d9fbee07f544bafadcd33dbc46a0
|
YAML
|
apache-2.0
|
openstack/oslo.context
|
a12456c17c5f43a35a54e605e89f74205be1e98e
|
.zuul.yaml
|
.zuul.yaml
|
- job:
name: heatclient-functional
parent: devstack-tox-functional
timeout: 4200
required-projects:
- openstack/heat
- openstack/python-heatclient
vars:
openrc_enable_export: true
devstack_plugins:
heat: https://opendev.org/openstack/heat
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
- ^doc/.*$
- ^.*\.rst$
- ^releasenotes/.*$
- ^heatclient/tests/.*$
- project:
templates:
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python3-yoga-jobs
- check-requirements
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- heatclient-functional
gate:
jobs:
- heatclient-functional
|
- job:
name: heatclient-functional
parent: devstack-tox-functional
timeout: 4200
required-projects:
- openstack/heat
- openstack/python-heatclient
vars:
openrc_enable_export: true
devstack_plugins:
heat: https://opendev.org/openstack/heat
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
- ^doc/.*$
- ^.*\.rst$
- ^releasenotes/.*$
- ^heatclient/tests/.*$
- project:
templates:
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python3-zed-jobs
- check-requirements
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- heatclient-functional
gate:
jobs:
- heatclient-functional
|
Add Python3 zed unit tests
|
Add Python3 zed unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for zed.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: Ia4b850aeb841cb3d128758fc4b9a816a4ba8ba1a
|
YAML
|
apache-2.0
|
openstack/python-heatclient
|
545757e57f9430004dd1611c753412c5a632ab0b
|
openstack/manila/templates/api-service.yaml
|
openstack/manila/templates/api-service.yaml
|
kind: Service
apiVersion: v1
metadata:
name: manila-api
labels:
system: openstack
type: api
component: manila
annotations:
prometheus.io/scrape: "true"
prometheus.io/targets: {{ required ".Values.alerts.prometheus" .Values.alerts.prometheus | quote }}
spec:
selector:
name: manila-api
ports:
- name: manila-api
port: {{.Values.api_port_internal}}
- name: metrics
port: {{ .Values.global.metrics_port }}
|
kind: Service
apiVersion: v1
metadata:
name: manila-api
labels:
system: openstack
type: api
component: manila
annotations:
prometheus.io/scrape: "true"
prometheus.io/port: {{ .Values.global.metrics_port | quote }}
prometheus.io/targets: {{ required ".Values.alerts.prometheus" .Values.alerts.prometheus | quote }}
spec:
selector:
name: manila-api
ports:
- name: manila-api
port: {{.Values.api_port_internal}}
- name: metrics
port: {{ .Values.global.metrics_port }}
|
Revert "[manila] remove obsolete prom annotation"
|
Revert "[manila] remove obsolete prom annotation"
This reverts commit 1634bf15a7631929dd87c18000979b697392707b.
|
YAML
|
apache-2.0
|
sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts
|
736ee87f5f305f8e42a0899f28d1f2f2e6fc55a9
|
ops/provisioning/roles/mysql/tasks/main.yml
|
ops/provisioning/roles/mysql/tasks/main.yml
|
---
- name: install mysql
apt: pkg=$item state=installed
with_items:
- python-mysqldb
- mysql-client
- mysql-server
- name: start the mysql service
action: service name=mysql state=started
- name: update mysql root password for all root accounts
mysql_user: name=root host=$item password=$mysql_root_password
with_items:
- $ansible_hostname
- 127.0.0.1
- ::1
- localhost
- name: copy .my.cnf file with root password credentials
template: src=root-my.cnf.j2 dest=/root/.my.cnf owner=root mode=0600
- name: delete anonymous mysql server user for hostname
action: mysql_user user='' host='$ansible_hostname' state='absent'
- name: delete anonymous mysql server user for localhost
action: mysql_user user='' state='absent'
- name: remove the mysql test database
action: mysql_db db=test state=absent
|
---
- name: install mysql
apt: pkg=$item state=installed update_cache=yes
with_items:
- python-mysqldb
- mysql-client
- mysql-server
- name: start the mysql service
action: service name=mysql state=started
- name: update mysql root password for all root accounts
mysql_user: name=root host=$item password=$mysql_root_password
with_items:
- $ansible_hostname
- 127.0.0.1
- ::1
- localhost
- name: copy .my.cnf file with root password credentials
template: src=root-my.cnf.j2 dest=/root/.my.cnf owner=root mode=0600
- name: delete anonymous mysql server user for hostname
action: mysql_user user='' host='$ansible_hostname' state='absent'
- name: delete anonymous mysql server user for localhost
action: mysql_user user='' state='absent'
- name: remove the mysql test database
action: mysql_db db=test state=absent
|
Make sure to apt-get update before trying to install mysql.
|
Make sure to apt-get update before trying to install mysql.
|
YAML
|
mit
|
muescha/hutmap,dylanfprice/hutmap,muescha/hutmap,muescha/hutmap,dylanfprice/hutmap,dylanfprice/hutmap,muescha/hutmap,dylanfprice/hutmap
|
08a6d10c32beb5c2736b36487efb1860e868d74e
|
roles/ceph-validate/tasks/check_iscsi.yml
|
roles/ceph-validate/tasks/check_iscsi.yml
|
---
- name: set_fact use_new_ceph_iscsi package or old ceph-iscsi-config/cli
set_fact:
use_new_ceph_iscsi: "{{ (gateway_ip_list | default('0.0.0.0') == '0.0.0.0' and gateway_iqn | default('') | length == 0 and client_connections | default({}) | length == 0 and rbd_devices | default({}) | length == 0) | bool | ternary(true, false) }}"
- name: make sure gateway_ip_list is configured
fail:
msg: "you must set a list of IPs (comma separated) for gateway_ip_list"
when:
- "gateway_ip_list | default('0.0.0.0') == '0.0.0.0'"
- not containerized_deployment | bool
- not use_new_ceph_iscsi | bool
- name: fail if unsupported chap configuration
fail:
msg: "Mixing clients with CHAP enabled and disabled is not supported."
with_items: "{{ client_connections | default({}) }}"
when:
- item.status is defined
- item.status == "present"
- item.chap
- " '' in client_connections | selectattr('status', 'match', 'present') | map(attribute='chap') | list"
|
---
- name: set_fact use_new_ceph_iscsi package or old ceph-iscsi-config/cli
set_fact:
use_new_ceph_iscsi: "{{ (gateway_ip_list | default('0.0.0.0') == '0.0.0.0' and gateway_iqn | default('') | length == 0 and client_connections | default({}) | length == 0 and rbd_devices | default({}) | length == 0) | bool | ternary(true, false) }}"
- name: make sure gateway_ip_list is configured
fail:
msg: "you must set a list of IPs (comma separated) for gateway_ip_list"
when:
- "gateway_ip_list | default('0.0.0.0') == '0.0.0.0'"
- not containerized_deployment | bool
- not use_new_ceph_iscsi | bool
- name: make sure gateway_iqn is configured
fail:
msg: "you must set a iqn for the iSCSI target"
when:
- "gateway_iqn | default('') | length == 0"
- not containerized_deployment | bool
- not use_new_ceph_iscsi | bool
- name: fail if unsupported chap configuration
fail:
msg: "Mixing clients with CHAP enabled and disabled is not supported."
with_items: "{{ client_connections | default({}) }}"
when:
- item.status is defined
- item.status == "present"
- item.chap
- " '' in client_connections | selectattr('status', 'match', 'present') | map(attribute='chap') | list"
|
Add check for missing iqn
|
igw: Add check for missing iqn
If the user is still using the older packages and does not setup
the target iqn you will just get a vague error message later on.
This adds a check during the validate task, so it is clear to the
user.
Signed-off-by: Mike Christie <[email protected]>
|
YAML
|
apache-2.0
|
ceph/ceph-ansible,ceph/ceph-ansible
|
e69d192f679e3d8b6ea470510c8ca9a1b49d962e
|
dist/snappy/snapcraft.yaml
|
dist/snappy/snapcraft.yaml
|
name: glop
version: '0.1'
summary: Glue Language for OPerations
description: |
A DSL and interpreted runtime for building autonomous, intelligent agents
that operate software systems.
grade: stable
confinement: strict
apps:
glop:
command: glop-wrapper
plugs:
- network
- network-bind
- home
parts:
glop:
plugin: rust
rust-channel: stable
source: https://github.com/glop-rs/glop.git
files:
plugin: dump
source: .
snap:
- glop-wrapper
|
name: glop
version: '0.2'
summary: Glue Language for OPerations
description: |
A DSL and interpreted runtime for building autonomous, intelligent agents
that operate software systems.
grade: stable
confinement: classic
apps:
glop:
command: glop-wrapper
parts:
glop:
plugin: rust
rust-channel: stable
source: https://github.com/glop-rs/glop.git
files:
plugin: dump
source: .
snap:
- glop-wrapper
|
Use classic confinement. bump version.
|
Use classic confinement. bump version.
|
YAML
|
apache-2.0
|
cmars/glop
|
581e2c0acd8fda55459d96d5cf394c53e042f3bf
|
recipes/markdown-kernel/meta.yaml
|
recipes/markdown-kernel/meta.yaml
|
{% set name = "markdown-kernel" %}
{% set version = "0.2.0" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 6487c240a7424fb20f62aa61d0dd16971e9a757fe08d1482916560156eef7b3b
build:
number: 0
noarch: python
script:
- {{ PYTHON }} -m pip install . --no-deps -vv
- {{ PYTHON }} -m markdown_kernel.install --prefix {{ PREFIX }}
requirements:
host:
- pip
- python
- jupyter
run:
- python
- markdown
- ipykernel
test:
imports:
- markdown_kernel
commands:
- jupyter kernelspec list | grep markdown
about:
home: https://github.com/vatlab/markdown-kernel
license: BSD
license_family: BSD
license_file: LICENSE
summary: "A markdown kernel for jupyter"
doc_url: https://github.com/vatlab/markdown-kernel
dev_url: https://github.com/vatlab/markdown-kernel
extra:
recipe-maintainers:
- BoPeng
|
{% set name = "markdown-kernel" %}
{% set version = "0.2.0" %}
package:
name: "{{ name|lower }}"
version: "{{ version }}"
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 6487c240a7424fb20f62aa61d0dd16971e9a757fe08d1482916560156eef7b3b
build:
number: 0
noarch: python
script:
- {{ PYTHON }} -m pip install . --no-deps -vv
- {{ PYTHON }} -m markdown_kernel.install --prefix {{ PREFIX }}
requirements:
host:
- pip
- python
- jupyter_client
- ipykernel
run:
- python
- markdown
- jupyter_client
- ipykernel
test:
imports:
- markdown_kernel
commands:
- jupyter kernelspec list | grep markdown
about:
home: https://github.com/vatlab/markdown-kernel
license: BSD
license_family: BSD
license_file: LICENSE
summary: "A markdown kernel for jupyter"
doc_url: https://github.com/vatlab/markdown-kernel
dev_url: https://github.com/vatlab/markdown-kernel
extra:
recipe-maintainers:
- BoPeng
|
Move jupyter to host requirement
|
Move jupyter to host requirement
|
YAML
|
bsd-3-clause
|
hadim/staged-recipes,SylvainCorlay/staged-recipes,isuruf/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,stuertz/staged-recipes,dschreij/staged-recipes,jochym/staged-recipes,johanneskoester/staged-recipes,asmeurer/staged-recipes,igortg/staged-recipes,goanpeca/staged-recipes,petrushy/staged-recipes,birdsarah/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes,scopatz/staged-recipes,chrisburr/staged-recipes,ocefpaf/staged-recipes,jakirkham/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,ReimarBauer/staged-recipes,chrisburr/staged-recipes,patricksnape/staged-recipes,birdsarah/staged-recipes,patricksnape/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,dschreij/staged-recipes,asmeurer/staged-recipes,mcs07/staged-recipes,mcs07/staged-recipes,ocefpaf/staged-recipes,stuertz/staged-recipes,isuruf/staged-recipes,mariusvniekerk/staged-recipes,Juanlu001/staged-recipes,petrushy/staged-recipes,ReimarBauer/staged-recipes,Juanlu001/staged-recipes,conda-forge/staged-recipes,kwilcox/staged-recipes,jakirkham/staged-recipes,goanpeca/staged-recipes,SylvainCorlay/staged-recipes
|
fc66631550a66f835074a725a8a8035f298a9a70
|
apps/bletiny/syscfg.yml
|
apps/bletiny/syscfg.yml
|
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# Package: apps/bletiny
syscfg.vals:
# Enable the shell task.
SHELL_TASK: 1
# Set log level to info (disable debug logging).
LOG_LEVEL: 1
# Disable security manager (pairing and bonding).
BLE_SM: 0
# Disable eddystone beacons.
BLE_EDDYSTONE: 0
|
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# Package: apps/bletiny
syscfg.vals:
# Enable the shell task.
SHELL_TASK: 1
# Set log level to info (disable debug logging).
LOG_LEVEL: 1
# Disable security manager (pairing and bonding).
BLE_SM_LEGACY: 0
BLE_SM_SC: 0
# Disable eddystone beacons.
BLE_EDDYSTONE: 0
|
Use proper options for SM configuration
|
bletiny: Use proper options for SM configuration
BLE_SM is now enabled based on BLE_SM_LEGACY and BLE_SM_SC options.
|
YAML
|
apache-2.0
|
wes3/incubator-mynewt-core,andrzej-kaczmarek/incubator-mynewt-core,wes3/incubator-mynewt-core,mlaz/mynewt-core,mlaz/mynewt-core,andrzej-kaczmarek/apache-mynewt-core,wes3/incubator-mynewt-core,andrzej-kaczmarek/apache-mynewt-core,IMGJulian/incubator-mynewt-core,andrzej-kaczmarek/apache-mynewt-core,andrzej-kaczmarek/incubator-mynewt-core,andrzej-kaczmarek/incubator-mynewt-core,IMGJulian/incubator-mynewt-core,IMGJulian/incubator-mynewt-core,andrzej-kaczmarek/incubator-mynewt-core,mlaz/mynewt-core,mlaz/mynewt-core,andrzej-kaczmarek/incubator-mynewt-core,wes3/incubator-mynewt-core,mlaz/mynewt-core,IMGJulian/incubator-mynewt-core,andrzej-kaczmarek/apache-mynewt-core,wes3/incubator-mynewt-core,IMGJulian/incubator-mynewt-core
|
b107b3767aae8f622761321de4cb10b54cdf1b3e
|
.github/workflows/docker-image.yml
|
.github/workflows/docker-image.yml
|
name: Build Aphex
on:
push:
branches:
- '**'
tags:
- 'v*'
env:
IMAGE_NAME: ethicaljobs/aphex
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.3', '7.4']
name: Build PHP ${{ matrix.php }} container
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Retrieve Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: ethicaljobs/aphex-php${{ matrix.php }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}
type=semver,pattern=v{{major}}.{{minor}}
type=sha,prefix=,format=long
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Build and push container
uses: docker/build-push-action@v2
with:
context: .
push: true
build-args: |
PHP_VERSION=${{ matrix.php }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=inline
cache-to: type=inline
|
name: Build Aphex
on:
push:
branches:
- '**'
tags:
- 'v*'
env:
IMAGE_NAME: ethicaljobs/aphex
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.3', '7.4']
name: Build PHP ${{ matrix.php }} container
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Retrieve Docker metadata
id: meta
uses: docker/metadata-action@v3
with:
images: ethicaljobs/aphex-php${{ matrix.php }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern=v{{version}}
type=semver,pattern=v{{major}}
type=semver,pattern=v{{major}}.{{minor}}
type=sha,prefix=,format=long
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Build and push container
uses: docker/build-push-action@v2
with:
context: .
push: true
build-args: |
PHP_VERSION=${{ matrix.php }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
|
Switch to GitHub Actions build caching
|
Switch to GitHub Actions build caching
|
YAML
|
mit
|
ethical-jobs/aphex
|
2365f25e1197d4f5e29081045c3322b8d3e72008
|
docker-compose-example.yml
|
docker-compose-example.yml
|
redash:
image: redash
ports:
- "5000:5000"
links:
- redis
- postgres
environment:
REDASH_STATIC_ASSETS_PATH:"../rd_ui/app/"
REDASH_LOG_LEVEL:"INFO"
REDASH_REDIS_URL:redis://localhost:6379/0
REDASH_DATABASE_URL:"postgresql://redash"
REDASH_COOKIE_SECRET:veryverysecret
REDASH_GOOGLE_APPS_DOMAIN:
redis:
image: redis:2.8
postgres:
image: postgres:9.3
volumes:
- /opt/postgres-data:/var/lib/postgresql/data
redash-nginx:
image: redash-nginx:1.0
ports:
- "80:80"
volumes:
- "../redash-nginx/nginx.conf:/etc/nginx/nginx.conf"
links:
- redash
|
redash:
image: redash
ports:
- "5000:5000"
links:
- redis
- postgres
environment:
REDASH_STATIC_ASSETS_PATH:"../rd_ui/app/"
REDASH_LOG_LEVEL:"INFO"
REDASH_REDIS_URL:redis://localhost:6379/0
REDASH_DATABASE_URL:"postgresql://redash"
REDASH_COOKIE_SECRET:veryverysecret
REDASH_GOOGLE_APPS_DOMAIN:
redis:
image: redis:2.8
postgres:
image: postgres:9.3
volumes:
- /opt/postgres-data:/var/lib/postgresql/data
redash-nginx:
image: redash/nginx:latest
ports:
- "80:80"
volumes:
- "../redash-nginx/nginx.conf:/etc/nginx/nginx.conf"
links:
- redash
|
Use redash's docker-hub nginx image
|
Use redash's docker-hub nginx image
|
YAML
|
bsd-2-clause
|
getredash/redash,amino-data/redash,moritz9/redash,vishesh92/redash,alexanderlz/redash,pubnative/redash,ninneko/redash,easytaxibr/redash,44px/redash,useabode/redash,M32Media/redash,stefanseifert/redash,ninneko/redash,easytaxibr/redash,pubnative/redash,jmvasquez/redashtest,hudl/redash,denisov-vlad/redash,EverlyWell/redash,M32Media/redash,denisov-vlad/redash,amino-data/redash,M32Media/redash,stefanseifert/redash,pubnative/redash,getredash/redash,crowdworks/redash,imsally/redash,easytaxibr/redash,pubnative/redash,rockwotj/redash,crowdworks/redash,moritz9/redash,rockwotj/redash,jmvasquez/redashtest,guaguadev/redash,alexanderlz/redash,getredash/redash,useabode/redash,useabode/redash,vishesh92/redash,akariv/redash,denisov-vlad/redash,EverlyWell/redash,imsally/redash,imsally/redash,easytaxibr/redash,alexanderlz/redash,chriszs/redash,stefanseifert/redash,alexanderlz/redash,amino-data/redash,denisov-vlad/redash,hudl/redash,crowdworks/redash,jmvasquez/redashtest,hudl/redash,chriszs/redash,useabode/redash,rockwotj/redash,jmvasquez/redashtest,chriszs/redash,ninneko/redash,stefanseifert/redash,guaguadev/redash,ninneko/redash,pubnative/redash,denisov-vlad/redash,imsally/redash,getredash/redash,rockwotj/redash,vishesh92/redash,ninneko/redash,44px/redash,easytaxibr/redash,crowdworks/redash,guaguadev/redash,EverlyWell/redash,hudl/redash,jmvasquez/redashtest,moritz9/redash,M32Media/redash,akariv/redash,guaguadev/redash,guaguadev/redash,stefanseifert/redash,akariv/redash,akariv/redash,amino-data/redash,44px/redash,getredash/redash,chriszs/redash,EverlyWell/redash,vishesh92/redash,moritz9/redash,akariv/redash,44px/redash
|
4b84a8c887356bb123d44d7337748935cb817d28
|
playbooks/roles/haproxy_server/tasks/haproxy_pre_install.yml
|
playbooks/roles/haproxy_server/tasks/haproxy_pre_install.yml
|
---
# Copyright 2015, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Test for log directory or link
shell: |
if [ -h "/var/log/haproxy" ]; then
chown -h syslog:adm "/var/log/haproxy"
chown -R syslog:adm "$(readlink /var/log/haproxy)"
else
exit 1
fi
register: log_dir
failed_when: false
changed_when: log_dir.rc != 0
tags:
- haproxy-dirs
- haproxy-logs
- name: Create haproxy log dir
file:
path: "{{ item.path }}"
state: directory
mode: "{{ item.mode|default('0755') }}"
with_items:
- { path: "/var/log/haproxy" }
when: log_dir.rc != 0
tags:
- haproxy-dirs
- haproxy-logs
|
---
# Copyright 2015, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Test for log directory or link
shell: |
if [ -h "/var/log/haproxy" ]; then
chown -h syslog:adm "/var/log/haproxy"
chown -R syslog:adm "$(readlink /var/log/haproxy)"
else
exit 1
fi
register: log_dir
failed_when: false
changed_when: log_dir.rc != 0
tags:
- haproxy-dirs
- haproxy-logs
- name: Create haproxy log dir
file:
path: "{{ item.path }}"
state: directory
mode: "{{ item.mode|default('0755') }}"
with_items:
- { path: "/var/log/haproxy" }
when: log_dir | changed
tags:
- haproxy-dirs
- haproxy-logs
|
Use task state instead of output to create haproxy log directory
|
Use task state instead of output to create haproxy log directory
Use the previous tasks changed state to create haproxy log
directories. Both use the same "log_dir.rc != 0" logic.
This allows the play to run in check mode.
Change-Id: I731ea1ec7822266cd9a433b328e5dc5cdd0a205a
|
YAML
|
apache-2.0
|
yanyao/newton,major/os-ansible-deployment,bunchc/openstack-ansible,major/openstack-ansible,openstack/openstack-ansible,cloudnull/os-ansible-deployment,stackforge/os-ansible-deployment,yanyao/newton,mancdaz/openstack-ansible,stackforge/os-ansible-deployment,mancdaz/openstack-ansible,weezer/openstack-ansible,cfarquhar/openstack-ansible,BjoernT/os-ansible-deployment,BjoernT/openstack-ansible,BjoernT/openstack-ansible,BjoernT/os-ansible-deployment,yanyao/openstack-ansible,cfarquhar/openstack-ansible,robb-romans/openstack-ansible,os-cloud/os-ansible-deployment,Logan2211/openstack-ansible,robb-romans/openstack-ansible,openstack/openstack-ansible,bunchc/openstack-ansible,os-cloud/os-ansible-deployment,yanyao/openstack-ansible,cloudnull/os-ansible-deployment,major/openstack-ansible,weezer/openstack-ansible,Logan2211/openstack-ansible,major/os-ansible-deployment,BjoernT/os-ansible-deployment
|
36a8eb181a7f3fcd07b7c0ad8d5ebb4656f83897
|
stackstorm.yml
|
stackstorm.yml
|
---
- name: Install st2
hosts: all
roles:
- mongodb
- rabbitmq
- st2repos
- postgresql
- st2mistral
- st2
- st2web
- st2smoketests
|
---
- name: Install st2
hosts: all
roles:
- mongodb
- rabbitmq
- postgresql
- st2repos
- st2
- st2mistral
- st2web
- st2smoketests
|
Install st2 before st2mistral and st2repos after postgresql
|
Install st2 before st2mistral and st2repos after postgresql
|
YAML
|
apache-2.0
|
armab/ansible-st2,StackStorm/ansible-st2
|
c047630daee62915862198607eaace86a2cd4e59
|
metadata/com.beemdevelopment.aegis.yml
|
metadata/com.beemdevelopment.aegis.yml
|
Categories:
- Security
License: GPL-3.0-only
SourceCode: https://github.com/beemdevelopment/Aegis
IssueTracker: https://github.com/beemdevelopment/Aegis/issues
AutoName: Aegis
RepoType: git
Repo: https://github.com/beemdevelopment/Aegis
Builds:
- versionName: '0.2'
versionCode: 3
commit: v0.2
subdir: app
gradle:
- yes
- versionName: 0.2.2
versionCode: 5
commit: v0.2.2
subdir: app
gradle:
- yes
- versionName: '0.3'
versionCode: 6
commit: v0.3
subdir: app
gradle:
- yes
- versionName: 0.3.2
versionCode: 8
commit: v0.3.2
subdir: app
gradle:
- yes
- versionName: 0.3.3
versionCode: 9
commit: v0.3.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.3.3
CurrentVersionCode: 9
|
Categories:
- Security
License: GPL-3.0-only
SourceCode: https://github.com/beemdevelopment/Aegis
IssueTracker: https://github.com/beemdevelopment/Aegis/issues
AutoName: Aegis
RepoType: git
Repo: https://github.com/beemdevelopment/Aegis
Builds:
- versionName: '0.2'
versionCode: 3
commit: v0.2
subdir: app
gradle:
- yes
- versionName: 0.2.2
versionCode: 5
commit: v0.2.2
subdir: app
gradle:
- yes
- versionName: '0.3'
versionCode: 6
commit: v0.3
subdir: app
gradle:
- yes
- versionName: 0.3.2
versionCode: 8
commit: v0.3.2
subdir: app
gradle:
- yes
- versionName: 0.3.3
versionCode: 9
commit: v0.3.3
subdir: app
gradle:
- yes
- versionName: '0.4'
versionCode: 10
commit: v0.4
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '0.4'
CurrentVersionCode: 10
|
Update Aegis to 0.4 (10)
|
Update Aegis to 0.4 (10)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
75894ad4891e04cfa6d1046453e3b1d522f00c95
|
metadata/com.neumorphic.calculator.yml
|
metadata/com.neumorphic.calculator.yml
|
Categories:
- Science & Education
License: BSD-3-Clause
AuthorName: ARITRA BELEL and SHOURYA S GHOSH
SourceCode: https://github.com/belelaritra/Neumorphic_Calculator
IssueTracker: https://github.com/belelaritra/Neumorphic_Calculator/issues
AutoName: Calculator
RepoType: git
Repo: https://github.com/belelaritra/Neumorphic_Calculator
Builds:
- versionName: 1.0.0
versionCode: 1
commit: b0ea287db768c146925b7df4853abe10286b8026
output: build/app/outputs/flutter-apk/app-release.apk
srclibs:
- [email protected]
rm:
- ios
build:
- $$flutter$$/bin/flutter config --no-analytics
- $$flutter$$/bin/flutter packages pub get
- $$flutter$$/bin/flutter build apk
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
UpdateCheckData: pubspec.yaml|version:\s.*\+(\d+)|.|version:\s(.*)\+
CurrentVersion: 1.0.0
CurrentVersionCode: 1
|
Categories:
- Science & Education
License: BSD-3-Clause
AuthorName: ARITRA BELEL and SHOURYA S GHOSH
SourceCode: https://github.com/belelaritra/Neumorphic_Calculator
IssueTracker: https://github.com/belelaritra/Neumorphic_Calculator/issues
AutoName: Calculator
RepoType: git
Repo: https://github.com/belelaritra/Neumorphic_Calculator
Builds:
- versionName: 1.0.0
versionCode: 1
commit: b0ea287db768c146925b7df4853abe10286b8026
output: build/app/outputs/flutter-apk/app-release.apk
srclibs:
- [email protected]
rm:
- ios
build:
- $$flutter$$/bin/flutter config --no-analytics
- $$flutter$$/bin/flutter packages pub get
- $$flutter$$/bin/flutter build apk
- versionName: 1.1.0
versionCode: 2
commit: 285d866603a58e1b733c988b020e50ce8d44e74e
output: build/app/outputs/flutter-apk/app-release.apk
srclibs:
- [email protected]
rm:
- ios
build:
- $$flutter$$/bin/flutter config --no-analytics
- $$flutter$$/bin/flutter packages pub get
- $$flutter$$/bin/flutter build apk
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
UpdateCheckData: pubspec.yaml|version:\s.*\+(\d+)|.|version:\s(.*)\+
CurrentVersion: 1.1.0
CurrentVersionCode: 2
|
Update Calculator to 1.1.0 (2)
|
Update Calculator to 1.1.0 (2)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
6510d08c4ff6b250f834110dac94dcf6d830690f
|
metadata/io.github.yoshi1123.adbio.yml
|
metadata/io.github.yoshi1123.adbio.yml
|
Categories:
- System
License: GPL-3.0-only
AuthorEmail: [email protected]
SourceCode: https://github.com/yoshi1123/adbio
IssueTracker: https://github.com/yoshi1123/adbio/issues
AutoName: ADBio
RequiresRoot: 'yes'
RepoType: git
Repo: https://github.com/yoshi1123/adbio.git
Builds:
- versionName: '0.1'
versionCode: 1
commit: v0.1
gradle:
- yes
- versionName: '0.2'
versionCode: 2
disable: tag removed
commit: v0.2
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '0.1'
CurrentVersionCode: 1
|
Categories:
- System
License: GPL-3.0-only
AuthorEmail: [email protected]
SourceCode: https://github.com/yoshi1123/adbio
IssueTracker: https://github.com/yoshi1123/adbio/issues
AutoName: ADBio
RequiresRoot: 'yes'
RepoType: git
Repo: https://github.com/yoshi1123/adbio.git
Builds:
- versionName: '0.1'
versionCode: 1
commit: v0.1
gradle:
- yes
- versionName: '0.2'
versionCode: 2
disable: tag removed
commit: v0.2
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '0.2'
CurrentVersionCode: 2
|
Update CurrentVersion of ADBio to 0.2 (2)
|
Update CurrentVersion of ADBio to 0.2 (2)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
a750fe5276a5f69d7e6a847e34a7375dfd6b96eb
|
config/redis.yml
|
config/redis.yml
|
default: &default
url: <%= "redis://:#{ENV['REDIS_PASSWD'] || 'password'}@#{ENV['REDIS_HOST'] || 'localhost'}:#{ENV['REDIS_PORT'] || '6379'}" %>
timeout: <%= ENV['REDIS_TIMEOUT'] || 15 %>
development:
<<: *default
test:
<<: *default
production:
<<: *default
|
default: &default
url: <%= "redis://:#{ENV['REDIS_PASSWD'] || 'password'}@#{ENV['REDIS_HOST'] || 'localhost'}:#{ENV['REDIS_PORT'] || '6379'}/#{ENV['REDIS_DB'] || '0'}" %>
timeout: <%= ENV['REDIS_TIMEOUT'] || 15 %>
development:
<<: *default
test:
<<: *default
production:
<<: *default
|
Add support to specify a Redis database in the environment. Defaults to /0
|
Add support to specify a Redis database in the environment. Defaults to /0
|
YAML
|
apache-2.0
|
uvalib/Libra2,uvalib/Libra2,uvalib/Libra2,uvalib/Libra2,uvalib/Libra2
|
1ce1611273eaa3a638a12ee1111b5507348a0952
|
util/ansible/roles/influxdb/tasks/main.yml
|
util/ansible/roles/influxdb/tasks/main.yml
|
---
- name: Install InfluxDB
become: true
apt: deb=https://dl.influxdata.com/influxdb/releases/influxdb_1.0.0_amd64.deb
register: influx_installed
- name: restart influxdb
service: name=influxdb enabled=yes state=restarted
when: influx_installed.changed
- name: Set up Initial InfluxDB Database
when: influx_installed.changed
shell: "curl -i -XPOST http://localhost:8086/query --data-urlencode 'q={{ item }}'"
args:
warn: no
with_lines: "cat {{ util_base }}/influx_create.txt"
- name: Update InfluxDB
when: !influx_installed.changed
shell: "curl -i -XPOST http://localhost:8086/query --data-urlencode 'q={{ item }}'"
args:
warn: no
with_lines: "cat {{ util_base }}/influx_update.txt"
|
---
- name: Install InfluxDB
become: true
apt: deb=https://dl.influxdata.com/influxdb/releases/influxdb_1.0.0_amd64.deb
register: influx_installed
- name: restart influxdb
service: name=influxdb enabled=yes state=restarted
when: influx_installed.changed
- name: Set up Initial InfluxDB Database
when: influx_installed.changed
shell: "curl -i -XPOST http://localhost:8086/query --data-urlencode 'q={{ item }}'"
args:
warn: no
with_lines: "cat {{ util_base }}/influx_create.txt"
- name: Update InfluxDB
when: influx_installed.changed == false
shell: "curl -i -XPOST http://localhost:8086/query --data-urlencode 'q={{ item }}'"
args:
warn: no
with_lines: "cat {{ util_base }}/influx_update.txt"
|
Fix parsing error with influxdb YML
|
Fix parsing error with influxdb YML
|
YAML
|
agpl-3.0
|
SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,AzuraCast/AzuraCast,SlvrEagle23/AzuraCast,SlvrEagle23/AzuraCast,AzuraCast/AzuraCast
|
9c715be3ced9e7a2087bebef40387ebcba79def5
|
pubspec.yaml
|
pubspec.yaml
|
name: dart_doc_syncer
version: 0.0.0
description: >
Updates a documentation repository for an angular.io Dart example based on
latest content of the raw content under public/docs/_examples in the main
angular.io repository.
author: Thibault Sottiaux <[email protected]>
dependencies:
logging: ^0.11.2
path: '^1.2.0'
dev_dependencies:
test: ^0.12.8
|
name: dart_doc_syncer
version: 0.0.0
description: >
Updates a documentation repository for an angular.io Dart example based on
latest content of the raw content under public/docs/_examples in the main
angular.io repository.
author: Thibault Sottiaux <[email protected]>
dependencies:
args: ^0.13.0
logging: ^0.11.2
path: ^1.2.0
dev_dependencies:
test: ^0.12.8
|
Add args to the dependencies
|
Add args to the dependencies
|
YAML
|
mit
|
dart-archive/dart-doc-syncer
|
297f8467b2a68ecebdd4fd005fe6463246ea7b1f
|
tasks/main.yml
|
tasks/main.yml
|
---
- debug: var=apache verbosity=1
tags: vars
- name: Include OS-specific variables.
include_vars: "{{ ansible_os_family }}.yml"
- include_tasks: setup-Debian.yml
when: ansible_os_family == 'Debian'
- include_tasks: setup-RedHat.yml
when: ansible_os_family == 'RedHat'
- include_tasks: post-setup.yml
|
---
- debug: var=apache verbosity=1
tags: vars
- name: Include OS-specific variables.
include_vars: "{{ ansible_os_family }}.yml"
- include_tasks: setup-Debian.yml
when: ansible_os_family == 'Debian'
- include_tasks: setup-RedHat.yml
when: ansible_os_family == 'RedHat'
- import_tasks: post-setup.yml
|
Change include with import task to support tags
|
Change include with import task to support tags
|
YAML
|
mit
|
Aplyca/ansible-role-apache
|
db79daa9f095457493f89661c161eac017c112a1
|
.forestry/front_matter/templates/medium.yml
|
.forestry/front_matter/templates/medium.yml
|
---
label: pessoal
hide_body: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: post
- name: title
label: Title
type: text
hidden: false
default: Título
- name: date
label: Date
type: datetime
hidden: false
default: 2019-02-21 03:00:00 +0000
- name: img
label: Img
type: file
hidden: false
default: "/images/pessoal.png"
- name: comments
label: Comments
type: boolean
hidden: false
default: true
- name: tags
label: Tags
type: tag_list
hidden: false
default:
- 'pessoal '
pages:
- _posts/2017-12-20-retrospectiva-2017.md
- _posts/2018-12-30-retrospectiva-2018.md
|
---
label: pessoal
hide_body: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: post
- name: title
label: Title
type: text
hidden: false
default: Título
- name: date
label: Date
type: datetime
hidden: false
default: 2019-02-21 03:00:00 +0000
- name: img
label: Img
type: file
hidden: false
default: ''
- name: comments
label: Comments
type: boolean
hidden: false
default: true
- name: tags
label: Tags
type: tag_list
hidden: false
default:
- 'pessoal '
pages:
- _posts/2017-12-20-retrospectiva-2017.md
- _posts/2018-12-30-retrospectiva-2018.md
|
Update from Forestry.io - Updated Forestry configuration
|
Update from Forestry.io - Updated Forestry configuration
|
YAML
|
mit
|
jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io
|
3aa59189e566baa225a89f962214441f02787abc
|
.github/workflows/support-stackoverflow.yml
|
.github/workflows/support-stackoverflow.yml
|
# Configuration for support-requests - https://github.com/dessant/support-requests
name: 'Support StackOverflow'
on:
issues:
types: [labeled, unlabeled, reopened]
permissions:
issues: write
jobs:
mark-support:
runs-on: ubuntu-latest
steps:
- uses: dessant/support-requests@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# Label used to mark issues as support requests
support-label: 'support: StackOverflow'
# Comment to post on issues marked as support requests. Add a link
# to a support page, or set to `false` to disable
issue-comment: |
👋 Thanks for using MUI Core!
We use GitHub issues exclusively as a bug and feature requests tracker, however,
this issue appears to be a support request.
For support, please check out https://mui.com/getting-started/support/. Thanks!
If you have a question on StackOverflow, you are welcome to link to it here, it might help others.
If your issue is subsequently confirmed as a bug, and the report follows the issue template, it can be reopened.
close-issue: true
lock-issue: false
|
# Configuration for support-requests - https://github.com/dessant/support-requests
name: 'Support StackOverflow'
on:
issues:
types: [labeled, unlabeled, reopened]
permissions:
issues: write
jobs:
mark-support:
runs-on: ubuntu-latest
steps:
- uses: dessant/support-requests@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
# Label used to mark issues as support requests
support-label: 'support: StackOverflow'
# Comment to post on issues marked as support requests. Add a link
# to a support page, or set to `false` to disable
issue-comment: |
👋 Thanks for using MUI Core!
We use GitHub issues exclusively as a bug and feature requests tracker, however,
this issue appears to be a support request.
For support, please check out https://mui.com/getting-started/support/. Thanks!
If you have a question on StackOverflow, you are welcome to link to it here, it might help others.
If your issue is subsequently confirmed as a bug, and the report follows the issue template, it can be reopened.
close-issue: true
lock-issue: false
|
Fix typo in issue template
|
[core] Fix typo in issue template
|
YAML
|
mit
|
mui-org/material-ui,mui-org/material-ui,rscnt/material-ui,rscnt/material-ui,mui-org/material-ui,rscnt/material-ui
|
747bd63fc6137b952e4fc32659e8db64d032d7e1
|
.codeclimate.yml
|
.codeclimate.yml
|
---
engines:
fixme:
enabled: true
ratings:
paths: []
exclude_paths: []
|
engines:
tailor:
enabled: true
ratings:
paths:
- "Gollum/**.swift"
exclude_paths: []
|
Enable tailor engine on code climate file
|
Enable tailor engine on code climate file
|
YAML
|
mit
|
eduardoeof/Gollum,eduardoeof/Gollum
|
2beb6f4a0bda48e1e2ee0e7ef1367b3de07f184c
|
.codeclimate.yml
|
.codeclimate.yml
|
checks:
argument-count:
enabled: false
complex-logic:
enabled: false
file-lines:
enabled: false
method-complexity:
enabled: false
method-count:
enabled: false
method-lines:
enabled: false
nested-control-flow:
enabled: false
return-statements:
enabled: false
similar-code:
enabled: false
identical-code:
enabled: false
engines:
rubocop:
enabled: true
channel: rubocop-0-66
ratings:
paths:
- "**.rb"
|
version: "2"
checks:
argument-count:
enabled: false
complex-logic:
enabled: false
file-lines:
enabled: false
method-complexity:
enabled: false
method-count:
enabled: false
method-lines:
enabled: false
nested-control-flow:
enabled: false
return-statements:
enabled: false
similar-code:
enabled: false
identical-code:
enabled: false
plugins:
rubocop:
enabled: true
channel: rubocop-0-66
ratings:
paths:
- "**.rb"
|
Use newer Code Climate analysis model, version 2
|
Use newer Code Climate analysis model, version 2
Refer rails/rails#35962
|
YAML
|
mit
|
yahonda/oracle-enhanced,rshell/oracle-enhanced,rshell/oracle-enhanced,rsim/oracle-enhanced,rsim/oracle-enhanced,yahonda/oracle-enhanced
|
0bbe133a9ed47836c60fef5456d09c42fcfe3434
|
.codeclimate.yml
|
.codeclimate.yml
|
---
engines:
brakeman:
enabled: true
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- Gemfile.lock
- "**.rb"
exclude_paths:
- "spec/**/*"
|
---
engines:
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- Gemfile.lock
- "**.rb"
exclude_paths:
- "spec/**/*"
|
Remove brakeman from Code Climate engines since this isn't a Rails app
|
Remove brakeman from Code Climate engines since this isn't a Rails app
|
YAML
|
mit
|
paulfioravanti/resume
|
8b8ef30ccc8bec3baad207ace4cfe0a5c4c95156
|
tests/acceptance/docker-compose.yml
|
tests/acceptance/docker-compose.yml
|
version: '2'
services:
app:
build:
context: ../../
expose:
- "3000"
command: npm run start
selenium:
image: selenium/standalone-chrome
expose:
- '4444'
links:
- app
tests:
extends:
service: app
links:
- selenium
command: npm run _test:acceptance
|
version: '2'
services:
app:
build:
context: ../../
expose:
- '3000'
command: npm run start
selenium:
image: selenium/standalone-chrome
expose:
- '4444'
links:
- app
tests:
extends:
service: app
links:
- selenium
command: npm run _test:acceptance
|
Use single quotes in YAML files
|
Use single quotes in YAML files
|
YAML
|
mit
|
NiGhTTraX/react-test-buffet,NiGhTTraX/react-test-buffet,NiGhTTraX/react-test-buffet
|
b1de4cd5d430670f2ed8a131a0e7931184a71c79
|
packages/op/opentelemetry.yaml
|
packages/op/opentelemetry.yaml
|
homepage: ''
changelog-type: ''
hash: 4b538cd43bc77813eb9ccd322b64ccfea20b76a995c57e52c5c59ce7a85c06ed
test-bench-deps:
base: -any
tasty-discover: -any
async: -any
tasty-quickcheck: -any
tasty: -any
opentelemetry: -any
maintainer: [email protected]
synopsis: ''
changelog: ''
basic-deps:
exceptions: -any
base: ! '>=4.12 && <5'
unordered-containers: -any
text: -any
clock: ! '>=0.8'
hashable: -any
random: ! '>=1.1'
all-versions:
- 0.0.0.0
author: Dmitry Ivanov
latest: 0.0.0.0
description-type: haddock
description: The OpenTelemetry Haskell Client https://opentelemetry.io
license-name: Apache-2.0
|
homepage: ''
changelog-type: ''
hash: ffed9f1c503ed7bf0bb24ce963ba5e4a85db0c88abeba6baaea6f0ea47d55930
test-bench-deps:
bytestring: -any
base: -any
tasty-discover: -any
async: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
opentelemetry: -any
maintainer: [email protected]
synopsis: ''
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
base: ! '>=4.12 && <5'
unordered-containers: -any
text: -any
clock: ! '>=0.8'
hashable: -any
attoparsec: -any
random: ! '>=1.1'
all-versions:
- 0.0.0.0
- 0.0.0.1
author: Dmitry Ivanov
latest: 0.0.0.1
description-type: haddock
description: The OpenTelemetry Haskell Client https://opentelemetry.io
license-name: Apache-2.0
|
Update from Hackage at 2020-02-01T12:05:55Z
|
Update from Hackage at 2020-02-01T12:05:55Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
1031f77262e9c7236f67504a7783ef6ebf05c019
|
.readthedocs.yml
|
.readthedocs.yml
|
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Optionally build your docs in additional formats such as PDF and ePub
formats:
- htmlzip
- pdf
# Optionally set the version of Python and requirements required to build your docs
python:
version: 2.7
install:
- requirements: docs/requirements.txt
|
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Optionally build your docs in additional formats such as PDF and ePub
formats:
- htmlzip
- pdf
# Optionally set the version of Python and requirements required to build your docs
python:
version: 2.7
install:
- requirements: docs/requirements.txt
# We need to list all the submodules included in documenation build by DOxygen
submodules:
include:
- components/mqtt/esp-mqtt
|
Add mqtt submodule to RTD build configuration. Now any submodule included in documentation build by Doxygen should be included in this file
|
docs: Add mqtt submodule to RTD build configuration. Now any submodule included in documentation build by Doxygen should be included in this file
|
YAML
|
apache-2.0
|
espressif/esp-idf,espressif/esp-idf,espressif/esp-idf,espressif/esp-idf
|
c88daf864b573635fa266c05aa007e54f4029705
|
.scrutinizer.yml
|
.scrutinizer.yml
|
build:
dependencies:
before:
- find . -delete
- git clone https://github.com/octobercms/october.git .
- composer self-update
- composer install --no-interaction --prefer-source
- mkdir -p ./plugins/vojtasvoboda/cnbrates
- cd plugins/vojtasvoboda/cnbrates
- git clone https://github.com/vojtasvoboda/oc-cnbrates-plugin.git .
- composer install
build:
tests:
override:
-
command: 'phpunit --coverage-clover=coverage'
coverage:
file: 'coverage'
format: 'php-clover'
|
build:
dependencies:
before:
- find . -delete
- git clone https://github.com/octobercms/october.git .
- composer self-update
- composer install --no-interaction --prefer-source
- mkdir -p ./plugins/vojtasvoboda/cnbrates
- cd plugins/vojtasvoboda/cnbrates
- git clone https://github.com/vojtasvoboda/oc-cnbrates-plugin.git .
- composer install
tests:
override:
-
command: 'phpunit --coverage-clover=coverage'
coverage:
file: 'coverage'
format: 'php-clover'
|
Fix Scrutinizer code coverage config
|
Fix Scrutinizer code coverage config
|
YAML
|
mit
|
vojtasvoboda/oc-cnbrates-plugin
|
a9296936ae8beacd00bdde6b28b1e967c09854bf
|
.scrutinizer.yml
|
.scrutinizer.yml
|
imports:
- php
build:
environment:
php: '5.6.16'
tools:
php_code_sniffer:
filter:
excluded-paths: [ spec/*, examples/* ]
config:
standard: PSR2
php_analyzer:
filter:
excluded-paths: [ spec/*, examples/* ]
php_sim:
filter:
excluded-paths: [ spec/*, examples/* ]
build_failure_conditions:
- 'issues.label("coding-style").new.exists'
filter:
excluded_paths:
- docs/*
- vendor/*
|
imports:
- php
build:
environment:
php: '5.6.16'
tools:
php_code_sniffer:
filter:
paths: [ src/* ]
excluded-paths: [ spec/*, examples/* ]
config:
standard: PSR2
php_analyzer:
filter:
paths: [ src/* ]
excluded-paths: [ spec/*, examples/* ]
php_sim:
filter:
paths: [ src/* ]
excluded-paths: [ spec/*, examples/* ]
build_failure_conditions:
- 'issues.label("coding-style").new.exists'
filter:
paths: [ src/* ]
excluded_paths:
- docs/*
- vendor/*
|
Add more aggressive filter to remove changes in some files triggering a build
|
Add more aggressive filter to remove changes in some files triggering a build
|
YAML
|
mit
|
shrikeh-pagerduty/pagerduty-core
|
594b06728422ae0a80397cab49ac54ac193eab6b
|
install.work.conf.yaml
|
install.work.conf.yaml
|
- clean: ['~']
- link:
~/.vim: vim
~/.vimrc: vimrc
~/.tmux.conf: tmux.conf
- link:
~/bin/astyle: work/bin/astyle
~/bin/boxes: work/bin/boxes
~/.vim/settings/work.vim: work/work.vim
~/.vim/cpp.vimrc: work/cpp.vimrc
|
- clean: ['~']
- link:
~/.vim: vim
~/.vimrc: vimrc
~/.tmux.conf: tmux.conf
- link:
~/bin/astyle:
path: work/bin/astyle
create: true
~/bin/boxes:
path: work/bin/boxes
create: true
~/.vim/settings/work.vim: work/work.vim
~/.vim/cpp.vimrc: work/cpp.vimrc
|
Make sure the directory is created for ext links
|
Make sure the directory is created for ext links
|
YAML
|
mit
|
mseabold/dotfiles
|
60ccda3207f125368559cb29dbfaa5ca005c72ed
|
.scrutinizer.yml
|
.scrutinizer.yml
|
checks:
ruby:
code_rating: true
duplicate_code: true
tools:
rubocop:
use_native_config: true
filter:
excluded_paths:
- spec/*
- vendor/*
build:
environment:
ruby: 2.4.0
project_setup:
before:
- gem update --system
- gem install i18n rspec
tests:
before:
- bin/bundle-audit check --update
- bin/rubocop --display-cop-names
- printf "yes\nno\n" | bin/resume
- bin/resume -l it <<< "no\n"
- printf "yes\nno\n" | bin/resume -l ja
- bin/rake resume
- ruby resume.rb <<< "no\n"
- ruby resume.rb -l it <<< "no\n"
- ruby resume.rb -l ja <<< "no\n"
override:
-
command: bin/rspec spec/ --no-drb --format progress
environment:
"SCRUTINIZER_CC_FILE": "my-coverage"
coverage:
file: my-coverage
format: rb-cc
checks:
ruby:
code_rating: true
duplicate_code: true
|
checks:
ruby:
code_rating: true
duplicate_code: true
tools:
rubocop:
use_native_config: true
filter:
excluded_paths:
- spec/*
- vendor/*
build:
environment:
ruby: 2.4.0
project_setup:
before:
- gem update --system
- gem install i18n rspec
tests:
before:
- bin/bundle-audit check --update
- bin/rubocop --display-cop-names
- printf "yes\nno\n" | bin/resume
- bin/resume -l it <<< "no\n"
- printf "yes\nno\n" | bin/resume -l ja
- bin/rake resume
- ruby resume.rb <<< "no\n"
- ruby resume.rb -l it <<< "no\n"
- ruby resume.rb -l ja <<< "no\n"
override:
-
command: bin/rspec spec/ --no-drb --format progress
environment:
"SCRUTINIZER_CC_FILE": "coverage"
coverage:
file: coverage
format: rb-cc
checks:
ruby:
code_rating: true
duplicate_code: true
|
Rename coverage file to 'coverage'
|
Rename coverage file to 'coverage'
|
YAML
|
mit
|
paulfioravanti/resume
|
4ad4252a772f8d34f72237254ca1c53d67a5c9e5
|
.scrutinizer.yml
|
.scrutinizer.yml
|
# .scrutinizer.yml
tools:
external_code_coverage: false
filter:
excluded_paths:
- app/Support/Migration/*
- app/database/migrations/*
|
# .scrutinizer.yml
tools:
external_code_coverage: false
filter:
excluded_paths:
- app/Support/Migration/*
- app/database/migrations/*
- database/migrations/*
|
Extend exclude path. Trigger a new inspection.
|
Extend exclude path. Trigger a new inspection.
|
YAML
|
agpl-3.0
|
firefly-iii/firefly-iii,JC5/firefly-iii,JC5/firefly-iii,firefly-iii/firefly-iii,firefly-iii/firefly-iii,firefly-iii/firefly-iii
|
47787389799f8599b2aeb6174eca4305041c61f0
|
_config.yml
|
_config.yml
|
# Site settings
title: My labnotebook
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "/jekyll-lablog" # the subpath of your site, e.g. /blog/
url: "https://fdschneider.github.io" # the base hostname & protocol for your site
name : Your Name
email :
github_username:
twitter_username:
website : [email protected]:fdschneider/jekyll-lablog.git
# Build settings
markdown: redcarpet
highlighter: false
defaults: # overwrite with in YAML frontmatter, e.g. 'place: New York'
-
scope:
path: "" # an empty string here means all files in the project
type: "posts" # previously `post` in Jekyll 2.2.
values:
layout: "post"
place: # default Geolocation of posts.
author: # default author for posts (for multi-authoring)
|
# Site settings
title: My labnotebook
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "/jekyll-lablog" # the subpath of your site, e.g. /blog/
url: "https://fdschneider.github.io" # the base hostname & protocol for your site
name : Your Name
email :
github_username:
twitter_username:
website : [email protected]:fdschneider/jekyll-lablog.git
# Build settings
markdown: kramdown
defaults: # overwrite with in YAML frontmatter, e.g. 'place: New York'
-
scope:
path: "" # an empty string here means all files in the project
type: "posts" # previously `post` in Jekyll 2.2.
values:
layout: "post"
place: # default Geolocation of posts.
author: # default author for posts (for multi-authoring)
|
Revert "switch markdown to redcarpet without pygments"
|
Revert "switch markdown to redcarpet without pygments"
This reverts commit db825e204fd7b017c3470987029b82fc6a0d8e01.
|
YAML
|
mit
|
fdschneider/jekyll-lablog,cbig/lablog,cbig/lablog,fdschneider/jekyll-lablog,cbig/lablog
|
ff85a7164b3b5ab5ddc01257c7b38726ddc09e83
|
_config.yml
|
_config.yml
|
# Site settings
title: Spine Event Engine
email: [email protected]
# description: > # this means to ignore newlines until "baseurl:"
#url: "http://spine3.org" # the base hostname & protocol for your site
twitter_username: SpineEngine
github_username: SpineEventEngine
# Build settings
markdown: kramdown
highlighter: rouge
baseurl:
githuburl: https://github.com/SpineEventEngine/SpineEventEngine.github.io/
sass:
style: compressed
theme: jekyll-theme-cayman
|
# Site settings
title: Spine Event Engine
email: [email protected]
# description: > # this means to ignore newlines until "baseurl:"
#url: "http://spine.io" # the base hostname & protocol for your site
twitter_username: SpineEngine
github_username: SpineEventEngine
# Build settings
markdown: kramdown
highlighter: rouge
baseurl:
githuburl: https://github.com/SpineEventEngine/SpineEventEngine.github.io/
sass:
style: compressed
theme: jekyll-theme-cayman
|
Fix site address in comments
|
Fix site address in comments
|
YAML
|
apache-2.0
|
SpineEventEngine/SpineEventEngine.github.io,SpineEventEngine/SpineEventEngine.github.io,SpineEventEngine/SpineEventEngine.github.io,SpineEventEngine/SpineEventEngine.github.io,SpineEventEngine/SpineEventEngine.github.io,SpineEventEngine/SpineEventEngine.github.io
|
b1a049ff2ab28c271d75cf3e77dc992849515baa
|
_config.yml
|
_config.yml
|
# Site settings
title: CityCampCHA
email: [email protected]
description: CityCampCHA is an unconference focused on innovation for municipal governments and community organizations. As an unconference, content for CityCampCHA is not programmed for a passive audience. Content is created and organized by participants and coordinated by facilitators. Participants are expected to play active roles in sessions. This provides an excellent format for creative, open exchange geared toward action.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://citycampcha.com" # the base hostname & protocol for your site
domain: "citycampcha.com"
twitter_username: openchattanooga
github_username: openchattanooga
# Build settings
markdown: kramdown
exclude: ["CNAME", "Gemfile", "Gemfile.lock", "README.md"]
sass:
style: :compressed
|
# Site settings
title: CityCampCHA
email: [email protected]
description: CityCampCHA is an unconference focused on innovation for municipal governments and community organizations. As an unconference, content for CityCampCHA is not programmed for a passive audience. Content is created and organized by participants and coordinated by facilitators. Participants are expected to play active roles in sessions. This provides an excellent format for creative, open exchange geared toward action.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://citycampcha.com" # the base hostname & protocol for your site
domain: "citycampcha.com"
twitter_username: openchattanooga
github_username: openchattanooga
# Build settings
markdown: kramdown
exclude: ["CNAME", "Gemfile", "Gemfile.lock", "README.md", "LICENSE-code"]
sass:
style: :compressed
|
Exclude license from generated site.
|
Exclude license from generated site.
|
YAML
|
mit
|
openchattanooga/citycampcha
|
4fedf9f3e859e43ea4c919afd7df13847bd3f2e3
|
_config.yml
|
_config.yml
|
name: www.mistriotis.com
highlighter: true
url: ""
gems: [jekyll-paginate, jekyll-gist]
paginate: 8
description: Dimitrios mistriotis personal web site.
intro: Blog posts, contact, project, CV material
logo: ''
disqus_shortname:
# url: http://gotchacode.com
#Comment out url when working locally to resolve base urls correctly
#url:
# Owner/author information
owner:
name: Dimitrios Mistriotis
avatar: ""
email: [email protected]
# Social networking links used in footer. Update and remove as you like.
# twitter: "@dimist"
github: https://github.com/dimitrismistriotis/
stackexchange: http://stackexchange.com/users/2bb7f437e24a4c13a3b4d6a8684303f0
# For Google Authorship https://plus.google.com/authorship
google_plus:
# Analytics and webmaster tools stuff goes here
google_analytics:
google_verify:
# https://ssl.bing.com/webmaster/configure/verify/ownership Option 2 content= goes here
bing_verify:
# Links to include in top navigation
# For external links add external: true
|
name: www.mistriotis.com
url: ""
gems: [jekyll-paginate, jekyll-gist]
paginate: 8
description: Dimitrios mistriotis personal web site.
intro: Blog posts, contact, project, CV material
logo: ''
disqus_shortname:
# url: http://gotchacode.com
#Comment out url when working locally to resolve base urls correctly
#url:
# Owner/author information
owner:
name: Dimitrios Mistriotis
avatar: ""
email: [email protected]
# Social networking links used in footer. Update and remove as you like.
# twitter: "@dimist"
github: https://github.com/dimitrismistriotis/
stackexchange: http://stackexchange.com/users/2bb7f437e24a4c13a3b4d6a8684303f0
# For Google Authorship https://plus.google.com/authorship
google_plus:
# Analytics and webmaster tools stuff goes here
google_analytics:
google_verify:
# https://ssl.bing.com/webmaster/configure/verify/ownership Option 2 content= goes here
bing_verify:
# Links to include in top navigation
# For external links add external: true
|
Remove highlighter: true after github's recommedation
|
Remove highlighter: true after github's recommedation
|
YAML
|
mit
|
dimitrismistriotis/dimitrismistriotis.github.com,dimitrismistriotis/dimitrismistriotis.github.com
|
c9b6fb6c18ac0c3edaba74d21158d3139a8d134f
|
install.yml
|
install.yml
|
---
# Here we describe every software we may want to install
- hosts: all
roles:
- role: osxc.packages
brew_taps:
- caskroom/fonts
brew_packages:
- git
- mercurial
- zsh
- lua
- luajit
- vim # --with-lua
- macvim # --with-cscope --with-lua --override-system-vim --HEAD
- the_silver_searcher
- ctags
- mongodb
- mysql
cask_packages:
- google-chrome
- firefox
- flash-player
- skype
- sourcetree
- utorrent
- mplayerx
- dropbox
- majic
- vagrant
- virtualbox
- sequel-pro
- robomongo
- cyberduck
- rdm
- mongodbpreferencepane
- colorpicker-skalacolor
- font-inconsolata
- font-source-code-pro
- font-sauce-code-powerline
|
---
# Here we describe every software we may want to install
- hosts: all
roles:
- role: osxc.packages
brew_taps:
- caskroom/fonts
brew_packages:
- git
- mercurial
- zsh
- lua
- luajit
- vim # --with-lua
- macvim # --with-cscope --with-lua --override-system-vim --HEAD
- the_silver_searcher
- ctags
- mongodb
- mysql
cask_packages:
- google-chrome
- firefox
- flash-player
- skype
- slack
- sourcetree
- utorrent
- mplayerx
- dropbox
- majic
- vagrant
- virtualbox
- sequel-pro
- robomongo
- cyberduck
- rdm
- mongodbpreferencepane
- colorpicker-skalacolor
- font-inconsolata
- font-source-code-pro
- font-sauce-code-powerline
|
Add slack chat to apps
|
Add slack chat to apps
|
YAML
|
mit
|
ansible-macos/macos-playbook,ansible-macos/macos-playbook,luishdez/osx-playbook
|
ad8d3db9824cbb28927feb4f08dd67c628a6d810
|
_config.yml
|
_config.yml
|
# Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
relative_permalinks: true
# Setup
title: Anna Tomka
tagline: 'Web Developer'
description: 'This is a simple blog presenting short entries about web development.'
url: http://annatomka.github.io
baseurl: ''
paginate: 5
# About/contact
author:
name: Anna Tomka
url: https://twitter.com/anna_tomka
email: [email protected]
# Custom vars
version: 1.1.0
#Sitemap
gems:
- jekyll-sitemap
|
# Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
# Setup
title: Anna Tomka
tagline: 'Web Developer'
description: 'This is a simple blog presenting short entries about web development.'
url: http://annatomka.github.io
baseurl: ''
paginate: 5
# About/contact
author:
name: Anna Tomka
url: https://twitter.com/anna_tomka
email: [email protected]
# Custom vars
version: 1.1.0
#Sitemap
gems:
- jekyll-sitemap
|
Remove relative permalink to fix build failure
|
Remove relative permalink to fix build failure
|
YAML
|
mit
|
annatomka/annatomka.github.io
|
1257da97fb095304234c1d3b4d58297413cca7ee
|
_config.yml
|
_config.yml
|
public_website_url: "https://www.moneyadviceservice.org.uk"
qa_website_url: "https://qa.test.moneyadviceservice.org.uk"
qa_partner_tools_url: "https://qa-partner-tools.test.moneyadviceservice.org.uk"
development: false
|
public_website_url: "https://www.moneyadviceservice.org.uk"
qa_website_url: 'https://qa.dev.mas.local/'
qa_partner_tools_url: 'https://preview-partner-tools.dev.mas.local/'
development: false
|
Change test partner tools url to preview environment
|
Change test partner tools url to preview environment
Today for some qa partner tools domain does not work
at all. So since preview is working fine, I changed
to point to preview.
|
YAML
|
mit
|
moneyadviceservice/test-harness,moneyadviceservice/test-harness,moneyadviceservice/test-harness
|
23e963a156372a60852f7c3d1b2a764206897d04
|
scripts/ci/delete-deployments/task.yml
|
scripts/ci/delete-deployments/task.yml
|
---
platform: linux
image: docker:///cfinfrastructure/deployment
run:
path: mega-ci/scripts/ci/delete-deployments/task.sh
params:
BOSH_PASSWORD:
BOSH_DIRECTOR:
BOSH_USER:
DEPLOYMENTS_WITH_WORD:
|
---
platform: linux
image: docker:///cfinfrastructure/deployment
inputs:
- name: mega-ci
run:
path: mega-ci/scripts/ci/delete-deployments/task.sh
params:
BOSH_PASSWORD:
BOSH_DIRECTOR:
BOSH_USER:
DEPLOYMENTS_WITH_WORD:
|
Add mega-ci input to delete-deployments
|
Add mega-ci input to delete-deployments
[#129181047]
|
YAML
|
apache-2.0
|
cloudfoundry/mega-ci,cloudfoundry/mega-ci
|
d80bb1b839f2d2d6dc199860c3f70cd6475b1435
|
_config.yml
|
_config.yml
|
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "3.8.1"
baseurl: ""
url: "https://helmetjs.github.io" # the base hostname & protocol for your site
# Build settings
markdown: kramdown
|
# Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Helmet
short_description: Express.js security with HTTP headers
description: Helmet helps you secure your Express.js apps by setting various HTTP headers. It's not a silver bullet, but it can help!
helmet_version: "3.8.2"
baseurl: ""
url: "https://helmetjs.github.io" # the base hostname & protocol for your site
# Build settings
markdown: kramdown
|
Update Helmet version to 3.8.2
|
Update Helmet version to 3.8.2
|
YAML
|
mit
|
helmetjs/helmetjs.github.io,helmetjs/helmetjs.github.io
|
ede4c27da229e85b0e8ec5612eb97b319d7ad17b
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
before_install:
- composer self-update
install:
- travis_retry composer install --no-interaction --prefer-source
before_script:
- bash vendor/frozzare/wp-test-suite/bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 $WP_VERSION
- git clone https://github.com/wp-papi/papi.git /tmp/wordpress/src/wp-content/plugins/papi
- cd /tmp/wordpress/src/wp-content/plugins/papi
- git checkout 2.x
- git pull
script:
- vendor/bin/phpunit --coverage-clover clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- bash <(curl -s https://codecov.io/bash)
matrix:
include:
- php: 5.4
env: WP_VERSION=nightly WP_MULTISITE=0
- php: 5.5
env: WP_VERSION=nightly WP_MULTISITE=0
- php: 5.6
env: WP_VERSION=nightly WP_MULTISITE=0
- php: hhvm
env: WP_VERSION=nightly WP_MULTISITE=0
- php: 7.0
env: WP_VERSION=nightly WP_MULTISITE=0
fast_finish: true
|
language: php
sudo: false
before_install:
- composer self-update
install:
- travis_retry composer install --no-interaction --prefer-source
before_script:
- bash vendor/frozzare/wp-test-suite/bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 $WP_VERSION
- git clone --branch=2.x https://github.com/wp-papi/papi.git /tmp/wordpress/src/wp-content/plugins/papi
script:
- vendor/bin/phpunit --coverage-clover clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- bash <(curl -s https://codecov.io/bash)
matrix:
include:
- php: 5.4
env: WP_VERSION=nightly WP_MULTISITE=0
- php: 5.5
env: WP_VERSION=nightly WP_MULTISITE=0
- php: 5.6
env: WP_VERSION=nightly WP_MULTISITE=0
- php: hhvm
env: WP_VERSION=nightly WP_MULTISITE=0
- php: 7.0
env: WP_VERSION=nightly WP_MULTISITE=0
fast_finish: true
|
Use branch arg for cloning
|
Use branch arg for cloning
|
YAML
|
mit
|
wp-papi/papi-rest-api
|
59994ded3986f41da0c4c828b32e6ec06790ded8
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: true
node_js:
- "5.0"
script: npm run build
before_install:
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- sudo apt-get update
- sudo apt-get install -y libappindicator1 fonts-liberation
- wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- sudo dpkg -i google-chrome*.deb
- sh -e /etc/init.d/xvfb start
notifications:
email:
on_failure: change
|
language: node_js
sudo: true
dist: trusty
node_js:
- "5.0"
script: npm run build
before_install:
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- sudo apt-get update
- sudo apt-get install -y libappindicator1 fonts-liberation
- wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- sudo dpkg -i google-chrome*.deb
- sh -e /etc/init.d/xvfb start
notifications:
email:
on_failure: change
|
Use "trusty" on Travis for isolated builds
|
Use "trusty" on Travis for isolated builds
|
YAML
|
mit
|
likesalmon/likesalmon-react-boilerplate,SilentCicero/react-boilerplate,AnhHT/react-boilerplate,gihrig/react-boilerplate,pauleonardo/demo-trans,Dattaya/react-boilerplate-object,abasalilov/react-boilerplate,Dmitry-N-Medvedev/motor-collection,gihrig/react-boilerplate,haithemT/app-test,JonathanMerklin/react-boilerplate,haxorbit/chiron,romanvieito/ball-simpler,mikejong0815/Temp,shiftunion/bot-a-tron,jasoncyu/always-be-bulking,w01fgang/react-boilerplate,mmaedel/react-boilerplate,Jan-Jan/react-hackathon-boilerplate,absortium/frontend,TheTopazWombat/levt-2,kaizen7-nz/gold-star-chart,tomazy/react-boilerplate,mmaedel/react-boilerplate,bsr203/react-boilerplate,codermango/BetCalculator,absortium/frontend,gihrig/react-boilerplate-logic,StrikeForceZero/react-typescript-boilerplate,pauleonardo/demo-trans,TheTopazWombat/levt-2,JonathanMerklin/react-boilerplate,codermango/BetCalculator,gtct/wallet.eine.com,gihrig/react-boilerplate-logic,chaintng/react-boilerplate,chaintng/react-boilerplate,StrikeForceZero/react-typescript-boilerplate,w01fgang/react-boilerplate,samit4me/react-boilerplate,gtct/wallet.eine.com,bsr203/react-boilerplate,romanvieito/ball-simpler,kossel/react-boilerplate,Jan-Jan/react-hackathon-boilerplate,react-boilerplate/react-boilerplate,KarandikarMihir/react-boilerplate,Dmitry-N-Medvedev/motor-collection,dbrelovsky/react-boilerplate,AnhHT/react-boilerplate,rlagman/raphthelagman,rlagman/raphthelagman,dbrelovsky/react-boilerplate,Proxiweb/react-boilerplate,s0enke/react-boilerplate,haxorbit/chiron,perry-ugroop/ugroop-react-dup2,gtct/wallet.eine.com,react-boilerplate/react-boilerplate,StrikeForceZero/react-typescript-boilerplate,mxstbr/react-boilerplate,blockfs/frontend-react,mxstbr/react-boilerplate,abasalilov/react-boilerplate,likesalmon/likesalmon-react-boilerplate,be-oi/beoi-training-client,Proxiweb/react-boilerplate,Demonslyr/Donut.WFE.Customer,perry-ugroop/ugroop-react-dup2,Demonslyr/Donut.WFE.Customer,KarandikarMihir/react-boilerplate,jasoncyu/always-be-bulking,kaizen7-nz/gold-star-chart,samit4me/react-boilerplate,mikejong0815/Temp,Dmitry-N-Medvedev/motor-collection,Proxiweb/react-boilerplate,Dattaya/react-boilerplate-object,s0enke/react-boilerplate,Dmitry-N-Medvedev/motor-collection,be-oi/beoi-training-client,tomazy/react-boilerplate,s0enke/react-boilerplate,kossel/react-boilerplate,haithemT/app-test,SilentCicero/react-boilerplate,ipselon/react-boilerplate-clone,shiftunion/bot-a-tron,gtct/wallet.eine.com,blockfs/frontend-react,ipselon/react-boilerplate-clone
|
5340de62927930f72af2d4a247f86ed7b5cbb524
|
.travis.yml
|
.travis.yml
|
sudo: required
services:
- docker
script:
- if [ "true" = "${SHELLCHECK-}" ]; then shellcheck *.sh ; fi
- if [ -n "${NODE_VERSION-}" ]; then ./test-build.sh $NODE_VERSION ; fi
- if [ "true" = "${DOCTOCCHECK-}" ]; then
nvm install node &&
npm i -g doctoc &&
cp README.md README.md.tmp &&
doctoc --title='## Table of Contents' --github README.md &&
diff -q README.md README.md.tmp;
fi
env:
- DOCTOCCHECK: true
- NODE_VERSION: '4'
- NODE_VERSION: '6'
- NODE_VERSION: '8'
- NODE_VERSION: '9'
matrix:
include:
env: SHELLCHECK=true
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
|
sudo: required
services:
- docker
addons:
apt:
packages:
- docker-ce
script:
- if [ "true" = "${SHELLCHECK-}" ]; then shellcheck *.sh ; fi
- if [ -n "${NODE_VERSION-}" ]; then ./test-build.sh $NODE_VERSION ; fi
- if [ "true" = "${DOCTOCCHECK-}" ]; then
nvm install node &&
npm i -g doctoc &&
cp README.md README.md.tmp &&
doctoc --title='## Table of Contents' --github README.md &&
diff -q README.md README.md.tmp;
fi
env:
- DOCTOCCHECK: true
- NODE_VERSION: '4'
- NODE_VERSION: '6'
- NODE_VERSION: '8'
- NODE_VERSION: '9'
matrix:
include:
env: SHELLCHECK=true
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
|
Install newer version of Docker
|
Install newer version of Docker
|
YAML
|
mit
|
nodejs/docker-node,pesho/docker-node,joyent/docker-node,chorrell/docker-node,chorrell/docker-node,nodejs/docker-node
|
a6eaf0f7c88a0ddb3fa0d119dc7baa509693b119
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
script:
- ./gradlew check
|
language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
script:
- ./gradlew test
|
Use `gradlew test` instead of `gradlew check`
|
Use `gradlew test` instead of `gradlew check`
|
YAML
|
mit
|
hiroyuki-sato/embulk-parser-joni,hiroyuki-sato/embulk-parser-joni
|
7cb856987fe934b695a98bc525941f0f829ac583
|
.travis.yml
|
.travis.yml
|
language: php
branches:
only:
- master
- develop
php:
- 7.2
before_script:
- composer self-update
- composer install --no-interaction
- npm install
script:
- mkdir build
- composer check
- grunt
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/clover.xml
sudo: false
|
language: php
branches:
only:
- master
- develop
php:
- 7.2
before_script:
- composer self-update
- composer install --no-interaction
- npm install
script:
- mkdir build
- composer check
- grunt
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/clover.xml
|
Move out of Travis container-based infrastructure
|
Move out of Travis container-based infrastructure
|
YAML
|
mit
|
acelaya/website-expressive,acelaya/website-expressive,acelaya/website-expressive,acelaya/website-expressive
|
ced2261503df16772f1f2b9941a1c58d1a073fe8
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
env:
- MAVEN=3.0.4
- MAVEN=3.0.5
- MAVEN=3.1.0
- MAVEN=3.1.1
- MAVEN=3.2.1
- MAVEN=3.2.2
- MAVEN=3.2.3
- MAVEN=3.2.5
- MAVEN=3.3.1
- MAVEN=3.3.3
- MAVEN=3.3.9
matrix:
exclude:
- jdk: openjdk6
env: MAVEN=3.3.1
- jdk: openjdk6
env: MAVEN=3.3.3
- jdk: openjdk6
env: MAVEN=3.3.9
cache:
directories:
- $HOME/.m2
install:
- mvn -N io.takari:maven:wrapper -Dmaven=${MAVEN}
- ./mvnw --show-version --errors --batch-mode validate dependency:go-offline
before_script:
- export MAVEN_SKIP_RC=true
script: ./mvnw --show-version clean verify
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: java
sudo: false
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
env:
- MAVEN=3.0.4
- MAVEN=3.0.5
- MAVEN=3.1.0
- MAVEN=3.1.1
- MAVEN=3.2.1
- MAVEN=3.2.2
- MAVEN=3.2.3
- MAVEN=3.2.5
- MAVEN=3.3.1
- MAVEN=3.3.3
- MAVEN=3.3.9
matrix:
exclude:
- jdk: openjdk6
env: MAVEN=3.3.1
- jdk: openjdk6
env: MAVEN=3.3.3
- jdk: openjdk6
env: MAVEN=3.3.9
cache:
directories:
- $HOME/.m2
before_install:
- export M2_HOME=/tmp/maven-${MAVEN}
- mkdir $M2_HOME
- wget -qO- https://archive.apache.org/dist/maven/maven-3/${MAVEN}/binaries/apache-maven-${MAVEN}-bin.tar.gz | tar xz --strip 1 -C $M2_HOME
- export PATH=$M2_HOME/bin:$PATH
install: true
before_script:
- export MAVEN_SKIP_RC=true
script: $M2_HOME/bin/mvn --show-version clean verify
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Revert Takari wrapper, it is not compiled against Java 6...
|
CI: Revert Takari wrapper, it is not compiled against Java 6...
Signed-off-by: Julien Nicoulaud <[email protected]>
|
YAML
|
apache-2.0
|
nicoulaj/checksum-maven-plugin,aircellthom/checksum-maven-plugin
|
6c57d836258db1ed2dafb74242529d40af1c92f9
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk7
- oraclejdk7
install:
- gem install bundler
- bundle install
script: buildr clean package
|
language: java
jdk:
- openjdk7
- oraclejdk7
install:
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
|
Reduce the size of the git repository downloaded during TravisCI testing.
|
Reduce the size of the git repository downloaded during TravisCI testing.
|
YAML
|
apache-2.0
|
realityforge/gwt-packetio-example,realityforge/gwt-packetio-example,realityforge/gwt-packetio-example
|
093e03e37d966efcf08c9021426444a5b4125bf3
|
.travis.yml
|
.travis.yml
|
dist: xenial
language: generic
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
script:
- sh test.sh
|
dist: xenial
language: generic
addons:
snaps:
- shellcheck
script:
- sh test.sh
|
Install shellcheck from snap store
|
Install shellcheck from snap store
|
YAML
|
mit
|
anlar/i3blocks-sh
|
76dde3f50ce2ca1adfd57b7bc203286a31cc7c92
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
env:
- INCLUDE_LINGUIST=true
- INCLUDE_LINGUIST=false
before_install:
- if [[ "$INCLUDE_LINGUIST" == "true" ]]; then BUNDLE_GEMFILE=Gemfile.optional; sudo apt-get install libicu-dev -y; fi
|
language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
env:
- INCLUDE_LINGUIST=true
- INCLUDE_LINGUIST=false
before_install:
- gem install bundler
- if [[ "$INCLUDE_LINGUIST" == "true" ]]; then BUNDLE_GEMFILE=Gemfile.optional; sudo apt-get install libicu-dev -y; fi
|
Work around Travis bundler issue
|
Work around Travis bundler issue
The build is running into this issue:
https://github.com/travis-ci/travis-ci/issues/3531.
Work around with a before_install `gem install bundler` as suggested
there (https://github.com/travis-ci/travis-ci/issues/3531#issuecomment-88311203)
|
YAML
|
mit
|
dmarcotte/github-markdown-preview
|
e2fd95a666e51904a91de422ee526858983cfa35
|
.travis.yml
|
.travis.yml
|
language: node_js
dist: trusty
sudo: required
node_js:
- "0.10"
before_install:
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
- sudo apt-get -qq update
- export CHROME_BIN=google-chrome
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sudo apt-get install -y libgif-dev nodejs mesa-utils google-chrome-stable
- glxinfo
before_script:
- "./utils/build.sh"
|
language: node_js
dist: trusty
sudo: required
node_js:
- "0.10"
before_install:
- wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
- sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
- sudo apt-get -qq update
- export CHROME_BIN=google-chrome
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sudo apt-get install -y libgif-dev nodejs mesa-utils google-chrome-beta
- glxinfo
before_script:
- "./utils/build.sh"
|
Use chrome beta for testing
|
Use chrome beta for testing
|
YAML
|
mit
|
jbaicoianu/janusweb,jbaicoianu/janusweb,jbaicoianu/janusweb
|
d0e791ff2777ebd7a77a2e1553c3e2d87d59fcf5
|
.travis.yml
|
.travis.yml
|
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
language: java
install:
- sudo apt-get update
script:
- jdk_switcher use oraclejdk8
- mvn install javadoc:aggregate
after_success:
- mvn clean test jacoco:report coveralls:report
- bash <(curl -s https://codecov.io/bash)
|
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
language: java
install:
- sudo apt-get update
script:
- jdk_switcher use oraclejdk8
- mvn install javadoc:aggregate
after_success:
- mvn clean test org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar -Dsonar.host.url=https://sonarqube.com -Dsonar.login=803861c9f2087ac0b7ca049677f0f7382b8476b7 coveralls:report
- bash <(curl -s https://codecov.io/bash)
|
Use SonarQube.com with Travis CI
|
Use SonarQube.com with Travis CI
|
YAML
|
apache-2.0
|
Yongyao/mudrod,fgreg/mudrod,lewismc/mudrod,fgreg/mudrod,mudrod/mudrod,Yongyao/mudrod,quintinali/mudrod,lewismc/mudrod,quintinali/mudrod,fgreg/mudrod,Yongyao/mudrod,mudrod/mudrod,lewismc/mudrod,quintinali/mudrod,Yongyao/mudrod,mudrod/mudrod,quintinali/mudrod,mudrod/mudrod,lewismc/mudrod,fgreg/mudrod
|
7e10e415c3eebf071d033feef361d6a0dff60072
|
.travis.yml
|
.travis.yml
|
language: haxe
sudo: false
haxe:
- development
install:
- haxelib install hxnodejs
script:
- haxe build.hxml
|
language: haxe
sudo: false
haxe:
- development
install:
- haxelib install hxnodejs
- haxelib install yaml
- haxelib git plist https://github.com/back2dos/plist
script:
- haxe build.hxml
- cd syntaxes
- haxe build.hxml
|
Test yaml -> plist conversion on Travis
|
Test yaml -> plist conversion on Travis
|
YAML
|
mit
|
vshaxe/vshaxe
|
3b818677d5c5f7fffee8a10ced0b80d24e88fd2f
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install --prefer-source
|
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install --prefer-source
|
Remove PHP 5.3 version for testing
|
Remove PHP 5.3 version for testing
|
YAML
|
mit
|
LapaLabs/YoutubeHelper
|
939acbcf5cc24de626b81853311c7f27884f79f6
|
.travis.yml
|
.travis.yml
|
distro: trusty
sudo: false
language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
matrix:
allow_failures:
- php: 7.3
services:
- mysql
before_script:
- npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev
- mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci"
- mysql -u root -e "GRANT ALL PRIVILEGES ON rhymix.* TO travis@localhost"
- mysql -u root -e "UPDATE mysql.user SET Password = PASSWORD('travis') WHERE User = 'travis'; FLUSH PRIVILEGES"
- if [[ $TRAVIS_PHP_VERSION != "7.3" ]]; then phpenv config-rm xdebug.ini; fi
- wget https://codeception.com/releases/2.3.9/codecept.phar
- php -S localhost:8000 &
script:
- php codecept.phar build
- php codecept.phar run --debug --fail-fast --env travis
- grunt lint
notifications:
email: false
|
distro: trusty
sudo: false
language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
services:
- mysql
before_script:
- npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev
- mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci"
- mysql -u root -e "GRANT ALL PRIVILEGES ON rhymix.* TO travis@localhost"
- mysql -u root -e "UPDATE mysql.user SET Password = PASSWORD('travis') WHERE User = 'travis'; FLUSH PRIVILEGES"
- if [[ $TRAVIS_PHP_VERSION != "7.3" ]]; then phpenv config-rm xdebug.ini; fi
- wget https://codeception.com/releases/2.3.9/codecept.phar
- php -S localhost:8000 &
script:
- php codecept.phar build
- php codecept.phar run --debug --fail-fast --env travis
- grunt lint
notifications:
email: false
|
Remove PHP 7.3 from allowed failures list
|
Remove PHP 7.3 from allowed failures list
|
YAML
|
lgpl-2.1
|
xetown/xe-core,xetown/xe-core,xetown/xe-core
|
e526037c983188284211392370bb03e92419cef6
|
.travis.yml
|
.travis.yml
|
sudo: false
sudo: false
|
sudo: false
language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls
|
Add v5.22 to Travis, and run in container by turning off sudo
|
Add v5.22 to Travis, and run in container by turning off sudo
|
YAML
|
artistic-2.0
|
briandfoy/module-extract-namespaces
|
b47cafbfa92684391a85975da3453a01bd2d42c1
|
.travis.yml
|
.travis.yml
|
sudo: true
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "pypy"
before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes openssh-server
install:
- pip install coveralls
- python setup.py install
script:
coverage run --source=executor setup.py test
after_success:
coveralls
|
sudo: true
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "pypy"
before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes openssh-server
install:
- pip install coveralls
- python setup.py install
script:
- coverage run --source=executor setup.py test
- coverage report --fail-under=90
after_success:
- coveralls
|
Make Travis CI builds when coverage isn't >= 90%
|
Make Travis CI builds when coverage isn't >= 90%
|
YAML
|
mit
|
xolox/python-executor
|
172ca70bbd016b394bf2fc3237d451c39a112eea
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "iojs"
- "0.12"
- "0.10"
|
sudo: false
language: node_js
node_js:
- "6"
- "8"
|
Upgrade supported Node.js versions to 6 and 8
|
Upgrade supported Node.js versions to 6 and 8
|
YAML
|
mit
|
tatsuyafw/gulp-nightwatch,StoneCypher/gulp-nightwatch
|
faea27b5c1f06ae23fc4805dc7fbb97b98e1e599
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install: pip install tox-travis
script: tox
|
sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install -U pip
- pip install tox-travis
script: tox
|
Use newer versions of pip/setuptools
|
Use newer versions of pip/setuptools
|
YAML
|
bsd-3-clause
|
chisholm/cti-pattern-validator,oasis-open/cti-pattern-validator
|
543bedf2754b9c817619b96cb26358de2e28baab
|
.travis.yml
|
.travis.yml
|
language: node_js
cache: yarn
node_js:
- node
- "9"
- "8"
- "6"
- "4"
install:
- YARN_IGNORE_ENGINES=true yarn
git:
depth: 5
|
language: node_js
cache: yarn
node_js:
- node
- "8"
- "6"
git:
depth: 5
|
Remove Node.js 4 and 9 support
|
Remove Node.js 4 and 9 support
|
YAML
|
mit
|
postcss/postcss-scss
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.