commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
8d629d1a9a469f7a5edcdbf2225e03345633de35 | .travis.yml | .travis.yml | language: ruby
sudo: false
matrix:
include:
- rvm: jruby-9.2.8.0
- rvm: 2.4.6
- rvm: 2.5.5
- rvm: 2.6.3
- rvm: jruby-head
- rvm: ruby-head
- rvm: 2.6.3
install: true # This skips 'bundle install'
script: gem build *.gemspec && gem install *.gem
allow_failures:
- rvm: jrub... | language: ruby
sudo: false
matrix:
include:
- rvm: jruby-9.2.9.0
- rvm: 2.4.9
- rvm: 2.5.7
- rvm: 2.6.5
- rvm: jruby-head
- rvm: ruby-head
- rvm: 2.6.5
install: true # This skips 'bundle install'
script: gem build *.gemspec && gem install *.gem
allow_failures:
- rvm: jrub... | Test with latest Ruby versions on Travis | Test with latest Ruby versions on Travis
| YAML | mit | twingly/twingly-url |
217bb66d1d7403b317f9933840e5644d2c884a52 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
after_success:
- mvn cobertura:cobertura coveralls:report
| language: java
after_success:
- mvn cobertura:cobertura coveralls:report
| Remove java version specification entirely | Remove java version specification entirely | YAML | apache-2.0 | physikerwelt/WikidataListGenerator |
fa8977ebc45e27ca9ef4c72dfc4560bd218afdde | .travis.yml | .travis.yml | language: rust
cache: cargo
services: docker
rust:
- stable
- beta
- nightly
install:
- cargo install cross || true
- source ~/.cargo/env || true
script:
- cross build --target $TARGET
- cross build --target $TARGET --release
env:
- TARGET=armv7-unknown-linux-musleabihf
- TARGET=armv7-unknown-linux-gn... | language: rust
cache: cargo
services: docker
rust:
- stable
- beta
- nightly
install:
- cargo install cross || true
- source ~/.cargo/env || true
script:
- cross build --target $TARGET
- cross build --target $TARGET --release
env:
- TARGET=armv7-unknown-linux-musleabihf
- TARGET=armv7-unknown-linux-gn... | Allow beta builds to fail | Allow beta builds to fail
| YAML | mit | golemparts/blinkt |
05e33ed814a7dd93d8328f4746593e6709bd334f | .travis.yml | .travis.yml | rvm:
- ree
- 1.9.2
bundler_args: --without development
| rvm:
- ree
- 1.9.2
- 1.9.3
bundler_args: --without development
| Add 1.9.3 to Travis CI | Add 1.9.3 to Travis CI
| YAML | mit | fiverr/active_attr,estum/active_attr,cgriego/active_attr,lloydk/active_attr,HaiTo/active_attr |
26add4ea4e41ed78f56891a3aecc0a0d88f8e2be | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
script:
- npm test
| ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install
script:
- npm test
| Remove bower install from Travis config | Remove bower install from Travis config
| YAML | mit | alisdair/ember-deploy-tagging-git,greyhwndz/ember-deploy-tagging-git |
a3c034ab672b14329ed465dc39d944a6ec42872f | .travis.yml | .travis.yml | dist: xenial
language: python
virtualenv:
system_site_packages: true
services:
- mysql
- xvfb
cache:
directories:
- /usr/share/dragonfire
before_install:
- mysql -u root -e "CREATE DATABASE dragonfire;"
install:
- sudo ./install-dev.sh --no-model
- sudo pip3 install pytest-faulthandl... | dist: bionic
language: python
virtualenv:
system_site_packages: true
services:
- mysql
- xvfb
cache:
directories:
- /usr/share/dragonfire
before_install:
- mysql -u root -e "CREATE DATABASE dragonfire;"
install:
- sudo ./install-dev.sh --no-model
- sudo pip3 install pytest-faulthandl... | Upgrade Travis CI distro to Ubuntu Bionic 18.04 | :green_heart: Upgrade Travis CI distro to Ubuntu Bionic 18.04
| YAML | mit | DragonComputer/Dragonfire,DragonComputer/Dragonfire,DragonComputer/Dragonfire,mertyildiran/Dragonfire,mertyildiran/Dragonfire |
8445a067ae4b8158c108145cc9715b4ae6e5a88c | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: cpp
services:
- docker
branches:
only:
- master
- develop
before_install:
- docker build -t travis-build -f infrastructure/tools/Dockerfile .
script:
# Common style check
- docker run --rm travis-build infrastructure/tools/checkstyle.sh $TRAVIS_COMMIT_RANGE
... | sudo: required
dist: trusty
language: cpp
services:
- docker
branches:
only:
- master
- develop
before_install:
- docker build -t travis-build -f infrastructure/tools/Dockerfile .
script:
# Common style check
- docker run --rm travis-build infrastructure/tools/checkstyle.sh $TRAVIS_COMMIT_RANGE
... | Check whole project with pylint on CI | Check whole project with pylint on CI
| YAML | mit | malirod/pylua,malirod/pylua |
f03ed49ab743c230717418fdb6e97c0e59f48960 | .travis.yml | .travis.yml | sudo: false
language: go
# https://github.com/golang/go/wiki/Go-Release-Cycle#release-maintenance
go:
- 1.7
- 1.8
- 1.x
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script:
- go get -v github.com/m... | sudo: false
language: go
# https://github.com/golang/go/wiki/Go-Release-Cycle#release-maintenance
go:
- 1.7
- 1.8
- 1.x
- tip
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
matrix:
allow_failures:
... | Test Go tip but allow failure | Test Go tip but allow failure
| YAML | mit | nochso/bytesort |
97429bbf6fe45dda3b9cd06bdb4c3d03a6f63847 | .travis.yml | .travis.yml | # don't build tags, it's redundant
if: tag IS blank
git:
depth: 3
language: node_js
node_js:
- "10"
- "8"
- "6"
os:
- linux
- windows
env:
global:
- NO_UPDATE_NOTIFIER=1
- NODE_NO_WARNINGS=1
matrix:
fast_finish: true
cache:
directories:
- $HOME/.npm
# - '%APPDATA%\npm-cache'
be... | # don't build tags, it's redundant
if: tag IS blank
git:
depth: 3
language: node_js
node_js:
- "10"
- "8"
os:
- linux
- windows
env:
global:
- NO_UPDATE_NOTIFIER=1
- NODE_NO_WARNINGS=1
matrix:
fast_finish: true
cache:
directories:
- $HOME/.npm
# - '%APPDATA%\npm-cache'
before_ins... | Drop node v6, stop re-installing latest npm | build: Drop node v6, stop re-installing latest npm
| YAML | mit | kittens/lerna,evocateur/lerna,evocateur/lerna,lerna/lerna,lerna/lerna,lerna/lerna,sebmck/lerna |
42c138c052dc61966c019597b532c26f0e896b2f | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
before_script:
- composer self-update
- composer install --dev --no-interaction
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
before_script:
- composer self-update
- composer install --dev --no-interaction
| Add PHP 7.3 in Travis builds | Add PHP 7.3 in Travis builds
| YAML | mit | RiskioFr/oauth2-auth0 |
d70f019da406c672653a5edbe09712210dcd4450 | .travis.yml | .travis.yml | script: "gem install foodcritic -v 1.7.0 && foodcritic -f any ."
rvm:
- 1.9.3
| script: "gem install foodcritic -v 2.0.0 && foodcritic -f any ."
rvm:
- 1.9.3
| Update to the latest TravisCI | Update to the latest TravisCI
| YAML | apache-2.0 | realityforge/chef-logstash |
3ae6381f78d8b71e5d33bc93bb3102e2aac15dd6 | .travis.yml | .travis.yml | language: java
before_install:
- sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev libglew-dev libpng-dev
- make clean -C C-Genetics/libs/AntTweakBar/src
- make -C C-Genetics/libs/AntTweakBar/src
- make clean -C C-Genetics
- make -C C-Genetics
script: ant test | language: java
before_install:
- sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev libglew-dev libpng-dev
- make clean -C C-Genetics/libs/AntTweakBar/src
- make -C C-Genetics/libs/AntTweakBar/src
- make clean -C C-Genetics
- make -C C-Genetics
script: mvn test | Use Maven in the Travis CI configuration | Use Maven in the Travis CI configuration
| YAML | mit | Tyler-Yates/AestheticFractals |
7d2a3bf80b95c19fe3b2e101d619e3091bd06d4f | .travis.yml | .travis.yml | # This file enables the Travis continuous integration system, which
# automatically builds and tests joda-time for each GitHub commit or
# pull request on three separate JDKs.
#
# For more information, see https://travis-ci.org
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
| # This file enables the Travis continuous integration system, which
# automatically builds and tests joda-time for each GitHub commit or
# pull request on three separate JDKs.
#
# For more information, see https://travis-ci.org
sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
| Update Travis to new infrastructure | Update Travis to new infrastructure
| YAML | apache-2.0 | Shais14/joda-time,JodaOrg/joda-time,flightstats/joda-time,flightstats/joda-time,tingting703/mp3_maven,Alexey-N-Chernyshov/IU_AST_Mutation_Score,Shais14/joda-time,tingting703/mp3_maven,Alexey-N-Chernyshov/IU_AST_Mutation_Score,mosoft521/joda-time,JodaOrg/joda-time,mosoft521/joda-time |
451c60ad4c8bb231a921fbb99fae9cc03a24e6db | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
env:
- CHEF_VERSION=10.30.2
- CHEF_VERSION=11.8.2
before_script:
- chef-client --version
| language: ruby
rvm:
- 1.9.3
- 2.1.1
env:
- CHEF_VERSION=10.32.2
- CHEF_VERSION=11.12.0
before_script:
- chef-client --version
| Update Chef to the latest 10 and 11 releases | Update Chef to the latest 10 and 11 releases
Also run tests using Ruby 2.1.1
| YAML | mit | bmarini/knife-inspect |
61288ce83386505d4bfcb031e3570ef88d60c1a4 | .travis.yml | .travis.yml | language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
- "pypy3"
install: pip install -r test-requirements.txt
script: py.test tests --cov=./reobject
| language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
- "pypy3"
install: pip install -r test-requirements.txt
script: py.test tests --cov=./reobject
| Drop support for Python 3.2 | Drop support for Python 3.2
| YAML | apache-2.0 | onyb/reobject,onyb/reobject |
a89c9b9f36de52ad9fe8796ee5d58d1e8e0414c2 | .travis.yml | .travis.yml | # Travis-CI Build
# see travis-ci.org for details
language: c
# Make sure mono is installed
install:
- sudo apt-get install mono-devel mono-gmcs
- mozroots --import --sync
# Run the Build script
script:
- git submodule update --init
# Run Tests
after_script:
- xbuild CI-build.msbuild /t:Te... | # Travis-CI Build
# see travis-ci.org for details
language: c
# Make sure mono is installed
install:
- sudo apt-get install mono-devel mono-gmcs python python3
- mozroots --import --sync
# Run the Build script
script:
- git submodule update --init
# Run Tests
after_script:
- xbuild CI-buil... | Fix Travis-CI script to install Python | Fix Travis-CI script to install Python
| YAML | apache-2.0 | exKAZUu/Code2Xml,exKAZUu/Code2Xml,exKAZUu/Code2Xml,exKAZUu/Code2Xml |
6035604a46ed526a72c1b592c2893de8198b9b27 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- 2.6
- 2.7
- 3.3
- 3.4
before_script:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then 2to3 -n -w --no-diffs ec2ansible tests; fi
script:
- python setup.py test
| language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
before_script:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then 2to3 -n -w --no-diffs ec2ansible tests; fi
script:
- python setup.py test
| Remove support of Python 2.6 | Remove support of Python 2.6
| YAML | mit | hehachris/ec2ansible |
7f1fb8ebc310e8df58f44e5dfa7cd62c3556f7b0 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
before_script:
- "npm run dts"
| language: node_js
node_js:
- "4.1"
before_script:
- "npm run dts"
| Use Node.js 4.1.x for Travis CI | Use Node.js 4.1.x for Travis CI
| YAML | mit | sirotama/misskey-api,misskey-delta/Misskey-API,MissKernel/Misskey-API,sirotama/misskey-api,misskey-delta/Misskey-API |
91df048ad2f30e09bec7a3cc7e09587aa5c35e52 | .travis.yml | .travis.yml | language: r
cache: packages
matrix:
include:
- os: linux
r: bioc-release
- os: linux
r: bioc-devel
- os: osx
r: bioc-release
allow_failures:
- os: osx
- r: bioc-devel
fast_finish: true
branches:
only:
- master
env:
global:
- LINTR_COMMENT_BOT=true
r_packages:
... | language: r
cache: packages
matrix:
include:
- os: linux
r: bioc-release
- os: linux
r: bioc-devel
- os: osx
r: bioc-release
allow_failures:
- os: osx
- r: bioc-devel
fast_finish: true
branches:
only:
- master
env:
global:
- LINTR_COMMENT_BOT=true
r_packages:
... | Improve Travis CI config | Improve Travis CI config [ci skip] | YAML | mit | steinbaugh/worminfo,mjsteinbaugh/metadata-elegans,seqcloud/worminfo |
34de7a17477578b66e559368d82be97cf2c3dd01 | .travis.yml | .travis.yml | language: python
before_install: >
travis_retry sudo apt-get install python python-setuptools
python-virtualenv python-dev gcc swig dialog libaugeas0 libssl-dev
install:
- travis_retry python setup.py dev # installs tox
- travis_retry pip install coveralls
script: travis_retry tox
after_success: coveralls
... | language: python
before_install: >
travis_retry sudo apt-get install python python-setuptools
python-virtualenv python-dev gcc swig dialog libaugeas0 libssl-dev
install:
- travis_retry python setup.py dev # installs tox
- travis_retry pip install coveralls
script: travis_retry tox
after_success: '[ "$TOXEN... | Make coveralls dependent on the TOXENV variable being "cover" | Make coveralls dependent on the TOXENV variable being "cover"
| YAML | apache-2.0 | mrb/letsencrypt,sjerdo/letsencrypt,lbeltrame/letsencrypt,DavidGarciaCat/letsencrypt,jmaurice/letsencrypt,fmarier/letsencrypt,BKreisel/letsencrypt,luorenjin/letsencrypt,vcavallo/letsencrypt,kuba/letsencrypt,goofwear/letsencrypt,mrb/letsencrypt,BillKeenan/lets-encrypt-preview,g1franc/lets-encrypt-preview,skynet/letsencry... |
14c73bb584358838339ad9a7b50065279437be77 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
services:
- mongodb
env:
- M... | language: ruby
env:
- MONGOID_VERSION=3
- MONGOID_VERSION=4
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: jruby-head
... | Allow failure of mongoid 4 on Rubinius | Allow failure of mongoid 4 on Rubinius
| YAML | mit | kierangraham/delayed_job_mongoid,davidrv/delayed_job_mongoid,collectiveidea/delayed_job_mongoid,matekb/delayed_job_mongoid,dblock/delayed_job_mongoid,amw/delayed_job_mongoid |
452c40ee32af415bc1c11bb37bb8d3f6be77b08a | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
- "6"
before_script:
- export TZ=Europe/Madrid
script: npm run travis
after_success:
- 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls'
cache:
yarn: true
| language: node_js
node_js:
- "10"
- "8"
- "6"
before_script:
- export TZ=Europe/Madrid
script: npm run travis
after_success:
- 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls'
cache:
yarn: true
| Add Node v10 to Travis CI | Add Node v10 to Travis CI
| YAML | mit | guigrpa/jest-html,guigrpa/jest-html |
e8455a5292586e1d3b74d29a55c8430ac925b651 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
install: pip install .
script: py.test tests/
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
install: pip install .
script: py.test tests/
| Add Python 3.5/3.6 to Travis builds | Add Python 3.5/3.6 to Travis builds
| YAML | mit | rev112/pyope |
8cd179867929754a3d1b04f7251696845bd1cf9d | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.4
branches:
only:
- master
script: make deps test
| sudo: false
language: go
# Ensure cloned file modes match test cases
before_install: umask 0022
go:
- 1.4
branches:
only:
- master
script: make deps test
| Set umask for Travis to fix tests | Set umask for Travis to fix tests
| YAML | mpl-2.0 | hashicorp/atlas-go,hashicorp/atlas-go |
c0f11930fe789716c85e7dd48451fc18cce15c6d | .travis.yml | .travis.yml | language: node_js
cache:
yarn: true
directories:
- node_modules
node_js:
- "4"
- "6"
- "node"
after_success:
- "nyc report --reporter=text-lcov | coveralls"
| language: node_js
cache:
yarn: true
directories:
- node_modules
node_js:
- "4"
- "6"
- "node"
script:
- yarn lint
- yarn test
after_success:
- "nyc report --reporter=text-lcov | coveralls"
| Add linting back to Travis CI config | Add linting back to Travis CI config
| YAML | mit | wKovacs64/hibp,wKovacs64/hibp,wKovacs64/hibp |
184902a5ad86bd53c267a5a341a49b2853a78409 | .travis.yml | .travis.yml |
language: python
python:
- 3.2
- 3.3
- 3.4
- pypy3
install:
- sudo add-apt-repository ppa:webupd8team/java -y
- sudo apt-get update
- sudo apt-get install oracle-java8-installer
- sudo update-java-alternatives -s jdk-8-oracle-x64
- pip install scrutinizer-ocular coverage webtest httmock r... |
language: python
python:
- 3.2
- 3.3
- 3.4
- pypy3
install:
- sudo add-apt-repository ppa:webupd8team/java -y
- sudo apt-get update
- sudo apt-get install oracle-java8-installer
- pip install scrutinizer-ocular coverage webtest httmock requests ppp_datamodel ppp_core jsonrpclib-pelix nltk
... | Revert "Fix java on Travis?" | Revert "Fix java on Travis?"
This reverts commit 88065fa4e37d72e8cf7f22c91b58b5d4b8beec3d.
| YAML | agpl-3.0 | ProjetPP/PPP-QuestionParsing-Grammatical,ProjetPP/PPP-QuestionParsing-Grammatical |
a7a513658003a3c6055cf06c1e9150a801dfaed0 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- "7.4.0"
before_script:
- npm install -g grunt-cli
| Update build to node version that support ecma6 | Update build to node version that support ecma6
| YAML | mit | imdone/imdone-core,imdone/imdone-core |
68ad901a3aabf856754b4f7f868be872a2426490 | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- ruby-head
- rbx
- jruby
- jruby-head
script:
- rake spec
matrix:
allow_failures:
- rvm: 2.1.0
- rvm: ruby-head
- rvm: jruby-head
notifications:
irc: "irc.freenode.org#pry"
recipients:
- jrmair@gmail.com
branches:
only:
- ... | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- ruby-head
- rbx
- jruby
- jruby-head
script:
- rake spec
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
irc: "irc.freenode.org#pry"
recipients:
- jrmair@gmail.com
branches:
only:
- master
| Remove allowed failure, switch to testing newest 2.1 | Remove allowed failure, switch to testing newest 2.1
Because of Ruby's new versioning scheme, testing 2.1.0 and 2.1.1
separately is overkill (like testing multiple patch levels of earlier
Ruby versions).
| YAML | mit | 85x14/pry,ooohiroyukiooo/pry,icebreaker/pry,gfvcastro/pry,jasonm23/pry,jasnow/pry,josue804/debunker,bronzdoc/pry,ooohiroyukiooo/pry,printercu/pry,tdg5/pry,pvdb/pry,caporta/pry,nju520/pry,geoffreylitt/pry,caporta/pry,printercu/pry,shockone/pry,josue804/debunker,tdg5/pry,icebreaker/pry,raeno/pry,jasnow/pry,85x14/pry,scal... |
f2270a1681006a0da25a1bb3049b078c8162fe89 | .travis.yml | .travis.yml | language: ruby
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler
- bundle --version
# Install pahantomjs
- mkdir travis-phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phan... | language: ruby
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler
- bundle --version
# Install pahantomjs
- mkdir travis-phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phan... | Add Ruby 2.7 in the build matrix | CI: Add Ruby 2.7 in the build matrix
| YAML | mit | sensortower/sidekiq-throttled,sensortower/sidekiq-throttled,sensortower/sidekiq-throttled |
32ac546542b94404293c3ee474078c07c5f38470 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: node_js
node_js:
- "8"
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- npm install npm@5 -g
- npm install -g @angular/cli@latest
- npm install -g karma
install:
- npm install | sudo: false
dist: trusty
language: node_js
node_js:
- "8"
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- npm install npm@5 -g
- npm install -g @angular/cli@latest
- npm install -g karma
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh... | Add karma cmd directly and add some option to start chrome | Add karma cmd directly and add some option to start chrome
| YAML | mit | cmalaboeuf/mean-docker-compose,cmalaboeuf/angular2-blog,cmalaboeuf/mean-docker-compose,cmalaboeuf/angular2-blog,cmalaboeuf/angular2-blog,cmalaboeuf/mean-docker-compose,cmalaboeuf/angular2-blog,cmalaboeuf/mean-docker-compose |
8d404ddb9682a6d14033329837dcac92f217dec2 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- hhvm
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
before_script:
- composer self-update
- composer update --no-interaction $COMPOSER_OPTS
script:
- mkdir -p build/logs
- vendor/bin/phpunit -c phpunit.xml.dist --coverage-text
after_s... | language: php
php:
- 5.6
- 7.0
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
before_script:
- composer self-update
- composer update --no-interaction $COMPOSER_OPTS
script:
- mkdir -p build/logs
- vendor/bin/phpunit -c phpunit.xml.dist --coverage-text
after_script:
... | Remove HHVM from Travis build | Remove HHVM from Travis build
| YAML | mit | neeckeloo/NewRelic |
94dd31b179d3431cfbbc3aab11fa5e249076dabc | .travis.yml | .travis.yml | ---
language: php
sudo: false
php:
- 7
- 7.1
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache
notifications:
email: false
slack:
secure: QDE52Y7qq+PEEy6xagZ/eIJ2pd/BCCq0quN41pl+iwKXO72dlNlLINuro0Mis/dNlzMrmdwKLDBsl+r0Kkqq6L7TpnnpziVX88fBvMl4PXxkfJJwSV0fiBcXBz1hJi9E/n22gO... | ---
language: php
sudo: false
php:
- 7.0
- 7.1
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache
notifications:
email: false
slack:
secure: QDE52Y7qq+PEEy6xagZ/eIJ2pd/BCCq0quN41pl+iwKXO72dlNlLINuro0Mis/dNlzMrmdwKLDBsl+r0Kkqq6L7TpnnpziVX88fBvMl4PXxkfJJwSV0fiBcXBz1hJi9E/n22... | Test on 7.0 and 7.1 separately | Test on 7.0 and 7.1 separately
| YAML | bsd-3-clause | OpenBuildings/phpunit-spiderling,OpenBuildings/phpunit-spiderling |
326c3528a9516aad172b3db935ea29abb120b4b0 | .travis.yml | .travis.yml | dist: xenial
language: python
cache: pip
service:
- postgresql
- mysql
python:
- "3.7"
env:
- TESTING_DB=sqlite3
- TESTING_DB=postgresql
- TESTING_DB=mysql
before_install:
- psql -c "CREATE USER evennia WITH PASSWORD 'password'; CREATE DATABASE evennia; GRANT ALL PRIVILEGES ON DATABASE evennia TO even... | dist: xenial
language: python
cache: pip
service:
- postgresql
- mysql
python:
- "3.7"
env:
- TESTING_DB=sqlite3
- TESTING_DB=postgresql
- TESTING_DB=mysql
install:
- pip install psycopg2-binary
- pip install mysqlclient
- pip install -e .
- pip install coveralls
before_script:
- psql -U post... | Move db install to later | Move db install to later
| YAML | bsd-3-clause | jamesbeebop/evennia,jamesbeebop/evennia,jamesbeebop/evennia |
9cf300a9bf22effa1baeb5369f6430a0bd9081c5 | .travis.yml | .travis.yml |
language: objective-c
matrix:
include:
- osx_image: xcode7.2
env:
global:
- LC_CTYPE=en_US.UTF-8
git:
submodules: false
before_install:
- git submodule update --init --recursive
script:
- pod lib lint
- set -o pipefail
- xcodebuild test -workspace ESNotification.xcworkspace -scheme ESNotification... |
language: objective-c
matrix:
include:
- osx_image: xcode7.2
env:
global:
- LC_CTYPE=en_US.UTF-8
git:
submodules: false
branches:
only:
- master
cache: bundler
bundler_args: --without production --deployment
before_install:
- git submodule update --init --recursive
script:
- pod lib lint
- se... | Use cache for bundle install in CI. | Use cache for bundle install in CI.
| YAML | mit | EZ-NET/ESNotification,EZ-NET/ESNotification |
20c2ff344344be18168ef66398eb6c894cb4a69f | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
addons:
code_climate:
repo_token: 26489f9e854fcdf7e7660ba29c1455694685465b1f90329a79f7d2bf448acb61
install:
- rm composer.lock
- composer install
- php artisan env
- mv -v .env.testing .env
script:
- phpunit
after_script:
- php vendor/bin/coveralls
| language: php
php:
- 5.5
- 5.6
addons:
code_climate:
repo_token: 26489f9e854fcdf7e7660ba29c1455694685465b1f90329a79f7d2bf448acb61
install:
- rm composer.lock
- composer install
- php artisan env
- mv -v .env.testing .env
script:
- phpunit --debug
after_script:
- php vendor/bin/coveralls
| Add debug output to phpunit. | Add debug output to phpunit.
| YAML | agpl-3.0 | tonicospinelli/firefly-iii,JC5/firefly-iii,firefly-iii/firefly-iii,tonicospinelli/firefly-iii,firefly-iii/firefly-iii,tonicospinelli/firefly-iii,firefly-iii/firefly-iii,tonicospinelli/firefly-iii,JC5/firefly-iii,firefly-iii/firefly-iii |
3af42f80ceeb89ebc9acf01ed4296067e2d53e7b | .travis.yml | .travis.yml | language: java
script:
- javac -version
jdk:
- oraclejdk8
notifications:
email:
on_success: never
on_failure: never
| before_install:
- echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections
- sudo add-apt-repository ppa:webupd8team/java
- sudo apt-get update
- sudo apt-get install oracle-java8-installer
script:
- echo $JAVA_HOME
- javac -version
notifications:
email:
on_s... | Use Java 8 from webupd8 team. | Use Java 8 from webupd8 team.
| YAML | apache-2.0 | schleichardt/travis-ci-playground,schleichardt/travis-ci-playground |
dfda906a0843ed10c822622a3e22c7930ee8eff2 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
env:
matrix:
- DJANGO="Django>=1.8,<1.9" # 1.8
- DJANGO="Django>=1.9,<1.10" # 1.9
- DJANGO="Django>=1.10,<1.11" # 1.10
- DJANGO="Django>=1.11,<1.12" # 1.11
- DJANGO="Django>=2.0,<2.1" # 2.0
- DJANGO="Django>=2.1,<2.2" # 2.0
cache: pip
... | language: python
python:
- "3.4"
- "3.5"
- "3.6"
env:
matrix:
- DJANGO="Django>=1.8,<1.9" # 1.8
- DJANGO="Django>=1.9,<1.10" # 1.9
- DJANGO="Django>=1.10,<1.11" # 1.10
- DJANGO="Django>=1.11,<1.12" # 1.11
- DJANGO="Django>=2.0,<2.1" # 2.0
- DJANGO="Django>=2.1,<2.2" # 2.1
cache: pip
... | Remove support to Python 2.7 and Django < 1.8, add suport do Django 2.1 | Remove support to Python 2.7 and Django < 1.8, add suport do Django 2.1
| YAML | mit | ebertti/django-admin-easy,ebertti/django-admin-easy |
2f0ec5f2158afaeb4a377861d625712897c357bf | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "5.2.0"
- "io.js"
- "0.12"
- "0.10"
| sudo: false
language: node_js
node_js:
- "6.5.0"
- "4.5.0"
- "0.12"
- "0.10"
| Test on latest node version | Test on latest node version
| YAML | mit | almost/string-replace-stream |
ace8c137909b647b20ec6d62d8f5d6180621a137 | .travis.yml | .travis.yml | language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- tip
gobuild_args: -tags no_pkg_config
dist: xenial
sudo: required
before_install:
- sudo apt-get update
- sudo apt-get install bison flex automake autoconf libtool make gcc
- wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v3.6.3.tar.gz | tar -C ${TR... | language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- tip
gobuild_args: -tags no_pkg_config
dist: xenial
sudo: required
before_install:
- sudo apt-get update
- sudo apt-get install bison flex automake autoconf libtool make gcc
- wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v3.6.3.tar.gz | ta... | Add go 1.9.x to Travis configuration | Add go 1.9.x to Travis configuration
| YAML | bsd-2-clause | hillu/go-yara,hillu/go-yara,VirusTotal/go-yara |
8187d9f6996bffd06d5359725fc65f9c528e62e3 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
| language: ruby
cache: bundler
rvm:
- 2.4.2
- 2.3.5
- 2.2.8
| Update Ruby versions in Travis | Update Ruby versions in Travis
| YAML | mit | Yleisradio/yle_tf,Yleisradio/yle_tf |
907360691c56a164fa4479779d4abc57d6685dd9 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- hhvm
env:
- DB=mysql
before_script:
- if [[ "$DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS hris;" -uroot; fi
- composer self-update
- composer install --prefer-source --no-interaction
- chmod -R 777 storage
- chmod -R 777 bootstra... | language: php
php:
- 5.5
- 5.6
- hhvm
- 7.0
env:
- DB=mysql
before_script:
- if [[ "$DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS hris;" -uroot; fi
- composer self-update
- composer install --prefer-source --no-interaction
- chmod -R 777 storage
- chmod -R 77... | Use Clover Coverage in PHPUnit | Use Clover Coverage in PHPUnit
| YAML | bsd-3-clause | bkintanar/HRis,bkintanar/HRis |
f44eb511ea6f08a6d4fd84511875ddd5d5246413 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install: travis_retry composer install --no-interaction --prefer-source
| language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
install: travis_retry composer install --no-interaction --prefer-source
| Remove support for PHP 5.4. | Remove support for PHP 5.4.
| YAML | mit | srph/qp |
6a23c3e06196dc3b00882b1c643b1fa095aa5c89 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.11'
- '0.10'
env:
global:
- secure: uIW4rSQhjUw/FEQbETsldAFo55Olan4xW9EWcpTAyznpssmvLl+dF1lonTNETF5FCd5SAaiuhm7Tf9C4LgEJHENbou6TttPeGfaaXG7ZLVPKqyMQr/2o2pLIr8BzGQfefqtQqtn84Mz1LT7DxtMjJ2IVFC0ZUHSqK6L+4dukquU=
- secure: KXq1aLFdE3jxVz7P13kqzI66vzlrEUxPXBuzPXafzPXoyyofLsJlB+x28np... | language: node_js
node_js:
- '0.11'
- '0.10'
env:
global:
- secure: uIW4rSQhjUw/FEQbETsldAFo55Olan4xW9EWcpTAyznpssmvLl+dF1lonTNETF5FCd5SAaiuhm7Tf9C4LgEJHENbou6TttPeGfaaXG7ZLVPKqyMQr/2o2pLIr8BzGQfefqtQqtn84Mz1LT7DxtMjJ2IVFC0ZUHSqK6L+4dukquU=
- secure: KXq1aLFdE3jxVz7P13kqzI66vzlrEUxPXBuzPXafzPXoyyofLsJlB+x28np... | Test if sauce_connect is not necessary | Test if sauce_connect is not necessary
| YAML | mit | ceesgeene/polyformfill |
e84fb249831fec787dee20031b20c28c3bf5a60e | .travis.yml | .travis.yml | sudo: false
language: generic
os:
- osx
- linux
osx_image: xcode9
git:
depth: 200
env:
global:
- BINSTAR_USER: menpo
matrix:
- PYTHON_VERSION: 3.6
- PYTHON_VERSION: 3.7
install:
- wget https://raw.githubusercontent.com/menpo/condaci/v0.4.x/condaci.py -O condaci.py
- python condaci.py setup --c... | sudo: false
language: generic
git:
depth: 200
env:
global:
- BINSTAR_USER=menpo
matrix:
include:
- os: osx
osx_image: xcode9
env: PYTHON_VERSION=3.6
- os: osx
osx_image: xcode9
env: PYTHON_VERSION=3.7
- os: linux
env: PYTHON_VERSION=3.6
- os: linux
env: P... | Make the Travis build matrix more explicit | Make the Travis build matrix more explicit
| YAML | bsd-3-clause | menpo/menpo,patricksnape/menpo,patricksnape/menpo,menpo/menpo,patricksnape/menpo,menpo/menpo |
00d36bb8a6f0bf1da35a79b327d1b14f25d41b7e | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
# Don't CI feature branches, but note that this *does* CI PR merge commits --
# including before they're made.
branches:
only:
- master
notifications:
webhooks:
urls:
- 'https://webhooks.gitter.im/e/5b83f4ce9cca865c832c'
on_success: change # options: [alway... | language: node_js
node_js:
- '0.10'
# Don't CI feature branches, but note that this *does* CI PR merge commits --
# including before they're made.
branches:
only:
- master
notifications:
webhooks:
urls:
- 'https://webhooks.gitter.im/e/5b83f4ce9cca865c832c'
on_success: change # options: [alway... | Add `RACKSPACE_API_KEY` as encrypted Travis environment variable | Add `RACKSPACE_API_KEY` as encrypted Travis environment variable
| YAML | mit | zoomhub/zoomhub,zoomhub/zoomhub,zoomhub/zoomhub,zoomhub/zoomhub |
44ab8e0dc1d89f43dad0ebfca9c1a025798e3af9 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
notifications:
email: false
| language: go
sudo: false
go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
notifications:
email: false
| Add Go 1.7 and latest | Add Go 1.7 and latest
Go 1.7 was released recently and it seems useful to test against the Go tip as
well, for people that run release candidates.
| YAML | mit | DramaFever/go.uuid,nanjj/uuid,satori/go.uuid,eurie-inc/go.uuid,gofrs/uuid |
278a0893d63107478146d70b1c6deb9ced02bd51 | .travis.yml | .travis.yml | language: go
go: 1.4
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.5"
- "2.2.0"
before_script: bundle install
script:
- bundle exec rake
- go test ./go/quartz | language: go
go: 1.4
rvm:
- "2.1.5"
before_script: bundle install
script:
- bundle exec rake
- go test ./go/quartz | Use Ruby 2.1.5 inside Travis | Use Ruby 2.1.5 inside Travis
| YAML | mit | DavidHuie/quartz,DavidHuie/quartz |
614b9b5162a55d16b05e29a1c00fc880ff6dfb3d | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
sudo: false
env:
- MYSQL_USER=travis MYSQL_HOST=127.0.0.1 POSTGRESQL_USER=postgres POSTGRESQL_HOST=127.0.0.1
services:
- mongodb
before_install:
- bash bin/check_signoff.sh
- pip install -q flake8
- flake8
install:
# Install package, test re... | language: python
python:
- "3.3"
- "3.4"
sudo: false
env:
- MYSQL_USER=travis MYSQL_HOST=127.0.0.1 POSTGRESQL_USER=postgres POSTGRESQL_HOST=127.0.0.1
services:
- mongodb
before_install:
- bash bin/check_signoff.sh
- pip install -q flake8
- flake8
install:
# Install package, test re... | Add a required script command for the Travis config | Add a required script command for the Travis config
Signed-off-by: Byron Ruth <e9d71f5ee7c92d6dc9e92ffdad17b8bd49418f98@devel.io>
| YAML | bsd-2-clause | chop-dbhi/prov-extractor,chop-dbhi/prov-extractor |
f934c1b916d49f7f529a1e0ebd63daf07de1ad76 | .travis.yml | .travis.yml | language: scala
os:
- linux
script:
- sbt ++$TRAVIS_SCALA_VERSION clean "flaky times=10"
scala:
- 2.12.3
jdk:
- oraclejdk8
sudo: false
notifications:
email:
- krzysztof.otrebski@gmail.com
cache:
directories:
- $HOME/.sbt/1.0
- $HOME/.sbt/boot/scala*
- $HOME/.sbt/cache
- $HOME/.sbt/launchers
- ... | language: scala
os:
- linux
script:
- sbt ++$TRAVIS_SCALA_VERSION clean "flaky times=30"
scala:
- 2.12.3
jdk:
- oraclejdk8
sudo: false
notifications:
email:
- krzysztof.otrebski@gmail.com
cache:
directories:
- $HOME/.sbt/1.0
- $HOME/.sbt/boot/scala*
- $HOME/.sbt/cache
- $HOME/.sbt/launchers
- ... | Increase number of test runs | Increase number of test runs
| YAML | apache-2.0 | otrebski/sbt-flaky-demo |
92953b639577f24f8679bc245e68b0e14addc90b | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "iojs"
- "0.10"
- "0.12"
| sudo: false
language: node_js
node_js:
- "6"
- "5"
- "4"
- "iojs"
- "0.10"
- "0.12"
| Update Travis CI node versions | Update Travis CI node versions
| YAML | mit | emgeee/gulp-standard,nebez/gulp-semistandard,stevelacy/gulp-standard |
277c7303323897973a643d464bef668177004af2 | .travis.yml | .travis.yml | # Travis CI integration
# Defaults to GNU GCC and autotools: ./configure && make && make test
language: c
# Use newer Travis "trusty" image to get newer bash 4.3.*
dist: trusty
# We don't need to install packages, use dockerized build, quicker
sudo: false
# Get and install the Bash Automated Testing System (bats)
be... | # Travis CI integration
# Defaults to GNU GCC and autotools: ./configure && make && make test
language: c
# Use newer Travis "trusty" image to get newer bash 4.3.*
dist: trusty
# We don't need to install packages, use dockerized build, quicker
sudo: false
# Get and install the Bash Automated Testing System (bats)
be... | Set PATH to netcalc for BATS | Set PATH to netcalc for BATS
Signed-off-by: Joachim Nilsson <583c295fd7602c168ad814279bbc3894ba65f5d6@gmail.com>
| YAML | bsd-3-clause | troglobit/sipcalc,troglobit/netcalc,troglobit/sipcalc,troglobit/netcalc |
ff499ac32336c80bf0bc19749dab9207134eb302 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
addons:
apt:
packages:
- ffmpeg
install:
- python setup.py install
script:
- python -c "import audioread"
| language: python
python:
- "2.7"
- "3.6"
addons:
apt:
sources:
- trusty-media
packages:
- ffmpeg
install:
- python setup.py install
script:
- python -c "import audioread"
| Add a PPA source for ffmpeg | Add a PPA source for ffmpeg
| YAML | mit | beetbox/audioread |
58d979322c7f8edee4bf46f3316eb2fc4bca7da3 | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.6.0
before_install:
- sudo apt-get update
- Y | sudo apt-get install -qqy docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`... | sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.6.0
before_install:
- sudo apt-get remove -qqy docker-engine
- sudo apt-get autoremove --purge docker-engine
- sudo apt-get update
- sudo apt-get install -qqy docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github... | Remove docker-engine pakckage before update it | Remove docker-engine pakckage before update it
| YAML | mit | sirateck/devops-magento2 |
b020946fcfe1d570941ef43a61a9c2f3caa23774 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
include:
- php: 5.6
env: PHPCS=1
allow_failures:
- php: 7.0
- php: hhvm-nightly
install:
- composer self-update
- composer install --prefer-dist --no-interaction
before_script:
- sh ... | language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
include:
- php: 5.6
env: PHPCS=1
allow_failures:
- php: 7.0
- php: hhvm-nightly
install:
- composer self-update
- composer install --prefer-dist --no-interaction
before_script:
- sh ... | Include ctp files in PHPCS run | Include ctp files in PHPCS run
| YAML | mit | alt3/cakebox-console,alt3/cakebox-console,alt3/cakebox-console |
3af64bba34852b1f33d7b313d91ccd087f4a80c1 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_script:
- mkdir build
- cd build
- cmake ..
script: make && make test
| language: cpp
compiler:
- gcc
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libprotobuf-dev
before_script:
- mkdir build
- cd build
- cmake ..
script: make && make test
| Install the Protocol Buffer library dependency before building. | Install the Protocol Buffer library dependency before building.
| YAML | apache-2.0 | vertica/orc,vertica/orc,jorgemarsal/orc,vertica/orc,jorgemarsal/orc,jorgemarsal/orc,jorgemarsal/orc,jorgemarsal/orc,jorgemarsal/orc,vertica/orc,jorgemarsal/orc,vertica/orc,vertica/orc,vertica/orc,jorgemarsal/orc,vertica/orc |
09c5225805a3dbd89ebca1785d9b80951e097a72 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
| sudo: false
language: node_js
node_js:
- iojs
- "0.12"
| Remove node.js 0.10 from CI | Remove node.js 0.10 from CI
| YAML | mit | ai/browserslist,mdix/browserslist |
f1a5e2f7930d3504ccea7b22adfd517bc82251c9 | .travis.yml | .travis.yml | language: python
python:
- "3.7-dev"
cache: pip
install:
- pip install -r requirements.txt
script:
- pylint tracki
- flake8
- mypy tracki
- pytest
| language: python
python:
- "3.7"
dist: xenial
cache: pip
install:
- pip install -r requirements.txt
script:
- pylint tracki
- flake8
- mypy tracki
- pytest
| Use xenial and Python 3.7 on Travis | Use xenial and Python 3.7 on Travis
| YAML | mit | rok-povsic/Tracki |
fa50bbbe3909d0ef103a09fe7abab51e68e87c07 | .travis.yml | .travis.yml | language: ruby
cache: bundler
gemfile: docs/Gemfile
script:
- bundle exec jekyll algolia --config docs/_config.yml
branches:
only:
# Change this to gh-pages if you're deploying using the gh-pages branch
- master
rvm:
- 2.4 | language: ruby
cache: bundler
gemfile: docs/Gemfile
script:
- bundle exec jekyll algolia --source docs --destination docs/_site --config docs/_config.yml
branches:
only:
# Change this to gh-pages if you're deploying using the gh-pages branch
- master
rvm:
- 2.4 | Add source and destination paths to build script | Add source and destination paths to build script
| YAML | mit | bum752/bum752.github.io,code-not-found/code-not-found.github.io,robmarkoski/robmarkoski.github.io,barryboy/barryboy.github.io,gadobe/gadobe.github.io,aaronherman/aaronherman.github.io,waldirio/waldirio.github.io,lucasnetau/lucasnetau.github.io,Dhvanan/Dhvanan.github.io,mmistakes/minimal-mistakes,Dhvanan/Dhvanan.github.... |
cdc3e403824f5c817518feb4c5f737b39287e386 | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
- truffleruby
matrix:
allow_failures:... | ---
language: ruby
sudo: false
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
- truffleruby
matrix:
allow_failures:
- rvm: rub... | Change to stop caching bundler | Change to stop caching bundler
| YAML | mit | piotrmurach/tty-prompt,peter-murach/tty-prompt |
78e54383a4da1a6cc01b755b78bb90475ed2d964 | .travis.yml | .travis.yml | language: sh
before_script:
- sudo add-apt-repository -y "deb http://mirrors.kernel.org/ubuntu utopic main universe"
- sudo apt-get -y update
- sudo apt-get -y install shellcheck
script:
- shellcheck *.sh
notifications:
email: false
branches:
only:
- master
| language: sh
before_script:
- wget "http://ftp.debian.org/debian/pool/main/s/shellcheck/shellcheck_0.3.7-5_amd64.deb"
- sudo dpkg -i "shellcheck_0.3.7-5_amd64.deb"
script:
- shellcheck *.sh
notifications:
email: false
branches:
only:
- master
| Update ShellCheck installation method for Travis | Update ShellCheck installation method for Travis
| YAML | mit | ntpeters/homebrew-notifier |
56e57047a73136b0dd16e276de5c06bcc03fb27a | .travis.yml | .travis.yml | language: python
python:
- 2.7
env:
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
before_install:
- export DJANGO_SETTINGS_MODULE=app.settings
- export PYTHONPATH=$HOME/builds/fatboystring/csv_generator
- export PIP_USE_MIRRORS=true
install:
- pip install -r requirements.txt
- pip install django==$DJANGO... | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DJANGO=1.5
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=1.9
before_install:
- export DJANGO_SETTINGS_MODULE=app.settings
- export PYTHONPATH=$HOME/builds/fatboystring/csv_generator
- export PIP_USE_MIRRORS=true
install:
- p... | Test with more versions of django and python | Test with more versions of django and python
| YAML | mit | fatboystring/csv_generator,fatboystring/csv_generator |
976143d0eead9cffaed4fd5fd1dbe1b49614b5ba | .travis.yml | .travis.yml | language: python
python:
- 3.4
- 3.5
- 3.6
env:
- DJANGO="1.11"
- DJANGO="2.0"
- DJANGO="2.1"
install:
- pip install tox tox-travis
script:
- tox
matrix:
fast_finish: true
| language: python
python:
- 3.4
- 3.5
- 3.6
env:
- DJANGO="1.11"
- DJANGO="2.0"
- DJANGO="2.1"
install:
- pip install tox tox-travis
script:
- tox
matrix:
fast_finish: true
include:
- { python: "3.6", env: TOXENV=docs }
| Add "docs" build on Travis | Add "docs" build on Travis
| YAML | bsd-3-clause | snowball-one/cid |
40a060488fff32dee6c655408ad3f84d076764e9 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
- 0.8
| language: node_js
node_js:
- "0.6"
- "0.8"
- "0.10"
- "0.11"
| Add tests for node v0.10 and v0.11 | Add tests for node v0.10 and v0.11
| YAML | mit | Submersible/node-staticfile |
ca4505eb0875a8b9d8b95f8733130086e87b2d53 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install: echo "skip './gradlew assemble' step"
script: ./gradlew --no-daemon
after_success:
... | language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install: true
script: ./gradlew --no-daemon
after_success:
- bash <(curl -s https://codecov.... | Improve skipping of install step in CI | Improve skipping of install step in CI | YAML | mit | RemonSinnema/awe,RemonSinnema/awe,RemonSinnema/awe |
90c436c741b3d9b577ddcf66de886795ff3b9f8c | .travis.yml | .travis.yml | rvm:
- 1.8.7
# - 1.9.2
- 1.9.3
- 2.0.0
script: bundle exec rake spec
| rvm:
- 1.8.7
# - 1.9.2
- 1.9.3
- 2.0.0
script: bundle exec rspec --color --format progress
| Use progress formatter on Travis | Use progress formatter on Travis
| YAML | apache-2.0 | sempervictus/chef,kaznishi/chef,sanditiffin/chef,faspl/chef,jordane/chef,nathwill/chef,lamont-granquist/chef,kaznishi/chef,renanvicente/chef,grubernaut/chef,ducthanh/chef,mwrock/chef,tbunnyman/chef,karthikrev/chef,lamont-granquist/chef,tbriggs-curse/chef,faspl/chef,askl56/chef,antonifs/chef,nathwill/chef,gene1wood/chef... |
387963d3327978563e66216839b614329b787f6e | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
| Test Node.js 4 instead of io.js | Test Node.js 4 instead of io.js
See jadejs/jade#2083.
| YAML | mit | jadejs/jade-walk,pugjs/jade-walk |
d4e0ced41f5bfa14405f4d8f6c62a35d41324a21 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- "./requirements.sh"
- "pip install -e ."
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
script:
- "pip install unittest2"
- "assay --batch skyfield.t... | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- "./requirements.sh"
- "pip install -e ."
- "pip install https://github.com/brandon-rhodes/assay/archive/master.zip"
script:
- "pip install unittest2"
- "assay --batch skyfield.t... | Simplify "make" command for Travis CI | Simplify "make" command for Travis CI
| YAML | mit | ozialien/python-skyfield,GuidoBR/python-skyfield,ozialien/python-skyfield,skyfielders/python-skyfield,skyfielders/python-skyfield,GuidoBR/python-skyfield |
6ddfc35f25f0f9fa7897774205dd86801dde7eae | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "2.6"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: workshopvenues/manage.py test --settings=workshopvenues.settings_test venues
| language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# command to run tests, e.g. python setup.py test
script: workshopvenues/manage.py test --settings=workshopvenues.settings_test venues
| Remove Python 2.6 build from TravisCI configuration file. | Remove Python 2.6 build from TravisCI configuration file.
| YAML | bsd-3-clause | andreagrandi/workshopvenues |
e2433606d8bfd515b8a787958ea274a6d9b08926 | .travis.yml | .travis.yml | dist: bionic
language: python
jobs:
fast_finish: true
include:
- python: '3.6'
env: TOX_ENV=py36
- python: '3.8'
env: TOX_ENV=py38
# - python: pypy3.5-5.10.1
# env: TOX_ENV=pypy3
- python: nightly
env: TOX_ENV=py3
- python: '3.8'
env: TOX_ENV=doc
- python: '3.8... | dist: bionic
language: python
jobs:
fast_finish: true
include:
- python: '3.6'
env: TOX_ENV=py36
- python: '3.8'
env: TOX_ENV=py38
# - python: pypy3.5-5.10.1
# env: TOX_ENV=pypy3
- python: nightly
env: TOX_ENV=py3
- python: '3.8'
env: TOX_ENV=doc
- python: '3.8... | Add Python 3.9 support on Travis | Add Python 3.9 support on Travis
| YAML | mit | vstinner/pyperf |
c105ea2dfa802884d7effb5bc8230f49a5442e2f | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not ... | Add oraclejdk7 to Travis CI. | Add oraclejdk7 to Travis CI.
git-svn-id: 92d2f100b6cafdf88e1adb9671e85c40510aab88@1790596 13f79535-47bb-0310-9956-ffa450edef68
| YAML | apache-2.0 | apache/commons-jxpath,apache/commons-jxpath,apache/commons-jxpath |
b1ec55acd2773a68019cc2df6718de43cf771a35 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
| sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
| Use dynamic node versions on Travis CI | Test(config): Use dynamic node versions on Travis CI | YAML | unlicense | fvdm/nodejs-europeana |
36269bafd15f2ea02b85794cb4758bfe59629c56 | .travis.yml | .travis.yml | language: csharp
solution: src/GitTools.Core.sln
sudo: true
install:
- sudo nuget update -self
- nuget restore src/GitTools.Core.sln
- nuget install NUnit.Runners -Version 3.2.1 -OutputDirectory ./src/packages
script:
- xbuild ./src/GitTools.Core.sln /property:Configuration="Debug" /verbosity:detailed
... | language: csharp
solution: src/GitTools.Core.sln
sudo: true
install:
- sudo nuget update -self
- nuget restore src/GitTools.Core.sln
- nuget install NUnit.Runners -Version 3.2.1 -OutputDirectory ./src/packages
script:
- xbuild ./src/GitTools.Core.sln /property:Configuration="Debug" /verbosity:detailed
... | Fix path of the test DLL | Fix path of the test DLL
| YAML | mit | GitTools/GitTools.Core,JakeGinnivan/GitTools.Core |
0952e77a33b8910981e4ebf0750bb41bebb12fb2 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: java
jdk:
- openjdk8
- oraclejdk8
env: GRADLE_OPTS="-Xms1g -Xmx3g"
script: gradle build
before_deploy:
- rvm 1.9.3 do gem install mime-types -v 2.6.2
- for f in "./build/libs/ProjectNovacula-Anno*SNAPSHOT.jar"; do mv ${f} "./build/libs/ProjectNovacula-Anno-${TRAVIS_TAG}-${TR... | sudo: required
dist: trusty
language: java
jdk:
- openjdk8
- oraclejdk8
env: GRADLE_OPTS="-Xms1g -Xmx3g"
script: gradle build
notifications:
email: false
before_deploy:
- rvm 1.9.3 do gem install mime-types -v 2.6.2
- for f in "./build/libs/ProjectNovacula-Anno*SNAPSHOT.jar"; do mv ${f} "./build/libs/ProjectN... | STOP SENDING ME EMAILS DAMNIT | STOP SENDING ME EMAILS DAMNIT
| YAML | mit | FoxDenStudio/ProjectNovacula-Anno |
9e7093ec3106342ba98fd6da6f03e2b46f2ecafc | .travis.yml | .travis.yml | dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild -... | dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild -... | Use a current version of bower again | Use a current version of bower again
We need a newer version of bower so that it can find its repository.
| YAML | apache-2.0 | Collaborne/paper-more-button |
cd6e1c58950ce16eca88a034ce95865bd56b19fd | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=master
matrix:
exclude:
- python: "3.3"
env: DJANGO=master
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//[.]/}-$DJANGO
after_script:
- coveralls
| sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO=1.7
- DJANGO=1.8
- DJANGO=master
matrix:
exclude:
- python: "3.3"
env: DJANGO=master
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//[.]/}-$DJANGO
after_script:
- coveralls... | Switch to new Travis infrastructure | Switch to new Travis infrastructure
| YAML | mit | pinax/django-user-accounts,ntucker/django-user-accounts,mysociety/django-user-accounts,GeoNode/geonode-user-accounts,jpotterm/django-user-accounts,GeoNode/geonode-user-accounts,mysociety/django-user-accounts,ntucker/django-user-accounts,nderituedwin/django-user-accounts,jawed123/django-user-accounts,jpotterm/django-use... |
c5b5563a5baa5cd50865b555dbd4449ea9b687df | .travis.yml | .travis.yml | language: node_js
dist: trusty
# before_script:
# - npm list -g firebase-tools --depth=0 || npm install -g firebase-tools
script:
- npm install
- npm run build
# after_success:
# - "$TRAVIS_BUILD_DIR/.travis/deploy.sh develop"
cache:
directories:
- '$(npm config get prefix)/bin/firebase-tools'
- node_mo... | language: node_js
dist: trusty
before_script:
- npm list -g firebase-tools --depth=0 || npm install -g firebase-tools
script:
- npm install
- npm run build
after_success:
- "./deploy.sh"
cache:
directories:
- '$(npm config get prefix)/bin/firebase-tools'
- node_modules
notifications:
email: false
we... | Update (enable) after_success script in Travis | Update (enable) after_success script in Travis
| YAML | mit | move4mobile/move4mobile.github.io,move4mobile/move4mobile.github.io,move4mobile/move4mobile.github.io |
573962be295a0314f4407de134e4c1541515c07e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3
- 2.4
- 2.5
| language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
| Test against ruby versions 2.6 and 2.7 | Test against ruby versions 2.6 and 2.7
Ruby version 2.6 was introduced in alpine v3.11 and edge (latest) is using 2.7. | YAML | apache-2.0 | crayfishx/jacaranda |
191b4ea3a8440e7506a2148a1d7deec101c72e08 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
bundler_args: --without tools benchmarks
script:
- bundle exec rake spec
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby-9000
- ruby-head
- jruby-head
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head... | language: ruby
sudo: false
cache: bundler
bundler_args: --without tools benchmarks
script:
- bundle exec rake spec
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby-9000
- ruby-head
- jruby-head
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head... | Add token for Code Climate coverage reporting | Add token for Code Climate coverage reporting | YAML | mit | dry-rb/dry-view,hanami/view,hanami/view,dry-rb/dry-view,lotus/view |
bf5fabf7be2ce34d6e8088943949101b6007b341 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- oraclejdk8
after_success:
- .buildscript/deploy_snapshot.sh
env:
global:
- secure: "uVIUoNn5M4uM/jLq4A1AzPn87tAY3SnRsMfX8Qn0DhaBmqU57uA9NvwvDMYFk5hpeO+HY7XUN3eou4NTvD0KEKQYV94JZbQC40JxLAOLr1Twh3IaG54rfe90qmyHetFge62kaFLJ6H7EVcspA/E5Mreaz00MYyoqNnrun/tSKAw="
- secure... | language: java
dist: trusty
jdk:
- oraclejdk8
after_success:
- .buildscript/deploy_snapshot.sh
env:
global:
- secure: "uVIUoNn5M4uM/jLq4A1AzPn87tAY3SnRsMfX8Qn0DhaBmqU57uA9NvwvDMYFk5hpeO+HY7XUN3eou4NTvD0KEKQYV94JZbQC40JxLAOLr1Twh3IaG54rfe90qmyHetFge62kaFLJ6H7EVcspA/E5Mreaz00MYyoqNnrun/tSKAw="
- secure:... | Drop support for OpenJDK 7. | Drop support for OpenJDK 7.
| YAML | apache-2.0 | square/jna-gmp,square/jna-gmp |
4797ce45bcb22f2112db27e175c1cfad23ed07dc | .travis.yml | .travis.yml | language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- '10'
- '8'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
| language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- '10'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
| Remove support for node 8 | Remove support for node 8 | YAML | mit | longlho/ts-transform-react-intl |
70058c72a15a4382122e3cbaf4b2406667c75ec2 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- phpunit tests
- ./tests/lint.sh
git:
depth: 5
| language: php
php:
- 5.4
- 5.5
- 5.6
- system
- hhvm
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
before_install:
- >
if [[ "$TRAVIS_PHP_VERSION" == "system" ]]; then
pushd $HOME;
git clone https://github.com/php/php-src.git;
pushd php-src;
... | Add support for php7 (using the current master branch) | Add support for php7 (using the current master branch)
| YAML | apache-2.0 | duncan3dc/sonos,fdp2/sonos,fdp2/sonos |
7310ed1eb98f79ce0657b00cf0286e5cb5d7fa4d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- rbx-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-19mode
| Add ruby 2.1.0 to Travis CI build matrix | Add ruby 2.1.0 to Travis CI build matrix
This should show when the issues in #49 are fixed.
| YAML | mit | magicalbanana/pry-rescue,sethk/pry-rescue,ConradIrwin/pry-rescue |
903ac300e34e9de03eec4aafb6c44bd556ca9f68 | .travis.yml | .travis.yml | notifications:
email:
on_success: never
on_failure: never
language: php
php:
- 7.2
- 7.1
before_script:
- echo Start travis
- echo Current dir is `pwd`
- echo Home dir is `echo ~`
- wget https://scrutinizer-ci.com/ocular.phar
- cd ..
- git clone git://github.com/squizlabs/PHP_CodeSniffer.g... | notifications:
email:
on_success: never
on_failure: never
language: php
php:
- 7.2
- 7.1
before_script:
- echo Start travis
- wget https://scrutinizer-ci.com/ocular.phar
- make composer-install
- phpenv rehash
script:
- make test
after_script:
- php ocular.phar code-coverage:upload --f... | Use Makefile when building/testing on Travis | Use Makefile when building/testing on Travis
| YAML | mit | thulin82/innebandybokning,thulin82/innebandybokning |
77a350d4b2a7ad91cd04f8c2268ae28f77b2f298 | .travis.yml | .travis.yml | os:
- linux
- osx
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
before_script:
- npm install winston@2.3.0
- npm install https://github.com/ioBroker/ioBroker.js-controller/tarball/master --production
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
... | os:
- linux
- osx
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
before_script:
- npm install winston@2.3.0
- npm install https://github.com/ioBroker/ioBroker.js-controller/tarball/master --production
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
... | Revert "experiment to install build-essential instead of g++-4.8" | Revert "experiment to install build-essential instead of g++-4.8"
This reverts commit 26827b43bd7f14bba2f36ad204a2f8acd8d382d5.
| YAML | mit | Apollon77/ioBroker.nut,Apollon77/ioBroker.nut,Apollon77/ioBroker.nut |
9382fb669e5348288eff5f71c6fcb295f14fa718 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "3.4"
env:
- TOX_ENV=py26-django15
- TOX_ENV=py26-django16
- TOX_ENV=py27-django15
- TOX_ENV=py27-django16
- TOX_ENV=py27-django17
- TOX_ENV=py27-django18
- TOX_ENV=py27-django19
- TOX_ENV=py33-django15
- TOX_ENV=py33-django16
- TOX_ENV=p... | language: python
sudo: false
python:
- "3.5"
env:
- TOX_ENV=py26-django15
- TOX_ENV=py26-django16
- TOX_ENV=py27-django15
- TOX_ENV=py27-django16
- TOX_ENV=py27-django17
- TOX_ENV=py27-django18
- TOX_ENV=py27-django19
- TOX_ENV=py33-django15
- TOX_ENV=py33-django16
- TOX_ENV=p... | Use Python 3.5 as default Python | Use Python 3.5 as default Python
| YAML | mit | messense/djsubdomains |
42b5765f244de58d81b79413b313fd4e7777f21d | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
script: npm run travis-test
| language: node_js
node_js:
- 0.12
script: npm run travis-test
| Use Node 0.12 on Travis | Use Node 0.12 on Travis
| YAML | mit | davedoesdev/qlobber,davedoesdev/qlobber,davedoesdev/qlobber,davedoesdev/qlobber |
594d3c5ffbc712017df68af5b7f7f2142a7dff3f | .travis.yml | .travis.yml | language: php
php:
- 7.2
- 7.3
- 7.4
- 8.0snapshot
env:
- LARAVEL=^6.0
- LARAVEL=^7.0
- LARAVEL=^8.0
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-dist --no-progress
script:
- ./vendor/bin... | language: php
php:
- 7.2
- 7.3
- 7.4
- 8.0
env:
- LARAVEL=^6.0
- LARAVEL=^7.0
- LARAVEL=^8.0
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-dist --no-progress
script:
- ./vendor/bin/phpunit... | Update Travis CI to use PHP 8.0 instead of 8.0snapshot | Update Travis CI to use PHP 8.0 instead of 8.0snapshot | YAML | mit | generationtux/php-healthz,generationtux/php-healthz,generationtux/php-healthz |
5ed51ef23df3f605a3e43d1becaf744a5b545c0f | .travis.yml | .travis.yml | language: node_js
sudo: false
addons:
apt:
packages:
- xvfb
- gnome-keyring
- libgnome-keyring-dev
node_js:
- "0.11"
- "0.10"
- "iojs"
notifications:
email: false
script: xvfb-run ./script/cibuild
git:
depth: 10
branches:
only:
- master
| language: node_js
sudo: false
addons:
apt:
packages:
- xvfb
- gnome-keyring
- libgnome-keyring-dev
env:
- CC=clang CXX=clang++ npm_config_clang=1
node_js:
- "0.11"
- "0.10"
- "iojs"
notifications:
email: false
script: xvfb-run ./script/cibuild
git:
depth: 10
branches:
only:... | Use clang to compile modules | Use clang to compile modules
| YAML | mit | xeno-io/keytar,atom/node-keytar,havoc-io/keytar,atom/node-keytar,xeno-io/keytar,havoc-io/keytar,havoc-io/keytar,thesbros/node-keytar,atom/node-keytar,thesbros/node-keytar,atom/node-keytar,xeno-io/keytar,thesbros/node-keytar |
f4953e7c2243aa8d6464ddacc6f5e8b62f625f2f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "iojs"
before_script:
- "npm run grammar"
- "npm run gen-spec"
script: "npm run test && npm run test-spec"
after_script:
- "npm run report-coverage"
| language: node_js
node_js:
- "0.12"
- "iojs"
before_script:
- "node_modules/.bin/gulp default"
- "npm run grammar"
- "npm run gen-spec"
script: "npm run test && npm run test-spec"
after_script:
- "npm run report-coverage"
| Add building TypeScript sources to Travis | Add building TypeScript sources to Travis
| YAML | bsd-3-clause | dirk/hummingbird,dirk/hummingbird,dirk/hummingbird |
e5ebfb3084141ee982d0b0a006577a6b2381ce31 | .travis.yml | .travis.yml | language: ruby
cache: bundler
addons:
apt:
packages:
- redis-server
services:
- redis-server
before_install:
- sudo sed -e 's/^bind.*/bind 127.0.0.1/' /etc/redis/redis.conf > redis.conf
- sudo mv redis.conf /etc/redis
- sudo service redis-server start
- echo PING | nc localhost 6379
rvm:
- ... | language: ruby
cache: bundler
addons:
apt:
packages:
- redis-server
services:
- redis-server
before_install:
- sudo sed -e 's/^bind.*/bind 127.0.0.1/' /etc/redis/redis.conf > redis.conf
- sudo mv redis.conf /etc/redis
- sudo service redis-server start
- echo PING | nc localhost 6379
rvm:
- ... | Remove broken `redis --version` command from Travis build | Remove broken `redis --version` command from Travis build
This doesn't work in the Travis context.
| YAML | mit | brigade/mock_redis |
d87e26f08d5053d5dae90709f81fd356de09ac5c | .travis.yml | .travis.yml | language: java
matrix:
include:
- os: linux
sudo: required
jdk: oraclejdk8
- os: linux
sudo: required
jdk: openjdk8
- os: linux
sudo: required
jdk: oraclejdk9
script: ./gradlew :provider:check --info --stacktrace --console=plain --max-workers=1 --no-daemon -Dkotlin.co... | language: java
matrix:
include:
- os: linux
sudo: required
jdk: oraclejdk8
- os: linux
sudo: required
jdk: openjdk11
script: ./gradlew check --info --stacktrace --console=plain --max-workers=1 --no-daemon -Dkotlin.colors.enabled=false
before_cache:
- rm -f $HOME/.gradle/caches/mo... | Update Travis configuration to run samples tests | Update Travis configuration to run samples tests
Signed-off-by: Paul Merlin <a027184a55211cd23e3f3094f1fdc728df5e0500@gradle.com>
| YAML | apache-2.0 | gradle/gradle-script-kotlin,gradle/gradle-script-kotlin |
ac9504b42a90c694c1e4fe7a7cc7191bbf369d00 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs"
- "0.12"
- "0.10"
sudo: false
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script:
- "node_modules/.bin/testem ci -l firefox"
| language: node_js
node_js:
- "iojs"
- "0.12"
- "0.10"
sudo: false
env:
matrix:
- WEBPACK_VERSION=1.13.1 WEBPACK_DEV_SERVER_VERSION=1.7.0
- WEBPACK_VERSION=2.1.0-beta.7 WEBPACK_DEV_SERVER_VERSION=2.1.0-beta.0
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
before_script:
-... | Test on Webpack 1 and 2. | Test on Webpack 1 and 2.
| YAML | mit | walmartlabs/stylus-relative-loader,shama/stylus-loader,walmartlabs/stylus-relative-loader,shama/stylus-loader |
b7cd9b1482e6f8573c00301ec5114fc80b987ff8 | .travis.yml | .travis.yml | rvm:
- 2.0.0
- 2.1.0
- 2.2
script: bundle exec rspec --color --format progress
| language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1
- 2.2
script: bundle exec rspec --color --format progress
| Make Travis run on container-based infrastructure for faster builds. | Make Travis run on container-based infrastructure for faster builds.
| YAML | apache-2.0 | ClogenyTechnologies/knife-ec2,TheNeatCompany/knife-ec2,chef/knife-ec2,paperlesspost/knife-ec2,tas50/knife-ec2,cloudant/knife-ec2,chef/knife-ec2,MsysTechnologiesllc/knife-ec2,juliandunn/knife-ec2,4current/knife-ec2,MsysTechnologiesllc/knife-ec2,evertrue/knife-ec2 |
af69132839491f456e38edc6cf81eca8fe5a158d | .travis.yml | .travis.yml | language: go
go:
- 1.5
addons:
apt:
packages:
- nodejs
install:
- go get -u github.com/gopherjs/gopherjs
script:
- diff -u <(echo -n) <(gofmt -d ./)
- gopherjs test
| language: go
go:
- 1.7
addons:
apt:
packages:
- nodejs
install:
- go get -u github.com/gopherjs/gopherjs
script:
- diff -u <(echo -n) <(gofmt -d ./)
- gopherjs test
| Update to latest Go version | Update to latest Go version
| YAML | bsd-2-clause | gopherjs/jsbuiltin,gopherjs/jsbuiltin |
361611b7dc0b67d9c33d8ef08ae375132b277355 | .travis.yml | .travis.yml | language: android
android:
components:
# The SDK version used to compile your project
- android-22
| language: android
android:
components:
# The SDK version used to compile your project
- build-tools-23.0.2
- android-22
jdk:
- oraclejdk8
| Set build tools version to 23.0.2 | Set build tools version to 23.0.2
| YAML | apache-2.0 | jpedrofigueiredo/ShoppingList |
e52d1cd34a40f0cf2bfe12e35d3fd1cdaf387955 | .travis.yml | .travis.yml | language: python
# Enable Travis container-based infrastructure
sudo: false
cache:
pip: true
directories:
- test/data/nidmresults-examples
python:
- "3.4"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
# Install nidmresults from source in GitHub repo
- pip insta... | language: python
# Enable Travis container-based infrastructure
sudo: false
cache:
pip: true
directories:
- test/data/nidmresults-examples
python:
- "3.4"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt
- python setup.py install ... | Test against released nidmresults 1.0.0 | Test against released nidmresults 1.0.0
| YAML | mit | cmaumet/nidm-results_fsl,cmaumet/nidmresults-fsl,incf-nidash/nidmresults-fsl,incf-nidash/nidm-results_fsl |
2878f2cdaa899d2cf45895edf4dfcfa5c161c631 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby
- rbx
gemfile:
- Gemfile
- Gemfile.edge
matrix:
allow_failures:
- gemfile: Gemfile.edge
notifications:
email: false
campfire:
on_success: change
rooms:
- secure: "TP0fJ4aqXCRD7CaAgaYW7Pa22j4/uLChdBb59ob/sJvHtfi4Zx3I54xWApmp\nZl1KItFGCV8oQZh... | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0-preview2
- jruby
- rbx
gemfile:
- Gemfile
- Gemfile.edge
matrix:
allow_failures:
- gemfile: Gemfile.edge
notifications:
email: false
campfire:
on_success: change
rooms:
- secure: "TP0fJ4aqXCRD7CaAgaYW7Pa22j4/uLChdBb59ob/sJvHtfi4Zx3I54xWAp... | Test using Ruby 2.1 in Travis | Test using Ruby 2.1 in Travis
| YAML | mit | sideci-sample/sideci-sample-rails-api,joshbedo/rails-api,ikhakoo/rails-api,GHolmes04/rails-api,PatrickEifler/rails-api,bjenkins100/rails-api,ipmobiletech/rails-api,rails-api/rails-api,ryoconnell/rails-api,djom20/rails-api,cyberid41/rails-api,kyaukyuai/rails-api |
ee677296caef0547e4bfd8dc7fabf6af0eaa81c3 | .travis.yml | .travis.yml | env:
_JAVA_OPTIONS="-Xms1G -Xmx4G"
language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
script:
- mvn clean package
notifications:
irc: "chat.freenode.net#io7m"
| env:
_JAVA_OPTIONS="-Xms1G -Xmx4G"
language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
script:
- mvn clean verify
notifications:
irc: "chat.freenode.net#io7m"
| Use "clean verify" in Travis CI | Use "clean verify" in Travis CI
| YAML | isc | io7m/smf,io7m/smf |
37d2c0df1ed10da22ac8f2519ede33ebe1c3c95f | .travis.yml | .travis.yml | # https://docs.travis-ci.com/user/languages/java
language: java
jdk:
- oraclejdk8
| # https://docs.travis-ci.com/user/languages/java
language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Configure Travis for Gradle dependency caching. | Configure Travis for Gradle dependency caching.
| YAML | mit | commercetools/commercetools-payone-integration,commercetools/commercetools-payone-integration |
9f43f4137444fcc42894754e6d4e5c9f2827b8b0 | .travis.yml | .travis.yml | language: erlang
# Choose which platforms you want your builds run against (done in parallel)
env:
- ST=Pharo-2.0 SCREENSHOT=30
# For SqueakSSL
before_install:
- sudo apt-get -qq install libssl0.9.8:i386
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sudo apt-get update
# Boilerplate ... shou... | language: erlang
# Choose which platforms you want your builds run against (done in parallel)
env:
- ST=Pharo-2.0
# For SqueakSSL
before_install:
- sudo apt-get -qq install libssl0.9.8:i386
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sudo apt-get update
# Boilerplate ... should be no reaso... | Disable screenshots on master branch | Disable screenshots on master branch [ci skip] | YAML | mit | HPI-SWA-Teaching/Salsify,HPI-SWA-Teaching/Salsify,Killerameise/SWTI2014-Project-15 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.