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 |
|---|---|---|---|---|---|---|---|---|---|
fbf835374292eca030fe60f70373250299e6513f | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
| language: ruby
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
| Update ruby versions being tested | Update ruby versions being tested
| YAML | mit | philosophie/mixpal,philosophie/mixpal,philosophie/mixpal |
ca9e7a74e398c6ca12bce7fe5f996cb270d30bc3 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
python:
- 3.6
install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_... | sudo: required
dist: trusty
language: python
python:
- 3.6
install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_... | Install xdist at Travis environment. | Install xdist at Travis environment.
| YAML | apache-2.0 | GPflow/GPflow |
d443abd08aed40c2e1b3292777d3fab467654e6f | .travis.yml | .travis.yml | language: php
php:
- '7.0'
- '7.1'
- nightly
before_script:
- composer install -o
after_script:
- |
if [ $TRAVIS_PHP_VERSION = '7.0' ]; then
travis_retry wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
... | language: php
php:
- '7.0'
- '7.1'
before_script:
- composer install -o
after_script:
- |
if [ $TRAVIS_PHP_VERSION = '7.0' ]; then
travis_retry wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
fi
insta... | Remove nightly builds from CI | Remove nightly builds from CI
| YAML | mit | Lednick/webhooks,Lednick/webhooks,paymaxi/webhooks,dzubchik/webhooks,paymaxi/webhooks,dzubchik/webhooks |
0622f2b5bf7c905d52ad09ff54e4d25121b4babd | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
script: "./gradlew check --info --stacktrace"
| sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk9
script: "./gradlew check --info --stacktrace"
| Add build for Java 9. | Add build for Java 9.
| YAML | apache-2.0 | jenetics/jpx,jenetics/jpx |
7e7ec6eb613b2eadf5c87c6ba97710fe0735f15f | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Build with Node.js 10 on Travis CI. | Build with Node.js 10 on Travis CI.
| YAML | mit | bigeasy/paxos,bigeasy/paxos |
bc702f0c42ff072eec38e2235b97d6ae91a52144 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "3.4"
install:
- pip install -r requirements.txt
- pip install azure-storage
script:
- cd azure-servicebus/tests
- bash run-servicebus
- cd ../..
- cd azure-servicemanagement-legacy/tests
- bash run-legacy-mgmt
- cd ../..
- cd azure-mgmt/tests
- bash run-mgm... | sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
- pip install azure-storage
script:
- cd azure-servicebus/tests
- bash run-servicebus
- cd ../..
- cd azure-servicemanagement-legacy/tests
- bash run-legacy-mgmt
- cd ../..
- cd azure-mgmt/te... | Add Python 2.7 and 3.5 to Travis | Add Python 2.7 and 3.5 to Travis
| YAML | mit | lmazuel/azure-sdk-for-python,AutorestCI/azure-sdk-for-python,Azure/azure-sdk-for-python,Azure/azure-sdk-for-python,v-iam/azure-sdk-for-python,rjschwei/azure-sdk-for-python,Azure/azure-sdk-for-python,SUSE/azure-sdk-for-python,Azure/azure-sdk-for-python |
ff33a89814abe733b2af081f789e69f8d559d142 | .travis.yml | .travis.yml | language: scala
scala:
- 2.10.3
before_script:
- npm install bower
- npm install grunt-cli
- gem install sass
- cd public
- npm install
- bower install
- cd ..
script:
- cd public
- grunt test
- cd ..
- sbt test
deploy:
provider: heroku
api_key:
secure: RwSpEp49ALY8s4x6/HonZXrm0URSl8rgyLsZ8PhRQHN/P/pgPnUwsEWh6y... | language: scala
scala:
- 2.10.3
before_script:
- npm install bower
- npm install grunt-cli
- gem install sass
- cd public
- npm install
- bower install
- cd ..
script:
- cd public
- grunt test
- cd ..
- sbt test
deploy:
provider: heroku
api_key:
secure: RwSpEp49ALY8s4x6/HonZXrm0URSl8rgyLsZ8PhRQHN/P/pgPnUwsEWh6y... | Add the Heroku play buildpack. | Add the Heroku play buildpack.
| YAML | apache-2.0 | DwayneJengSage/BridgePF,alxdarksage/BridgePF,Sage-Bionetworks/BridgePF,Sage-Bionetworks/BridgePF,alxdarksage/BridgePF,alxdarksage/BridgePF,Sage-Bionetworks/BridgePF,DwayneJengSage/BridgePF,DwayneJengSage/BridgePF |
ee75a3df99952394844f50e21e44736a8526c849 | .travis.yml | .travis.yml | language: java
sudo: false # faster builds
script:
- ./gradlew assemble test --info --debug
after_success:
- bash <(curl -s https://codecov.io/bash)
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradl... | language: java
sudo: false # faster builds
jdk:
- oraclejdk8
script:
- ./gradlew assemble test
after_success:
- bash <(curl -s https://codecov.io/bash)
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME... | Use jdk 8 to fix CI | Use jdk 8 to fix CI
| YAML | apache-2.0 | android/android-studio-poet,android/android-studio-poet |
e80919e0e325e44ce80642c22f9dccd2d78eac9d | .travis.yml | .travis.yml | language: php
php:
- 5.3
# - 5.4
env:
- SYMFONY_VERSION=2.0.16
- SYMFONY_VERSION=origin/master
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install
script: phpunit | language: php
php:
- 5.3
# - 5.4
env:
- SYMFONY_VERSION=2.2.*
- SYMFONY_VERSION=2.3.*
- SYMFONY_VERSION=2.4.*
- SYMFONY_VERSION=dev-master
install:
- composer require symfony/framework-bundle:${SYMFONY_VERSION}
script: phpunit
| Make sure we test with multiple symfony versions | Make sure we test with multiple symfony versions
| YAML | mit | ronanguilloux/EkinoNewRelicBundle,ronanguilloux/EkinoNewRelicBundle,ekino/EkinoNewRelicBundle,ronanguilloux/EkinoNewRelicBundle,ekino/EkinoNewRelicBundle |
a99dd96b85aa6bdf284b146383653af8b87dce82 | .travis.yml | .travis.yml | addons:
firefox: "latest"
dist: bionic
language: node_js
node_js:
- '10'
- '12'
- '14'
script:
- npm run build
| addons:
firefox: "latest"
dist: bionic
language: node_js
node_js:
- '12'
- '14'
- '16'
script:
- npm run build
| Update Node testing to current release schedule | Update Node testing to current release schedule | YAML | mit | jakezatecky/d3-funnel,jakezatecky/d3-funnel |
7bb58f1129dcba2b28a230e9a1e4b6ac728cbe8e | .travis.yml | .travis.yml | language: python
python: 3.5.1
dist: trusty
sudo: false
addons:
postgresql: "9.4"
services:
- postgresql
cache:
directories:
- ~/.cache/pip
- node_modules/
install:
- pip install -U pip setuptools wheel codecov
- pip install -r requirements/docs.txt -r requirements/lint.txt -r requirements/main.t... | language: python
python: 3.5.1
env:
global:
- TRAVIS_NODE_VERSION=5.5.0
dist: trusty
sudo: false
addons:
postgresql: "9.4"
services:
- postgresql
cache:
directories:
- ~/.cache/pip
- node_modules/
install:
- 'rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.n... | Upgrade Node to the latest stable | Upgrade Node to the latest stable
| YAML | apache-2.0 | dstufft/warehouse,pypa/warehouse,alex/warehouse,pypa/warehouse,karan/warehouse,alex/warehouse,karan/warehouse,alex/warehouse,dstufft/warehouse,karan/warehouse,alex/warehouse,wlonk/warehouse,karan/warehouse,alex/warehouse,pypa/warehouse,pypa/warehouse,wlonk/warehouse,wlonk/warehouse,dstufft/warehouse,karan/warehouse,dst... |
cf04fae6370d1be542910b60a1427287455693e2 | .travis.yml | .travis.yml | dist: trusty
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
# - nightly
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
- $HOME/.composer... | dist: trusty
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
# - nightly
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
- $HOME/.composer/cache
before_s... | Stop testing for PHP 5.4 and 5.5 | Stop testing for PHP 5.4 and 5.5
| YAML | mit | antonioribeiro/google2fa,antonioribeiro/google2fa |
39835aab0b7df131fd7d01eb97e1384bd3ecc461 | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
- openjdk10
- openjdk11
cache:
directories:
- $HOME/.m2
install: echo 'skipped'
script: ./mvnw test-compile && ./mvnw '-Dtest=test_locally.**.*Test' test -DfailIfNoTests=false && ./mvnw install -Dmaven.test.skip=true && ./mvnw duplicate-finder:check
| sudo: false
language: java
jdk:
- oraclejdk8
- openjdk11
cache:
directories:
- $HOME/.m2
install: echo 'skipped'
script: ./mvnw test-compile && ./mvnw '-Dtest=test_locally.**.*Test' test -DfailIfNoTests=false && ./mvnw install -Dmaven.test.skip=true && ./mvnw duplicate-finder:check
| Remove jdk10 in CI builds | Remove jdk10 in CI builds
| YAML | mit | seratch/jslack,seratch/jslack,seratch/jslack,seratch/jslack |
f4547a3c993568efebd78ec897ff9ccc5fcbf5f1 | .travis.yml | .travis.yml | language: objective-c
script:
- xcodebuild -workspace TravisExample.xcworkspace -scheme TravisExample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xcodebuild test -workspace TravisExample.xcworkspace -scheme TravisExampleTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
| language: objective-c
script:
- xctool -workspace TravisExample.xcworkspace -scheme TravisExample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool test -workspace TravisExample.xcworkspace -scheme TravisExampleTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
| Use xctool intead of xcodebuild | Use xctool intead of xcodebuild
| YAML | mit | MattesGroeger/TravisExample-iOS,lephuocdai/TravisExample-iOS,sundaymtn/TravisExample,sundaymtn/TravisExample,lephuocdai/TravisExample-iOS,OdNairy/TravisExample-iOS,MattesGroeger/TravisExample-iOS,OdNairy/TravisExample-iOS,tongxingwy/issue-6-travis-ci,tongxingwy/issue-6-travis-ci |
e640ca44f845481e3071c6675b7d723e3930c827 | .travis.yml | .travis.yml | language: rust
sudo: true
rust:
- nightly
- 1.0.0-beta
after_success: |
cargo clean;
cargo test --no-run;
sudo apt-get update &&
sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev binutils-dev &&
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&... | language: rust
sudo: true
rust:
- nightly
- 1.0.0-beta
after_success: |
cargo clean;
cargo test --no-run;
sudo apt-get update &&
sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev binutils-dev &&
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&... | Revert "Make Travis send more coverage data." | Revert "Make Travis send more coverage data."
This reverts commit 0dcaa4247325b76684d59e2ac699bc81144cdb2b.
| YAML | apache-2.0 | dirvine/rust-utp |
bc96f066a2d1918317ed36ca08c7031ebc839fbf | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
# allow python dependencies to be installed via apt-get
virtualenv:
system_site_packages: true
# setup system for GUI testing
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xv... | language: python
python:
- "2.7"
- "3.2"
# allow python dependencies to be installed via apt-get
virtualenv:
system_site_packages: true
# setup system for GUI testing
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xv... | Set Travis CI to install pylint | Set Travis CI to install pylint
Changed the config file for Travis CI to have it install pylint in order to be able to run tests on the program.
Fixes #3
| YAML | mit | ExcaliburZero/jekyll-helper,ExcaliburZero/jekyll-helper |
a86855f1aff7eb3e8c85e77493fb5de42f3a5548 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
script:
- bundle exec rspec
- bundle exec rubocop
| sudo: false
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
script:
- bundle exec rspec
- bundle exec rubocop
| Configure Travis for better build performance | Configure Travis for better build performance
* set sudo: false to allow usage of their new container-based
infrastructure
* enable bundler caching
Change-Id: I5527d446e40688d2b564244c57883c4837dad77b
Reviewed-on: http://gerrit.causes.com/45436
Tested-by: jenkins <d95b56ce41a2e1ac4cecdd398defd7414407cc08@brigade.co... | YAML | mit | artemartemov/scss-lint-hdm |
e37ef7c17f7b2cbb34e820175e5de9f4318fcdf7 | metadata/com.lightning.walletapp.yml | metadata/com.lightning.walletapp.yml | AntiFeatures:
- NonFreeNet
Categories:
- Money
License: Apache-2.0
AuthorName: Anton Kumaigorodski
WebSite: https://lightning-wallet.com
SourceCode: https://github.com/btcontract/lnwallet
IssueTracker: https://github.com/btcontract/lnwallet/issues
Changelog: https://github.com/btcontract/lnwallet/releases
AutoName... | AntiFeatures:
- NonFreeNet
Categories:
- Money
License: Apache-2.0
AuthorName: Anton Kumaigorodski
WebSite: https://lightning-wallet.com
SourceCode: https://github.com/btcontract/lnwallet
IssueTracker: https://github.com/btcontract/lnwallet/issues
Changelog: https://github.com/btcontract/lnwallet/releases
AutoName... | Update BLW to 0.4.6 (155) | Update BLW to 0.4.6 (155)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
7329d3c2797bc204867f0a2a4d2da4aed78e8cb3 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "6"
- "8"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- g++ -v
| language: node_js
node_js:
- "6"
- "8"
- "10"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- g++ -v
| Remove v4 (eol), add v10 (active lts) | Remove v4 (eol), add v10 (active lts)
| YAML | mit | simonratner/node-simpleflake |
e79e5e3d8f842349034ca9710d8780b197df7c83 | .travis.yml | .travis.yml | language: rust
sudo: false
rust:
- 1.10.0
- 1.11.0
- stable
- beta
- nightly
before_script:
- pip install 'travis-cargo<0.2' --user
- export PATH=$HOME/.local/bin:$PATH
script:
- (cd quasi && travis-cargo --skip nightly test -- --features with-syntex)
- (cd quasi && travis-cargo doc -- --features with-synt... | language: rust
sudo: false
rust:
- 1.11.0
- 1.12.0
- stable
- beta
- nightly
before_script:
- pip install 'travis-cargo<0.2' --user
- export PATH=$HOME/.local/bin:$PATH
script:
- (cd quasi && travis-cargo --skip nightly test -- --features with-syntex)
- (cd quasi && travis-cargo doc -- --features with-synt... | Drop support for rust 1.10 | Drop support for rust 1.10
| YAML | apache-2.0 | erickt/rust-quasi,erickt/quasi |
b25977bede20c3dbfe06f44c8f7cf01e9af70fb3 | .travis.yml | .travis.yml | # .travis.yml
language: python
sudo: false
env:
#- LUA="lua=5.1"
- LUA="lua=5.2"
#- LUA="lua=5.3"
#- LUA="luajit=2.0"
#- LUA="luajit=2.1"
before_install:
- pip install hererocks
- hererocks lua_install -r^ --$LUA
- export PATH=$PATH:$PWD/lua_install/bin
install:
- luarocks install luacheck
- lua... | # .travis.yml
language: python
sudo: false
env:
#- LUA="lua=5.1"
- LUA="lua=5.2"
#- LUA="lua=5.3"
#- LUA="luajit=2.0"
#- LUA="luajit=2.1"
before_install:
- pip install hererocks
- hererocks lua_install -r^ --$LUA
- export PATH=$PATH:$PWD/lua_install/bin
install:
- luarocks install luacheck
- lua... | Remove subdir from busted call | Remove subdir from busted call
| YAML | mit | Andreas-Kreuz/ak-lua-skripte-fuer-eep,Andreas-Kreuz/ak-lua-skripte-fuer-eep |
f33af516f7e423193a98ccd3112ca28e2192267a | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
before_install:
- sudo apt-get update
- sudo apt-get install gir1.2-tracker-0.10 libtracker-sparql-0.10-dev
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake test"
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
before_install:
- sudo apt-get update
- sudo apt-get install tracker gir1.2-tracker-0.10 libtracker-sparql-0.10-dev
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake... | Install tracker in Travis CI environment. | Install tracker in Travis CI environment.
| YAML | lgpl-2.1 | mvz/gir_ffi-tracker |
5074eedff6605b92b44ef05bea68a6cdb8fdc21c | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- libboost-program-options-dev
- libpcap-dev
script:
- CXX=/usr/bin/g++-6 CC=/usr/bin/gcc-6 cmake .
- cmake --build .
| dist: trusty
sudo: false
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- libboost-program-options-dev
- libboost-regex-dev
- libboost-system-dev
- libpcap-dev
script:
- CXX=/usr/bin/g++-6 CC=/usr/bin/gcc-6 cmake .
- cmake --build .
| Add Boost libraries to Travis CI packages | Add Boost libraries to Travis CI packages
| YAML | apache-2.0 | petabi/regexbench,petabi/regexbench,petabi/regexbench,petabi/regexbench |
8d85734b6e3623da7e9566d538e0bf983d827b1b | .travis.yml | .travis.yml | language: php
php:
- '7.1'
- '7.0'
- '5.6'
- '5.5'
- '5.4'
- '5.3'
- '5.2'
install:
- phpenv local 5.3
- composer install
- phpenv local --unset
script:
- echo $TRAVIS_PHP_VERSION
- if [[ "$TRAVIS_PHP_VERSION" == "5.2" ]]; then phpunit; else ./vendor/bin/phpunit; fi
| language: php
php:
- '7.1'
- '7.0'
- '5.6'
- '5.5'
- '5.4'
- '5.3'
- '5.2'
install:
- phpenv local 5.3
- composer install
- if [[ "$TRAVIS_PHP_VERSION" == "5.2" ]]; then composer remove phpunit/phpunit; fi
- phpenv local --unset
script:
- echo $TRAVIS_PHP_VERSION
- if [[ "$TRAVIS_PHP_VERSION" == "5.2" ]]; then phpuni... | Exclude PHPUnit if PHP5.2 is loaded | Exclude PHPUnit if PHP5.2 is loaded
This is because we use the pre-installed PHPUnit for PHP5.2 and when we
keep it installed the autoload for PHPUnit will break stuff :(
| YAML | mit | schlessera/whip,OnTheGoSystems/whip,Yoast/whip |
c8a5b6cf81ac9c10eaa709a6522696bb17757aff | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
- "2.1.0"
script: TRAVIS=true bundle exec rake spec
| language: ruby
rvm:
- "2.1.10"
- "2.2.6"
- "2.3.2"
script: TRAVIS=true bundle exec rake spec
| Build against newer Ruby versions | Build against newer Ruby versions
| YAML | mit | magnusvk/counter_culture,magnusvk/counter_culture |
4dbad9f08e81e86e20586eab6361fff5162e525f | .travis.yml | .travis.yml | language: "node_js"
node_js:
- 0.4
- 0.6
| language: "node_js"
node_js:
- 0.4
- 0.6
- 0.8
| Test on node 0.8 in Travis CI. | Test on node 0.8 in Travis CI.
| YAML | mit | jaredhanson/passport-picplz |
f1202f645468f9e7267b23b4aa5112df53c8cfac | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- jruby
before_install:
- bundle install
- bundle exec rake vendor
- bundle exec rake install_jars
before_script:
- ./scripts/travis-before_script.sh
- source ./scripts/travis-variables.sh
script: bundle exec rspec
| language: ruby
cache: bundler
rvm:
- jruby
before_script:
- bundle exec rake vendor
- bundle exec rake install_jars
- ./scripts/travis-before_script.sh
- source ./scripts/travis-variables.sh
script: bundle exec rspec
| Stop breaking the bundler cache | Stop breaking the bundler cache
| YAML | mit | theangryangel/logstash-output-jdbc,theangryangel/logstash-output-jdbc |
f454dc5a0583d2a045b91802a46f8fb97fe8aba4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- ruby-head
before_install:
- if [ ${TRAVIS_RUBY_VERSION} = '2.2' ]; then
gem install bundler -v '< 2';
else
gem update --system;
gem install bundler;
fi
script:
- bundle exec rubocop
- bundle exec rspec
| language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- ruby-head
before_install:
- if [ ${TRAVIS_RUBY_VERSION} = '2.2' ]; then
gem install bundler -v '< 2';
else
gem update --system;
gem install bundler;
fi
script:
- bundle exec rubocop
- bundle exec rspec
| Make CI run on Ruby 2.6 | Make CI run on Ruby 2.6
| YAML | apache-2.0 | line/line-bot-sdk-ruby |
a5b7bef6e41de6a4559704225cc697b58e51200a | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.1.9
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
- jruby-9.1.7.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
script: bundle exec rake test
cache: bundler
services:
- mongodb
| language: ruby
sudo: false
rvm:
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
- jruby-9.1.7.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
script: bundle exec rake test
cache: bundler
services:
- mongodb
| Test MRI 2.1 on latest patch version on Travis | Test MRI 2.1 on latest patch version on Travis
| YAML | mit | janko-m/tus-ruby-server |
c02323d2b2b6dba9a7fe16a8e6b5898c40262ba0 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
cache: pip
services:
- postgresql
env:
- DB_USER=postgres DEBUG=True
install:
- pip install -U pip wheel
- pip install -r requirements.txt -r requirements-test.txt
before_script:
- psql -U postgres -c 'create extension postgis'
- psql -U postg... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
cache: pip
services:
- postgresql
addons:
postgresql: "9.4"
env:
- DB_USER=postgres DEBUG=True
install:
- pip install -U pip wheel
- pip install -r requirements.txt -r requirements-test.txt
before_script:
- psql -U postgres -c 'create extensio... | Fix Travis, specify PostgreSQL version | Fix Travis, specify PostgreSQL version
| YAML | mpl-2.0 | stev-0/bustimes.org.uk,stev-0/bustimes.org.uk,stev-0/bustimes.org.uk,jclgoodwin/bustimes.org.uk,jclgoodwin/bustimes.org.uk,stev-0/bustimes.org.uk,jclgoodwin/bustimes.org.uk,jclgoodwin/bustimes.org.uk,stev-0/bustimes.org.uk |
dcbf884a96655256f6f5bf89083d3eaef11fdf15 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
# command to install dependencies
install:
- "pip install pytest"
- "pip install bandit"
- "cd src/cobwebs; pip install -r requirements.txt; pip install .; cd -"
- "cd src/db... | language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
# command to install dependencies
install:
- "pip install pytest"
- "pip install bandit"
- "cd src/cobwebs; pip install -r requirements.txt; python setup.py install .; cd -"
... | Use setup.py instead of pip to install packages. | Use setup.py instead of pip to install packages.
| YAML | apache-2.0 | asteroide/immo_spider,asteroide/immo_spider,asteroide/immo_spider,asteroide/immo_spider |
4eb58c33905cb6b7516e3af4af89a05d30830c94 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.4
- 0.5
- 0.6
- 0.7
- 0.8
- 0.9
- 0.10 | language: node_js
node_js:
- 0.10
| Simplify test on only latest node.js | Simplify test on only latest node.js
Signed-off-by: crynobone <e1a543840a942eb68427510a8a483282a7bfeddf@gmail.com>
| YAML | mit | orchestral/javie,orchestral/javie |
c944af5ab4dcf0c7f2f4c12abf97079202a434f5 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.1
- 2.2.5
- 2.1.9
env:
- RAILS=3.2.22.1
- RAILS=4.1.14.1
- RAILS=4.2.5.1
- RAILS=5.0.0.0
matrix:
exclude:
- rvm: 2.1.9
env: RAILS=5.0.0.0
before_install:
- gem update bundler
| language: ruby
rvm:
- 2.3.1
- 2.2.5
- 2.1.9
env:
- RAILS=3.2.22.1
- RAILS=4.1.14.1
- RAILS=4.2.5.1
- RAILS=5.0.0.0
matrix:
exclude:
- rvm: 2.1.9
env: RAILS=5.0.0.0
before_install:
- gem update bundler
sudo: false
cache: bundler
| Speed up the CI build | Speed up the CI build
Use Travis' container based infrastructure and enable bundle caching in
order to speed up the CI builds.
| YAML | mit | jkraemer/mail-gpg,duckdalbe/mail-gpg,chrislewis60/mail-gpg |
61fa79b571a33e356db981db8ea9945b23286f02 | .travis.yml | .travis.yml | language: node_js
branches:
except:
- latest
node_js:
- '0.10'
- '0.12'
before_script:
- npm install -g grunt-cli
- ./create_config.sh
- gem install cucumber aruba
script:
- npm test
- cucumber -t ~@wip
- ./bin/category-sync -p ${SPHERE_PROJECT_KEY} import -f data/minimum-header.csv
notifications:
hipchat:
... | language: node_js
branches:
except:
- latest
node_js:
- '0.10'
- '0.12'
before_script:
- npm install -g grunt-cli
- ./create_config.sh
- gem install cucumber aruba
script:
- npm test
- cucumber -t ~@wip
notifications:
hipchat:
rooms:
template:
- '%{repository}#%{build_number} (%{author}): %{message}... | Remove execution as it's done by cucumber. | Remove execution as it's done by cucumber.
| YAML | mit | sphereio/sphere-category-sync,sphereio/sphere-category-sync,sphereio/sphere-category-sync |
61c1b4dc6801f2fc3441a36cc5e0808de24a8177 | .travis.yml | .travis.yml | dist: trusty
env:
NODE_ENV=test
language: node_js
node_js:
- "node"
- "8"
cache:
directories:
- "node_modules"
notifications:
email: false
addons:
postgresql: "9.6"
services:
- postgresql
before_script:
- psql -c 'create database bugfree_test;' -U postgres
| dist: trusty
env:
NODE_ENV=test
language: node_js
node_js:
- "node"
cache:
directories:
- "node_modules"
notifications:
email: false
addons:
postgresql: "9.6"
services:
- postgresql
before_script:
- psql -c 'create database bugfree_test;' -U postgres
| Set only one node version | Set only one node version
| YAML | agpl-3.0 | sevesalm/Bugfree |
1459735b1b47cf1a2348f4ac754fae6daf28bcc8 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.1
- 2.1.2
before_install: 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc'
install:
- bundle install --without=integration
- bundle update
script: bundle exec rake travis
| language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.1
- 2.1.2
before_install: 'echo ''gem: --no-document'' > ~/.gemrc'
install:
- bundle install --without=integration
- bundle update
script: bundle exec rake travis
| Use --no-document over --no-ri --no-rdoc. | Use --no-document over --no-ri --no-rdoc.
| YAML | apache-2.0 | ourtownrentals/chef-supermarket-solo,ourtownrentals/chef-php-modules,ourtownrentals/chef-server-solo,ourtownrentals/chef-supermarket-solo,ourtownrentals/chef-php-modules,ourtownrentals/chef-server-solo |
6b1c47787947d30fa86e3af970a2d22ead42d892 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
matrix:
- DJANGO_VERSION=">=1.5,<1.6"
- DJANGO_VERSION=">=1.6,<1.7"
- DJANGO_VERSION=">=1.7,<1.8"
- DJANGO_VERSION=">=1.8,<1.9"
install: pip install -r requirements_test.txt Django$DJANGO_VERSION python-binary-memcached
script: ./.travis-run... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
matrix:
- DJANGO_VERSION=">=1.7,<1.8"
- DJANGO_VERSION=">=1.8,<1.9"
install: pip install -r requirements_test.txt Django$DJANGO_VERSION python-binary-memcached
script: ./.travis-runs-tests.sh
| Remove not supported django versions | Remove not supported django versions
| YAML | mit | jaysonsantos/django-bmemcached,jaysonsantos/django-bmemcached |
09102be9b9c11fb6004baa47d7c50b3f4a306097 | .travis.yml | .travis.yml | language: go
install: "pip install --user -r requirements-dev.txt"
go:
- 1.4
- 1.4.1
- 1.4.2
- 1.5
- 1.5.1
- 1.5.2
| language: go
install: "pip install --user -r requirements-dev.txt"
go:
- 1.5
- 1.5.1
- 1.5.2
| Drop support for older versions of go | Drop support for older versions of go
| YAML | apache-2.0 | qnib/QNIBCollect,qnib/QNIBCollect,qnib/QNIBCollect,qnib/QNIBCollect |
bb8786e47a78e9db4e27c609a82aa9c3745b11e4 | .travis.yml | .travis.yml | language: node_js
node_js:
- stable
- "6"
- "4"
script:
- npm test
| language: node_js
node_js:
- "10"
- "8"
- "6"
script:
- npm test
| Update Travis CI Node versions | test(ci): Update Travis CI Node versions
| YAML | mit | jhermsmeier/node-fat32,jhermsmeier/node-fat32 |
76e574634160aa8ac1ecee14c49e35b8ecdd1285 | .travis.yml | .travis.yml | branches:
only:
- master
language: python
python:
- "3.4"
- "3.5"
- "3.6"
install: pip install tox-travis coveralls
script: tox
after_success: coveralls
| language: python
python:
- '3.4'
- '3.5'
- '3.6'
- '3.6-dev'
branches:
only:
- master
install: pip install tox-travis coveralls
script: tox
after_success: coveralls
deploy:
provider: pypi
user: dmtucker
password:
secure: n35Ze6Mj+lAQxTFVpdCN0wNz7HLddqKWHLzjZO6Z8a46Y1a3PYMNX7XRA+Qb+P1zz38a27N+oQ8IlyRVXBFya... | Deploy from Travis to PyPI on tags | Deploy from Travis to PyPI on tags
| YAML | lgpl-2.1 | dmtucker/backlog |
bc6dbcc498a33013e11f01c830cec53e6bef3f9c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 2.2.0
script:
- "bundle exec rake lint"
- "bundle exec rake spec"
env:
- PUPPET_VERSION=3.7.4
- PUPPET_VERSION=2.7.17
notifications:
email: false
gemfile: Gemfile
| language: ruby
rvm:
- 1.8.7
- 2.2.0
matrix:
allow_failures:
- rvm: 2.2.0
- env: PUPPET_VERSION=3.7.4
script:
- "bundle exec rake lint"
- "bundle exec rake spec"
env:
- PUPPET_VERSION=3.7.4
- PUPPET_VERSION=2.7.17
notifications:
email: false
gemfile: Gemfile
| Allow the ruby 2.2.0 and Puppet 3.7.4 builds to fail | TRAVIS: Allow the ruby 2.2.0 and Puppet 3.7.4 builds to fail
Ruby 2.2.0 and Puppet 3.7.4 don't play well together.
| YAML | bsd-2-clause | DonMaja/puppet-module-kerberos,michaelweiser/puppet-module-kerberos,edgester/puppet-module-kerberos,edgester/puppet-module-kerberos,DonMaja/puppet-module-kerberos,DonMaja/puppet-module-kerberos,edgester/puppet-module-kerberos,michaelweiser/puppet-module-kerberos,michaelweiser/puppet-module-kerberos |
9fa7a56c06a54aed7e235574c5d24f4df192a70d | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- 1.7
- tip
# Setting sudo access to false will let Travis CI use containers rather than
# VMs to run the tests. For more details see:
# - http://docs.travis-ci.com/user/workers/container-based-infrastructure/
# - http://docs.travis-ci.com/user/workers/standard-infrastructure/
sud... | language: go
go:
- 1.5
- 1.6
- 1.7
- 1.8
- 1.9
# Setting sudo access to false will let Travis CI use containers rather than
# VMs to run the tests. For more details see:
# - http://docs.travis-ci.com/user/workers/container-based-infrastructure/
# - http://docs.travis-ci.com/user/workers/standard-infrastruct... | Add 1.8, 1.9, rm tip as not stable | Add 1.8, 1.9, rm tip as not stable
| YAML | mit | hvnsweeting/gosearch,hvnsweeting/gosearch |
b0c9770aad5ba5169cd8907dda34904353d81c3b | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
| language: ruby
rvm:
- 1.9.3
- 2.0.0
allowed_failures:
- 2.0.0
| Put ruby 2 in allowed failures for now | Put ruby 2 in allowed failures for now
I have no idea why it's failing. It works fine on my local machine even
with a clean working tree.
| YAML | mit | grosser/spring,y-yagi/spring,pigoz/spring,mariusbutuc/spring,ypresto/spring,smathy/spring,rails/spring,universsky/spring-1,slobodankovacevic/spring,maclover7/spring,oggy/spring,oggy/spring |
88aeb904f892c3ecc2afde542e956d5f98532b6b | .travis.yml | .travis.yml | language: node_js
node_js:
- 8
- 10
- 12
- node
before_install: 'sudo apt-get update && sudo apt-get install -y graphicsmagick'
cache:
directories:
- node_modules
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
script: npm run test:ci
after_success: '<coverage/lcov.info... | language: node_js
node_js:
- 8
- 10
- 12
- 14
before_install: 'sudo apt-get update && sudo apt-get install -y graphicsmagick'
cache:
directories:
- node_modules
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
script: npm run test:ci
after_success: '<coverage/lcov.info .... | Drop node.js latest while waiting for canvas, add 14 | Drop node.js latest while waiting for canvas, add 14
| YAML | bsd-3-clause | assetgraph/assetgraph-sprite |
f073c2b74759c13b9e3c4d4cfa1e26705c1dac22 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
bundler_args: --jobs 3 --retry 3
branches:
only:
- master
# this avoids build issues with rainbow on old bundler/rubygems
before_install:
- gem update --system
- gem --version
- gem uninstall bundler -a -x -I
- rvm @global do ge... | sudo: false
language: ruby
cache: bundler
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
bundler_args: --jobs 3 --retry 3
branches:
only:
- master
# this avoids build issues with rainbow on old bundler/rubygems
before_install:
- gem update --system
- gem --version
- gem uninstall bundler -a -x -I
- rvm @global do ge... | Test on the latest Ruby releases | Test on the latest Ruby releases
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | mit | acrmp/foodcritic,Foodcritic/foodcritic |
ca313a9ffe250f0b6ad15614adef3824d10fdbef | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.11
- 0.10
install:
- npm install grunt-cli -g
- npm install
| language: node_js
node_js:
- 0.11
- 0.10
install:
- npm install grunt-cli -g
- npm install
notifications:
- email: false
| Update Travis to not send emails | Update Travis to not send emails | YAML | mit | giobero999/jquery-once,giobero999/jquery-once |
3ad07d0bd46e57c747d8885b18788ef3c216c06c | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
| Test on `4` and `5` | Test on `4` and `5`
| YAML | mit | gillstrom/multi-typeof |
04de02e3db313c3d70da9ba61917b645402ce30b | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
| sudo: false
language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
| Test more env on Travis CI | Test more env on Travis CI | YAML | mit | postcss/gulp-postcss,StartPolymer/gulp-html-postcss |
a5ff067e76d967c9fea91af6ada2cbc1b464ab15 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: node_js
node_js:
- 8
before_install:
- ( cd ..; git clone "https://github.com/davedoesdev/build-couchdb-travis.git"; cd build-couchdb-travis; wget -O - "https://github.com/davedoesdev/build-couchdb-travis/releases/download/$(git tag | tail -n 1)/build-couchdb.tar.gz" | tar -zx; ln... | sudo: false
dist: trusty
language: node_js
node_js:
- 8
- 10
before_install:
- ( cd ..; git clone "https://github.com/davedoesdev/build-couchdb-travis.git"; cd build-couchdb-travis; wget -O - "https://github.com/davedoesdev/build-couchdb-travis/releases/download/$(git tag | tail -n 1)/build-couchdb.tar.gz" | tar ... | Test on Node 10 too | Test on Node 10 too
| YAML | mit | davedoesdev/authorize-jwt,davedoesdev/authorize-jwt,davedoesdev/authorize-jwt |
0a7f9b20695dea40e37e6fb4833cf02973700838 | .travis.yml | .travis.yml | language: scala
scala:
- 2.10.0
- 2.9.3
script:
- "sbt ++$TRAVIS_SCALA_VERSION assembly"
| language: scala
scala:
- 2.10.0
- 2.9.2
script:
- "sbt ++$TRAVIS_SCALA_VERSION assembly"
- "scripts/test_tutorials.sh"
| Add test_tutorials back and change 2.9.3 back to 2.9.2. | Add test_tutorials back and change 2.9.3 back to 2.9.2.
| YAML | apache-2.0 | wanyifu/scaldingtest,sriramkrishnan/scalding,sriramkrishnan/scalding,oeddyo/scalding,benpence/scalding,bmyerz/scalding,sid-kap/scalding,bendridi/scalding,cchepelov/scalding,nkhuyu/scalding,f7753/scalding,JiJiTang/scalding,cchepelov/scalding,nkhuyu/scalding,soundcloud/scalding,cauchycui/scalding,sunilrebel/scalding,Aaro... |
4249a3d0575cab448fda53c19f5f801fb47f35c4 | .travis.yml | .travis.yml | language: go
go:
- 1.9
- 1.8.3
sudo: false
script:
- go vet ./...
- go test ./...
| language: go
go:
- 1.9.2
- 1.8.5
sudo: false
script:
- go vet ./...
- go test ./...
| Build against 1.9.2 and 1.8.5 | Build against 1.9.2 and 1.8.5 | YAML | mit | TV4/mms |
f366a486da4e0164e6bcad41a09506323cea637c | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
after_success: npm run coverage
| language: node_js
node_js:
- "13"
after_success: npm run coverage
| Upgrade to node.js version 13 in Travis | Upgrade to node.js version 13 in Travis
| YAML | bsd-3-clause | magjac/d3-graphviz |
b042d1f773fc618bb4dc9e5f8c3e5121ebb1bbe5 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.2.0
gemfile:
- test/gemfiles/rails-3.1
- test/gemfiles/rails-3.2
- test/gemfiles/rails-4.0
- test/gemfiles/rails-4.1
- test/gemfiles/rails-4.2
matrix:
exclude:
- { rvm: 2.0.0, gemfile: test/gemfiles/rails-3.1 }
- { rvm: 2.0.0, gemfile: test/gem... | language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3
gemfile:
- test/gemfiles/rails-4.0
- test/gemfiles/rails-4.1
- test/gemfiles/rails-4.2
notifications:
recipients:
email:
- cedric@howe.net
on_success: change
on_failure: always
| Drop Ruby 1.9 and Rails 3.x. | Drop Ruby 1.9 and Rails 3.x.
| YAML | mit | cedric/custom_counter_cache |
747a9e5d50376b6740635181bbe05ff45cb97bb8 | .travis.yml | .travis.yml | language: node_js
cache:
directories:
- node_modules
notifications:
slack:
on_success: change
on_failure: always
node_js:
- '7'
- '6'
- '4'
before_script:
- npm prune
after_success:
- npm run coverage
- cat coverage/lcov.info | node_modules/.bin/coveralls
- npm run semantic-release
bra... | language: node_js
cache:
directories:
- node_modules
notifications:
slack:
on_success: change
on_failure: always
node_js:
- 'node'
- '7'
- '6'
before_script:
- npm prune
after_success:
- npm run coverage
- cat coverage/lcov.info | node_modules/.bin/coveralls
- npm run semantic-release
... | Replace Travis build Node.Js 4 for latest Node.Js release | CI: Replace Travis build Node.Js 4 for latest Node.Js release
| YAML | mit | jy95/torrent-files-library |
af987a2a4d8ef354b7412240b21dda570a063f1a | crowdin.yml | crowdin.yml | files:
- source: /config/locales/en/**.yml
translation: /config/locales/%locale%/%original_file_name%
ignore:
- /config/locales/**/rails_date_order.yml
update_option: update_without_changes
languages_mapping:
locale:
ar: ar
ast: ast
ca: ca
es-ES: es
... | files:
- source: /config/locales/en/**.yml
translation: /config/locales/%locale%/%original_file_name%
ignore:
- /config/locales/**/rails_date_order.yml
update_option: update_without_changes
languages_mapping:
locale:
ar: ar
ast: ast
ca: ca
es-ES: es
... | Add Serbian (Cyrillic) new language mapping | Add Serbian (Cyrillic) new language mapping
This language_mapping setting was requested by Crowdin support
team to make Crowdin understand that we want Serbian (Latin)
translations files locale code `sr-CS` and Serbian (Cyrillic) with
locale code `sr`, we were asked to add the same mappings to
Crowdin project settings... | YAML | agpl-3.0 | consul/consul,consul/consul,consul/consul,consul/consul,consul/consul |
ba69638f1f717abb2aa8f85eace52eb66940e3d6 | .travis.yml | .travis.yml | language: csharp
solution: csharp-rest-client.sln
| language: csharp
solution: csharp-rest-client.sln
matrix:
include:
- dotnet: 2.1
mono: none
- mono: latest
| Build on both Mono and .NET Core | Build on both Mono and .NET Core
| YAML | isc | messagebird/csharp-rest-api |
dd034f0af2cd768da1676f61b2ec8a1ef4e3d5cb | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.3
before_install: gem install bundler -v 1.10.3
| language: ruby
rvm:
- 2.1
- 2.2
before_install: gem install bundler
| Build against modern ruby and bundler | Build against modern ruby and bundler
| YAML | mit | exciting-io/slack-bot-server |
1dc27b04c3da3f071dd84135c4483e672ab0f123 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6.16.0"
- "10.15.0" | language: node_js
node_js:
- "8.15.0"
- "10.15.0" | Update node envs in Travis config | Update node envs in Travis config
| YAML | mit | pawelgalazka/microcli,pawelgalazka/microcli |
267f82c384795a24b48d8ec8ad6966ff56d60ac2 | metadata/com.servoz.appsdisabler.yml | metadata/com.servoz.appsdisabler.yml | Categories:
- Security
- System
- Theming
License: GPL-3.0-or-later
AuthorWebSite: https://servoz.tk
SourceCode: https://github.com/aceventura82/AppsDisabler
IssueTracker: https://github.com/aceventura82/AppsDisabler/issues
AutoName: Disabler
RepoType: git
Repo: https://github.com/aceventura82/AppsDisabler
Bui... | Categories:
- Security
- System
- Theming
License: GPL-3.0-or-later
AuthorWebSite: https://servoz.tk
SourceCode: https://github.com/aceventura82/AppsDisabler
IssueTracker: https://github.com/aceventura82/AppsDisabler/issues
AutoName: Disabler
RepoType: git
Repo: https://github.com/aceventura82/AppsDisabler
Bui... | Update Disabler to 1.18 (18) | Update Disabler to 1.18 (18)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
b6dc7049318e013e7dd822bdde216ac2e888b027 | metadata/de.deftk.openww.android.yml | metadata/de.deftk.openww.android.yml | AntiFeatures:
- NonFreeNet
Categories:
- Science & Education
License: GPL-3.0-only
AuthorName: deftkHD
AuthorEmail: deftk@protonmail.com
SourceCode: https://github.com/deftkHD/OpenWebWeaver-Android
IssueTracker: https://github.com/deftkHD/OpenWebWeaver-Android/issues
Changelog: https://github.com/deftkHD/OpenWebWea... | AntiFeatures:
- NonFreeNet
Categories:
- Science & Education
License: GPL-3.0-only
AuthorName: deftkHD
AuthorEmail: deftk@protonmail.com
SourceCode: https://github.com/deftkHD/OpenWebWeaver-Android
IssueTracker: https://github.com/deftkHD/OpenWebWeaver-Android/issues
Changelog: https://github.com/deftkHD/OpenWebWea... | Update OpenWebWeaver to 0.4.1 (5) | Update OpenWebWeaver to 0.4.1 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
8c15cf74a8150069c5f4a7b5965b489c41a5432f | .travis.yml | .travis.yml | sudo: false
language: rust
os:
- linux
- osx
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
- rust: beta
before_script:
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
pip ins... | sudo: false
language: rust
os:
- linux
- osx
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
- rust: beta
before_script:
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
pip ins... | Add all tests to coveralls again | Add all tests to coveralls again
| YAML | apache-2.0 | Drakulix/simplelog.rs |
c76e0d178a0bdf1df9a98b7210ac801de24c6ad1 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake test:units"
sudo: false
cache: bundler
rvm:
- 2.5
- 2.4
- 2.3
- 2.2
gemfile:
- Gemfile.rails52
- Gemfile.rails51
- Gemfile.rails50
- Gemfile.rails42
matrix:
include:
- rvm: 2.1
gemfile: Gemfile.rails42
notifications:
email:
on_success: never
on_failure:... | language: ruby
script: "bundle exec rake test:units"
sudo: false
cache: bundler
before_install:
# https://github.com/travis-ci/travis-ci/issues/8978#issuecomment-354036443
- gem update --system
- gem install bundler
rvm:
- 2.5
- 2.4
- 2.3
- 2.2
gemfile:
- Gemfile.rails52
- Gemfile.rails51
- Gemfile.rails50
- Ge... | Fix Travis build for Ruby 2.5 | Fix Travis build for Ruby 2.5
https://github.com/travis-ci/travis-ci/issues/8978#issuecomment-354036443 | YAML | mit | whitby3001/active_merchant,3dna/active_merchant,waysact/active_merchant,planetargon/active_merchant,HealthWave/active_merchant,davidsantoso/active_merchant,appfolio/active_merchant,pinpayments/active_merchant,taf2/active_merchant,buttercloud/active_merchant,activemerchant/active_merchant,atxwebs/active_merchant,BaseCam... |
ae66c6b71058df55962aa0edd2218a6fd3f4f730 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
addons:
code_climate:
repo_token: e51aa6e4c897d14a365eaedad9ff94003d567b6018c3e8ff3be2c16354c486b1
before_install:
- pip install codecov
# install dependencies
install: "pip install -r requirements.txt"
# run tests
script: python test_ammDB.py
after_success:
... | language: python
python:
- "3.5"
addons:
code_climate:
repo_token: e51aa6e4c897d14a365eaedad9ff94003d567b6018c3e8ff3be2c16354c486b1
before_install:
- pip install codecov
# install dependencies
install: "pip install -r requirements.txt"
# run tests
script: python test_ammDB.py $db_pass
after_... | Add db_pass variable to script | Add db_pass variable to script
| YAML | mit | roncrush/SeniorProject,roncrush/SeniorProject |
759db01dbca17dd52a14d92b35826c0fcf554a2e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.5
- 2.5.3
- 2.6.3
- jruby-9.1.15.0
gemfile:
- gemfiles/rails1-4.gemfile
- gemfiles/rails5.gemfile
matrix:
exclude:
- gemfile: gemfiles/rails5.gemfile
rvm: 2.1.10
- gemfile: gemfiles/rails5.gemfile
rvm: jruby-9.1.6.0
before_insta... | language: ruby
rvm:
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.5
- 2.5.3
- 2.6.3
- jruby-9.1.15.0
gemfile:
- gemfiles/rails1-4.gemfile
- gemfiles/rails5.gemfile
matrix:
exclude:
- gemfile: gemfiles/rails5.gemfile
rvm: 2.1.10
- gemfile: gemfiles/rails5.gemfile
rvm: jruby-9.1.6.0
- gemfile... | Exclude Rails 4 from MRI 2.5 and 2.6 tests | Exclude Rails 4 from MRI 2.5 and 2.6 tests
| YAML | mit | Fivell/credit_card_validations |
7ba9bc7afad5e539f16138b45956ab2ef286d3c1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
| language: node_js
node_js:
- "0.10"
- "0.11"
| Stop testing against node 0.8.x | Stop testing against node 0.8.x
| YAML | mit | jay-depot/turnpike,jay-depot/turnpike |
57a4a2c11b5c0063c2786f61a1454caf1ef0d4f0 | .travis.yml | .travis.yml | language: node_js
node_js:
- stable
- 7
- 6
- 5
- 4
- 0
os:
- linux
- osx
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- doxygen
- g++-4.8
# Install scripts. (runs after repo cloning)
install:
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; ... | language: node_js
cache:
npm: true
node_js:
- stable
- 7
- 6
- 5
- 4
- 0
os:
- linux
- osx
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- doxygen
- g++-4.8
# Install scripts. (runs after repo cloning)
install:
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then ... | Enable Travis CI npm cache to speed up the tests | Enable Travis CI npm cache to speed up the tests
| YAML | apache-2.0 | BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC,BYVoid/OpenCC |
4600a4910d12ac7c95d73c6c3e8bf7d59b7934c7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3.0
- jruby
sudo: false
env:
- PURE_RUBY=1
- KITCHEN_SINK=1
script: bundle exec rake
bundler_args: --without docs release repl
matrix:
exclude:
- rvm: jruby
env: KITCHEN_SINK=1
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3.0
- jruby
sudo: false
script: bundle exec rake
bundler_args: --without docs release repl | Remove ENV Split in Travis | Remove ENV Split in Travis
We're not going to concern ourselves with environment variables that
relate to aws-sdk testing.
| YAML | apache-2.0 | awslabs/aws-sdk-ruby-record |
1d6f27b47ed6b824ea5714b4a7a712fc0750a13c | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
env:
- NPM_SCRIPT=test
- NPM_SCRIPT=test:cli
matrix:
fast_finish: true
allow_failures:
- env: NPM_SCRIPT=browserstack
include:
- node_js: "6"
env: NPM_SCRIPT=browserstack
- node_js: "6"
env: NPM_SCRIPT=coverage
befo... | sudo: false
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
env:
- NPM_SCRIPT=test
- NPM_SCRIPT=test:cli
matrix:
fast_finish: true
allow_failures:
- env: NPM_SCRIPT=browserstack
include:
- node_js: "9"
env: NPM_SCRIPT=browserstack
- node_js: "9"
env: NPM_SCRIPT=coverage
befo... | Use Node 9.x for matrix, cache node_modules | Build: Use Node 9.x for matrix, cache node_modules
| YAML | mit | qunitjs/qunit,qunitjs/qunit |
e130016807bfc2b929fa1c62089c75b23aa61c8a | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
before_install:
- pip install codecov
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements_test.txt
# command to run tests us... | # Config file for automatic testing at travis-ci.org
language: python
python:
- "3.5"
- "3.4"
- "2.7"
before_install:
- pip install codecov
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements_test.txt
# command to run tests using covera... | Drop Python3.3 from Travis tests. | Drop Python3.3 from Travis tests.
Python 3.3 is unsupported for Django 1.9, 1.10
| YAML | mit | LaunchlabAU/launchlab-django-utils,LaunchlabAU/launchlab-django-utils |
3482a78d71ecadd55bb61a113c2f1670ab0cdd8f | .travis.yml | .travis.yml | language: php
php:
- 5.5.9
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit run
notifications:
slack: andela:TeaB0c7SsX2IUwH8XR4Ehmh9 | language: php
php:
- 5.5.9
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
notifications:
slack: andela:TeaB0c7SsX2IUwH8XR4Ehmh9 | Remove run from script command | Remove run from script command
| YAML | mit | andela/suyabay,andela/suyabay,andela/suyabay |
af1197fc22dcc4beb5ab866df173332ab3882e30 | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- nightly
script:
- cargo build --verbose
- cargo test --verbose
- cargo bench --verbose
cache: cargo
| sudo: false
language: rust
rust:
- nightly
before_install:
# Check formatting
- cargo install rustfmt
script:
# Check build script formatting separately because cargo fmt doesn't pick it up
- rustfmt --write-mode=diff build.rs
# Check formatting of sources
- cargo fmt -- --write-mode=diff
- cargo build ... | Check formatting on Travis CI | Check formatting on Travis CI
| YAML | apache-2.0 | lunaryorn/xkpwgen.rs |
223031ada0c2ddd1b2ad3d1c9d71168945071d74 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- 3.6
- 3.7
- 3.8
env:
- DJANGO_VERSION=2.2.8
- DJANGO_VERSION=3.0
- DJANGO_VERSION=3.1
install:
- pip install -q coverage Django==$DJANGO_VERSION
script: coverage run --source=. ./runtests.py
after_success:
- bash <(curl -s https://codecov.io/bash)
| dist: xenial
language: python
python:
- 3.6
- 3.7
- 3.8
env:
- DJANGO_VERSION=2.2.8
- DJANGO_VERSION=3.0
- DJANGO_VERSION=3.1
install:
- pip install -q coverage Django==$DJANGO_VERSION
script: coverage run --source=. ./runtests.py
after_success:
- bash <(curl -s https://codecov.io/bash)
| Use xenial dist on Travis | Use xenial dist on Travis
| YAML | isc | RevolutionTech/django-pigeon |
70f6ce30a31c8ee662f98a8225ead09e80296866 | .travis.yml | .travis.yml | language: php
matrix:
fast_finish: true
include:
- php: 5.6
env: COVERAGE=1
- php: 5.3
env: OPTIMIZE=1
- php: 5.4
env: OPTIMIZE=1
- php: 5.5
env: OPTIMIZE=1
- php: 5.6
env: OPTIMIZE=1
- php: nightly
env: OPTIMIZE=1
- php: hhvm
env: OPTIMIZE=1
bra... | language: php
matrix:
fast_finish: true
include:
- php: 5.6
env: COVERAGE=1
- php: 5.3
env: OPTIMIZE=1
- php: 5.4
env: OPTIMIZE=1
- php: 5.5
env: OPTIMIZE=1
- php: 5.6
env: OPTIMIZE=1
- php: nightly
env: OPTIMIZE=1
- php: hhvm
env: OPTIMIZE=1
a... | Allow failures on PHP nightly for now | Allow failures on PHP nightly for now
| YAML | mit | s9e/TextFormatter,s9e/TextFormatter,s9e/TextFormatter,s9e/TextFormatter |
d5e4edc2e3bef98c0c364ecfb1343af484875b37 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
install:
- pip install pipenv
- pipenv install
script:
- python tests.py
- mypy parsenvy/parsenvy.py
- black . --check
| language: python
python:
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
install:
- pip install pipenv
- pipenv install
script:
- python tests.py
- mypy parsenvy/parsenvy.py
# - black . --check
| Remove Black check from CI due to bug | Remove Black check from CI due to bug
Relevant issue:
https://github.com/ambv/black/issues/494
| YAML | bsd-3-clause | nkantar/Parsenvy |
886f84dab6f1733d87f8f6f09e5bc6afb393afb2 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
after_success:
["git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-releng", ".forge-releng/publish"]
env:
global:
- PUBLIS... | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
after_success:
["git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-releng", ".forge-releng/publish"]
env:
global:
- PUBLIS... | Use modulesync to manage meta files | Use modulesync to manage meta files
| YAML | apache-2.0 | MelanieGault/puppet-archive,buzzdeee/puppet-archive,gcmalloc/puppet-archive,noris-network/puppet-archive,saimonn/puppet-archive,digitalmediacenter/puppet-archive,camptocamp/puppet-archive,DSI-Ville-Noumea/puppet-archive,salimane/puppet-archive |
75ebfd30285dd908258aae25ce5410ef3c9cefc0 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.6"
- "0.8"
- "0.10"
| language: node_js
node_js:
- "0.8"
- "0.10"
| Drop Node 0.6 from Travis | Drop Node 0.6 from Travis
| YAML | mit | annojs/fuzz |
ef5292ed241f132bd71b4d1b7caa19ef7558c041 | .travis.yml | .travis.yml | language: node_js
cache: yarn
node_js:
- node
- "12"
- "10"
- "8"
before_install:
- yarn global add pnpm
install:
- yarn install --ignore-engines
| language: node_js
cache: yarn
node_js:
- node
- "12"
- "10"
- "8"
before_install:
- yarn global add pnpm --ignore-engines
install:
- yarn install --ignore-engines
| Fix Node.js 8 at CI | Fix Node.js 8 at CI
| YAML | mit | ai/browserslist |
052ac60a8ad45427390c1ff93120333bd31eadf7 | .travis.yml | .travis.yml | dist: trusty
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
# - nightly
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
- $HOME/.composer... | dist: trusty
language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
# - nightly
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
- $HOME/.composer/cache
before_s... | Remove support for PHP 5.6 and 7.0 | Remove support for PHP 5.6 and 7.0
| YAML | mit | antonioribeiro/google2fa,antonioribeiro/google2fa |
772acc742e972a6a2c3e351f91d67d69a06f4346 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: rust
rust:
- nightly
- stable
cache: cargo
addons:
apt:
packages:
- libxxf86vm-dev
install:
- |
if [ $TRAVIS_OS_NAME = osx ]; then
rustup target add x86_64-apple-ios
fi
script:
- cargo build --verbose
- if [ $TRAVIS_OS_NAME =... | sudo: required
services:
- docker
language: rust
rust:
- nightly
- stable
cache: cargo
addons:
apt:
packages:
- libxxf86vm-dev
install:
- |
if [ $TRAVIS_OS_NAME = osx ]; then
rustup target add x86_64-apple-ios
fi
script:
- cargo build --verbose
- if [ $TRAVIS_OS_NAME =... | Build the window example for android | Build the window example for android
| YAML | apache-2.0 | tomaka/winit |
95f29ef11b9b5a07fcfb42f840cc93c0348b1466 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: node_js
cache:
directories:
- node_modules
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
node_js:
- "7"
matrix:
fast_finish: true
install:
- npm install
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb ... | sudo: required
dist: trusty
language: node_js
cache:
directories:
- node_modules
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
node_js:
- "7"
matrix:
fast_finish: true
install:
- npm install
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xv... | Fix for Travis CI Build | Fix for Travis CI Build
| YAML | mit | trustpilot/skift,trustpilot/skift |
7b7e970692ee00547d7a7fba07435fbfe87b7ed9 | .travis.yml | .travis.yml | language: generic
sudo: required
services:
- docker
- redis-server
addons:
postgresql: "9.4"
deploy:
notifications:
email:
- howardc93@gmail.com
- christian@paral.in
- aqc2109@columbia.edu
before_script:
- docker build -t "yasp/yasp:latest" .
script:
- docker run -e "TEST_SKIP_BUILD=y" -e "TEST_INSTALL_GLOBAL... | language: generic
sudo: required
services:
- docker
- redis-server
addons:
postgresql: "9.4"
deploy:
notifications:
email:
- howardc93@gmail.com
- christian@paral.in
- aqc2109@columbia.edu
before_script:
- docker build -t "yasp/yasp:latest" .
script:
- docker run -e "TEST_SKIP_BUILD=y" -e "TEST_INSTALL_GLOBAL... | Use npm to execute tests | Use npm to execute tests
| YAML | mit | flankstaek/core,odota/core,odota/core,flankstaek/core,odota/core,flankstaek/core |
a3616146be0f2dcac727d58435d83c067bdce91b | .travis.yml | .travis.yml | language: ruby
before_script:
- mysql -e 'create database rla_test;'
- psql -c 'create database rla_test;' -U postgres
script: bundle exec rake
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
gemfile:
- Gemfile.activerecord2
... | language: ruby
before_script:
- mysql -e 'create database rla_test;'
- psql -c 'create database rla_test;' -U postgres
script: bundle exec rake
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
- ree
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
gemfile:
- Gemfile.activerecord2
... | Update Travis CI matrix exclusions. | Update Travis CI matrix exclusions. | YAML | mit | wvanbergen/request-log-analyzer,cornerot/request-log-analyzer |
a1d9133914ed221726c970fd50ab57cfaadb09b8 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
env:
- DATABASE_ENGINE=sqlite
- DATABASE_ENGINE=postgres
- DATABASE_ENGINE=mysql
matrix:
fast_finish: true
install:
- pip install zc.buildout==2.9.3
- buildout -c travis.cfg testenv:DJANGO_SETTINGS_MODULE=zinnia.tests.i... | sudo: false
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
env:
- DATABASE_ENGINE=sqlite
- DATABASE_ENGINE=postgres
- DATABASE_ENGINE=mysql
matrix:
fast_finish: true
install:
- pip install zc.buildout==2.9.3
- pip install -U six==1.11.0 # For Python 3.4
- buildout -c travis... | Test a fix for Python 3.4 on Travis | Test a fix for Python 3.4 on Travis
| YAML | bsd-3-clause | Fantomas42/django-blog-zinnia,Fantomas42/django-blog-zinnia,Fantomas42/django-blog-zinnia |
b5afa50b9b8766d6a97f14e19e717e5d421a1cf8 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
yarn: true
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
m... | ---
language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "4"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
yarn: true
env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1
m... | Install Bower packages on CI | Install Bower packages on CI
| YAML | mit | andybluntish/ember-cli-latex-maths,andybluntish/ember-cli-latex-maths |
ff1fddd47e1394bff6f7a098bc71fbd538eac874 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with Node.js 5.1 on Travis CI. | Test with Node.js 5.1 on Travis CI.
| YAML | mit | bigeasy/abend |
b42e516e9ca17abe5fd2ef0f16b18b8272208c02 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "iojs"
- "node"
| language: node_js
node_js:
- "4"
- "5"
- "6"
| Update target node environments for ci tests | Update target node environments for ci tests
| YAML | mit | michbuett/grunt-template-jasmine-nml |
f5bbc90a8e9c50813bf46a8e57ba1df9dca27fe1 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
rvm: 1.9.3
script: bundle exec rake foodcritic | language: ruby
bundler_args: --without development
rvm: 1.9.3
script: bundle exec rake lint | Fix call to rake lint. | Fix call to rake lint.
| YAML | apache-2.0 | coryroloff/chef-npm-registry,Banno/chef-npm-registry |
e324e32a243ebd25b1a562defdf01ce03112e1bf | .travis.yml | .travis.yml | language:
python
python:
- "3.3"
- "3.4"
- "3.5"
install:
- pip install coverage
- pip install -r requirements.txt
script:
nosetests --with-coverage --cover-package=opwen_webapp --cover-branches --cover-erase
| language:
python
python:
- "3.3"
- "3.4"
- "3.5"
install:
- pip install coverage
- pip install -r requirements.txt
script:
nosetests --with-coverage --cover-branches --cover-erase --cover-package=opwen_webapp --cover-package=utils
| Include utils package in code coverage report | Include utils package in code coverage report
| YAML | apache-2.0 | ascoderu/opwen-cloudserver,ascoderu/opwen-webapp,OPWEN/opwen-webapp,ascoderu/opwen-webapp,OPWEN/opwen-webapp,ascoderu/opwen-webapp,ascoderu/opwen-cloudserver,OPWEN/opwen-webapp |
ebdba370d51b9361fbbfc5d0ee2516774f9cab26 | .travis.yml | .travis.yml | language: java
| language: java
deploy:
provider: releases
api-key: "8638657fcd2e4e9d3ad9e4173733d41b8e74d1c5"
file-glob: true
file: "target/FixChat-*.jar"
skip_cleanup: true
on:
tags: true
all_branches: true
| Add automatic deployment from Travis-CI | Add automatic deployment from Travis-CI
| YAML | mit | Codeski/FixChat |
380e11fc84ab896e12ea4c76c030029a52574328 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
script: rake test
| language: ruby
os:
- linux
- osx
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.2
# Mac OS on Travis doesn't have pre-compiled versions of the 1.9 series
matrix:
exclude:
- os: osx
rvm: 1.9.2
- os: osx
rvm: 1.9.3
script: rake test
| Drop Ruby 1.8 support, add 2.2, and test on OS X | Drop Ruby 1.8 support, add 2.2, and test on OS X
| YAML | mit | stripe/subprocess,stripe/subprocess |
4eed0817d4388d16b3cb3576adbf5a532c232363 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
before_script:
- composer install --dev --prefer-source
- php -S localhost:8080 -t web web/dispatch.php & # start a Web server
- sleep 3 # give Web server some time to bind to sockets, etc
script:
- php vendor/behat/behat/bin/behat
- php vendor/phpspec/phpspec/script... | language: php
php:
- 5.4
- 5.5
- 5.6
before_script:
- composer install --dev --prefer-source
- php -S localhost:8080 -t web web/dispatch.php & # start a Web server
- sleep 3 # give Web server some time to bind to sockets, etc
script:
- php vendor/bin/behat
- php vendor/bin/phpspec run | Change location of test runners | Change location of test runners
| YAML | mit | peej/contentacle,peej/contentacle,peej/contentacle,peej/contentacle |
0eae12f7eab06234718bbf0431aa848c7ed7df9c | .travis.yml | .travis.yml | language: python
python:
- '3.6'
install:
- pip install pipenv
- make install
script:
- make test | language: python
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.6
env: TOXENV=py36
install:
- pip install tox
script:
- tox
| Fix 77 - run tox on Travis | Fix 77 - run tox on Travis
| YAML | mit | lancelote/banneret |
9e7e6e8bbd7127b2ca9464a5ead6f679145ce46c | .travis.yml | .travis.yml | language: generic
os:
- linux
- osx
dist: xenial
env:
global:
- APM_TEST_PACKAGES=""
- ATOM_LINT_WITH_BUNDLED_NODE="true"
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
addons:
apt:
packages:
- libgconf-2-4
script:
- curl -s -O https://raw.githubusercontent.com/atom/ci/mas... | language: generic
os:
- linux
- osx
dist: bionic
env:
global:
- APM_TEST_PACKAGES=""
- ATOM_LINT_WITH_BUNDLED_NODE="true"
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
addons:
apt:
packages:
- libgconf-2-4
script:
- curl -s -O https://raw.githubusercontent.com/atom/ci/mas... | Use the latest build environment for Linux on Travis CI | Use the latest build environment for Linux on Travis CI
| YAML | mit | matthesjh/autocomplete-curry |
f2f6c44d12987bd9ee6fa39054b74878f5284f10 | .travis.yml | .travis.yml | language: node_js
sudo: required
dist: trusty
os:
- linux
- osx
node_js:
- "7.0"
- "6.0"
- "4.0"
env:
- CC=clang CXX=clang++ npm_config_clang=1
notifications:
email: false
git:
depth: 10
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update; fi
- if [[ "$TRAVIS_OS_NAM... | language: node_js
sudo: required
dist: trusty
os:
- linux
- osx
node_js:
- "7.0"
- "6.0"
- "4.0"
env:
- CC=clang CXX=clang++ npm_config_clang=1
notifications:
email: false
git:
depth: 10
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get update; fi
- if [[ "$TRAVIS_OS_NAM... | Create the default keyring first | Create the default keyring first
| YAML | mit | atom/node-keytar,atom/node-keytar,atom/node-keytar,atom/node-keytar |
9a992ae1a672519712469517cd8c314c8b348f96 | .travis.yml | .travis.yml | language: php
php:
- 7.1
before_script:
- composer self-update
install:
- composer install --prefer-source --no-interaction --dev
script:
- bin/phpunit -v
| language: php
php:
- 7.1
services:
- mysql
before_script:
- composer self-update
before_install:
- mysql -e 'CREATE DATABASE test_fixture;'
install:
- composer install --prefer-source --no-interaction --dev
script:
- bin/phpunit -v
| Configure MySQL database for Travis CI | chore: Configure MySQL database for Travis CI
| YAML | mit | ComPHPPuebla/dbal-fixtures |
31880601aa650d1b019085f25762a33935c8ef39 | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
script: bundle install && CODECLIMATE_REPO_TOKEN=23f00994b94c79b50de88e4ca0bbf67faaf18ce36b8f0cd421f2b8de0131bc25 bundle exec rake
| language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3"
script: bundle install && CODECLIMATE_REPO_TOKEN=23f00994b94c79b50de88e4ca0bbf67faaf18ce36b8f0cd421f2b8de0131bc25 bundle exec rake
| Add ruby 2.3 to the test suite | Add ruby 2.3 to the test suite
| YAML | mit | frankywahl/no_patch |
746d7031dfd518d52541b79eb76f483c7748f39b | .travis.yml | .travis.yml | language: objective-c
before_install:
- brew update
install:
- sudo pip install ansible --quiet
- brew install composer
- brew insatll drush --HEAD
script:
- bash install.sh --skip-short-stack
- ansible-playbook ~/.short-stack/stack.yml -i ~/.short-stack/inventory --syntax-check
#- ansible-playbook ~/.short-stack/st... | language: objective-c
before_install:
- brew update
install:
- sudo pip install ansible --quiet
- brew tap homebrew/php
- brew install composer
- brew insatll drush --HEAD
script:
- bash install.sh --skip-short-stack
- ansible-playbook ~/.short-stack/stack.yml -i ~/.short-stack/inventory --syntax-check
#- ansible-pl... | Add brew tap for php. | Add brew tap for php.
| YAML | mit | poetic/short-stack,osxi/short-stack |
e64517f3983ecfce786b966b609ae50b0be75f9d | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- 5.2
- hhvm
before_script:
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then wget http://iweb.dl.sourceforge.net/project/simpletest/simpletest/simpletest_1.1/simpletest_1.1.0.tar.gz; tar xf simpletest_1.1.0.tar.gz -C test; else composer install --dev --prefe... | language: php
php:
- 5.6
- 5.5
- 5.4
before_script:
- sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then wget http://iweb.dl.sourceforge.net/project/simpletest/simpletest/simpletest_1.1/simpletest_1.1.0.tar.gz; tar xf simpletest_1.1.0.tar.gz -C test; else composer install --dev --prefer-source; fi"
- sh -c "... | Remove PHP 5.2 and 5.3. Also remove hhvm | Remove PHP 5.2 and 5.3. Also remove hhvm
| YAML | mit | smartcoinpayments/smartcoin-php |
89ae4a218ae4ecf969e39fce5e43519972c9a6ec | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
services:
- postgresql
language: python
python:
- "3.6"
env:
- TOX_ENV=py36-django-110
matrix:
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements_test.txt
# co... | # Config file for automatic testing at travis-ci.org
services:
- postgresql
addons:
postgresql: "9.6"
language: python
python:
- "3.6"
env:
- TOX_ENV=py36-django-110
matrix:
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -... | Use PostgreSQL with jsonb field | Use PostgreSQL with jsonb field
| YAML | mit | mpasternak/django-flexible-reports,mpasternak/django-flexible-reports |
b74e3a8cde126ee3dc1a986451e8f00b9c2d6e41 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache:
- bundler
bundler_args: --jobs 1 --retry 5 --without development --path vendor/bundle
rvm:
- 2.1.9
- 2.2.5
- 2.3.1
- ruby-head
- rbx-2
env:
- COMPILER=gcc
- COMPILER=clang
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
branche... | sudo: false
language: ruby
cache:
- bundler
bundler_args: --jobs 1 --retry 5 --without development --path vendor/bundle
rvm:
- 2.1.10
- 2.2.5
- 2.3.1
- ruby-head
- rbx-2
env:
- COMPILER=gcc
- COMPILER=clang
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
branch... | Update Ruby version in Travis CI. | Update Ruby version in Travis CI.
Signed-off-by: Krzysztof Wilczynski <9bf091559fc98493329f7d619638c79e91ccf029@linux.com>
| YAML | apache-2.0 | kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.