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
|
---|---|---|---|---|---|---|---|---|---|
3d3103c965979aec34900bfabd96a27225144c50
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7.0
script: phpunit --configuration phpunit.xml --coverage-text
|
language: php
php:
- 5.6
- 7.1
script: phpunit --configuration phpunit.xml --coverage-text
|
Add testing support for PHP 7.1
|
Add testing support for PHP 7.1
|
YAML
|
mit
|
darkin1/intercom
|
0262b4244c13b3ef148bf096874847aea84b93e5
|
.travis.yml
|
.travis.yml
|
language: node_js
before_install: "npm install -g npm"
node_js:
- "0.8"
- "0.10"
- "0.11"
|
language: node_js
before_install: "npm install -g npm"
node_js:
- "0.10"
- "0.11"
|
Disable testing with Node 0.8
|
Disable testing with Node 0.8
|
YAML
|
bsd-2-clause
|
istr/UglifyJS2,avdg/UglifyJS2,butchi/decodecodeJS,vjeux/UglifyJS2,shanaithal/UglifyJS2,jchbh-duplicate/UglifyJS2,TurkeyFried/uglifyjs2-dist,supriyantomaftuh/UglifyJS2,VIVEKLUCKY1848/UglifyJS2,kemitchell/UglifyJS2,davidbau/UglifyJS2,SpainTrain/UglifyJS2,sielay/UglifyJS2,HankMcCoy/UglifyJS2,digitalloggers/UglifyJS2,sebmck/UglifyJS2,butchi/codedecodeJS,githuboflee/first,shelsonjava/UglifyJS2,GerHobbelt/UglifyJS2,microlv/UglifyJS2,dabretin/UglifyJS2,hychen/UglifyJS2,Jeremy017/UglifyJS2,kittens/UglifyJS2,rvanvelzen/UglifyJS2
|
1e3e9865a59a9495b85183ee1ed5d4e43e1d6f6d
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script: nosetests
|
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script: nosetests
|
Add Python 3.5 to Travis-CI
|
Add Python 3.5 to Travis-CI
|
YAML
|
bsd-2-clause
|
python-constraint/python-constraint
|
284540ae8c0c2143e05540bf6fe49652e01ecaa6
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
|
sudo: false
language: node_js
node_js:
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
|
Build with Node.js 12 on Travis CI.
|
Build with Node.js 12 on Travis CI.
See #31.
|
YAML
|
mit
|
bigeasy/cliffhanger
|
a8590185a9a75704b1b3bc381120f617caf28e26
|
.travis.yml
|
.travis.yml
|
language: node_js
sudo: false
node_js:
- '4'
- '5'
- '6'
- '7'
- '8'
- '9'
- '10'
- '11'
- 'node'
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
cache:
directories:
- node_modules
|
language: node_js
sudo: false
node_js:
- '4'
- '5'
- '6.0'
- '6'
- '7'
- '8.0'
- '8'
- '9'
- '10.0'
- '10'
- '11.0'
- '11'
- 'node'
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
cache:
directories:
- node_modules
|
Test stable major base versions.
|
Test stable major base versions.
|
YAML
|
mit
|
olalonde/follow-redirects
|
0b109a6ecc7d6e6454744b7b07c5253d6281a362
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1.2
services:
- mysql
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- mysql -e 'CREATE DATABASE hackweek_test;'
before_script:
- cp config/database.yml.example config/database.yml
- cp config/application.yml.example config/application.yml
- cp config/secrets.yml.example config/secrets.yml
- RAILS_ENV=test bundle exec rake db:migrate --trace
script:
- 'bundle exec rspec --color --format documentation'
|
language: ruby
rvm:
- 2.1.2
services:
- mysql
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- RAILS_ENV=test bundle exec rake db:create --trace
before_script:
- cp config/database.yml.example config/database.yml
- cp config/application.yml.example config/application.yml
- cp config/secrets.yml.example config/secrets.yml
- RAILS_ENV=test bundle exec rake db:migrate --trace
script:
- 'bundle exec rspec --color --format documentation'
|
Use rake to create database
|
Use rake to create database
|
YAML
|
mit
|
SUSE/hackweek,srinidhibs/hackweek,srinidhibs/hackweek,srinidhibs/hackweek,hennevogel/hackweek,SUSE/hackweek,SUSE/hackweek,hennevogel/hackweek,hennevogel/hackweek,srinidhibs/hackweek
|
0f0089ece24e1243240d0a32665c6f4870cf5058
|
upup/models/cloudup/resources/addons/networking.kope.io/v1.0.20161116.yaml
|
upup/models/cloudup/resources/addons/networking.kope.io/v1.0.20161116.yaml
|
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: kopeio-networking-agent
namespace: kube-system
labels:
k8s-addon: networking.addons.k8s.io
spec:
template:
metadata:
labels:
name: kopeio-networking-agent
spec:
hostPID: true
hostIPC: true
hostNetwork: true
containers:
- resources:
requests:
cpu: 0.20
securityContext:
privileged: true
image: kopeio/networking-agent:1.0.20161116
name: networking-agent
volumeMounts:
- name: lib-modules
mountPath: /lib/modules
readOnly: true
volumes:
- name: lib-modules
hostPath:
path: /lib/modules
|
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: kopeio-networking-agent
namespace: kube-system
labels:
k8s-addon: networking.addons.k8s.io
spec:
template:
metadata:
labels:
name: kopeio-networking-agent
spec:
hostPID: true
hostIPC: true
hostNetwork: true
containers:
- resources:
requests:
cpu: 20m
securityContext:
privileged: true
image: kopeio/networking-agent:1.0.20161116
name: networking-agent
volumeMounts:
- name: lib-modules
mountPath: /lib/modules
readOnly: true
volumes:
- name: lib-modules
hostPath:
path: /lib/modules
|
Reduce CPU request for kopeio vxlan
|
Reduce CPU request for kopeio vxlan
|
YAML
|
apache-2.0
|
DualSpark/kops,justinsb/kops,chrislovecnm/kops,zytek/kops,MadDogTechnology/kops,andrewsykim/kops,reactiveops/kops,ikropotov/kops,blakebarnett/kops,MadDogTechnology/kops,WillemMali/kops,austinmoore-/kops,justinsb/kops,luomiao/kops,tsupertramp/kops,kris-nova/kops,faraazkhan/kops,luomiao/kops,chrislovecnm/kops,pdh/kops,andrewsykim/kops,tsupertramp/kops,aledbf/kops,mad01/kops,gambol99/kops,reactiveops/kops,WillemMali/kops,zytek/kops,austinmoore-/kops,sethpollack/kops,robinpercy/kops,robinpercy/kops,mad01/kops,reactiveops/kops,sp-borja-juncosa/kops,andrewsykim/kops,dacohen/kops,andrewsykim/kops,leandrocr/kops,faraazkhan/kops,kris-nova/kops,robinpercy/kops,WillemMali/kops,ikropotov/kops,kubernetes/kops,sethpollack/kops,luomiao/kops,sethpollack/kops,kris-nova/kops,sethpollack/kops,reactiveops/kops,robinpercy/kops,MadDogTechnology/kops,blakebarnett/kops,MadDogTechnology/kops,gambol99/kops,zytek/kops,gambol99/kops,dacohen/kops,BradErz/kops,dacohen/kops,mad01/kops,sp-borja-juncosa/kops,blakebarnett/kops,kris-nova/kops,faraazkhan/kops,BradErz/kops,justinsb/kops,chrislovecnm/kops,BradErz/kops,luomiao/kops,aledbf/kops,pdh/kops,leandrocr/kops,kubernetes/kops,sp-borja-juncosa/kops,pdh/kops,aledbf/kops,leandrocr/kops,ikropotov/kops,aledbf/kops,BradErz/kops,zytek/kops,blakebarnett/kops,leandrocr/kops,DualSpark/kops,gambol99/kops,sp-borja-juncosa/kops,DualSpark/kops,kubernetes/kops,tsupertramp/kops,faraazkhan/kops,DualSpark/kops,austinmoore-/kops,austinmoore-/kops,tsupertramp/kops,ikropotov/kops,dacohen/kops,mad01/kops,chrislovecnm/kops,pdh/kops,WillemMali/kops
|
899093c3f454b0703ea18cbc1417917231b4e833
|
.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:
- "python setup.py sdist"
- "mkdir tmp"
- "cd tmp"
- "pip install --upgrade pip"
- "pip install $(echo ../dist/skyfield-*.tar.gz)'[tests]'"
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
- "pip install unittest2"
- "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"
script:
- "assay --batch skyfield.tests"
- "cd .."
- "mv tmp/*.bsp skyfield/documentation"
- "./test-docs.sh"
|
# 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:
- "python setup.py sdist"
- "mkdir tmp"
- "cd tmp"
- "pip install --upgrade pip"
- "pip install $(echo ../dist/skyfield-*.tar.gz)'[tests]'"
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
- "pip install sphinx==1.7.2"
- "pip install unittest2"
- "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"
script:
- "assay --batch skyfield.tests"
- "cd .."
- "mv tmp/*.bsp skyfield/documentation"
- "./test-docs.sh"
|
Add Sphinx as dependency of Travis build
|
Add Sphinx as dependency of Travis build
|
YAML
|
mit
|
skyfielders/python-skyfield,skyfielders/python-skyfield
|
6af36dbb6f9364a8b76a18cebe05897027615ee2
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 3.6
before_install:
cache:
directories:
- $HOME/.cache/matplotlib
install:
pip install scipy pandas sklearn matplotlib pydot dill pathos sqlalchemy jupyter
script:
- export PYTHONPATH=$PYTHONPATH:..
- mkdir -p logs
- rm -rf ~/.matplotlib
- rm -rf ~/.cache/matplotlib
- rm -rf ~/.matplotlib/fontList.cache
- fc-cache
- python ./tests/bugs/issue_36/display_version_info.py
- python tests/demos/demo1.py
- python tests/func/test_ozone.py
- python tests/func/test_air_passengers.py
- make PYTHON=python -f tests/Makefile build-test
- python scripts/upload_to_chunk.io.py
- jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute docs/sample_code.ipynb
|
language: python
python:
- 3.6
before_install:
cache:
directories:
- $HOME/.cache/matplotlib
install:
pip install scipy pandas sklearn matplotlib pydot dill pathos sqlalchemy jupyter
script:
- export PYTHONPATH=$PYTHONPATH:..
- mkdir -p logs
- rm -rf ~/.matplotlib
- rm -rf ~/.cache/matplotlib
- rm -rf ~/.matplotlib/fontList.cache
- fc-cache
- python ./tests/bugs/issue_36/display_version_info.py
- python tests/demos/demo1.py
- python tests/func/test_ozone.py
- python tests/func/test_air_passengers.py
- make PYTHON=python -f tests/Makefile build-test
- python scripts/upload_to_chunk.io.py
- pip install .
- jupyter nbconvert --to notebook --ExecutePreprocessor.timeout=None --execute docs/sample_code.ipynb
|
Test that 'pip install' works
|
Test that 'pip install' works
|
YAML
|
bsd-3-clause
|
antoinecarme/pyaf,antoinecarme/pyaf,antoinecarme/pyaf
|
1763f049a3e3620546072eb088596970026ac543
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "iojs"
before_install:
- npm install -g grunt-cli
|
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs"
before_install:
- npm install -g grunt-cli
|
Update to only be compatible with node 0.10 and later
|
Update to only be compatible with node 0.10 and later
|
YAML
|
mit
|
optimizely/optimizely-canvas-js-sdk
|
c2a72d725aeea7020b787ced42b82017893c6cd7
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7.0
- 7.1
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
|
language: php
php:
- 7.0
- 7.1
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
|
Stop supporting PHP 5.6 on Dusk 2.0
|
Stop supporting PHP 5.6 on Dusk 2.0
Due to the partial dependencies on Laravel 5.5, Dusk should also stop supporting PHP 5.6 on 2.0 release.
|
YAML
|
mit
|
laravel/dusk
|
2d34e950bb1b9c502fa5cdaa7690a628000c2262
|
.travis.yml
|
.travis.yml
|
sudo: false
language: rust
matrix:
include:
- rust: nightly
env:
# will have to be commented out the following line
- SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
- rust: beta
- rust: 1.13.0
install:
- rvm use 2.2
- bundle install --path vendor/bundle
script:
- bundle exec fluentd -c conf/in_forward.conf &
- cargo test --features "readme-testing fluentd"
after_script:
- killall -SIGTERM ruby
|
sudo: false
language: rust
matrix:
include:
- rust: nightly
# env:
# # will have to be commented out the following line
# - SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
- rust: beta
- rust: 1.13.0
install:
- rvm use 2.2
- bundle install --path vendor/bundle
script:
- bundle exec fluentd -c conf/in_forward.conf &
- cargo test --features "readme-testing fluentd"
after_script:
- killall -SIGTERM ruby
|
Comment out needless env section
|
Comment out needless env section
|
YAML
|
mit
|
cosmo0920/fruently,cosmo0920/fruently
|
1cc99accb36fbbab6664d6e7de6bba7edbb0b5d5
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
|
language: java
install: mvn install -DskipTests=true -Dgpg.skip=true
jdk:
- openjdk6
- openjdk7
- oraclejdk7
|
Disable GPG signing in Travis config.
|
Disable GPG signing in Travis config.
|
YAML
|
apache-2.0
|
bmeurer/eui4j
|
e388357710a13db12a5995338c07a3db261f1736
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache:
bundler: true
matrix:
fast_finish: true
include:
- rvm: 2.2
env: RUN=default TZ="/usr/share/zoneinfo/Pacific/Fiji"
- rvm: 2.2
env: RUN=default SPROCKETS_VERSION="~> 2.12.3"
- rvm: 2.1
env: RUN=rspec
- rvm: 1.9.3
env: RUN=rspec
- rvm: 2.0.0
env: RUN="rspec mspec_phantom"
- rvm: rbx
env: RUN=rspec
- rvm: jruby
env: RUN=rspec
- rvm: jruby-head
env: RUN=rspec
allow_failures:
- rvm: 1.8.7
- rvm: 1.9.3
- rvm: 2.0.0
- rvm: rbx
- rvm: jruby
- rvm: jruby-head
before_install:
- git submodule update --init
script:
- "bundle exec rake $RUN"
notifications:
irc: "irc.freenode.org#opal"
webhooks:
urls:
- https://webhooks.gitter.im/e/2ea12333adebda0c2289
|
language: ruby
sudo: false
cache:
bundler: true
matrix:
fast_finish: true
include:
- rvm: 2.2
env: RUN=default TZ="/usr/share/zoneinfo/Pacific/Fiji"
- rvm: 2.2
env: RUN=default SPROCKETS_VERSION="~> 2.12.3"
- rvm: 2.1
env: RUN=rspec
- rvm: 1.9.3
env: RUN=rspec
- rvm: 2.0.0
env: RUN="rspec mspec_phantom"
- rvm: rbx
env: RUN=rspec
- rvm: jruby
env: RUN=rspec
- rvm: jruby-head
env: RUN=rspec
allow_failures:
- rvm: 1.8.7
- rvm: 1.9.3
- rvm: rbx
- rvm: jruby
- rvm: jruby-head
before_install:
- git submodule update --init
script:
- "bundle exec rake $RUN"
notifications:
irc: "irc.freenode.org#opal"
webhooks:
urls:
- https://webhooks.gitter.im/e/2ea12333adebda0c2289
|
Move mspec_phantom back to normal Travis build
|
Move mspec_phantom back to normal Travis build
|
YAML
|
mit
|
Mogztter/opal,c42engineering/opal,Ajedi32/opal,gabrielrios/opal,merongivian/opal,c42engineering/opal,Flikofbluelight747/opal,jgaskins/opal,Mogztter/opal,jannishuebl/opal,jannishuebl/opal,wied03/opal,opal/opal,kachick/opal,Flikofbluelight747/opal,castwide/opal,gausie/opal,suyesh/opal,iliabylich/opal,castwide/opal,iliabylich/opal,iliabylich/opal,jannishuebl/opal,gabrielrios/opal,gabrielrios/opal,merongivian/opal,jgaskins/opal,Mogztter/opal,wied03/opal,kachick/opal,jgaskins/opal,opal/opal,gausie/opal,fazibear/opal,gausie/opal,Ajedi32/opal,Ajedi32/opal,Flikofbluelight747/opal,bbatsov/opal,suyesh/opal,c42engineering/opal,Mogztter/opal,merongivian/opal,castwide/opal,bbatsov/opal,kachick/opal,wied03/opal,bbatsov/opal,opal/opal,opal/opal,kachick/opal,fazibear/opal,suyesh/opal,fazibear/opal
|
1474bc1c59d09203f6bf13303e605f6caaa6fe93
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.0
- 7.1
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
|
language: php
php:
- 7.0
- 7.1
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --coverage-text --colors=never
|
Add code coverage report to Travis build.
|
Add code coverage report to Travis build.
|
YAML
|
mit
|
samrap/acf-fluent
|
cc4a64b785dee74a9cb9a039e1739c2b68e2dcee
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- 1.15.x
- tip
script:
- make test
- ./go.test.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
slack:
if: branch = main
on_pull_requests: false
on_success: never
on_failure: change
rooms: $SLACK_TOKEN
|
language: go
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- 1.15.x
- tip
script:
- make test
- ./go.test.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
slack:
if: branch = main
on_pull_requests: false
on_success: never
on_failure: change
rooms:
- secure: IeJzY9FGjI5yK9fisoQst+C9JWzrjQAVWtOr2uD61uEuYPT38oh4FgMMrbw2TvN0672eC14sZMa6EkxViWuOpGX6BZnJhv/s35Oh7RpC9+XIDpgyim9xh7BPRSA9EyVr1X8XN81yXPi9Qn5dJBJBCmR8ceeRvxjq5BmFnp6EaN0=
|
Revert "chore: move encrypted tokens to environment variables"
|
Revert "chore: move encrypted tokens to environment variables"
This reverts commit 12898f5de80016bae0dcc5689dcaa33d21b36657.
|
YAML
|
mit
|
sendgrid/smtpapi-go,sendgrid/smtpapi-go
|
7f81bdc15db1b7c054c8c0dd19fee302c5da2e50
|
.travis.yml
|
.travis.yml
|
language: erlang
install:
- curl -Lo ./rebar3 https://s3.amazonaws.com/rebar3/rebar3
- chmod a+x ./rebar3
otp_release:
- 17.5
script: ./rebar3 do clean, compile, eunit, ct, dialyzer
|
language: erlang
install:
- curl -Lo ./rebar3 https://s3.amazonaws.com/rebar3/rebar3
- chmod a+x ./rebar3
otp_release:
- 17.5
before_script: ./rebar3 update
script: ./rebar3 do clean, compile, eunit, ct, dialyzer
|
Update to get dependencies before running script
|
Update to get dependencies before running script
|
YAML
|
bsd-3-clause
|
mpraglowski/web-in-erlang-walking-skeleton,mpraglowski/web-in-erlang-walking-skeleton,mpraglowski/web-in-erlang-walking-skeleton
|
6e74d27b97a19d39b09ecbb801d02172b78b7794
|
.travis.yml
|
.travis.yml
|
language: ruby
script: "script/test_all 2>&1"
bundler_args: "--standalone --binstubs"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- 2.0.0
|
language: ruby
script: "script/test_all 2>&1"
bundler_args: "--standalone --binstubs"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- 2.0.0
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: rbx-18mode
|
Revert "rbx build is green; let us try to keep it that way"
|
Revert "rbx build is green; let us try to keep it that way"
This reverts commit 47d34cde7693b7d3dad1df6da50e560f51047c76.
|
YAML
|
mit
|
edwardpark/rspec-core,Teino1978-Corp/Teino1978-Corp-rspec-core,behnaaz/rspec-core,h4ck3rm1k3/rspec-core,yaoshipu/rspec-core,dg-ratiodata/rspec-core,maclover7/rspec-core,azbshiri/rspec-core,irfanah/rspec-core,arronmabrey/rspec-core,iguchi1124/rspec-core,r7kamura/rspec-core,h4ck3rm1k3/rspec-core,danascheider/rspec-core,arronmabrey/rspec-core,r7kamura/rspec-core,a-suenami/rspec-core,danascheider/rspec-core,behnaaz/rspec-core,eugeneius/rspec-core,pandabrand/rspec-core,maclover7/rspec-core,rspec/rspec-core,eugeneius/rspec-core,leg100/rspec-core,yaoshipu/rspec-core,Teino1978-Corp/Teino1978-Corp-rspec-core,danascheider/rspec-core,SoldierCoder/rspec-core,h4ck3rm1k3/rspec-core,yaoshipu/rspec-core,xmik/rspec-core,a-suenami/rspec-core,iguchi1124/rspec-core,eugeneius/rspec-core,pandabrand/rspec-core,xmik/rspec-core,azbshiri/rspec-core,arronmabrey/rspec-core,Teino1978-Corp/Teino1978-Corp-rspec-core,maclover7/rspec-core,edwardpark/rspec-core,edwardpark/rspec-core,xmik/rspec-core,urbanautomaton/rspec-core,iguchi1124/rspec-core,urbanautomaton/rspec-core,avantcredit/rspec-core,a-suenami/rspec-core,avantcredit/rspec-core,irfanah/rspec-core,dg-ratiodata/rspec-core,avantcredit/rspec-core,leg100/rspec-core,azbshiri/rspec-core,rspec/rspec-core,dg-ratiodata/rspec-core,SoldierCoder/rspec-core,pandabrand/rspec-core,SoldierCoder/rspec-core,behnaaz/rspec-core,rspec/rspec-core,leg100/rspec-core,irfanah/rspec-core,urbanautomaton/rspec-core
|
5408431d7124c3626abc6bf8772f4bf2cbc50107
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
install:
- pip install -e .
- pip install flake8==2.1.0 pep8==1.4.6 pyflakes==0.7.3
script:
- flake8 --statistics *.py
- python tests.py
matrix:
allow_failures:
- python: pypy
|
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
install:
- pip install -e .
- pip install flake8==2.1.0 pep8==1.4.6 pyflakes==0.7.3
- [ `pip --version | python -c 'import sys; line = sys.stdin.read().splitlines()[0]; print(line.split()[1].split(".", 2)[1])'` -ge 4 ] && pip install -I virtualenv==1.10.1 || :
script:
- flake8 --statistics *.py
- python tests.py
matrix:
allow_failures:
- python: pypy
|
Install old virtualenv if work with old pip when installing library on Travis CI.
|
Install old virtualenv if work with old pip when installing library on Travis CI.
|
YAML
|
bsd-2-clause
|
playpauseandstop/bootstrapper
|
f2b8572136c8a988197a6d8be61bf64b840ef954
|
.travis.yml
|
.travis.yml
|
sudo: required
language: node_js
node_js:
- node
services:
- docker
before_install:
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
after_success:
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- ./ci-deployment/docker_ci.sh
- ./ci-deployment/rancher_pr_deploy.sh
script:
- docker-compose -f docker-compose-tests.yml build travis-tests
- docker-compose -f docker-compose-tests.yml run travis-tests
after_script:
- docker-compose -f docker-compose-tests.yml down -v
|
sudo: required
language: node_js
node_js:
- node
services:
- docker
before_install:
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
after_success:
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- ./scripts/ci-deployment/docker_ci.sh
- ./scripts/ci-deployment/rancher_pr_deploy.sh
script:
- docker-compose -f docker-compose-tests.yml build travis-tests
- docker-compose -f docker-compose-tests.yml run travis-tests
after_script:
- docker-compose -f docker-compose-tests.yml down -v
|
Update path to deployment scripts
|
:bug: Update path to deployment scripts
|
YAML
|
mit
|
nhsuk/profiles,nhsuk/profiles
|
d2ab45081ce4927bbe4c33272ea4690c87356337
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
env:
global:
# Improves JRuby startup time.
# See https://github.com/jruby/jruby/wiki/Improving-startup-time
- "JRUBY_OPTS=--dev"
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.1
- jruby-9.1.2.0
before_script:
- git config --local user.email "[email protected]"
- git config --local user.name "Travis CI"
script:
- bundle exec rspec
# Skip Overcommit run on JRuby since it's unstable and doesn't test actual functionality
- '[[ $TRAVIS_RUBY_VERSION =~ ^jruby ]] && exit || true'
- bundle exec overcommit --sign
- bundle exec overcommit --run
|
language: ruby
sudo: false
cache: bundler
env:
global:
# Improves JRuby startup time.
# See https://github.com/jruby/jruby/wiki/Improving-startup-time
- "JRUBY_OPTS=--dev"
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.1
- jruby-9.1.5.0
before_script:
- git config --local user.email "[email protected]"
- git config --local user.name "Travis CI"
script:
- bundle exec rspec
# Skip Overcommit run on JRuby since it's unstable and doesn't test actual functionality
- '[[ $TRAVIS_RUBY_VERSION =~ ^jruby ]] && exit || true'
- bundle exec overcommit --sign
- bundle exec overcommit --run
|
Upgrade JRuby to latest release
|
Upgrade JRuby to latest release
|
YAML
|
mit
|
artemartemov/scss-lint-hdm
|
a5073f8f02e60755be53900927c95cc6df97569a
|
.travis.yml
|
.travis.yml
|
---
services:
- redis
language: rust
cache: cargo
rust:
- stable
matrix:
include:
- rust: stable
env: FMT=1
before_install:
- cargo install just
before_script:
- rustup component add rustfmt
script:
- just format
- rust: stable
env: CLIPPY=1
before_install:
- cargo install just
before_script:
- rustup component add clippy
script:
- just lint
- rust: stable
env: TEST=1
before_install:
- cargo install just
script:
- just test
allow_failures:
- rust: stable
env: CLIPPY=1
notifications:
email:
on_success: change
on_failure: always
|
---
services:
- redis
language: rust
cache: cargo
rust:
- stable
matrix:
include:
- rust: stable
env: FMT=1
before_install:
- cargo install just
before_script:
- rustup component add rustfmt
script:
- just format
- rust: stable
env: CLIPPY=1
before_install:
- cargo install just
before_script:
- rustup component add clippy
script:
- just lint
- rust: stable
env: TEST=1
before_install:
- cargo install just
script:
- just test
notifications:
email:
on_success: change
on_failure: always
|
Remove lint from allowed failures
|
Remove lint from allowed failures
|
YAML
|
mit
|
spk/maman
|
27744ab0f0417ea5b2ba94cfc2e5dad81c4af31c
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
env:
- CC=clang CXX=clang++
- ""
install:
- npm install --no-package-lock --ignore-scripts
before_script:
- tmp=$(mktemp --directory)
- bash -O dotglob -O extglob -c 'mv !(node_modules|test) "$1"/' bash "$tmp"
- pack=$(npm pack "$tmp")
- tar --strip-components=1 -x -v -f "$pack"
- npm install --no-package-lock
script:
- node_modules/.bin/tap test
sudo: false
|
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
env:
- CC=clang CXX=clang++
- ""
install:
- npm install --no-package-lock --ignore-scripts
before_script:
- tmp=$(mktemp --directory)
- bash -O dotglob -O extglob -c 'mv !(node_modules|test) "$1"/' bash "$tmp"
- pack=$(npm pack "$tmp")
- tar --strip-components=1 -x -v -f "$pack"
- npm install --no-package-lock
script:
- node_modules/.bin/tap test
|
Remove `sudo: false` from CI configuration
|
Remove `sudo: false` from CI configuration
It’s the default now.
|
YAML
|
isc
|
charmander/bcrypt-small,charmander/bcrypt-small,charmander/bcrypt-small
|
5a0329a004b3ba8d833057f724e974662ce4771d
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: required
os:
- linux
jdk:
- oraclejdk8 # Building Bazel requires JDK8.
language: go
go: 1.10.x
install: true
services:
- docker
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8'
key_url: 'https://storage.googleapis.com/bazel-apt/doc/apt-key.pub.gpg'
packages:
- bazel
- librpm-dev
install:
- go get -u github.com/bazelbuild/buildifier/buildifier
script:
# Run all tests
- cd src && bazel clean && bazel --batch test --test_output=errors //...
# Check for issues with the format of bazel config files.
- buildifier -mode=check $(find . -name BUILD.bazel -type f)
- buildifier -mode=check $(find . -name WORKSPACE -type f)
|
dist: trusty
sudo: required
os:
- linux
jdk:
- oraclejdk8 # Building Bazel requires JDK8.
language: go
go: 1.10.x
install: true
services:
- docker
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8'
key_url: 'https://storage.googleapis.com/bazel-apt/doc/apt-key.pub.gpg'
packages:
- bazel
- librpm-dev
install:
- go get -u github.com/bazelbuild/buildifier/buildifier
script:
# Run all tests
- cd src && bazel clean && bazel --batch test --noshow_loading_progress --noshow_progress --features=race --test_verbose_timeout_warnings --test_output=errors //...
# Check for issues with the format of bazel config files.
- buildifier -mode=check $(find . -name BUILD.bazel -type f)
- buildifier -mode=check $(find . -name WORKSPACE -type f)
|
Update bazel flags to speed things up and show more errors.
|
Update bazel flags to speed things up and show more errors.
|
YAML
|
apache-2.0
|
google/minions,google/minions,google/minions
|
d663b12990a9eea310377f61bf590e36f75bf29d
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.6"
# Install conda
install:
- sudo apt-get update
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date. We do this
# conditionally because it saves us some downloading if the version is
# the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-3.4.2-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-3.4.2-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
# command to install dependencies
install:
- conda install -c conda-forge hdbscan
- pip install -r requirements.txt
- pip install coveralls
- pip install pytest-cov
# command to run tests
script: pytest --cov=DBCV
after_success:
- coveralls
|
language: python
python:
- "3.6"
# Install conda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
install:
# command to install dependencies
- conda install --yes --file requirements.txt
- pip install coveralls
- pip install pytest-cov
# command to run tests
script: pytest --cov=DBCV
after_success:
- coveralls
|
Use conda instead of pip
|
Use conda instead of pip
|
YAML
|
mit
|
christopherjenness/DBCV,christopherjenness/DBCV
|
f367fd21eb5b67d0983348df0704e6c64a7760f9
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.9.2
- 1.9.3
- rbx-19mode
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
|
Test on Ruby 2.0.0 & JRuby 1.9-mode
|
Test on Ruby 2.0.0 & JRuby 1.9-mode
|
YAML
|
bsd-2-clause
|
amarshall/word-guesser
|
6cbeb260a4bbc79d94929e7f71367ee751890b1c
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.2
- 2.2.3
bundler_args: --without local
addons:
code_climate:
repo_token: f53558412d42058b35e8dc81c8292423e3c9fcfb94d86c5f0efbc2aee1e95028
before_install: gem install bundler -v 1.11.2
|
language: ruby
rvm:
- 2.2.2
- 2.2.3
bundler_args: --without local
addons:
code_climate:
repo_token: f53558412d42058b35e8dc81c8292423e3c9fcfb94d86c5f0efbc2aee1e95028
before_install: gem install bundler -v 1.11.2
after_script:
- codeclimate-test-reporter < lcov.info
|
Add support of simplecov to TravisCi
|
Add support of simplecov to TravisCi
|
YAML
|
mit
|
chubarovNick/decent_action,chubarovNick/decent_action
|
76df95bfbb126330f28ba25b56ad9e18fa13b388
|
.travis.yml
|
.travis.yml
|
language: node_js
matrix:
include:
- node_js: "stable"
env: GULP_TASK="test-server"
- node_js: "0.10"
env: GULP_TASK="test-server"
- node_js: "0.10"
env: GULP_TASK="test-client-travis"
fast_finish: true
notifications:
email: false
|
language: node_js
matrix:
include:
- node_js: "stable"
env: GULP_TASK="test-server"
- node_js: "0.10"
env: GULP_TASK="test-server"
- node_js: "stable"
env: GULP_TASK="test-client-travis"
fast_finish: true
notifications:
email: false
|
Use stable node for qunit tests on Travis
|
Use stable node for qunit tests on Travis
|
YAML
|
mit
|
LavrovArtem/testcafe-hammerhead,miherlosev/testcafe-hammerhead,miherlosev/testcafe-hammerhead,miherlosev/testcafe-hammerhead,miherlosev/testcafe-hammerhead,AlexanderMoskovkin/testcafe-hammerhead,DevExpress/testcafe-hammerhead,AlexanderMoskovkin/testcafe-hammerhead,LavrovArtem/testcafe-hammerhead,LavrovArtem/testcafe-hammerhead,georgiy-abbasov/testcafe-hammerhead,DevExpress/testcafe-hammerhead,LavrovArtem/testcafe-hammerhead,DevExpress/testcafe-hammerhead,DevExpress/testcafe-hammerhead,georgiy-abbasov/testcafe-hammerhead,churkin/testcafe-hammerhead,churkin/testcafe-hammerhead
|
24fc651c3a70434bc18411d7bae4ac4b75848374
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.9.x
script: ./mkdist.sh
deploy:
provider: releases
api_key: $GH_OAUTH_TOKEN
file_glob: true
file: gopherbot-*.zip
skip_cleanup: true
overwrite: true
on:
tags: true
|
language: go
go:
- 1.9.x
script: ./mkdist.sh
deploy:
provider: releases
api_key: $GH_OAUTH_TOKEN
file_glob: true
file: gopherbot-*.zip
skip_cleanup: true
overwrite: true
on:
branch: master
|
Deploy for all master commits
|
Deploy for all master commits
|
YAML
|
mit
|
uva-its/gopherbot,uva-its/gopherbot,parsley42/gopherbot,uva-its/gopherbot,uva-its/gopherbot,parsley42/gopherbot,parsley42/gopherbot,parsley42/gopherbot
|
091c6fd02f7ac6ad115a178b67c1c9210d309445
|
.travis.yml
|
.travis.yml
|
sudo: false
language:
- python
python:
- "3.5"
before_install:
- pip install codecov
install:
- make deps
script:
- make test
after_success:
- codecov
|
sudo: false
language:
- python
python:
- "3.5"
env:
- NODE_VERSION="6.9"
before_install:
- nvm install $NODE_VERSION
- pip install codecov
install:
- make deps
script:
- make test
after_success:
- codecov
|
Use a newer version of Node on Travis
|
Use a newer version of Node on Travis
ESLint 4.x requires a more recent version of Node than the default when
the language is set to "python".
Method from https://stackoverflow.com/a/38346177/434243
|
YAML
|
bsd-2-clause
|
hypothesis/bouncer,hypothesis/bouncer,hypothesis/bouncer
|
b6a7cc2f04b7086d759a10a8c64b78578b27debd
|
.travis.yml
|
.travis.yml
|
language: ruby
jdk:
- oraclejdk7
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
- rvm: jruby-head
|
language: ruby
cache: bundler
jdk:
- oraclejdk7
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
- rvm: jruby-head
|
Use TravisCI optional bundle caching
|
Use TravisCI optional bundle caching
|
YAML
|
mit
|
jwkoelewijn/batsir
|
89075d7ac0557bfab44f49e23a95cf9965f2c5a8
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "stable"
install: npm install
services:
- postgresql
env:
- NODE_ENV=test
before_script:
- psql -c 'create database postit_db_test;' -U postgres
- psql -c "CREATE USER Newman WITH PASSWORD 'andela2017';" -U postgres
- npm run build
- sequelize db:migrate
- sequelize db:seed:all
script: npm test
# after_success: npm run coverage
|
language: node_js
node_js:
- "stable"
install: npm install
services:
- postgresql
env:
- NODE_ENV=test
before_script:
- psql -c 'create database postit_db_test;' -U postgres
- psql -c "CREATE USER Newman WITH PASSWORD 'andela2017';" -U postgres
- npm run build-server
- sequelize db:migrate
- sequelize db:seed:all
script: npm test
# after_success: npm run coverage
|
Update CI badges for Travis and Coverals
|
Update CI badges for Travis and Coverals
|
YAML
|
mit
|
Philipeano/post-it,Philipeano/post-it
|
441534e026db522bd74f5157b7f08696358f3ce4
|
packages/di/distribution-nixpkgs.yaml
|
packages/di/distribution-nixpkgs.yaml
|
homepage: https://github.com/peti/distribution-nixpkgs#readme
changelog-type: ''
hash: c59fafc52c45cd5d8f72ec98123806c80b82f4e52fc0a9c03b8e481570a0b795
test-bench-deps:
base: -any
hspec: -any
doctest: -any
lens: -any
distribution-nixpkgs: -any
deepseq: -any
maintainer: Peter Simons <[email protected]>
synopsis: Types and functions to manipulate the Nixpkgs distribution
changelog: ''
basic-deps:
bytestring: -any
split: -any
Cabal: ! '>1.24'
base: ! '>4.2 && <5'
language-nix: ! '>2'
process: -any
containers: -any
lens: -any
deepseq: ! '>=1.4'
pretty: ! '>=1.1.2'
aeson: -any
all-versions:
- '1'
- '1.0.0.1'
- '1.1'
author: ''
latest: '1.1'
description-type: haddock
description: Types and functions to represent, query, and manipulate the Nixpkgs distribution.
license-name: BSD3
|
homepage: https://github.com/peti/distribution-nixpkgs#readme
changelog-type: ''
hash: 5bb5036828f7353f1ff340795bf3be9a33f3847683638d055e03239f018668cf
test-bench-deps:
base: -any
hspec: -any
lens: -any
distribution-nixpkgs: -any
deepseq: -any
maintainer: Peter Simons <[email protected]>
synopsis: Types and functions to manipulate the Nixpkgs distribution
changelog: ''
basic-deps:
bytestring: -any
split: -any
Cabal: ! '>2.2'
base: ! '>4.2 && <5'
language-nix: ! '>2'
process: -any
containers: -any
lens: -any
deepseq: ! '>=1.4'
pretty: ! '>=1.1.2'
aeson: -any
all-versions:
- '1'
- '1.0.0.1'
- '1.1'
- '1.1.1'
author: ''
latest: '1.1.1'
description-type: haddock
description: Types and functions to represent, query, and manipulate the Nixpkgs distribution.
license-name: BSD3
|
Update from Hackage at 2018-03-09T10:47:54Z
|
Update from Hackage at 2018-03-09T10:47:54Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
87c2f390d9729e91a1598647aeb348e8a702a5b6
|
.travis.yml
|
.travis.yml
|
language: perl
perl:
- "5.14"
before_install:
- sudo apt-get install libdb-dev libgd-dev
- cpanm --notest GD::Image
- cpanm --notest git://github.com/bioperl/[email protected]
- sh setup.sh
- cat setup.log
install: true
script:
- prove -Isrc/perl5 -lr tests
after_failure: cat setup.log
|
language: perl
perl:
- "5.14"
before_install:
- sudo apt-get install libdb-dev libgd2-noxpm-dev
- cpanm --notest GD::Image
- cpanm --notest git://github.com/bioperl/[email protected]
- sh setup.sh
- cat setup.log
install: true
script:
- prove -Isrc/perl5 -lr tests
after_failure: cat setup.log
|
Add the specific libgd library to use
|
Add the specific libgd library to use
|
YAML
|
lgpl-2.1
|
erasche/jbrowse,limeng12/jbrowse,erasche/jbrowse,limeng12/jbrowse,nathandunn/jbrowse,Arabidopsis-Information-Portal/jbrowse,limeng12/jbrowse,GMOD/jbrowse,limeng12/jbrowse,GMOD/jbrowse,nathandunn/jbrowse,erasche/jbrowse,Arabidopsis-Information-Portal/jbrowse,GMOD/jbrowse,Arabidopsis-Information-Portal/jbrowse,erasche/jbrowse,limeng12/jbrowse,limeng12/jbrowse,Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,erasche/jbrowse,Arabidopsis-Information-Portal/jbrowse,nathandunn/jbrowse,Arabidopsis-Information-Portal/jbrowse,GMOD/jbrowse,erasche/jbrowse,nathandunn/jbrowse,GMOD/jbrowse,erasche/jbrowse,limeng12/jbrowse,nathandunn/jbrowse,limeng12/jbrowse,erasche/jbrowse
|
412bbd531152a98d399271becc123275a17a5b28
|
.travis.yml
|
.travis.yml
|
rvm: 2.2
sudo: required
# install the pre-release chef-dk. Use chef-stable-precise to install the stable release
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1204
- INSTANCE=default-centos-71
# Don't `bundle install`
install: echo "skip bundle install"
# Ensure we make ChefDK's Ruby the default
before_script:
# https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142230889
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef gem install kitchen-docker
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec
- KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
|
sudo: required
# install the pre-release chef-dk. Use chef-stable-precise to install the stable release
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1204
- INSTANCE=default-centos-71
# Don't `bundle install`
install: echo "skip bundle install"
# Ensure we make ChefDK's Ruby the default
before_script:
# https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142230889
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef gem install kitchen-docker
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec
- KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
|
Remove RVM from Travis since we use Ruby in ChefDK
|
Remove RVM from Travis since we use Ruby in ChefDK
|
YAML
|
apache-2.0
|
chef-cookbooks/gecode,opscode-cookbooks/gecode
|
4b4e5692ea4a73390f54a26a52f6579a706fa33d
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode7.3
rvm: system
install:
- sudo gem update --system --no-document
- sudo gem install bundler --no-document -n /usr/local/bin
- sudo chown -R $(whoami) ${TRAVIS_BUILD_DIR} # ensure tmp/ is writable for bundler
- bundle install
script:
- bundle exec rake
- bundle exec soloist
|
language: objective-c
osx_image: xcode7.3
rvm: system
install:
- sudo gem update --system
- export GEM_HOME=tmp/ruby/2.0.0/
- export PATH=${GEM_HOME}/bin:${PATH}
- gem install bundler --no-document
- bundle install --system
script:
- bundle exec rake ci
|
Set GEM_HOME and install all gems, including bundler there
|
Set GEM_HOME and install all gems, including bundler there
|
YAML
|
mit
|
pivotal-sprout/sprout-exemplar,pivotal-sprout/sprout-exemplar
|
3b92fef643cd9dc6e0b1b7ce8e07cf57dd792a6e
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js: "node"
branches:
only:
- master
|
language: node_js
node_js: "node"
branches:
only:
- master
- deploy
|
Enable builds from the deploy branch in Travis
|
Enable builds from the deploy branch in Travis
Enable Travis CI builds from the deploy branch.
|
YAML
|
apache-2.0
|
martincostello/alexa-london-travel
|
60cb0e1886267dbb53d7c22277d6adc5f2fa32f2
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7.8"
- "2.7.9"
- "2.7.10"
- "2.7.11"
- "2.7.12"
- "3.4"
- "3.5"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.9
- DJANGO_VERSION=1.10
install:
- pip install -q Django==$DJANGO_VERSION
- python setup.py -q install
- pip install -e .
- pip install codecov
script:
- python runtests.py
- coverage run runtests.py
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: python
python:
- "2.7.8"
- "2.7.9"
- "2.7.10"
- "2.7.11"
- "2.7.12"
- "3.4"
- "3.5"
- "3.6"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.9
- DJANGO_VERSION=1.10
install:
- pip install -q Django==$DJANGO_VERSION
- python setup.py -q install
- pip install -e .
- pip install codecov
script:
- python runtests.py
- coverage run runtests.py
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Add Python3.6 to test env
|
Add Python3.6 to test env
|
YAML
|
bsd-3-clause
|
narenchoudhary/django-export-csv,narenchoudhary/django-export-csv
|
85556a976e1db79d92707230bf2f20696834b6ac
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install
|
language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install
|
Add PHP 5.5 to the Travis CI build matrix.
|
Add PHP 5.5 to the Travis CI build matrix.
|
YAML
|
mit
|
bighead-dev/PredisServiceProvider,nrk/PredisServiceProvider
|
0c6ec784e4fac17d5ec04896f047e3c7d322a885
|
.travis.yml
|
.travis.yml
|
language: bash
branches:
only:
- MANUAL_TRIGGER
addons:
apt:
packages:
- rpm
install: true
script: true
|
language: bash
branches:
only:
- MANUAL_TRIGGER
addons:
apt:
packages:
- rpm
install: true
script:
- rpmbuild -bb --buildroot $(pwd) -D "version ${VERSION}" -D "buildrelease 1" -D "_rpmdir $(pwd)/_build" insight-agent.spec
|
Add rpmbuild as build script
|
Add rpmbuild as build script
|
YAML
|
mit
|
palette-software/PaletteInsightAgent,palette-software/PaletteInsightAgent,palette-software/PaletteInsightAgent,palette-software/PaletteInsightAgent
|
4ebab346c0093cb47b874969a8852d45428bbf99
|
.travis.yml
|
.travis.yml
|
language: rust
notifications:
email:
on_success: never
on_failure: always
script:
- cargo build
- cargo test
- rustdoc --test README.md -L target
after_success:
- .travis/publish_doc.sh
env:
global:
secure: gItlqVnR8TH9C9XFnMkiJnymBK8neHwt5xwGKUwRhQ1u4aiu4j38W6psV+b53N+fomOUeLbxNrbp+zpQTaqC3Ro2fWbp8sXpJIle1shdBbdmgEz5kNvLMWUzGcyjmoVXaj3tRIGdsi0qWiHQM6beq4/Ph02Y68p22BX+2conbH8=
|
language: rust
notifications:
email:
on_success: never
on_failure: always
script:
- cargo build
- cargo test
- cargo doc --no-deps
- rustdoc --test README.md -L target
after_success:
- .travis/publish_doc.sh
env:
global:
secure: gItlqVnR8TH9C9XFnMkiJnymBK8neHwt5xwGKUwRhQ1u4aiu4j38W6psV+b53N+fomOUeLbxNrbp+zpQTaqC3Ro2fWbp8sXpJIle1shdBbdmgEz5kNvLMWUzGcyjmoVXaj3tRIGdsi0qWiHQM6beq4/Ph02Y68p22BX+2conbH8=
|
Create the docs using cargo
|
Create the docs using cargo
|
YAML
|
mit
|
mvdnes/nss-rs
|
c661ccf5aaee7c91dc0f920ab9c945f00cc674b3
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
before_script:
- echo 'extension=mongo.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- composer install --prefer-dist
script: phpunit -c tests
|
language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
before_script:
# The mongo extension is not yet available on PHP 7
- if [[ "$TRAVIS_PHP_VERSION" != "7.0" ]] && [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then echo 'extension=mongo.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
- if [[ "$TRAVIS_PHP_VERSION" = "7.0" ]] || [[ "$TRAVIS_PHP_VERSION" = "hhvm" ]]; then composer remove --dev --no-update doctrine/mongodb-odm; fi
- composer install --prefer-dist
script: phpunit -c tests
|
Fix the composer install for PHP 7 and HHVM
|
Fix the composer install for PHP 7 and HHVM
The mongo extension is not available for these versions, so the ODM cannot be installed
|
YAML
|
mit
|
KnpLabs/knp-components,aheinz-sg/knp-components,MisatoTremor/knp-components
|
d74337c438dec9ffeca2cf504be1806940d52a10
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
- "0.10"
before_script:
- npm install -g grunt-cli
notifications:
email: false
|
language: node_js
node_js:
- "0.12"
- "0.10"
- "v4"
- "v5"
- "v6"
- "node"
before_script:
- npm install -g grunt-cli
notifications:
email: false
|
Add node v4,5,6 and latest
|
Add node v4,5,6 and latest
Note: adding latest so that when v7 arrives, we have that too
|
YAML
|
mit
|
MathieuLoutre/mock-aws-s3
|
ebfce5df7ddcebad5d1de0cd52c683635fa23ddb
|
.travis.yml
|
.travis.yml
|
---
language: ruby
script: bundle exec rake
rvm:
- 1.9.3
- 2.1.6
env:
- PUPPET_VERSION="~> 3.0.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_VERSION="~> 3.7.3"
- PUPPET_VERSION="~> 4.2.0"
- PUPPET_VERSION=">= 0"
matrix:
exclude:
- rvm: 2.1.6
env: PUPPET_VERSION="~> 3.2.0"
- rvm: 2.1.6
env: PUPPET_VERSION="~> 3.1.0"
- rvm: 2.1.6
env: PUPPET_VERSION="~> 3.0.0"
allow_failures:
- env: PUPPET_VERSION=">= 0"
|
---
language: ruby
script: bundle exec rake
rvm:
- 1.9.3
- 2.1.6
env:
- PUPPET_VERSION="~> 3.0.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_VERSION="~> 3.7.3"
- PUPPET_VERSION="~> 4.2.0"
- PUPPET_VERSION="~> 4.3.0"
- PUPPET_VERSION=">= 0"
matrix:
exclude:
- rvm: 2.1.6
env: PUPPET_VERSION="~> 3.2.0"
- rvm: 2.1.6
env: PUPPET_VERSION="~> 3.1.0"
- rvm: 2.1.6
env: PUPPET_VERSION="~> 3.0.0"
allow_failures:
- env: PUPPET_VERSION=">= 0"
|
Add puppet 4.3 as target
|
Add puppet 4.3 as target
|
YAML
|
mit
|
gds-operations/puppet-syntax,gds-operations/puppet-syntax
|
32c86a6f6ebd84cf1a08e037bc399a956fd007f7
|
.travis.yml
|
.travis.yml
|
language: csharp
dotnet: 2.1.4
env:
- FrameworkPathOverride=/usr/lib/mono/4.5/
jobs:
include:
- stage: test
mono: none
script:
- dotnet test ./source/ApplicationDataModelTest/ApplicationDataModelTest.csproj -c Release
- dotnet test ./source/PluginManagerTest/PluginManagerTest.csproj -c Release
- dotnet test ./source/RepresentationTest/RepresentationTest.csproj -c Release
- stage: deploy
if: tag =~ ^v\d+\.\d+\.\d+
mono: 5.8.0
script:
- VERSION=$(echo $TRAVIS_TAG | grep -i -P -o '(?<=^v)\d+\.\d+\.\d+(?:.+)?$'); VERSION_NUMBER=$(echo $VERSION | grep -i -P -o '^\d+\.\d+\.\d+')
- dotnet build ./ADAPT.sln -c Release /p:Version=$VERSION /p:FileVersion=$VERSION_NUMBER.$TRAVIS_BUILD_NUMBER
- mkdir -p ./dist; nuget pack ./AgGatewayADAPTFramework.nuspec -verbosity detailed -outputdirectory ./dist -version $VERSION
- if [ -n "${NUGET_API_KEY}" ]; then nuget push ./dist/AgGatewayADAPTFramework.${VERSION}.nupkg -apikey $NUGET_API_KEY -source https://www.nuget.org/api/v2/package; fi
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: "./dist/AgGatewayADAPTFramework.${VERSION}.nupkg"
skip_cleanup: true
on:
tags: true
|
language: csharp
dotnet: 2.1.4
env:
- FrameworkPathOverride=/usr/lib/mono/4.5/
jobs:
include:
- stage: test
mono: none
script:
- dotnet test ./source/ApplicationDataModelTest/ApplicationDataModelTest.csproj -c Release
- dotnet test ./source/PluginManagerTest/PluginManagerTest.csproj -c Release
- dotnet test ./source/RepresentationTest/RepresentationTest.csproj -c Release
- stage: deploy
if: tag =~ ^v\d+\.\d+\.\d+
mono: 5.8.0
script:
- VERSION=$(echo $TRAVIS_TAG | grep -i -P -o '(?<=^v)\d+\.\d+\.\d+(?:.+)?$'); VERSION_NUMBER=$(echo $VERSION | grep -i -P -o '^\d+\.\d+\.\d+')
- dotnet build ./ADAPT.sln -c Release /p:Version=$VERSION /p:FileVersion=$VERSION_NUMBER.$TRAVIS_BUILD_NUMBER
- mkdir -p ./dist; nuget pack ./AgGatewayADAPTFramework.nuspec -verbosity detailed -outputdirectory ./dist -version $VERSION
- if [ -n "${NUGET_API_KEY}" ]; then dotnet nuget push ./dist/AgGatewayADAPTFramework.${VERSION}.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json; fi
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: "./dist/AgGatewayADAPTFramework.${VERSION}.nupkg"
skip_cleanup: true
on:
tags: true
|
Use dotnet nuget push command
|
Use dotnet nuget push command
|
YAML
|
epl-1.0
|
tarakreddy/ADAPT,ADAPT/ADAPT
|
c730319b2c44a47361f9a43d82aea6426182d5ea
|
.travis.yml
|
.travis.yml
|
language: objective-c
xcode_workspace: onetimepassword.xcworkspace
xcode_scheme: OneTimePassword
xcode_sdk:
- iphonesimulator8.1
before_install:
- brew update
- brew upgrade xctool
|
language: objective-c
xcode_workspace: onetimepassword.xcworkspace
xcode_scheme: OneTimePassword
xcode_sdk:
- iphonesimulator8.1
before_install:
- brew update
- brew upgrade xctool
script: xcodebuild -workspace onetimepassword.xcworkspace -scheme OneTimePassword -sdk iphonesimulator8.1 build test
|
Use xcodebuild instead of xctool
|
Use xcodebuild instead of xctool
|
YAML
|
mit
|
mattrubin/onetimepassword,mattrubin/onetimepassword
|
676e0409b894ff920eb531357b142e319f7bb09d
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
before_install:
- npm install -g grunt-cli [email protected] [email protected]
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-graybullet-cordova' ]; then cd .. && eval "mv $currentfolder generator-graybullet-cordova" && cd generator-graybullet-cordova; fi
|
language: android
android:
components:
- build-tools-20.0.0
- android-19
before_install:
- npm install -g grunt-cli [email protected] [email protected]
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-graybullet-cordova' ]; then cd .. && eval "mv $currentfolder generator-graybullet-cordova" && cd generator-graybullet-cordova; fi
script:
- npm test
|
Fix build failed on CI.
|
Fix build failed on CI.
https://travis-ci.org/GrayBullet/generator-graybullet-cordova/builds/39229864
|
YAML
|
mit
|
GrayBullet/generator-graybullet-cordova
|
e6db5f87fb6baba720b7d083071eab6f8bef4a6c
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.2"
- "3.3"
node_js:
- "0.8"
script: "make"
|
language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
node_js:
- "0.8"
script: "make"
|
Enable automated testing with Python 3.4
|
Enable automated testing with Python 3.4
|
YAML
|
mit
|
BobJavascript/js-beautify,ephox-luke/js-beautify,J2TeaM/js-beautify,glennimoss/js-beautify,olsonpm/js-beautify,beautify-web/js-beautify,eric6356/js-beautify,jaichandra/js-beautify,bitwiseman/js-beautify,olsonpm/js-beautify,tmarchant/js-beautify,blackmiaool/js-beautify,eric6356/js-beautify,tmarchant/js-beautify,timothyeburke/js-beautify,beautify-web/js-beautify,amacdougall/js-beautify,wodim/js-beautify,aecepoglu/js-beautify,aecepoglu/js-beautify,J2TeaM/js-beautify,melck/js-beautify,ephox-luke/js-beautify,amacdougall/js-beautify,tmarchant/js-beautify,goelmo/js-beautify,gujiman/js-beautify,wodim/js-beautify,melck/js-beautify,AmesianX/js-beautify,mmsqe/js-beautify,AmesianX/js-beautify,wodim/js-beautify,blackmiaool/js-beautify,glennimoss/js-beautify,olsonpm/js-beautify,BobJavascript/js-beautify,gujiman/js-beautify,gujiman/js-beautify,J2TeaM/js-beautify,eric6356/js-beautify,mmsqe/js-beautify,Coburn37/js-beautify,AmesianX/js-beautify,aecepoglu/js-beautify,beautify-web/js-beautify,jaichandra/js-beautify,melck/js-beautify,BobJavascript/js-beautify,eric6356/js-beautify,bitwiseman/js-beautify,goelmo/js-beautify,Infocatcher/js-beautify,Coburn37/js-beautify,timothyeburke/js-beautify,amacdougall/js-beautify,Coburn37/js-beautify,glennimoss/js-beautify,goelmo/js-beautify,blackmiaool/js-beautify,beautify-web/js-beautify,foreni-packages/js-beautify,timothyeburke/js-beautify,foreni-packages/js-beautify,blackmiaool/js-beautify,melck/js-beautify,Infocatcher/js-beautify,bitwiseman/js-beautify,AmesianX/js-beautify,foreni-packages/js-beautify,BobJavascript/js-beautify,wodim/js-beautify,foreni-packages/js-beautify,tmarchant/js-beautify,Coburn37/js-beautify,timothyeburke/js-beautify,mmsqe/js-beautify,gujiman/js-beautify,goelmo/js-beautify,jaichandra/js-beautify,mmsqe/js-beautify,Infocatcher/js-beautify,Infocatcher/js-beautify,bitwiseman/js-beautify,aecepoglu/js-beautify,olsonpm/js-beautify,amacdougall/js-beautify,ephox-luke/js-beautify,J2TeaM/js-beautify,ephox-luke/js-beautify,glennimoss/js-beautify,jaichandra/js-beautify
|
b7f537e9dabd6078dadec6629992b40ab661f8b8
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0
script:
- bundle exec rake test_app
- bundle exec rake spec
|
language: ruby
rvm:
- 2.1
- 2.2
script:
- bundle exec rake test_app
- bundle exec rake spec
|
Upgrade ruby versions, since spree 3.0 depends on 2.1 at least
|
Upgrade ruby versions, since spree 3.0 depends on 2.1 at least
|
YAML
|
bsd-3-clause
|
berkes/spree_billing_sisow,berkes/spree_billing_sisow
|
1e10d5ddfa626b0c63b6cfe0848c98ae092d3860
|
.travis.yml
|
.travis.yml
|
language: cpp
sudo: required
dist: trusty
os:
- linux
- osx
compiler:
- gcc
- clang
env:
matrix:
- CMAKE_BUILD_TYPE=Debug
- CMAKE_BUILD_TYPE=Release
matrix:
exclude:
- os: linux
compiler: clang
- os: osx
compiler: gcc
addons:
apt:
packages:
- cmake
- ninja-build
before_install:
- |
# Install cmake and ninja
if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
brew update
brew install ninja cmake
fi
install:
- mkdir /tmp/installed
script:
- mkdir /tmp/simplelib-build
- cmake -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX=/tmp/installed -G Ninja ${TRAVIS_BUILD_DIR}/simplelib
- cmake --build /tmp/simplelib-build --target all
- mkdir /tmp/complexlib-build
- cmake -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX=/tmp/installed -G Ninja ${TRAVIS_BUILD_DIR}/complexlib
- cmake --build /tmp/complexlib-build --target all
|
language: cpp
sudo: required
dist: trusty
os:
- linux
- osx
compiler:
- gcc
- clang
env:
matrix:
- CMAKE_BUILD_TYPE=Debug
- CMAKE_BUILD_TYPE=Release
matrix:
exclude:
- os: linux
compiler: clang
- os: osx
compiler: gcc
addons:
apt:
packages:
- ninja-build
before_install:
- |
# Install cmake
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
CMAKE_URL="http://www.cmake.org/files/v3.5/cmake-3.5.2-Linux-x86_64.tar.gz"
cd /tmp
mkdir cmake
travis_retry wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake
export PATH=${DEPS_DIR}/cmake/bin:${PATH}
else
if ! brew ls --version cmake &>/dev/null; then brew install cmake; fi
fi
- |
# Install cmake and ninja
if [[ "${TRAVIS_OS_NAME}" == "osx" ]]; then
brew update
brew install ninja
fi
install:
- mkdir /tmp/installed
script:
- mkdir /tmp/simplelib-build
- cmake -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX=/tmp/installed -G Ninja ${TRAVIS_BUILD_DIR}/simplelib
- cmake --build /tmp/simplelib-build --target all
- mkdir /tmp/complexlib-build
- cmake -DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX=/tmp/installed -G Ninja ${TRAVIS_BUILD_DIR}/complexlib
- cmake --build /tmp/complexlib-build --target all
|
Install cmake by downloading it (not apt-get).
|
Install cmake by downloading it (not apt-get).
The version is apt-get is too old.
|
YAML
|
mit
|
frederikvannoote/cmake-common-examples,frederikvannoote/cmake-common-examples
|
0a5e55bc0478052ae9f21d9906056cacbad7b2a4
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '8'
- '10'
- 'node'
before_script:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
- yarn install --frozen-lockfile
# Workspaces only
- yarn run build
script: yarn test
notifications:
email: false
cache:
yarn: true
|
language: node_js
node_js:
- '8'
- '10'
- 'node'
matrix:
allow_failures:
# Different snapshot output
- node_js: 'node'
before_script:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
- yarn install --frozen-lockfile
# Workspaces only
- yarn run build
script: yarn test
notifications:
email: false
cache:
yarn: true
|
Allow node 11 to fail.
|
Allow node 11 to fail.
|
YAML
|
mit
|
milesj/aesthetic,milesj/aesthetic,milesj/aesthetic
|
d6253c39d7af7fc4ce28fa63a7fda1c8b5672bcc
|
.travis.yml
|
.travis.yml
|
os:
- linux
- osx
dist: trusty
sudo: required
language: bash
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install mairix notmuch mu namazu; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cpan -T String::ShellQuote Mail::Box::Maildir && source $HOME/.bashrc && curl -O https://raw.githubusercontent.com/notmuch/notmuch/master/contrib/notmuch-mutt/notmuch-mutt && install notmuch-mutt /usr/local/bin/; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl -O http://www.flpsed.org/nmzmail-1.1.tar.gz && tar -xf nmzmail-1.1.tar.gz && pushd nmzmail-1.1 && ./configure && make && make install && popd; fi
script:
- ./t/t.sh
|
os:
- linux
- osx
dist: trusty
sudo: required
language: bash
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew unlink python; fi # https://github.com/Homebrew/homebrew-core/issues/26358
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install mairix notmuch mu namazu; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then cpan -T String::ShellQuote Mail::Box::Maildir && source $HOME/.bashrc && curl -O https://raw.githubusercontent.com/notmuch/notmuch/master/contrib/notmuch-mutt/notmuch-mutt && install notmuch-mutt /usr/local/bin/; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl -O http://www.flpsed.org/nmzmail-1.1.tar.gz && tar -xf nmzmail-1.1.tar.gz && pushd nmzmail-1.1 && ./configure && make && make install && popd; fi
script:
- ./t/t.sh
|
Fix broken Travis CI on Mac (python)
|
Fix broken Travis CI on Mac (python)
https://github.com/Homebrew/homebrew-core/issues/26358
|
YAML
|
unlicense
|
weisslj/muttjump
|
84b0d0c900b1aacf4256c77fc6d566eef5d683cb
|
.travis.yml
|
.travis.yml
|
language: clojure
lein: lein2
script: "lein2 test"
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
branches:
only:
- master
- development
# Handle git submodules manually
git:
submodules: false
# Replace the authenticated SSH URL with the public URL, then initialize submodules
before_install:
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
|
language: clojure
lein: lein2
script: "lein2 test"
jdk:
- oraclejdk8
branches:
only:
- master
- development
# Handle git submodules manually
git:
submodules: false
# Replace the authenticated SSH URL with the public URL, then initialize submodules
before_install:
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
|
Remove java7 tests until such time as we can grok conditional builds
|
Remove java7 tests until such time as we can grok conditional builds
The jetty test dependency needs to change based on the version of java
being used. Not sure how to do that with TravisCI...
|
YAML
|
apache-2.0
|
bpoweski/http.async.client
|
3d2ece1138ee1b3fa9c00ba6a952263752e69880
|
.travis.yml
|
.travis.yml
|
language: java
jdk: openjdk8
dist: trusty
script:
- ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -q -B -V
- ./mvnw test -q -B -V
cache:
directories:
- $HOME/.m2
|
language: java
jdk: openjdk8
dist: trusty
cache:
directories:
- $HOME/.m2
|
Revert Travis CI script to default
|
Revert Travis CI script to default
|
YAML
|
apache-2.0
|
zregvart/fuse-credential-store,zregvart/fuse-credential-store
|
7a529157259dc1b2eb2357bfa83326e08ec015e9
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "2.7"
install:
- pip install pep8 tox
before_script:
- "pep8 --ignore=E123,E402,E501,E701 ./bin ./zask ./tests"
script:
- make test
branches:
#only:
# - master
notifications:
slack:
rooms:
- juwai:BnihlKlSqagkR1FS7agVecXg
on_success: never
on_failure: always
|
sudo: false
language: python
python:
- "2.7"
install:
- pip install pep8 tox
before_script:
- "pep8 --ignore=E123,E402,E501,E701 ./bin ./zask ./tests"
script:
- make test
branches:
only:
- master
notifications:
slack:
rooms:
- juwai:BnihlKlSqagkR1FS7agVecXg
on_success: never
on_failure: always
|
Change to apply to master only for CI checking
|
Change to apply to master only for CI checking
|
YAML
|
bsd-3-clause
|
j-5/zask
|
10006587a8cda55f96f92082fd88b94b94fafda3
|
.travis.yml
|
.travis.yml
|
language: generic
before_install:
- export BATS_PATH=/tmp/bats
- export PATH=$BATS_PATH/bin:$PATH
- git clone https://github.com/sstephenson/bats $BATS_PATH
script:
- make -s test
|
language: generic
before_install:
- export BATS_PATH=/tmp/bats
- export PATH=$BATS_PATH/bin:$PATH
- git clone https://github.com/sstephenson/bats $BATS_PATH
script:
- bats -t t
|
Use bats direct on CI
|
Use bats direct on CI
|
YAML
|
mit
|
kusabashira/vil
|
f156fd920179c2d5e3335f233388d2d6f086280f
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
- jruby-9.0.0.0
- rbx-2
matrix:
allow_failures:
- rvm: jruby-9.0.0.0
- rvm: rbx-2
fast_finish: true
script: bundle exec rake
before_install:
- gem update --system
services:
- redis-server
branches:
except:
- /^v[0-9]/
notifications:
email: false
webhooks:
urls:
- http://util.perceptes.com:8080/travis
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
- jruby-9.0.0.0
- rbx-2
matrix:
allow_failures:
- rvm: jruby-9.0.0.0
- rvm: rbx-2
fast_finish: true
script: bundle exec rake
before_install:
- gem update --system
- gem update bundler
services:
- redis-server
branches:
except:
- /^v[0-9]/
notifications:
email: false
webhooks:
urls:
- http://util.perceptes.com:8080/travis
|
Update bundler on Travis since they won't.
|
Update bundler on Travis since they won't.
|
YAML
|
mit
|
tristaneuan/lita,litaio/lita,jimmycuadra/lita,litaio/lita,brodock/lita,liamdawson/lita,jimmycuadra/lita,tristaneuan/lita,liamdawson/lita,brodock/lita
|
2207c09f6a969e3d3c37dba96966f70441fbd92d
|
pubspec.yaml
|
pubspec.yaml
|
name: petitparser
version: 1.4.3
author: Lukas Renggli <[email protected]>
description: Dynamic parser combinator framework.
homepage: https://github.com/renggli/dart-petitparser
environment:
sdk: '>=1.8.0 <2.0.0'
dependencies:
browser: '>=0.10.0 <0.11.0'
dev_dependencies:
test: '>=0.12.1 <0.13.0'
|
name: petitparser
version: 1.4.3
author: Lukas Renggli <[email protected]>
description: Dynamic parser combinator framework.
homepage: https://github.com/renggli/dart-petitparser
environment:
sdk: '>=1.8.0 <2.0.0'
dev_dependencies:
browser: '>=0.10.0 <0.11.0'
test: '>=0.12.1 <0.13.0'
|
Move 'browser' dependency to dev_dependencies.
|
Move 'browser' dependency to dev_dependencies.
|
YAML
|
mit
|
petitparser/dart-petitparser
|
a145823e24d338ec583e3928007d8ef701f84463
|
.travis.yml
|
.travis.yml
|
# force run: 1
language: c
compiler:
- clang
- gcc
python:
- "2.7"
sudo: required
before_install:
- which ${CC}
- sudo -H pip install -r requirements.txt
- sudo -H DEBIAN_FRONTEND=noninteractive apt-get update
script:
sh -x ./scripts/do-test.sh
|
# force run: 1
language: c
compiler:
- clang
- gcc
python:
- "2.7"
sudo: required
before_install:
- whereis clang
- whereis gcc
- sudo -H pip install -r requirements.txt
- sudo -H DEBIAN_FRONTEND=noninteractive apt-get update
script:
sh -x ./scripts/do-test.sh
|
Use whereis instead of which.
|
Use whereis instead of which.
|
YAML
|
bsd-2-clause
|
dsanders11/rtpproxy,dsanders11/rtpproxy,synety-jdebp/rtpproxy,synety-jdebp/rtpproxy,jevonearth/rtpproxy,jevonearth/rtpproxy,sippy/rtpproxy,sippy/rtpproxy,synety-jdebp/rtpproxy,synety-jdebp/rtpproxy,jevonearth/rtpproxy,jevonearth/rtpproxy,dsanders11/rtpproxy,sippy/rtpproxy
|
3c030784c2696e75e6572a76d080883d6ba6336c
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- ree
- 1.9.3
- 2.0.0
- 2.1.0
bundler_args: --without tools
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
bundler_args: --without tools
|
Drop ree; use pre-installed 2.1 ruby
|
Drop ree; use pre-installed 2.1 ruby
|
YAML
|
mit
|
mhw/htwax
|
8dca77d13a9572bbb144a0f5b77371dcbc546795
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
- 2.0.0
- 1.9.3
- jruby-19mode
- ruby-head
- jruby-head
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- rvm: ruby-head
- env: "RAILS_VERSION=master"
script: rspec spec
before_install:
- gem install bundler
|
language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
- 2.0.0
- ruby-head
- jruby-head
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: 1.9.3
- rvm: jruby-19mode
- env: "RAILS_VERSION=master"
script: rspec spec
before_install:
- gem install bundler
|
Allow failures for Ruby 1.9.3
|
Allow failures for Ruby 1.9.3
|
YAML
|
mit
|
TutoringAustralasia/bower-rails,rharriso/bower-rails
|
56d62f915ca8d0bd72cbb79333dc575819a96925
|
.travis.yml
|
.travis.yml
|
language: erlang
otp_release:
- R15B02
- R15B01
- R14B04
- R14B03
|
language: erlang
otp_release:
- R16B
- R15B02
- R15B01
- R14B04
- R14B03
|
Add R16B builds to Travis
|
Add R16B builds to Travis
|
YAML
|
mit
|
jpgneves/iota
|
b56488324adf624832aeb3e0c1ca905498d0f299
|
.travis.yml
|
.travis.yml
|
sudo: required
language: node_js
node_js:
- 8
- 7
- 6
dist: trusty
services:
- docker
env:
matrix:
- DOCKER_TAG=17.06-dind
- DOCKER_TAG=17.03-dind
global:
- DEBUG='navy:*' NAVY_DEBUG='navy:*' DOCKER_COMPOSE_VERSION=1.12.0
cache:
directories:
- $(npm config get cache)
matrix:
fast_finish: true
include:
- node_js: 6
env: DOCKER_TAG=1.13-dind
- node_js: 6
env: DOCKER_TAG=1.12-dind
- node_js: 6
env: DOCKER_TAG=17.03-dind DOCKER_COMPOSE_VERSION=1.13.0
- node-js: 6
env: DOCKER_TAG=17.03-dind DOCKER_COMPOSE_VERSION=1.14.0
before_install:
# print versions
- docker --version
before_script:
# bootstrap packages
- npm run bootstrap
|
sudo: required
language: node_js
node_js:
- 8
- 7
- 6
dist: trusty
services:
- docker
env:
matrix:
- DOCKER_TAG=17.06-dind
- DOCKER_TAG=17.12-dind
global:
- DEBUG='navy:*' NAVY_DEBUG='navy:*' DOCKER_COMPOSE_VERSION=1.12.0
cache:
directories:
- $(npm config get cache)
matrix:
fast_finish: true
include:
- node_js: 6
env: DOCKER_TAG=17.06-dind DOCKER_COMPOSE_VERSION=1.13.0
- node-js: 6
env: DOCKER_TAG=17.06-dind DOCKER_COMPOSE_VERSION=1.14.0
before_install:
# print versions
- docker --version
before_script:
# bootstrap packages
- npm run bootstrap
|
Stop supporting older versions of Docker
|
Stop supporting older versions of Docker
The build failed. Don't know why, don't really care.
I guess this will be a major version bump though.
|
YAML
|
mit
|
momentumft/navy,momentumft/navy,momentumft/navy
|
911c86782fd97e4cda5c87b61ce0c7d8c4913566
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
after_success:
- mvn clean cobertura:cobertura coveralls:report
|
env:
- export COVERALLS_SERVICE_NAME=travis-ci
language: java
jdk:
- openjdk6
- oraclejdk7
- openjdk7
- oraclejdk8
after_success:
- mvn clean cobertura:cobertura coveralls:report
|
Add env var for coveralls repo, might be needed.
|
Add env var for coveralls repo, might be needed.
In travis project settings I also just added the COVERALLS_REPO_TOKEN.
|
YAML
|
apache-2.0
|
magro/kryo-serializers,aaronpoweruser/kryo-serializers
|
99ca2f354009ea72e87de84cba9422bd1d8060ec
|
.travis.yml
|
.travis.yml
|
sudo: false
language: "node_js"
node_js:
- node
- 7
services:
- mongodb
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_success: gulp coveralls
addons:
apt:
sources:
- mongodb-upstart
- mongodb-3.2-precise
packages:
- mongodb-org-server
- mongodb-org-shell
|
sudo: false
language: "node_js"
node_js:
- node
- 7
services:
- mongodb
install: yarn && jspm i
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_success: gulp coveralls
addons:
apt:
sources:
- mongodb-upstart
- mongodb-3.2-precise
packages:
- mongodb-org-server
- mongodb-org-shell
|
Make sure we also install JSPM dependencies
|
Make sure we also install JSPM dependencies
|
YAML
|
mit
|
thatJavaNerd/novaXfer,thatJavaNerd/novaXfer,thatJavaNerd/novaXfer
|
585781fc8c5486a369179ac40f3a5caa25b1c0e2
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install -r requirements/ci.txt --use-mirrors
services:
- redis-server
- riak
before_script: ./scripts/setup_riak_buckets.sh
script:
- nosetests tests --with-cov -v
- flake8 sifr --max-complexity=10
after_success:
- coveralls
|
language: python
sudo: required
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install -r requirements/ci.txt --use-mirrors
services:
- redis-server
- riak
before_script: sudo ./scripts/setup_riak_buckets.sh
script:
- nosetests tests --with-cov -v
- flake8 sifr --max-complexity=10
after_success:
- coveralls
|
Add sudo for riak bootstrap script
|
Add sudo for riak bootstrap script
|
YAML
|
mit
|
alisaifee/sifr,alisaifee/sifr
|
b9a435c75dcf9f48dc6cc8097fb3bb7b2e4af35d
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
- jruby-9.1.7.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
|
language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
- 2.1.10
- jruby-9.1.7.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
|
Test with latest Ruby versions, test with Ruby 2.1.10
|
Test with latest Ruby versions, test with Ruby 2.1.10
|
YAML
|
mit
|
pitluga/keepassx
|
cdfe43fe21d011ee61286b8000f6a3a600273f2d
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.6
branches:
except:
- gh-pages
addons:
hosts:
- blank
sudo: false
install:
- wget http://selenium-release.storage.googleapis.com/2.42/selenium-server-standalone-2.42.2.jar
- composer install
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 5
- java -jar selenium-server-standalone-2.42.2.jar -port 4444 &
script:
- php vendor/bin/codecept run unit --coverage-xml --env travis
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover tests/_output/coverage.xml
|
language: php
php:
- 5.6
- 7.0
- 7.1
branches:
except:
- gh-pages
addons:
hosts:
- blank
sudo: false
install:
- wget http://selenium-release.storage.googleapis.com/2.42/selenium-server-standalone-2.42.2.jar
- composer install
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 5
- java -jar selenium-server-standalone-2.42.2.jar -port 4444 &
script:
- php vendor/bin/codecept run unit --coverage-xml --env travis
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover tests/_output/coverage.xml
|
Test from 5.6 to 7.1 of PHP (drop 5.5)
|
Test from 5.6 to 7.1 of PHP (drop 5.5)
|
YAML
|
mit
|
delboy1978uk/common
|
7565910bf952366c074d547bd3ff8ce8fa900a19
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
env:
- DJANGO=1.4.10
- DJANGO=1.5.5
- DJANGO=1.6.1
- DJANGO=1.7.0
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -e git+https://github.com/kennethreitz/tablib.git#egg=tablib
- pip install -r requirements/base.txt --use-mirrors
script:
- if [[ $TRAVIS_PYTHON_VERSION != '3.3' || $DJANGO != "1.4.10" ]]; then python tests/manage.py test core --settings=settings; fi
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
env:
- DJANGO=1.4.10
- DJANGO=1.5.5
- DJANGO=1.6.1
- DJANGO=1.7.0
- DJANGO=1.8c1
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -e git+https://github.com/kennethreitz/tablib.git#egg=tablib
- pip install -r requirements/base.txt --use-mirrors
script:
- if [[ $TRAVIS_PYTHON_VERSION != '3.3' || $DJANGO != "1.4.10" ]]; then python tests/manage.py test core --settings=settings; fi
|
Add Python 3.4 and Django 1.8c1 to Travis CI
|
Add Python 3.4 and Django 1.8c1 to Travis CI
|
YAML
|
bsd-2-clause
|
ericdwang/django-import-export,ylteq/dj-import-export,pajod/django-import-export,sergei-maertens/django-import-export,pajod/django-import-export,bmihelac/django-import-export,daniell/django-import-export,ericdwang/django-import-export,bmihelac/django-import-export,pajod/django-import-export,manelclos/django-import-export,Akoten/django-import-export,django-import-export/django-import-export,brillgen/django-import-export,Apkawa/django-import-export,Akoten/django-import-export,manelclos/django-import-export,jnns/django-import-export,jnns/django-import-export,sergei-maertens/django-import-export,luto/django-import-export,ylteq/dj-import-export,django-import-export/django-import-export,daniell/django-import-export,PetrDlouhy/django-import-export,rhunwicks/django-import-export,daniell/django-import-export,luto/django-import-export,brillgen/django-import-export,copperleaftech/django-import-export,daniell/django-import-export,piran/django-import-export,Apkawa/django-import-export,piran/django-import-export,django-import-export/django-import-export,copperleaftech/django-import-export,PetrDlouhy/django-import-export,rhunwicks/django-import-export,Apkawa/django-import-export,sergei-maertens/django-import-export,ylteq/dj-import-export,luto/django-import-export,PetrDlouhy/django-import-export,jnns/django-import-export,django-import-export/django-import-export,bmihelac/django-import-export,ericdwang/django-import-export,Akoten/django-import-export,pajod/django-import-export,copperleaftech/django-import-export,PetrDlouhy/django-import-export,brillgen/django-import-export,copperleaftech/django-import-export,manelclos/django-import-export,rhunwicks/django-import-export,bmihelac/django-import-export,jnns/django-import-export,piran/django-import-export,brillgen/django-import-export
|
6460abe8a453ce7f3b3f1115992a9da7ccea0556
|
.travis.yml
|
.travis.yml
|
language: java
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
|
language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
|
Build using oracle jdk 8
|
Build using oracle jdk 8
|
YAML
|
mit
|
pacey/dropwizard-pebble
|
6df01c6efdef249d31518795dea8dd4da38e280e
|
env/containers.yaml
|
env/containers.yaml
|
version: v1beta2
containers:
- name: redis
image: dockerfile/redis
ports:
- name: redi-listen-port
hostPort: 6379
containerPort: 6379
|
version: v1beta2
containers:
- name: redis
image: dockerfile/redis
ports:
- name: redi-listen-port
hostPort: 6379
containerPort: 6379
- name: app1
image: webdizz/centos-java8-sshd
ports:
- name: app1-listen-port
hostPort: 8080
containerPort: 8080
|
Add Java 8 based image to be loaded into container
|
Add Java 8 based image to be loaded into container
|
YAML
|
apache-2.0
|
webdizz/bootiful-apps
|
f2545e0bf1af033e18c2b1577272885ce06f48de
|
.travis.yml
|
.travis.yml
|
language: ruby
services:
- redis
rvm:
- jruby-19mode
jdk:
- oraclejdk7
- openjdk6
matrix:
include:
- rvm: 1.9.3
jdk:
before_install:
- gem install bundler
before_script:
- sudo service mysql stop
- redis-cli config set save ""
- 'RAILS_ENV=test rake db:create db:schema:load --trace'
script:
- './build.sh'
notifications:
irc: "irc.freenode.org#travis"
|
language: ruby
services:
- redis
rvm:
- jruby-19mode
jdk:
- oraclejdk7
- openjdk6
matrix:
include:
- rvm: 1.9.3
jdk:
before_script:
- sudo service mysql stop
- redis-cli config set save ""
- 'RAILS_ENV=test rake db:create db:schema:load --trace'
script:
- './build.sh'
notifications:
irc: "irc.freenode.org#travis"
|
Remove explicit Bundler installation again.
|
Remove explicit Bundler installation again.
|
YAML
|
mit
|
travis-ci/travis-core,developerfm/travis-core,developerfm/travis-core,kidaa/travis-core,final-ci/travis-core,developerfm/travis-core,travis-ci/travis-core,final-ci/travis-core,jantman/travis-core,kidaa/travis-core,kidaa/travis-core,travis-ci/travis-core,Tiger66639/travis-core,GistIcon/travis-core,final-ci/travis-core,Tiger66639/travis-core,Tiger66639/travis-core,GistIcon/travis-core,GistIcon/travis-core,jantman/travis-core
|
dffd08b18d474baf4076cd32de7b06a82137a791
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-trusty to install the stable release
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-5
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
script: KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
matrix:
include:
- before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- script:
- /opt/chefdk/bin/chef exec rake
env: UNIT_AND_LINT=1
|
sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-trusty to install the stable release
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-5
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
script: KITCHEN_LOCAL_YAML=.kitchen.docker.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
matrix:
include:
- before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- script:
- /opt/chefdk/bin/chef exec rake
env: UNIT_AND_LINT=1
|
Switch back to stable ChefDK builds for testing
|
Switch back to stable ChefDK builds for testing
|
YAML
|
apache-2.0
|
chef-cookbooks/yum-repoforge
|
4a4a0ac42806f959727cde6474cdcc044b075226
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'core' ]; then cd .. && eval "mv $currentfolder core" && cd core; fi
- npm install -g grunt-cli
|
language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'core' ]; then cd .. && eval "mv $currentfolder core" && cd core; fi
- npm install -g grunt-cli
notifications:
email:
- [email protected]
- [email protected]
- [email protected]
|
Update Travis with explicit emails
|
Update Travis with explicit emails
|
YAML
|
mpl-2.0
|
chinakids/famous,Famous/famous,FamousArchives/utilities,Offirmo/famous,Faiz7412/famous,wgester/famous,trusktr/famous,SuPenguin/famous,ziteboard/famous,Famous/famous,Lkraljevic/famous,ziteboard/famous,holmesal/famous-global-build,gdi2290/famous,Bizboard/famous,Famous/utilities,SeanOceanHu/famous,Faiz7412/famous
|
60f7532abff98da854e57a03beade68b46adb5d8
|
.travis.yml
|
.travis.yml
|
# SPDX-FileCopyrightText: 2014, microg Project Team
# SPDX-License-Identifier: CC0-1.0
language: android
sudo: false
before_script:
- echo sdk.dir $ANDROID_HOME > local.properties
script:
- jdk_switcher use oraclejdk8
- export TERM=dumb
- export JAVA_OPTS="-XX:+CMSClassUnloadingEnabled -XX:+HeapDumpOnOutOfMemoryError -Xmx2048m"
- ./gradlew build
android:
components:
- tools
- platform-tools
- build-tools-29.0.3
- android-29
- extra-android-m2repository
|
# SPDX-FileCopyrightText: 2014, microg Project Team
# SPDX-License-Identifier: CC0-1.0
jobs:
include:
- name: "Build"
language: android
android:
components:
- tools
- build-tools-29.0.3
- android-29
script:
- export JAVA_OPTS="-XX:+CMSClassUnloadingEnabled -XX:+HeapDumpOnOutOfMemoryError -Xmx2048m"
- export TERM=dumb
- echo sdk.dir $ANDROID_HOME > local.properties
- jdk_switcher use oraclejdk8
- ./gradlew build
- name: "REUSE lint"
language: minimal
script:
- docker pull fsfe/reuse:latest
- docker run -v ${TRAVIS_BUILD_DIR}:/data fsfe/reuse:latest lint
|
Add REUSE lint to Travis
|
Add REUSE lint to Travis
|
YAML
|
apache-2.0
|
microg/android_packages_apps_UnifiedNlp
|
f3bbf04f8d629208d980535842bb4e4fa2d90b64
|
kubernetes/socketcluster-deployment.yaml
|
kubernetes/socketcluster-deployment.yaml
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: socketcluster
spec:
replicas: 1
template:
metadata:
labels:
app: socketcluster
spec:
containers:
- name: socketcluster
image: socketcluster/socketcluster:v8.0.2
ports:
- containerPort: 8000
env:
- name: SCC_STATE_SERVER_HOST
value: scc-state
- name: SOCKETCLUSTER_WORKERS
value: "1"
- name: SOCKETCLUSTER_BROKERS
value: "1"
- name: SCC_INSTANCE_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: ENV
value: prod
livenessProbe:
httpGet:
path: /health-check
port: 8000
initialDelaySeconds: 30
timeoutSeconds: 5
|
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: socketcluster
spec:
replicas: 1
template:
metadata:
labels:
app: socketcluster
spec:
containers:
- name: socketcluster
image: socketcluster/socketcluster:v8.0.2
ports:
- containerPort: 8000
env:
- name: SCC_STATE_SERVER_HOST
value: scc-state
- name: SOCKETCLUSTER_WORKERS
value: "1"
- name: SOCKETCLUSTER_BROKERS
value: "1"
- name: SCC_INSTANCE_IP
valueFrom:
fieldRef:
fieldPath: status.podIP
- name: ENV
value: prod
livenessProbe:
httpGet:
path: /health-check
port: 8000
initialDelaySeconds: 30
timeoutSeconds: 5
affinity:
podAntiAffinity:
requiredDuringSchedulingIgnoredDuringExecution:
- labelSelector:
matchExpressions:
- key: app
operator: In
values:
- socketcluster
topologyKey: "kubernetes.io/hostname"
|
Add podAntiAffinity to socketcluster deployment to ensure not more than one Pod is scheduled for the same k8s node/minion
|
Add podAntiAffinity to socketcluster deployment to ensure not more than one Pod is scheduled for the same k8s node/minion
|
YAML
|
mit
|
SocketCluster/socketcluster,SocketCluster/socketcluster
|
df2e8b4d03db42c555aac2e4bc6e705803bd8b88
|
.travis.yml
|
.travis.yml
|
before_install: sudo apt-get install -y libavahi-compat-libdnssd-dev
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
|
before_install: sudo apt-get install -y libavahi-compat-libdnssd-dev
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
|
Add jruby to the CI
|
Add jruby to the CI
|
YAML
|
mit
|
elcuervo/airplay,wangyu0305/airplay,sodabrew/airplay
|
8d2bb9db586ed35944ef8679559a11d8131aa851
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '6'
- '8'
- '10'
- 'node'
sudo: false
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
language: node_js
node_js:
- '8'
- '10'
- 'node'
sudo: false
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
|
Drop node.js 6 support (semver-major)
|
Drop node.js 6 support (semver-major)
|
YAML
|
bsd-3-clause
|
papandreou/express-extractheaders
|
795ee04fca1fb7177d71f0a9188a60dc1da503b5
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- gcc
install:
- (cd ci/travis/ && bash setup.sh)
- pip install scipy matplotlib networkx beautifulsoup4 pandas tabulate termcolor html --user
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
packages:
- libblas-dev
- liblapack-dev
- libatlas-base-dev
- gfortran
- libboost1.55-all-dev
- g++-4.8
before_script:
- cd scripts && python spark.py -d -t dfe_mock -p ../params.json -b ../test-benchmark -rep html && cd ..
- mkdir build
- cd build
- INCLUDE=../ci/travis/eigen CXX="g++-4.8" cmake ..
script: make
|
language: cpp
compiler:
- gcc
install:
- (cd ci/travis/ && bash setup.sh)
- pip install scipy matplotlib networkx beautifulsoup4 pandas tabulate termcolor html --user
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
packages:
- libblas-dev
- liblapack-dev
- libatlas-base-dev
- gfortran
- libboost1.55-all-dev
- g++-4.8
before_script:
- cd scripts && python spark.py -d -t dfe_mock -p ../params.json -b ../test-benchmark -rep html && cd ..
- mkdir build
- cd build
- INCLUDE=../ci/travis/eigen CXX="g++-4.8" cmake ..
- cd ..
script: make mock-flow
|
Change default target to run on CI
|
Change default target to run on CI
|
YAML
|
mit
|
caskorg/cask,caskorg/cask,caskorg/cask,caskorg/cask,caskorg/cask
|
07f9269d830224ba98f7b7d9d20196d9876a9e0d
|
tmuxinator/tachyons-components.yml
|
tmuxinator/tachyons-components.yml
|
# ~/.tmuxinator/tachyons-components.yml
name: tachyons-components
root: ~/elm/tachyons-components
on_project_first_start:
- asdf local nodejs 11.0.0
- asdf local elm 0.18.0
# Server
- open --background http://localhost:3000
# elm-analyse
- open --background http://localhost:3001
# Grip
- open --background http://localhost:6419
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
startup_window: editor
windows:
- editor: vim
- server: elm-app start
- repl: elm-app repl
- elm-analyse: elm-analyse --serve --port 3001
- grip: grip
|
# ~/.tmuxinator/tachyons-components.yml
name: tachyons-components
root: ~/elm/tachyons-components
on_project_first_start:
- asdf local nodejs 11.12.0
- asdf local elm 0.19.0-bugfix6
# Server
- open --background http://localhost:3000
# elm-analyse
- open --background http://localhost:3001
# Grip
- open --background http://localhost:6419
# Specifies (by name or index) which window will be selected on project startup. If not set, the first window is used.
startup_window: editor
windows:
- editor: vim
- server: elm-app start
- repl: elm-app repl
- elm-analyse: elm-analyse --serve --port 3001
- grip: grip
|
Update Elm version used in tachyons project
|
Update Elm version used in tachyons project
|
YAML
|
mit
|
paulfioravanti/dotfiles,paulfioravanti/dotfiles,paulfioravanti/dotfiles
|
ee3039caa7cc9f15821d4c9f61adaeed3de7f00a
|
.travis.yml
|
.travis.yml
|
script: "gem install foodcritic -v 1.7.0 && foodcritic -f any -t ~FC017 ."
rvm:
- 1.9.3
|
script: "gem install foodcritic -v 2.0.0 && foodcritic -f any -t ~FC017 ."
rvm:
- 1.9.3
|
Update the version of foodcritic in use
|
Update the version of foodcritic in use
|
YAML
|
apache-2.0
|
realityforge/chef-authbind
|
6733e0d9aec01e2a0a53420c08374086c76d6719
|
.travis.yml
|
.travis.yml
|
sudo: false
language: rust
cache: cargo
rust:
- 1.9.0
- stable
- beta
- nightly
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success:
- travis-cargo --only nightly doc-upload
notifications:
email:
on_success: never
env:
global:
secure: Zv3wjS0darxSMdEa3R0rHLgbUmHlfKFbdzNJ5BMni7NV9ZGmzZAzKRbRSPjNxmhaWBT0fWgRA/eSxIk1n3bHXs4XWaM0EJmC9Oo3boNUCi7AgmwzHdN0T1fct95p6AYfNe0LZh88mbM98LxPdRHc+hVIZ3ah2Fyb6kDH2YKmvDo=
|
sudo: false
language: rust
cache: cargo
rust:
- 1.9.0
- 1.13.0
- stable
- beta
- nightly
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success:
- travis-cargo --only nightly doc-upload
notifications:
email:
on_success: never
env:
global:
secure: Zv3wjS0darxSMdEa3R0rHLgbUmHlfKFbdzNJ5BMni7NV9ZGmzZAzKRbRSPjNxmhaWBT0fWgRA/eSxIk1n3bHXs4XWaM0EJmC9Oo3boNUCi7AgmwzHdN0T1fct95p6AYfNe0LZh88mbM98LxPdRHc+hVIZ3ah2Fyb6kDH2YKmvDo=
|
Enable 1.13.0 since libc > 0.2.40 requires it
|
Enable 1.13.0 since libc > 0.2.40 requires it
|
YAML
|
apache-2.0
|
frewsxcv/rust-threadpool,rust-threadpool/rust-threadpool,rust-lang/threadpool
|
1118f925c1055ebff41db053871843557d0ce7de
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.4"
sudo: required
dist: trusty
install:
- pip install -r requirements.txt
before_script:
- python cvdb/generate_passwords.py
- python manage.py makemigrations
- python manage.py migrate
script:
- coverage run --source='./viewcv' manage.py test -v2 viewcv
- coverage report
after_success:
- codecov
|
language: python
python:
- "3.4"
sudo: required
dist: trusty
install:
- pip install -r requirements.txt
before_script:
- python cvdb/generate_passwords.py cvdb/passwords.py
- python manage.py makemigrations
- python manage.py migrate
script:
- coverage run --source='./viewcv' manage.py test -v2 viewcv
- coverage report
after_success:
- codecov
|
Update password generation for Travis
|
Update password generation for Travis
|
YAML
|
mit
|
jarnoln/cvdb,jarnoln/cvdb
|
cb7e460a61e749179d3eba1d638316a04c41a783
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.10
before_install:
- npm install -g gulp
|
language: objective-c
node_js:
- 0.10
before_install:
- npm install -g gulp
- curl -L https://raw.githubusercontent.com/cognitom/dotfiles/master/lib/sketchtool.sh | sudo sh
|
Change Travis environment to Mac OS X
|
Change Travis environment to Mac OS X
|
YAML
|
mit
|
cognitom/gulp-sketch
|
248d76da3b90ef1deea9a1532d473d06e13c17ad
|
.travis.yml
|
.travis.yml
|
# NB: don't set `language: haskell` here
env:
- CABALVER=1.22 GHCVER=7.10.2
# Note: the distinction between `before_install` and `install` is not important.
before_install:
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER # see note about happy/alex
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
install:
- cabal --version
- echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
- travis_retry cabal update
- cabal install --only-dependencies --enable-tests --enable-benchmarks
# Here starts the actual work to be performed for the package under test; any command which exits with a non-zero exit code causes the build to fail.
script:
- if [ -f configure.ac ]; then autoreconf -i; fi
- cabal configure --enable-tests --enable-benchmarks -v2 # -v2 provides useful information for debugging
- cabal build # this builds all libraries and executables (including tests/benchmarks)
- cabal test
|
# https://github.com/commercialhaskell/stack/blob/master/doc/GUIDE.md
# Use new container infrastructure to enable caching
sudo: false
# Choose a lightweight base image; we provide our own build tools.
language: c
# GHC depends on GMP. You can add other dependencies here as well.
addons:
apt:
packages:
- libgmp-dev
# The different configurations we want to test. You could also do things like
# change flags or use --stack-yaml to point to a different file.
env:
- ARGS=""
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
# This line does all of the work: installs GHC if necessary, build the library,
# executables, and test suites, and runs the test suites. --no-terminal works
# around some quirks in Travis's terminal implementation.
script: stack $ARGS --no-terminal --install-ghc test
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack
|
Switch to stack for building
|
Switch to stack for building
|
YAML
|
bsd-3-clause
|
charleso/haskell-in-haste
|
3bc6eef537059f920641a4aa7eea546e4044ae2e
|
.travis.yml
|
.travis.yml
|
dist: xenial
language: node_js
node_js:
- "6"
- "8"
- "9"
sudo: "required"
before_install: "sudo apt-get update && sudo apt-get install -y graphicsmagick"
script: "npm run-script travis"
|
dist: xenial
language: node_js
node_js:
- '6'
- '8'
- '10'
sudo: 'required'
before_install: 'sudo apt-get update && sudo apt-get install -y graphicsmagick'
script: 'npm run-script travis'
|
Test with node.js 10 instead of 9
|
Test with node.js 10 instead of 9
|
YAML
|
bsd-3-clause
|
unexpectedjs/unexpected-image
|
0d30ec0984586749682a1812ef6fc02eefbf38f8
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 3.6
- 3.5
- 3.4
install:
- make install
script:
- make test
|
language: python
python:
- 3.6
- 3.5
- 3.4
env:
global:
- MPLBACKEND=agg
install:
- make install
script:
- make test
|
Set MPLBACKEND=agg for Travis tests
|
Set MPLBACKEND=agg for Travis tests
|
YAML
|
bsd-3-clause
|
European-XFEL/h5tools-py
|
93cf45f2a3da3698ff2f39b455aabb58f578ad38
|
.travis.yml
|
.travis.yml
|
language: haskell
# IF you want to get the latest build,
# on a BSD machine, you'll want to use the following
# CVC4=cvc4-20$(date -v-1d +"%y-%m-%d")-i386-linux-opt
# On a GNU machine, use
# CVC4=cvc4-20$(date --date='1 day ago' +"%y-%m-%d")-i386-linux-opt
# Original URL: http://cvc4.cs.nyu.edu/builds/i386-linux-opt/unstable/$CVC4
before_install:
- CVC4=cvc4-2014-11-22-i386-linux-opt
- wget www.galois.com/~leepike/$CVC4
- sudo mv $CVC4 /usr/local/bin/cvc4
- sudo chmod a+x /usr/local/bin/cvc4
- cvc4 --version
install:
- cabal install alex
- cabal install happy
script:
- make test
ghc:
- 7.6
- 7.8
|
language: haskell
# IF you want to get the latest build,
# on a BSD machine, you'll want to use the following
# CVC4=cvc4-20$(date -v-1d +"%y-%m-%d")-i386-linux-opt
# On a GNU machine, use
# CVC4=cvc4-20$(date --date='1 day ago' +"%y-%m-%d")-i386-linux-opt
# Original URL: http://cvc4.cs.nyu.edu/builds/i386-linux-opt/unstable/$CVC4
before_install:
- CVC4=cvc4-2014-11-22-i386-linux-opt
- wget www.galois.com/~leepike/$CVC4
- sudo mv $CVC4 /usr/local/bin/cvc4
- sudo chmod a+x /usr/local/bin/cvc4
- cvc4 --version
install:
- cabal install alex happy
script:
- make test
ghc:
- 7.6
- 7.8
|
Build alex and happy in parallel.
|
Travis-CI: Build alex and happy in parallel.
|
YAML
|
bsd-3-clause
|
GaloisInc/ivory,GaloisInc/ivory,Hodapp87/ivory
|
29b57542a3f40c036e4f3d86bc868ac6bf8ea77d
|
.travis.yml
|
.travis.yml
|
language: c
compiler:
- gcc
- clang
notifications:
recipients:
- [email protected]
branches:
only:
- master
- develop
env:
- USE_WEBKITGTK=yes
- USE_GTKHTML=yes
- USE_WEBKITGTK=yes USE_DEBUG=yes
- USE_GTKHTML=yes USE_DEBUG=yes
before_script:
- curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --recursive
- ./autogen.sh
script:
- curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/configure.sh | sh
- make
|
language: c
compiler:
- gcc
- clang
notifications:
recipients:
- [email protected]
branches:
only:
- master
- develop
env:
- USE_WEBKITGTK=yes
- USE_GTKHTML=yes
- USE_WEBKITGTK=yes USE_DEBUG=yes
- USE_GTKHTML=yes USE_DEBUG=yes
before_script:
- curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh
- git submodule update --init --recursive
- ./autogen.sh
script:
- curl https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/configure.sh | sh
- make
|
Use --location to support redirect
|
Use --location to support redirect
|
YAML
|
bsd-2-clause
|
kenhys/sylpheed-htmlview,kenhys/sylpheed-htmlview
|
49763f8b27b88c5da436db0a3ae46b9ac79a1682
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.2.*
- php: 7.0
env: SYMFONY_VERSION=3.3.* DEPENDENCIES=dev
- php: 7.1
- php: hhvm-stable
sudo: required
dist: trusty
group: edge
allow_failures:
- php: hhvm-stable
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
- if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
install: composer update --no-interaction
script: composer test
|
language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.2.*
- php: 7.0
env: SYMFONY_VERSION=3.3.* DEPENDENCIES=dev
- php: 7.1
- php: hhvm-stable
sudo: required
dist: trusty
group: edge
allow_failures:
- php: hhvm-stable
- php: 5.5
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
- if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
install: composer update --no-interaction
script: composer test
|
Allow failures on low deps until next symfony release
|
Allow failures on low deps until next symfony release
|
YAML
|
mit
|
lexik/LexikJWTAuthenticationBundle,chalasr/LexikJWTAuthenticationBundle
|
bc533ab8c2b38eea9df7a8a4b2b95accde791b40
|
.travis.yml
|
.travis.yml
|
language: java
|
language: java
addons:
apt:
sources:
- george-edison55-precise-backports
- ubuntu-toolchain-r-test
packages:
- cmake
- cmake-data
- gcc-mingw-w64-base
- binutils-mingw-w64-x86-64
- gcc-mingw-w64-x86-64
- gcc-mingw-w64
- libc6-dev-i386
|
Add external dependencies (waiting maven native plugin release)
|
Add external dependencies (waiting maven native plugin release)
|
YAML
|
mit
|
gchauvet/satellite,gchauvet/satellite,gchauvet/satellite
|
48a297616745bee5036ae5e14f2ec21a7132396d
|
keps/sig-storage/1900-volume-snapshot-validation-webhook/kep.yaml
|
keps/sig-storage/1900-volume-snapshot-validation-webhook/kep.yaml
|
title: CSI Snapshot Webhook
kep-number: 1900
authors:
- "@andili99"
- "@yuxiangqian"
owning-sig: sig-storage
participating-sigs:
- sig-storage
status: implementable
creation-date: 2020-07-22
reviewers:
- "@msau42"
- "@liggit"
- "@xing-yang"
- "@mattcary"
approvers:
- "@msau42"
- "@liggit"
- "@xing-yang"
- "@mattcary"
see-also:
- "keps/sig-storage/177-volume-snapshot"
latest-milestone: "v1.20"
milestone:
beta: "v1.19"
stable: "v1.20"
disable-supported: true
|
title: CSI Snapshot Webhook
kep-number: 1900
authors:
- "@andili99"
- "@yuxiangqian"
owning-sig: sig-storage
participating-sigs:
- sig-storage
status: implemented
creation-date: 2020-07-22
reviewers:
- "@msau42"
- "@liggit"
- "@xing-yang"
- "@mattcary"
approvers:
- "@msau42"
- "@liggit"
- "@xing-yang"
- "@mattcary"
see-also:
- "keps/sig-storage/177-volume-snapshot"
latest-milestone: "v1.20"
milestone:
beta: "v1.19"
stable: "v1.20"
disable-supported: true
|
Change KEP status to implemented
|
Change KEP status to implemented
|
YAML
|
apache-2.0
|
kubernetes/enhancements,kubernetes/enhancements,kubernetes/enhancements
|
a5ade387192df44ba89b33cd77c80983b909a399
|
.travis.yml
|
.travis.yml
|
language: cpp
sudo: true
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository ppa:kubuntu-ppa/backports -y
- sudo apt-get update -qq
- sudo apt-get install -qq cmake=2.8.12.2-0ubuntu1~ubuntu12.04.1~ppa2
before_script:
- BUILD_DIR=`pwd`/builds
- mkdir -p ${BUILD_DIR}
- cd ${BUILD_DIR}
- cmake ..
script:
- cd ${BUILD_DIR}
- make
|
language: cpp
os: linux
sudo: required
dist: trusty
compiler:
- gcc
- clang
before_script:
- BUILD_DIR=`pwd`/builds
- mkdir -p ${BUILD_DIR}
- cd ${BUILD_DIR}
- cmake ..
script:
- cd ${BUILD_DIR}
- make
|
Configure Travis to use a newer compiler
|
Configure Travis to use a newer compiler
For example, g++ 4.6's C++11 support is very poor.
|
YAML
|
mit
|
ogdf/bandit,ogdf/bandit,joakimkarlsson/bandit,joakimkarlsson/bandit,joakimkarlsson/bandit
|
43b1ee1977c3701226ed5ad22429b0b8579cfc57
|
.travis.yml
|
.travis.yml
|
language: objective-c
osx_image: xcode7.3
rvm: system
install:
- sudo gem update --system
- sudo gem install bundler --no-ri --no-rdoc
- sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future bundle install
- sudo chown -R $(whoami) ${TRAVIS_BUILD_DIR} # ensure tmp/ is writable for bundler
script:
- bundle exec rake ci
|
language: objective-c
osx_image: xcode7.3
rvm: system
install:
- sudo gem update --system --no-document
- sudo gem install bundler --no-document -n /usr/local/bin
- sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future bundle install
- sudo chown -R $(whoami) ${TRAVIS_BUILD_DIR} # ensure tmp/ is writable for bundler
script:
- bundle exec rake ci
|
Install bundler binary into /usr/local/bin
|
Install bundler binary into /usr/local/bin
|
YAML
|
mit
|
pivotal-sprout/sprout-exemplar,pivotal-sprout/sprout-exemplar
|
29fe3c84923854db3ee9e2d93196bcce1587cfaf
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
before_install: "npm install -g bob --loglevel error"
script: "bob build"
|
language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Add coveralls report and node 0.11 to CI run.
|
Add coveralls report and node 0.11 to CI run.
|
YAML
|
mit
|
cliffano/sapi
|
956af23fc4414892819a371b7038875e037fb6e7
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
# Echo trickery prevents an error return from `[ -e $dir/package.json ]` from erroring the Travis CI build.
- for dir in $(find . -maxdepth 1 -type d -a ! -name .\*); do [ -e $dir/package.json ] && (cd $dir && npm install --no-save --no-package-lock && echo $dir) || echo $dir; done
- npm install --no-save --no-package-lock
- npm install -g istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
before_install:
# Echo trickery prevents an error return from `[ -e $dir/package.json ]` from erroring the Travis CI build.
- for dir in $(find . -maxdepth 1 -type d -a ! -name .\*); do [ -e $dir/package.json ] && (cd $dir && npm install --no-save --no-package-lock && echo $dir) || echo $dir; done
- npm install --no-save --no-package-lock
- npm install -g istanbul coveralls
|
Build with Node.js 10 on Travis CI.
|
Build with Node.js 10 on Travis CI.
|
YAML
|
mit
|
bigeasy/nascent,bigeasy/nascent
|
57cd8dcbbcfe6b9340ef552ec17231b5d46ee93f
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "2.6"
install: pip install -r test-requirements.txt --use-mirrors
script: make test
|
language: python
python:
- "2.7"
- "2.6"
install: pip install -r test-requirements.txt --use-mirrors
script: make test
|
Test commit to trigger Travis.
|
Test commit to trigger Travis.
|
YAML
|
bsd-3-clause
|
spilgames/pyvertica,brocaar/pyvertica
|
47a6f6e07807e98424f98d020723dd7db2e6683b
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.11'
- '0.10'
script:
- npm run coverage
|
language: node_js
node_js:
- '0.11'
- '0.10'
before_script:
- npm install -g istanbul
- npm install -g mocha
script:
- npm run coverage
|
Make Travis install istanbul and mocha before running tests
|
Make Travis install istanbul and mocha before running tests
|
YAML
|
mit
|
vgno/ably
|
aa118edce7ce743613018e5dcbe93c0fdb756d88
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
rvm:
- 2.2.2
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
|
language: ruby
sudo: false
rvm:
- 2.2.2
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
services:
- mongodb
|
Add MongoDB to Travis CI config
|
Add MongoDB to Travis CI config
|
YAML
|
mit
|
hashrabbit/ruuid-mongoid,hashrabbit/ruuid-mongoid
|
c4093761ffcb8e814f2642189eac8e282c8b3878
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "8"
- "9"
- "10"
dist: trusty
addons:
chrome: stable
deploy:
- provider: npm
api_key: $NPM_TOKEN
on:
tags: true
repo: Cox-Automotive/alks.js
email: $NPM_EMAIL
|
language: node_js
node_js:
- "8"
- "9"
- "10"
dist: trusty
addons:
chrome: stable
before_deploy:
- npm install
deploy:
- provider: npm
api_key: $NPM_TOKEN
on:
tags: true
repo: Cox-Automotive/alks.js
email: $NPM_EMAIL
|
Install dev deps to deploy
|
Install dev deps to deploy
|
YAML
|
mit
|
Cox-Automotive/alks.js,Cox-Automotive/alks.js,Cox-Automotive/alks.js
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.