commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
d211562c128f975d56e9a31cfd717a10d8c611ea | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- 1.7
- 1.8
- tip
services:
- mongodb
script:
- make setup && make test
| language: go
go:
- 1.5
- 1.6
- 1.7
- 1.8
- 1.9
- tip
services:
- mongodb
script:
- make setup && make test
| Add Go 1.9 to CI | Add Go 1.9 to CI
| YAML | mit | fulldump/kip |
baa3c16747c4c5d7748752f57aad0687f4fb99ac | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.4.6
- 2.5.5
- 2.6.3
- ruby-head
env:
- RAILS_VERSION="~> 4.2.0"
- RAILS_VERSION="~> 5.0.0"
- RAILS_VERSION="~> 5.1.0"
- RAILS_VERSION="~> 5.2.0"
- RAILS_VERSION="~> 6.0.0.rc1"
matrix:
exclude:
- rvm: 2.4.6
env: RAILS_VERSION="~> 6.0.0.rc1"... | language: ruby
cache: bundler
rvm:
- 2.4.6
- 2.5.5
- 2.6.3
- ruby-head
env:
- RAILS_VERSION="~> 4.2.0"
- RAILS_VERSION="~> 5.0.0"
- RAILS_VERSION="~> 5.1.0"
- RAILS_VERSION="~> 5.2.0"
- RAILS_VERSION="~> 6.0.0.rc1"
matrix:
exclude:
- rvm: 2.4.6
env: RAILS_VERSION="~> 6.0.0.rc1"
- rvm: ... | Drop unused sudo: false Travis directive | CI: Drop unused sudo: false Travis directive
- See https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration for more details | YAML | mit | rails/spring |
92e76c274555b78fd19d816999b6e5ac71695060 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
before_install:
- sudo apt-get install -y libgdal1-dev libgdal-dev
- sudo apt-get install -y python-gdal
# install dependencies
install:
- cd backend
- pip install -r requirements-dev.txt
- cd tests/travis_test
- ./travis_test.sh
# install frontend
- cd ../../../fro... | language: python
python:
- "3.5"
before_install:
- sudo apt-get install -y libgdal1-dev libgdal-dev
- sudo apt-get install -y python-gdal
- python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
# install dependencies
install:
- cd backend
- pip install -r requirements-dev.txt
- cd tests/travis_tes... | Fix python niveau de log pour eviter des probleme de d'espace disque sur Travis | Fix python niveau de log pour eviter des probleme de d'espace disque sur Travis
| YAML | bsd-2-clause | PnEcrins/GeoNature,PnEcrins/GeoNature,PnEcrins/GeoNature,PnEcrins/GeoNature |
3cc2927b0334892c1ecc1399d21e4b2aa906678d | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=django==1.5 --use-mirrors
- DJANGO=django==1.4.5 --use-mirrors
install:
- pip install $DJANGO
script:
- "`which django-admin.py` test post_office --settings=post_office.test_settings --pythonpath=."
| language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=django==1.5.1 --use-mirrors
- DJANGO=django==1.4.5 --use-mirrors
install:
- pip install $DJANGO
script:
- "`which django-admin.py` test post_office --settings=post_office.test_settings --pythonpath=."
| Use django 1.5.1 to test. | Use django 1.5.1 to test.
| YAML | mit | ekohl/django-post_office,yprez/django-post_office,ui/django-post_office,ui/django-post_office,RafRaf/django-post_office,CasherWest/django-post_office,fapelhanz/django-post_office,JostCrow/django-post_office,LeGast00n/django-post_office,CasherWest/django-post_office,jrief/django-post_office,carrerasrodrigo/django-post_o... |
4aa0d7b55a967c2a50b78ba999f7d16a986ba53f | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
sudo: false
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
# also test against HHVM, but require "trusty" and ignore errors
matrix:
include:
- php: hhvm
dist: trusty
allow_failures:
- php: hhvm
sudo: false
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text... | Fix HHVM build for now again and ignore future HHVM build errors | Fix HHVM build for now again and ignore future HHVM build errors | YAML | mit | clue/php-socks-react |
4db24f203160ee9026fc52cad1579a08c4679ed1 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7
matrix:
fast_finish: true
allow_failures:
- php: 7
services:
- postgresql
addons:
postgresql: "9.3"
before_script:
- psql -c "create role symfony login superuser password 'symfony';" -U postgres
- psql -c 'create database symfony owner symfony;' -U postgres
- comp... | language: php
php:
- 5.6
- 7
matrix:
fast_finish: true
allow_failures:
- php: 7
services:
- postgresql
addons:
postgresql: "9.3"
before_script:
- psql -c "create role symfony login superuser password 'symfony';" -U postgres
- psql -c 'create database cms owner symfony;' -U postgres
- composer... | Add Travis support for PostgreSQL | Add Travis support for PostgreSQL
| YAML | mit | diegonobre/symfony-cms,diegonobre/symfony-cms,diegonobre/symfony-cms |
67a2b62f130e235b1d1ed870fc89873d8757b91e | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "4"
script:
- npm test
after_success:
- npm run coveralls
notifications:
email: false
| sudo: false
language: node_js
node_js:
- "4"
script:
- npm test
after_success:
- npm run coveralls
notifications:
email: false
| Stop testing node versions pre v4 | Stop testing node versions pre v4 | YAML | mit | Springworks/node-holidays |
b4f8715dbe93185d7f2102ddbcfebb04f804fa04 | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: "node"
- node_js: "8"
- node_js: "6"
sudo: false
cache:
directories:
- node_modules
dist: trusty
addons:
chrome: stable
before_script:
# dump the current versions
- google-chrome-stable --version
- npm list
# start a fresh new Chrome instance
... | language: node_js
matrix:
include:
- node_js: "node"
- node_js: "8"
sudo: false
cache:
directories:
- node_modules
dist: trusty
addons:
chrome: stable
before_script:
# dump the current versions
- google-chrome-stable --version
- npm list
# start a fresh new Chrome instance
- google-chrome-st... | Drop support for Node.js 6 | Drop support for Node.js 6
| YAML | mit | cyrus-and/chrome-remote-interface,cyrus-and/chrome-remote-interface |
2a17e4f01dfd7e5a57e9c63c96c8e9f1593abe85 | .travis.yml | .travis.yml | language: C
sudo: false
install:
- ./vagrant/bootstrap.sh
script:
- make -C src
- cucumber | language: C
sudo: required
install:
- ./vagrant/bootstrap.sh
script:
- make -C src
- cucumber | Change SUDO to be required | Change SUDO to be required
| YAML | apache-2.0 | bright-tools/wd,bright-tools/wd,bright-tools/wd |
6719bd0569b548e29b840b27193939511eb182d7 | .travis.yml | .travis.yml | services:
- docker
language: node_js
cache:
directories:
- node_modules
node_js:
- "7"
- "8"
addons:
apt:
packages:
- gcc-4.8
- g++-4.8
env: CXX="g++-4.8" CC="gcc-4.8"
before_script:
- sudo pip install fonttools brotli zopfli
script: "npm install && npm run-script travis"
after_succes... | services:
- docker
language: node_js
cache:
directories:
- node_modules
node_js:
- "8"
- "9"
addons:
apt:
packages:
- gcc-4.8
- g++-4.8
env: CXX="g++-4.8" CC="gcc-4.8"
before_script:
- sudo pip install fonttools brotli zopfli
script: "npm install && npm run-script travis"
after_succes... | Build with node 8 and 9 | Travis: Build with node 8 and 9
| YAML | bsd-3-clause | assetgraph/assetgraph |
86e827a2a2526cabdd7a723f457d0bd4ca05e1f1 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install -qq python-numpy
install:
- pip install -r requirements.txt --use-mirrors
script: make test
| language: python
python:
- "2.7"
- "3.3"
virtualenv:
system_site_packages: true
# Using apt doesn't help for Python 3.3, because the packages on Precise
# are compiled for 3.2. This uses Miniconda to install numpy & pandas.
# Cribbed from https://gist.github.com/dan-blanchard/7045057
# Setup anaconda
before_ins... | Use Miniconda to set up numpy & pandas on Travis | Use Miniconda to set up numpy & pandas on Travis
| YAML | mit | jhamrick/dbtools,jhamrick/dbtools |
3bfc209cb8171d013576b913e1062c61c76eb905 | .travis.yml | .travis.yml | matrix:
include:
- os: osx
osx_image: xcode8
language: objective-c # so wrong
before_install: brew install snappy && ./install-rocksdb-master.sh
script: swift build -Xlinker -L/usr/local/lib && swift test
| matrix:
include:
- os: osx
osx_image: xcode8
language: objective-c # so wrong
before_install: brew install snappy && ./install-rocksdb-master.sh
script: swift build -Xlinker -L/usr/local/lib && swift test -Xlinker -L/usr/local/lib
| Add -Xlinker for test as well | Add -Xlinker for test as well
| YAML | apache-2.0 | jatoben/RocksDB,jatoben/RocksDB |
42ae26ab46d279cc9e79bb776da213deb0c37038 | .travis.yml | .travis.yml | language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo test --verbose -p edn
- cargo test --verbose -p mentat_parser_utils
- cargo test --verbose -p mentat_core
- cargo test --verbose -p mentat_db
- cargo test --verbose -p mentat_query
- cargo test --verbose -p mentat_query_parser... | language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo test --verbose -p edn
- cargo test --verbose -p mentat_parser_utils
- cargo test --verbose -p mentat_core
- cargo test --verbose -p mentat_db
- cargo test --verbose -p mentat_query
- cargo test --verbose -p mentat_query_parser... | Add new stuff to Travis. | Add new stuff to Travis.
| YAML | apache-2.0 | mozilla/mentat,mozilla/mentat,ncalexan/mentat,mozilla/mentat,ncalexan/mentat,ncalexan/mentat,mozilla/mentat,ncalexan/mentat,ncalexan/datomish,mozilla/mentat,ncalexan/mentat,ncalexan/datomish,ncalexan/mentat,mozilla/mentat |
e4ebd271bd49b13cc530d37adbc88a806f8ec0df | .travis.yml | .travis.yml | language: node_js
node_js:
- '4.0'
- '9.0'
sudo: false
deploy:
- provider: npm
email: tituswormer@gmail.com
api_key:
secure: Qau6SlUg8DviNQPQyiazu7c8VSMXeChcGfNUeRPJbJC+u4gOX2DesfzNiIlJCueHifwdqIp0q8Sabj/EOcuAvSpZwlsRp1lqIaXiTEHZHXxsZRWk6RTkGCKNRG6/rhATE8W7RNdYcan39YR1qpKPdn7svtO0UTi/z7WZsVHp+DQ=
on... | language: node_js
node_js:
- '4.0'
- '9.0'
sudo: false
deploy:
- provider: npm
skip_cleanup: true
email: tituswormer@gmail.com
api_key:
secure: Qau6SlUg8DviNQPQyiazu7c8VSMXeChcGfNUeRPJbJC+u4gOX2DesfzNiIlJCueHifwdqIp0q8Sabj/EOcuAvSpZwlsRp1lqIaXiTEHZHXxsZRWk6RTkGCKNRG6/rhATE8W7RNdYcan39YR1qpKPdn7svtO0... | Add `skip_cleanup` to npm deployment | Add `skip_cleanup` to npm deployment
| YAML | mit | wooorm/weasels |
fa858b1b1b8291b7e9966d57e66f508f01789e85 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
env:
- SET="-m logic"
- SET="-m live"
- SET="-m destructive"
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
before_script:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
script:
- cove... | language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
env:
- SET="-m logic"
- SET="-m live"
- SET="-m destructive"
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
before_script:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
script:
- cove... | Allow profiling deploy on all branches but limit by repo | Allow profiling deploy on all branches but limit by repo
| YAML | mit | Artanicus/python-cozify,Artanicus/python-cozify |
1002d45c20cb5e1b1c5b111662fb6b8404d6a02b | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- ruby-head-clang
- jruby-9.0
- jruby-9.1.2.0
- jruby-head
- rbx-3.26
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: ruby-head-clang
- rvm: jruby-9.0
- rvm: jruby-9.1.... | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- ruby-head-clang
- jruby-9.0
- jruby-9.1.2.0
- jruby-head
- rbx-3.58
matrix:
allow_failures:
- rvm: ruby-head
- rvm: ruby-head-clang
- rvm: jruby-9.0
- rvm: jruby-9.1.2.0
- rvm: jruby-h... | Update rbx version and allow failure | Update rbx version and allow failure
| YAML | lgpl-2.1 | mvz/gir_ffi,mvz/gir_ffi,mvz/gir_ffi |
81dd127b05af6d179bf3afe58268a9fb4d0df5ad | .travis.yml | .travis.yml | language: java
jdk: openjdk7
script:
- mvn verify
- mvn clean compile assembly:single
cache:
directories:
- $HOME/.m2 | language: java
jdk: openjdk7
script:
- mvn verify
- mvn clean compile assembly:single
- ls -l target/
cache:
directories:
- $HOME/.m2 | Add ls to Travis output | Add ls to Travis output
| YAML | mit | krishnakanthpps/lightning,automatictester/lightning,automatictester/lightning,krishnakanthpps/lightning |
3786116efb157e1747f34afdabbcd58b2b3c0e24 | .travis.yml | .travis.yml | ---
sudo: false
cache: bundler
language: ruby
rvm:
- 2.1.5
services: mysql
before_script:
- cp spec/ci/database.mysql.yml config/database.yml;
- bundle exec rake app:db:create
- bundle exec rake app:db:migrate
script:
- bundle exec rake app:spec
- bundle exec codeclimate-test-reporter
branches:
only... | ---
sudo: false
cache: bundler
language: ruby
rvm:
- 2.3.1
services: mysql
before_script:
- cp spec/ci/database.mysql.yml config/database.yml;
- bundle exec rake app:db:create
- bundle exec rake app:db:migrate
script:
- bundle exec rake app:spec
- bundle exec codeclimate-test-reporter
branches:
only... | Upgrade TravisCI to use Ruby version 2.3.1 | Upgrade TravisCI to use Ruby version 2.3.1
| YAML | mit | pgharts/trusty-cms,pgharts/trusty-cms,pgharts/trusty-cms |
3bb7a404a3a20ef00d6a4f68e9767b7ccfc568a4 | .travis.yml | .travis.yml | rvm:
- 1.9.2
- jruby
- rbx-2.0-1.9
branches:
only:
- master
env: JRUBY_OPTS='--1.9'
| rvm:
- 1.9.2
- jruby
- rbx-2.0
branches:
only:
- master
env: JRUBY_OPTS='--1.9' RBXOPT=-X19
| Enable 1.9 mode in rbx | Enable 1.9 mode in rbx
| YAML | mit | mperham/girl_friday,mperham/girl_friday |
f1a8023fb8a6fbfc6f02a2554420b236ec3843fc | .travis.yml | .travis.yml | sudo: false
language: objective-c
rvm:
- 2.3.1
xcode_project: PureLayout/PureLayout.xcodeproj
matrix:
include:
- xcode_sdk: iphonesimulator
xcode_scheme: PureLayout_iOS
- xcode_sdk: macosx
xcode_scheme: PureLayout_Mac
before_install:
- gem install slather --no-ri --no-rdoc
after_success: sla... | sudo: false
language: objective-c
rvm:
- 2.3.1
xcode_project: PureLayout/PureLayout.xcodeproj
matrix:
include:
- xcode_sdk: iphonesimulator
xcode_scheme: PureLayout_iOS
- xcode_sdk: macosx
xcode_scheme: PureLayout_Mac
before_install:
- rvm install 2.3.1
- gem install slather --no-ri --no-rd... | Install rvm to use specific ruby version; | Install rvm to use specific ruby version;
| YAML | mit | smileyborg/PureLayout,smileyborg/PureLayout |
9ac9f3a12646b9cf0094ddfc8c8545927b70cfed | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
script:
- pip install -r requirements.txt
- nosetests --with-timer --with-coverage ./
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
script:
- nosetests --with-timer --with-coverage ./
| Move setup into install section | Move setup into install section
| YAML | unlicense | cheesesashimi/homework |
395869f0dcac0d25c0d44094570ddd32d42215e2 | .travis.yml | .travis.yml | language: node_js
node_js: ["0.11", "0.10", "0.9", "0.8", "0.6"]
install: npm install
script: npm test
notifications:
email: false
| language: node_js
node_js: ["0.11", "0.10", "0.8", "0.6"]
install: npm install
script: npm test
notifications:
email: false
| Remove node@0.9 from build config | Remove node@0.9 from build config
| YAML | mit | adlawson/nodejs-tease |
ac45cf82877b613101e508b40e60bb754d81578b | .travis.yml | .travis.yml | language: cpp
compiler: gcc
script: make all && make test && ./coverage.sh
before_install:
# g++ 4.8.1
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
# g++4.8.1 and boost
- sudo apt-get install -qq g++-4.8 python-dev libbz2-dev zlib1g-dev libcppunit-dev doxygen lcov ruby r... | language: cpp
compiler: gcc
script: make all && make test && ./coverage.sh
before_install:
# g++ 4.8.1
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
# g++4.8.1, boost and lcov
- sudo apt-get install -qq g++-4.8 python-dev libbz2-dev zlib1g-dev libcppunit-dev doxygen lcov ... | Use lcov 1.11 on Travis since 1.9 doesn't work | Use lcov 1.11 on Travis since 1.9 doesn't work
| YAML | mit | RipcordSoftware/libhttpserver,RipcordSoftware/libhttpserver,RipcordSoftware/libhttpserver,RipcordSoftware/libhttpserver |
d90232b8e4e3bc05e1b0f3c7ce272328b28776ab | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "5.0"
- "5.5"
- "5.9.0"
- "5"
script: npm run travis
| language: node_js
node_js:
- "5.0"
- "5.4"
- "5.5"
- "5.9"
- "5"
script: npm run travis
| Remove node v4 from CI | Remove node v4 from CI
| YAML | mit | benoitvallon/react-native-redux-app-100-10-1,benoitvallon/react-native-redux-app-100-10-1,benoitvallon/react-native-redux-app-100-10-1 |
222edb4234c6d46ad1c406d3d2f590618e934f7d | .travis.yml | .travis.yml | dist: trusty
language: ruby
cache: bundler
sudo: false
rvm:
- 2.4.2
- 2.3.5
- 2.2.8
after_success:
- bundle exec codeclimate-test-reporter
| dist: trusty
language: ruby
cache: bundler
sudo: false
rvm:
- 2.5.3
- 2.4.5
- 2.3.8
- 2.2.10
after_success:
- bundle exec codeclimate-test-reporter
| Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | jbox-web/icinga2-api-client |
7d902af90abc03208da3505c1aa5cf4e3bc65506 | .travis.yml | .travis.yml | language: node_js
node_js:
- 8
cache:
directories:
- node_modules
- public/components
install:
- yarn
- bower install
before_script:
- npm install -g yarn
script:
- yarn run test
- yarn run posttest | language: node_js
node_js:
- 8
cache:
directories:
- node_modules
- public/components
install:
- yarn
- bower install
before_script:
- npm install -g yarn
- npm install -g bower
script:
- yarn run test
- yarn run posttest | Fix config of Travis CI | Fix config of Travis CI
| YAML | mit | osk2/gogo-cash-back,osk2/gogo-cash-rebate,osk2/gogo-cash-rebate |
a80492a471953566c55f827d4b7dac8520e82bf2 | .travis.yml | .travis.yml | language: ruby
sudo: false # use containers for faster builds
rvm:
- 2.1.2
install:
- gem install minitest --no-ri --no-rdoc
- gem install rubocop -v 0.31.0 --no-ri --no-rdoc
script:
- rubocop -fs -D
- bin/executable-tests-check
- make test
- bin/fetch-configlet
- bin/configlet .
| ---
language: ruby
sudo: false
rvm:
- 2.1.2
install:
- gem install minitest --no-document
- gem install rubocop -v 0.31.0 --no-document
script:
- rubocop -fs -D
- bin/executable-tests-check
- make test
- bin/fetch-configlet
- bin/configlet .
| Normalize YAML in Travis config | Normalize YAML in Travis config
| YAML | mit | NeimadTL/ruby,exercism/xruby,tommyschaefer/xruby,Insti/exercism-ruby,Insti/exercism-ruby,kotp/xruby,remcopeereboom/xruby,kotp/xruby,rashmiagar/exercism,gchan/xruby,tommyschaefer/xruby,Insti/exercism-ruby,NeimadTL/ruby,exercism/xruby,gchan/xruby,NeimadTL/ruby,Insti/xruby,remcopeereboom/xruby,rashmiagar/exercism,Insti/xr... |
ca4737df901e0a80e439b9aa3640ac8c53b0264c | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
= "node"
| Test with node 6 & latest | Test with node 6 & latest
Change-Id: Ie4b651f5ce082cd3d53c6ddcd342f4c5d456e6a6
| YAML | apache-2.0 | wikimedia/mediawiki-services-mobileapps,wikimedia/mediawiki-services-mobileapps,wikimedia/mediawiki-services-mobileapps,wikimedia/mediawiki-services-mobileapps,wikimedia/mediawiki-services-mobileapps,wikimedia/mediawiki-services-mobileapps |
7bd1231da1a96d416adaed92e9a5205fad194e2c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
gemfile:
- .travis/Gemfile
env:
- conn=ruby
- conn=hiredis
- conn=synchrony
matrix:
exclude:
- rvm: 1.8.7
gemfile: .travis/Gemfile
env: conn=synchrony
- rvm: jruby-18mode
gemfile: .travis/Gemfile
... | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
gemfile:
- .travis/Gemfile
env:
- conn=ruby
- conn=hiredis
- conn=synchrony
matrix:
exclude:
- rvm: 1.8.7
gemfile: .travis/Gemfile
env: conn=synchrony
- rvm: jruby-18mode
gemfile: .travis/Gemfile
... | Exclude some corner cases from Travis. | Exclude some corner cases from Travis.
| YAML | mit | Talkdesk/redis-rb,Shopify/redis-rb,marshall-lee/redis-rb,redis/redis-rb,YaronWittenstein/redis-rb,mcull/redis-rb,Shopify/redis-rb,nicolasleger/redis-rb,byroot/redis-rb,marshall-lee/redis-rb,madmax9242/redis-rb,zBMNForks/redis-rb,Shopify/redis-rb,tanomsak/redis-rb,plribeiro3000/redis-rb,tsuwatch/redis-rb,gallodigital/re... |
3a03d1771b183767e8670c2dc2a3d38793cd680f | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libgeos-dev
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install unittest2; fi
- pip install -r requirements-dev.txt
install:
- python setup.py build
script: "pytho... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- sudo add-apt-repository -y ppa:ubuntugis/ppa
- sudo apt-get update -qq
- sudo apt-get install -qq libgeos-dev
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install unittest2; fi
- pip install -r requirements-dev.txt
i... | Use ubuntugis repo to install newer GEOS on Travis CI | TST: Use ubuntugis repo to install newer GEOS on Travis CI
| YAML | bsd-3-clause | abali96/Shapely,mouadino/Shapely,mindw/shapely,jdmcbr/Shapely,mouadino/Shapely,mindw/shapely,abali96/Shapely,jdmcbr/Shapely |
60b98b7cdc402fae4c0edb376a8dad22a7b89773 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7-dev"
- "pypy"
- "pypy3"
install:
- pip install tox-travis coveralls
script:
- tox
- mappyfile schema mapfile-schema.json
- mappyfile schema mapfile-schema-7-6.json --version=7.6
- mappyfile validate tests/sam... | dist: bionic
sudo: false
language: python
python:
- "2.7"
- "3.6"
- "3.7"
- "3.8"
- "pypy"
- "pypy3"
install:
- pip install tox-travis coveralls
script:
- tox
- python setup.py install
- mappyfile schema mapfile-schema.json
- mappyfile schema mapfile-schema-7-6.json --version... | Install mappyfile before running cli, switch to bionic, and test py38 | Install mappyfile before running cli, switch to bionic, and test py38
| YAML | mit | geographika/mappyfile,geographika/mappyfile |
e0ee088f4c6a88d5555ee7515f0e90c4c82dd2e4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
before_script:
- "bundle exec rake db:create db:migrate"
| language: ruby
rvm:
- 2.0.0
- 2.1.0
before_script:
- "bundle exec rake db:create db:migrate"
| Replace 1.9.3 with 2.1.0 in Travis CI configuration. | Replace 1.9.3 with 2.1.0 in Travis CI configuration.
| YAML | mit | Stackato-Apps/expense,Stackato-Apps/expense,tristandunn/expense |
01366c02dde8301f7bb6b1a4b64604889c37a3a2 | .travis.yml | .travis.yml | language: ruby
rvm:
- jruby-19mode
jdk:
- openjdk7
env: DEBUG=true
install: travis_retry bundle install
before_script: bundle exec rake build
script:
- bundle exec rake rubocop
- bundle exec rake spec
- cd integration-tests && bundle exec rake spec:all
branches:
only:
- torqbox
| language: ruby
rvm:
- jruby-19mode
- jruby-head
jdk:
- openjdk7
env: DEBUG=true
install: travis_retry bundle install
before_script: bundle exec rake build
script:
- bundle exec rake rubocop
- bundle exec rake spec
- cd integration-tests && bundle exec rake spec:all
branches:
only:
- torqbox
| Test against JRuby head as well on Travis | Test against JRuby head as well on Travis
| YAML | apache-2.0 | mje113/torquebox,mje113/torquebox,torquebox/torquebox,torquebox/torquebox-release,torquebox/torquebox,vaskoz/torquebox,vaskoz/torquebox,samwgoldman/torquebox,ksw2599/torquebox,mje113/torquebox,ksw2599/torquebox,samwgoldman/torquebox,samwgoldman/torquebox,torquebox/torquebox,ksw2599/torquebox,torquebox/torquebox-release... |
d678a51b3190599db0605a3bdb3a10757de533fc | .travis.yml | .travis.yml | language: go
go:
- tip
- 1.6.2
os:
- linux
- osx
sudo: false
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- tip
- 1.7.5
- 1.6.4
os:
- linux
- osx
sudo: false
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| Test against current Go releases | Test against current Go releases
* tip (after 1.8rc3 at commit time)
* 1.7.5
* 1.6.4
| YAML | apache-2.0 | wjkohnen/airac |
e7b41e3ef38fbd9b620b4ba94f12b15bd4e40675 | .travis.yml | .travis.yml | bundler_args: --without development --without doc
env:
global:
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- jruby-19mode
- jruby-head
- ruby-head
- rbx-2
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-2
fast_finish: true
sudo: ... | bundler_args: --without development doc
env:
global:
- JRUBY_OPTS="$JRUBY_OPTS --debug"
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- jruby-19mode
- jruby-head
- ruby-head
- rbx-2
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-2
fast_finish: true
sudo: false
| Fix Bundler --without args of Travis-CI | Fix Bundler --without args of Travis-CI
| YAML | mit | httprb/http,davidbegin/http,pezra/http.rb,moneyadviceservice/http.rb,httprb/http.rb,Connorhd/http.rb |
2fb8cfe279cc0783cc3bf9a6edce66a0a2ac36e7 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
before_script:
- "sudo sed -i '$a 127.0.0.1 pulsr.local static.pulsr.local' /etc/hosts"
- "node app.js &"
- "sleep 3"
# configure notifications (IRC)
notifications:
irc: "irc.freenode.org#pulsr" | language: node_js
node_js:
- "0.8"
before_script:
- "sudo sed -i '$a 127.0.0.1 www.pulsr.local static.pulsr.local' /etc/hosts"
- "node app.js &"
- "sleep 3"
# configure notifications (IRC)
notifications:
irc: "irc.freenode.org#pulsr" | Add "www" subdomain instead of a root domain. | Add "www" subdomain instead of a root domain.
| YAML | mit | kadishmal/pulsr,kadishmal/radisonhouse.com |
cab54074969d30da2b8ecb6143fc9f1bb7d3069f | .travis.yml | .travis.yml | language: ruby
matrix:
include:
- os: linux
dist: trusty
sudo: false
rvm: 2.3.4
- os: linux
dist: trusty
sudo: false
rvm: 2.4.1
- os: linux
dist: trusty
sudo: false
rvm: ruby-head
- os: osx
osx_image: xcode8.2
rvm: 2.3.4
- os: osx
... | language: ruby
matrix:
include:
- os: linux
dist: trusty
sudo: false
rvm: 2.3.4
- os: linux
dist: trusty
sudo: false
rvm: 2.4.1
- os: linux
dist: trusty
sudo: false
rvm: ruby-head
- os: osx
osx_image: xcode8.2
rvm: 2.3.3
- os: osx
... | Downgrade rubies on Mac OS X. | Downgrade rubies on Mac OS X.
| YAML | mit | shugo/text_bringer,shugo/textbringer,shugo/text_bringer |
e6d3462b7f1ac930c51fe9834e812c1c0bed909e | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.3
before_install:
- brew update
script:
- xctool -project YTVimeoExtractor.xcodeproj -scheme YTVimeoExtractor build test GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
- xctool -project YTVimeoExtractor.xcodeproj -scheme YTVimeoExtractor iOS -sdk iph... | language: objective-c
osx_image: xcode7.3
before_install:
- brew update
script:
- xcodebuild -project YTVimeoExtractor.xcodeproj -scheme YTVimeoExtractor test -destination 'platform=OS X,arch=x86_64' -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' -destination 'platform=tvOS Simulator,name=Apple TV 108... | Switch to xcodebuild and use tvOS and iOS Simulator | Switch to xcodebuild and use tvOS and iOS Simulator | YAML | mit | lilfaf/YTVimeoExtractor |
60678694a5db47519cf2641602dced3c1faf5606 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
services:
- mongodb
env:
matrix:
- TEST_CMD="mocha"
- TEST_CMD="lint"
before_script:
- npm install -g grunt-cli
script: npm run config && grunt travis
| language: node_js
node_js:
- "0.10"
- "0.8"
services:
- mongodb
env:
matrix:
- TEST_CMD="mocha"
- TEST_CMD="lint"
before_script:
- npm install -g grunt-cli
script: npm run config && grunt travis
| Test Nodejs .10 & .8 | Test Nodejs .10 & .8
| YAML | mit | webcast-io/jobukyu,webcast-io/jobukyu |
e2f178264246e2acc96010b8ea7cde4771241a63 | .travis.yml | .travis.yml | sudo: false
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
rust:
- nightly
- beta
- stable
- 1.0.0
# load travis-cargo
before_script:
- |
pip install 'travis-cargo<0.2... | sudo: false
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
rust:
- beta
- stable
# load travis-cargo
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
expo... | Test on stable and beta | Test on stable and beta
| YAML | mit | patchfx/yahoo-finance |
0c1073640f4692668abf74855048a424376e339b | .travis.yml | .travis.yml | os: osx
osx_image: xcode9.3
env:
- COLUMNS=240
install:
- brew update
- brew install advancecomp
- brew install vips --without-fftw --without-graphicsmagick --without-poppler
- brew info vips
script:
- ./package.sh
addons:
artifacts:
s3_region: eu-west-1
| os: osx
osx_image: xcode9.2
env:
- COLUMNS=240
install:
- brew update
- brew upgrade
- brew install advancecomp
- brew install vips --without-fftw --without-graphicsmagick --without-poppler
- brew info vips
script:
- ./package.sh
addons:
artifacts:
s3_region: eu-west-1
| Revert to OS X 10.12, ensure brew is synced | Revert to OS X 10.12, ensure brew is synced
| YAML | apache-2.0 | lovell/package-libvips-darwin,lovell/package-libvips-darwin |
703f4ce866ea924def5afde6bd712aa271e0acf4 | .travis.yml | .travis.yml | language: php
php:
- 7
sudo: false
before_install:
- mkdir build
- git clone https://github.com/nikic/php-ast.git build/ast
- cd ./build/ast/
- phpize
- ./configure
- make
- make install
- echo "extension=ast.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- cd ./../../
- travis_re... | language: php
php:
- 7
- nightly
sudo: false
matrix:
fast_finish: true
allow_failures:
- php: "nightly"
before_install:
- mkdir build
- git clone https://github.com/nikic/php-ast.git build/ast
- cd ./build/ast/
- phpize
- ./configure
- make
- make install
- echo "extension=ast.so" >> ~/.... | Add PHP nightly to build matrix | Add PHP nightly to build matrix
| YAML | mit | etsy/phan,etsy/phan,ArtemGordinsky/phan,ArtemGordinsky/phan |
522f4fa3fcbb7a070a921de8d70fe4a94067cdbb | .travis.yml | .travis.yml | sudo: required
services:
- docker
script:
- docker build -t dlecan/rust-crosscompiler-arm:stable rust-crosscompiler-armv6
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push dlecan/rust-crosscompiler-arm:stable
| sudo: required
services:
- docker
script:
- docker build -t dlecan/rust-crosscompiler-arm:stable rust-crosscompiler-armv6
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push dlecan/rust-crosscompiler-arm:stable
| Remove email when docker connect | Remove email when docker connect
| YAML | mit | dlecan/docker-rust-x86_64-armv6,dlecan/rust-crosscompiler-arm |
e40bca9e22d060a8e7a7bf6cf49a9e6b3d6b2df9 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.11"
# setup links to submodules
before_install:
- npm install -g npm@1.4.9
- npm run-script setup
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
matrix:
allow_failures:
- node_js: "0.11"
# setup links to submodules
before_install:
- npm update -g npm
- npm run-script setup
| Update to latest npm on startup | Update to latest npm on startup
Removed specific version - npm has released fix for the breakage on 0.8.26
and now 1.4.9 is giving SHA errors?? Let's try this.
| YAML | mit | Matt-Westphal/azure-sdk-for-node,shrishrirang/azure-sdk-for-node,smithab/azure-sdk-for-node,koistya/azure-sdk-for-node,koistya/azure-sdk-for-node,amarzavery/azure-sdk-for-node,smithab/azure-sdk-for-node,kagamsft/azure-sdk-for-node,Matt-Westphal/azure-sdk-for-node,oaastest/azure-sdk-for-node,begoldsm/azure-sdk-for-node,... |
a7a8f2bf87c51a6ea1a7bc2076627a0513441b80 | .travis.yml | .travis.yml | language: cpp
os:
- linux
- osx
addons:
apt:
sources:
- sourceline: "deb http://mirrors.kernel.org/ubuntu/ disco main"
packages:
- cmake
homebrew:
packages:
- cmake
script:
- mkdir build
- cd build
- cmake ..
- cmake --build .
| language: cpp
matrix:
- os: linux
dist: xenial
- os: osx
osx_image: xcode10.1
addons:
apt:
sources:
- sourceline: "deb http://mirrors.kernel.org/ubuntu/ disco main"
packages:
- cmake
homebrew:
packages:
- cmake
script:
- mkdir build
- cd build
- cmake ..
- cmake ... | Update to Xenial and Xcode 10.1 | Travis: Update to Xenial and Xcode 10.1
| YAML | mit | pmer/TsunagariC,pmer/TsunagariC,pmer/TsunagariC |
ed16ddaadf933b71c0848e593184d39d10eabe44 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
- "6"
script:
- npm run bootstrap
- npm run test:lint
- npm run test:coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: node_js
node_js:
- "6"
- "7"
- "8"
script:
- npm run bootstrap
- npm run test:lint
- npm run test:coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
| Update Travis to use modern Node | chore: Update Travis to use modern Node
| YAML | mit | reactabular/reactabular,reactabular/reactabular |
6b58b821d951811574e94090c2cf7f7c8c81ec85 | .travis.yml | .travis.yml | language: node_js
node_js:
- node
- '8'
- '6'
- '4'
before_install:
# Build Csound.
- sudo apt-get build-dep csound
- wget https://github.com/csound/csound/archive/6.10.0.tar.gz
- tar -xf 6.10.0.tar.gz
- mkdir csound
- cd csound
- cmake ../csound-6.10.0
- make
- sudo make install
- sudo ld... | language: node_js
node_js:
- node
- '8'
- '6'
- '4'
before_install:
# Build Csound.
- sudo apt-get install -y libsndfile1-dev
- wget https://github.com/csound/csound/archive/6.09.1.tar.gz
- tar -xf 6.09.1.tar.gz
- mkdir csound
- cd csound
- cmake ../csound-6.09.1
- make
- sudo make install
... | Revert Travis CI to Csound 6.09.1 | Revert Travis CI to Csound 6.09.1
| YAML | mit | nwhetsell/csound-api,nwhetsell/csound-api,nwhetsell/csound-api |
fac007745c0afd21f9d5b8569ab7b26b6914401d | .travis.yml | .travis.yml | os: linux
sudo: false
# Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
# https://github.com/flutter/flutter/issues/6207
addons:
apt:
packages:
- libstdc++6
- lib32stdc++6
sources:
- ubuntu-toolchain-r-test
cache:
directories:
- $HOME/shared/.pub-ca... | os: linux
sudo: false
# Flutter depends on /usr/lib/x86_64-linux-gnu/libstdc++.so.6 version GLIBCXX_3.4.18
# https://github.com/flutter/flutter/issues/6207
addons:
apt:
packages:
- libstdc++6
- lib32stdc++6
sources:
- ubuntu-toolchain-r-test
cache:
directories:
- $HOME/shared/.pub-ca... | Add beta to the test matrix | Add beta to the test matrix
| YAML | bsd-3-clause | flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs,flutter/codelabs |
b345336984fdae7b101f8da21dfb8814436a3514 | .travis.yml | .travis.yml | sudo: false
language: python
jdk: oraclejdk7
python:
- "2.7"
env:
- TOX_ENV=py27-cdh
- TOX_ENV=py27-hdp
install:
- pip install -rrequirements.txt
- pip install tox
script:
- tox --version
- python setup.py test --tox-args="-v -e $TOX_ENV"
| sudo: false
language: python
jdk: oraclejdk7
python:
- "2.7"
env:
- TOX_ENV=py27-cdh
- TOX_ENV=py27-hdp
install:
- pip install tox
script:
- tox --version
- python setup.py test --tox-args="-v -e $TOX_ENV"
| Remove pip install as this is handled by tox | Remove pip install as this is handled by tox
| YAML | apache-2.0 | mrkm4ntr/incubator-airflow,AllisonWang/incubator-airflow,skudriashev/incubator-airflow,sid88in/incubator-airflow,Fokko/incubator-airflow,NielsZeilemaker/incubator-airflow,airbnb/airflow,ronfung/incubator-airflow,griffinqiu/airflow,alexvanboxel/airflow,preete-dixit-ck/incubator-airflow,mtustin-handy/airflow,griffinqiu/a... |
43d9167b0ea45fce348095a8b2107d11defc1923 | .travis.yml | .travis.yml | dist: xenial
sudo: false
language: python
matrix:
include:
- python: '2.7'
env: TOXENV=py27
- python: '3.5'
env: TOXENV=py35
- python: '3.6'
env: TOXENV=py36
- python: '3.7'
env: TOXENV=py37
- python: 'pypy'
env: TOXENV=pypy
dist: trusty
- python: 'pypy3'
... | dist: xenial
sudo: false
language: python
cache: pip
matrix:
include:
- python: '2.7'
env: TOXENV=py27
- python: '3.5'
env: TOXENV=py35
- python: '3.6'
env: TOXENV=py36
- python: '3.7'
env: TOXENV=py37
- python: 'pypy'
env: TOXENV=pypy
dist: trusty
- python... | Enable pip cache in Travis CI | Enable pip cache in Travis CI
Reduce load on PyPI servers and slightly speed up builds.
For more information, see:
https://docs.travis-ci.com/user/caching/#pip-cache
| YAML | bsd-3-clause | waylan/Python-Markdown,waylan/Python-Markdown |
43d5a87e1a56ba6c1cd732f17b7adf38922518ef | .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 ... | # 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 ... | Add oraclejdk7 to Travis CI. | Add oraclejdk7 to Travis CI.
git-svn-id: 4652571f3dffef9654f8145d6bccf468f90ae391@1790595 13f79535-47bb-0310-9956-ffa450edef68
| YAML | apache-2.0 | apache/commons-jexl,apache/commons-jexl,apache/commons-jexl |
cf260c6eafe8977c7a7451f35f3617ea1ecbf868 | .travis.yml | .travis.yml | language: ruby
script: "script/cibuild"
rvm:
- 2.1
- 2.0
env:
- ""
- JEKYLL_VERSION=3.0.0
| language: ruby
script: "script/cibuild"
matrix:
include:
- rvm: 2.0
env: ""
- rvm: 2.0
env: JEKYLL_VERSION=3.0.0
- rvm: 2.1
env: ""
- rvm: 2.1
env: JEKYLL_VERSION=3.0.0
- rvm: 2.1
env: JEKYLL_VERSION=3.7.4
| Add latest Jekyll version to CI test matrix | Add latest Jekyll version to CI test matrix
| YAML | mit | paulrobertlloyd/jekyll-figure,paulrobertlloyd/jekyll-figure |
8d41316dc0b0fa8705c571b3037f9a99f4c12506 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
- openjdk8
| language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
- oraclejdk8
| Use Oracle JDK 8 on Travis CI | Use Oracle JDK 8 on Travis CI
| YAML | apache-2.0 | chrisvest/stormpot,chrisvest/stormpot |
d0e16ec6ff486299633c954fc84fb007c763a53f | .travis.yml | .travis.yml | os: osx
before_install:
- brew update
- brew upgrade
- brew install nvm
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| os: osx
before_install:
- brew update
- brew upgrade
- brew install nvm
- export NVM_DIR=~/.nvm
- source $(brew --prefix nvm)/nvm.sh
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| Add env variables for nvm | Add env variables for nvm
| YAML | mit | mischah/itunes-remote |
74252faaee887ccc899062c7c0afa606c75f2996 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.2.10
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
env:
matrix:
- RAILS_VERSION='~> 4.2.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.0.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.1.0'
- RAILS_VERSION='~> 5.2.x'
- RAILS_VERSION='~> 6.0.0.beta3'
matrix:
... | sudo: false
language: ruby
rvm:
- 2.2.10
- 2.3.8
- 2.4.9
- 2.5.7
- 2.6.5
env:
matrix:
- RAILS_VERSION='~> 4.2.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.0.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.1.0'
- RAILS_VERSION='~> 5.2.x'
- RAILS_VERSION='~> 6.0.0.beta3'
matrix:
... | Use ruby 2.4.9, 2.5.7, 2.6.5 | CI: Use ruby 2.4.9, 2.5.7, 2.6.5 | YAML | mit | jhawthorn/discard,jhawthorn/discard |
93741eed3b8c0f59304c405cfb4f9382f141e913 | .travis.yml | .travis.yml | language: php
php:
- 7.2
- 7.3
- 7.4
env:
- APP_ENV=development CC_TEST_REPORTER_ID=efd18a36922628f0536f2f08cf7ceca763f5f2feb6f3638037381487ca3312ae
matrix:
allow_failures:
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction... | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
env:
- APP_ENV=development CC_TEST_REPORTER_ID=efd18a36922628f0536f2f08cf7ceca763f5f2feb6f3638037381487ca3312ae
matrix:
allow_failures:
- php: 7.1
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-in... | Test PHP7.1 but allow failures | Test PHP7.1 but allow failures | YAML | mit | jkphl/micrometa,jkphl/micrometa |
32632c9443847ce4bca76f3b47673a52e23b9057 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- sudo apt-get update
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- sudo apt-get update
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-late... | Add Python 3.6 to tests | Add Python 3.6 to tests
| YAML | bsd-3-clause | adelq/thermopy |
85a183d5f72aa26e1508f84725f676708ed179c5 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
os:
- linux
install:
- echo "Build on $TRAVIS_OS_NAME for Python $TRAVIS_PYTHON_VERSION"
- bash .travis/install_python.sh
- export PATH="$HOME/miniconda/bin:$PATH"
- source activate test-env
- pip install coveralls
- if [[ "$TRAVIS_PYTHON_VERSION" == 3.* ]]; ... | language: python
python:
- "2.6"
- "2.7"
os:
- linux
install:
- echo "Build on $TRAVIS_OS_NAME for Python $TRAVIS_PYTHON_VERSION"
- bash .travis/install_python.sh
- export PATH="$HOME/miniconda/bin:$PATH"
- source activate test-env
- pip install coveralls
- if [[ "$TRAVIS_PYTHON_VERSION" == 3.* ]]; ... | Build docs as part of Travis CI. | Build docs as part of Travis CI.
| YAML | mit | RondaStrauch/landlab,laijingtao/landlab,RondaStrauch/landlab,RondaStrauch/landlab,cmshobe/landlab,ManuSchmi88/landlab,csherwood-usgs/landlab,decvalts/landlab,amandersillinois/landlab,amandersillinois/landlab,decvalts/landlab,Carralex/landlab,landlab/landlab,landlab/landlab,cmshobe/landlab,ManuSchmi88/landlab,Carralex/l... |
03f2608eaf7e03d6cddfca46639dd779f665da6b | .travis.yml | .travis.yml | language: objective-c
env:
- CEDAR_SDK_VERSION="5.1"
- CEDAR_SDK_VERSION="6.0"
# Travis does not currently have 6.1 iPhoneSim SDK
# - CEDAR_SDK_VERSION="6.1"
script: rake
| language: objective-c
env:
- CEDAR_SDK_VERSION="5.1"
- CEDAR_SDK_VERSION="6.0"
- CEDAR_SDK_VERSION="6.1"
script: rake
| Enable running against iOS SDK 6.1 in CI | Enable running against iOS SDK 6.1 in CI
| YAML | mit | irfanah/cedar,jasperblues/cedar,hsienchiaolee/cedar,tjarratt/cedar,idoru/cedar,jasperblues/cedar,pivotal/cedar,irfanah/cedar,jeffh/cedar,briancroom/cedar,jasperblues/cedar,hsienchiaolee/cedar,tjarratt/cedar,idoru/cedar,pivotal/cedar,jeffh/cedar,idoru/cedar,tjarratt/cedar,briancroom/cedar,jasperblues/cedar,briancroom/ce... |
a3fe3cb4c051444d0cf6ba3c247293e554cffd0b | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
sudo: required
services:
- docker
install:
- pip install -r requirements.txt
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
-... | language: python
python:
- "3.4"
- "3.5"
- "3.6"
sudo: required
services:
- docker
install:
- pip install -r dev-requirements.txt
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
... | Install the dev-requirements.txt on TravisCI | Install the dev-requirements.txt on TravisCI
| YAML | apache-2.0 | theia-log/theia,theia-log/theia |
80c8e32c92762719f4cdfdbd3c9fb314425f1f20 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
bundler_args: --without development
before_script:
- psql -c 'create database restful_test;' -U postgres
| language: ruby
rvm:
- 2.2.2
bundler_args: --without development
before_script:
- psql -c 'create database restful_test;' -U postgres
| Update Ruby version for TravisCi | Update Ruby version for TravisCi
| YAML | mit | mariochavez/restful,mariochavez/restful,mariochavez/restful |
5c68ab0099849b4dc1efc4f3e13f113ee7412eba | .travis.yml | .travis.yml | script:
# By default Travis CI executes './gradlew build connectedCheck' if no 'script:' section found.
- ./gradlew clean build connectedCheck
language: android
jdk:
- oraclejdk8
android:
components:
- tools
- build-tools-26.0.1
- android-26
- extra-android-m2repository
# System image ne... | script:
# By default Travis CI executes './gradlew build connectedCheck' if no 'script:' section found.
- ./gradlew clean build connectedCheck
language: android
jdk:
- oraclejdk8
android:
components:
- tools
- build-tools-26.0.1
- android-26
- android-22
- extra-android-m2repository
... | Downgrade emulator API to 22 | Downgrade emulator API to 22
| YAML | apache-2.0 | literacyapp-org/literacyapp-appstore |
58f7e4a39f42c4d3bf22a424edc5456c92fe2e76 | .travis.yml | .travis.yml | language: android
jdk: oraclejdk8
android:
components:
- tools
- tools # See https://github.com/travis-ci/travis-ci/issues/6040#issuecomment-219367943
- platform-tools
- build-tools-25.0.2
- android-24
- android-25
- sys-img-armeabi-v7a-android-24
- extra-android-support
- extra-an... | language: android
jdk: oraclejdk8
android:
components:
- tools
- tools # See https://github.com/travis-ci/travis-ci/issues/6040#issuecomment-219367943
- platform-tools
- build-tools-25.0.2
- android-24
- android-25
- sys-img-armeabi-v7a-android-24
- extra-android-support
- extra-an... | Use the android-wait-for-emulator before_script hook. | Use the android-wait-for-emulator before_script hook.
| YAML | mit | timoschloesser/turbolinks-android,gavinliu/turbolinks-android,gavinliu/turbolinks-android,turbolinks/turbolinks-android,gavinliu/turbolinks-android,timoschloesser/turbolinks-android,timoschloesser/turbolinks-android,gavinliu/turbolinks-android,turbolinks/turbolinks-android,turbolinks/turbolinks-android,turbolinks/turbo... |
0bf8f8ca765b816484e883254bd29231dd78645d | .travis.yml | .travis.yml | language: clojure
lein: lein
script: "lein do compile, spec"
matrix:
include:
- addons:
apt:
packages:
- openjdk-6-jdk
jdk: openjdk6
- openjdk7
- openjdk8
- oraclejdk8
- oraclejdk9
- oraclejdk11
| language: clojure
lein: lein
script: "lein do compile, spec"
addons:
apt:
packages:
- openjdk-6-jdk
jdk:
- openjdk6
- openjdk7
- openjdk8
- oraclejdk8
- oraclejdk9
- oraclejdk11
| Revert "Try undocumented build matrix setup for openjdk6" | Revert "Try undocumented build matrix setup for openjdk6"
This reverts commit 6952f2aec233e2d7b692472161a077496600b234.
| YAML | epl-1.0 | trptcolin/reply,trptcolin/reply |
4aab585cc9fe93f97f976e9d26decd4c5ddad865 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
| language: node_js
node_js:
- "4.4"
- "6.2"
| Move the CI to Node 4+ | Move the CI to Node 4+
| YAML | mit | ikr/react-star-rating-input,ikr/react-star-rating-input,ikr/react-star-rating-input |
6c8378c53baff59f3d44a7a83a38feebcbb3c3c4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4.1
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push brianknight10/quimby;
fi
| language: ruby
rvm:
- 2.4.1
| Remove Docker push from Travis build | Remove Docker push from Travis build
| YAML | mit | brianknight10/quimby,brianknight10/quimby,brianknight10/quimby,brianknight10/quimby |
57dda5600dd156a44e51969787338910b978ff06 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
git:
depth: 1
branches:
only:
- master
before_install:
- npm install -g npm
- npm --version | language: node_js
node_js:
- "0.8"
- "0.10"
git:
depth: 10
branches:
only:
- master
before_install:
- npm install -g npm
- npm --version | Raise git clone depth in Travis | Raise git clone depth in Travis
Closes #5
| YAML | mit | KenanY/rpn |
c6a87e5f61b6fe568e841d24fe587a6dda68045e | .travis.yml | .travis.yml | language: ruby
cache: bundler
bundler_args: --jobs 1 --retry 4 --without development --path vendor/bundle
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- ruby-head
- rbx-2
env:
- COMPILER=gcc
- COMPILER=clang
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
branches:
only:
- master... | language: ruby
cache: bundler
bundler_args: --jobs 1 --retry 4 --without development --path vendor/bundle
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
- ruby-head
- rbx-2
env:
- COMPILER=gcc
- COMPILER=clang
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
branches:
only:
... | Add Ruby 2.2.0 on Travis CI. | Add Ruby 2.2.0 on Travis CI.
Signed-off-by: Krzysztof Wilczynski <9bf091559fc98493329f7d619638c79e91ccf029@linux.com>
| YAML | apache-2.0 | kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz |
d6c32f4689f53c0fc5768e93634b1294705a48e3 | .travis.yml | .travis.yml | language: csharp
branches:
except:
- site-src
- gh-pages
env:
global:
- EnableNuGetPackageRestore=true
matrix:
- TARGET=release-mono
- TARGET=release
install:
- mkdir _bootstrap
- wget "https://github.com/vigoo/bari/releases/download/1.0.1/bari-1.0.1-mono.zip" -P _bootstrap
- unzip _bootstra... | language: objective-c
branches:
except:
- site-src
- gh-pages
env:
global:
- EnableNuGetPackageRestore=true
- BUILDNO=${TRAVIS_BUILD_NUMBER}
- MONO_VERSION="3.8.0"
matrix:
- TARGET=release-mono
- TARGET=release
before_install:
- wget "http://download.mono-project.com/archive/${MONO_VERSION}/m... | Revert "Travis build configuration changes" | Revert "Travis build configuration changes"
This reverts commit e61b9eec03536c5537eee90e71f8bee862746e52.
| YAML | apache-2.0 | Psychobilly87/bari,vigoo/bari,vigoo/bari,vigoo/bari,Psychobilly87/bari,Psychobilly87/bari,vigoo/bari,Psychobilly87/bari |
4e636f942b6d59fe5a830bacd6a928952181eb87 | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
| language: node_js
matrix:
include:
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 6
- node_js: node
| Drop support for old Node | Drop support for old Node
| YAML | mit | timdp/rollup-plugin-strip-logger |
00f9188c0d3cc06b283683aa998002cea1d05178 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "nightly"
# command to run tests
script: pytest
install:
- pip install -e . | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "nightly"
# command to run tests
script: nosetests
install:
- pip install -e .
| Revert to nosetests in Travis CI | Revert to nosetests in Travis CI
| YAML | mit | soslan/passgen |
3d7ee11b3f6e3c92c81649aed4ae3762c79e8550 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '4'
- '0.12'
- '0.10'
addons:
apt:
packages: nasm
| sudo: false
language: node_js
node_js:
- '6'
- '4'
addons:
apt:
packages: nasm
| Stop testing on ancient versions of Node.js | Stop testing on ancient versions of Node.js
| YAML | mit | imagemin/jpegtran-bin |
59b6bc10719c1ff28541e9b3a1b4c7b17937caac | .travis.yml | .travis.yml | language: node_js
node_js: 5
install: npm install
script:
- npm test
before_cache: npm prune
branches:
only:
- master
# force container based infra
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/#Routing-your-build-to-container-based-infrastructure
sudo: false
cache:
directories:
-... | language: node_js
node_js: 5
install: npm install react redux && npm install
script:
- npm test
before_cache: npm prune
branches:
only:
- master
# force container based infra
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/#Routing-your-build-to-container-based-infrastructure
sudo: false
... | Add the peer deps to the Travis build script | Add the peer deps to the Travis build script
| YAML | mit | seriouscircus/unirouter,bkonkle/unirouter |
516c77e7037faaf142790f69a41ad8cd1aaa8942 | .travis.yml | .travis.yml | ---
language: android
android:
components:
- tools
- tools
- platform-tools
- build-tools-24.0.1
- android-24
- extra-android-support
- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services
jdk:
- oraclejdk8
notifications:
email: true
be... | ---
language: android
android:
components:
- tools
- tools
- platform-tools
- build-tools-24.0.1
- android-24
- extra-android-support
- extra-android-m2repository
- extra-google-m2repository
- extra-google-google_play_services
jdk:
- oraclejdk8
notifications:
email: true
be... | Fix typo on script name | Fix typo on script name
| YAML | apache-2.0 | joaoevangelista/wakatime-android-client,joaoevangelista/wakatime-android-client |
93a85f035a57c93b07a8b69dcf7aecec5ecd88f7 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.11"
install:
- npm install -g gulp
- npm install
script:
- npm test
| language: node_js
node_js:
- "0.10"
- "0.11"
matrix:
allow_failures:
- node_js: "0.11"
install:
- npm install -g gulp
- npm install
script:
- npm test
| Add node 0.11 as allowed failure | Add node 0.11 as allowed failure
| YAML | mit | jubianchi/semver-check,jubianchi/semver-check |
5edf4b13fc0255e5861ced260593882c5c8abd03 | .travis.yml | .travis.yml | sudo: true
dist: trusty
language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
install:
- ./bin/composer install --no-interaction --no-progress --no-suggest
- ./bin/build app:install CHOWN_USER=$USER,CHGRP_GROUP=$USER,DB_NAME=a... | sudo: true
dist: trusty
language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
install:
- ./bin/composer install --no-interaction --no-progress --no-suggest
- ./bin/build app:install CHOWN_USER=$USER,CHGRP_GROUP=$USER,DB_NAME=a... | Increase sleep time to 10 seconds | Increase sleep time to 10 seconds
| YAML | mit | QoboLtd/project-template-cakephp,QoboLtd/project-template-cakephp,QoboLtd/project-template,QoboLtd/project-template-wordpress,QoboLtd/project-template-wordpress,QoboLtd/project-template,QoboLtd/project-template,QoboLtd/project-template-cakephp,QoboLtd/project-template-cakephp,QoboLtd/project-template-wordpress,QoboLtd/... |
17084442bfbf274fbccac1787418e241eb9f541a | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
env:
- DJANGO=1.4.10
- DJANGO=1.5
- DJANGO=1.5.5
- DJANGO=1.6
- DJANGO=1.6.1
- DJANGO=1.6.5
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install . --use-mirrors
script:
- python manage.py test logicaldelete
matrix:
exclude:
# Django doesn... | language: python
python:
- 2.6.5
- 2.7
env:
- DJANGO=1.4.10
- DJANGO=1.5
- DJANGO=1.5.5
- DJANGO=1.6
- DJANGO=1.6.1
- DJANGO=1.6.5
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install . --use-mirrors
script:
- python manage.py test logicaldelete
matrix:
exclude:
# Django doe... | Fix changes test python version from 2.6 to 2.6.5 (Django compatibility) | Fix changes test python version from 2.6 to 2.6.5 (Django compatibility)
| YAML | bsd-3-clause | angvp/django-logical-delete,angvp/django-logical-delete |
e032f78d3d157293de3444d7fd85f2fcaa2734f8 | .travis.yml | .travis.yml | ---
language: objective-c
before_script:
- sudo easy_install cpp-coveralls
script:
- xctool -workspace 'Collator.xcworkspace' -scheme 'CollatorTests' -configuration Debug build test GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
after_success:
- ./Scripts/coveralls.rb -h --exclude-fo... | ---
language: objective-c
before_script:
- sudo easy_install cpp-coveralls
script:
- xctool -workspace 'Collator.xcworkspace' -scheme 'CollatorTests' -configuration Debug build test GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
after_success:
- ./Scripts/coveralls.rb -h --exclude-fo... | Exclude pods from push to coveralls | Exclude pods from push to coveralls
| YAML | mit | ioveracker/Collator |
ee2238787cda6632148ec166e1698f4c36bf1ed4 | .travis.yml | .travis.yml | language: ruby
matrix:
include:
- rvm: 2.2
- rvm: 2.2
os: osx
- rvm: 2.3
- rvm: 2.3
os: osx
- rvm: 2.4
- rvm: 2.4
os: osx
- rvm: 2.5
- rvm: 2.5
os: osx
- rvm: 2.6
- rvm: 2.6
os: osx
sudo: false
script:
- bundle exec rake spec features
| language: ruby
matrix:
include:
- rvm: 2.3
- rvm: 2.3
os: osx
- rvm: 2.4
- rvm: 2.4
os: osx
- rvm: 2.5
- rvm: 2.5
os: osx
- rvm: 2.6
- rvm: 2.6
os: osx
sudo: false
script:
- bundle exec rake spec features
| Remove CI builds on Ruby 2.2 | Remove CI builds on Ruby 2.2
| YAML | mit | envato/stack_master,envato/stack_master |
d34f209388fc49cddcda02bbb75b9c9f5f8dbcd3 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
| sudo: false
language: node_js
node_js:
- "iojs"
- "0.12"
- "0.10" | Update Node.js versions to test build on | Update Node.js versions to test build on
| YAML | mit | bookyacom/simple-soundcloud |
fa6882be0476228800a4c32df9da489ea4f61eb9 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
before_install:
- git clone https://github.com/TravisToolbox/rubocop-travis.git
install:
- ./rubocop-travis/install.sh
script:
- ./rubocop-travis/scan.sh
| language: ruby
sudo: false
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
before_install:
- git clone https://github.com/TravisToolbox/rubocop-travis.git
install:
- ./rubocop-travis/install.sh
script:
- ./rubocop-travis/scan.sh
| Drop Ruby 2.2, add 2.7 | Drop Ruby 2.2, add 2.7
Former-commit-id: 6292938f2ec7f75ee0d0d9ff783ac7d229b8ef08 | YAML | mit | cyu/rack-cors,cyu/rack-cors,cyu/rack-cors |
96300251a2c7f48392ce175ceae1b411f1c576b0 | metadata/org.woheller69.weather.yml | metadata/org.woheller69.weather.yml | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: GPL-3.0-only
AuthorName: woheller69
SourceCode: https://github.com/woheller69/weather
IssueTracker: https://github.com/woheller69/weather/issues
Changelog: https://github.com/woheller69/weather/blob/main/CHANGELOG.md
AutoName: RadarWeather
RepoType: git
R... | AntiFeatures:
- NonFreeNet
Categories:
- Internet
License: GPL-3.0-only
AuthorName: woheller69
SourceCode: https://github.com/woheller69/weather
IssueTracker: https://github.com/woheller69/weather/issues
Changelog: https://github.com/woheller69/weather/blob/main/CHANGELOG.md
AutoName: RadarWeather
RepoType: git
R... | Update RadarWeather to 1.3 (13) | Update RadarWeather to 1.3 (13)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
dbae3ccf0de1227a439c8654dfef141e5f5cdc53 | .travis.yml | .travis.yml | ---
sudo: required
language: python
services:
- docker
branches:
only:
- travis-experiments
env:
matrix:
- MOLECULE_DISTRO: ubuntu1604
install:
# Use `--pre` flag to get molecule >= 2.20.
- pip install molecule docker --pre
script:
- molecule -c molecule/base-config.yml --debug test -s wordpress-d... | ---
sudo: required
language: python
services:
- docker
branches:
only:
- travis-experiments
env:
matrix:
- MOLECULE_DISTRO: ubuntu1604
install:
# Use `--pre` flag to get molecule >= 2.20.
- pip install molecule docker --pre
script:
- molecule -c molecule/base-config.yml test -s wordpress-deploy
| Disable `--debug` in Travis tests | Disable `--debug` in Travis tests
| YAML | mit | kentr/drupal-vm,kentr/drupal-vm,kentr/drupal-vm,kentr/drupal-vm,kentr/drupal-vm |
7df4ef8050657db66ed7f8eeefc6738203af893f | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
env:
- CHEF_VERSION=
- CHEF_VERSION="~> 10"
| language: ruby
rvm:
- 1.9.3
env:
- CHEF_VERSION=
- CHEF_VERSION="~> 10"
matrix:
include:
- rvm: 2.0.0
env: CHEF_VERSION=
| Test the latest Chef also with Ruby 2.0.0 (rc) | Test the latest Chef also with Ruby 2.0.0 (rc)
| YAML | mit | coletivoEITA/knife-solo,matschaffer/knife-solo,coletivoEITA/knife-solo,analog-analytics/knife-solo,analog-analytics/knife-solo,a2ikm/knife-solo,matschaffer/knife-solo,leonid-shevtsov/knife-solo,chadzilla2080/knife-solo,chadzilla2080/knife-solo,leonid-shevtsov/knife-solo,analog-analytics/knife-solo,chadzilla2080/knife-s... |
e1d0b26e092cdb533dbd1f6e456a4cb435a7b209 | .travis.yml | .travis.yml | sudo: false
addons:
apt:
packages:
- python-numpy
- python-scipy
# Quick fix, requires matrix for addons...
- python3-numpy
- python3-scipy
language: python
python:
- "2.7"
- "3.2"
virtualenv:
system_site_packages: true
install:
# install pyelectro
- pip install gi... | sudo: false
addons:
apt:
packages:
- python-numpy
- python-scipy
# Quick fix, requires matrix for addons...
- python3-numpy
- python3-scipy
language: python
python:
- "2.7"
- "3.5"
- "3.6"
virtualenv:
system_site_packages: true
install:
# install pyelectro
- pip ... | Update python 3 version for test | Update python 3 version for test | YAML | bsd-3-clause | NeuralEnsemble/neurotune,NeuralEnsemble/neurotune |
547c43af921b41e17e8588e0416bbec2d2819915 | .travis.yml | .travis.yml | language: scala
scala:
- 2.12.10
jdk:
- openjdk11
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
script:
- sbt ++$TRAVIS_SCALA_VERSION clean flowLint test doc
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.pr... | language: scala
scala:
- 2.12.10
jdk:
- openjdk11
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
script:
- sbt ++$TRAVIS_SCALA_VERSION clean flowLint test doc
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm -f
- find $HOME/.ivy2 -name "ivydata-*... | Update command to avoid failure when no files are found | Travis: Update command to avoid failure when no files are found
| YAML | mit | flowvault/proxy,flowvault/proxy,flowvault/proxy |
d1ec2c0c43fd1ab0cec1bd8af262df9f90189664 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk7
install: true
script: "./gradle/buildViaTravis.sh"
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_6efe1f7a551b_key -iv $encrypted_6efe1f7a551b_iv
-in gr... | language: java
sudo: false
jdk:
- openjdk7
install: true
script: "./gradle/buildViaTravis.sh"
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_install:
- test $TRAVIS_PULL_REQUEST = false && openssl aes-256-cbc -K $encrypted_6efe1f7a551b_key -iv $encrypted_6efe1f7a551b_iv
-in grad... | Switch to OpenJDK 7 for compatiblity with the new Trusty build infrastructure on Travis | Switch to OpenJDK 7 for compatiblity with the new Trusty build infrastructure on Travis
| YAML | apache-2.0 | nebula-plugins/gradle-info-plugin |
074ba3d9629a15b2953013dc20074e96b7c3e1f8 | .travis.yml | .travis.yml | language: ruby
cache: bundler
dist: trusty
sudo: false
rvm:
- 2.3.4
- 2.4.1
- ruby-head
before_install:
- gem install bundler
gemfile: ci.gemfile
env:
- CHEF_VERSION="master"
- CHEF_VERSION="~> 13.0"
matrix:
exclude:
- rvm: 2.3.4
env: CHEF_VERSION="master"
allow_failures:
- rvm: ruby-head... | language: ruby
cache: bundler
dist: trusty
sudo: false
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- ruby-head
before_install:
- gem install bundler
gemfile: ci.gemfile
env:
- CHEF_VERSION="master"
- CHEF_VERSION="~> 13.0"
matrix:
exclude:
- rvm: 2.3.8
env: CHEF_VERSION="master"
allow_failures:
- rvm:... | Test on modern ruby releases | Test on modern ruby releases
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/knife-windows,MsysTechnologiesllc/knife-windows,chef/knife-windows,ClogenyTechnologies/knife-windows,MsysTechnologiesllc/knife-windows,ClogenyTechnologies/knife-windows |
bad463d1dd5e93c1d131cf1a12b59e74609e7f09 | .travis.yml | .travis.yml | sudo: required
jobs:
include:
- stage:
language: python
services:
docker
env:
- TOXENV=flake8
before_install: docker build -t axe-selenium-python .
install: skip
script:
- docker run -e TOXENV=$TOXENV axe-selenium-python tox
- stage:
language: ... | sudo: required
language: python
services:
- docker
jobs:
include:
- stage:
env:
- TOXENV=flake8
- stage:
env: TOXENV=py27
- stage:
env:
- TOXENV=py36
cache:
pip: true
before_install: docker build -t axe-selenium-python .
install: skip
script:
- docker run -e TOXEN... | Add Python 2.7 (py27) to Travis | Add Python 2.7 (py27) to Travis
| YAML | mpl-2.0 | kimberlythegeek/axe-selenium-python,kimberlythegeek/axe-selenium-python |
622325e1cca43ba58903b962dda3c53a56f150f3 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update || true
- composer install --no-interaction
script:
- phpunit --coverage-text
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update || true
- composer install --no-interaction
script:
- phpunit --coverage-text
| Add PHP 7.0 for tests | Add PHP 7.0 for tests | YAML | apache-2.0 | ramsey/moontoast-math |
1eacd226233c4a3b84b79aff8f5c6886515264c6 | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
dist: trusty
bundler_args: --without development
cache: bundler
before_script:
- unset _JAVA_OPTIONS
before_install:
- PATH=$(npm bin):$PATH # needed to install phantomjs via npm
- if [ $(phantomjs --version) != '2.1.1' ]; then npm install phantomjs-prebuilt@2.1; fi
- gem u... | ---
language: ruby
sudo: false
dist: trusty
bundler_args: --without development
cache: bundler
before_script:
- unset _JAVA_OPTIONS
before_install:
- PATH=$(npm bin):$PATH # needed to install phantomjs via npm
- if [ $(phantomjs --version) != '2.1.1' ]; then npm install phantomjs-prebuilt@2.1; fi
- gem u... | Revert "Until Rails 6 and related dependencies out of beta allow failures." | Revert "Until Rails 6 and related dependencies out of beta allow failures."
This reverts commit 99f8884e792cc70b639d0f78887734bed744260d.
| YAML | mit | varyonic/activeadmin,varyonic/activeadmin,varyonic/activeadmin |
90320f0d27679aaaa1ca1c801fd7ceae8b298b0a | .travis.yml | .travis.yml | before_install:
- sudo apt-get update -y
- sudo apt-get install -y gdebi python cowsay python-pip
- wget http://download.virtualbox.org/virtualbox/5.0.2/virtualbox-5.0_5.0.2-102096~Ubuntu~trusty_amd64.deb
- sudo gdebi virtualbox-5.0_5.0.2-102096-Ubuntu~trusty_amd64.deb
- wget https://dl.bintray.com/mitchellh/... | before_install:
- sudo apt-get update -y
- sudo apt-get install -y gdebi python cowsay python-pip
- wget http://download.virtualbox.org/virtualbox/5.0.2/virtualbox-5.0_5.0.2-102096~Ubuntu~trusty_amd64.deb
- sudo gdebi virtualbox-5.0_5.0.2-102096~Ubuntu~trusty_amd64.deb
- wget https://dl.bintray.com/mitchellh/... | Fix virtualbox installation line typo with gdebi. | Fix virtualbox installation line typo with gdebi.
| YAML | bsd-3-clause | fangohr/virtualmicromagnetics,computationalmodelling/virtualmicromagnetics,fangohr/virtualmicromagnetics,computationalmodelling/virtualmicromagnetics |
31ca6092447f86a808fd99086a0d1559b4df1786 | .travis.yml | .travis.yml | language: csharp
dist: trusty
sudo: required
mono: none
dotnet: 1.0.0-preview4-004233
script:
- dotnet restore
- dotnet build -f netstandard1.6
- dotnet test ./test/Qwack.Dates.Tests
- dotnet test ./test/Qwack.Math.Tests
- dotnet test ./test/Qwack.Core.Tests | language: csharp
dist: trusty
sudo: required
mono: none
dotnet: 2.1.302
script:
- dotnet restore
- dotnet build -f netstandard1.6
- dotnet test ./test/Qwack.Dates.Tests
- dotnet test ./test/Qwack.Math.Tests
- dotnet test ./test/Qwack.Core.Tests
| Update .net sdk version on linux | Update .net sdk version on linux
| YAML | mit | cetusfinance/qwack,cetusfinance/qwack,cetusfinance/qwack,cetusfinance/qwack |
192c97c6c53717859d94ee4185b0cf464df11d29 | .travis.yml | .travis.yml | dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm... | dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then n... | Use the latest Firefox ESR for testing | Use the latest Firefox ESR for testing
| YAML | apache-2.0 | Collaborne/paper-drawer |
704f67e9a1899ffa4690b2f181cab491fd6c997c | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
- bower_components
env:
global:
- secure: V1avJLT7GNb/b/0KkbCuZis1LiXYZBwhj91ywHfVhkje+dLHnDdG683TA/mmf1x5kWcxkjmfig98Wv+nCwThUv2x541IZQdKZKqc7XA39FkR0rbcyUzfUrEpxMjsISIYpGN8ZwDRGP0D1GZrnVklPysmEU8cPd9ZQvwXB8nGWbA=
- secure: Ca... | language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
- bower_components
env:
global:
- secure: V1avJLT7GNb/b/0KkbCuZis1LiXYZBwhj91ywHfVhkje+dLHnDdG683TA/mmf1x5kWcxkjmfig98Wv+nCwThUv2x541IZQdKZKqc7XA39FkR0rbcyUzfUrEpxMjsISIYpGN8ZwDRGP0D1GZrnVklPysmEU8cPd9ZQvwXB8nGWbA=
- secure: Ca... | Add more instrumentation about state of Travis environment | Add more instrumentation about state of Travis environment
| YAML | agpl-3.0 | ecdex/tsme,ecdex/tsme |
5867b35dfd7a5d7060edffa26d8d06049b1d7bdd | .travis.yml | .travis.yml | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-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... | # 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/chefd... | Use the pre-release builds of chefdk | Use the pre-release builds of chefdk
| YAML | apache-2.0 | mattjalexander/openldap,HomesiteInsurance/openldap,fatboy/openldap,opscode-cookbooks/openldap,HomesiteInsurance/openldap,PaytmLabs/chef-openldap,chef-cookbooks/openldap,mattjalexander/openldap,opscode-cookbooks/openldap,PaytmLabs/chef-openldap,fatboy/openldap,chef-cookbooks/openldap |
ed0776f3eb6c6c894fffca31d735e00ac43ab7c3 | codefresh.yml | codefresh.yml | version: '1.0'
steps:
agent_test:
image: node:7.2.0
working_directory: ${{main_clone}}/agent
commands:
- npm i -g yarn
- yarn install
- yarn test
agent_build:
type: build
working_directory: ${{main_clone}}/agent
tag: latest
image_name: httpmark-test-agent
agent_pu... | version: '1.0'
steps:
agent_test:
image: node:7.2.0
working_directory: ${{main_clone}}/agent
commands:
- npm i -g yarn
- yarn install
- yarn test
agent_build:
type: build
working_directory: ${{main_clone}}/agent
tag: latest
image_name: httpmark-test-agent
when:
... | Add build and push steps as conditional | Add build and push steps as conditional
| YAML | mit | httpmark/httpmark,httpmark/httpmark,httpmark/httpmark |
d4d210447a7b27715e1dcd509007eb4207bf3e2a | config/secrets.yml | config/secrets.yml | # Be sure to restart your server when you modify this file.
# Your secret key for verifying the integrity of signed cookies.
# If you change this key, all old signed cookies will become invalid!
# Make sure the secret is at least 30 characters and all random,
# no regular words or you'll be exposed to dictionary attac... | # Be sure to restart your server when you modify this file.
# Your secret key for verifying the integrity of signed cookies.
# If you change this key, all old signed cookies will become invalid!
# Make sure the secret is at least 30 characters and all random,
# no regular words or you'll be exposed to dictionary attac... | Set staging secret key from environment | Set staging secret key from environment
| YAML | agpl-3.0 | GabrielSandoval/growstuff,GabrielSandoval/growstuff,jdanielnd/growstuff,CarsonBills/GrowStuffCMB,CjayBillones/growstuff,cesy/growstuff,jdanielnd/growstuff,gustavor-souza/growstuff,sksavant/growstuff,CloCkWeRX/growstuff,CjayBillones/growstuff,sksavant/growstuff,pozorvlak/growstuff,yez/growstuff,Growstuff/growstuff,Br3nd... |
26dea13244a665207bc8e85dc94303e370f06e96 | packages/co/constraint-classes.yaml | packages/co/constraint-classes.yaml | homepage: http://github.com/guaraqe/constraint-classes#readme
changelog-type: ''
hash: 4e8f2f7f13f2d4f11d8592d362382ac96216b8315f031bff2c907664ab8c2ddb
test-bench-deps: {}
maintainer: guaraqe@openmailbox.org
synopsis: Prelude classes using ConstraintKinds
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
all-versions:
... | homepage: http://github.com/guaraqe/constraint-classes#readme
changelog-type: ''
hash: aab65d089a266dae537e561ce441303d23895a8eda0c794478cd16d4a2d4c802
test-bench-deps: {}
maintainer: guaraqe@openmailbox.org
synopsis: Various typeclasses using ConstraintKinds
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
constrai... | Update from Hackage at 2016-12-27T04:23:08Z | Update from Hackage at 2016-12-27T04:23:08Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
b1592636c1517376b27071df2945cdd3e9542b90 | .codeclimate.yml | .codeclimate.yml | ---
engines:
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
fixme:
enabled: true
rubocop:
enabled: true
ratings:
paths:
- Gemfile.lock
- "**.inc"
- "**.js"
- "**.jsx"
- "**.module"
- "*... | ---
engines:
bundler-audit:
enabled: true
duplication:
enabled: true
config:
languages:
- ruby
- javascript
- python
- php
fixme:
enabled: true
rubocop:
enabled: true
checks:
Rubocop/Metrics/MethodLength:
enabled: false
ratings:
paths:
- Ge... | Remove method length checking because the length is unavoidable | Remove method length checking because the length is unavoidable
| YAML | mit | Madobe/shimapan |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.