commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266 values | license stringclasses 13 values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
a8b973124d6764cf5ecedae0954ece6148f0e410 | .travis.yml | .travis.yml |
language: cpp
compiler:
- clang
- gcc
# These install GCC 4.8 and set that as the GCC version to use.
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/ppa
- sudo apt-get update -qq
install:
- sudo apt-get install -qq gcc-4.8 g++-4.8
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
script: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=${BUILD_TYPE} && make && cd tests && { [[ ${BUILD_TYPE} != "Debug" ]] || ctest --output-on-failure -j4; }
branches:
only:
- master
env:
- BUILD_TYPE=Release CXXFLAGS=-Werror
- BUILD_TYPE=Debug CXXFLAGS=-Werror
|
language: cpp
compiler:
- clang
- gcc
# These install GCC 4.8 and set that as the GCC version to use.
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/ppa
- sudo apt-get update -qq
install:
- sudo apt-get install -qq gcc-4.8 g++-4.8 valgrind
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
script: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=${BUILD_TYPE} && make && cd tests && { [[ ${BUILD_TYPE} != "Debug" ]] || ctest --output-on-failure -j4; }
branches:
only:
- master
env:
- BUILD_TYPE=Release CXXFLAGS=-Werror
- BUILD_TYPE=Debug CXXFLAGS=-Werror
| Update Travis CI config to install Valgrind. It's used to run tests. | Update Travis CI config to install Valgrind. It's used to run tests.
| YAML | apache-2.0 | google/fruit,d/fruit,google/fruit,google/fruit,d/fruit,d/fruit |
31f088ff3732bdf9a6e2fd81a57b86879e56121b | .travis.yml | .travis.yml | language: ruby
os: osx
rvm: system
matrix:
include:
- osx_image: xcode7.3
- osx_image: xcode7.1
cache:
directories:
- /Library/Caches/Homebrew
- $HOME/.cache/pip
before_install:
- brew update
- brew install ansible
script:
- ansible-playbook site.yml --syntax-check
- ansible-playbook site.yml --diff -vvv
before_cache:
- brew cleanup
| language: ruby
os: osx
osx_image: xcode7.3
rvm: system
cache:
directories:
- /Library/Caches/Homebrew
- $HOME/.cache/pip
before_install:
- brew update
- brew install ansible
script:
- ansible-playbook site.yml --syntax-check
- ansible-playbook site.yml --diff -vvv
before_cache:
- brew cleanup
| Test only on OS X 10.11 on Travis | Test only on OS X 10.11 on Travis
| YAML | mit | fabian/dotfiles |
09cc834623cd8d66c03adf15d29e1df4852c02d0 | .travis.yml | .travis.yml | language: elixir
elixir:
- 1.3.1
otp_release:
- 19.0
env: MIX_ENV=test
sudo: false # faster builds
notifications:
email: false
before_install:
- npm install -g yarn
- yarn install
script:
- make build
- mix test
- mix dogma
| language: elixir
elixir:
- 1.3.1
otp_release:
- 19.0
env: MIX_ENV=test
sudo: false # faster builds
notifications:
email: false
before_install:
- nvm install node
- nvm use node
- npm install -g yarn
- yarn install
script:
- make build
- mix test
- mix dogma
| Use node stable on CI | Use node stable on CI
| YAML | agpl-3.0 | lpil/elixre |
b2408f66fcb38d52abef4259d6c93f021de10805 | .travis.yml | .travis.yml | ---
os: linux
dist: focal
language: ruby
cache: bundler
rvm:
- 2.7.1
- 2.6.6
- 2.5.8
- ruby-head
- jruby-9.2.11.1
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| ---
os: linux
dist: focal
language: ruby
cache: bundler
rvm:
- 2.7.2
- 2.6.6
- 2.5.8
- ruby-head
- jruby-9.2.13.0
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | jbox-web/simple_navigation_bootstrap |
f5a693c2807d6807661e2d1350a0568bf5addf38 | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0 | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
| Add MRI 2.1.1 to CI | Add MRI 2.1.1 to CI | YAML | mit | sosedoff/reckless |
62be54fcf619f255963714d0aa468a839087d6fd | .travis.yml | .travis.yml | language: ruby
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y mecab mecab-ipadic-utf8
rvm:
- 1.9.3
- 2.0.0
- 2.1
| language: ruby
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y -qq mecab mecab-ipadic-utf8 libmecab-dev
rvm:
- 1.9.3
- 2.0.0
- 2.1
| Install libmecab-dev in Travis CI | Install libmecab-dev in Travis CI
| YAML | mit | dtan4/hiraoyogi |
4c20ea08c49a398ef00631ea42463c8da9102245 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- 1.4
- 1.5
- tip
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| Add new versions to Travis. | Add new versions to Travis. | YAML | isc | johnwchadwick/restruct,go-restruct/restruct |
14ee82e5ea0651f1ac6523bb258b0dd8b35e9876 | .travis.yml | .travis.yml | language: go
go:
- 1.7
- 1.8
- tip
script:
- cd examples/calc && ./run-tests.sh
notifications:
email: false
| language: go
go:
- 1.6
- 1.7
- 1.8
- tip
script:
- cd examples/calc && ./run-tests.sh
notifications:
email: false
| Add go 1.6 to the test matrix | ci: Add go 1.6 to the test matrix
Signed-off-by: Damien Lespiau <64bd3cb94f359c1a3ce68dae5e26b40578526277@intel.com>
| YAML | apache-2.0 | dlespiau/covertool,dlespiau/covertool |
8b0063451d206b036789c1a20af4dd0abd9d9fe7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
notifications:
webhooks:
- https://idobata.io/hook/929ab950-8df9-405f-8a39-7189ab24cce2
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
notifications:
webhooks:
- https://idobata.io/hook/929ab950-8df9-405f-8a39-7189ab24cce2
| Use the latest rubies on Travis | Use the latest rubies on Travis
| YAML | mit | hrysd/exception_notification-idobata |
b96b9426126bd6bb76271a4143152900ba80c9d0 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
- GITHUB_TOKEN=test
| Add env. var for Travis build | Add env. var for Travis build
| YAML | bsd-2-clause | LesPepitos/gist |
ed4d965da28a5190560d33a844e54c848c6f8589 | .travis.yml | .travis.yml | language: node_js
node_js:
- 8
- 10
- 12
- node
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
before_install: 'sudo add-apt-repository -y ppa:inkscape.dev/stable && sudo apt-get update && sudo apt-get install -y inkscape && inkscape --version'
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| dist: bionic
language: node_js
node_js:
- 8
- 10
- 12
- node
matrix:
include:
- name: Lint
node_js: 12
script: npm run lint
before_install: 'sudo add-apt-repository -y ppa:inkscape.dev/stable && sudo apt-get update && sudo apt-get install -y inkscape && inkscape --version'
script: npm run test:ci
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| Switch CI to the bionic for the 1.0. | Switch CI to the bionic for the 1.0.
| YAML | bsd-3-clause | papandreou/node-inkscape |
876d238edf82937a5c70827e784459113741f888 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4.4"
- "6.3"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| sudo: false
language: node_js
node_js:
- "4"
- "6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
after_success:
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Update Travis config to latest. Update Travis config to use latest v4 and latest v6 . | Update Travis config to latest. Update Travis config to use latest v4 and latest v6 .
| YAML | mit | cliffano/nestor,cliffano/nestor |
b821ff0cac1ff408b2251051e0db8367dda091b0 | .travis.yml | .travis.yml | language: node_js
node_js:
- 6
- 5
- 4
script: npm run build
install:
- npm i -g npm@latest
- npm install
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
notifications:
email:
on_failure: change
after_success: 'npm run coveralls'
cache:
directories:
- node_modules
| language: node_js
node_js:
- 7
- 6
- 5
script: npm run build
install:
- npm i -g npm@latest
- npm install
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
notifications:
email:
on_failure: change
after_success: 'npm run coveralls'
cache:
directories:
- node_modules
| Drop node 4, support node 7 | Drop node 4, support node 7
| YAML | mit | StrikeForceZero/react-typescript-boilerplate,StrikeForceZero/react-typescript-boilerplate,StrikeForceZero/react-typescript-boilerplate |
8b9d2a7ef6e7d529d33b6caa2cb182e1215ba07c | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
before_install:
- 'npm install --global semistandard eslint-config-semistandard'
node_js:
- '4.0.0'
| Change node version to the latest version. | Change node version to the latest version.
Signed-off-by: Siddharth Kannan <805f056820c7a1cecc4ab591b8a0a604b501a0b7@gmail.com>
| YAML | mit | icyflame/cstimer-txt-to-json |
711ffb725bd49e963c39cbe6a347c4ee584378f5 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
gemfile:
- gemfiles/rails_5_0.gemfile
- gemfiles/rails_5_1.gemfile
before_install: gem install bundler -v 1.15.3
before_script:
- psql -c 'CREATE DATABASE activerecord_where_assoc' -U postgres
- mysql -e 'CREATE DATABASE activerecord_where_assoc'
script:
- DB=mysql bundle exec rake test
- DB=pg bundle exec rake test
- DB=sqlite3 bundle exec rake test
- bundle exec rake coveralls:push
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
| sudo: false
language: ruby
cache: bundler
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
gemfile:
- gemfiles/rails_5_0.gemfile
- gemfiles/rails_5_1.gemfile
before_install: gem install bundler -v 1.15.3
before_script:
- psql -c 'CREATE DATABASE activerecord_where_assoc' -U postgres
- mysql -e 'CREATE DATABASE activerecord_where_assoc'
script:
- DB=mysql bundle exec rake test
- DB=pg bundle exec rake test
- DB=sqlite3 bundle exec rake test
- bundle exec rake coveralls:push
matrix:
# fast_finish makes Travis send multiple notification email when things fail.
# https://github.com/travis-ci/travis-ci/issues/1696
# fast_finish: true
allow_failures:
- rvm: ruby-head
| Remove fast_finish to avoid multiple build notifications from Travis | Remove fast_finish to avoid multiple build notifications from Travis
| YAML | mit | MaxLap/activerecord_where_assoc,MaxLap/activerecord_where_assoc |
023f1a35f78861883bb86b99dbc4fe348532da9f | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
env:
- INSTALL_PHP_INVOKER=0
- INSTALL_PHP_INVOKER=1
before_script:
- composer install --dev --prefer-source
- mkdir -p vendor/SebastianBergmann/
- ls vendor/sebastian | while read DIR; do ln -s $(pwd)/vendor/sebastian/$DIR/src vendor/SebastianBergmann/${DIR^}; done
- sh -c "if [ '$INSTALL_PHP_INVOKER' = '1' ]; then git clone --branch=master --depth=100 --quiet git://github.com/sebastianbergmann/php-invoker.git vendor/php-invoker; fi"
script: php -d include_path=vendor:vendor/php-invoker -d auto_prepend_file=vendor/autoload.php ./phpunit.php --configuration ./build/travis-ci.xml
notifications:
email: false
irc: "irc.freenode.org#phpunit"
| language: php
php:
- 5.4
env:
- INSTALL_PHP_INVOKER=0
- INSTALL_PHP_INVOKER=1
before_script:
- composer install --dev --prefer-source
- mkdir -p vendor/SebastianBergmann/
- ls vendor/sebastian | while read DIR; do ln -s $(pwd)/vendor/sebastian/$DIR/src vendor/SebastianBergmann/${DIR^}; done
- sh -c "if [ '$INSTALL_PHP_INVOKER' = '1' ]; then git clone --branch=master --depth=100 --quiet git://github.com/sebastianbergmann/php-invoker.git vendor/php-invoker; fi"
script: php -d include_path=vendor:vendor/php-invoker -d auto_prepend_file=vendor/autoload.php ./phpunit.php --configuration ./build/travis-ci.xml
notifications:
email: false
irc: "irc.freenode.org#phpunit"
| Revert "Also test with PHP 5.5" | Revert "Also test with PHP 5.5"
This reverts commit 1af126c4066e340f0c4e3e66d276d85dda24ea7e.
| YAML | bsd-3-clause | simohammedhttp/phpunit,Lance0312/phpunit,s001dxp/phpunit,kyale/phpunit,bradgrohs/phpunit,WebSeed/phpunit,apinstein/phpunit,lcp0578/phpunit,giorgiosironi/phpunit,MartinhoOmura/phpunit,ezzatron/phpunit,dshafik/phpunit,Maks3w/phpunit,matheusgomes17/phpunit,MajorCaiger/phpunit,FireWalkerX/phpunit,ya7lelkom/phpunit,CarsonF/phpunit,nelson6e65/phpunit,duncan3dc/phpunit,beealone/phpunit,Shaked/phpunit,nonconforme/phpunit,abacaphiliac/phpunit,apinstein/phpunit,serbanghita/phpunit,tronsha/phpunit,DonaldKellett/phpunit,luomor/phpunit,apinstein/phpunit,malkusch/phpunit,darol100/phpunit,stof/phpunit,abachi/phpunit,imshibaji/phpunit,potherca-contrib/phpunit,m157y/phpunit,SunDrop/phpunit,sebastianbergmann/phpunit,OndraM/phpunit,eelf/phpunit,chrisbjr/phpunit,asgrim/phpunit,didiwuliu/phpunit,Firehed/phpunit,zhaoyan158567/phpunit,masarakki/phpunit,9040044/phpunit,HappyRay/phpunit,Ma27/phpunit |
d5d39adc87ac9360852e802854ce3bd3adf13ca6 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
install:
- pip install mock nose --use-mirrors
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install unittest2py3k --use-mirrors; else pip install unittest2 --use-mirrors; fi
- pip install . --use-mirrors
script: nosetests
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
- pip install mock nose --use-mirrors
- if [[ $TRAVIS_PYTHON_VERSION == '3.2' ]]; then pip install unittest2py3k --use-mirrors; else pip install unittest2 --use-mirrors; fi
- pip install . --use-mirrors
script: nosetests
| Add Python 3.3 and PyPy to the Travis CI config | Add Python 3.3 and PyPy to the Travis CI config
| YAML | isc | gears/gears,gears/gears,gears/gears |
d14fb2c6149410c0898ff75df0469d321f912c37 | .travis.yml | .travis.yml | language: haskell
ghc: 7.8
notifications:
email: false
| language: haskell
ghc: 7.8
notifications:
email: false
before_install: cabal install -j alex happy
before_script: script/setup
| Add alex and happy on Travis and run script/setup | Add alex and happy on Travis and run script/setup
| YAML | mit | jspahrsummers/ScrumBut |
640f9b3da43c73275eabfe44ac24723d85c0a3ef | .travis.yml | .travis.yml | language: node_js
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libavahi-compat-libdnssd-dev
node_js:
- '0.12'
- '0.10'
- 'iojs'
| language: node_js
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libavahi-compat-libdnssd-dev
node_js:
- '0.12'
- '0.10'
- 'iojs'
matrix:
allow_failures:
- node_js: iojs
| Allow iojs to fail on Travis-CI | Allow iojs to fail on Travis-CI
| YAML | mit | watson/raop-server |
94bb3b9a5106287f4cd79b6e0da04220690f6880 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.3
install:
- carthage bootstrap --platform macOS
script:
- xcrun xcodebuild -project Attabench.xcodeproj -scheme Attabench
| language: objective-c
osx_image: xcode9
install:
- carthage bootstrap --platform macOS
script:
- xcrun xcodebuild -project Attabench.xcodeproj -scheme Benchmark
- swift build
- (cd SampleBenchmark.attabench && swift build)
- (cd SortedSetBenchark.attabench && swift build)
| Switch to Xcode 9. Build Benchmark target and packages only (for now). | Switch to Xcode 9. Build Benchmark target and packages only (for now).
| YAML | mit | attaswift/Attabench,lorentey/Attabench,attaswift/Attabench |
06e07a306d0a95ed151d49575985a0adc088f598 | .travis.yml | .travis.yml | language: csharp
solution: "./Fibonacci/Fibonacci.sln"
install:
- travis_retry nuget restore -source "https://www.nuget.org/api/v2" ./Fibonacci/Fibonacci.sln
script:
- xbuild ./Fibonacci/Fibonacci.sln
- mono ./Fibonacci/packages/xunit.runner.console*/tools/xunit.console.exe ./Fibonacci/Fibonacci.Test/bin/Debug/Fibonacci.Tests.dll
| language: csharp
solution: "./Fibonacci/Fibonacci.sln"
install:
- travis_retry nuget restore -source "https://www.nuget.org/api/v2" ./Fibonacci/Fibonacci.sln
script:
- xbuild ./Fibonacci/Fibonacci.sln
- mono ./Fibonacci/packages/xunit.runner.console*/tools/xunit.console.exe ./Fibonacci/Fibonacci.Tests/bin/Debug/Fibonacci.Tests.dll
| Fix test path for reals | Fix test path for reals | YAML | mit | nbarbettini/csharp-travis-example |
9b2c903d62993613bbfd09fb462d16001cd17e9b | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: cpp
os: linux
compiler:
- gcc
- clang
addons:
apt:
packages:
- libboost-all-dev
before_script:
- mkdir build
script:
- cd build
- cmake -DCMAKE_CXX_FLAGS='-std=c++11' -DCMAKE_VERBOSE_MAKEFILE=ON ../src
- make -j 2
- make test
| sudo: false
dist: trusty
language: cpp
os: linux
compiler:
- gcc
- clang
addons:
apt:
packages:
- libboost-all-dev
before_script:
- mkdir build
script:
- cd build
- cmake -DCMAKE_CXX_FLAGS='-std=c++11' -DCMAKE_VERBOSE_MAKEFILE=ON ..
- make -j 2
- make test
| Update Travis-CI config with out-of-source build | Update Travis-CI config with out-of-source build
| YAML | bsd-3-clause | andrewprock/pokerstove,andrewprock/pokerstove,andrewprock/pokerstove,andrewprock/pokerstove |
654f6d8fe1b0fa2c3c96a7d2afeaeffe0f63902b | .travis.yml | .travis.yml | language: python
python:
- "2.4"
- "2.5"
- "2.6"
- "2.7"
- "3.2"
install:
- "echo 'No dependencies :)'"
# command to run tests
script:
- "git submodule init"
- "git submodule update"
- "nosetests"
| language: python
python:
- "2.4"
- "2.5"
- "2.6"
- "2.7"
install:
- "echo 'No dependencies :)'"
# command to run tests
script:
- "git submodule init"
- "git submodule update"
- "nosetests"
| Stop testing Python 3.2 (not supported). | Stop testing Python 3.2 (not supported).
| YAML | mit | peterldowns/python-mustache,peterldowns/python-mustache |
1ae422fd864be4a7200f97ac3a610e31dc7d69c2 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
allow_failures:
- php: nightly
- php: 5.4
install:
- composer install
before_install:
- composer self-update
sudo: false
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
- php: 5.4
install:
- composer install
before_install:
- composer self-update
sudo: false
| Put allow failures under matrix | Put allow failures under matrix
| YAML | mit | deniaz/terrific-twig,deniaz/terrific-twig |
b67939933a0290c74820f412dd80ab56104defe9 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language:
- java
jdk:
- oraclejdk8
before_install:
- echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
- curl https://bazel.build/bazel-release.pub.gpg | sudo apt-key add -
- sudo apt-get update
- sudo apt-get install bazel=0.27.0
- bazel version
script:
- bazel test //tests/...
# waiting for https://github.com/bazelbuild/skydoc/issues/166 before docs will work again...
#- bazel build //docs/...
#- cd examples && bazel build //nodejs && bazel test //test/...
- cd examples && bazel build //nodejs
| sudo: required
dist: xenial
before_install:
- echo "deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
- curl https://bazel.build/bazel-release.pub.gpg | sudo apt-key add -
- sudo apt-get update
- sudo apt-get install bazel=0.27.0
- bazel version
script:
- bazel test //tests/...
# waiting for https://github.com/bazelbuild/skydoc/issues/166 before docs will work again...
#- bazel build //docs/...
#- cd examples && bazel build //nodejs && bazel test //test/...
- cd examples && bazel build //nodejs
| Update to Ubuntu 16.04 on CI | Update to Ubuntu 16.04 on CI
| YAML | apache-2.0 | guymers/bazel_rules_container |
ea9aa0cfc4cbf34ceb32729182e7f97b7e7adbe4 | .travis.yml | .travis.yml | language: csharp
solution: AlgorithmForce.Searching.sln
dist: trusty
mono: none
dotnet: 2.0.0
install:
- dotnet restore
script:
- dotnet build
- cd src/AlgorithmForce.Searching.Test/
- dotnet xunit
| language: csharp
solution: AlgorithmForce.Searching.sln
dist: trusty
mono: none
dotnet: 2.0.0
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-trusty-prod trusty main'
key_url: 'https://packages.microsoft.com/keys/microsoft.asc'
packages:
- dotnet-hostfxr-1.0.1
- dotnet-sharedframework-microsoft.netcore.app-1.0.5
install:
- dotnet restore
script:
- dotnet build
- cd src/AlgorithmForce.Searching.Test/
- dotnet xunit
| Add addons section for missing packages | Add addons section for missing packages | YAML | mit | rvhuang/kmp-algorithm |
d9724e1552eea0dc2aa2f0af4f64a3369732c8a4 | .travis.yml | .travis.yml | language: java
notifications:
irc: "chat.freenode.net#jsense"
email: false
| language: java
notifications:
irc: "chat.freenode.net#jsense"
email: false
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq protobuf-compiler
| Add protocol buffers compiler to Travis config as install. | Add protocol buffers compiler to Travis config as install.
| YAML | mit | markuswustenberg/jsense |
36a537d3135cb5325542a4793b160643d16d94d8 | .travis.yml | .travis.yml | language: python
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=pypy
- TOX_ENV=pypy3
before_install:
- pip install tox
- pip install coverage
- pip install coveralls
script:
- tox -e $TOX_ENV
after_success:
- coverage combine
- coveralls
| language: python
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=pypy
- TOX_ENV=pypy3
before_install:
- pip install tox
- pip install coverage
- pip install coveralls
- pip install pytest>=2.7.3 --upgrade
script:
- tox -e $TOX_ENV
after_success:
- coverage combine
- coveralls
| Fix for Travis-CI and Python 3.5 | Fix for Travis-CI and Python 3.5
| YAML | apache-2.0 | ahmadshahwan/ipopo,ahmadshahwan/ipopo,tcalmant/ipopo |
81046062ee78cb9d59759f72791dab5d281f036e | .travis.yml | .travis.yml | language: python
python:
- 2.5
- 2.6
- 2.7
- 3.1
- 3.2
before_install: sudo apt-get install subversion bzr mercurial git-core
install: pip install nose virtualenv scripttest mock
script: nosetests
notifications:
branches:
only:
- develop
env:
- PIP_USE_MIRRORS=true
| language: python
python:
- 2.5
- 2.6
- 2.7
- 3.1
- 3.2
before_install: sudo apt-get install subversion bzr mercurial
install: pip install nose virtualenv scripttest mock
script: nosetests
notifications:
branches:
only:
- develop
env:
- PIP_USE_MIRRORS=true
| Remove git-core from list of dependencies. | Remove git-core from list of dependencies. | YAML | mit | mujiansu/pip,prasaianooz/pip,natefoo/pip,sbidoul/pip,mattrobenolt/pip,luzfcb/pip,zorosteven/pip,jasonkying/pip,Ivoz/pip,prasaianooz/pip,jythontools/pip,rbtcollins/pip,haridsv/pip,qbdsoft/pip,caosmo/pip,nthall/pip,msabramo/pip,mujiansu/pip,radiosilence/pip,cjerdonek/pip,Ivoz/pip,zvezdan/pip,pypa/pip,atdaemon/pip,pjdelport/pip,ncoghlan/pip,supriyantomaftuh/pip,zenlambda/pip,techtonik/pip,blarghmatey/pip,zorosteven/pip,sbidoul/pip,davidovich/pip,alex/pip,ChristopherHogan/pip,graingert/pip,ianw/pip,pradyunsg/pip,zenlambda/pip,erikrose/pip,wkeyword/pip,supriyantomaftuh/pip,zorosteven/pip,tdsmith/pip,techtonik/pip,harrisonfeng/pip,rbtcollins/pip,esc/pip,pypa/pip,natefoo/pip,ChristopherHogan/pip,Gabriel439/pip,supriyantomaftuh/pip,KarelJakubec/pip,haridsv/pip,mujiansu/pip,James-Firth/pip,patricklaw/pip,RonnyPfannschmidt/pip,James-Firth/pip,rouge8/pip,qbdsoft/pip,tdsmith/pip,tdsmith/pip,luzfcb/pip,habnabit/pip,techtonik/pip,luzfcb/pip,graingert/pip,sigmavirus24/pip,pjdelport/pip,squidsoup/pip,rouge8/pip,alex/pip,esc/pip,squidsoup/pip,habnabit/pip,sigmavirus24/pip,pradyunsg/pip,mindw/pip,Gabriel439/pip,davidovich/pip,jasonkying/pip,rouge8/pip,minrk/pip,fiber-space/pip,RonnyPfannschmidt/pip,ianw/pip,rbtcollins/pip,willingc/pip,nthall/pip,dstufft/pip,blarghmatey/pip,Carreau/pip,msabramo/pip,graingert/pip,fiber-space/pip,mindw/pip,willingc/pip,zvezdan/pip,Gabriel439/pip,h4ck3rm1k3/pip,mindw/pip,fiber-space/pip,jamezpolley/pip,caosmo/pip,Carreau/pip,wkeyword/pip,harrisonfeng/pip,jmagnusson/pip,mattrobenolt/pip,qbdsoft/pip,dstufft/pip,haridsv/pip,chaoallsome/pip,prasaianooz/pip,jamezpolley/pip,zenlambda/pip,pfmoore/pip,harrisonfeng/pip,domenkozar/pip,sigmavirus24/pip,jythontools/pip,zvezdan/pip,ChristopherHogan/pip,pjdelport/pip,caosmo/pip,esc/pip,dstufft/pip,minrk/pip,h4ck3rm1k3/pip,natefoo/pip,jythontools/pip,habnabit/pip,yati-sagade/pip,ncoghlan/pip,xavfernandez/pip,pfmoore/pip,atdaemon/pip,erikrose/pip,atdaemon/pip,cjerdonek/pip,erikrose/pip,James-Firth/pip,nthall/pip,benesch/pip,chaoallsome/pip,willingc/pip,jmagnusson/pip,wkeyword/pip,jmagnusson/pip,jasonkying/pip,yati-sagade/pip,davidovich/pip,xavfernandez/pip,benesch/pip,qwcode/pip,alquerci/pip,chaoallsome/pip,alex/pip,qwcode/pip,patricklaw/pip,KarelJakubec/pip,alquerci/pip,jamezpolley/pip,benesch/pip,ncoghlan/pip,xavfernandez/pip,blarghmatey/pip,squidsoup/pip,RonnyPfannschmidt/pip,KarelJakubec/pip,h4ck3rm1k3/pip,yati-sagade/pip |
658f9131cd78033353f3f5fe9b867af596397c90 | .travis.yml | .travis.yml | sudo: false
language: java
addons:
apt_packages:
- python-pip
- python-virtualenv
- python-dev
- libffi-dev
- python-swiftclient
jdk:
- oraclejdk8
script:
- mvn test
- ./src/test/resources/run-swift-tests.sh
- ./src/test/resources/run-swiftclient-python-tests.sh
- ./src/test/resources/run-swiftclient-tests.sh
| sudo: false
language: java
addons:
apt_packages:
- python-pip
- python-virtualenv
- python-dev
- libffi-dev
- python-swiftclient
jdk:
- oraclejdk8
script:
- mvn test
- ./src/test/resources/run-swift-tests.sh
- ./src/test/resources/run-swiftclient-python-tests.sh
| Revert "add test that was lost in merge" | Revert "add test that was lost in merge"
This reverts commit c8929ba82637a9594d10663d059ed7720d346c43.
forgot that travis doesn't have swift
| YAML | apache-2.0 | bouncestorage/swiftproxy,bouncestorage/swiftproxy |
9a9649eb394c57e54089a6545503e5c6a279b6c6 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
services: postgres
env:
global:
- DJANGO_SETTINGS_MODULE="django_scarface.settings.test"
- PIP_USE_MIRRORS=true
- BUILD_ON_TRAVIS=true
matrix:
- DJANGO=1.8 DB=postgres
#commands to install dependencies
install:
- pip install -q -r requirements.txt
- pip install -q Django==$DJANGO
before_script:
- psql -c 'CREATE USER django WITH superuser PASSWORD 'django''
#command to run the test suite
script:
- python manage.py test | language: python
python:
- "3.6"
services: postgres
env:
global:
- DJANGO_SETTINGS_MODULE="django_scarface.settings.test"
- PIP_USE_MIRRORS=true
- BUILD_ON_TRAVIS=true
matrix:
- DJANGO=1.8 DB=postgres
#commands to install dependencies
install:
- pip install -q -r requirements.txt
- pip install -q Django==$DJANGO
before_script:
- psql -c 'CREATE USER django WITH superuser PASSWORD 'django'' -U postgres
#command to run the test suite
script:
- python manage.py test | Add user to psql command | Travis: Add user to psql command
| YAML | mit | dreipol/django-scarface,dreipol/django-scarface |
6fa77106141a94ebbb2b36ea7732b3af980bc2fc | .travis.yml | .travis.yml | language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- PINS="carton.dev:. carton-lwt.dev:. carton-git.dev:. git.dev:. git-unix.dev:. git-cohttp.dev:. git-cohttp-unix.dev:. git-mirage.dev:. git-cohttp-mirage.dev:."
matrix:
- OCAML_VERSION=4.08 PACKAGE="git.dev"
- OCAML_VERSION=4.09 PACKAGE="git.dev"
- OCAML_VERSION=4.10 PACKAGE="git.dev"
- OCAML_VERSION=4.08 PACKAGE="git-unix.dev"
- OCAML_VERSION=4.08 PACKAGE="git-unix.dev"
- OCAML_VERSION=4.08 PACKAGE="git.dev" REVDEPS=*
- OCAML_VERSION=4.08 PACKAGE="git-mirage.dev" TESTS=false POST_INSTALL_HOOK=./.test-mirage.sh
| language: c
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
env:
global:
- PINS="carton.dev:. carton-lwt.dev:. carton-git.dev:. git.dev:. git-unix.dev:. git-cohttp.dev:. git-cohttp-unix.dev:. git-mirage.dev:. git-paf.dev:."
matrix:
- OCAML_VERSION=4.08 PACKAGE="git.dev"
- OCAML_VERSION=4.09 PACKAGE="git.dev"
- OCAML_VERSION=4.10 PACKAGE="git.dev"
- OCAML_VERSION=4.08 PACKAGE="git-unix.dev"
- OCAML_VERSION=4.08 PACKAGE="git-unix.dev"
- OCAML_VERSION=4.08 PACKAGE="git.dev" REVDEPS=*
- OCAML_VERSION=4.08 PACKAGE="git-mirage.dev" TESTS=false POST_INSTALL_HOOK=./.test-mirage.sh
| Add git-paf into Travis CI script | Add git-paf into Travis CI script
| YAML | isc | mirage/ocaml-git,mirage/ocaml-git,mirage/ocaml-git |
4ed879adb6aa6f0b65763e800a46185ada5d5c6f | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- pip install -e .
- pip install nose mock coverage
script: nosetests
| language: python
python:
- "2.7"
install:
- pip install -e .
before_script:
- mkdir -p shippable/testresults
- mkdir -p shippable/codecoverage
script:
- nosetests test.py --with-xunit --xunit-file=shippable/testresults/nosetests.xml
- coverage run --branch test.py
- coverage xml -o shippable/codecoverage/coverage.xml test.py
| Put coverage into build config. (Expect this to fail.) | Put coverage into build config. (Expect this to fail.)
| YAML | apache-2.0 | alexaltair/calico,alexaltair/calico |
440684776432c5741a70e28016f550bbc669f865 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 6.14.0 # Cloud Functions Runtime
- 9
- 10
notifications:
email:
# Only send notifications when travis status changes
on_failure: change
on_success: change
cache:
directories:
- node_modules
branches:
only:
- master
deploy:
skip_cleanup: true
provider: npm
email: $NPM_EMAIL
api_key: $NPM_KEY
on:
node: '10'
branch: 'master'
script:
- npm run lint
- npm run test:cov
after_success:
- codeclimate-test-reporter < coverage/lcov.info
- npm run codecov
| sudo: false
language: node_js
node_js:
- 6 # Maintenance
- 8 # Active
- 10 # Current release
notifications:
email:
# Only send notifications when travis status changes
on_failure: change
on_success: change
cache:
bundler: true
directories:
- $HOME/.npm
branches:
only:
- master
- next
script:
- npm run lint
- npm run test:cov
after_success:
- codeclimate-test-reporter < coverage/lcov.info
- npm run codecov
deploy:
- provider: npm
skip_cleanup: true
email: $NPM_EMAIL
api_key: $NPM_TOKEN
on:
node: '10'
branch: 'master'
- provider: npm
skip_cleanup: true
email: $NPM_EMAIL
api_key: $NPM_TOKEN
tag: next
on:
node: '10'
branch: 'next'
| Add publish to npm from next branch | Add publish to npm from next branch
| YAML | mit | prescottprue/redux-firestore,prescottprue/redux-firestore |
3a30e109b74bd9b16948671cd32791c519c2bbeb | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '12'
- '14'
- '15'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| Build with Node.js 14, 15 on Travis CI. | Build with Node.js 14, 15 on Travis CI.
| YAML | mit | bigeasy/addendum,bigeasy/addendum |
d4d420d4990a6a928b736d6c08aa97984e3cc219 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- "1.9.3"
script: bundle exec rspec spec && bundle exec middleman build
| language: ruby
sudo: false
rvm:
- "1.9.3"
script: bundle exec rspec spec && bundle exec middleman build --verbose
| Build with --verbose in CI. | Build with --verbose in CI.
This will hopefully help track down middleman build failures in PR's a bit... | YAML | mit | bmac/guides,mendeza428/guides,RalfWeinand/guides,webPapaya/guides,josephchappell/guides,grapho/guides,MSch/guides,coffeejunk/guides,davidpett/guides,mcfiredrill/guides,ofridagan/guides,josephchappell/guides,papilip/emberjs-guides-french,danielgynn/guides,dgeb/guides,skaterdav85/guides,dgeb/guides,vikram7/guides,toranb/guides,ankushagarwal/guides,szines/guides,MarkMT/guides,SaladFork/emberjs-guides,aceofspades/guides,Joelkang/guides,gregzx/guides,ubuntuvim/guides,grapho/guides,eoinkelly/guides,JKGisMe/guides,Kuzirashi/guides,elwayman02/guides,danielgynn/guides,mikzar/guides,joostdevries/guides,szines/guides,mikzar/guides,Patsy-issa/guides,kublaj/guides,omni5cience/guides,thriqon/guides,anthias/guides,thriqon/guides,odarbelaeze/guides,RalfWeinand/guides,davidpett/guides,jackfranklin/guides,mikzar/guides,Kuzirashi/guides,anthias/guides,jackfranklin/guides,greyhwndz/guides,SaladFork/emberjs-guides,MSch/guides,vikram7/guides,kellywerks/guides,benoittgt/guides,webPapaya/guides,earthrid/guides,gpluta/guides,aceofspades/guides,coffeejunk/guides,mendeza428/guides,zacharywelch/guides,boztek/guides,timrosenblatt/guides,benjaminokeefe/guides,talhaobject90/guides,Patsy-issa/guides,danielgynn/guides,richardkalehoff/guides,HeroicEric/guides,dgeb/guides,timrosenblatt/guides,papilip/emberjs-guides-french,tleskin/guides,papilip/emberjs-guides-french,ear/guides,mcfiredrill/guides,MarkMT/guides,tildeio/guides,SaladFork/emberjs-guides,TRMW/guides,jcagener/guides,elwayman02/guides,mallikarjunayaddala/guides,coffeejunk/guides,odarbelaeze/guides,webPapaya/guides,greyhwndz/guides,szines/guides,vikram7/guides,davidpett/guides,davidpett/guides,skaterdav85/guides,skaterdav85/guides,lunnaris/guides,alexspeller/guides,sajt/guides,constantm/guides,constantm/guides,richardkalehoff/guides,alexspeller/guides,kevinkucharczyk/guides,gerry3/guides,sajt/guides,kublaj/guides,JKGisMe/guides,ear/guides,jcagener/guides,knownasilya/guides,josephchappell/guides,elwayman02/guides,MSch/guides,talhaobject90/guides,balupton/guides,JKGisMe/guides,BigGillyStyle/guides,mendeza428/guides,toranb/guides,xymbol/guides,kagemusha/guides,rengokantai/guides,gerry3/guides,skaterdav85/guides,jcagener/guides,kublaj/guides,Patsy-issa/guides,lunnaris/guides,ubuntuvim/guides,xymbol/guides,ear/guides,misfo/guides,tildeio/guides,MarkMT/guides,foxnewsnetwork/guides,mattmcmanus/guides,misfo/guides,richardkalehoff/guides,omni5cience/guides,RalfWeinand/guides,ankushagarwal/guides,ankushagarwal/guides,Kuzirashi/guides,joostdevries/guides,jjhampton/guides,mallikarjunayaddala/guides,lunnaris/guides,benjaminokeefe/guides,sajt/guides,gregzx/guides,nicobot/guides,gpluta/guides,eoinkelly/guides,foxnewsnetwork/guides,ofridagan/guides,rengokantai/guides,BigGillyStyle/guides,boztek/guides,joostdevries/guides,tleskin/guides,bmac/guides,jjhampton/guides,andrewstarks/guides,andrewstarks/guides,xymbol/guides,zacharywelch/guides,benjaminokeefe/guides,HeroicEric/guides,kevinkucharczyk/guides,bmac/guides,toranb/guides,nicobot/guides,HeroicEric/guides,earthrid/guides,grapho/guides,josenberg/guides,gpluta/guides,mallikarjunayaddala/guides,zacharywelch/guides,anthias/guides,andrewstarks/guides,talhaobject90/guides,knownasilya/guides,omni5cience/guides,greyhwndz/guides,TRMW/guides,jkarsrud/guides,earthrid/guides,BigGillyStyle/guides,Joelkang/guides,rengokantai/guides,bmac/guides,constantm/guides,foxnewsnetwork/guides,gerry3/guides,kellywerks/guides,kagemusha/guides,benoittgt/guides,aceofspades/guides,Joelkang/guides,jkarsrud/guides,jkarsrud/guides,thriqon/guides,kellywerks/guides,josenberg/guides,balupton/guides,alexspeller/guides,tildeio/guides,mattmcmanus/guides,ubuntuvim/guides,mcfiredrill/guides,timrosenblatt/guides,mattmcmanus/guides,kevinkucharczyk/guides,josenberg/guides,nicobot/guides,odarbelaeze/guides,eoinkelly/guides,ofridagan/guides,jackfranklin/guides,misfo/guides,jjhampton/guides,knownasilya/guides,balupton/guides,MarkMT/guides,knownasilya/guides,boztek/guides,TRMW/guides,benoittgt/guides,jkarsrud/guides,kagemusha/guides,ubuntuvim/guides,tleskin/guides,gregzx/guides |
8ab3d1d31760669a9a9f33996441d5c513d51089 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.com
language: python
dist: jammy
python:
- '3.10'
- '3.9'
- '3.8'
services:
- postgresql
addons:
postgresql: 14
apt:
packages:
- postgresql-14-postgis-3
before_script:
- psql -U postgres -c "create extension postgis"
env:
global:
- TEST_DB_NAME=travis_ci_test
- TEST_DB_USER=postgres
install: pip install -r requirements/ci.txt
# Command to run tests, e.g. python setup.py test
script:
- tox
# Assuming you have installed the travis-ci CLI tool, after you
# create the Github repo and add it to Travis, run the
# following command to finish PyPI deployment setup:
# $ travis encrypt --add deploy.password
deploy:
provider: pypi
distributions: sdist bdist_wheel
user: alexhayes
password:
secure: PLEASE_REPLACE_ME
on:
tags: true
repo: alexhayes/django-geopostcodes
python: 3.8
| # Config file for automatic testing at travis-ci.com
language: python
dist: jammy
python:
- '3.10'
- '3.8'
# For some reason setuptools fails on Python 3.9 on travis - so turning 3.9 off for now.
# See https://app.travis-ci.com/github/alexhayes/django-geopostcodes/jobs/584887053#L570
# See https://github.com/pypa/setuptools/issues/3560
# See https://github.com/pypa/pip/issues/6264
# - '3.9'
services:
- postgresql
addons:
postgresql: 14
apt:
packages:
- postgresql-14-postgis-3
before_script:
- psql -U postgres -c "create extension postgis"
env:
global:
- TEST_DB_NAME=travis_ci_test
- TEST_DB_USER=postgres
install: pip install -r requirements/ci.txt
# Command to run tests, e.g. python setup.py test
script:
- tox
# Assuming you have installed the travis-ci CLI tool, after you
# create the Github repo and add it to Travis, run the
# following command to finish PyPI deployment setup:
# $ travis encrypt --add deploy.password
deploy:
provider: pypi
distributions: sdist bdist_wheel
user: alexhayes
password:
secure: PLEASE_REPLACE_ME
on:
tags: true
repo: alexhayes/django-geopostcodes
python: 3.8
| Disable Python 3.9 due to issue with setuptools. | Disable Python 3.9 due to issue with setuptools.
| YAML | mit | alexhayes/django-geopostcodes |
f82f69520ae02d3ea1b2753a3c1c35873d8b311f | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install -e . --use-mirrors
- pip install -r test_requirements.txt --use-mirrors
- pip install -r tox_requirements.txt --use-mirrors
script:
- make cov
- xenon xenon -bB -aA
after_success:
- coveralls
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
install:
- pip install -e . --use-mirrors
- pip install -r test_requirements.txt --use-mirrors
- pip install -r tox_requirements.txt --use-mirrors
- ./install-26-deps.sh
script:
- make cov
- xenon xenon -bB -aA
after_success:
- coveralls
| Add script for Python 2.6 dependencies | Add script for Python 2.6 dependencies
| YAML | mit | rubik/xenon |
f63aaf9f8975d85a34841508866e9e6f99f8680e | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
- vendor
git:
depth: 1
env:
global:
- PHPUNIT_VERSION="^5.4"
matrix:
fast_finish: true
include:
- php: 5.6
env:
- COMPOSER_FLAGS="--prefer-stable"
- php: 7
- php: hhvm
allow_failures:
- php: hhvm
before_script:
- travis_retry composer self-update --quiet
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
- travis_retry composer require phpunit/phpunit:${PHPUNIT_VERSION}
script:
- vendor/bin/phpunit
after_script:
- bash -c '[[ -f "build/logs/clover.xml" ]] && wget https://scrutinizer-ci.com/ocular.phar'
- bash -c '[[ -f "build/logs/clover.xml" ]] && php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml'
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
- vendor
git:
depth: 1
env:
global:
- PHPUNIT_VERSION="^5.4"
matrix:
fast_finish: true
include:
- php: 5.6
env:
- COMPOSER_FLAGS="--prefer-stable"
- php: 7
- php: hhvm
allow_failures:
- php: hhvm
before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
- travis_retry composer require phpunit/phpunit:${PHPUNIT_VERSION}
script:
- vendor/bin/phpunit
after_script:
- bash -c '[[ -f "build/logs/clover.xml" ]] && wget https://scrutinizer-ci.com/ocular.phar'
- bash -c '[[ -f "build/logs/clover.xml" ]] && php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml'
| Remove composer self-update call in Travis | Remove composer self-update call in Travis
Travis VMs now do this by default. Removing it here reduces the build time by an average of 3-4 seconds.
| YAML | mit | AlexMasterov/equip-twig,AlexMasterov/equip-twig |
7e7a7de3c196aeb4ccb8368792e507dd32c38f97 | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.1.2"
- "1.9.3"
- "1.9.2"
- "1.8.7"
| language: ruby
before_install:
- gem install bundler
rvm:
- "2.1.2"
- "1.9.3"
- "1.9.2"
- "1.8.7"
| Fix for broken version of bunder on Travis CI | Fix for broken version of bunder on Travis CI
| YAML | mit | njh/ruby-mqtt |
0ab4ba95e0077818b9f2181da20ab749519bbe83 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.5.9
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
before_install:
- cd ..
- git clone https://github.com/neos/neos-base-distribution.git
- cd neos-base-distribution
- git checkout 2.0.0
- composer update
install:
- mv ../Nieuwenhuizen.CR Packages/Application
script:
- bin/phpunit -c Packages/Application/Nieuwenhuizen.CR/PhpUnit.xml
- bin/phpunit --stop-on-failure -c Packages/Application/SimplyAdmire.CrowdConnector/PhpUnit.xml --testsuite "Nieuwenhuizen/CR tests"
| language: php
php:
- 5.5
- 5.5.9
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
before_install:
- cd ..
- git clone https://github.com/neos/neos-base-distribution.git
- cd neos-base-distribution
- git checkout 2.0.0
- composer update
install:
- mv ../Nieuwenhuizen.CR Packages/Application
script:
- bin/phpunit -c Packages/Application/Nieuwenhuizen.CR/UnitTests.xml
- bin/phpunit --stop-on-failure -c Packages/Application/Nieuwenhuizen.CR/UnitTests.xml --testsuite "Nieuwenhuizen/CR tests"
| Correct the test filename for Travis | [BUGFIX] Correct the test filename for Travis
| YAML | mit | LarsNieuwenhuizen/Nieuwenhuizen.CR |
c796e587a4383cdbdbd5bef5773c5c9035efac3f | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
env:
- PROMISEPAY_USERNAME=name@mail.com PROMISEPAY_TOKEN=token
script: "bundle exec rspec spec/"
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3
env:
- PROMISEPAY_USERNAME=name@mail.com PROMISEPAY_TOKEN=token
script: "bundle exec rspec spec/"
| Add Ruby v2.3 to Travis configuration file | Add Ruby v2.3 to Travis configuration file
| YAML | mit | PromisePay/promisepay-ruby |
56cff3e322df2de8b98b75942d47dc2093473af7 | .travis.yml | .travis.yml | language: go
go:
- tip
before_install:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure -v
| language: go
go:
- 1.8.3
- master
before_install:
- go get -u github.com/golang/dep/cmd/dep
- dep ensure -v
| Use latest go and master in build. | Use latest go and master in build.
| YAML | mpl-2.0 | mobingi/mobingi-cli |
bd25b73cf8c86c1ce4b7e297622dbc2ab69f05fc | .travis.yml | .travis.yml | language: erlang
sudo: false
os: linux
otp_release:
- 21.0
- 20.0
- 19.3
- 18.3
- 17.5
- R16B03-1
- R15B03
script: rebar3 eunit
install:
- wget https://s3.amazonaws.com/rebar3/rebar3 && chmod +x rebar3
script:
- ./rebar3 as prod compile
# - ./rebar3 as check xref
# - ./rebar3 as check dialyzer
- ./rebar3 eunit
- ./rebar3 edoc
notifications:
recipients:
- hello@alind.io
| language: erlang
sudo: false
os: linux
otp_release:
- 21.0.2
- 20.3.8.2
- 19.3
- 18.3
- 17.5
- R16B03-1
- R15B03
script: rebar3 eunit
install:
- wget https://s3.amazonaws.com/rebar3/rebar3 && chmod +x rebar3
script:
- ./rebar3 as prod compile
# - ./rebar3 as check xref
# - ./rebar3 as check dialyzer
- ./rebar3 eunit
- ./rebar3 edoc
notifications:
recipients:
- hello@alind.io
| Use latest OTP 20 and 21 versions | Use latest OTP 20 and 21 versions
| YAML | apache-2.0 | kivra/meck,apache/couchdb-meck,eproxus/meck |
2216b49155be0460d40770da9f5ff7dc564e8c6f | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| language: node_js
node_js:
- "node"
- "8"
- "10"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| Add spesific node versions for travic tests | Add spesific node versions for travic tests
| YAML | isc | yaacov/node-modbus-serial,yaacov/node-modbus-serial |
991af4a9c7778498f95f0eb2812f2ed13f10a06f | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "5"
- "4"
- "node"
script: "npm run coveralls" | language: node_js
node_js:
- "10"
- "9"
- "8"
- "6"
- "node"
script: "npm run coveralls" | Drop support for node versions < 6 | Drop support for node versions < 6
| YAML | mit | habbes/ussd-menu-builder |
ba30a59918a54f9e875ede0ed32ba122e183f22d | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
install:
- "pip install -r requirements_test.txt"
- "python setup.py install"
script: py.test
| language: python
python:
- "2.7"
- "3.6"
services:
- postgresql
install:
- "pip install -r requirements_test.txt"
- "python setup.py install"
script: py.test
| Add Postgres instance to Travis config | Add Postgres instance to Travis config
| YAML | agpl-3.0 | cgwire/zou |
7d3ccf20f31519d2c9633bf30151860d17147a71 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
- '3.4'
install:
- pip install -r requirements.txt
script: nosetests
| language: python
python:
- '2.6'
- '2.7'
- '3.3'
- '3.4'
install:
- pip install -r requirements.txt
- pip install pytest > /dev/null
- pip install pytest-cov > /dev/null
- pip install coveralls > /dev/null
script: py.test --cov dailymotion.py --cov-report term-missing TestDailymotion.py
after_success:
- coveralls
| Add coveralls stats to Travis builds. | Add coveralls stats to Travis builds.
| YAML | mit | LoveIsGrief/dailymotion-sdk-python,dailymotion/dailymotion-sdk-python |
0894247c2197f0924af1a0a61c195b8423022f41 | .github/mergeable.yml | .github/mergeable.yml | mergeable:
pull_requests:
label:
and:
- must_exclude:
regex: '^disposition/DO NOT MERGE'
message: 'Pull request marked not mergeable'
- or:
- and:
- must_include:
regex: 'release notes: yes'
message: 'Please include release notes: yes'
- must_include:
regex: '^(c#|c\+\+|cleanup|conformance tests|integration|java|javascript|go|objective-c|php|python|ruby|bazel|cmake|protoc)'
message: 'Please include at least a language label (e.g., c++, java, python). Or apply one of the following labels: bazel, cmake, cleanup, conformance tests, integration, protoc.'
- must_include:
regex: 'release notes: no'
message: 'Please include release notes: no'
| mergeable:
pull_requests:
label:
and:
- must_exclude:
regex: '^disposition/DO NOT MERGE'
message: 'Pull request marked not mergeable'
- or:
- and:
- must_include:
regex: 'release notes: yes'
message: 'Please include release notes: yes'
- must_include:
regex: '^(autotools|bazel|c#|c\+\+|cleanup|cmake|conformance tests|integration|go|java|javascript|objective-c|php|protoc|python|ruby)'
message: 'Please include at least a language label (e.g., c++, java, python). Or apply one of the following labels: autotools, bazel, cmake, cleanup, conformance tests, integration, protoc.'
- must_include:
regex: 'release notes: no'
message: 'Please include release notes: no'
| Add autotools to release languages. | Add autotools to release languages. | YAML | bsd-3-clause | google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf,google/protobuf |
beb389ad151073c14970cc6db6ac8458c5920f52 | .travis.yml | .travis.yml | language: php
php:
- 5.4
env:
matrix:
- DB=MYSQL CORE_RELEASE=3.1
- DB=MYSQL CORE_RELEASE=3.4
- DB=MYSQL CORE_RELEASE=master
- DB=PGSQL CORE_RELEASE=master
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=master
before_script:
- phpenv rehash
- composer self-update
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
script:
- vendor/bin/phpunit switchflit/tests/
| language: php
php:
- 5.4
env:
matrix:
- DB=MYSQL CORE_RELEASE=3.1
- DB=MYSQL CORE_RELEASE=3.4
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.4
before_script:
- phpenv rehash
- composer self-update
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
script:
- vendor/bin/phpunit switchflit/tests/
| Remove incompatible framework versions from TravisCI tests. | Remove incompatible framework versions from TravisCI tests.
| YAML | bsd-3-clause | Cheddam/SwitchFlit,Cheddam/SwitchFlit |
851a822dd6d4c7390a7f95ef45b74c5ad8ae7a6d | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.5.1"
gemfile:
- gemfiles/activesupport_4_2.gemfile
- gemfiles/activesupport_5_0.gemfile
- gemfiles/activesupport_5_1.gemfile
- gemfiles/activesupport_5_2.gemfile
| language: ruby
rvm:
- "2.2.10"
- "2.3.7"
- "2.4.4"
- "2.5.1"
gemfile:
- gemfiles/activesupport_4_2.gemfile
- gemfiles/activesupport_5_0.gemfile
- gemfiles/activesupport_5_1.gemfile
- gemfiles/activesupport_5_2.gemfile
| Test Rubies 2.2, 2.3 and 2.4 (as well as 2.5). | Test Rubies 2.2, 2.3 and 2.4 (as well as 2.5).
| YAML | mit | pupeno/assert_difference |
65a69d810d0f8e2fbe7e6e7d74b17d141f77d839 | .travis.yml | .travis.yml | language: go
sudo: false
go: 1.5
before_script: ui/install.sh
| language: go
sudo: false
go: 1.5
install: true
before_script: ui/install.sh
| Disable dependency mgmt by Travis | Disable dependency mgmt by Travis
| YAML | apache-2.0 | olivierlemasle/go-top,olivierlemasle/go-top,olivierlemasle/go-top,olivierlemasle/go-top |
a729bfd8185409cbee2e749157b540a70f676d24 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
addons:
postgresql: "9.3"
services:
- rabbitmq
- elasticsearch
- memcached
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y node-less libxml2-dev libxslt1-dev
install:
- make bootstrap
script:
- ./scripts/build.sh
| language: python
python:
- "2.6"
addons:
postgresql: "9.3"
services:
- rabbitmq
- elasticsearch
- memcached
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y npm libxml2-dev libxslt1-dev
- sudo npm install --global less
- sudo ln -s /usr/local/lib/node_modules/less/bin/lessc /usr/local/bin
install:
- make bootstrap
script:
- ./scripts/build.sh
| Install node less from npm | Install node less from npm
| YAML | mpl-2.0 | twobraids/socorro,KaiRo-at/socorro,mozilla/socorro,linearregression/socorro,Serg09/socorro,AdrianGaudebert/socorro,yglazko/socorro,twobraids/socorro,Tchanders/socorro,luser/socorro,AdrianGaudebert/socorro,luser/socorro,linearregression/socorro,yglazko/socorro,yglazko/socorro,mozilla/socorro,Tayamarn/socorro,KaiRo-at/socorro,twobraids/socorro,pcabido/socorro,Tayamarn/socorro,cliqz/socorro,AdrianGaudebert/socorro,yglazko/socorro,m8ttyB/socorro,m8ttyB/socorro,Tchanders/socorro,luser/socorro,Serg09/socorro,lonnen/socorro,adngdb/socorro,m8ttyB/socorro,Tayamarn/socorro,adngdb/socorro,adngdb/socorro,spthaolt/socorro,pcabido/socorro,linearregression/socorro,lonnen/socorro,Tayamarn/socorro,twobraids/socorro,linearregression/socorro,luser/socorro,AdrianGaudebert/socorro,lonnen/socorro,Tayamarn/socorro,pcabido/socorro,cliqz/socorro,adngdb/socorro,cliqz/socorro,adngdb/socorro,rhelmer/socorro,AdrianGaudebert/socorro,m8ttyB/socorro,cliqz/socorro,spthaolt/socorro,mozilla/socorro,luser/socorro,cliqz/socorro,twobraids/socorro,rhelmer/socorro,Serg09/socorro,Serg09/socorro,KaiRo-at/socorro,rhelmer/socorro,cliqz/socorro,Tchanders/socorro,m8ttyB/socorro,spthaolt/socorro,spthaolt/socorro,yglazko/socorro,rhelmer/socorro,lonnen/socorro,linearregression/socorro,twobraids/socorro,mozilla/socorro,Serg09/socorro,Tchanders/socorro,mozilla/socorro,Tchanders/socorro,spthaolt/socorro,spthaolt/socorro,rhelmer/socorro,adngdb/socorro,Tayamarn/socorro,KaiRo-at/socorro,yglazko/socorro,luser/socorro,mozilla/socorro,Tchanders/socorro,m8ttyB/socorro,pcabido/socorro,rhelmer/socorro,KaiRo-at/socorro,AdrianGaudebert/socorro,pcabido/socorro,Serg09/socorro,linearregression/socorro,pcabido/socorro,KaiRo-at/socorro |
f0faa8b4531759620b74f17f07ddfd2930d99fb1 | .travis.yml | .travis.yml | sudo: false
language: perl
addons:
apt:
packages:
- libdb-dev
- libgd2-noxpm-dev
install:
- cpanm --notest GD::Image
- cpanm --notest git://github.com/bioperl/bioperl-live.git@v1.6.x
- bash setup.sh
- npm install -g http-server jshint
script:
- node src/dojo/dojo.js load=build --require "src/JBrowse/init.js" --profile "src/JBrowse/JBrowse.profile.js"
- nohup http-server -p 9000 2>&1 &
- prove -Isrc/perl5 -lr tests
- phantomjs tests/js_tests/run-jasmine.js http://localhost:9000/tests/js_tests
- jshint src/JBrowse/
- make -f build/Makefile release
after_failure:
- cat JBrowse-1.x.x-dev/setup.log
- find JBrowse-1.x.x-dev/extlib/lib/perl5
| sudo: false
language: perl
addons:
apt:
packages:
- libdb-dev
- libgd2-noxpm-dev
install:
- cpanm --notest GD::Image Text::Markdown DateTime
- cpanm --notest git://github.com/bioperl/bioperl-live.git@v1.6.x
- bash setup.sh
- npm install -g http-server jshint
script:
- node src/dojo/dojo.js load=build --require "src/JBrowse/init.js" --profile "src/JBrowse/JBrowse.profile.js"
- nohup http-server -p 9000 2>&1 &
- prove -Isrc/perl5 -lr tests
- phantomjs tests/js_tests/run-jasmine.js http://localhost:9000/tests/js_tests
- jshint src/JBrowse/
- make -f build/Makefile release
after_failure:
- cat JBrowse-1.x.x-dev/setup.log
- find JBrowse-1.x.x-dev/extlib/lib/perl5
| Add the libs for the makefile | Add the libs for the makefile
| YAML | lgpl-2.1 | Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,GMOD/jbrowse,erasche/jbrowse,GMOD/jbrowse,erasche/jbrowse,nathandunn/jbrowse,erasche/jbrowse,erasche/jbrowse,GMOD/jbrowse,Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,erasche/jbrowse,GMOD/jbrowse,erasche/jbrowse,nathandunn/jbrowse,nathandunn/jbrowse,nathandunn/jbrowse,erasche/jbrowse,Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,nathandunn/jbrowse,GMOD/jbrowse,erasche/jbrowse,Arabidopsis-Information-Portal/jbrowse |
a213adb489098df1965f51d8842ae4591f4e8920 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
- 0.8
- 0.10
- 0.11
| language: node_js
node_js:
- "0.6"
- "0.8"
- "0.10"
- "0.11"
| Use correct syntax for node versions for Travis CI config. | Use correct syntax for node versions for Travis CI config.
| YAML | mit | pekim/tedious,tediousjs/tedious,spanditcaa/tedious,arthurschreiber/tedious,LeanKit-Labs/tedious,Sage-ERP-X3/tedious,tediousjs/tedious |
4e4ba72a59290acbd4be961e61f0c4ac5c3058fa | .travis.yml | .travis.yml | dist: trusty
sudo: required
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
- cmake
- libsndfile1-dev
- librtaudio-dev # This is here to populate the dependencies for the subsequent 5.0.0 build
install:
- curl -o rtaudio-5.0.0.tar.gz http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-5.0.0.tar.gz
- tar xzvf rtaudio-5.0.0.tar.gz
- cd rtaudio-5.0.0 && ./configure && make -j 4 && sudo make install && cd ..
- git clone https://github.com/frabert/sf2cute
- cd sf2cute && mkdir build && cd build
- cmake .. && make -j2 && make install
- cd ../../
script:
# Export CC and CXX to tell cmake which compiler to use
- export CC=/usr/bin/gcc-6
- export CXX=/usr/bin/g++-6
# Check versions of gcc, g++ and cmake
- gcc -v && g++ -v && cmake --version
- git submodule update --init --recursive
- mkdir -p build
- cd build
- cmake ..
- make -j2
| dist: trusty
sudo: required
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
- cmake
- libsndfile1-dev
- librtaudio-dev # This is here to populate the dependencies for the subsequent 5.0.0 build
install:
# Export CC and CXX to tell cmake which compiler to use
- export CC=/usr/bin/gcc-6
- export CXX=/usr/bin/g++-6
- curl -o rtaudio-5.0.0.tar.gz http://www.music.mcgill.ca/~gary/rtaudio/release/rtaudio-5.0.0.tar.gz
- tar xzvf rtaudio-5.0.0.tar.gz
- cd rtaudio-5.0.0 && ./configure && make -j 4 && sudo make install && cd ..
- git clone https://github.com/frabert/sf2cute
- cd sf2cute && mkdir build && cd build
- cmake .. && make -j2 && make install
- cd ../../
script:
# Check versions of gcc, g++ and cmake
- gcc -v && g++ -v && cmake --version
- git submodule update --init --recursive
- mkdir -p build
- cd build
- cmake ..
- make -j2
| Update GCC version even for install scripts | Update GCC version even for install scripts
| YAML | mit | frabert/libdmusic,frabert/libdmusic |
24b1bf051b27b9b00d9e3f0898e2ccfbe0aa1f41 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=1.4.12
- DJANGO=1.5.7
- DJANGO=1.6.4
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -q . --use-mirrors
- pip install -q mock --use-mirrors
- pip install -q pep8 --use-mirrors
before_script:
- "pep8 --exclude=migrations --ignore=E501,E225 eveigb"
script:
- python setup.py test
| language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=1.4.13
- DJANGO=1.5.8
- DJANGO=1.6.5
- DJANGO=https://www.djangoproject.com/download/1.7c2/tarball/
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -q . --use-mirrors
- pip install -q mock --use-mirrors
- pip install -q pep8 --use-mirrors
before_script:
- "pep8 --exclude=migrations --ignore=E501,E225 eveigb"
script:
- python setup.py test
| Update Travis to include Django 1.7c2 | Update Travis to include Django 1.7c2 | YAML | bsd-3-clause | nikdoof/django-eveigb |
7316b2ba0753d51de208e1d6caeb734caee02bbb | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "node"
script: npm test
notifications:
email: false
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "7"
script: npm test
notifications:
email: false
| Update engines used for testing | Update engines used for testing
| YAML | isc | novemberborn/as-i-preach |
bb0d282716e348ecba27f06b05583a1793183335 | .travis.yml | .travis.yml | language: c
script: meson build && cd ./build && ninja
# Uncomment me if this gets annoying
#
# notifications:
# email: false
install:
- pip3 install meson
addons:
apt:
packages:
- libgmp3-dev
- libsigsegv-dev
- openssl
- libuv-dev
- libssl-dev
- libncurses5-dev
- ninja-build
- g++
- ragel
- re2c
- libcurl4-gnutls-dev
- meson
- python
- python3
# before_deploy: "make deb" # TODO
deploy:
skip_cleanup: true
provider: releases
prerelease: true # turn this off for official releases
api_key:
secure: V4E7784ECSS3MO6ZIRtang9XwibDyvDYGb0MoSaP2CTlmzIAhdokr4KJFM0qM4KRaaajCdQuqi0lojgOjwdxs7e0GkAwScb33LFxQ7Chj/QkFOY7V1AnSRLR5OsXnazB0nur5aSwvcvnggQ2XW3OeF7zIvGfs9aR97SEz/xCrVE=
file: ./build/urbit # TODO upload package from before_deploy
on:
repo: urbit/urbit
tags: true
| language: c
script: meson build && cd ./build && ninja
# Uncomment me if this gets annoying
#
# notifications:
# email: false
install:
- pip3 install meson
addons:
apt:
packages:
- libgmp3-dev
- libsigsegv-dev
- openssl
- libuv-dev
- libssl-dev
- libncurses5-dev
- ninja-build
- g++
- ragel
- re2c
- libcurl4-gnutls-dev
- python
- python3
# before_deploy: "make deb" # TODO
deploy:
skip_cleanup: true
provider: releases
prerelease: true # turn this off for official releases
api_key:
secure: V4E7784ECSS3MO6ZIRtang9XwibDyvDYGb0MoSaP2CTlmzIAhdokr4KJFM0qM4KRaaajCdQuqi0lojgOjwdxs7e0GkAwScb33LFxQ7Chj/QkFOY7V1AnSRLR5OsXnazB0nur5aSwvcvnggQ2XW3OeF7zIvGfs9aR97SEz/xCrVE=
file: ./build/urbit # TODO upload package from before_deploy
on:
repo: urbit/urbit
tags: true
| Remove meson from build dependency | Remove meson from build dependency
| YAML | mit | ngzax/urbit,jfranklin9000/urbit,urbit/urbit,ngzax/urbit,jfranklin9000/urbit,urbit/urbit,jfranklin9000/urbit,urbit/urbit,jfranklin9000/urbit,urbit/urbit,jfranklin9000/urbit,ngzax/urbit,ngzax/urbit,urbit/urbit,urbit/urbit,ngzax/urbit,ngzax/urbit,urbit/urbit,jfranklin9000/urbit,jfranklin9000/urbit,ngzax/urbit |
ca7cb8fc6aa53dfab4388b128a928b21648c4e2f | .travis.yml | .travis.yml | language: node_js
node_js:
- '12'
- '14'
- '15'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| language: node_js
node_js:
- '12'
- '14'
- '16'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
| Build with Node.js 16 on Travis CI. | Build with Node.js 16 on Travis CI.
| YAML | mit | bigeasy/amalgamate,bigeasy/amalgamate |
935ee7b7ca1849a252476f3c0d8f13f441a8f1db | .travis.yml | .travis.yml | ---
env:
- PUPPET_VERSION=2.7.23
- PUPPET_VERSION=3.3.2
notifications:
email: false
rvm:
- 1.9.3
- 1.8.7
matrix:
fast_finish: true
allow_failures:
- env: PUPPET_VERSION=2.7.23
language: ruby
before_script: "gem install --no-ri --no-rdoc bundler"
script: 'bundle exec rake validate && bundle exec rake lint && SPEC_OPTS="--format documentation" bundle exec rake spec'
gemfile: Gemfile
| ---
env:
- PUPPET_VERSION=2.7.23
- PUPPET_VERSION=3.3.2
notifications:
email: false
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
matrix:
fast_finish: true
allow_failures:
- env: PUPPET_VERSION=2.7.23
- rvm: 2.0.0
language: ruby
before_script: "gem install --no-ri --no-rdoc bundler"
script: 'bundle exec rake validate && bundle exec rake lint && SPEC_OPTS="--format documentation" bundle exec rake spec'
gemfile: Gemfile
| Test against Ruby v2.0.0 though allow it to fail | Test against Ruby v2.0.0 though allow it to fail
| YAML | apache-2.0 | ghoneycutt/puppet-module-stdlibfeatures |
c7c4b8bc2bf356c5dedd8b0a1a3abc4d61c53386 | .travis.yml | .travis.yml | # Passes arguments to bundle install (http://gembundler.com/man/bundle-install.1.html)
bundler_args: --binstubs
# Specify which ruby versions you wish to run your tests on, each version will be used
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx-18mode
- rbx-19mode
- ree
- jruby-18mode
- jruby-19mode
- ruby-head
script: "bundle exec rake"
| # Passes arguments to bundle install (http://gembundler.com/man/bundle-install.1.html)
bundler_args: --binstubs
# Specify which ruby versions you wish to run your tests on, each version will be used
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx-18mode
- rbx-19mode
- ree
- jruby-18mode
- jruby-19mode
- ruby-head
matrix:
allow_failures:
- rvm: jruby-18mode
- rvm: jruby-19mode
- rvm: rbx-18mode
- rvm: rbx-19mode
script: "bundle exec rake"
| Allow breakage for some ruby implementations | Allow breakage for some ruby implementations
| YAML | mit | tuskenraiders/degu |
f70eea1030efed65fadbfcdd41db7844c6f2b5f8 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- pypy
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install --use-mirrors pyev; fi
- pip install --use-mirrors tornado twisted pyyaml
script: nosetests
| language: python
python:
- 2.6
- 2.7
install:
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors unittest2; fi
- pip install --use-mirrors tornado twisted pyyaml
script: nosetests
| Remove pypy and installation attempt of pyev | Remove pypy and installation attempt of pyev
| YAML | bsd-3-clause | Tarsbot/pika,renshawbay/pika-python3,knowsis/pika,zixiliuyue/pika,hugoxia/pika,fkarb/pika-python3,vrtsystems/pika,shinji-s/pika,skftn/pika,jstnlef/pika,Zephor5/pika,reddec/pika,vitaly-krugl/pika,pika/pika,benjamin9999/pika |
5e082a6f000a63f24f9f12ab2b0b6f7e5c84d219 | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
after_success:
- 'cat ./reports/coverage/lcov.info | ./node_modules/.bin/coveralls'
| language: node_js
node_js:
- "stable"
after_success:
- 'cat ./reports/coverage/lcov.info | ./node_modules/.bin/coveralls'
sudo: false
cache:
directories:
- node_modules
| Use Travis containers, and cache node_modules | Use Travis containers, and cache node_modules
| YAML | mit | remanc/setup |
c4034897caad40983d6dcef5df990e095c4f19e5 | .travis.yml | .travis.yml | addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- libsnappy-dev
- realpath
language: elixir
elixir:
- 1.4.4
install:
- export CC="clang"
- mkdir _deps
- git clone https://github.com/openvenues/libpostal
- cd libpostal
- ./bootstrap.sh
- ./configure --datadir=$(pwd)/data --prefix=$(realpath $(pwd)/../_deps) --bindir=$(realpath $(pwd)/../_deps)
- make install
- cd ..
- export CFLAGS=-I$(pwd)/_deps/include
- export LDFLAGS=-L$(pwd)/_deps/lib
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/_deps/lib
- export LD_RUN_PATH=$LD_RUN_PATH:$(pwd)/_deps/lib
- mix local.hex --force
- mix local.rebar --force
- mix deps.get
- mix compile
script:
- export CC="clang"
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/_deps/lib
- mix test
notifications:
email: false
| addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- libsnappy-dev
- realpath
language: elixir
elixir:
- 1.4.4
install:
- export CC="clang"
- mkdir _deps
- git clone https://github.com/openvenues/libpostal
- cd libpostal
- ./bootstrap.sh
- ./configure --datadir=$(pwd)/data --prefix=$(realpath $(pwd)/../_deps) --bindir=$(realpath $(pwd)/../_deps)
- make install
- cd ..
- export CFLAGS=-I$(pwd)/_deps/include
- export LDFLAGS=-L$(pwd)/_deps/lib
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/_deps/lib
- export LD_RUN_PATH=$LD_RUN_PATH:$(pwd)/_deps/lib
- mix local.hex --force
- mix local.rebar --force
- mix deps.get
- mix compile
script:
- export CC="clang"
- export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$(pwd)/_deps/lib
- mix test
- mix dialyzer
notifications:
email: false
| Add mix dialyzer as part of CI test | Add mix dialyzer as part of CI test
related to PR #5
| YAML | mit | SweetIQ/expostal,SweetIQ/expostal |
4179c531ac61afbcf08c493eb4a346fd3ede5ede | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "1.2"
after_success: npm run coveralls
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "iojs"
after_success: npm run coveralls
| Test io.js instead of a specific version | Test io.js instead of a specific version
| YAML | mit | jstransformers/jstransformer-mustache,jstransformers/jstransformer-mustache |
744632a329070902898c28b4b30f399b04146285 | .travis.yml | .travis.yml | language: rust
cache: cargo
rust:
- stable
- nightly
env:
- FEATURE=awskms
- FEATURE=gcpkms
- FEATURE=""
matrix:
allow_failures:
- rust: nightly
fast_finish: true
script:
- cargo build --verbose --features $FEATURE
- cargo test --verbose --features $FEATURE
| language: rust
cache: cargo
rust:
- stable
- nightly
env:
- FEATURE=default
- FEATURE=awskms
- FEATURE=gcpkms
matrix:
allow_failures:
- rust: nightly
fast_finish: true
script:
- cargo build --verbose --features $FEATURE
- cargo test --verbose --features $FEATURE
| Add KMS features to Travis build, try 3. Use 'default' for plain builds. | Add KMS features to Travis build, try 3. Use 'default' for plain builds.
| YAML | apache-2.0 | int08h/roughenough |
b637281877d9348aa81074badd9792e07c87dcb1 | .travis.yml | .travis.yml | language: csharp
solution: RailPhase.sln
install:
- nuget restore RailPhase.sln
script:
- xbuild /p:Configuration=Release /p:TargetFrameworkVersion="v4.5" /p:ToolsVersion="4.0" RailPhase.sln
- cd ./RailPhase.Tests/bin/Release/
- mono ./packages/NUnit.ConsoleRunner.3.6.1/tools/nunit3-console.exe ./RailPhase.Tests.dll
| language: csharp
solution: RailPhase.sln
install:
- nuget restore RailPhase.sln
script:
- xbuild /p:Configuration=Release /p:TargetFrameworkVersion="v4.5" /p:ToolsVersion="4.0" RailPhase.sln
- cd ./RailPhase.Tests/bin/Release/
- mono ../../../packages/NUnit.ConsoleRunner.3.6.1/tools/nunit3-console.exe ./RailPhase.Tests.dll
| Fix executable name of Nunit3 runner in Travis script (again) | Fix executable name of Nunit3 runner in Travis script (again)
| YAML | mit | LukasBoersma/Web2Sharp,LukasBoersma/RailPhase,RailPhase/RailPhase,LukasBoersma/RailPhase,RailPhase/RailPhase,LukasBoersma/Web2Sharp |
4c1acd9e2775d339ae617b96d2e877c56ca73b96 | .travis.yml | .travis.yml | language: python
cache: pip
python:
- "2.7"
- "3.5"
- "3.6"
dist: trusty
sudo: false
install:
- "pip install --pre -r requirements.txt"
- "pip install -r test-requirements.txt"
script:
- "flake8"
- "python manage.py check"
- "python manage.py migrate"
- "python manage.py test"
| language: python
cache: pip
python:
- "3.5"
- "3.6"
dist: trusty
sudo: false
install:
- "pip install --pre -r requirements.txt"
- "pip install -r test-requirements.txt"
script:
- "flake8"
- "python manage.py check"
- "python manage.py migrate"
- "python manage.py test"
| Remove python 2.7 from builds | Remove python 2.7 from builds
| YAML | mit | huangsam/chowist,huangsam/chowist,huangsam/chowist |
de19042405c42991a547cdecc4bb823e20bdb2a9 | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.5
- tip
matrix:
allow_failures:
- go: tip
| language: go
go:
- 1.5
- tip
matrix:
allow_failures:
- go: tip
| Remove support for go 1.4 | Remove support for go 1.4
| YAML | mit | rs/xstats |
0a86f75be4bf6235c386e0d18d624d07def39c51 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7
env:
global:
- LC_CTYPE=en_US.UTF-8
- secure: kg5TFTNojZ9VOYHApONRUXSbwu+erLs3WSNNX/CKbkO8eQnBo+1koXHnEtOTQ641YRAVpFLX4QK7pbRfmWWWzR6ntNgXmvE4IUa1ggsUlcorApLq+cQin1Tp1es0/Ul0nYLJN8WXbcObKSLy8FOmHkrMWYuffMtH9e7qEL01ei0=
before_install:
- ./script/import-certificates
- gem install cocoapods xcpretty -N
- brew update
- brew install carthage
- carthage bootstrap --use-submodules --no-build
script:
- pod spec lint APIKit.podspec
- set -o pipefail
- xcodebuild test -workspace APIKit.xcworkspace -scheme APIKit-iOS -sdk iphonesimulator | xcpretty -c
- xcodebuild test -workspace APIKit.xcworkspace -scheme APIKit-Mac | xcpretty -c
| language: objective-c
osx_image: xcode7
env:
global:
- LC_CTYPE=en_US.UTF-8
- secure: kg5TFTNojZ9VOYHApONRUXSbwu+erLs3WSNNX/CKbkO8eQnBo+1koXHnEtOTQ641YRAVpFLX4QK7pbRfmWWWzR6ntNgXmvE4IUa1ggsUlcorApLq+cQin1Tp1es0/Ul0nYLJN8WXbcObKSLy8FOmHkrMWYuffMtH9e7qEL01ei0=
before_install:
- ./script/import-certificates
- gem install cocoapods xcpretty -N
- brew update
- brew install carthage
- carthage bootstrap --use-submodules --no-build
script:
- carthage build --no-skip-current
- pod spec lint APIKit.podspec
- set -o pipefail
- xcodebuild test -workspace APIKit.xcworkspace -scheme APIKit-iOS -sdk iphonesimulator | xcpretty -c
- xcodebuild test -workspace APIKit.xcworkspace -scheme APIKit-Mac | xcpretty -c
| Add Carthage compatibility test to CI tasks | Add Carthage compatibility test to CI tasks
| YAML | mit | sora0077/APIKit,ishkawa/APIKit,sora0077/APIKit,ishkawa/APIKit |
f1390ea467a95abbc3587cf754bbfd4a1a446ede | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=1.4.8
- DJANGO=1.5.4
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -q . --use-mirrors
- pip install -q mock --use-mirrors
- pip install -q pep8 --use-mirrors
before_script:
- "pep8 --exclude=migrations --ignore=E501,E225 eveigb"
script:
- python setup.py test | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=1.4.12
- DJANGO=1.5.7
- DJANGO=1.6.4
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -q . --use-mirrors
- pip install -q mock --use-mirrors
- pip install -q pep8 --use-mirrors
before_script:
- "pep8 --exclude=migrations --ignore=E501,E225 eveigb"
script:
- python setup.py test
| Update Travis for newer Django versions. | Update Travis for newer Django versions. | YAML | bsd-3-clause | nikdoof/django-eveigb |
c9f00ad83d08063a3100c2489b2b83f17d5fa027 | .travis.yml | .travis.yml | language: groovy
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
services:
docker
jdk:
- oraclejdk7
- oraclejdk8
script: "./gradlew -Djava.net.preferIPv4Stack=true --no-daemon check testTemplateMavenQuickstart"
| language: groovy
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
services:
docker
jdk:
- oraclejdk7
- oraclejdk8
script: "./gradlew -Djava.net.preferIPv4Stack=true --no-daemon check testTemplateMavenQuickstart --info"
| Enable again info messages. In other case Travis-ci terminate job without any messages by timeout | Enable again info messages. In other case Travis-ci terminate job without any messages by timeout
| YAML | apache-2.0 | dkorotych/lazybones-templates,dkorotych/lazybones-templates |
397e0a3d95f50b8169f558ce24942730b52e74be | .travis.yml | .travis.yml | os: osx
before_install:
- brew install phantomjs
- git clone git://github.com/n1k0/casperjs.git casperjs
- export PATH=`pwd`/casperjs/bin/:$PATH
before_script:
- phantomjs --version
- casperjs --version
- python -m SimpleHTTPServer 8080 &
- sleep 10
script:
- casperjs test test/integration | os: osx
before_install:
- brew cask install phantomjs
- git clone git://github.com/n1k0/casperjs.git casperjs
- export PATH=`pwd`/casperjs/bin/:$PATH
before_script:
- phantomjs --version
- casperjs --version
- python -m SimpleHTTPServer 8080 &
- sleep 10
script:
- casperjs test test/integration | Install Phantomjs with brew cask | Install Phantomjs with brew cask
| YAML | mit | watsonbox/exportify,watsonbox/exportify,watsonbox/exportify |
483c04b235d7197e26ac0c1292c3166f3e92b7f5 | .travis.yml | .travis.yml | # Use container system
sudo: false
# Add APT dependencies
addons:
apt:
packages:
- git
- pkg-config
- libssl-dev
# Cache OpenSSL build
cache:
directories:
- $HOME/build/dependencies/openssl-*
# Build matrix
language: c
os:
- linux
- osx
compiler:
- gcc
- clang
dist:
- trusty
- precise
# TODO: Re-enable once Travis upgraded to OpenSSL >= 1.0.2
#env:
# - ENFORCE_OPENSSL=0
# - ENFORCE_OPENSSL=1
# Make dependencies
install:
- ./make-dependencies.sh
# Set environment vars
before_script:
- export PKG_CONFIG_PATH=${HOME}/build/prefix/lib/pkgconfig:${PKG_CONFIG_PATH}
- export LD_LIBRARY_PATH=${HOME}/build/prefix/lib:${LD_LIBRARY_PATH}
- export PATH=${HOME}/build/prefix/bin:${PATH}
# Install library and run tests
script:
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=${HOME}/build/prefix ..
- make install
- echo TODO: make test
# - make test
| # Use container system
sudo: false
# Cache OpenSSL build
cache:
directories:
- $HOME/build/dependencies/openssl-*
# Build matrix
language: c
os:
- linux
- osx
compiler:
- gcc
- clang
matrix:
include:
- os: linux
dist: trusty
env:
- ENFORCE_OPENSSL=0
- ENFORCE_OPENSSL=1
# Linux dependencies
addons:
apt:
packages:
- git
- pkg-config
- libssl-dev
# OSX dependencies
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install git pkg-config openssl; fi
# Make dependencies
install:
- ./make-dependencies.sh
# Set environment vars
before_script:
- export PKG_CONFIG_PATH=${HOME}/build/prefix/lib/pkgconfig:${PKG_CONFIG_PATH}
- export LD_LIBRARY_PATH=${HOME}/build/prefix/lib:${LD_LIBRARY_PATH}
- export PATH=${HOME}/build/prefix/bin:${PATH}
# Install library and run tests
script:
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=${HOME}/build/prefix ..
- make install
- echo TODO: make test
# - make test
| Fix build on trusty Fix dependencies for OSX Re-add environments | Fix build on trusty
Fix dependencies for OSX
Re-add environments
| YAML | bsd-2-clause | rawrtc/rawrtc,rawrtc/rawrtc,rawrtc/rawrtc,rawrtc/rawrtc |
5a5f7d33313a9f1a1b88c4d7705596aa4f976608 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- ruby-head
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
fast_finish: true
| language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3.1
- ruby-head
- rbx-2
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
fast_finish: true
| Test Ruby 3.2.1 on CI | Test Ruby 3.2.1 on CI
| YAML | mit | jnbt/java-properties |
8ad0151f94f2e2d37432a83201d30b4670d72039 | .travis.yml | .travis.yml | rvm:
- 2.1.2
- 2.2.1
- rbx-2
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
sudo: false
| rvm:
- 2.1.7
- 2.2.3
- rbx-2
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
sudo: false
| Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | dotpromo/danthes |
9f3a1536a2507b3835f305b1bc416ed63dd43dbf | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
sudo: required
services:
- docker
script:
- bundle exec rake test
after_success:
- docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- bundle exec rake push
| language: ruby
rvm:
- 2.2
sudo: required
services:
- docker
script:
- bundle exec rake test
after_success:
- echo $DOCKER_PASSWORD | docker login -u $DOCKER_USER --password-stdin
- bundle exec rake push
| Update Docker build command for Travis | Update Docker build command for Travis
| YAML | mit | Digital-Identity-Labs/ishigaki,Digital-Identity-Labs/ishigaki,Digital-Identity-Labs/ishigaki,Digital-Identity-Labs/ishigaki |
65c1ca73cb19baf0f8b2b33219b7f57595a3ccb0 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- cd $TRAVIS_BUILD_DIR/dnsimple
- "$HOME/gopath/bin/goveralls -v -service=travis-ci"
matrix:
allow_failures:
- go: tip
notifications:
slack:
secure: Dtb0Bf3AlAxeycfJuli46P8kG4B1at89vtMKbLKKGMwgimAWAKayNjJyuM+CaXtSiqeXOZqypKo9ScAjitQk/UTiE/NkScEZgT9wY+E0Cr+OZKBbIOLfKmFBi6+sjJUdJlVpA8aLqINOoeRH0sc6P5NE+g4StXl0C/M4PLBBfkI=
| sudo: false
language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
# before_install:
# - go get github.com/axw/gocov/gocov
# - go get github.com/mattn/goveralls
# - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
# script:
# - cd $TRAVIS_BUILD_DIR/dnsimple
# - "$HOME/gopath/bin/goveralls -v -service=travis-ci"
matrix:
allow_failures:
- go: tip
notifications:
slack:
secure: Dtb0Bf3AlAxeycfJuli46P8kG4B1at89vtMKbLKKGMwgimAWAKayNjJyuM+CaXtSiqeXOZqypKo9ScAjitQk/UTiE/NkScEZgT9wY+E0Cr+OZKBbIOLfKmFBi6+sjJUdJlVpA8aLqINOoeRH0sc6P5NE+g4StXl0C/M4PLBBfkI=
| Disable Coverall that is misbehaving | Disable Coverall that is misbehaving
See https://github.com/lemurheavy/coveralls-public/issues/713
| YAML | mit | aetrion/dnsimple-go,weppos/go-dnsimple |
09c0eb28bfd4defd9cd4948912617e77661ef713 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "16"
- "14"
- "12"
- "11"
- "10"
- "9"
- "8"
- "0.12"
- "0.11"
- "4.2"
- "5.2"
- "iojs"
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- clang
| sudo: false
language: node_js
node_js:
- "16"
- "14"
- "12"
- "11"
- "10"
- "9"
- "8"
- "0.12"
- "0.11"
- "4.2"
- "5.2"
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- clang
| Remove iojs from Travis' config | Remove iojs from Travis' config
| YAML | mpl-2.0 | hgourvest/node-glpk,hgourvest/node-glpk,hgourvest/node-glpk,hgourvest/node-glpk |
5e2a4b3a2c46b49a64ec8628bda8343e493e5c81 | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
addons:
firefox: latest
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "export CHROME_BIN=chromium-browser"
- sleep 3
| language: node_js
node_js:
- "7"
addons:
firefox: latest
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "export CHROME_BIN=chromium-browser"
- "sudo chmod 4755 /opt/google/chrome/chrome-sandbox"
- sleep 3
| ADD chmod 4755 to chromium paht | ADD chmod 4755 to chromium paht
| YAML | apache-2.0 | pubkey/rxdb,natew/rxdb,pubkey/rxdb,pubkey/rxdb,pubkey/rxdb,natew/rxdb,pubkey/rxdb |
95287ddb532f309d399417ac5100ac042d33b5a8 | .travis.yml | .travis.yml | language: python
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
- TOX_ENV=pep8
- TOX_ENV=pylint
- TOX_ENV=coverage
# commands to install dependencies
install:
- pip install tox --use-mirrors
# commands to run
script:
- tox -e $TOX_ENV
after_success:
- if [ "-x$TOX_ENV" = "xcoverage" ]; then coveralls; fi | language: python
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
- TOX_ENV=pep8
- TOX_ENV=pylint
- TOX_ENV=coverage
# commands to install dependencies
install:
- pip install tox
# commands to run
script:
- tox -e $TOX_ENV
after_success:
- if [ "-x$TOX_ENV" = "xcoverage" ]; then coveralls; fi
| Stop using removed --use-mirrors option for pip when installing tox | Stop using removed --use-mirrors option for pip when installing tox
| YAML | apache-2.0 | box/flaky,Jeff-Meadows/flaky |
f8496af756503a273fa7c0c78d7d314246f1be64 | .travis.yml | .travis.yml | sudo: required
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# versions of java to test (for parsers)
before_install:
- sudo apt-get update
- sudo apt-get install oracle-java8-installer oracle-java8-set-default
# command to install dependencies
install:
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- pip install pytest coverage pytest-timeout pytest_socket
- pip install python-coveralls
- pip install --upgrade coverage
- pip install .
# - python -c "import kindred; kindred.downloadCoreNLP()" # not used as initial dependencies tests will run this
# command to run tests
script:
- java -version
- coverage --version
- coverage run --branch -m pytest -v --timeout=90 && coverage report -m
after_success:
- coveralls
env:
global:
- JAVA_HOME=/usr/lib/jvm/java-8-oracle
| sudo: required
os:
- linux
- osx
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# versions of java to test (for parsers)
before_install:
- sudo apt-get update
- sudo apt-get install oracle-java8-installer oracle-java8-set-default
# command to install dependencies
install:
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- pip install pytest coverage pytest-timeout pytest_socket
- pip install python-coveralls
- pip install --upgrade coverage
- pip install .
# - python -c "import kindred; kindred.downloadCoreNLP()" # not used as initial dependencies tests will run this
# command to run tests
script:
- java -version
- coverage --version
- coverage run --branch -m pytest -v --timeout=90 && coverage report -m
after_success:
- coveralls
env:
global:
- JAVA_HOME=/usr/lib/jvm/java-8-oracle
| Add MacOS to Travis-CI tests | Add MacOS to Travis-CI tests
| YAML | mit | jakelever/kindred,jakelever/kindred |
5c39a6fa47109cab11d50ec9b66f65025a979cbe | .travis.yml | .travis.yml | language: haskell
install:
- bundle install
- travis_retry cabal install pandoc pandoc-citeproc
script: bundle exec rake site:deploy
env:
global:
secure: "DTpqY+yuvROkUofxsMJaRjfuniYAm3nujq0WlxrBEDxnE+rN8wx45XCs+xzaBhxn+KgNG4RVuJTvx6DhwJu3ocZNUdBgCVzJ6goXqfEEt8ogIp81flNGkU2+bEDHqL0Pfyd3L3NsGM5ZUPZ0d/1ovkOvDugMsGtNpvRjB25CXss=" | language: ruby
install:
# Install binary pandoc from Rstudio
- export PATH="$HOME/pandoc:$PATH"
- mkdir $HOME/pandoc
- curl -O https://s3.amazonaws.com/rstudio-buildtools/pandoc-1.12.3.zip
- unzip -j pandoc-1.12.3.zip pandoc-1.12.3/linux/debian/x86_64/pandoc
-d $HOME/pandoc
- chmod +x $HOME/pandoc/pandoc
- pandoc --version
# Install Jekyll and dependencies
- bundle install
script: bundle exec rake site:deploy
env:
global:
secure: "DTpqY+yuvROkUofxsMJaRjfuniYAm3nujq0WlxrBEDxnE+rN8wx45XCs+xzaBhxn+KgNG4RVuJTvx6DhwJu3ocZNUdBgCVzJ6goXqfEEt8ogIp81flNGkU2+bEDHqL0Pfyd3L3NsGM5ZUPZ0d/1ovkOvDugMsGtNpvRjB25CXss=" | Install Pandoc via binary from RStudio | Install Pandoc via binary from RStudio
| YAML | mit | mfenner/mfenner.github.io,mfenner/mfenner.github.io,mfenner/mfenner.github.io,mfenner/mfenner.github.io |
0a37c5b4ab410ac87f85b2a31c2cb38279c9d14f | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.7
before_install: gem install bundler -v 1.11.2
| language: ruby
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
before_install: gem install bundler
script: bundle exec rake
notifications:
email:
recipients:
- transit-it@admin.umass.edu
| Use old stable, previous stable, and current stable | Use old stable, previous stable, and current stable
| YAML | mit | umts/custom-matchers,umts/custom-matchers |
d6df244bfa065ebceb5bd34a06a5bff09a899d6c | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- rbx
branches:
only:
- master
- guard_dependencies
env:
- GUARD_SLEEP=1
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard"
| rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- rbx
branches:
only:
- master
- notifications
env:
- GUARD_SLEEP=1
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard"
| Add notifications branch to Travis. | Add notifications branch to Travis. [ci skip]
| YAML | mit | guard/guard,100star/guard,garettarrowood/guard,yujinakayama/guard,sideci-sample/sideci-sample-guard,baberthal/guard,ginkel/guard,pjump/guard,sdgdsffdsfff/guard |
9f8a8152bfffa572ddd07417fb362c2149dee0d0 | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=client-amazonlinux
- INSTANCE=client-centos-6
- INSTANCE=client-centos-7
- INSTANCE=client-debian-8
- INSTANCE=client-debian-9
- INSTANCE=client-fedora-latest
- INSTANCE=client-ubuntu-1404
- INSTANCE=client-ubuntu-1604
- INSTANCE=server-amazonlinux
- INSTANCE=server-centos-6
- INSTANCE=server-centos-7
- INSTANCE=server-debian-8
- INSTANCE=server-debian-9
#- INSTANCE=server-fedora-latest # Disabled due to apache2 cookbook being broken on fedora
- INSTANCE=server-ubuntu-1404
- INSTANCE=server-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
| sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
# - INSTANCE=client-amazonlinux
- INSTANCE=client-centos-6
- INSTANCE=client-centos-7
- INSTANCE=client-debian-8
- INSTANCE=client-debian-9
- INSTANCE=client-fedora-latest
- INSTANCE=client-ubuntu-1404
- INSTANCE=client-ubuntu-1604
#- INSTANCE=server-amazonlinux
- INSTANCE=server-centos-6
- INSTANCE=server-centos-7
- INSTANCE=server-debian-8
- INSTANCE=server-debian-9
#- INSTANCE=server-fedora-latest # Disabled due to apache2 cookbook being broken on fedora
- INSTANCE=server-ubuntu-1404
- INSTANCE=server-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
| Disable amazon linux for now | Disable amazon linux for now
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | opscode-cookbooks/subversion,opscode-cookbooks/subversion,chef-cookbooks/subversion,chef-cookbooks/subversion |
154f9b6a85911613b775ed2ae592b9dc59452de4 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
before_script:
- npm install -g codeclimate-test-reporter
after_script:
- codeclimate < test/coverage/**/lcov.info
env:
- CODECLIMATE_REPO_TOKEN=98a7786774f59111d4eb94c51615a083b76002cb43cb5b4e23d1d6bb8d210c1d | language: node_js
node_js:
- 0.10
before_script:
- npm install -g codeclimate-test-reporter
after_script:
- codeclimate < coverage/**/lcov.info
env:
- CODECLIMATE_REPO_TOKEN=98a7786774f59111d4eb94c51615a083b76002cb43cb5b4e23d1d6bb8d210c1d | Fix wrong coverage report path | Fix wrong coverage report path
| YAML | mit | jsnjack/amy.js |
0d9f44cb56afd589e19e7a6010f67ff1e32230e9 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
## Don't test 1.9.2 because people shouldn't be using it.
# - 1.9.2
## Don't test REE because it's compatible enough with 1.8.7.
# - ree
## JRuby is not compatible, see Gemfile for details.
# - jruby-18mode
# - jruby-19mode
# - jruby-head
## Rubinius is not compatible, see Gemfile for details.
# - rbx-18mode
# - rbx-19mode
script:
- export DBUSER_MYSQL=root
- export DBUSER_POSTGRESQL=postgres
- cp "config/secrets.yml.sample" "config/secrets.yml"
- bundle exec rake spec:db:all --trace
| language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
## Don't test 1.9.2 because people shouldn't be using it.
# - 1.9.2
## Don't test REE because it's compatible enough with 1.8.7.
# - ree
## JRuby is not compatible, see Gemfile for details.
# - jruby-18mode
# - jruby-19mode
# - jruby-head
## Rubinius is not compatible, see Gemfile for details.
# - rbx-18mode
# - rbx-19mode
script:
- export DBUSER_MYSQL=root
- export DBUSER_POSTGRESQL=postgres
- cp "config/secrets.yml.sample" "config/secrets.yml"
- bundle exec rake spec:db:all --trace
| Add Ruby 2.0.0 to Travis config | Add Ruby 2.0.0 to Travis config | YAML | mit | kerrizor/calagator,Eugator-Wranglers/calagator,Villag/dentonator,shawnacscott/calagator,CorainChicago/ActivateHub,nblackburn87/calagator,cp/calagator-1,reidab/calagator,dudleysr/calagator-workspace,bencornelis/calagator,CorainChicago/ActivateHub,kerrizor/calagator,iamBalaji/Calagator,L2-D2/calagator,iamBalaji/Calagator,L2-D2/calagator,jmcduffie32/calagator,matthewkmayer/calagator,reidab/calagator,reidab/calagator,oktober/calagator,nblackburn87/calagator,reidab/calagator,oktober/calagator,VolunteerOdyssey/calagator,VolunteerOdyssey/calagator,Villag/dentonator,shawnacscott/calagator,eeeeeean/windchimes,bencornelis/calagator,VolunteerOdyssey/calagator,eeeeeean/windchimes,alexbeeken/calagator.org,oktober/calagator,iamBalaji/Calagator,matthewkmayer/calagator,CorainChicago/ActivateHub,shawnacscott/calagator,Eugator-Wranglers/calagator,nblackburn87/calagator,cp/calagator-1,matthewkmayer/calagator,alexbeeken/calagator.org,kerrizor/calagator,L2-D2/calagator,shawnacscott/calagator,jmcduffie32/calagator,cp/calagator-1,matthewkmayer/calagator,L2-D2/calagator,bencornelis/calagator,bencornelis/calagator,iamBalaji/Calagator,dudleysr/calagator-workspace,jmcduffie32/calagator,CorainChicago/ActivateHub,Villag/dentonator,oktober/calagator,jmcduffie32/calagator,kerrizor/calagator,cp/calagator-1 |
0df0768631c636e4c937409b1c797b8f47d8d62d | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
addons:
apt:
update: true
sources:
- sourceline: "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8"
key_url: "https://bazel.build/bazel-release.pub.gpg"
packages:
- bazel
install:
- pip3 install --upgrade tensorflow==2.1.0 tensorflow-probability==0.8.0 numpy attrs
script:
- bazel test tf_quant_finance/... --test_summary=detailed
| language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
addons:
apt:
update: true
sources:
- sourceline: "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8"
key_url: "https://bazel.build/bazel-release.pub.gpg"
packages:
- bazel
install:
- pip install --upgrade pip
- pip install --upgrade tensorflow==2.1.0 tensorflow-probability==0.8.0 numpy attrs
script:
- bazel test tf_quant_finance/... --test_summary=detailed
| Upgrade pip in Travis container. | Upgrade pip in Travis container.
PiperOrigin-RevId: 290083388
| YAML | apache-2.0 | google/tf-quant-finance,google/tf-quant-finance |
e1ec973599fbfc0282ec0bb9eb1c43750586a2ee | .travis.yml | .travis.yml | language: julia
os:
- linux
julia:
- 0.4
- 0.5
- nightly
env:
- MPI=mpich2
- MPI=openmpi
notifications:
email: false
before_install:
- sudo add-apt-repository -y ppa:staticfloat/julia-deps
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq -y
- curl https://cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz | sudo tar -x -z --strip-components 1 -C /usr
- sudo apt-get install -qq -y gfortran gcc-4.9 g++-4.9 gfortran-4.9 libstdc++-4.9-dev
- export CC=gcc-4.9
- export CXX=g++-4.9
- export CPU_CORES=2
- sh ./mpi.sh $MPI
- export PATH=$HOME/OpenMPI/bin:$PATH
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- echo $PATH
- echo $LD_LIBRARY_PATH
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("Elemental"); Pkg.test("Elemental")'
| language: julia
os:
- linux
julia:
- 0.4
- 0.5
- nightly
env:
- MPI=mpich2
- MPI=openmpi
matrix:
allow_failures:
- julia: nightly
notifications:
email: false
before_install:
- sudo add-apt-repository -y ppa:staticfloat/julia-deps
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq -y
- curl https://cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz | sudo tar -x -z --strip-components 1 -C /usr
- sudo apt-get install -qq -y gfortran gcc-4.9 g++-4.9 gfortran-4.9 libstdc++-4.9-dev
- export CC=gcc-4.9
- export CXX=g++-4.9
- export CPU_CORES=2
- sh ./mpi.sh $MPI
- export PATH=$HOME/OpenMPI/bin:$PATH
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- echo $PATH
- echo $LD_LIBRARY_PATH
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("Elemental"); Pkg.test("Elemental")'
| Allow Travis failures on nightly | Allow Travis failures on nightly
| YAML | mit | JuliaPackageMirrors/Elemental.jl |
277e5e1ed324ed68825101a0fdc9549e0882a078 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.4
- 0.6
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| language: node_js
node_js:
- 0.4
- 0.6
- 0.7
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| Add node v0.7.x on Travis CI test runs. | Add node v0.7.x on Travis CI test runs.
| YAML | mit | cliffano/bagofholding |
f646c081dfc3becfa80dc86b476f64541a846968 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
# - rbx-19mode
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode-1.7.4
# - rbx-19mode
| Use JRuby 1.7.4 for CI. | Use JRuby 1.7.4 for CI.
| YAML | unlicense | ruby-rdf/rdf-trig |
b118aacea3c94566b93b42f499c7d12d861ac726 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'node'
before_script:
- 'npm install -g bower grunt-cli'
- 'npm install'
- 'bower install'
after_script:
- 'grunt'
| language: node_js
node_js:
- 'node'
before_script:
- 'npm install -g bower grunt-cli'
- 'npm install'
- 'bower install'
script:
- 'grunt'
| Fix Travis running npm test | Fix Travis running npm test
| YAML | mit | zsoltiii/angular-cipher-filters |
8ae7a8a5156d7207429f80dacfa43e9df6c7b5d6 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
| Add Ruby 2.1.2 to Travis build matrix | Add Ruby 2.1.2 to Travis build matrix
| YAML | mit | gemnasium/gemnasium-gem,gemnasium/gemnasium-gem |
ab4076bf64477a4cff4e018fd0ac15227e9e02b8 | .travis.yml | .travis.yml | before_install:
- sudo apt-get update -qq
- sudo apt-get install libicu-dev
language: ruby
rvm:
- 2.2
- 2.1
- 2.0.0
- 1.9.3
| dist: trusty
addons:
apt:
packages:
- libicu-dev
language: ruby
rvm:
- 2.4
- 2.2
- 2.1
- 2.0.0
- 1.9.3
| Build with a gcc version supporting -std=c++11 | Build with a gcc version supporting -std=c++11
| YAML | mit | brianmario/charlock_holmes,brianmario/charlock_holmes,brianmario/charlock_holmes |
a7560a41f02d934c9bb072989b8ae6b27bd94e41 | .travis.yml | .travis.yml | sudo: required
services:
- docker
install:
- docker pull ubuntu:16.04
script:
- docker build -t meteogroup/concourse-ci .
- docker-compose up -d
- sleep 15
- ./test.sh --net container:concourseci_concourse-web_1
after_success:
- docker-compose stop
after_failure:
- docker-compose stop
- docker-compose ps -q | xargs -I{} docker logs {}
| sudo: required
services:
- docker
install:
- docker pull ubuntu:16.04
script:
- docker build -t meteogroup/concourse-ci .
- docker-compose up -d
- sleep 15
- ./test.sh --net container:concourseci_concourse-web_1
after_success:
- docker-compose stop
after_failure:
- docker-compose stop
- docker-compose logs
| Revert "Don't use `docker-compose logs` in Travis build as it blocks the build indefinitely." | Revert "Don't use `docker-compose logs` in Travis build as it blocks the build indefinitely."
This reverts commit f0bc833c2e6c5db30f8048aa14add74e4d48ab14.
It did not work out, now there are no logs at all.
| YAML | apache-2.0 | MeteoGroup/concourse-ci |
c8318fd06def83c68b72f0142f026ebf1ab072dc | .travis.yml | .travis.yml | env:
global:
- secure: a0aZLlsuJdEsS/94pcCIr9D0WPdoawBH/dCz39/RAxTcT+g56YzlU4RtjyVqnlo92qPYAs11r/CrAGKCJHS92GIESUziA0ZDwgkKpPerJYl/OcTL612ArARO02UDNsD67y+gAOZF5xrt/Sppro65oIqKVYRwY+HKcESlQqp9/b0=
install:
- curl -s http://www.rust-lang.org/rustup.sh | sudo sh -
- export LD_LIBRARY_PATH=$PWD/target/:/usr/local/lib/
script:
- cargo build
- cargo test
- make doctest doc
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
| env:
global:
- secure: a0aZLlsuJdEsS/94pcCIr9D0WPdoawBH/dCz39/RAxTcT+g56YzlU4RtjyVqnlo92qPYAs11r/CrAGKCJHS92GIESUziA0ZDwgkKpPerJYl/OcTL612ArARO02UDNsD67y+gAOZF5xrt/Sppro65oIqKVYRwY+HKcESlQqp9/b0=
install:
- curl -s http://www.rust-lang.org/rustup.sh | sudo sh -
- export LD_LIBRARY_PATH=$PWD/target/:/usr/local/lib/
script:
- cargo build
- cargo test
- make clean doctest doc
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
| Add `make clean` before running doctest. | Add `make clean` before running doctest.
Cargo and rust-empty are conflicting and causing rustdoc to get confused.
| YAML | mit | erik/knuckle,erik/knuckle |
b27431b609c8a06be990bfd3ba2d3c6d5d7d1275 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
script:
npm run-script build | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.1"
- "5.4"
script:
npm run-script build
| Add more nodes to run tests against | Add more nodes to run tests against
| YAML | mit | zeusdeux/isInViewport,zeusdeux/isInViewport |
b7a581988eee0f4cf380afc8ab011c826e5d25b3 | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '7'
| sudo: required
dist: trusty
group: edge
services:
- docker
env:
- NODEJS_VERSION='6'
- NODEJS_VERSION='7'
- NODEJS_VERSION='8'
before_install:
- docker pull node:${NODEJS_VERSION}
- >
docker run
-v "$PWD":/usr/src/app
-w /usr/src/app
node:${NODEJS_VERSION}
/bin/bash -c "npm -q install"
script:
- >
docker run
-v "$PWD":/usr/src/app
-w /usr/src/app
node:${NODEJS_VERSION}
/bin/bash -c "npm test"
| Use Docker to do builds | Use Docker to do builds
| YAML | mit | uq-eresearch/midja-map,uq-eresearch/midja-map,uq-eresearch/midja-map,uq-eresearch/midja-map |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.