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 |
|---|---|---|---|---|---|---|---|---|---|
7f19870e6d43de3ffd54694005f0903ca0e5719a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- rbx-19mode
- jruby-19mode
env:
- DB=mysql
- DB=postgres
gemfile:
- Gemfile
- ci/gemfiles/rspec2_14_rails4_0.gemfile
- ci/gemfiles/rspec2_14_rails3_2.gemfile
before_script:
- ci/script/create_db.sh
- bundle exec rake db:test:reset --trace
script: bundle exec rspec -b
| language: ruby
rvm:
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.0
- 1.9.3
- rbx-2
- jruby-19mode
env:
- DB=mysql
- DB=postgres
gemfile:
- Gemfile
- ci/gemfiles/rspec2_14_rails4_0.gemfile
- ci/gemfiles/rspec2_14_rails3_2.gemfile
before_script:
- ci/script/create_db.sh
- bundle exec rake db:test:reset --trace
script: bundle exec rspec -b
| Change rubinius to 2.y.z version in ci test group | Change rubinius to 2.y.z version in ci test group
| YAML | mit | yellow5/foreigner-matcher,yellow5/foreigner-matcher |
c072f9e8c4ad38485ed04e5738a66d5615574037 | .travis.yml | .travis.yml | sudo: false
dist: xenial
language: php
services:
- mysql
php:
- 7.4
- 7.3
- 7.2
- 7.1
env:
- LARAVEL_VERSION=7.* PHPUNIT_VERSION=~8.0
- LARAVEL_VERSION=6.* PHPUNIT_VERSION=~8.0
- LARAVEL_VERSION=5.8.* PHPUNIT_VERSION=~7.0
- LARAVEL_VERSION=5.7.* PHPUNIT_VERSION=~7.0
- LARAVEL_VERSION=5.6.* PHPUNIT_VERSION=~7.0
- LARAVEL_VERSION=5.5.* PHPUNIT_VERSION=~6.0
before_script:
- echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- composer require "laravel/framework:${LARAVEL_VERSION}" "phpunit/phpunit:${PHPUNIT_VERSION}"
- mysql -e "CREATE DATABASE laravel; GRANT ALL ON laravel.* TO 'aimeos'@'127.0.0.1' IDENTIFIED BY 'aimeos'"
script: vendor/bin/phpunit --coverage-clover coverage.xml
after_success:
- php vendor/bin/coveralls
matrix:
fast_finish: true
exclude:
- php: 7.1
env: LARAVEL_VERSION=6.* PHPUNIT_VERSION=~8.0
- php: 7.1
env: LARAVEL_VERSION=7.* PHPUNIT_VERSION=~8.0
- php: 7.4
env: LARAVEL_VERSION=5.5.* PHPUNIT_VERSION=~6.0
| sudo: false
dist: xenial
language: php
services:
- mysql
php:
- 7.4
- 7.3
- 7.2
env:
- LARAVEL_VERSION=7.* PHPUNIT_VERSION=~8.0
- LARAVEL_VERSION=6.* PHPUNIT_VERSION=~8.0
before_script:
- echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- composer require "laravel/framework:${LARAVEL_VERSION}" "phpunit/phpunit:${PHPUNIT_VERSION}"
- mysql -e "CREATE DATABASE laravel; GRANT ALL ON laravel.* TO 'aimeos'@'127.0.0.1' IDENTIFIED BY 'aimeos'"
script: vendor/bin/phpunit --coverage-clover coverage.xml
after_success:
- php vendor/bin/coveralls
matrix:
fast_finish: true
| Test only supported Laravel versions | Test only supported Laravel versions
| YAML | mit | aimeos/aimeos-laravel |
0917e6d8aae5a918017646f0951ea83c72f4e053 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls
| Build on Travis CI without `sudo`. | Build on Travis CI without `sudo`.
| YAML | mit | bigeasy/indexeddb,bigeasy/indexeddb |
fb523a29885e45ceee576ff79883f113d9d7c993 | .travis.yml | .travis.yml | language: minimal
git:
submodules: false
dist: xenial
install:
- wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
- chmod a+x Miniconda3-latest-Linux-x86_64.sh
- ./Miniconda3-latest-Linux-x86_64.sh -p ~/conda -b -f
- ~/conda/bin/conda init bash
- source ~/.bashrc
- conda env create --file environment.yml
- conda activate linux-on-litex-vexriscv
- conda info
- ./make.py --help
script:
- ./make.py --board="$BOARD"
env:
# TOOLCHAIN=vivado
- BOARD=Arty
- BOARD=NeTV2
- BOARD=Genesys2
- BOARD=KC705
- BOARD=KCU105
- BOARD=Nexys4DDR
- BOARD="Nexys Video"
# TOOLCHAIN=ise
- BOARD=miniSpartan6
- BOARD=Pipistrello
# TOOLCHAIN=nextpnr-ecp5
- BOARD="Versa ECP5"
- BOARD=ULX3S
- BOARD=OrangeCrab
- BOARD="CamLink 4K"
# TOOLCHAIN=quartus
- BOARD=De0Nano
- BOARD=De10Lite
# TOOLCHAIN=libero
- BOARD=Avalanche
| language: minimal
git:
submodules: false
dist: xenial
install:
- wget -c https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
- chmod a+x Miniconda3-latest-Linux-x86_64.sh
- ./Miniconda3-latest-Linux-x86_64.sh -p ~/conda -b -f
- ~/conda/bin/conda init bash
- source ~/.bashrc
- conda env create --file environment.yml
- conda activate linux-on-litex-vexriscv
- conda info
- ./make.py --help
script:
- ./make.py --board="$BOARD"
env:
# TOOLCHAIN=vivado
- BOARD=Arty
- BOARD=NeTV2
- BOARD=Genesys2
- BOARD=KC705
- BOARD=KCU105
- BOARD=Nexys4DDR
- BOARD="Nexys Video"
# TOOLCHAIN=ise
- BOARD=miniSpartan6
- BOARD=Pipistrello
# TOOLCHAIN=nextpnr-ecp5
- BOARD="Versa ECP5"
- BOARD=ULX3S
- BOARD=OrangeCrab
- BOARD="CamLink 4K"
# TOOLCHAIN=quartus
- BOARD=De0Nano
- BOARD=De10Lite
# TOOLCHAIN=libero
#- BOARD=Avalanche
| Disable the Avalanche board for now. | Disable the Avalanche board for now.
| YAML | bsd-2-clause | litex-hub/linux-on-litex-vexriscv,litex-hub/linux-on-litex-vexriscv |
6d82f2703aa43b21003b15c5ecbf2d021e1ee1ae | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "5"
- "4"
- "0.12"
- "0.10"
before_install: npm install -g grunt-cli
| language: node_js
node_js:
- "node"
- "5"
- "4"
before_install: npm install -g grunt-cli
| Stop testing on Node version lower than 4 | Stop testing on Node version lower than 4
| YAML | mit | firstandthird/load-grunt-config,firstandthird/load-grunt-config |
05c11f3513a57b4cb66a64ed65497c4307634ff5 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
before_script:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- npm install
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script: gulp karma
branches:
only:
- master
| language: node_js
node_js:
- "6"
before_script:
- if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
- npm install
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script: gulp karma
branches:
only:
- master
| Change Node version for Travis CI | Change Node version for Travis CI
Former-commit-id: 8a7597678afb7b5679b0c48ce3d0c47e5990d145 | YAML | mit | WhitestormJS/whs.js,WhitestormJS/whs.js |
fe1d1995effa4b95f47550571548ffe27b0bbfe4 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- jruby-9.0.4.0
env:
- DB=postgres
- DB=mysql
gemfile:
- gemfiles/Gemfile.rails-4.0.rb
- gemfiles/Gemfile.rails-4.1.rb
- gemfiles/Gemfile.rails-4.2.rb
- gemfiles/Gemfile.rails-5.0.rb
matrix:
allow_failures:
- rvm: jruby-19mode
gemfile: gemfiles/Gemfile.rails-4.2.rb
env: DB=postgres
sudo: false
before_script:
- bundle exec rake db:create db:up
script: 'COVERALLS=true bundle exec rake test'
| language: ruby
cache: bundler
rvm:
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
- jruby-9.0.4.0
env:
- DB=postgres
- DB=mysql
gemfile:
- gemfiles/Gemfile.rails-4.0.rb
- gemfiles/Gemfile.rails-4.1.rb
- gemfiles/Gemfile.rails-4.2.rb
- gemfiles/Gemfile.rails-5.0.rb
matrix:
allow_failures:
- rvm: jruby-19mode
gemfile: gemfiles/Gemfile.rails-4.2.rb
env: DB=postgres
exclude:
- rvm: 2.0.0
gemfile: gemfiles/Gemfile.rails-5.0.rb
- rvm: 2.1.0
gemfile: gemfiles/Gemfile.rails-5.0.rb
- rvm: 2.2.0
gemfile: gemfiles/Gemfile.rails-5.0.rb
sudo: false
before_script:
- bundle exec rake db:create db:up
script: 'COVERALLS=true bundle exec rake test'
| Exclude rails 5 gemfile for ruby < 2.2.2 | Exclude rails 5 gemfile for ruby < 2.2.2
* Rails 5 only supports ruby 2.2.2 and up. Don't use Gemfile.rails-5.0.rb with
older unsupported versions
| YAML | mit | norman/friendly_id |
e390aff461f9e699c799cecb2232713afd053a49 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
before_install:
- mkdir build
- wget -P build http://dl.google.com/closure-compiler/compiler-latest.zip
- unzip build/compiler-latest.zip -d build/
- rm build/compiler-latest.zip
- sudo apt-get update -qq
- sudo apt-get install -qq libncurses5-dev libssl-dev libnss3-dev libexpat-dev
- npm install -g grunt-cli
- npm install -g jasmine
- npm install -g istanbul
install:
- npm install
before_script:
- grunt build | language: node_js
node_js:
- '0.12'
before_install:
- mkdir build
- wget -P build http://dl.google.com/closure-compiler/compiler-latest.zip
- unzip build/compiler-latest.zip -d build/
- rm build/compiler-latest.zip
- sudo apt-get update -qq
- sudo apt-get install -qq libncurses5-dev libssl-dev libnss3-dev libexpat-dev
- npm install -g grunt-cli
- npm install -g jasmine
- npm install -g istanbul
install:
- npm install
before_script:
- grunt build
notifications:
slack:
secure: qQYajn4wj2pq7VSSyT6BCYWE4Dr1t0wSMXpokZW/c8yGNBvTHmIs0QB1D2VKxrvHmsSKHTwVY0RNNf/T9lCrDCQK+NP8IU4D+uCpLqyasAIuGXozxulF1WmBdHl1B8n7q0GL7K2KTgX0NX79+f8B5AlvQBS/3KmeKWefVBouRJc=
| Add Slack notifications for Travis | Add Slack notifications for Travis
| YAML | mit | peeracle/legacy |
ac650fe08880b7ac8357a02bdd50309ea1a85b50 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "pypy"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "3.2"
- "2.7"
before_install:
- wget https://releases.hashicorp.com/serf/0.7.0/serf_0.7.0_linux_amd64.zip
- unzip serf_0.7.0_linux_amd64.zip
- ./serf agent &
- sleep 1 ; ./serf tags -set foo=bar
install:
- pip install 'coverage<4.0.0' coveralls pep8
- python setup.py develop
script:
- coverage run --source=serfclient setup.py test
- coverage report -m
- pep8 --repeat --show-source serfclient tests
after_success:
- coveralls
notifications:
email: false
| sudo: false
language: python
python:
- "pypy"
- "3.7"
- "3.6"
- "2.7"
before_install:
- wget https://releases.hashicorp.com/serf/0.7.0/serf_0.7.0_linux_amd64.zip
- unzip serf_0.7.0_linux_amd64.zip
- ./serf agent &
- sleep 1 ; ./serf tags -set foo=bar
install:
- pip install 'coverage<4.0.0' coveralls pep8
- python setup.py develop
script:
- coverage run --source=serfclient setup.py test
- coverage report -m
- pep8 --repeat --show-source serfclient tests
after_success:
- coveralls
notifications:
email: false
| Build against Python 3.7, 3.6, and 2.7 | Build against Python 3.7, 3.6, and 2.7 | YAML | mit | KushalP/serfclient-py |
6569018de7658bddf1ea1afd7d65b79009df1485 | .travis.yml | .travis.yml | install:
- pip install pbs
- python provision.py --travis
cache: apt
language: python
python:
- "2.7"
# command to run tests
script:
- source /srv/zulip-venv/bin/activate && env PATH=$PATH:/srv/zulip-venv/bin ./tools/test-all
sudo: required
services:
- docker
addons:
postgresql: "9.3"
| install:
- pip install pbs
- python provision.py --travis
cache:
- apt: false
language: python
python:
- "2.7"
# command to run tests
script:
- source /srv/zulip-venv/bin/activate && env PATH=$PATH:/srv/zulip-venv/bin ./tools/test-all
sudo: required
services:
- docker
addons:
postgresql: "9.3"
| Disable apt caching in Travis CI configuration. | Disable apt caching in Travis CI configuration.
Apparently it isn't supposed to work reliably with the container-based
infrastructure that we're using and empirically it's causing build
failures.
Thanks to @mijime for tracking this down.
| YAML | apache-2.0 | joyhchen/zulip,jrowan/zulip,synicalsyntax/zulip,timabbott/zulip,KingxBanana/zulip,jackrzhang/zulip,andersk/zulip,Diptanshu8/zulip,Frouk/zulip,amanharitsh123/zulip,ashwinirudrappa/zulip,jainayush975/zulip,rishig/zulip,SmartPeople/zulip,zulip/zulip,grave-w-grave/zulip,zacps/zulip,KingxBanana/zulip,KingxBanana/zulip,ahmadassaf/zulip,hackerkid/zulip,dwrpayne/zulip,Vallher/zulip,Jianchun1/zulip,isht3/zulip,Galexrt/zulip,isht3/zulip,jainayush975/zulip,timabbott/zulip,susansls/zulip,ryansnowboarder/zulip,esander91/zulip,ashwinirudrappa/zulip,peiwei/zulip,hackerkid/zulip,christi3k/zulip,j831/zulip,Jianchun1/zulip,SmartPeople/zulip,dattatreya303/zulip,vakila/zulip,cosmicAsymmetry/zulip,vakila/zulip,peguin40/zulip,gkotian/zulip,SmartPeople/zulip,AZtheAsian/zulip,jackrzhang/zulip,christi3k/zulip,dhcrzf/zulip,rishig/zulip,alliejones/zulip,dattatreya303/zulip,synicalsyntax/zulip,Frouk/zulip,alliejones/zulip,Vallher/zulip,mohsenSy/zulip,verma-varsha/zulip,sonali0901/zulip,amyliu345/zulip,ryanbackman/zulip,rishig/zulip,arpith/zulip,peguin40/zulip,jrowan/zulip,krtkmj/zulip,verma-varsha/zulip,grave-w-grave/zulip,ryanbackman/zulip,punchagan/zulip,dawran6/zulip,Diptanshu8/zulip,reyha/zulip,amanharitsh123/zulip,amanharitsh123/zulip,verma-varsha/zulip,AZtheAsian/zulip,AZtheAsian/zulip,vikas-parashar/zulip,mahim97/zulip,krtkmj/zulip,ryansnowboarder/zulip,Jianchun1/zulip,Juanvulcano/zulip,atomic-labs/zulip,krtkmj/zulip,amyliu345/zulip,calvinleenyc/zulip,rishig/zulip,karamcnair/zulip,sharmaeklavya2/zulip,karamcnair/zulip,hackerkid/zulip,j831/zulip,dawran6/zulip,Vallher/zulip,andersk/zulip,atomic-labs/zulip,vikas-parashar/zulip,dhcrzf/zulip,ryansnowboarder/zulip,SmartPeople/zulip,cosmicAsymmetry/zulip,vaidap/zulip,rishig/zulip,Galexrt/zulip,ashwinirudrappa/zulip,PhilSk/zulip,kou/zulip,brainwane/zulip,Diptanshu8/zulip,amyliu345/zulip,mohsenSy/zulip,KingxBanana/zulip,TigorC/zulip,krtkmj/zulip,zacps/zulip,SmartPeople/zulip,mahim97/zulip,ryansnowboarder/zulip,ashwinirudrappa/zulip,jrowan/zulip,jphilipsen05/zulip,aakash-cr7/zulip,blaze225/zulip,atomic-labs/zulip,shubhamdhama/zulip,esander91/zulip,calvinleenyc/zulip,atomic-labs/zulip,vaidap/zulip,umkay/zulip,timabbott/zulip,souravbadami/zulip,mohsenSy/zulip,showell/zulip,souravbadami/zulip,AZtheAsian/zulip,Frouk/zulip,andersk/zulip,brockwhittaker/zulip,brockwhittaker/zulip,ryanbackman/zulip,aakash-cr7/zulip,jackrzhang/zulip,dawran6/zulip,hackerkid/zulip,karamcnair/zulip,dattatreya303/zulip,samatdav/zulip,vakila/zulip,umkay/zulip,sharmaeklavya2/zulip,Vallher/zulip,alliejones/zulip,shubhamdhama/zulip,ashwinirudrappa/zulip,andersk/zulip,zulip/zulip,calvinleenyc/zulip,vaidap/zulip,umkay/zulip,sonali0901/zulip,jphilipsen05/zulip,dhcrzf/zulip,grave-w-grave/zulip,tommyip/zulip,dhcrzf/zulip,vakila/zulip,j831/zulip,grave-w-grave/zulip,blaze225/zulip,TigorC/zulip,vabs22/zulip,karamcnair/zulip,joyhchen/zulip,hackerkid/zulip,samatdav/zulip,shubhamdhama/zulip,Vallher/zulip,verma-varsha/zulip,shubhamdhama/zulip,kou/zulip,sup95/zulip,PhilSk/zulip,brockwhittaker/zulip,joyhchen/zulip,dhcrzf/zulip,PhilSk/zulip,mahim97/zulip,cosmicAsymmetry/zulip,christi3k/zulip,ashwinirudrappa/zulip,synicalsyntax/zulip,joyhchen/zulip,JPJPJPOPOP/zulip,amanharitsh123/zulip,paxapy/zulip,alliejones/zulip,niftynei/zulip,jrowan/zulip,zacps/zulip,vikas-parashar/zulip,Diptanshu8/zulip,PhilSk/zulip,peguin40/zulip,susansls/zulip,PhilSk/zulip,samatdav/zulip,mohsenSy/zulip,amanharitsh123/zulip,karamcnair/zulip,dhcrzf/zulip,peiwei/zulip,jphilipsen05/zulip,vabs22/zulip,gkotian/zulip,Frouk/zulip,sup95/zulip,krtkmj/zulip,umkay/zulip,zacps/zulip,samatdav/zulip,jackrzhang/zulip,punchagan/zulip,blaze225/zulip,TigorC/zulip,peiwei/zulip,susansls/zulip,aakash-cr7/zulip,gkotian/zulip,JPJPJPOPOP/zulip,samatdav/zulip,tommyip/zulip,paxapy/zulip,tommyip/zulip,niftynei/zulip,tommyip/zulip,peguin40/zulip,Juanvulcano/zulip,Jianchun1/zulip,ahmadassaf/zulip,aakash-cr7/zulip,amanharitsh123/zulip,karamcnair/zulip,Diptanshu8/zulip,sup95/zulip,susansls/zulip,vaidap/zulip,showell/zulip,aakash-cr7/zulip,dhcrzf/zulip,samatdav/zulip,Juanvulcano/zulip,isht3/zulip,brockwhittaker/zulip,ahmadassaf/zulip,isht3/zulip,Vallher/zulip,zulip/zulip,jainayush975/zulip,atomic-labs/zulip,cosmicAsymmetry/zulip,andersk/zulip,vakila/zulip,j831/zulip,showell/zulip,sonali0901/zulip,amyliu345/zulip,gkotian/zulip,reyha/zulip,zulip/zulip,esander91/zulip,ahmadassaf/zulip,susansls/zulip,dattatreya303/zulip,sonali0901/zulip,peiwei/zulip,Juanvulcano/zulip,vabs22/zulip,arpith/zulip,sharmaeklavya2/zulip,blaze225/zulip,joyhchen/zulip,jainayush975/zulip,peiwei/zulip,eeshangarg/zulip,grave-w-grave/zulip,shubhamdhama/zulip,Frouk/zulip,AZtheAsian/zulip,synicalsyntax/zulip,vaidap/zulip,punchagan/zulip,dwrpayne/zulip,peguin40/zulip,jainayush975/zulip,calvinleenyc/zulip,mahim97/zulip,Jianchun1/zulip,dawran6/zulip,andersk/zulip,punchagan/zulip,synicalsyntax/zulip,paxapy/zulip,JPJPJPOPOP/zulip,sonali0901/zulip,krtkmj/zulip,ahmadassaf/zulip,ahmadassaf/zulip,mahim97/zulip,vaidap/zulip,ashwinirudrappa/zulip,sup95/zulip,dattatreya303/zulip,jphilipsen05/zulip,vabs22/zulip,Juanvulcano/zulip,reyha/zulip,KingxBanana/zulip,Frouk/zulip,gkotian/zulip,amyliu345/zulip,christi3k/zulip,vakila/zulip,sharmaeklavya2/zulip,brainwane/zulip,ryanbackman/zulip,rht/zulip,peiwei/zulip,Juanvulcano/zulip,tommyip/zulip,timabbott/zulip,rht/zulip,Galexrt/zulip,brainwane/zulip,dawran6/zulip,vakila/zulip,blaze225/zulip,JPJPJPOPOP/zulip,sharmaeklavya2/zulip,reyha/zulip,TigorC/zulip,sonali0901/zulip,esander91/zulip,jackrzhang/zulip,eeshangarg/zulip,Vallher/zulip,JPJPJPOPOP/zulip,timabbott/zulip,dwrpayne/zulip,paxapy/zulip,aakash-cr7/zulip,showell/zulip,verma-varsha/zulip,shubhamdhama/zulip,dwrpayne/zulip,souravbadami/zulip,niftynei/zulip,ryansnowboarder/zulip,dwrpayne/zulip,alliejones/zulip,PhilSk/zulip,paxapy/zulip,esander91/zulip,arpith/zulip,dwrpayne/zulip,atomic-labs/zulip,rht/zulip,jackrzhang/zulip,eeshangarg/zulip,christi3k/zulip,ryanbackman/zulip,arpith/zulip,KingxBanana/zulip,rishig/zulip,dwrpayne/zulip,esander91/zulip,jrowan/zulip,grave-w-grave/zulip,alliejones/zulip,vikas-parashar/zulip,dattatreya303/zulip,paxapy/zulip,andersk/zulip,Diptanshu8/zulip,souravbadami/zulip,kou/zulip,timabbott/zulip,vikas-parashar/zulip,rht/zulip,eeshangarg/zulip,ahmadassaf/zulip,niftynei/zulip,dawran6/zulip,calvinleenyc/zulip,synicalsyntax/zulip,niftynei/zulip,Galexrt/zulip,gkotian/zulip,reyha/zulip,krtkmj/zulip,Galexrt/zulip,shubhamdhama/zulip,ryanbackman/zulip,brainwane/zulip,timabbott/zulip,j831/zulip,punchagan/zulip,zulip/zulip,vikas-parashar/zulip,hackerkid/zulip,jackrzhang/zulip,peiwei/zulip,AZtheAsian/zulip,mahim97/zulip,rht/zulip,JPJPJPOPOP/zulip,amyliu345/zulip,isht3/zulip,umkay/zulip,umkay/zulip,souravbadami/zulip,zulip/zulip,ryansnowboarder/zulip,calvinleenyc/zulip,brainwane/zulip,umkay/zulip,hackerkid/zulip,alliejones/zulip,souravbadami/zulip,sharmaeklavya2/zulip,brainwane/zulip,cosmicAsymmetry/zulip,brockwhittaker/zulip,tommyip/zulip,atomic-labs/zulip,eeshangarg/zulip,blaze225/zulip,eeshangarg/zulip,showell/zulip,rht/zulip,kou/zulip,esander91/zulip,vabs22/zulip,zulip/zulip,eeshangarg/zulip,gkotian/zulip,christi3k/zulip,Jianchun1/zulip,karamcnair/zulip,zacps/zulip,verma-varsha/zulip,TigorC/zulip,joyhchen/zulip,isht3/zulip,brockwhittaker/zulip,Galexrt/zulip,kou/zulip,Galexrt/zulip,kou/zulip,rht/zulip,peguin40/zulip,niftynei/zulip,punchagan/zulip,showell/zulip,mohsenSy/zulip,sup95/zulip,jainayush975/zulip,synicalsyntax/zulip,kou/zulip,showell/zulip,jphilipsen05/zulip,zacps/zulip,rishig/zulip,arpith/zulip,SmartPeople/zulip,punchagan/zulip,cosmicAsymmetry/zulip,TigorC/zulip,sup95/zulip,jrowan/zulip,Frouk/zulip,mohsenSy/zulip,tommyip/zulip,j831/zulip,susansls/zulip,vabs22/zulip,ryansnowboarder/zulip,jphilipsen05/zulip,reyha/zulip,arpith/zulip,brainwane/zulip |
5d66c5d6fcfa40effe1c35de75ea197cb477aa6e | .travis.yml | .travis.yml | language: rust
notifications:
email:
on_success: never
| language: rust
rust:
- 1.0.0
- beta
- nightly
sudo: false
notifications:
email:
on_success: never
| Test on rust 1.0.0, nightly, and beta | Test on rust 1.0.0, nightly, and beta
| YAML | mit | conduit-rust/conduit-test,conduit-rust/conduit |
1b3268811b85fd483ef777e4942741346f033a6d | .travis.yml | .travis.yml | language: go
go:
- 1.13.x
cache:
directories:
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
env:
- GO111MODULE=on
script:
- go build ./...
- go test -race -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- 1.13.x
cache:
directories:
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
env:
- GO111MODULE=on
script:
- go build ./...
- go test -coverprofile=coverage.txt -covermode=atomic ./...
after_success:
- bash <(curl -s https://codecov.io/bash)
| Test without race detector until fixed | Test without race detector until fixed
| YAML | mit | hsanjuan/go-dcc |
a355af7538f2a188d0eeb00203ddc2acd44a4ec9 | .travis.yml | .travis.yml | language: rust
sudo: false
cache: cargo
rust:
- nightly
- 1.13.0
matrix:
include:
- os: osx
- os: osx
env: TARGET=x86_64-apple-ios RUST_BACKTRACE=1 RUST_TEST_THREADS=1
- os: linux
env:
- RUST_BACKTRACE=1 RUST_TEST_THREADS=1
before_script:
- if [ ! -z "$TARGET" ]; then rustup target add $TARGET; fi
script:
- if [ ! -z "$TARGET" ]; then
rustc --print target-list
cargo build --target=$TARGET;
else
cargo test;
fi
- rustdoc --test README.md -L target/debug/deps -L target/debug
| language: rust
sudo: false
cache: cargo
rust:
- nightly
- 1.13.0
matrix:
include:
- os: osx
- os: osx
env: TARGET=x86_64-apple-ios RUST_BACKTRACE=1 RUST_TEST_THREADS=1
- os: linux
env: TARGET=x86_64-apple-ios RUST_BACKTRACE=1 RUST_TEST_THREADS=1
env:
- RUST_BACKTRACE=1 RUST_TEST_THREADS=1
before_script:
- if [ ! -z "$TARGET" ]; then rustup target add $TARGET; fi
script:
- if [ ! -z "$TARGET" ]; then
cargo build --target=$TARGET;
else
cargo test;
fi
- rustdoc --test README.md -L target/debug/deps -L target/debug
| Remove excess target list check | Remove excess target list check
| YAML | apache-2.0 | sfackler/rust-native-tls |
36c875590a125c52eb824cd6268b9d7613a6ca5e | .travis.yml | .travis.yml | language: python
python: 3.5.0
dist: trusty
sudo: false
addons:
postgresql: "9.4"
services:
- postgresql
cache:
directories:
- ~/.cache/pip
install:
- pip install -U pip setuptools wheel codecov
- pip install -r requirements/docs.txt -r requirements/lint.txt -r requirements/main.txt -r requirements/tests.txt
script: bin/tests --dbfixtures-config tests/dbfixtures.travis.conf
matrix:
include:
- script: make lint BINDIR="$(dirname $(which python))"
- script: make docs BINDIR="$(dirname $(which python))"
after_success: codecov
notifications:
irc:
channels:
- "irc.freenode.org#pypa-dev"
use_notice: true
skip_join: true
| language: python
python: 3.5.0
dist: trusty
sudo: false
addons:
postgresql: "9.4"
services:
- postgresql
cache:
directories:
- ~/.cache/pip
install:
- pip install -U pip setuptools wheel codecov
- pip install -r requirements/docs.txt -r requirements/lint.txt -r requirements/main.txt -r requirements/tests.txt
- npm install bower gulp
- npm install
script:
- gulp dist
- bin/tests --dbfixtures-config tests/dbfixtures.travis.conf
matrix:
include:
- script: make lint BINDIR="$(dirname $(which python))"
- script: make docs BINDIR="$(dirname $(which python))"
after_success: codecov
notifications:
irc:
channels:
- "irc.freenode.org#pypa-dev"
use_notice: true
skip_join: true
| Build the dist files on Travis | Build the dist files on Travis
| YAML | apache-2.0 | karan/warehouse,karan/warehouse,ismail-s/warehouse,ismail-s/warehouse,dstufft/warehouse,dstufft/warehouse,alex/warehouse,dstufft/warehouse,wlonk/warehouse,alex/warehouse,dstufft/warehouse,ismail-s/warehouse,pypa/warehouse,pypa/warehouse,wlonk/warehouse,karan/warehouse,ismail-s/warehouse,alex/warehouse,ismail-s/warehouse,alex/warehouse,alex/warehouse,pypa/warehouse,karan/warehouse,pypa/warehouse,karan/warehouse,wlonk/warehouse |
91c662e8c19bbf4dfe1cf2b420b593df15c0abb5 | .travis.yml | .travis.yml | language: [ ruby, node_js ]
rvm: [ 2.1.1 ]
node_js: [ 0.10 ]
before_script:
- npm install bower -g
- bower install
install:
- bundle update
script: bundle exec rake travis
# set the branch that will be built and published to GitHub pages
branches:
only:
- demo
# create a GitHub Personal Access Token
# install the travis gem
# and run the command below (fill in your name, email, and token)
# $ travis encrypt 'GIT_NAME="Your Name" GIT_EMAIL=you@example.com GH_TOKEN=token'
# replace the value of secure with your generated value
env:
- secure: "FXc+1UAEo7jEwUcLuniQ/e4tHI5sUSEH+gjEPcb+XlD59a4M74CoHSqdyOTLlQZGgcI0KOg8UdH/zVJ2ulsDoPhqwSwT3zMH7z3kg9czex+/1uF2NIOUOGJSurfn1V0FCLt9D0EBkL1t8xtIdS3LVV8N5pdR9eXIW/RpM/AgNQg="
| language: [ ruby, node_js ]
rvm: [ 2.1.1 ]
node_js: [ 0.10 ]
before_script:
- npm install bower -g
- bower install
before_install:
- 'echo ''gem: --no-document'' > ~/.gemrc'
install:
- bundle update
script: bundle exec rake travis
# set the branch that will be built and published to GitHub pages
branches:
only:
- demo
# create a GitHub Personal Access Token
# install the travis gem
# and run the command below (fill in your name, email, and token)
# $ travis encrypt 'GIT_NAME="Your Name" GIT_EMAIL=you@example.com GH_TOKEN=token'
# replace the value of secure with your generated value
env:
- secure: "FXc+1UAEo7jEwUcLuniQ/e4tHI5sUSEH+gjEPcb+XlD59a4M74CoHSqdyOTLlQZGgcI0KOg8UdH/zVJ2ulsDoPhqwSwT3zMH7z3kg9czex+/1uF2NIOUOGJSurfn1V0FCLt9D0EBkL1t8xtIdS3LVV8N5pdR9eXIW/RpM/AgNQg="
| Set --no-document in .gemrc for Travis builds. | Set --no-document in .gemrc for Travis builds.
| YAML | mit | razor-x/jekyll-and-deck.js,razor-x/jekyll-and-deck.js,razor-x/jekyll-and-deck.js |
2c46bca54cc62b40c55c9c92d6a5163a6c2e0b85 | .travis.yml | .travis.yml | # Travis CI
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.6"
- "iojs"
sudo: false
git:
submodules: false
notifications:
email:
recipients:
- SuriyaaKudoIsc@users.noreply.github.com
on_success: change # default: change
on_failure: always # default: always
before_script:
- npm install
install:
- gem install travis-lint
# Install Jekyll and dependencies
## - bundle install
script:
# - jekyll build
| # Travis CI
language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs"
sudo: false
git:
submodules: false
notifications:
email:
recipients:
- SuriyaaKudoIsc@users.noreply.github.com
on_success: change # default: change
on_failure: always # default: always
before_script:
- npm install
install:
- gem install travis-lint
# Install Jekyll and dependencies
## - bundle install
script:
# - jekyll build
| Drop support for Node.js 0.6 | Drop support for Node.js 0.6 | YAML | apache-2.0 | SuriyaaKudoIsc/animate-a-name,SuriyaaKudoIsc/animate-a-name,SuriyaaKudoIsc/animate-a-name |
59a10544a3e6b3a9cadc4f5d0024004b7b55f26c | .travis.yml | .travis.yml | language: php
sudo: false
dist: trusty
git:
depth: 5
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
env:
- DEPS=latest
- DEPS=lowest
jobs:
include:
- dist: precise
php: 5.3
fast_finish: true
allow_failures:
- php: nightly
before_script:
- composer self-update
- composer update --prefer-$DEPS
script:
- vendor/bin/composer test
| language: php
dist: trusty
git:
depth: 5
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
env:
- DEPS=--prefer-lowest
- DEPS=
jobs:
include:
- dist: precise
php: 5.3
env: DEPS=
- dist: precise
php: 5.3
env: DEPS=--prefer-lowest
fast_finish: true
allow_failures:
- php: nightly
before_script:
- composer self-update
- composer update $DEPS
script:
- vendor/bin/composer test
| Fix deps in build matrix | Fix deps in build matrix
| YAML | mit | composer/installers |
78859ad2f9335e3cabe0b6f074f3ee35c3041885 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: node_js
env:
global:
- TEST_INTEGRATION_KONG_HOST="127.0.0.1:8001"
- KONG_VERSION=latest
matrix:
- EXPERIMENTAL_USE_LOCAL_STATE=0
- EXPERIMENTAL_USE_LOCAL_STATE=1
node_js:
- stable
- "8"
- "6"
before_install:
- docker run -d --name kong-database -e "POSTGRES_USER=kong" -e "POSTGRES_DB=kong" postgres:9.4
- sleep 5
- docker run --rm --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" kong:$KONG_VERSION kong migrations up
- docker run -d --name kong --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" -e "KONG_ADMIN_LISTEN=0.0.0.0:8001" -p 127.0.0.1:8001:8001 -p 127.0.0.1:8000:8000 kong:$KONG_VERSION
- sleep 5
| sudo: required
services:
- docker
language: node_js
env:
global:
- TEST_INTEGRATION_KONG_HOST="127.0.0.1:8001"
- KONG_VERSION=0.12
matrix:
- EXPERIMENTAL_USE_LOCAL_STATE=0
- EXPERIMENTAL_USE_LOCAL_STATE=1
node_js:
- stable
- "8"
- "6"
before_install:
- docker run -d --name kong-database -e "POSTGRES_USER=kong" -e "POSTGRES_DB=kong" postgres:9.4
- sleep 5
- docker run --rm --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" kong:$KONG_VERSION kong migrations up
- docker run -d --name kong --link kong-database:kong-database -e "KONG_DATABASE=postgres" -e "KONG_PG_HOST=kong-database" -e "KONG_ADMIN_LISTEN=0.0.0.0:8001" -p 127.0.0.1:8001:8001 -p 127.0.0.1:8000:8000 kong:$KONG_VERSION
- sleep 5
| Change kong target to current stable | Change kong target to current stable
| YAML | mit | mybuilder/kongfig |
516649ade0ab64544ded46630f4bb01d34fb6a58 | .travis.yml | .travis.yml | dist: xenial
language: go
go:
- "1.12.x"
matrix:
fast_finish: true
allow_failures:
- go: tip
install:
- make tools
script:
- make lint
- go test -timeout=30s -parallel=4 -v ./...
branches:
only:
- master
| dist: xenial
language: go
go:
- "1.13.x"
matrix:
fast_finish: true
allow_failures:
- go: tip
install:
- make tools
script:
- make lint
- go test -timeout=30s -parallel=4 -v ./...
branches:
only:
- master
| Update CI config to use Go 1.13.x | Update CI config to use Go 1.13.x
| YAML | mpl-2.0 | hashicorp/aws-sdk-go-base |
58b7949901ecab76da39b8e970dea6e6912dcdae | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '8'
- '10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install --no-save --no-package-lock
- npm install -g istanbul coveralls node-gyp
| sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install --no-save --no-package-lock
- npm install -g istanbul coveralls node-gyp
| Drop support for Node.js 8 early. | Drop support for Node.js 8 early.
| YAML | mit | bigeasy/hash,bigeasy/hash,bigeasy/hash,bigeasy/hash |
ae39ad0e206cf251f7ed4039b11202e298b79013 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.3
# comment out pypy until travis updates to pypy 2.0/2.1, cffi doesn't work
# on PyPy 1.9
# - pypy
env:
- REACTOR=select
- REACTOR=epoll
install:
- sudo apt-get install libzmq3-dev
- pip install -r requirements.txt --use-mirrors
script:
- coverage run $VIRTUAL_ENV/bin/trial --reactor=$REACTOR txzmq
- pep8 --repeat txzmq
- pyflakes txzmq
after_success:
- coveralls
notifications:
email:
- me@smira.ru
| language: python
python:
- 2.6
- 2.7
- 3.3
# comment out pypy until travis updates to pypy 2.0/2.1, cffi doesn't work
# on PyPy 1.9
# - pypy
env:
- REACTOR=select
- REACTOR=epoll
install:
- sudo apt-get install libzmq3-dev
- pip install -r requirements.txt --use-mirrors
script:
- coverage run $VIRTUAL_ENV/bin/trial --reactor=$REACTOR txzmq
- pep8 --repeat txzmq
- pyflakes txzmq
after_success:
- coveralls
notifications:
email:
- me@smira.ru
matrix:
allow_failures:
- python: 3.3
| Make python 3.3 allowed to fail. | Make python 3.3 allowed to fail.
| YAML | mpl-2.0 | smira/txZMQ |
ca4797297af2c7102479b48fd2b02770c3c2ad73 | .travis.yml | .travis.yml | language: node_js
# test on two node.js versions: 0.6 and 0.8
node_js:
- 0.6
- 0.8
| language: node_js
# test on two node.js versions: 0.6 and 0.8
node_js:
- 0.6
- 0.8
- 0.10
| Add Node.js 0.10 to Travis-CI | Add Node.js 0.10 to Travis-CI | YAML | bsd-3-clause | vpetrov/survana-study |
f17baf13f646f618939e93914e4bd124de729297 | .travis.yml | .travis.yml | language: csharp
matrix:
fast_finish: true
allow_failures:
- os: osx
include:
- os: linux
dotnet: 2.0.0
mono: none
- os: osx
dotnet: 2.0.0
mono: none
branches:
only:
- master
script:
- dotnet test -c Release -f netcoreapp2.0 test/Castle.Core.AsyncInterceptor.Tests/Castle.Core.AsyncInterceptor.Tests.csproj
| language: csharp
matrix:
fast_finish: true
allow_failures:
- os: osx
include:
- os: linux
dotnet: 2.1
mono: none
- os: osx
dotnet: 2.1.506
mono: none
branches:
only:
- master
script:
- ./coverage.sh netcoreapp2.1 Release
| Use a common code coverage build script | :construction_worker: Use a common code coverage build script
| YAML | apache-2.0 | JSkimming/Castle.Core.AsyncInterceptor,JSkimming/Castle.Core.AsyncInterceptor |
ceda430172967e5edf64434fd6831acf577ce7f9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# - "3.7" # see https://github.com/travis-ci/travis-ci/issues/9815
- "nightly"
- "pypy"
- "pypy3"
install:
- pip install pytest pytest-cov codecov
script:
- pytest --cov=sqlparse
after_success:
- codecov
notifications:
email: false
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# - "3.7" # see https://github.com/travis-ci/travis-ci/issues/9815
- "nightly"
- "pypy"
- "pypy3"
install:
- pip install pytest pytest-cov codecov
script:
- pytest --cov=sqlparse
after_success:
- codecov
| Enable mail notifications on Travis. | Enable mail notifications on Travis.
| YAML | bsd-3-clause | andialbrecht/sqlparse |
a2aa057032b871f6e1e1d677dad37146342ea582 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "5"
- "4"
after_success:
- 'npm run coveralls'
script:
npm run ci
| language: node_js
node_js:
- "6"
- "5"
- "4"
script:
npm run ci
after_success:
npm run coveralls
cache:
directories:
- node_modules
| Use cache of node_modules for Travis build | Use cache of node_modules for Travis build
| YAML | mit | BlackDice/b3-chief |
af27fd2bd536f6b776e777f31c1b548b22dfac01 | .travis.yml | .travis.yml | language: objective-c
before_install:
- gem install xcpretty
- gem install cocoapods
- pod install
script: xcodebuild -workspace pop.xcworkspace -scheme pop -sdk iphonesimulator7.0 test | xcpretty -c
| language: objective-c
before_install:
- brew update
- brew upgrade xctool
- gem update cocoapods
xcode_workspace: pop.xcworkspace
xcode_scheme: pop
xcode_sdk:
- iphonesimulator7.0
- iphonesimulator7.1
| Use Travis CI's default xctool support | Use Travis CI's default xctool support
Details @ http://docs.travis-ci.com/user/languages/objective-c/.
| YAML | bsd-3-clause | qiuqiyuan/pop,cstars135/pop,ycaihua/pop,jflinter/pop,jflinter/pop,youprofit/pop,mtxs007/pop,CoderJFCK/pop,seem-sky/pop,telly/pop,DevSonw/pop,mumer92/pop,imjerrybao/pop,niuxinghua/pop,Vanejay/pop,j364960953/pop,BNakum/pop,h136799711/pop,eeschimosu/pop,zhukaixy/pop,yuyangit/pop,dawangjiaowolaixunshan/pop,mumer92/pop,misterwindupbird/pop,robert1202/pop,DevSonw/pop,mtxs007/pop,lookingstars/pop,jackywpy/pop,cogddo/pop,LeaderQiu/pop,devedbox/pop,dachaoisme/pop,j364960953/pop,adamdahan/pop,seem-sky/pop,RoyZeng/pop,sunweiliang/pop,liduanw/pop,ajiao-github/pop-facebook,sujeking/pop,eeschimosu/pop,vamsirajendra/pop,mybdgw/pop,lijie121210/pop,BNakum/pop,yunhappy/pop,AlanJN/pop,seem-sky/pop,alirezasamar/pop,pawlowskialex/pop,zxq3220122/pop,MaheshRS/pop,ajiao-github/pop-facebook,adamdahan/pop,voidException/pop,BYWallace/pop,CoderJFCK/pop,ekingo/pop,jmade/pop,ajiao-github/pop-facebook,cogddo/pop,XzhengBo/pop,xingyuniu/pop,MaheshRS/pop,HarrisLee/pop,vamsirajendra/pop,shuxiashusheng/pop,dvan001/pop,zhukaixy/pop,Khan/pop,moneyfish/pop,yaoxiaoyong/pop,TomBin647/POP,moneyfish/pop,alireza42/pop,KBvsMJ/pop,wintersweet/pop,SummerHF/pop,SummerHF/pop,monkeydbobo/pop,Walxyy/pop,XzhengBo/pop,linlin5910/pop,liruqi/pop,aryansbtloe/pop,robert1202/pop,jackywpy/pop,qinyuhang/pop,wintersweet/pop,kaylio/pop,Vanejay/pop,devedbox/pop,xuanyi0627/pop,h136799711/pop,CoderJFCK/pop,ekingo/pop,misterwindupbird/pop,AzenXu/pop,mybdgw/pop,sujeking/pop,gauravds/pop,SouthSnow/pop,12207480/pop,leonardlee2015/pop,leonardlee2015/pop,ChetanGandhi/pop,ekingo/pop,hoaquo/pop,yuyangit/pop,pengleelove/pop,shuxiashusheng/pop,niuxinghua/pop,SouthSnow/pop,pawlowskialex/pop,NinePointEight/pop,shuxiashusheng/pop,yaoxiaoyong/pop,sekouperry/pop,XzhengBo/pop,AzenXu/pop,monkeydbobo/pop,chromatic-seashell/pop,cuppi/pop,cuppi/pop,alireza42/pop,MaheshRS/pop,leonardlee2015/pop,kaylio/pop,moqyuan/pop,monkeydbobo/pop,adamdahan/pop,xuanyi0627/pop,qiuqiyuan/pop,chromatic-seashell/pop,tianxiao12345/pop,linlin5910/pop,youprofit/pop,pengleelove/pop,xingyuniu/pop,k214k/pop,lookingstars/pop,hwsyy/pop,sunweiliang/pop,dawangjiaowolaixunshan/pop,Ray0218/pop,aryansbtloe/pop,devedbox/pop,zhukaixy/pop,yuyangit/pop,liruqi/pop,yimouleng/pop,LeaderQiu/pop,tianxiao12345/pop,cstars135/pop,pengleelove/pop,DevSonw/pop,vamsirajendra/pop,jcbertin/pop,12207480/pop,dawangjiaowolaixunshan/pop,alirezasamar/pop,jackywpy/pop,linlin5910/pop,Walxyy/pop,dvan001/pop,sekouperry/pop,KBvsMJ/pop,AlexanderMazaletskiy/pop,davidwu226/pop,davidwu226/pop,alireza42/pop,mumer92/pop,moqyuan/pop,GotEmB/pop,liduanw/pop,lookingstars/pop,qinyuhang/pop,voidException/pop,lijie121210/pop,ycaihua/pop,ycaihua/pop,AzenXu/pop,Walxyy/pop,cogddo/pop,yimouleng/pop,imjerrybao/pop,12207480/pop,hwsyy/pop,BYWallace/pop,gauravds/pop,hoaquo/pop,cstars135/pop,liduanw/pop,zxq3220122/pop,liruqi/pop,hwsyy/pop,telly/pop,SummerHF/pop,gauravds/pop,HarrisLee/pop,sujeking/pop,TomBin647/POP,yunhappy/pop,k214k/pop,niuxinghua/pop,eeschimosu/pop,HarrisLee/pop,kaylio/pop,BYWallace/pop,Khan/pop,LeaderQiu/pop,KBvsMJ/pop,moqyuan/pop,AlanJN/pop,yaoxiaoyong/pop,zxq3220122/pop,misterwindupbird/pop,GotEmB/pop,Ray0218/pop,Ray0218/pop,TomBin647/POP,jmade/pop,qiuqiyuan/pop,xuanyi0627/pop,AlexanderMazaletskiy/pop,dachaoisme/pop,pawlowskialex/pop,wintersweet/pop,jcbertin/pop,RoyZeng/pop,voidException/pop,youprofit/pop,NinePointEight/pop,SouthSnow/pop,Khan/pop,sunweiliang/pop,yimouleng/pop,ChetanGandhi/pop,alirezasamar/pop,robert1202/pop,aryansbtloe/pop,sekouperry/pop,j364960953/pop |
cd2128e9e102ae1bad2c7aa354b00ddf76228c37 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
script:
- bundle exec rake test
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec rake test
| Test in Travis with the latest bugfix versions of ruby | Test in Travis with the latest bugfix versions of ruby | YAML | apache-2.0 | inviqa/chef-serverdensity-inviqa,inviqa/chef-serverdensity-inviqa |
502e3d46adcf98a2799896e376d976b7d24d1ad2 | .travis.yml | .travis.yml | # Travis CI configuration for remote testing.
# See:
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/languages/python
# http://lint.travis-ci.org
language: python
python:
- "pypy"
- "pypy3"
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- python: "pypy"
- python: "pypy3"
- python: "nightly"
sudo: false
install:
- pip install 'setuptools>=17.1'
- pip install 'mock>=2.0'
- if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip install unittest2; fi
# Expecting Coverage to fail for pypy3 until Travis supports PyPy3 5.5+ (as of May 2017)
- pip install coverage
script:
- coverage run --source=see.py setup.py test
after_success:
- pip install coveralls
- coveralls
after_script:
- coverage report
- pip install pep8 pyflakes
- pyflakes *.py | tee >(wc -l)
- pep8 --statistics --count *.py
| # Travis CI configuration for remote testing.
# See:
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/languages/python
# http://lint.travis-ci.org
language: python
python:
- "pypy"
- "pypy3"
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- python: "pypy"
- python: "pypy3"
- python: "nightly"
sudo: false
install:
- pip install 'setuptools>=17.1'
- pip install 'mock>=2.0'
- if [ "$TRAVIS_PYTHON_VERSION" == "2.6" ]; then pip install unittest2; fi
# Expecting Coverage to fail for pypy3 until Travis supports PyPy3 5.5+ (as of May 2017)
- pip install coverage
script:
- coverage run --source=see setup.py test
after_success:
- pip install coveralls
- coveralls
after_script:
- coverage report
- pip install pep8 pyflakes
- pyflakes *.py | tee >(wc -l)
- pep8 --statistics --count *.py
| Fix coverage command; remove 3.6-dev | Travis: Fix coverage command; remove 3.6-dev
| YAML | bsd-3-clause | araile/see |
b7639194638f00cd8923674021bb38cdb10734fe | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
#before_script:
# - echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
# - emulator -avd test -no-skin -no-audio -no-window &
# - android-wait-for-emulator
# - adb shell input keyevent 82 &
android:
components:
- tools
- platform-tools
- build-tools-23.0.3
- android-23
- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services
# Emulator - Use older android emulator to make Spoon use internal storage
# - sys-img-armeabi-v7a-android-19
notifications:
email: false | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-24.0.0
- android-24
- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services
notifications:
email: false | Update Travis configuration for Android Nougat | Update Travis configuration for Android Nougat
| YAML | apache-2.0 | jraska/github-client |
8365d7c429a349c8031b86020dd3b7b6b0a06e27 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- rbx
branches:
only:
- master
- guard_dependencies
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard"
| rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- rbx
branches:
only:
- master
- guard_dependencies
env:
- GUARD_SPEC_SLEEP=2
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard"
| Set a generous spec sleep time on Travis. | Set a generous spec sleep time on Travis. | YAML | mit | baberthal/guard,guard/guard,yujinakayama/guard,garettarrowood/guard,sdgdsffdsfff/guard,pjump/guard,ginkel/guard,sideci-sample/sideci-sample-guard,100star/guard |
2566e9706a6e1033f899ab720e5e759885b9ead1 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- rbx-19mode
- 1.8.7
- ree
| language: ruby
rvm:
- 1.9.3
- rbx-19mode
- 1.8.7
- ree
before_install:
- sudo apt-get install -y libicu-dev
| Add build step on Travis | Add build step on Travis
| YAML | agpl-3.0 | Gitorious-backup/dolt,rae/gitorious-dolt |
86b0c855660e1ed446763e30d79212f53476f64f | .travis.yml | .travis.yml | dist: bionic
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main'
key_url: 'https://dl.google.com/linux/linux_signing_key.pub'
packages:
- google-chrome-stable
services:
- xvfb
language: python
python:
- '3.7.9'
before_install:
- wget "https://chromedriver.storage.googleapis.com/$(curl https://chromedriver.storage.googleapis.com/LATEST_RELEASE)/chromedriver_linux64.zip"
- unzip chromedriver_linux64.zip
- sudo mv chromedriver /usr/local/bin
- sudo chmod a+x /usr/local/bin/chromedriver
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=flash setup.py test
- docker build . -t textbook/flash
after_success: coveralls
deploy:
- provider: cloudfoundry
edge: true
api: https://api.run.pivotal.io
username: $CF_USERNAME
password: $CF_PASSWORD
organization: $CF_ORGANIZATION
space: $CF_SPACE
manifest: manifest.yml
| dist: bionic
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main'
key_url: 'https://dl.google.com/linux/linux_signing_key.pub'
packages:
- google-chrome-stable
services:
- xvfb
language: python
python:
- '3.7.9'
before_install:
- wget "https://chromedriver.storage.googleapis.com/$(curl https://chromedriver.storage.googleapis.com/LATEST_RELEASE)/chromedriver_linux64.zip"
- unzip chromedriver_linux64.zip
- sudo mv chromedriver /usr/local/bin
- sudo chmod a+x /usr/local/bin/chromedriver
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=flash setup.py test
- docker build . -t textbook/flash
after_success: coveralls
deploy:
- provider: cloudfoundry
edge: true
api: https://api.run.pcfone.io
username: $CF_USERNAME
password: $CF_PASSWORD
organization: pivot-jsharpe
space: flash
manifest: manifest.yml
| Migrate from PWS to PCFOne | Migrate from PWS to PCFOne
Pivotal Web Services is only available until 2021/01/15 per:
https://blog.run.pivotal.io/pivotal-web-services-end-of-availability-announcement-and-timeline/
| YAML | isc | textbook/flash,textbook/flash,textbook/flash |
4a611dad2eeb4c353bb772e45fd30d2440cc4cb4 | .travis.yml | .travis.yml | before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libmagic-dev curl wget
language: ruby
bundler_args: --without development
script: "bundle exec rake spec:ci"
env:
global:
- "JRUBY_OPTS=-Xcext.enabled=true"
rvm:
- 2.2.2
- 2.1.6
- 2.0.0
- 1.9.3
- rbx
gemfile:
- Gemfile
notifications:
recipients:
- xeron.oskom@gmail.com
matrix:
fast_finish: true
allow_failures:
- rvm: rbx
| before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libmagic-dev curl wget
language: ruby
bundler_args: --without development
script: "bundle exec rake spec:ci"
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
- 2.0.0
- 1.9.3
- rbx
gemfile:
- Gemfile
notifications:
recipients:
- xeron.oskom@gmail.com
matrix:
fast_finish: true
allow_failures:
- rvm: rbx
| Add ruby 2.3.0, bump others. | Add ruby 2.3.0, bump others.
| YAML | mit | xeron/danbooru-ruby-grabber |
c1f6f2c9e7e25a684b61d5c5bfc6d918b2e81cf2 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
# Source: <https://docs.travis-ci.com/user/languages/ruby/#bundler-20>
before_install:
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
install: "bundle install --jobs=3 --retry=3"
env:
- DATABASE_ADAPTER=sqlite3
- DATABASE_ADAPTER=postgresql
rvm:
- 2.6.0
- 2.5.1
- 2.4.4
- 2.3.7
gemfile:
- gemfiles/rails_4_2.gemfile
- gemfiles/rails_5_0.gemfile
- gemfiles/rails_5_1.gemfile
- gemfiles/rails_5_2.gemfile
matrix:
exclude:
- rvm: 2.6.0
gemfile: gemfiles/rails_4_2.gemfile
| language: ruby
sudo: false
cache: bundler
script: "bundle exec rake"
# Source: <https://docs.travis-ci.com/user/languages/ruby/#bundler-20>
before_install:
- gem update --system '2.7.8' --no-document
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2' --no-document
install: "bundle install --jobs=3 --retry=3"
env:
- DATABASE_ADAPTER=sqlite3
- DATABASE_ADAPTER=postgresql
rvm:
- 2.6.0
- 2.5.1
- 2.4.4
- 2.3.7
gemfile:
- gemfiles/rails_4_2.gemfile
- gemfiles/rails_5_0.gemfile
- gemfiles/rails_5_1.gemfile
- gemfiles/rails_5_2.gemfile
matrix:
exclude:
- rvm: 2.6.0
gemfile: gemfiles/rails_4_2.gemfile
| Update Travis to install the correct version of RubyGems | Update Travis to install the correct version of RubyGems
| YAML | mit | reacuna/shoulda-matchers,biow0lf/shoulda-matchers,guialbuk/shoulda-matchers,biow0lf/shoulda-matchers,guialbuk/shoulda-matchers,biow0lf/shoulda-matchers,guialbuk/shoulda-matchers,thoughtbot/shoulda-matchers,reacuna/shoulda-matchers,thoughtbot/shoulda-matchers,thoughtbot/shoulda-matchers,reacuna/shoulda-matchers,guialbuk/shoulda-matchers,reacuna/shoulda-matchers,thoughtbot/shoulda-matchers,biow0lf/shoulda-matchers |
0842090c78d9719ccfda41914daed19ef81df515 | .travis.yml | .travis.yml | language: c
compiler: gcc
script: cd test && ./testing.sh --travis --lua 5.2.3 && ./testing.sh --travis --lua 5.1.5
| language: c
compiler: gcc
env:
matrix:
- LUA_VER=5.1.5
- LUA_VER=5.2.3
script: cd test && ./testing.sh --travis --lua $LUA_VER
| Use a test matrix in Travis | Use a test matrix in Travis
| YAML | mit | coderstudy/luarocks,xpol/luarocks,keplerproject/luarocks,usstwxy/luarocks,aryajur/luarocks,luarocks/luarocks,xiaq/luarocks,xpol/luainstaller,luarocks/luarocks,coderstudy/luarocks,robooo/luarocks,xpol/luarocks,leafo/luarocks,aryajur/luarocks,robooo/luarocks,tarantool/luarocks,leafo/luarocks,usstwxy/luarocks,xpol/luavm,lxbgit/luarocks,robooo/luarocks,lxbgit/luarocks,xpol/luarocks,rrthomas/luarocks,xpol/luainstaller,tst2005/luarocks,xpol/luavm,xiaq/luarocks,xpol/luavm,aryajur/luarocks,aryajur/luarocks,rrthomas/luarocks,ignacio/luarocks,ignacio/luarocks,keplerproject/luarocks,tst2005/luarocks,xpol/luavm,tst2005/luarocks,usstwxy/luarocks,lxbgit/luarocks,starius/luarocks,keplerproject/luarocks,xpol/luarocks,starius/luarocks,starius/luarocks,rrthomas/luarocks,luarocks/luarocks,ignacio/luarocks,coderstudy/luarocks,xpol/luainstaller,xiaq/luarocks,starius/luarocks,robooo/luarocks,tst2005/luarocks,xiaq/luarocks,tarantool/luarocks,lxbgit/luarocks,ignacio/luarocks,xpol/luavm,usstwxy/luarocks,tarantool/luarocks,xpol/luainstaller,rrthomas/luarocks,coderstudy/luarocks,keplerproject/luarocks,leafo/luarocks |
3df6a5bcf5d4e0110ae224aa3d2cb5b83cfa979a | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.4
before_install:
- composer self-update
- cp app/config/parameters.yml.dist app/config/parameters.yml
- psql -c "CREATE USER forex_test WITH PASSWORD 'forex_test';" -U postgres
- psql -c 'CREATE DATABASE forex_test;' -U postgres
- psql -c 'GRANT ALL PRIVILEGES ON DATABASE forex_test to forex_test;' -U postgres
before_script:
- composer install
- app/console doctrine:migrations:migrate --no-interaction --env=test
script: phpunit -c app
| language: php
php:
- 5.5
- 5.4
before_install:
- composer self-update
- cp app/config/parameters.yml.dist app/config/parameters.yml
- psql -c "CREATE USER forex_test WITH PASSWORD 'forex_test';" -U postgres
- psql -c 'CREATE DATABASE forex_test;' -U postgres
- psql -c 'GRANT ALL PRIVILEGES ON DATABASE forex_test to forex_test;' -U postgres
before_script:
- composer install
- app/console doctrine:migrations:migrate --no-interaction --env=test
script:
- phpunit -c app --exclude-group=functional
- phpunit -c app --group=functional
| Split into functional and non-functional groups | Split into functional and non-functional groups
| YAML | mit | ForexCashBack/forex,ForexCashBack/forex |
13596c0ba689635994fcab425122daff15e4822e | .travis.yml | .travis.yml | os:
- linux
- osx
sudo: false
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env:
matrix:
- TRAVIS_NODE_VERSION="0.8"
- TRAVIS_NODE_VERSION="0.10"
- TRAVIS_NODE_VERSION="0.12"
- TRAVIS_NODE_VERSION="iojs-1"
- TRAVIS_NODE_VERSION="iojs-2"
- TRAVIS_NODE_VERSION="iojs-3"
notifications:
email:
- rod@vagg.org
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
- npm install npm
- mv node_modules npm
- npm/.bin/npm --version
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi
- $CXX --version
- npm/.bin/npm install
- if [[ $TRAVIS_NODE_VERSION == "0.8" ]]; then node_modules/.bin/node-gyp rebuild --directory test; else node_modules/.bin/pangyp rebuild --directory test; fi
script: if [[ $TRAVIS_OS_NAME == "linux" ]]; then tap --gc test/js/*-test.js; else node_modules/.bin/tap --gc teset/js/*-test.js; fi
| os:
- linux
- osx
sudo: false
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
env:
matrix:
- TRAVIS_NODE_VERSION="0.8"
- TRAVIS_NODE_VERSION="0.10"
- TRAVIS_NODE_VERSION="0.12"
- TRAVIS_NODE_VERSION="iojs-1"
- TRAVIS_NODE_VERSION="iojs-2"
- TRAVIS_NODE_VERSION="iojs-3"
notifications:
email:
- rod@vagg.org
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
- npm install npm
- mv node_modules npm
- npm/.bin/npm --version
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi
- $CXX --version
- npm/.bin/npm install
- if [[ $TRAVIS_NODE_VERSION == "0.8" ]]; then node_modules/.bin/node-gyp rebuild --directory test; else node_modules/.bin/pangyp rebuild --directory test; fi
script: node_modules/.bin/tap --gc test/js/*-test.js
| Test using version of tap installed by npm install | Test using version of tap installed by npm install
Use `node_modules/.bin/tap` instead of just `tap`
so that testing works even without a globally set up
Node.js environment.
| YAML | mit | sanemat/nan,LinusU/nan,guymguym/nan,guymguym/nan,lovell/nan,guymguym/nan,eljefedelrodeodeljefe/nan,mikolalysenko/nan,ipmobiletech/nan,mikolalysenko/nan,saper/nan,mscdex/nan,nodejs/nan,thefourtheye/nan,ipmobiletech/nan,Jonekee/nan,lovell/nan,sesh-kebab/nan,nodejs/nan,LinusU/nan,lovell/nan,eljefedelrodeodeljefe/nan,saper/nan,ipmobiletech/nan,thefourtheye/nan,evanlucas/nan,eljefedelrodeodeljefe/nan,evanlucas/nan,durai145/nan,durai145/nan,mikolalysenko/nan,mikolalysenko/nan,addaleax/nan,eljefedelrodeodeljefe/nan,ipmobiletech/nan,LinusU/nan,Jonekee/nan,sanemat/nan,Jonekee/nan,sesh-kebab/nan,lovell/nan,nodejs/nan,evanlucas/nan,addaleax/nan,mscdex/nan,sesh-kebab/nan,addaleax/nan,thefourtheye/nan,sanemat/nan,addaleax/nan,guymguym/nan,sesh-kebab/nan,saper/nan,nodejs/nan,saper/nan,sanemat/nan,durai145/nan,gagern/nan,thefourtheye/nan,Jonekee/nan,durai145/nan,gagern/nan,evanlucas/nan,LinusU/nan,gagern/nan,mscdex/nan,mscdex/nan |
99dcc4b301c3c59a5616263a9d9b055e3ebc3928 | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
after_success:
- mvn clean cobertura:cobertura coveralls:report
| # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
sudo: false
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
after_success:
- mvn clean cobertura:cobertura coveralls:report
| Add oraclejdk7 to Travis CI. | Add oraclejdk7 to Travis CI.
git-svn-id: fd8f2b076f92628f09589a903dd666b39f6e6a5e@1790600 13f79535-47bb-0310-9956-ffa450edef68
| YAML | apache-2.0 | apache/commons-ognl,apache/commons-ognl |
a521f03889f4e290f1cd3952832bc8945c94a28c | .travis.yml | .travis.yml | language:
- c
compiler: gcc
env: CFLAGS='-Wall -Werror'
matrix:
include:
- compiler: clang
env: CFLAGS='-Wall -Werror' CMAKE_OPTIONS='-DCMAKE_C_FLAGS=-fsanitize=address -DUSE_VALGRIND=no'
- compiler: gcc
env: CFLAGS='-Wall -Werror' COVERALLS=yes CMAKE_OPTIONS='-DENABLE_GCOV=yes -DUSE_VALGRIND=no'
before_install:
- sudo pip install cpp-coveralls
- sudo add-apt-repository --yes ppa:pcman-bbs/travis-ci
- sudo apt-get update -qq
- sudo apt-get install check cmake valgrind
script:
- cmake . && make VERBOSE=1 $CMAKE_OPTIONS && make test
after_success:
- if [ x$COVERALLS == xyes ]; then coveralls --exclude tests; fi
| language:
- c
compiler: gcc
env: CFLAGS='-Wall -Werror'
matrix:
include:
- compiler: clang
env: CFLAGS='-Wall -Werror' CMAKE_OPTIONS='-DCMAKE_C_FLAGS=-fsanitize=address -DUSE_VALGRIND=no'
- compiler: gcc
env: CFLAGS='-Wall -Werror' COVERALLS=yes CMAKE_OPTIONS='-DENABLE_GCOV=yes -DUSE_VALGRIND=no'
before_install:
- sudo pip install cpp-coveralls
- sudo add-apt-repository --yes ppa:pcman-bbs/travis-ci
- sudo apt-get update -qq
- sudo apt-get install check cmake valgrind
script:
- cmake . $CMAKE_OPTIONS && make VERBOSE=1 && make test
after_success:
- if [ x$COVERALLS == xyes ]; then coveralls --exclude tests; fi
| Use $CMAKE_OPTIONS in cmake instead of make | Use $CMAKE_OPTIONS in cmake instead of make
| YAML | lgpl-2.1 | pcman-bbs/libbbs,pcman-bbs/libbbs,pcman-bbs/libbbs |
6d127e28e7fd5ebd0c631b5d8bfc8a0595766c9c | .travis.yml | .travis.yml | language: ruby
bundler_args: --without integration
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
script: bundle exec rake travis
| # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/bin/chef exec rake
| Test in ChefDK to avoid Ruby dep pain | Test in ChefDK to avoid Ruby dep pain
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | redguide/cpu |
e6483e0c4ff4ff6d5771da53ae0afd7c8fa019ff | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 1.9.2
- rbx-19mode
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| rvm:
- 1.9.3
- 1.9.2
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
| Disable Jruby builds for now. | Disable Jruby builds for now.
Running tests on Jruby would require test apps with jdbcsqlite3 adapter.
| YAML | mit | drugpl/bbq-core |
080a614806157ee6e06b99a8b9eabc9c0645ce77 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.0.0"
script: "make travis"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
script: "make travis"
| Build on the latest node.js 4 and 5 release (instead of only 4.0.0). | Travis: Build on the latest node.js 4 and 5 release (instead of only 4.0.0).
| YAML | mit | unexpectedjs/unexpected,alexjeffburke/unexpected,alexjeffburke/unexpected |
359ab904b7a72686de329b22704de92052faa687 | .travis.yml | .travis.yml | language: node_js
dist: trusty
sudo: false
node_js:
- '8'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| language: node_js
sudo: false
node_js:
- '12'
install:
- npm ci
| Switch to Node 12, tweak config | Travis: Switch to Node 12, tweak config
| YAML | mit | mzgol/jquery-wheel,mgol/jquery-wheel |
c47c09ba7c536f68f13a6f1bdfcf91f4c31e68f0 | .travis.yml | .travis.yml | language: ruby
env:
- CODECLIMATE_REPO_TOKEN=f7c652b65a700fcf1032174afc5ea243b991e48bf73077cc34c148e1c800a2f7
bundler_args: --without sql benchmarks console tools
script: "bundle exec rake spec"
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/39e1225f489f38b0bd09
on_success: change
on_failure: always
on_start: false
| language: ruby
env:
- CODECLIMATE_REPO_TOKEN=f7c652b65a700fcf1032174afc5ea243b991e48bf73077cc34c148e1c800a2f7
bundler_args: --without sql benchmarks console tools
script: "bundle exec rake spec"
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/39e1225f489f38b0bd09
on_success: change
on_failure: always
on_start: false
| Revert "Run tests on upcoming JRuby 9000" | Revert "Run tests on upcoming JRuby 9000"
It seems that defining `jruby` in .travis.yml already runs
JRuby 9000.
See https://travis-ci.org/rom-rb/rom/jobs/45789302#L102
This reverts commit dfd264fd2b8536d4e6c849d01837eca62af763cd.
| YAML | mit | pxlpnk/rom,dekz/rom,rom-rb/rom,cored/rom,pdswan/rom,pvcarrera/rom,kwando/rom,Snuff/rom,rom-rb/rom,vrish88/rom,dcarral/rom,endash/rom,jeremyf/rom,denyago/rom,rom-rb/rom |
eb6c9527d9b62e5b575aecfc179d5ec5ef0bdaef | spec/database.yml | spec/database.yml | mysql:
adapter: mysql
database: delayed_job_test
username: root
encoding: utf8
mysql2:
adapter: mysql2
database: delayed_job_test
username: root
encoding: utf8
postgresql:
adapter: postgresql
database: delayed_job_test
username: postgres
sqlite3:
adapter: sqlite3
database: ":memory:"
| mysql:
adapter: mysql
host: 127.0.0.1
database: delayed_job_test
username: root
port: 3306
encoding: utf8
mysql2:
adapter: mysql2
host: 127.0.0.1
database: delayed_job_test
username: root
port: 3306
encoding: utf8
postgresql:
adapter: postgresql
host: 127.0.0.1
database: delayed_job_test
username: postgres
password: postgres
port: 5432
sqlite3:
adapter: sqlite3
database: ":memory:"
| Update db config for Github actions | Update db config for Github actions
| YAML | mit | collectiveidea/delayed_job_active_record |
c79be1bbde0934621b9077cb76e135012fdd2068 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
install:
- python setup.py install
# command to run tests
script: python${PY:-} test/test.py
| language: python
sudo: false
python:
- "2.7"
install:
- python setup.py install
# command to run tests
script: python${PY:-} test/test.py
| Remove Travis CI tests for python3 and pypy for now | Remove Travis CI tests for python3 and pypy for now
| YAML | mit | infincia/NetRNG |
d16b7e5f075fcbd16e6aacb804af1d664e2f197d | .travis.yml | .travis.yml | language: ruby
before_script:
- mysql -e 'create database `acts_as_interval-test`;'
- cd spec/dummy; RAILS_ENV=test bundle exec rake db:setup
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
| language: ruby
before_script:
- mysql -e 'create database `acts_as_interval-test`;'
- cd spec/dummy; RAILS_ENV=test bin/rake db:setup
rvm:
- 2.0.0
- 2.1.5
- 2.2.0
| Use bin/rake instead of bundle exec | Use bin/rake instead of bundle exec
| YAML | mit | coalwater/acts_as_interval,coalwater/acts_as_interval,coalwater/acts_as_interval |
c7775b636ad1d1425983ac8173e33ffc55827bd3 | .travis.yml | .travis.yml | sudo: false
language: node
cache:
yarn: true
directories:
- test/elm-stuff/build-artifacts
- elm-stuff
- node_modules
install:
- yarn install
- elm package install --yes
script:
- yarn elm-test
| sudo: false
language: node_js
cache:
yarn: true
directories:
- test/elm-stuff/build-artifacts
- elm-stuff
- node_modules
install:
- yarn install
- elm package install --yes
script:
- yarn elm-test
| Use correct name for node | Use correct name for node
| YAML | mit | mattiaslundberg/trellooverview,mattiaslundberg/trellooverview |
3d293bd0a069346bdd3c4ffb67e1117fb75b3b42 | .travis.yml | .travis.yml | rvm:
- 1.9.3
| before_script: cd test_app && ./script/rails generate impressionist && bundle exec rake db:migrate
language: ruby
rvm:
- 1.9.3
| Add setup steps to CI configuration | Add setup steps to CI configuration
| YAML | mit | charlotte-ruby/impressionist,charlotte-ruby/impressionist,firmanm/impressionist,guodongme/impressionist,charlotte-ruby/impressionist,firmanm/impressionist,samchen2009/impressionist,firmanm/impressionist,samchen2009/impressionist,guodongme/impressionist,guodongme/impressionist,samchen2009/impressionist |
51ee1e6fd56aba570f3d2dc77de02530a535e3ce | .travis.yml | .travis.yml | language: python
dist: trusty
sudo: false
python:
- "3.5"
- "3.6"
- "3.7"
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes
- conda update -q conda
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip openblas numpy scipy
- source activate test-environment
- "pip install -q --upgrade 'pip'"
- "pip install -q 'coverage'"
- "pip install -q 'pytest-cov'"
- "pip install -q 'codacy-coverage'"
- "pip install -r requirements.txt"
- "pip install -q coveralls"
install:
- "echo done"
# command to run tests, e.g. python setup.py test
script:
- pytest --cov=laserchicken --cov-report xml:coverage.xml
after_script:
- python-codacy-coverage -r coverage.xml
- coveralls
| language: python
dist: trusty
sudo: false
python:
- "3.5"
- "3.6"
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes
- conda update -q conda
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip openblas numpy scipy
- source activate test-environment
- "pip install -q --upgrade 'pip'"
- "pip install -q 'coverage'"
- "pip install -q 'pytest-cov'"
- "pip install -q 'codacy-coverage'"
- "pip install -r requirements.txt"
- "pip install -q coveralls"
install:
- "echo done"
# command to run tests, e.g. python setup.py test
script:
- pytest --cov=laserchicken --cov-report xml:coverage.xml
after_script:
- python-codacy-coverage -r coverage.xml
- coveralls
| Remove 3.7 testing as Travis doesn't support it | Remove 3.7 testing as Travis doesn't support it | YAML | apache-2.0 | eEcoLiDAR/eEcoLiDAR |
4b7b2b450a80c5e6fce08484f9383ff6f945edcf | .travis.yml | .travis.yml | language: php
php:
- '5.6'
- '7.0'
- '7.1'
env:
- NO_INTERACTION=1
matrix:
include:
- os: osx
language: generic
php: '7.1'
before_install:
- brew tap homebrew/php
- brew update
- brew install php71
before_script:
- phpize
- ./configure --enable-sha3
- make
script: make test
| language: php
php:
- '5.6'
- '7.0'
- '7.1'
- '7.2'
env:
- NO_INTERACTION=1
matrix:
include:
- os: osx
language: generic
php: '7.2'
before_install:
- brew update
- brew install php
before_script:
- phpize
- ./configure --enable-sha3
- make
script: make test
| Add PHP 7.2 to Travis build | Add PHP 7.2 to Travis build | YAML | mit | strawbrary/php-sha3,strawbrary/php-sha3,strawbrary/php-sha3 |
48fda8772ba3137c22ba16d1bc177013e2d5f8cf | .travis.yml | .travis.yml | sudo: required
language: bash
services:
- docker
install:
- git clone https://github.com/thyrlian/AndroidSDK.git ~/AndroidSDK
script:
- docker build -t android-sdk ~/AndroidSDK/android-sdk
- docker images
- docker run -it --rm android-sdk bash -c 'cat /etc/*release | grep VERSION= && java -version && gradle -v && kotlinc -version && cat $ANDROID_HOME/tools/source.properties | grep Pkg.Revision && sdkmanager --list && apt list --installed | grep openssh-server'
| sudo: required
language: bash
services:
- docker
install:
- git clone https://github.com/thyrlian/AndroidSDK.git ~/AndroidSDK
script:
- docker build -t android-sdk ~/AndroidSDK/android-sdk
- docker images
- cmd=$(cat ~/AndroidSDK/version_inspector.sh)
- docker run -it --rm android-sdk bash -c "$cmd"
| Call version_inspector script in Travis file | Call version_inspector script in Travis file
| YAML | apache-2.0 | thyrlian/AndroidSDK,thyrlian/AndroidSDK |
57557892af817bc434cd6c44ce1acd0dbd3ad360 | .travis.yml | .travis.yml | language: python
matrix:
include:
- python: 3.6
- python: 3.7
- python: 3.8
- python: 3.9
install:
- pip install -U setuptools pip pipenv
- pipenv install
script:
- pipenv run test
jobs:
include:
- if: branch = master
stage: deploy-docs
python: 3.9
install:
- pip install -U setuptools pip pipenv
- pipenv install -d
script:
- mkdocs build --verbose --clean --strict
deploy:
provider: pages
skip_cleanup: true
github_token: $GH_TOKEN
local_dir: site
on:
branch: master
| language: python
matrix:
include:
- python: 3.6
- python: 3.7
- python: 3.8
install:
- pip install -U setuptools pip pipenv
- pipenv install
script:
- pipenv run test
jobs:
include:
- if: branch = master
stage: deploy-docs
python: 3.8
install:
- pip install -U setuptools pip pipenv
- pipenv install -d
script:
- mkdocs build --verbose --clean --strict
deploy:
provider: pages
skip_cleanup: true
github_token: $GH_TOKEN
local_dir: site
on:
branch: master
| Revert "Add Python 3.9 to the build matrix" | Revert "Add Python 3.9 to the build matrix"
This reverts commit 693d40cc
| YAML | apache-2.0 | browncoat-ninjas/nimoy |
702debbcc052204493e2aa44cb4e1536c5811f21 | .travis.yml | .travis.yml | language: c
os:
- linux
- osx
env:
matrix:
- PYTHON_VERSION=2.7
- PYTHON_VERSION=3.3
- PYTHON_VERSION=3.4
- PYTHON_VERSION=3.5
global:
- CONDA_DEPENDENCIES='numpy matplotlib psutil'
- PIP_DEPENDENCIES='coveralls pytest-cov'
- SETUP_XVFB=True
before_install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda_$TRAVIS_OS_NAME.sh
script:
- py.test --cov psrecord psrecord
after_success:
- coveralls
| language: c
os:
- linux
- osx
env:
matrix:
- PYTHON_VERSION=2.7 PSUTIL_VERSION=1
- PYTHON_VERSION=2.7 PSUTIL_VERSION=2
- PYTHON_VERSION=2.7 PSUTIL_VERSION=3
- PYTHON_VERSION=3.4 PSUTIL_VERSION=4
- PYTHON_VERSION=3.5 PSUTIL_VERSION=5
global:
- CONDA_DEPENDENCIES='numpy matplotlib psutil'
- PIP_DEPENDENCIES='coveralls pytest-cov'
- SETUP_XVFB=True
before_install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
script:
- py.test --cov psrecord psrecord
after_success:
- coveralls
| Add builds for different versions of psutil | Add builds for different versions of psutil | YAML | bsd-2-clause | saimn/psrecord,astrofrog/psrecord |
88f9ac978d2ebcb687d440306dda41fe02429b66 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
# we want the latest release of JDK8
addons:
apt:
packages:
- oracle-java8-installer
install: '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && mvn --settings .build/deploy-settings.xml -DaltDeploymentRepository=snapshots::default::http://m2.neo4j.org/content/repositories/snapshots clean deploy || mvn clean verify'
script:
- java -jar tools/grammar/target/grammar-1.0-SNAPSHOT.jar ISO14977 cypher.xml > grammar/generated/cypher.ebnf
- java -jar tools/grammar/target/grammar-1.0-SNAPSHOT.jar Antlr4 cypher.xml > grammar/generated/Cypher.g4
- java -DRailRoadDiagrams.outputDir=grammar/generated/railroad -jar tools/grammar/target/grammar-1.0-SNAPSHOT.jar RailRoadDiagrams cypher.xml
| language: java
jdk:
- oraclejdk8
# we want the latest release of JDK8
addons:
apt:
packages:
- oracle-java8-installer
install: 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ] ; then mvn --settings .build/deploy-settings.xml -DaltDeploymentRepository=snapshots::default::http://m2.neo4j.org/content/repositories/snapshots clean deploy ; else mvn clean verify ; fi'
script:
- java -jar tools/grammar/target/grammar-1.0-SNAPSHOT.jar ISO14977 cypher.xml > grammar/generated/cypher.ebnf
- java -jar tools/grammar/target/grammar-1.0-SNAPSHOT.jar Antlr4 cypher.xml > grammar/generated/Cypher.g4
- java -DRailRoadDiagrams.outputDir=grammar/generated/railroad -jar tools/grammar/target/grammar-1.0-SNAPSHOT.jar RailRoadDiagrams cypher.xml
| Stop the build in case a test fails | Stop the build in case a test fails
| YAML | apache-2.0 | opencypher/openCypher,opencypher/openCypher,opencypher/openCypher,opencypher/openCypher |
db6dd962b7e1d54d56fabfdaa6846d46ad46d646 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 6
- 8
- 10
before_script: git fetch --tags
after_success: npm run coverage
| sudo: false
language: node_js
node_js:
- 6
- 8
- 10
before_script: git fetch --tags
after_success: npm run coverage
notifications:
email: false
| Disable email notifications from Travis | Disable email notifications from Travis
Ref Level/community#40 | YAML | mit | Level/packager |
06f1b5b4efb77c4359617b0be3c8ac61d25fe0f1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- npm install -g gulp bower tsd@next typescript karma-cli
- npm install
- bower install
- tsd reinstall
script:
- gulp
- gulp test
| language: node_js
node_js:
- "0.10"
before_script:
- npm install -g gulp bower tsd@next typescript karma-cli
- npm install
- bower install
- tsd reinstall
script:
- gulp
- gulp test | Fix config format error, remove tab | Fix config format error, remove tab
| YAML | mit | 91mai/NSquared.Ng.Utils,91mai/NSquared.Ng.Utils |
fd20bd7b942b8531977c3bccbd57d971a9d9962f | .travis.yml | .travis.yml | language: erlang
env:
global:
- PLATFORM=linux
- LUAROCKS_VER=2.2.0beta1
matrix:
- LUA=lua5.1 LUA_SFX=
- LUA=lua5.2 LUA_SFX=
- LUA=luajit LUA_SFX=jit
branches:
only:
- master
before_install:
- bash .travis/setup_lua.sh
- sudo pip install cpp-coveralls
- sudo luarocks install luacov-coveralls --server=http://rocks.moonscript.org/dev
- sudo luarocks install lunitx
install:
- sudo luarocks make rockspecs/foo-scm-0.rockspec CFLAGS="-O2 -fPIC -ftest-coverage -fprofile-arcs" LIBFLAG="-shared --coverage"
script:
- cd test
- lunit.sh -i lua$LUA_SFX test.lua
after_success:
- coveralls -b .. -r .. --dump c.report.json
- luacov-coveralls -j c.report.json
- curl -v --form "json_file=@luacov.report.json;type=application/json" https://coveralls.io/api/v1/jobs
notifications:
email:
on_success: change
on_failure: always
| language: erlang
env:
global:
- PLATFORM=linux
- LUAROCKS_VER=2.2.0beta1
matrix:
- LUA=lua5.1 LUA_SFX=
- LUA=lua5.2 LUA_SFX=
- LUA=luajit LUA_SFX=jit
branches:
only:
- master
before_install:
- bash .travis/setup_lua.sh
- sudo pip install cpp-coveralls
- sudo luarocks install luacov-coveralls --server=http://rocks.moonscript.org/dev
- sudo luarocks install lunitx
install:
- sudo luarocks make rockspecs/foo-scm-0.rockspec CFLAGS="-O2 -fPIC -ftest-coverage -fprofile-arcs" LIBFLAG="-shared --coverage"
script:
- cd test
- lunit.sh -i lua$LUA_SFX test.lua
after_success:
- coveralls -b .. -r .. --dump c.report.json
- luacov-coveralls -j c.report.json
notifications:
email:
on_success: change
on_failure: always
| Use luacov-coveralls to post report to coveralls.io | Use luacov-coveralls to post report to coveralls.io
| YAML | mit | moteus/lua-travis-example,istr/lua-travis-example,ignacio/lua-travis-example,daurnimator/lua-travis-example,xpol/lua-travis-example,starius/lua-travis-example,xpol/lua-travis-example,moteus/lua-travis-example,istr/lua-travis-example,starius/lua-travis-example,ignacio/lua-travis-example,daurnimator/lua-travis-example |
cd35c7314a13ccbed3a07aecef5f61bb01bd3d00 | .travis.yml | .travis.yml | env:
- DISPLAY=:99.0 CLI_WIDTH=80
jdk:
- oraclejdk8
script:
# Not installing UI bits until this is fixed: https://github.com/Semantic-Org/Semantic-UI/issues/4292
# - cd src/main/frontend && npm install
# - cd src/main/frontend && npm rum build-semantic-ui
# - ./gradlew build
- ./gradlew build -xwebpack -xnpmInstall
# Update coverage info on coveralls.io
#after_success:
# - ./gradlew jacocoTestReport coveralls
| env:
- DISPLAY=:99.0 CLI_WIDTH=80
jdk:
- oraclejdk8
script:
# Not installing UI bits until this is fixed: https://github.com/Semantic-Org/Semantic-UI/issues/4292
# - cd src/main/frontend && npm install
# - cd src/main/frontend && npm rum build-semantic-ui
# - ./gradlew build
- ./gradlew build -xwebpack -xnpmInstall
# Update coverage info on coveralls.io
after_success:
- ./gradlew jacocoTestReport coveralls
| Put Java code coverage on coveralls | Put Java code coverage on coveralls
| YAML | mit | bobbylight/rak,bobbylight/rak,bobbylight/rak,bobbylight/rak,bobbylight/rak |
3b8b17de48b069b92521c39f9bfae8c1c8ccd991 | .travis.yml | .travis.yml | sudo: true
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
- "pypy"
before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes openssh-server
install:
- pip install pip-accel
- pip-accel install coveralls
- pip-accel install --requirement=requirements.txt
- pip-accel install --requirement=requirements-checks.txt
- pip-accel install --requirement=requirements-tests.txt
- LC_ALL=C pip-accel install .
script:
- make check
- make test
after_success:
- coveralls
branches:
except:
- /^[0-9]/
| sudo: true
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
- "pypy"
before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes fakeroot openssh-server
install:
- pip install pip-accel
- pip-accel install coveralls
- pip-accel install --requirement=requirements.txt
- pip-accel install --requirement=requirements-checks.txt
- pip-accel install --requirement=requirements-tests.txt
- LC_ALL=C pip-accel install .
script:
- make check
- make test
after_success:
- coveralls
branches:
except:
- /^[0-9]/
| Install fakeroot on Travis CI | Install fakeroot on Travis CI
| YAML | mit | xolox/python-executor |
56d64bd9984699109307b2f6b04627b96ddfee08 | .travis.yml | .travis.yml | language: c
sudo: false
addons:
apt:
packages:
- cmake
- uncrustify
- colordiff
matrix:
include:
- os: linux
compiler: gcc
- os: linux
compiler: clang
# - os: osx
# compiler: gcc
- os: osx
compiler: clang
script:
# Print all environment variables to aid in CI development
- uname -a
- printenv
# Print version and available CMake generators to aid in CI development
- cmake --version
- cmake --help
# Perform out-of-source build
- mkdir build
- cd build
# Perform CMake backend generation, build, and test
- cmake ..
- cmake --build . -- -j4
- ctest --output-on-failure -C Debug -j4
- ../etc/uncrustify_check.sh
| language: c
dist: trusty
sudo: false
addons:
apt:
packages:
- cmake
- uncrustify
- colordiff
matrix:
include:
- os: linux
compiler: gcc
- os: linux
compiler: clang
# - os: osx
# compiler: gcc
- os: osx
compiler: clang
script:
# Print all environment variables to aid in CI development
- uname -a
- printenv
# Print version and available CMake generators to aid in CI development
- cmake --version
- cmake --help
# Perform out-of-source build
- mkdir build
- cd build
# Perform CMake backend generation, build, and test
- cmake ..
- cmake --build . -- -j4
- ctest --output-on-failure -C Debug -j4
- ../etc/uncrustify_check.sh
| Use trusty -- hopefully get a newer version of uncrustify. | Use trusty -- hopefully get a newer version of uncrustify.
| YAML | mit | nanomsg/nng,nanomsg/nng,nanomsg/nng,nanomsg/nng |
1b45cb7117c1c13694bab2f7506189e9a5a4e5c0 | .travis.yml | .travis.yml | # Travis-CI configuration for Bioconductor packages
# https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
r:
- bioc-release
# - bioc-devel
os:
- linux
# - osx
matrix:
exclude:
- os: osx
r: bioc-devel
# blocklist
# branches:
# except:
# - develop
# safelist
# branches:
# only:
# - master
env:
global:
- LINTR_COMMENT_BOT=true
# r_build_args: "--no-build-vignettes"
# r_check_args: "--no-vignettes"
# Set true before submission to Bioconductor
warnings_are_errors: true
# Temporarily enable when caching Bioconductor packages
# script: true
r_packages:
- covr
bioc_packages:
- BiocCheck
- EnsDb.Hsapiens.v75
r_github_packages:
- jimhester/lintr
after_success:
- Rscript -e 'lintr::lint_package()'
- Rscript -e 'covr::codecov()'
- R CMD BiocCheck .
notifications:
email:
recipients:
- mike@steinbaugh.com
on_success: change
on_failure: always
| # Travis-CI configuration for Bioconductor packages
# https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
r:
- bioc-release
# - bioc-devel
os:
# - linux
- osx
matrix:
exclude:
- os: osx
r: bioc-devel
# blocklist
# branches:
# except:
# - develop
# safelist
# branches:
# only:
# - master
env:
global:
- LINTR_COMMENT_BOT=true
# r_build_args: "--no-build-vignettes"
# r_check_args: "--no-vignettes"
# Set true before submission to Bioconductor
warnings_are_errors: true
# Temporarily enable when caching Bioconductor packages
# script: true
r_packages:
- covr
bioc_packages:
- BiocCheck
- EnsDb.Hsapiens.v75
r_github_packages:
- jimhester/lintr
after_success:
- Rscript -e 'lintr::lint_package()'
- Rscript -e 'covr::codecov()'
- R CMD BiocCheck .
notifications:
email:
recipients:
- mike@steinbaugh.com
on_success: change
on_failure: always
| Switch to macOS for build checks | Switch to macOS for build checks
| YAML | mit | steinbaugh/seqcloudr,seqcloud/seqcloudR,steinbaugh/basejump |
0c7278dc12efba4a040a1197ede33f9c47771f08 | .travis.yml | .travis.yml | language: ruby
cache:
- bundler
- apt
before_install:
- curl http://packages.couchbase.com/ubuntu/couchbase.key | sudo apt-key add -
- echo "deb http://packages.couchbase.com/ubuntu precise precise/main" | sudo tee -a /etc/apt/sources.list
- sudo apt-get update -qq
- sudo apt-get install -y libcouchbase-dev
services:
- memcached
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.3
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-2
- rbx-2.1.1
- ree
| language: ruby
cache:
- bundler
- apt
before_install:
- curl http://packages.couchbase.com/ubuntu/couchbase.key | sudo apt-key add -
- echo "deb http://packages.couchbase.com/ubuntu precise precise/main" | sudo tee -a /etc/apt/sources.list
- sudo apt-get update -qq
- sudo apt-get install -y libcouchbase-dev
services:
- memcached
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.3
| Remove rubies we can’t even bundle on. | Remove rubies we can’t even bundle on. | YAML | mit | eirc/sane_memcached_ttl |
c79ec5a482ee89c5304dc9b3f6f7d832eb5502f4 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 5.6
- 5.5
- hhvm
script: ./bin/phpunit -c app/phpunit.xml.dist
| language: php
php:
- 7.0
- 5.6
- 5.5
- hhvm
script:
- composer install --prefer-source --no-dev --no-interaction
- phpunit --configuration app/phpunit.xml.dist --no-coverage
| Add the "composer install" command for Travis CI | Add the "composer install" command for Travis CI
| YAML | mit | Comrade42/phpBB-Parser |
aa4792507189625013c1ac2830ab4af49833a5ae | .travis.yml | .travis.yml | language: android
android:
components:
- build-tools-21.1.2
- android-21
- extra-android-support
- sys-img-armeabi-v7a-android-21
before_script:
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
./gradlew checkstyle build connectedCheck | language: android
android:
components:
- build-tools-21.1.2
- android-21
- extra-android-support
- sys-img-armeabi-v7a-android-19
before_script:
- echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
./gradlew checkstyle build connectedCheck | Change emulator to use api 19 instead of 21 | Change emulator to use api 19 instead of 21
| YAML | apache-2.0 | 0359xiaodong/Lynx,pedrovgs/Lynx |
a1f8160d18bb40480287c52485b855e4d54c605f | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4.0'
- 'iojs'
- '0.12'
- '0.11'
- '0.10'
- '0.8'
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g npm@2.12.1; fi'
| sudo: false
language: node_js
node_js:
- '4'
- 'iojs'
- '0.12'
- '0.11'
- '0.10'
- '0.8'
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g npm@2.12.1; fi'
| Test against major version of Node v4 | Travis-CI: Test against major version of Node v4
| YAML | mit | watson/async-state |
6e516f079654667b07b55d086c5907d8e11071b2 | .travis.yml | .travis.yml | language: elixir
elixir:
- 1.2
- 1.6
- 1.7
otp_release:
- 18.2
- 20.3
- 21.0
sudo: false
| language: elixir
elixir:
- 1.4
- 1.6
- 1.7
otp_release:
- 18.2
- 20.3
- 21.0
matrix:
exclude:
- elixir: 1.4
otp_release: 21.0
sudo: false
| Drop support for elixir 1.2 | Drop support for elixir 1.2
| YAML | mit | fazibear/export,fazibear/export |
56377e6e580d0b7c88079c61927a119add2471e2 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
before_script:
- npm install -g grunt-cli
script:
- grunt
| language: node_js
node_js:
- 0.10.36
before_script:
- npm install -g grunt-cli
script:
- grunt
| Fix node version for TravisCI | Fix node version for TravisCI
| YAML | mit | karma-runner/karma-html2js-preprocessor,karma-runner/karma-html2js-preprocessor |
4ec7518bad795f31a61fdc58d4d12e91d05bf4a0 | .travis.yml | .travis.yml | language: haskell
before_install:
- cabal install gtk2hs-buildtools hlint
- travis/cabal-apt-install $mode
- npm install jshint
install:
# Treat warnings as errors
- "sed -Ei 's/ghc-options: +/\0-Werror /' tianbar.cabal"
- cabal configure $mode -fWerror
script:
- hlint src
- jshint --show-non-errors scripts
- cabal build
# TODO: tests
env:
matrix:
- mode="--enable-tests" script="cabal test --show-details=always"
global:
secure: La3uBTMLW+gWTzRKsVmh+xN7PSVsGNHaqUIIXbEvv2gcdH5drCtsFS56VZ/bXR3IOpDhFX6+M6qXkMYlWcsCswvaecmjNwqOq8lc5WYjLdkinRugwgEVv5+tsS3Ybgnz+A6hvJIkNnkwHa8kSVA2ppOA6ZDteZguvDk73XGQPs0=
after_success:
- git checkout -- tianbar.cabal
- rm dist/tianbar*.tar.gz
- cabal sdist
- if [ $TRAVIS_PULL_REQUEST == 'false' -a $TRAVIS_BRANCH == 'release' ]; then cabal upload dist/tianbar*.tar.gz --username=AlexeyKotlyarov --password=$PASSWORD; fi
| language: haskell
before_install:
- cabal install gtk2hs-buildtools hlint
- travis/cabal-apt-install $mode
- npm install jshint
install:
# Treat warnings as errors
- "sed -Ei 's/ghc-options: +/\0-Werror /' tianbar.cabal"
- cabal configure $mode -fWerror
script:
- hlint src
- jshint --show-non-errors scripts
- cabal build
- cabal test
- cabal sdist
- cabal install dist/tianbar*.tar.gz
env:
matrix:
- mode="--enable-tests" script="cabal test --show-details=always"
global:
secure: La3uBTMLW+gWTzRKsVmh+xN7PSVsGNHaqUIIXbEvv2gcdH5drCtsFS56VZ/bXR3IOpDhFX6+M6qXkMYlWcsCswvaecmjNwqOq8lc5WYjLdkinRugwgEVv5+tsS3Ybgnz+A6hvJIkNnkwHa8kSVA2ppOA6ZDteZguvDk73XGQPs0=
after_success:
- git checkout -- tianbar.cabal
- rm dist/tianbar*.tar.gz
- cabal sdist
- if [ $TRAVIS_PULL_REQUEST == 'false' -a $TRAVIS_BRANCH == 'release' ]; then cabal upload dist/tianbar*.tar.gz --username=AlexeyKotlyarov --password=$PASSWORD; fi
| Test that the package installs | Test that the package installs
| YAML | mit | koterpillar/tianbar,koterpillar/tianbar,koterpillar/tianbar |
e75d3bd53073f44447023a7de3ff1e9ec5372043 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.5
script:
- bundle exec rubocop
- bundle exec foodcritic --contex --epic-fail any .
notifications:
flowdock: d4fbb65de6c9c868a2dfc4b38fbd34c1
| language: ruby
rvm:
- 2.1.5
script:
- bundle exec rubocop
- bundle exec foodcritic --contex --epic-fail any .
notifications:
flowdock: d4fbb65de6c9c868a2dfc4b38fbd34c1
sudo: false
| Move to Travis Container based testing | Move to Travis Container based testing
| YAML | mit | express42-cookbooks/openvpn,express42-cookbooks/openvpn,shortdudey123/openvpn,shortdudey123/openvpn,express42-cookbooks/openvpn,shortdudey123/openvpn |
52349519927a0493ce43b01b67716d898d0a9e39 | .travis.yml | .travis.yml | sudo: required
language: go
go:
- go1.7
- go1.8
- go1.9
- tip
install:
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/protobuf/proto
- go get -u github.com/stretchr/testify/assert
script:
- go install
- test -z "$(goimports -l -w $(go list -f {{.Dir}}/*.go ./...) | tee /dev/stderr)"
- test -z "$(golint ./... | tee /dev/stderr)"
- test -z "$(go vet -v ./... | tee /dev/stderr)"
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| sudo: required
language: go
go:
- go1.7
- go1.8
- go1.9
- tip
install:
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/protobuf/proto
- go get -u github.com/stretchr/testify/assert
script:
- go install
- test -z "$(goimports -l -w $(go list -f {{.Dir}}/*.go ./...) | tee /dev/stderr)"
- test -z "$(golint ./... | tee /dev/stderr)"
- go tool vet .
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| Replace `go vet` with `go tool vet` | Replace `go vet` with `go tool vet`
| YAML | apache-2.0 | maguro/pbf |
2462820fae4f88f2278fe9beb7b278c8f1a92b2e | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 2.2.8
- 2.3.5
- 2.4.2
- jruby-9.1.14.0
script: bundle exec rake test
| ---
language: ruby
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- jruby-9.1.15.0
script: bundle exec rake test
| Use Ruby 2.2.9, 2.3.6, 2.4.3 and JRuby 9.1.15.0 | Use Ruby 2.2.9, 2.3.6, 2.4.3 and JRuby 9.1.15.0
| YAML | mit | aycabta/deviantart,aycabta/deviantart |
739e942b96837a96d5f9b23cd5870e39762b32ce | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
- "3.5"
cache: pip
install:
- pip install hacking flake8-docstrings pep8-naming
- pip install .
- export PATH=$PATH:$HOME/.local/bin
script:
- flake8 --verbose tests/ yanico/ setup.py
- python setup.py test
- python -m yanico --version
- python -m yanico --help
- yan --version
- yan --help
| language: python
python:
- "3.3"
- "3.4"
- "3.5"
cache: pip
install:
- pip install -U pip
- pip install .[develop]
script:
- flake8 --verbose tests/ yanico/ setup.py
- python setup.py test
- python -m yanico --version
- python -m yanico --help
- yan --version
- yan --help
| Change package installation at tests on Travis CI | Change package installation at tests on Travis CI
Install necessary modules for testing written on setup script.
| YAML | apache-2.0 | ma8ma/yanico |
e3445c7d4cac6061a9c14a9961afc93855951fa2 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.1.5
gemfile:
- gemfiles/rails_3.0.gemfile
- gemfiles/rails_3.1.gemfile
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.1.gemfile
before_install:
- gem install bundler
script:
- bundle exec rake clean test
| language: ruby
rvm:
- 2.1.5
- 2.4.1
gemfile:
- gemfiles/rails_3.0.gemfile
- gemfiles/rails_3.1.gemfile
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.1.gemfile
before_install:
- gem install bundler
script:
- bundle exec rake clean test
| Drop support for ruby 1.9.3 (preparing for Rails 5), add Travis tests for ruby 2.4.1 | Drop support for ruby 1.9.3 (preparing for Rails 5), add Travis tests for ruby 2.4.1
| YAML | mit | santiagodoldan/micro_sessions,rubiety/micro_sessions,santiagodoldan/micro_sessions |
3da8e3d21924328e1a8aea3862d2367e3f639e4c | .travis.yml | .travis.yml | language: objective-c
xcode_project: IceBuilder.xcodeproj
xcode_scheme: IceBuilder
notifications:
slack:
secure: O1PoU6qbgdiKQIV0/UAsjVwzJPlgag8fihFs2Pbm5nPgmsGQob3rDXT2UqpQydW6byNc7EWhUPoSLM1IoZdqgyVmqpnX//uMRPKm+UKthQ3U+LKqygJwp9WN4yYyd23RXvU8OciNcjwR3V7zRsigSXjoKPswyxoMYL0ezzRe/QY=
| language: objective-c
xcode_project: IceBuilder.xcodeproj
xcode_scheme: IceBuilder
notifications:
slack:
secure: GSzcKpPvxFs29fZKJseajWgmzthKFGphAwALkZlmxAl7318rmD+bR1Lyg5ICWUxipoV0wsJSqL9JSaJRd/srq5SzkBPKZh4QLc2aaumt2Tded/AW2mTQlWgz1D6T0u+E06/izPXq5k4Qcnm9nvihwNKkT7LLK9bbJUxVSEZQFNY=
| Fix Travis CI Slack notification | Fix Travis CI Slack notification
| YAML | bsd-3-clause | zeroc-ice/ice-builder-xcode |
ece394bb6d5d44624769e3aa25aba36518a95338 | .travis.yml | .travis.yml | branches: {only: [master, test]}
sudo: false
language: python
cache: pip
matrix:
include:
- {env: TOXENV=style, python: "3.5"}
- {env: TOXENV=packaging, python: "3.5"}
- python: "2.7"
- python: "3.4"
- python: "3.5"
- python: "3.6"
- python: "pypy"
install:
- pip install tox-travis
- pip install codecov
- pip install -U pip setuptools
- python setup.py bdist_wheel
script: tox -v --installpkg dist/*.whl
after_success:
- codecov -e TRAVIS_PYTHON_VERSION
| branches: {only: [master, test]}
sudo: false
language: python
cache: pip
matrix:
include:
- {env: TOXENV=style, python: "3.5"}
- {env: TOXENV=packaging, python: "3.5"}
- python: "pypy"
- python: "3.6"
- python: "3.5"
- python: "3.4"
- python: "2.7"
install:
- pip install tox-travis
- pip install codecov
- pip install -U pip setuptools
- python setup.py bdist_wheel
script: tox -v --installpkg dist/*.whl
after_success:
- codecov -e TRAVIS_PYTHON_VERSION
| Reorder Python versions in the build matrix | Travis: Reorder Python versions in the build matrix
Because PyPy build takes the longest time, start it first. This should
make the overall testing faster, because builds are started in parallel.
| YAML | bsd-2-clause | suutari-ai/prequ,suutari/prequ,suutari/prequ |
8377aca7a2cf70aafca55e527ebf399afd6739f1 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: composer test
branches:
only:
- master | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: composer test
branches:
only:
- master | Drop support for PHP 5.4 | Drop support for PHP 5.4
| YAML | mit | ihsw/toxiproxy-php-client |
d2660764a59bbc4ab25be56d8a4a11878bf1cd66 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
| language: ruby
rvm:
- 1.9.3
- 2.0.0
| Remove Ruby 1.9.2 from CI | Remove Ruby 1.9.2 from CI
| YAML | mit | Irio/mymoip |
5e924e6a72d208fdeaf61396b0b75465f97a9d99 | .travis.yml | .travis.yml | branches:
only:
- python
language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install -e . "Werkzeug >= 0.9" coverage coveralls
script:
- coverage run --source sass,sassc,sassutils setup.py test
after_success:
- coveralls
notifications:
irc:
channels:
- "irc.ozinger.org:8080#hongminhee"
on_success: change
on_failure: always
| branches:
only:
- python
sudo: false
language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install -e . "Werkzeug >= 0.9" coverage coveralls
script:
- coverage run --source sass,sassc,sassutils setup.py test
after_success:
- coveralls
notifications:
irc:
channels:
- "irc.ozinger.org:8080#hongminhee"
on_success: change
on_failure: always
| Move to Travis' container-based stack | Move to Travis' container-based stack
http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
| YAML | mit | dahlia/libsass-python,admire93/libsass-python,admire93/libsass-python,dahlia/libsass-python |
60bf9d5651bfbb7e056c1a0a4e3bea10e70d5a0c | .travis.yml | .travis.yml | language: php
# use the new container infrastructure
#sudo: false
php:
- '7.1'
cache:
directories:
- vendor
before_script:
- composer self-update
script:
- ./vendor/bin/phpspec run
- ./vendor/bin/phpstan analyse src -l 5
| language: php
# use the new container infrastructure
#sudo: false
php:
- '7.1'
cache:
directories:
- vendor
before_script:
- composer self-update
- composer install --dev
script:
- ./vendor/bin/phpspec run
- ./vendor/bin/phpstan analyse src -l 5
| Install dev deps in the build | Install dev deps in the build
| YAML | mit | nidup/coupling-detector,akeneo/php-coupling-detector |
9b6ded8b1f9deb9449127b50b85219e0e96d6754 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- release
- tip
branches:
only:
- master
| language: go
sudo: false
go:
- 1.5
- release
- tip
branches:
only:
- master
| Upgrade go to 1.5, migrate to Travis container-based infra | Upgrade go to 1.5, migrate to Travis container-based infra
| YAML | bsd-3-clause | goxmpp/xtream |
cdddbd0d4ec261f32ed3837617c74b9bb10b3095 | .travis.yml | .travis.yml | language: node_js
node_js:
- '5'
- '4'
- '0.12'
jdk:
- oraclejdk8
| sudo: false
language: node_js
env:
- NODE_VERSION=0.12
- NODE_VERSION=4
- NODE_VERSION=5
jdk:
- oraclejdk8
before_install:
- nvm install "$NODE_VERSION"
- node --version
- npm --version
- java -version
install:
- npm install -g grunt-cli
- grunt --version
- npm install
script:
- npm test
matrix:
fast_finish: true
| Fix for JDK8 dependency of htmllint | Fix for JDK8 dependency of htmllint
| YAML | mit | sbstnmsch/nip.to-app,sbstnmsch/nip.to-app |
0d81387322e82f815cf765364cdcffac4e11b885 | .travis.yml | .travis.yml | ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate lint spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_VERSION="~> 2.7.0"
- rvm: 1.9.3
env: PUPPET_VERSION="~> 3.1.0"
- rvm: 2.0.0
env: PUPPET_VERSION="~> 3.8.0"
- rvm: 2.1.4
env: PUPPET_VERSION="~> 4.2.0"
notifications:
email: false
| ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate lint spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_VERSION="~> 3.1.0"
- rvm: 2.0.0
env: PUPPET_VERSION="~> 3.8.0"
- rvm: 2.1.4
env: PUPPET_VERSION="~> 4.2.0"
notifications:
email: false
| Remove Puppet 2.7.0 from Travis-CI Build Matrix | Remove Puppet 2.7.0 from Travis-CI Build Matrix
Let's not worry about things from five years ago....
Signed-off-by: Trevor Bramwell <9318f446584e3f6cf68dea37a1a9fde63cb30ce1@linuxfoundation.org>
| YAML | apache-2.0 | bramwelt/puppet-patchwork,bramwelt/puppet-patchwork,bramwelt/puppet-patchwork |
3355486583c2a0c3415521a0d4ef78c03245fb6b | .travis.yml | .travis.yml | language: python
python:
# - "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
before_install:
- sudo apt-get update
# TODO: Move scipy/numpy to anaconda installation
# https://gist.github.com/dan-blanchard/7045057
- sudo apt-get build-dep python-scipy
# gcc gfortran liblapack-dev libblas-dev libatlas-base-dev libatlas-dev
- pip install pytest pytest-cov pytest-pep8
install:
- pip install cython
- pip install .
- pip install -r requirements.txt
#script: python tests/test_utilities.py
script: py.test
branches:
only:
#- master
- dev
| language: python
python:
# - "2.6"
- "2.7"
# shutil.which
- "3.1"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
before_install:
- sudo apt-get update
# TODO: Move scipy/numpy to anaconda installation
# https://gist.github.com/dan-blanchard/7045057
- sudo apt-get build-dep python-scipy
# gcc gfortran liblapack-dev libblas-dev libatlas-base-dev libatlas-dev
- pip install pytest pytest-cov pytest-pep8
install:
- pip install cython
- pip install .
- pip install -r requirements.txt
#script: python tests/test_utilities.py
script: py.test
branches:
only:
#- master
- dev
| Add 3.1 and 3.2 support | Add 3.1 and 3.2 support
| YAML | bsd-3-clause | ProjectPyRhO/PyRhO,ProjectPyRhO/PyRhO |
8f5ded065cccf2c7720caacddebdc90179841fd0 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.8'
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-eslint' ]; then cd .. && eval "mv $currentfolder generator-eslint" && cd generator-eslint; fi
| language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-eslint' ]; then cd .. && eval "mv $currentfolder generator-eslint" && cd generator-eslint; fi
| Update Travis to not check Node 0.8 | Update Travis to not check Node 0.8
| YAML | mit | watilde/generator-eslint |
15a2df55de57dc104b9fd7ba0cb1c4dd425040b5 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
branches:
only:
- master
- develop
notifications:
email:
recipients:
- api-versions@erichmenge.com
| language: ruby
rvm:
- 1.9.3
branches:
only:
- master
- production
notifications:
email:
recipients:
- api-versions@erichmenge.com
| Update Travis for branch rename. | Update Travis for branch rename.
| YAML | mit | EDMC/api-versions,PagerDuty/api-versions,begriffs/api-versions |
3019b6747967481b11622a41793e13086a8d53e9 | .travis.yml | .travis.yml | language: go
go:
- 1.3
before_install:
- sudo apt-get update
- go get github.com/mattn/gom
script:
- pushd $TRAVIS_BUILD_DIR
- make test
- make deb
- popd
notifications:
email: false
| language: go
go:
- 1.2
- 1.3
before_install:
- sudo apt-get update
- go get github.com/mattn/gom
script:
- pushd $TRAVIS_BUILD_DIR
- make test
- make deb
- popd
notifications:
email: false
| Use golang 1.2 as that is what apt-get provides. | Use golang 1.2 as that is what apt-get provides.
| YAML | apache-2.0 | acquia/statsgod,syrneus/statsgod |
cab926d9c131b822b12b7803b86bdc425bda37c9 | .travis.yml | .travis.yml | language: android
branches:
only:
- master
android:
components:
# Use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used
- build-tools-19.1.0
# The SDK version used to compile
- android-19
# Additional components
- extra
- extra-android-support
# - extra-google-google_play_services
licenses:
- android-sdk-license-bcbbd656
- '.*intel.+'
jdk:
- oraclejdk7
# Disable JDK8 for the time being, due to failed task ':app:preDexDebug'
# Cause: project and library are compiled by different versions of JDK
# - oraclejdk8
before_install:
- echo yes | android update sdk --all --filter build-tools-21.1.2 --no-ui --force > /dev/null
before_script:
- echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 & | language: android
branches:
only:
- master
android:
components:
# Use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used
- build-tools-19.1.0
# The SDK version used to compile
- android-19
# Additional components
- extra
# - extra-android-support
# - extra-google-google_play_services
licenses:
- android-sdk-license-bcbbd656
- '.*intel.+'
jdk:
- oraclejdk7
# Disable JDK8 for the time being, due to failed task ':app:preDexDebug'
# Cause: project and library are compiled by different versions of JDK
# - oraclejdk8
before_install:
- echo yes | android update sdk --all --filter build-tools-21.1.2 --no-ui --force > /dev/null
before_script:
- echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
| Revert "Try to install android support component on Travis." | Revert "Try to install android support component on Travis."
This reverts commit b56eff56796939edb66518f1f6e7dd2b0aa730fc.
| YAML | mit | thyrlian/Smarping |
a7519c1c2df5d7cd598cac369b5cc9f21947057b | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=3.3
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=3.3.1
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| Use latest DITA-OT version (3.3.1) for CI builds | Use latest DITA-OT version (3.3.1) for CI builds
Signed-off-by: Roger Sheen <a61a1add71dadc74037ae5e44ee30713db9a7451@infotexture.net>
| YAML | apache-2.0 | dita-ot/docs,infotexture/docs,infotexture/docs |
7cc5a3a7f2cc3131dab06805ead9118834b64b55 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.1
- 3.2
install:
- pip install nose
- pip install .
script: make test
| language: python
python:
- 2.6
- 2.7
- 3.1
- 3.2
env:
- TIMEZONE=UTC
install:
- pip install nose
- pip install .
script: make test
| Revert "Remove TIMEZONE environment setting from Travis CI test" | Revert "Remove TIMEZONE environment setting from Travis CI test"
While the tests pass locally, Travis CI doesn't to like reading from /etc/localtime. I'm putting the environment setting back for the time being.
This reverts commit af665094441bb84efc6136312951e14d22beeccf.
| YAML | bsd-3-clause | dirn/When.py |
916924060877a846956158542165e90e457bb220 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
| language: node_js
sudo: false
node_js:
- "12"
- "11"
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
| Add Node.js 11 and 12 to the Travis CI rotation. | Add Node.js 11 and 12 to the Travis CI rotation.
| YAML | mit | benjamn/install,benjamn/install |
ba7864184a1551f6d5fb724331406e1db3ce328f | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| sudo: false
language: node_js
node_js:
- "4.4"
- "6.3"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Update Travis config to latest. Update node versions to 4.x and 6.x . | Update Travis config to latest. Update node versions to 4.x and 6.x .
| YAML | mit | cliffano/datagen |
1250f74855a9e883c5cbb37d1ef94636334d942d | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| language: node_js
node_js:
- 0.10
before_script:
- bower install
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| Add bower install to Travis CI build script | Add bower install to Travis CI build script
| YAML | agpl-3.0 | dataseed/dataseed-visualisation.js,dataseed/dataseed-visualisation.js |
db60e433974018d30baf72e224c94463822c387f | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
- "3.6"
env:
- DJANGO=1.11.* DRF=3.7.*
- DJANGO=1.11.* DRF=3.8.*
- DJANGO=2.0.* DRF=3.7.*
- DJANGO=2.0.* DRF=3.8.*
install:
- pip install -q Django==$DJANGO djangorestframework==$DRF
- pip install coveralls
- pip install -r rest_auth/tests/requirements.pip
script:
- coverage run --source=rest_auth setup.py test
after_success:
- coveralls
before_script:
- flake8 . --config=flake8
matrix:
exclude:
- python: "2.7"
env: DJANGO=2.0.* DRF=3.7.*
env: DJANGO=2.0.* DRF=3.8.*
| language: python
python:
- "2.7"
- "3.5"
- "3.6"
env:
- DJANGO=1.11.* DRF=3.7.*
- DJANGO=1.11.* DRF=3.8.*
- DJANGO=2.0.* DRF=3.7.*
- DJANGO=2.0.* DRF=3.8.*
install:
- pip install -q Django==$DJANGO djangorestframework==$DRF
- pip install coveralls
- pip install -r rest_auth/tests/requirements.pip
script:
- coverage run --source=rest_auth setup.py test
after_success:
- coveralls
before_script:
- flake8 . --config=flake8
matrix:
exclude:
- python: "2.7"
env: DJANGO=2.0.* DRF=3.7.*
- python: "2.7"
env: DJANGO=2.0.* DRF=3.8.*
| Exclude Python 2.7 for Django 2.0 | Exclude Python 2.7 for Django 2.0
| YAML | mit | Tivix/django-rest-auth,kdzch/django-rest-auth |
6ff808fb7724f0f21c24adcd4f8eb7e1e3e12cc6 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
before_script:
- 'git clone git://github.com/smarchive/puppet-archive.git spec/fixtures/modules/archive'
env:
- PUPPET_VERSION=2.6.2
- PUPPET_VERSION=2.6.17
- PUPPET_VERSION=2.7.19
- PUPPET_VERSION=3.0.2
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
before_script:
- 'git clone git://github.com/smarchive/puppet-archive.git spec/fixtures/modules/archive'
env:
- PUPPET_VERSION=2.6.2
- PUPPET_VERSION=2.6.18
- PUPPET_VERSION=2.7.21
- PUPPET_VERSION=3.0.2
- PUPPET_VERSION=3.1.1
- PUPPET_VERSION=3.2.1
| Update Puppet versions in Travis CI build matrix | Update Puppet versions in Travis CI build matrix
| YAML | apache-2.0 | gini/puppet-idea |
09fe71bc8160ae4fc2307a6a17d3b15a9e15568b | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
before_install: sudo apt-get install xsltproc jing
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
before_install: sudo apt-get install xsltproc jing
script: grunt test
| Use grunt to run the tests. | Use grunt to run the tests.
| YAML | mpl-2.0 | mangalam-research/salve,lddubeau/salve,lddubeau/salve,mangalam-research/salve,mangalam-research/salve,lddubeau/salve |
3bf0ab53bd9060e3bf6e5f8ec3fb677fd48d4f2e | .travis.yml | .travis.yml | language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
install:
- pip install python-coveralls pytest-cov
- pip install .
script:
- py.test tests --cov dirty_water
after_success:
- coveralls
| language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "nightly"
install:
- pip install python-coveralls pytest-cov
- pip install .
script:
- cd tests
- py.test . --cov dirty_water
after_success:
- coveralls
| Change how Travis CI runs pytest. | Change how Travis CI runs pytest.
| YAML | mit | kalekundert/dirty_water |
b4810ac934eaa0ac177d1fd37c8e4e993de8baa7 | .travis.yml | .travis.yml | language: php
# use the new container infrastructure
#sudo: false
php:
- '7.1'
cache:
directories:
- vendor
before_script:
- composer self-update
- composer update --prefer-source
script:
- ./bin/phpspec run
- ./bin/phpstan analyse src -l 6
| language: php
# use the new container infrastructure
#sudo: false
php:
- '7.1'
cache:
directories:
- vendor
before_script:
- composer self-update
script:
- ./bin/phpspec run
- ./bin/phpstan analyse src -l 6
| Remove useless composer update that breaks all the builds | Remove useless composer update that breaks all the builds
| YAML | mit | nidup/coupling-detector,akeneo/php-coupling-detector |
f0761a14c96daaf7468233dd8a765e86844886f0 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer install
script: phpunit --coverage-clover coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer install
script: phpunit --coverage-clover coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| Add php 7.0 to the build matrix | Add php 7.0 to the build matrix | YAML | mit | rybakit/arguments-resolver |
0e72a67dec7eba3934dcd3532821fa6fc2ba332a | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
before_install:
- sudo apt-get update
install:
- sudo apt-get install libtagc0-dev
before_script:
- go get github.com/mdlayher/goset
- go get github.com/jmoiron/sqlx
- go get github.com/mattn/go-sqlite3
- go get github.com/wtolson/go-taglib
script:
- make
- make test
- ./bin/wavepipe -db=res/sqlite/wavepipe.db -test .
| language: go
go:
- 1.1
- 1.2
before_install:
- sudo apt-get update
install:
- sudo apt-get install libtagc0-dev
before_script:
- go get github.com/mdlayher/goset
- go get github.com/jmoiron/sqlx
- go get github.com/mattn/go-sqlite3
- go get github.com/romanoff/fsmonitor
- go get github.com/wtolson/go-taglib
script:
- make
- make test
- ./bin/wavepipe -db=res/sqlite/wavepipe.db -test .
| Add fsmonitor to Travis build | Add fsmonitor to Travis build
| YAML | mit | mdlayher/wavepipe,mdlayher/wavepipe |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.