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
a10280959092b74762d1f74d5b5e69e3178b3861
.travis.yml
.travis.yml
language: generic os: - linux - osx dist: focal osx_image: xcode12 env: global: - APM_TEST_PACKAGES="" - ATOM_LINT_WITH_BUNDLED_NODE="true" jobs: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta addons: apt: packages: - libgconf-2-4 script: - curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh - chmod u+x build-package.sh - ./build-package.sh notifications: email: on_success: never on_failure: change branches: only: - master git: depth: 10
language: generic os: - linux - osx dist: focal osx_image: xcode12.1 env: global: - APM_TEST_PACKAGES="" - ATOM_LINT_WITH_BUNDLED_NODE="true" jobs: - ATOM_CHANNEL=stable - ATOM_CHANNEL=beta addons: apt: packages: - libgconf-2-4 script: - curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh - chmod u+x build-package.sh - ./build-package.sh notifications: email: on_success: never on_failure: change branches: only: - master git: depth: 10
Use Xcode 12.1 on Travis CI
Use Xcode 12.1 on Travis CI
YAML
mit
matthesjh/autocomplete-curry
66d031f928229829775d71f8f67226917174f2f2
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm before_script: - composer install script: phpunit --coverage-clover coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - hhvm before_script: - composer install script: phpunit --coverage-clover coverage.clover after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover
Add PHP 7.1 and 7.2 to text matrix
Add PHP 7.1 and 7.2 to text matrix
YAML
mit
rybakit/arguments-resolver
b1c998832171eeddd98e42024014b2dbc332f504
.travis.yml
.travis.yml
language: go go: - "1.x" env: - DEP_VERSION="0.5.0" before_install: - curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep - chmod +x $GOPATH/bin/dep
language: go go: - "1.x" env: - DEP_VERSION="0.5.0" before_install: # Install dep - curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep - chmod +x $GOPATH/bin/dep # Install golint - go get golang.org/x/lint/golint
Install golint in Travis CI.
Install golint in Travis CI.
YAML
mit
DreamItGetIT/statuscake
b5a0cb09b0f78952c46323ee16529694491d52b2
.travis.yml
.travis.yml
language: php sudo: false dist: trusty php: - 5.6 - 7.0 - 7.1 - 7.2 env: global: - coverage=no matrix: - setup=basic - setup=lowest - setup=stable before_script: - composer config discard-changes true - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi - if [[ $setup = 'coveralls' ]]; then travis_retry composer require "satooshi/php-coveralls=~0.7" --prefer-dist --no-interaction --dev; fi script: - if [[ $coverage = 'yes' ]]; then vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi - if [[ $coverage = 'no' ]]; then vendor/bin/phpunit -c phpunit.xml; fi after_script: - if [[ $setup = 'coveralls' ]]; then php vendor/bin/coveralls -v; fi matrix: include: - php: 5.6 env: setup=coveralls coverage=yes allow_failures: - env: setup=coveralls coverage=yes fast_finish: true
language: php sudo: false dist: trusty php: - 5.6 - 7.0 - 7.1 - 7.2 env: global: - coverage=no matrix: - setup=basic - setup=lowest - setup=stable before_script: - composer config discard-changes true - if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi - if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi - if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi - if [[ $setup = 'coveralls' ]]; then travis_retry composer require "satooshi/php-coveralls=~0.7" --prefer-dist --no-interaction --dev; fi script: - if [[ $coverage = 'yes' ]]; then vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml; fi - if [[ $coverage = 'no' ]]; then vendor/bin/phpunit -c phpunit.xml; fi after_script: - if [[ $setup = 'coveralls' ]]; then php vendor/bin/coveralls -v; fi matrix: include: - php: 5.6 env: setup=coveralls coverage=yes allow_failures: - env: setup=lowest - env: setup=coveralls coverage=yes fast_finish: true
Revert "Enforce minimum stability test."
Revert "Enforce minimum stability test." This reverts commit ef2076ef7fbcaa0a2fddd71b297681dc9bc49461.
YAML
mit
jomweb/billplz,h2akim/billplz
06a34103cdbd82086351153128b43ea6422f0371
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" # command to install dependencies install: - "pip install -r requirements.txt" # command to run tests script: nosetests
language: python python: - "2.6" - "2.7" # command to install dependencies install: - "pip install -r requirements.txt" # command to run tests script: nosetests
Remove Python3 support from Travis. Mutagen on P3 needs investigation
Remove Python3 support from Travis. Mutagen on P3 needs investigation
YAML
mit
guywithprtzl/SoundScrape,guywithprtzl/SoundScrape,Miserlou/SoundScrape,Miserlou/SoundScrape,huntrar/SoundScrape,huntrar/SoundScrape
283d8dddd1030d20a4e09cf8402684a95e1a3e59
.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 - pip install pytest>=2.7.3 --upgrade script: - tox -e $TOX_ENV after_success: - coverage combine - coveralls
language: python python: 2.7 sudo: false 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
Use the container-based Travis-CI infrastructure
Use the container-based Travis-CI infrastructure
YAML
apache-2.0
ahmadshahwan/ipopo,tcalmant/ipopo,ahmadshahwan/ipopo
018902425aa81790523a77440d32e00f30bdf30f
.travis.yml
.travis.yml
--- addons: apt: packages: - aspcud - opam - libffi-dev sources: - avsm before_cache: - rm -rf ~/.opam/log/ cache: directories: - $HOME/.opam env: - OCAML_VERSION=4.05.0 COQ_VERSION=8.7.2 OPAMYES=yes OCB_VERSION=0.12.0 matrix: include: - os: osx env: LIB_EXT=dylib - os: linux env: LIB_EXT=so before_install: - if [[ $TRAVIS_OS_NAME == 'osx' ]]; then brew update; brew install libffi; (brew outdated "pkg-config" || brew upgrade "pkg-config"); brew install opam; export PKG_CONFIG_PATH=/usr/local/opt/libffi/lib/pkgconfig:$PKG_CONFIG_PATH; fi install: - opam init -n --comp $OCAML_VERSION - opam update - opam install coq.$COQ_VERSION - opam install ocamlbuild.$OCB_VERSION - eval $(opam config env) - ./configure.sh - cd libhsem - ./configure.sh language: c script: - cd "$TRAVIS_BUILD_DIR" - make - cd libhsem - make - ocamlbuild lib/libhsem.${LIB_EXT}; find _build/lib - make test os: - linux - osx
--- addons: apt: packages: - aspcud - opam - libffi-dev sources: - avsm before_cache: - rm -rf ~/.opam/log/ cache: directories: - $HOME/.opam env: - OCAML_VERSION=4.05.0 COQ_VERSION=8.7.2 OPAMYES=yes OCB_VERSION=0.12.0 before_install: - if [[ $TRAVIS_OS_NAME == 'osx' ]]; then brew update; brew install libffi; (brew outdated "pkg-config" || brew upgrade "pkg-config"); brew install opam; export PKG_CONFIG_PATH=/usr/local/opt/libffi/lib/pkgconfig:$PKG_CONFIG_PATH; fi install: - opam init -n --comp $OCAML_VERSION - opam update - opam install coq.$COQ_VERSION - opam install ocamlbuild.$OCB_VERSION - eval $(opam config env) - ./configure.sh - cd libhsem - ./configure.sh language: c script: - cd "$TRAVIS_BUILD_DIR" - make - cd libhsem - make - [[ $TRAVIS_OS_NAME == 'osx' ]] && export LIB_EXT=dylib - [[ $TRAVIS_OS_NAME == 'linux' ]] && export LIB_EXT=so - ocamlbuild lib/libhsem.${LIB_EXT}; find _build/lib - make test os: - linux - osx
Simplify the way we generate extensions.
Simplify the way we generate extensions.
YAML
unknown
cogumbreiro/habanero-coq,cogumbreiro/habanero-coq,cogumbreiro/hj-coq,cogumbreiro/habanero-coq
bcdd31728fd4604a8f7801f8d878be7e4714427d
.travis.yml
.travis.yml
language: php php: - 5.6 - 5.5 - 5.4 - 5.3 install: - composer install - composer self-update - composer update - chmod +x ./tests/phpunit.sh script: ./tests/phpunit.sh travis
language: php php: - "7.0" - "5.6" - "5.5" - "5.4" - "5.3" - "hhvm" sudo: false matrix: fast_finish: true allow_failures: - php: "7.0" - php: "hhvm" install: - composer install - composer self-update - composer update - chmod +x ./tests/phpunit.sh script: ./tests/phpunit.sh travis
Add HHVM + PHP 7, allow both to fail
Add HHVM + PHP 7, allow both to fail
YAML
mit
paragonie/random_compat,jedisct1/random_compat,stof/random_compat,juliangut/random_compat,redragonx/random_compat,jedisct1/random_compat,juliangut/random_compat,stof/random_compat,paragonie/random_compat,redragonx/random_compat
b45a17b9cdd36dce11995846c0233fead56e907c
.travis.yml
.travis.yml
language: ruby rvm: 2.2.0 before_script: bundle exec berks install script: bundle exec thor test:all
language: ruby rvm: 2.2.2 before_script: bundle exec berks install script: bundle exec thor test:all
Update Travis CI to Ruby 2.2.2.
Update Travis CI to Ruby 2.2.2.
YAML
apache-2.0
seanfisk/personal-chef-repo
97e3843bff37ce2b6fba7e385e8d255504d60289
.travis.yml
.travis.yml
language: go go: - "1.6" - "1.5" - tip script: make test
language: go go: - "1.7" - "1.6" - "1.5" - tip script: make test notifications: webhooks: urls: - https://webhooks.gitter.im/e/f037a5b8287e8b7561fe on_success: always # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: never # options: [always|never|change] default: always
Add Travis integration to Gitter
Add Travis integration to Gitter
YAML
mit
aichaos/rivescript-go,aichaos/rivescript-go
6c6fbe7cac6d3c56535180b1b11fcbc6476d793c
.travis.yml
.travis.yml
language: node_js node_js: - "node" - "11" - "10" - "9" - "8" - "7" - "6" - "5" - "4" - "0.12" - "0.11" - "0.10" - "0.8" - "iojs"
language: node_js node_js: - "node" - "12" - "11" - "10" - "9" - "8" - "7" - "6" - "5" - "4" - "0.12" - "0.11" - "0.10" - "0.8" - "iojs"
Check node 12 in CI
Check node 12 in CI
YAML
mit
MikeMcl/decimal.js,MikeMcl/decimal.js
2d00400439264103f77938eb0c46d3090b91d83a
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang sudo: required dist: trusty before_install: # Add repositories - sudo add-apt-repository -y 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.8 main' - wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - - sudo apt-get update -qq # Install Clang + LLVM - sudo apt-get install -y llvm-3.8-dev libclang-3.8-dev clang-3.8 - sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-3.8 20 - sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.8 20 - sudo rm /usr/local/clang-3.5.0/bin/clang - sudo rm /usr/local/clang-3.5.0/bin/clang++ # Other dependencies - sudo apt-get install -y libedit-dev script: - cmake . -DLLVM_DIR=/usr/lib/llvm-3.8/share/llvm/cmake/ - make -j 2 - make test
language: cpp compiler: - gcc - clang sudo: required dist: trusty before_install: # Add repositories - sudo add-apt-repository -y 'deb http://apt.llvm.org/trusty/ llvm-toolchain-trusty-3.9 main' - wget -O - http://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - - sudo apt-get update -qq # Remove existing LLVM - sudo apt-get remove llvm # Install Clang + LLVM - sudo apt-get install -y llvm-3.9-dev libclang-3.9-dev clang-3.9 - sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-3.9 20 - sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.9 20 - sudo rm /usr/local/clang-3.5.0/bin/clang - sudo rm /usr/local/clang-3.5.0/bin/clang++ # Other dependencies - sudo apt-get install -y libedit-dev script: - cmake . -DLLVM_DIR=/usr/lib/llvm-3.9/lib/cmake/llvm - make -j 2 - make test
Update Travis to LLVM 3.9 to fix CI
Update Travis to LLVM 3.9 to fix CI
YAML
bsd-3-clause
mpflanzer/Oclgrind,mpflanzer/Oclgrind,mpflanzer/Oclgrind,surround-io/oclgrind,surround-io/oclgrind,surround-io/oclgrind,surround-io/oclgrind,mpflanzer/Oclgrind
c1ac8bc38e2b8d55660c900d437975fb60134d0f
.travis.yml
.travis.yml
rvm: - 1.9.3 gemfile: - Gemfile - gemfiles/mongoid-2.4.gemfile - gemfiles/mongoid-master.gemfile
rvm: - 1.9.3 - 2.0.0 gemfile: - Gemfile - gemfiles/mongoid-2.4.gemfile - gemfiles/mongoid-master.gemfile
Add Ruby 2 to Travis CI
Add Ruby 2 to Travis CI
YAML
mit
tiagogodinho/localized_fields
df0b8065a791f3bb6ba8e42263eefef6b41f7a2e
.travis.yml
.travis.yml
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.3.1 install: - rvm use 2.3.1 - gem install bundler - bundle install script: buildr clean package git: depth: 10
# Lock down dist to ensure that builds run on a distribution that supports oraclejdk8 dist: trusty language: ruby jdk: - oraclejdk8 rvm: - 2.6.6 install: - rvm use 2.3.1 - gem install bundler - bundle install script: buildr clean package git: depth: 10
Update the version of ruby used to build project in TravisCI.
Update the version of ruby used to build project in TravisCI.
YAML
apache-2.0
realityforge/ssrs-api,realityforge/ssrs-api
8ced368cf56eda535802daa9d6c70e282db9d842
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm before_script: - composer self-update - composer install --prefer-source --no-interaction --dev script: vendor/bin/phpspec run
language: php php: - 5.5 - 5.6 - 7.0 - hhvm before_script: - composer self-update - composer install --prefer-source --no-interaction --dev script: vendor/bin/phpspec run
Remove PHP 5.4 for Travis CI tests (not supported by phpSpec)
Remove PHP 5.4 for Travis CI tests (not supported by phpSpec)
YAML
mit
codezero-be/browser-locale
9815d4f3bf248bacbf43028dcc4f1b918de7e1a1
.travis.yml
.travis.yml
language: node_js node_js: - "5.3" - "5.4" - "5.5" git: depth: 1 script: - make check - make lint - make test
language: node_js node_js: - '5.3' - '5.4' - '5.5' git: depth: 1 script: - make check - make lint - make test - make dist
Build dist target and use single quotes for node versions
Build dist target and use single quotes for node versions
YAML
mit
ostera/tldr.jsx,ostera/tldr.jsx,ostera/tldr.jsx,ostera/tldr.jsx
3553ac8acd07bc6dff14bac53198e54be48c7c01
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '10' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc mocha script: - nyc npm test
sudo: false language: node_js node_js: - '10' - '12' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g nyc mocha script: - nyc npm test
Build with Node.js 12 on Travis CI.
Build with Node.js 12 on Travis CI.
YAML
mit
bigeasy/reconfigure,bigeasy/reconfigure
7b2db28a71b229aa153bf9970a3cba0b31a1b7f1
.travis.yml
.travis.yml
branches: only: - master - rust-0.8 - rust-0.9 before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - yes | sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc - yes | sudo apt-add-repository 'deb http://repos.codelite.org/wx2.9/ubuntu/ precise universe' - sudo apt-get update install: - sudo apt-get install rust-0.9 libclang-3.3-dev libwxgtk2.9-0-unofficial libwxgtk2.9-dev script: - export LD_LIBRARY_PATH=/usr/lib/llvm-3.3/lib - mkdir -p build - cd build - cmake -DRUSTCFLAGS="-L;/usr/lib/llvm-3.3/lib" .. - make
branches: only: - master - rust-0.8 - rust-0.9 - rust-mac before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - yes | sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc - yes | sudo apt-add-repository 'deb http://repos.codelite.org/wx2.9/ubuntu/ precise universe' - sudo apt-get update install: - sudo apt-get install rust-0.9 libclang-3.3-dev libwxgtk2.9-0-unofficial libwxgtk2.9-dev script: - export LD_LIBRARY_PATH=/usr/lib/llvm-3.3/lib - mkdir -p build - cd build - cmake -DRUSTCFLAGS="-L;/usr/lib/llvm-3.3/lib" .. - make
Add the rust-mac branch to CI build target branches.
Add the rust-mac branch to CI build target branches.
YAML
lgpl-2.1
tempbottle/wxRust,tempbottle/wxRust
0e8ee10f44880cf92ceeede5d74dfab2d3862531
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.1.10 - 2.2.7 - 2.3.4 - 2.4.1 - rbx-3.72 - jruby-9.1.8.0 before_install: gem install bundler -v 1.14.6
sudo: false language: ruby rvm: - 2.2.8 - 2.3.5 - 2.4.2 - rbx-3.72 - jruby-9.1.8.0 before_install: gem install bundler -v 1.14.6
Remove ruby version 2.1.10 (no longer supported by ruby team), upgrade to the latest patches.
Remove ruby version 2.1.10 (no longer supported by ruby team), upgrade to the latest patches.
YAML
mit
styd/sleep2,styd/sleep2
254c4dc56b14a9c3b7d5cb9a40f783acf1aefc7e
.travis.yml
.travis.yml
os: - osx osx_image: xcode8 language: node_js sudo: false node_js: node script: - npm run dist
os: - osx osx_image: xcode7.3 language: node_js sudo: false node_js: node script: - npm run dist
Use Xcode 7.3 on Travis
Use Xcode 7.3 on Travis
YAML
mit
albinekb/kap,albinekb/kap,wulkano/kap,albinekb/kap
a260e63b8c2aec5a973b24adc2c5b8ab018bb385
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "8" branches: only: - master - 0.x - 1.0.0 # Set up keys to allow pushes, and update npm to the latest version before_install: npm update -g npm # travis runs 'npm install' by default, as the 'install' step before_script: npm run dist; # travis runs 'npm test' by default, as the 'script' step # PLACEHOLDER FOR COVERAGE REPORTS ON GITHUB, IF WE WANT THEM. # ALSO NEED TO ADD .coveralls.yml, IF WE WANT TO USE IT ON THE PRIVATE # REPO. after_script: - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js - npm run deploy-ghpages notifications: email: falcor@netflix.com
language: node_js node_js: - "10" branches: only: - master - 0.x - 1.0.0 # Set up keys to allow pushes, and update npm to the latest version before_install: npm update -g npm # travis runs 'npm install' by default, as the 'install' step before_script: npm run dist; # travis runs 'npm test' by default, as the 'script' step # PLACEHOLDER FOR COVERAGE REPORTS ON GITHUB, IF WE WANT THEM. # ALSO NEED TO ADD .coveralls.yml, IF WE WANT TO USE IT ON THE PRIVATE # REPO. after_script: - cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js - npm run deploy-ghpages notifications: email: falcor@netflix.com
Update Travis to use Node 10
Update Travis to use Node 10
YAML
apache-2.0
sdesai/falcor,sdesai/falcor,Netflix/falcor,Netflix/falcor
67573ca5839d8e222f395e8b87063b5b35347af8
.travis.yml
.travis.yml
language: node_js cache: yarn node_js: - node - "8" - "6" - "4" install: - YARN_IGNORE_ENGINES=true yarn git: depth: 5
language: node_js cache: yarn node_js: - node - "9" - "8" - "6" - "4" install: - YARN_IGNORE_ENGINES=true yarn git: depth: 5
Add Node.js 9 to CI
Add Node.js 9 to CI
YAML
mit
logux/logux-core
c304334eb7bfc80081f045e60aba3fa1119c4af1
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" before_install: npm i -g grunt-cli install: npm i before_script: grunt
language: node_js node_js: - "0.10" before_install: npm i -g grunt-cli install: npm i before_script: grunt script: "./test/cli/syno.sh"
Update Travis config to launch CLI tests
Update Travis config to launch CLI tests
YAML
mit
JimRobs/syno,kwent/syno,kwent/syno,JimRobs/syno,JimRobs/syno,kwent/syno
e8c02a3096e520c4698599d2ffc72b1ee5e62b3b
.travis.yml
.travis.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false jdk: - oraclejdk8 install: true script: mvn verify
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java sudo: false jdk: - oraclejdk8 install: mvn process-resources script: mvn verify
Augment install step to reduce output in test step
Augment install step to reduce output in test step
YAML
apache-2.0
typetools/commons-bcel,typetools/commons-bcel,typetools/commons-bcel
f6dbdb2b1693d4e269cf48a9a79d2ea01f9e9799
.travis.yml
.travis.yml
--- language: ruby sudo: false cache: bundler bundler_args: --without yard benchmarks script: "bundle exec rake ci" rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - 2.3 - rbx-2 - jruby-9000 - jruby-head - ruby-head env: global: - JRUBY_OPTS='--dev -J-Xmx1024M' matrix: include: - rvm: jruby-19mode - rvm: jruby-20mode - rvm: jruby-21mode allow_failures: - rvm: ruby-head - rvm: jruby-head fast_finish: true branches: only: master
--- language: ruby sudo: false cache: bundler bundler_args: --without yard benchmarks script: "bundle exec rake ci" rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - rbx-2 - jruby-9000 - jruby-head - ruby-head env: global: - JRUBY_OPTS='--dev -J-Xmx1024M' matrix: allow_failures: - rvm: ruby-head - rvm: jruby-head - rvm: jruby-9000 fast_finish: true branches: only: master notifications: email: false
Change to remove jruby versions.
Change to remove jruby versions.
YAML
mit
peter-murach/pastel-cli
4c19d316f6adfc156cc8a17522f1bd8a2cdbc9b6
.travis.yml
.travis.yml
language: python python: 3.3 env: - TOXENV=py26 - TOXENV=py27 - TOXENV=py32 - TOXENV=py33 # - TOXENV=py34 - TOXENV=pypy - TOXENV=pep8 - TOXENV=py2pep8 - TOXENV=docs install: - pip install tox coveralls script: - tox after_success: coveralls
language: python python: 3.4 env: - TOXENV=py26 - TOXENV=py27 - TOXENV=py32 - TOXENV=py33 - TOXENV=py34 - TOXENV=pypy - TOXENV=pep8 - TOXENV=py2pep8 - TOXENV=docs install: - pip install tox coveralls script: - tox after_success: coveralls
Enable Python 3.4 on Travis
Enable Python 3.4 on Travis
YAML
apache-2.0
jmvrbanac/symantecssl,cloudkeep/symantecssl,chelseawinfree/symantecssl,glyph/symantecssl,grigouze/symantecssl
b5c07ab56a73db6f9d5762581108a25c93c19bcd
.travis.yml
.travis.yml
sudo: false language: ruby bundler_args: --path vendor/bundle --jobs=3 --retry=3 script: bundle exec rspec cache: bundler before_install: - gem install bundler - bundle config --local without local_development yard guard rvm: # 2.1, not 2.1.0 until fixed https://github.com/travis-ci/travis-ci/issues/2220 - 2.4 - 2.5 - 2.6 - jruby matrix: fast_finish: true
sudo: false language: ruby bundler_args: --path vendor/bundle --jobs=3 --retry=3 script: bundle exec rspec cache: bundler before_install: - gem install bundler - bundle config --local without local_development yard guard rvm: # 2.1, not 2.1.0 until fixed https://github.com/travis-ci/travis-ci/issues/2220 - 2.4 - 2.5 - 2.6 - jruby matrix: allow_failures: - rvm: jruby fast_finish: true
Allow `jruby` to fail in Travis CI
Allow `jruby` to fail in Travis CI
YAML
mit
metricfu/metric_fu,metricfu/metric_fu,metricfu/metric_fu
49a18ff3afc1f1644bad6031dc0f60e0f6871cde
.travis.yml
.travis.yml
language: android jdk: - oraclejdk7 - openjdk7 install: - composer install --no-interaction android: components: - build-tools-19.0.0 - android-19 script: - bash gradlew uploadArchives - ./vendor/bin/phpunit
language: android jdk: - oraclejdk7 - openjdk7 install: - curl -sS https://getcomposer.org/installer | php - php composer.phar install --no-interaction android: components: - build-tools-19.0.0 - android-19 script: - bash gradlew uploadArchives - ./vendor/bin/phpunit
Install composer on this machine as well
Install composer on this machine as well
YAML
apache-2.0
testfairy/testfairy-gradle-plugin,dant3/testfairy-gradle-plugin,dant3/testfairy-gradle-plugin
47e3626aa7cda2be777653870fdd94f93e731b2d
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7 before_install: - gem install xcpretty script: - xcodebuild -workspace SDCAlertView.xcworkspace -scheme "SDCAlertView" -destination "platform=iOS Simulator,name=iPhone 6s" | xcpretty -s - xcodebuild -workspace SDCAlertView.xcworkspace -scheme "Example" -destination "platform=iOS Simulator,name=iPhone 6s" | xcpretty -s
language: objective-c osx_image: xcode8.1 before_install: - gem install xcpretty script: - xcodebuild -workspace SDCAlertView.xcworkspace -scheme "SDCAlertView" -destination "platform=iOS Simulator,name=iPhone 6s" | xcpretty -s - xcodebuild -workspace SDCAlertView.xcworkspace -scheme "Example" -destination "platform=iOS Simulator,name=iPhone 6s" | xcpretty -s
Update Travis CI to Xcode 8.1
Update Travis CI to Xcode 8.1
YAML
mit
sberrevoets/SDCAlertView,sberrevoets/SDCAlertView
b2b9d91424199eea54b3e0e702bc9bf53655f213
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "io.js" - "4.0" - "5.0"
language: node_js node_js: - "0.10" - "0.12" - "io.js" - "4.0" - "5.0" sudo: false
Switch to Travis container-based infrastructure
Switch to Travis container-based infrastructure Should speed up our builds
YAML
apache-2.0
vqvu/highland,caolan/highland,svozza/highland,svozza/highland,vqvu/highland,caolan/highland
13911ef3cbedfb0b9df63f83f1ea57b408b4d329
.travis.yml
.travis.yml
language: android android: components: - tools - tools - platform-tools - build-tools-24.0.3 - android-24 - sys-img-x86_64-google_apis-24 - extra - extra-android-m2repository script: ./gradlew build test jdk: - oraclejdk8 sudo: false before_cache: - rm -rf $HOME/.m2/repository/io/michaelrocks/lightsaber- - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.m2 - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ install: - ./gradlew assemble publishToMavenLocal -Pbootstrap=true --no-daemon --rerun-tasks before_script: - echo no | android create avd --force -n test -t android-24 -b x86_64 -g google_apis - emulator -avd test -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: - ./gradlew check connectedCheck --no-daemon
language: android android: components: - tools - tools - platform-tools - build-tools-24.0.3 - android-24 - sys-img-armeabi-v7a-google_apis-24 - extra - extra-android-m2repository script: ./gradlew build test jdk: - oraclejdk8 sudo: false before_cache: - rm -rf $HOME/.m2/repository/io/michaelrocks/lightsaber- - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.m2 - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ install: - ./gradlew assemble publishToMavenLocal -Pbootstrap=true --no-daemon --rerun-tasks before_script: - echo no | android create avd --force -n test -t android-24 -b armeabi-v7a -g google_apis - emulator -avd test -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: - ./gradlew check connectedCheck --no-daemon
Use armeabi-v7a ABI when running tests in Travis CI
Use armeabi-v7a ABI when running tests in Travis CI
YAML
apache-2.0
MichaelRocks/lightsaber,MichaelRocks/lightsaber
015521d3378f2478f76d7546bd2ad4f372dc8b09
.travis.yml
.travis.yml
dist: bionic language: ruby jobs: include: - rvm: 2.7 env: AR_VERSION=6.0.0 - rvm: 2.6 env: AR_VERSION=5.2.0 - rvm: 2.5 env: AR_VERSION=5.1.0 - rvm: 2.4 env: AR_VERSION=5.0.0 - rvm: 2.4 env: AR_VERSION=4.2.0 - rvm: 2.7 gemfile: test/gemfiles/mongoid7.gemfile env: AR_VERSION=none services: - mongodb script: bundle exec rake test notifications: email: on_success: never on_failure: change
dist: bionic language: ruby jobs: include: - rvm: 2.7 env: AR_VERSION=6.0.0 - rvm: 2.6 env: AR_VERSION=5.2.0 - rvm: 2.5 env: AR_VERSION=5.1.0 - rvm: 2.4 env: AR_VERSION=5.0.0 - rvm: 2.3 env: AR_VERSION=4.2.0 - rvm: 2.7 gemfile: test/gemfiles/mongoid7.gemfile env: AR_VERSION=none services: - mongodb script: bundle exec rake test notifications: email: on_success: never on_failure: change
Test against min Ruby version
Test against min Ruby version
YAML
mit
ankane/hightop
ad076214178eace562e9e87e66b14ce89ac8fbce
.travis.yml
.travis.yml
language: go sudo: false go: - 1.7 - 1.8 - 1.9 - '1.10' - 1.11.x - master install: - go get github.com/pkg/errors - go get golang.org/x/lint/golint before_script: # golint is no longer available for go versions 1.7 and 1.8 - INSTALLED_GO_VERSION=`go version | sed 's/go version go\(.*\) .*/\1/'` - if [ "$INSTALLED_GO_VERSION" != "1.7" ] && [ "$INSTALLED_GO_VERSION" != "1.8" ]; then golint ./...; fi script: - go test -v -race -coverprofile=coverage.txt -covermode=atomic after_success: - bash <(curl -s https://codecov.io/bash)
language: go sudo: false go: - 1.7 - 1.8 - 1.9 - '1.10' - 1.11.x - master install: - go get github.com/pkg/errors - go get golang.org/x/lint/golint before_script: # golint is no longer available for go versions 1.7 and 1.8 - | INSTALLED_GO_VERSION=`go version | sed 's/go version go\(.*\) .*/\1/'` echo $INSTALLED_GO_VERSION if [ "$INSTALLED_GO_VERSION" != "1.7" ] && [ "$INSTALLED_GO_VERSION" != "1.8" ]; then golint ./... fi script: - go test -v -race -coverprofile=coverage.txt -covermode=atomic after_success: - bash <(curl -s https://codecov.io/bash)
Use block text in Travis yaml
Use block text in Travis yaml
YAML
mit
adlio/trello
0f167d6ba29aeb778ba9585252a16a2c6a43245b
.travis.yml
.travis.yml
language: node_js node_js: - "0.10"
language: node_js node_js: - "0.10" before_install: npm install -g grunt-cli
Add grunt to Travis CI env
Add grunt to Travis CI env
YAML
mit
bjornharrtell/javascript.util,sshiting/javascript.util,bjornharrtell/javascript.util,sshiting/javascript.util
f304403855dcb3aa5b8483cb974c47cf731f992e
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm matrix: allow_failures: - php: 7 - php: hhvm before_install: - wget http://get.sensiolabs.org/php-cs-fixer.phar before_script: - composer self-update - composer install --dev - mkdir -p build/cov - mkdir -p build/logs script: - ./vendor/bin/phpunit --coverage-clover build/cov/clover.xml - output=$(php php-cs-fixer.phar fix -v --dry-run); if [[ $output ]]; then while read -r line; do echo -e "$line"; done <<< "$output"; false; fi; after_script: - ./vendor/bin/coveralls -v - CODECLIMATE_REPO_TOKEN=8c4056b715faa506631045ecbc23b1d92f8a04ab8d9ee39b43110afeaa232328 ./vendor/bin/test-reporter --coverage-report=build/cov/clover.xml
language: php php: - 5.4 - 5.5 - 5.6 - 7 - hhvm matrix: allow_failures: - php: 7 - php: hhvm before_install: - wget http://get.sensiolabs.org/php-cs-fixer.phar before_script: - composer self-update - composer install --dev - mkdir -p build/cov - mkdir -p build/logs script: - ./vendor/bin/phpunit --coverage-clover build/cov/clover.xml - php php-cs-fixer.phar fix -v --dry-run after_script: - ./vendor/bin/coveralls -v - CODECLIMATE_REPO_TOKEN=8c4056b715faa506631045ecbc23b1d92f8a04ab8d9ee39b43110afeaa232328 ./vendor/bin/test-reporter --coverage-report=build/cov/clover.xml
Test running php-cs-fixer without any script wrapper
Test running php-cs-fixer without any script wrapper
YAML
bsd-2-clause
phergie/phergie-irc-bot-react
0a0eefe4f9c0c6d6b34f8890f3aceaaff5e8ae78
.travis.yml
.travis.yml
script: rspec rvm: - 1.9.2 - jruby notifications: irc: "irc.freenode.org#travis"
script: rspec rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby notifications: irc: "irc.freenode.org#travis"
Add Rubies 1.8.7 and 1.9.3 to the Travis build
Add Rubies 1.8.7 and 1.9.3 to the Travis build
YAML
mit
travis-ci/travis-deploy
76f17fb3d94e8fef432d313b7e2454c7bc5fa780
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "4" branches: except: - gh-pages - /^v\d+(\.\d+){2}/ after_script: - if [[ `node --version` == *v0.10* ]]; then cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js; fi sudo: false cache: directories: - node_modules matrix: fast_finish: true allow_failures: - node_js: "4"
language: node_js node_js: - "0.10" - "0.12" - "4" branches: except: - gh-pages - /^v\d+(\.\d+){2}/ before_install: - npm i -g npm after_script: - if [[ `node --version` == *v0.10* ]]; then cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js; fi sudo: false cache: directories: - node_modules matrix: fast_finish: true allow_failures: - node_js: "4"
Fix npm install on node v4
Fix npm install on node v4
YAML
mit
stacywile/spectcl,ryanbmilbourne/spectcl,stacywile/spectcl,ryanbmilbourne/spectcl
548be1169f2168dfc540057f47364f737a44bd41
.travis.yml
.travis.yml
language: node_js node_js: - "6.10" script: - "jasmine" addons: code_climate: repo_token: e60c282228c0f17903a258babfc8c4a461ddd555667da5d5c5550e7046c3381c after_success: - npm install -g codeclimate-test-reporter - codeclimate-test-reporter < lcov.info
language: node_js node_js: - "6.10" script: - "jasmine" addons: code_climate: repo_token: e60c282228c0f17903a258babfc8c4a461ddd555667da5d5c5550e7046c3381c after_success: - npm install -g codeclimate-test-reporter - codeclimate-test-reporter < lcov.info
Remove space from yaml file
Remove space from yaml file
YAML
mit
DesHorsley/Pipes,DesHorsley/Pipes
ca3499921939710e4e6eff64ccaf15e736ebf546
.travis.yml
.travis.yml
# For more information about the configurations used # in this file, please see the Travis CI documentation. # # https://docs.travis-ci.com before_install: - ./test/customize_environment.sh install: - ./src/os/setup.sh -y language: generic matrix: include: - os: linux dist: trusty - os: osx osx_image: xcode8 script: - ./test/main.sh sudo: required
# For more information about the configurations used # in this file, please see the Travis CI documentation. # # https://docs.travis-ci.com before_install: - ./test/customize_environment.sh install: - ./src/os/setup.sh -y language: generic matrix: include: - os: linux dist: trusty - os: osx osx_image: xcode8.1 script: - ./test/main.sh sudo: required
Use `xcode8.1` image to test macOS code
[test] Use `xcode8.1` image to test macOS code Ref: https://blog.travis-ci.com/2016-11-15-xcode-81-is-here
YAML
mit
mickael83/ubuntu-dotfiles,oddlord/dotfiles,makabde/dotfiles,pbrooks/dotfiles,b-boogaard/dotfiles,girishramnani/dotfiles,AlbertoElias/dotfiles,girishramnani/dotfiles,makabde/dotfiles,AlbertoElias/dotfiles,christophermoura/dotfiles,christophermoura/dotfiles,mickael83/ubuntu-dotfiles
7d2b252eff9cfc12d791a9e646caed721f4553d3
.travis.yml
.travis.yml
language: python python: - "2.7" # command to install dependencies install: - pip install -U pip - pip install --only-binary=numpy,scipy numpy scipy - pip install -r requirements.txt # command to run tests script: - rm DSTK/tests/tests_gam/test_p_spline_train.py - tox --sitepackages
language: python python: - "2.7" # command to install dependencies install: - pip install -U pip - pip install --only-binary=numpy,scipy numpy scipy - pip install -r requirements.txt - pip upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.12.0rc0-cp27-none-linux_x86_64.whl # command to run tests script: - rm DSTK/tests/tests_gam/test_p_spline_train.py - tox --sitepackages
Make sure to install linux version of TF
Make sure to install linux version of TF
YAML
mit
jotterbach/dstk
3b11477341814aed052cbab3509a665fa2e4814e
.travis.yml
.travis.yml
# Use the language closest to rust, as rust itself is not supported language: c notifications: email: on_success: never on_failure: always before_install: - curl http://static.rust-lang.org/dist/rust-nightly-x86_64-unknown-linux-gnu.tar.gz | tar xz install: - sudo apt-get install libsdl1.2-dev libsdl-mixer1.2-dev libsdl-image1.2-dev - sudo rust-nightly-x86_64-unknown-linux-gnu/install.sh script: - rustc -v - make - make test
# Use the language closest to rust, as rust itself is not supported language: c notifications: email: on_success: never on_failure: always before_install: - yes | sudo add-apt-repository ppa:hansjorg/rust - sudo apt-get update install: - sudo apt-get install libsdl1.2-dev rust-nightly script: - rustc -v - make - make test
Revert to Travis to use PPA
Revert to Travis to use PPA
YAML
mit
mvdnes/rboy
f911651541e548f379b2d7ec6e3ec0422daf8b30
.travis.yml
.travis.yml
language: php php: - 7.0 - 5.6 - 5.5 - 5.4 - 5.3 - hhvm env: - ADAPTER=MemoryStore - ADAPTER=Apc - ADAPTER=Memcached - ADAPTER=Redis - ADAPTER=Couchbase - ADAPTER=MySQL - ADAPTER=SQLite - ADAPTER=PostgreSQL - ADAPTER=Filesystem services: - memcached - redis before_script: - tests/.travis/$ADAPTER.sh - composer self-update && composer install --dev after_script: - php vendor/bin/coveralls matrix: exclude: - php: hhvm env: Couchbase - php: 7.0 env: Memcached - php: 7.0 env: Redis - php: 7.0 env: Couchbase sudo: required
language: php php: - 7.0 - 5.6 - 5.5 - 5.4 - 5.3 - hhvm env: - ADAPTER=MemoryStore - ADAPTER=Apc - ADAPTER=Memcached - ADAPTER=Redis - ADAPTER=Couchbase - ADAPTER=MySQL - ADAPTER=SQLite - ADAPTER=PostgreSQL - ADAPTER=Filesystem services: - memcached - redis before_script: - tests/.travis/$ADAPTER.sh - composer self-update && composer install --dev after_script: - php vendor/bin/coveralls matrix: fast_finish: true allow_failures: - php: 7.0 env: ADAPTER=Apc - php: 7.0 env: ADAPTER=Memcached - php: 7.0 env: ADAPTER=Redis - php: 7.0 env: ADAPTER=Couchbase - php: hhvm env: ADAPTER=Couchbase sudo: required
Fix matrix & allow-failures from PHP7-APC
Fix matrix & allow-failures from PHP7-APC
YAML
mit
matthiasmullie/scrapbook,matthiasmullie/scrapbook
3042855b239218824ddea0db3d9c96f4af717947
.travis.yml
.travis.yml
sudo: false language: java jdk: - oraclejdk8 addons: postgresql: 9.4 before_script: - mvn versions:display-dependency-updates - mvn versions:display-plugin-updates
sudo: false language: java jdk: - oraclejdk8 - openjdk8 addons: postgresql: 9.4 before_script: - mvn versions:display-dependency-updates - mvn versions:display-plugin-updates
Test on OpenJDK 8 too, because the Docker image uses it
Test on OpenJDK 8 too, because the Docker image uses it
YAML
apache-2.0
dustalov/mtsar,dustalov/mtsar,mtsar/mtsar,mtsar/mtsar,dustalov/mtsar,mtsar/mtsar
00cd95306f7494382fb5953e69d52c2761c186b6
.travis.yml
.travis.yml
language: cpp matrix: include: - os: linux dist: xenial compiler: clang - os: linux dist: xenial compiler: gcc - os: osx osx_image: xcode10.2 compiler: clang addons: apt: packages: - freeglut3-dev - libglfw3-dev - python3-dev homebrew: packages: - freeglut - glfw - python branches: except: - cris script: - mkdir build - cd build - export DIP_CMAKE_OPTS=$(if [[ $CC == "clang" ]]; then echo -n '-DDIP_ENABLE_MULTITHREADING=Off'; fi) - cmake $DIP_CMAKE_OPTS .. - make -j2 - make check
language: cpp matrix: include: - os: linux dist: xenial compiler: clang - os: linux dist: xenial compiler: gcc - os: osx osx_image: xcode10.2 compiler: clang - os: windows addons: apt: packages: - freeglut3-dev - libglfw3-dev - python3-dev homebrew: packages: - freeglut - glfw - python branches: except: - cris script: - mkdir build - cd build - export DIP_CMAKE_OPTS=$(if [[ $CC == "clang" ]]; then echo -n '-DDIP_ENABLE_MULTITHREADING=Off'; fi) - cmake $DIP_CMAKE_OPTS .. - cmake --build . --parallel 2 - cmake --build . --target check
Test Windows build with Travis
Test Windows build with Travis
YAML
apache-2.0
DIPlib/diplib,DIPlib/diplib,DIPlib/diplib,DIPlib/diplib,DIPlib/diplib,DIPlib/diplib
e97cfd3668c1218463c462f77029e54379d1fc02
.travis.yml
.travis.yml
language: python sudo: false python: - '3.4' addons: postgresql: '9.3' env: - DJANGO_SETTINGS_MODULE="service_info.settings.dev" install: - pip install -r requirements/dev.txt --use-mirrors - npm install before_script: - createdb -E UTF-8 service_info -U postgres -O $USER - psql service_info -c "CREATE EXTENSION postgis;" -U postgres - python manage.py migrate --noinput script: - coverage run manage.py test - coverage report -m --fail-under 60 - flake8 . notifications: email: - servicemap-team@caktusgroup.com hipchat: rooms: secure: d8q9OOxEIz0PMe9HJhmx2dL4VvjDs2BE/v+QLQKZ5j5VcejtZl+NMR/D2x8b/7j10Re2e5bk6Sn9obPAEvQcHePRby/i5BNR7K+MtN4Wi3cEYmCi0xEpPc2c1p+J2Tfb7EXG6Kzx2ocUKnl+nE1E7Yxn+vSgg5RTFmUw2AB6syw= template: - '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} (<a href="%{build_url}">Details</a>/<a href="%{compare_url}">Change view</a>)' format: html
language: python sudo: false python: - '3.4' addons: postgresql: '9.3' cache: directories: - $HOME/.cache/pip env: - DJANGO_SETTINGS_MODULE="service_info.settings.dev" install: - pip install -r requirements/dev.txt --use-mirrors - npm install before_script: - createdb -E UTF-8 service_info -U postgres -O $USER - psql service_info -c "CREATE EXTENSION postgis;" -U postgres - python manage.py migrate --noinput script: - coverage run manage.py test - coverage report -m --fail-under 60 - flake8 . notifications: email: - servicemap-team@caktusgroup.com hipchat: rooms: secure: d8q9OOxEIz0PMe9HJhmx2dL4VvjDs2BE/v+QLQKZ5j5VcejtZl+NMR/D2x8b/7j10Re2e5bk6Sn9obPAEvQcHePRby/i5BNR7K+MtN4Wi3cEYmCi0xEpPc2c1p+J2Tfb7EXG6Kzx2ocUKnl+nE1E7Yxn+vSgg5RTFmUw2AB6syw= template: - '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} (<a href="%{build_url}">Details</a>/<a href="%{compare_url}">Change view</a>)' format: html
Enable pip caching per the Travis docs.
Enable pip caching per the Travis docs.
YAML
bsd-3-clause
theirc/ServiceInfo-ircdeploy,theirc/ServiceInfo,theirc/ServiceInfo,theirc/ServiceInfo,theirc/ServiceInfo
ef8bed58481ee43ebf13a3d1ea4aeee55fe405b3
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 - openjdk6 branches: only: - master
language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk6 branches: only: - master
Enable oraclejdk8 in Travis CI.
Enable oraclejdk8 in Travis CI.
YAML
apache-2.0
julianhyde/eigenbase-properties,julianhyde/eigenbase-properties
3523d7211250edd2127e9722b5f0cf82f0bf301e
.travis.yml
.travis.yml
language: python python: '2.7' sudo: required before_install: - sudo apt-get update -qq - sudo apt-get install -qq python-apt install: - pip install ansible - "{ echo '[defaults]'; echo 'roles_path = ../'; } >> ansible.cfg" script: - ansible-playbook -i tests/inventory tests/test.yml --syntax-check - ansible-playbook -i tests/inventory tests/test.yml --connection=local --sudo - ansible-playbook -i tests/inventory tests/test.yml --check --diff --connection=local --sudo - "ansible-playbook -i tests/inventory tests/test.yml --connection=local --sudo | tee /tmp/output.txt; grep -q 'changed=0.*failed=0' /tmp/output.txt && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1)" env: global: secure: TBArfgKelvawcZPDcynkOA7QRnfMCUBh7tmLZQI0mrB3orLmeyS5Z4PC1nIidARmit3/c/xkjfV9xBcJhnc1j571d57F27iNxIsTZsWa3CzeG0p2Py5UQyRa9krSIDWd2acV3YyGidj8Uij3/yscnsz9Wea6hgDyy4nfGQte1to=
language: python python: '2.7' sudo: required before_install: - sudo apt-get update -qq - sudo apt-get install -qq python-apt install: - pip install ansible - "{ echo '[defaults]'; echo 'roles_path = ../'; } >> ansible.cfg" script: - ansible-playbook -i tests/inventory tests/test.yml --syntax-check - ansible-playbook -i tests/inventory tests/test.yml --connection=local --sudo - ansible-playbook -i tests/inventory tests/test.yml --check --diff --connection=local --sudo - "ansible-playbook -i tests/inventory tests/test.yml --connection=local --sudo | tee /tmp/output.txt; grep -q 'changed=0.*failed=0' /tmp/output.txt && (echo 'Idempotence test: pass' && exit 0) || (echo 'Idempotence test: fail' && exit 1)" env: global: secure: "Ofu8qn7PqRgl7+1d90fHT50OLdLiWfHbFP6eeVXa8q59/4maWmcI+uyz2Wn6pGOGiavgj+AoCzNh7KIsq9RQsmg/3JtgrfjDfh38dTRo8E/1BgijYCNrZNPG6KGSDJuO8qM/AGWF57/0qBX7X9ndbZl/e9TuxjYPn1DjRrhyYog="
Update secure hash for deploy key
Update secure hash for deploy key
YAML
mit
threatstack/threatstack-ansible
55683fe5de4a5bae5a3e05e47ad2efda4fedfb1c
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10" - "0.12" - "4.4.0" - "5.8.0"
sudo: false language: node_js node_js: - "6.9.4" - "7.4.0"
Support builds for node v6+
Support builds for node v6+
YAML
mit
stevelacy/gulp-bump
f84fb796621608ed670d7a87beb8876f3accf5e6
.travis.yml
.travis.yml
language: ruby script: "script/test_all" bundler_args: "--standalone --binstubs" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - ree - jruby-18mode - jruby-19mode - rbx
language: ruby script: "script/test_all" bundler_args: "--standalone --binstubs" rvm: - 1.8.7 - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - ree - jruby-18mode - jruby-19mode - rbx before_install: - gem update bundler - bundle --version - gem update --system 2.1.11 - gem --version
Add temporary workaround for failing build on Ruby 1.8.7
Add temporary workaround for failing build on Ruby 1.8.7 Rubygems broke builds on Ruby 1.8.7: travis-ci/travis-ci#1793 rubygems/rubygems#763 This patch is a temporary workaround until rubygems is updated.
YAML
mit
hackling/rspec-support,AEgan/rspec-support,rspec/rspec-support,AEgan/rspec-support,hackling/rspec-support,rspec/rspec-support
7ae7bb9dc7438a6643be87a5a0835584eec6a57e
.travis.yml
.travis.yml
language: groovy jdk: - oraclejdk8 services: - rabbitmq install: - export CDIR=`pwd` - git clone https://github.com/olliefreeman/grails-rabbitmq-native.git ~/olliefreeman/grails-rabbitmq-native - git checkout v3.2.1-rabbitmq-native3 - cd ~/olliefreeman/grails-rabbitmq-native - ./gradlew install - cd $CDIR before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
language: groovy jdk: - oraclejdk8 services: - rabbitmq install: - export CDIR=`pwd` - git clone --branch v3.2.1-rabbitmq-native3 https://github.com/olliefreeman/grails-rabbitmq-native.git ~/olliefreeman/grails-rabbitmq-native - cd ~/olliefreeman/grails-rabbitmq-native - ./gradlew install - cd $CDIR before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/
Fix version of rabbitmq-native3 to what we have in gradle properties
Fix version of rabbitmq-native3 to what we have in gradle properties Attempt 2
YAML
mit
jamesrwelch/BuRST
9c93259eae65cec8a3fb9acad97a46d7c91a3fcb
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler: true rvm: - 2.2 - 2.3 - 2.4 - 2.5 - 2.6 - jruby-9.1 - jruby matrix: allow_failures: - rvm: 2.6 before_install: # Keep track of which version of node and phantomjs we're running the specs against - gem update --system - node -v - phantomjs -v
language: ruby sudo: false cache: bundler: true rvm: - 2.4 - 2.5 - 2.6 - jruby-9.1 - jruby matrix: allow_failures: before_install: # Keep track of which version of node and phantomjs we're running the specs against - gem update --system - node -v - phantomjs -v
Remove outdated Rubies and use 2.6 for real
Remove outdated Rubies and use 2.6 for real
YAML
mit
clearwater-rb/clearwater,clearwater-rb/clearwater
656b6b7a0dd2d5a0189c698040ec9fb8b430dad4
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "4" - "0.12" - "0.10" - "0.8" install: - "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm" - "npm install -g npm" - "npm install -g grunt-cli" - "npm install" - "./node_modules/.bin/node-gyp install" matrix: fast_finish: true
language: node_js node_js: - "6" - "4" - "0.12" - "0.10" - "0.8" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 install: - "sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm" - "npm install -g npm" - "npm install -g grunt-cli" - "npm install" - "./node_modules/.bin/node-gyp install" matrix: fast_finish: true
Install GCC v4.8 on Travis CI
Install GCC v4.8 on Travis CI Required to compile native modules for Node.js v4 and newer. See https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements.
YAML
bsd-2-clause
SonicHedgehog/grunt-node-gyp
1da491ea4189f392a3693241237d9ccfc874ce31
.travis.yml
.travis.yml
language: node_js node_js: - "0.12" before_script: - npm run lint - sleep 15 script: - npm run test-cov - npm run test-e2e-saucelabs sudo: required notifications: email: - jed@keystonejs.com services: - mongodb git: depth: 10 cache: directories: - node_modules addons: apt: sources: - mongodb-3.0-precise packages: - mongodb-org-server sauce_connect: true
language: node_js node_js: - "0.12" before_script: - npm run lint - sleep 15 script: - npm run test-cov sudo: required notifications: email: - jed@keystonejs.com services: - mongodb git: depth: 10 cache: directories: - node_modules addons: apt: sources: - mongodb-3.0-precise packages: - mongodb-org-server sauce_connect: true
Disable saucelabs tests until further analysis.
Disable saucelabs tests until further analysis.
YAML
mit
creynders/keystone,creynders/keystone
aaa11ca1053b5456c6220aeb7eeea4851d5f5bec
.travis.yml
.travis.yml
language: node_js dist: trusty env: - DISPLAY=:99.0 CHROME_BIN=chromium-browser branches: only: - master node_js: - "7" addons: firefox: latest before_script: - sh -e /etc/init.d/xvfb start
language: node_js dist: trusty env: - DISPLAY=:99.0 CHROME_BIN=chromium-browser node_js: - "7" addons: firefox: latest before_script: - sh -e /etc/init.d/xvfb start notifications: slack: secure: Kwe1KBh4SMzgXaj6GQg3ZmopRYcDR3Vnd4C/gyiEOJsXzKRlU5dA7WwM/mbyOe9+ZvWDyp+g2CoQYYyvLR0SHEy1m0gn6M8fBzgSZQlWxOxAJxkwVsyxUNwAy2FylMpS+ugpw/fBMSbnSFqfZSa/tGB3KhBc0yA7V9wVS0hnwBfICqKKlFdLPcp+Us4zpXRUmcL1e0BVwm2klJi0CoKlOmTa4lI3tUa/YiuuMpgk89/PioMEr6/PP+5OfWV624djw2gznoualvcwdfZniC/oxkdTUbcu4nbTf+bFk5uwwW+XBpUhm9rMUoftngYCrWdtYHS6qenyzmflO5bgCDg5W8onv3qgMcDTEHDjlO8JMoEQLC2o27Hsyukrh2Iu0Hn2k4S10ZIDWLUZXf8ERKdU7v8o5xaiCrP7NO8fJlyGbWwYxwpFi9dpacb8qWuWw53k8+ld9orl2Zu5t1Y1QJCvT0DP0iGYSxbbICfex7im0fgh3A+MHTfhxxiGQtFJRUxqO5wGCIsT4dJJkYwRJ1HoCPyLT1x1WT8iy4lr8ivRhanEwQ5g2OmuRKz522yCrm2DPaRR/LDhqK9xghJqqh4RNx9Be5xNaxSxKs4Hcya4ZXrGaU9tzGTehRkNQksKUHq9PpdY85Mbk84wEq7zKLhtLPTn17DQePFm2DbdX4392o4=
Add Travis integration for slack
Add Travis integration for slack
YAML
mpl-2.0
pyoor/octo,MozillaSecurity/octo,pyoor/octo,pyoor/octo
ef21bc687ad2fa829647cc80ed5a6a9e338e8941
.travis.yml
.travis.yml
language: php before_script: - wget http://getcomposer.org/composer.phar - php composer.phar install php: - 5.4 - 5.3 - hhvm
language: php before_script: - wget http://getcomposer.org/composer.phar - php composer.phar install php: - 5.6 - 5.5 - 5.4 - 5.3 - hhvm
Add PHP5.5 & PHP5.6 continous integration
Add PHP5.5 & PHP5.6 continous integration
YAML
mit
Elephant418/Iniliq
4dc0d9f1d0df8f17cf341c19ba115e4569dfc67d
.travis.yml
.travis.yml
language: php dist: trusty sudo: false cache: directories: - $HOME/.composer/cache php: - 5.6 - 7.0 - 7.1 notifications: irc: use_notice: true skip_join: true channels: ["irc.freenode.org#imbo"] branches: only: - develop - master services: - memcached before_install: - | # Install different version of APCu for different PHP-versions if [[ $TRAVIS_PHP_VERSION = 7.* ]]; then printf "\n" | pecl install apcu else printf "\n" | pecl install -f apcu-4.0.11 fi - printf "\n" | pecl install memcached - php -m before_script: - echo 'apc.enable_cli=On' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - phpenv config-add .travis-php.ini - composer self-update - composer lint - composer install --prefer-dist script: - ./vendor/bin/phpunit --verbose
language: php dist: trusty sudo: false cache: directories: - $HOME/.composer/cache php: - 5.6 - 7.0 - 7.1 notifications: irc: use_notice: true skip_join: true channels: ["irc.freenode.org#imbo"] branches: only: - develop - master services: - memcached before_install: - | if [[ $TRAVIS_PHP_VERSION = 7.* ]]; then printf "\n" | pecl install apcu printf "\n" | pecl install memcached else printf "\n" | pecl install -f apcu-4.0.11 printf "\n" | pecl install -f memcached-2.2.0 fi - php -m before_script: - echo 'apc.enable_cli=On' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini - composer self-update - composer lint - composer install --prefer-dist script: - ./vendor/bin/phpunit --verbose
Install specific versions of memcached as well, and remove reference to the ini file that has been deleted
Install specific versions of memcached as well, and remove reference to the ini file that has been deleted
YAML
mit
imbo/imbo-metadata-cache
a42619d18ebb74cf44b0cd5116ff012789ebffb7
.travis.yml
.travis.yml
sudo: false language: php php: - 7.0 - 7.1 - nightly matrix: allow_failures: - php: nightly fast_finish: true install: # --ignore-platform-reqs, because https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/2722 - composer update -n --prefer-dist --ignore-platform-reqs - composer require satooshi/php-coveralls dev-master --ignore-platform-reqs script: - phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml - PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix after_script: - php vendor/bin/coveralls -v cache: directories: - $HOME/.composer/cache
sudo: false language: php php: - 7.0 - 7.1 - 7.2 - nightly matrix: allow_failures: - php: nightly fast_finish: true install: # --ignore-platform-reqs, because https://github.com/FriendsOfPHP/PHP-CS-Fixer/pull/2722 - composer update -n --prefer-dist --ignore-platform-reqs - composer require satooshi/php-coveralls dev-master --ignore-platform-reqs script: - phpdbg -qrr vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml - PHP_CS_FIXER_IGNORE_ENV=1 php vendor/bin/php-cs-fixer --diff --dry-run -v fix after_script: - php vendor/bin/coveralls -v cache: directories: - $HOME/.composer/cache
Test on PHP 7.2 on Travis
Test on PHP 7.2 on Travis
YAML
mit
amphp/aerys
7a1bdb3ad42858eac31b6f0ec7e14fc048f9a2a5
.travis.yml
.travis.yml
language: python python: - "2.7" - "2.6" # command to install dependencies install: - pip install -r requirements.txt --use-mirrors - pip install . --use-mirrors # command to run tests script: nosetests -w test/unittests --with-coverage --cover-package=sumatra
language: python python: - "2.7" - "2.6" # command to install dependencies install: - pip install -r requirements.txt - pip install . # command to run tests script: nosetests -w test/unittests --with-coverage --cover-package=sumatra
Remove the deprecated "--use-mirrors" option from the Travis CI config.
Remove the deprecated "--use-mirrors" option from the Travis CI config.
YAML
bsd-2-clause
apdavison/sumatra,dpad/sumatra,open-research/sumatra,apdavison/sumatra,babsey/sumatra,maxalbert/sumatra,dpad/sumatra,maxalbert/sumatra,maxalbert/sumatra,open-research/sumatra,babsey/sumatra,open-research/sumatra,maxalbert/sumatra,apdavison/sumatra,maxalbert/sumatra,apdavison/sumatra,babsey/sumatra,open-research/sumatra,apdavison/sumatra,dpad/sumatra,dpad/sumatra,open-research/sumatra,dpad/sumatra,babsey/sumatra,babsey/sumatra
5c90afaa5bca3200a1ba1fd41b963d0b739f1d47
.travis.yml
.travis.yml
language: ruby before_script: - sh -e /etc/init.d/xvfb start - export DISPLAY=:99.0 - bundle exec rake test_app script: - bundle exec rspec spec notifications: email: - ryan@spreecommerce.com rvm: - 1.9.3 - 2.0.0 branches: only: - master
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 sudo: false before_script: - sh -e /etc/init.d/xvfb start - export DISPLAY=:99.0 - bundle exec rake test_app script: - bundle exec rspec spec
Use new build on Travis and test 2.1.x.
Use new build on Travis and test 2.1.x. Also don’t spam Ryan.
YAML
bsd-3-clause
StemboltHQ/solidus_paypal_express,freerunningtech/solidus_paypal_express,StemboltHQ/solidus_paypal_express,StemboltHQ/solidus_paypal_express,freerunningtech/solidus_paypal_express,freerunningtech/solidus_paypal_express
51bcf3ac646176b61769571b6ac840caa0359fa3
.travis.yml
.travis.yml
language: go go: - 1.5 - 1.6 - 1.7 - tip env: - GO15VENDOREXPERIMENT=1 before_install: - sudo add-apt-repository ppa:masterminds/glide -y - sudo apt-get update -q - sudo apt-get install glide -y install: - glide install script: - go test $(go list ./... | grep -v /vendor/)
language: go go: - 1.5 - 1.6 - 1.7 - tip env: - GO15VENDOREXPERIMENT=1 before_install: - sudo add-apt-repository ppa:masterminds/glide -y - sudo apt-get update -q - sudo apt-get install glide -y install: - glide install script: - go test -race $(go list ./... | grep -v /vendor/)
Add race flag to go test
Add race flag to go test
YAML
mit
frozzare/go-config
1ba8fae05e9c0750f9ebfc130f221ef417c9b1b2
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 2.1 script: bundle exec jekyll build && htmlproof ./_site env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
language: ruby cache: bundler rvm: - 2.1 script: bundle exec jekyll build && bundle exec htmlproof ./_site env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
Use bundle to run htmlproof
Use bundle to run htmlproof
YAML
mit
information-safety/information-safety.github.io,information-safety/information-safety.github.io,information-safety/information-safety.github.io
e86a5f34bc647b195808cddbeef9bf7e8ba65ac1
.travis.yml
.travis.yml
language: elixir elixir: - 1.8 - 1.7 - 1.6 - 1.5 - 1.4 - 1.3 - 1.2 - 1.1 otp_release: - 21 - 20 - 19 - 18 - 17 sudo: false before_script: - mix deps.get --only test env: - MIX_ENV=test script: scripts/coveralls_travis after_script: - mix deps.get --only docs - MIX_ENV=docs mix inch.report
language: elixir elixir: - 1.8 - 1.7 - 1.6 - 1.5 - 1.4 - 1.3 - 1.2 - 1.1 sudo: false before_script: - mix deps.get --only test env: - MIX_ENV=test script: scripts/coveralls_travis after_script: - mix deps.get --only docs - MIX_ENV=docs mix inch.report
Remove OTP versions from Travis build matrix since Elixir pulls the appropriate OTP version
Remove OTP versions from Travis build matrix since Elixir pulls the appropriate OTP version
YAML
mit
beatrichartz/csv,beatrichartz/csv
86233159b35f44344158735a012fae0fd38a5385
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0-p647 - 2.1.7 - 2.2.3 before_install: gem install bundler -v 1.10.6
language: ruby rvm: - 2.7.1 - 2.6.6 - 2.5.8 before_install: gem install bundler
Update Ruby and buundler versions
CI: Update Ruby and buundler versions Signed-off-by: Manuel Hutter <adc16fa41a38b174232f206e0b2bd006baaace68@hutter.io>
YAML
mit
mhutter/fuzzy_set,mhutter/fuzzy_set
e181c4b2b750f39a826dd9e0ce01c387a697aacb
.travis.yml
.travis.yml
language: ruby rvm: - "1.8.7" - "1.9.2" - "1.9.3" - jruby-18mode # JRuby in 1.8 mode - jruby-19mode # JRuby in 1.9 mode - rbx-18mode - rbx-19mode
language: ruby rvm: - "1.8.7" - "1.9.2" - "1.9.3" - "2.0.0" - "2.1.0" - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode
Add ruby 2.0 and 2.1
Add ruby 2.0 and 2.1
YAML
mit
gdavison/edumacator
9677e1708e28f039f00f11fe31ccf07418bbaf23
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.4 before_install: - curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - && sudo apt-get install -y nodejs before_script: - cd lib/assets && npm install && npm run bundle -- -p && cd - - cp config/database_example.yml config/database.yml - cp config/secrets_example.yml config/secrets.yml - cp config/branding_example.yml config/branding.yml - cp config/initializers/devise.rb.example config/initializers/devise.rb - cp config/initializers/recaptcha.rb.example config/initializers/recaptcha.rb - cp config/initializers/wicked_pdf.rb.example config/initializers/wicked_pdf.rb - bundle exec rake db:drop RAILS_ENV=test - bundle exec rake db:create RAILS_ENV=test - bundle exec rake db:schema:load RAILS_ENV=test - bundle exec rake db:migrate RAILS_ENV=test script: - bundle exec rake test
language: ruby rvm: - 2.4.4 before_install: - curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - && sudo apt-get install -y nodejs before_script: - cd lib/assets && npm install && npm run bundle -- -p && cd - - cp config/database_example.yml config/database.yml - cp config/secrets_example.yml config/secrets.yml - cp config/branding_example.yml config/branding.yml - cp config/initializers/devise.rb.example config/initializers/devise.rb - cp config/initializers/recaptcha.rb.example config/initializers/recaptcha.rb - cp config/initializers/wicked_pdf.rb.example config/initializers/wicked_pdf.rb - bundle exec rake db:drop RAILS_ENV=test - bundle exec rake db:create RAILS_ENV=test - bundle exec rake db:schema:load RAILS_ENV=test - bundle exec rake db:migrate RAILS_ENV=test script: - bundle exec rake test - bundle exec rspec spec
Add RSpec check to Travis CI
Add RSpec check to Travis CI
YAML
mit
DMPRoadmap/roadmap,DigitalCurationCentre/roadmap,CDLUC3/dmptool,CDLUC3/dmptool,CDLUC3/dmptool,CDLUC3/roadmap,CDLUC3/roadmap,CDLUC3/roadmap,DigitalCurationCentre/roadmap,CDLUC3/dmptool,DMPRoadmap/roadmap,DMPRoadmap/roadmap,CDLUC3/roadmap,DigitalCurationCentre/roadmap
7e4b80b943ffc35c8666449b693fb747360cf618
.travis.yml
.travis.yml
addons: postgresql: "10" apt: packages: - postgresql-10-postgis-2.4 - postgresql-10-postgis-2.4-scripts - postgresql-contrib-10 env: - PATH=".:/usr/lib/postgresql/10/bin:$PATH" install: "true" language: erlang otp_release: - 22.0 - 21.3 - 20.3 - 19.3 - 18.3 script: - make elvis - make test - make dialyzer
addons: postgresql: "10" apt: packages: - postgresql-10-postgis-2.4 - postgresql-10-postgis-2.4-scripts - postgresql-contrib-10 env: - PATH=".:/usr/lib/postgresql/10/bin:$PATH" install: "true" language: erlang matrix: include: - otp_release: 22.0 - otp_release: 21.3 - otp_release: 20.3 - otp_release: 19.3 - otp_release: 18.3 dist: trusty script: - make elvis - make test - make dialyzer
Use ubuntu trusty for OTP 18 on Travis
Use ubuntu trusty for OTP 18 on Travis
YAML
bsd-3-clause
epgsql/epgsql
490fcac30fef4f426a47b88cb8ce493f7cc806aa
.travis.yml
.travis.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java cache: directories: - $HOME/.m2 jdk: - openjdk8 - openjdk11 - openjdk16 - openjdk-ea matrix: allow_failures: - jdk: openjdk-ea script: - mvn -V --no-transfer-progress after_success: - mvn -V --no-transfer-progress clean test jacoco:report coveralls:report -Ptravis-jacoco javadoc:javadoc -Ddoclint=all
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. language: java cache: directories: - $HOME/.m2 jdk: - openjdk8 - openjdk11 - openjdk16 - openjdk-ea matrix: fast_finish: true allow_failures: - jdk: openjdk-ea script: - mvn -V --no-transfer-progress after_success: - mvn -V --no-transfer-progress clean test jacoco:report coveralls:report -Ptravis-jacoco javadoc:javadoc -Ddoclint=all
Improve Travis CI build Performance
Improve Travis CI build Performance
YAML
apache-2.0
apache/commons-jexl,apache/commons-jexl,apache/commons-jexl
4ea2bc7b326b03315f1c7cf2f6adb882e94cb8a1
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.3" - "3.4" - "3.5" cache: apt addons: apt: packages: - libatlas-dev - libatlas-base-dev - liblapack-dev - gfortran before_install: - wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy script: - ./dev-scripts/run-tests.sh
sudo: false language: python notifications: email: recipients: - me@arranschlosberg.com on_success: change on_failure: always python: - "2.7" - "3.3" - "3.4" - "3.5" cache: apt addons: apt: packages: - libatlas-dev - libatlas-base-dev - liblapack-dev - gfortran before_install: - wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - bash miniconda.sh -b -p $HOME/miniconda - export PATH="$HOME/miniconda/bin:$PATH" - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy script: - ./dev-scripts/run-tests.sh
Change Travis CI config to notify by email: success (change) failure (always).
Change Travis CI config to notify by email: success (change) failure (always).
YAML
mit
aschlosberg/BNoL,aschlosberg/BNoL
f4b2421805be92610fc4c5e964953e9e983453ee
.travis.yml
.travis.yml
language: rust rust: nightly script: cargo run --manifest-path demo-rs/Cargo.toml
language: rust rust: nightly os: - linux - macos script: cargo run --manifest-path demo-rs/Cargo.toml && cargo test
Add macos and cargo test
Add macos and cargo test
YAML
apache-2.0
dtolnay/cxx,dtolnay/cxx,dtolnay/cxx,dtolnay/cxx
1ae502f6e0997ce93e5d619f51920f300a00a752
.travis.yml
.travis.yml
language: node_js node_js: - '0.10'
language: node_js node_js: - 'iojs' - '0.12' - '0.10'
Add testing against node 0.12 and iojs
Add testing against node 0.12 and iojs
YAML
mit
ericwallinder/gulp-mustache,ericwallinder/gulp-mustache,rogeriopvl/gulp-mustache,sebdm/gulp-mustache,sebdm/gulp-mustache,rogeriopvl/gulp-mustache
4361b3cd32c0bb4c97d97c1b3ba38ee8d90a8432
.travis.yml
.travis.yml
sudo: false language: python python: - 2.7 - 3.3 - 3.4 before_install: - SRC_DIR=$(pwd) - REDIRECT_TO=/dev/null # change to /dev/stdout to unsilence travis install: - pip install -q pytest future pytest-cov pytest-capturelog - pip install -q coveralls script: - cd ${SRC_DIR} - python setup.py install > ${REDIRECT_TO} - py.test tests -m "not no_travis" -v --cov coveralls --cov-report term-missing after_success: - coveralls;
sudo: false language: python python: - 2.7 - 3.3 - 3.4 before_install: - SRC_DIR=$(pwd) - REDIRECT_TO=/dev/null # change to /dev/stdout to unsilence travis install: - pip install -q pytest future pytest-cov pytest-capturelog - pip install -q python-coveralls script: - cd ${SRC_DIR} - python setup.py install > ${REDIRECT_TO} - py.test tests -m "not no_travis" -v --cov coveralls --cov-report term-missing after_success: - coveralls;
Use python-coveralls instead of coveralls (seems to play nicer with py.test (according to the docs))
Use python-coveralls instead of coveralls (seems to play nicer with py.test (according to the docs))
YAML
mit
mrh1997/pyclibrary,MatthieuDartiailh/pyclibrary,mrh1997/pyclibrary,duguxy/pyclibrary,MatthieuDartiailh/pyclibrary,duguxy/pyclibrary,duguxy/pyclibrary,mrh1997/pyclibrary
a89392b70a54176afc597ece6956eec5fecffd56
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" install: - pip install pep8 - pip install pyflakes - pip install -e ./ script: - pep8 daemons/ - pep8 tests/ - pyflakes daemons/ - pyflakes tests/ - py.test tests/
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" install: - pip install pep8 - pip install pyflakes - pip install -e ./ script: - pep8 daemons/ - pep8 tests/ - pyflakes daemons/ - pyflakes tests/ - if [[ "$(python --version 2>&1)" =~ Python\ (3\.2.*) ]]; then pip install "pytest<3.0.0"; fi - py.test tests/
Add pytest version pin for 3.2
Add pytest version pin for 3.2 Looks like pytest dropped 3.2 support at some point. This pin should keep the 3.2 tests running.
YAML
apache-2.0
kevinconway/daemons
33f0461eef3bee5181f0d172d36afcdc396074d1
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.6" sudo: required services: - docker - rabbitmq git: submodules: false before_install: - sudo apt update && sudo apt install -y protobuf-compiler - sed -i 's,git\@github.com:\([^/]*\)/\(.*\).git,https://github.com/\1/\2,' .gitmodules - git submodule update --init --recursive before_script: - pip install -r source/tyr/requirements_dev.txt - bash source/scripts/build_protobuf.sh script: # Make sure submodules references are merged in ! - bash source/scripts/check_submodules.sh - pushd source/tyr && PYTHONPATH=.:../navitiacommon/ py.test --doctest-modules --ignore=migrations/ && popd matrix: include: - python: "3.6" before_script: python3.6 -m pip install black==18.9b0; script: black --check --diff . exclude: - python: "3.6"
language: python python: - "2.7" - "3.6" sudo: required dist: xenial services: - docker - rabbitmq - redis git: submodules: false before_install: - sudo apt update && sudo apt install -y protobuf-compiler - sed -i 's,git\@github.com:\([^/]*\)/\(.*\).git,https://github.com/\1/\2,' .gitmodules - git submodule update --init --recursive before_script: - pip install -r source/tyr/requirements_dev.txt - bash source/scripts/build_protobuf.sh script: # Make sure submodules references are merged in ! - bash source/scripts/check_submodules.sh - pushd source/tyr && PYTHONPATH=.:../navitiacommon/ py.test --doctest-modules --ignore=migrations/ && popd matrix: include: - python: "3.6" before_script: python3.6 -m pip install black==18.9b0; script: black --check --diff . exclude: - python: "3.6"
Update Travis to Ubuntu 16.04 distro
Update Travis to Ubuntu 16.04 distro
YAML
agpl-3.0
Tisseo/navitia,CanalTP/navitia,xlqian/navitia,CanalTP/navitia,CanalTP/navitia,xlqian/navitia,Tisseo/navitia,CanalTP/navitia,kinnou02/navitia,xlqian/navitia,pbougue/navitia,kinnou02/navitia,kinnou02/navitia,kinnou02/navitia,pbougue/navitia,CanalTP/navitia,patochectp/navitia,Tisseo/navitia,xlqian/navitia,pbougue/navitia,Tisseo/navitia,patochectp/navitia,patochectp/navitia,patochectp/navitia,pbougue/navitia,Tisseo/navitia,xlqian/navitia
57c3e584a81ed6bbb4a9998560dd22e48b1e3671
.travis.yml
.travis.yml
before_script: - "mysql -e 'create database sequelize_test;'" - "psql -c 'create database sequelize_test;' -U postgres" script: - "make test" notifications: email: - sascha@depold.com hipchat: - 40e8850aaba9854ac4c9963bd33f8b@253477 env: - MYSQL_VERSION=mysql-5.5.27 DB=mysql DIALECT=mysql - MYSQL_VERSION=mysql-5.6.12 DB=mysql DIALECT=mysql - DB=mysql DIALECT=postgres - DB=mysql DIALECT=postgres-native - DB=mysql DIALECT=sqlite language: node_js node_js: - 0.8
before_script: - "mysql -e 'create database sequelize_test;'" - "psql -c 'create database sequelize_test;' -U postgres" script: - "make test" notifications: email: - sascha@depold.com hipchat: - 40e8850aaba9854ac4c9963bd33f8b@253477 env: - DB=mysql DIALECT=mysql - DB=mysql DIALECT=postgres - DB=mysql DIALECT=postgres-native - DB=mysql DIALECT=sqlite language: node_js node_js: - 0.8
Revert "check mysql 5.6 as well"
Revert "check mysql 5.6 as well" This reverts commit 77e86a11747af91a8f822499ffe8ae67d16c2cf7.
YAML
mit
IrfanBaqui/sequelize
7f0af56e4fb5ea2b12609f3497215f67b0b42fcd
.travis.yml
.travis.yml
language: java sudo: false jdk: - oraclejdk7 - oraclejdk8 - openjdk7 script: - |- if [ ${TRAVIS_PULL_REQUEST} = "false" ]; then openssl aes-256-cbc -K $encrypted_25450b691aae_key -iv $encrypted_25450b691aae_iv -in my.azureauth.txt.enc -out my.azureauth.txt -d; export AZURE_TEST_MODE=RECORD || travis_terminate 1 ; export AZURE_AUTH_LOCATION=$TRAVIS_BUILD_DIR/my.azureauth.txt || travis_terminate 1 ; mvn install -Dorg.slf4j.simpleLogger.defaultLogLevel=error || travis_terminate 1 ; else mvn install -DskipTests=true || travis_terminate 1 ; mvn test -Dorg.slf4j.simpleLogger.defaultLogLevel=error || travis_terminate 1 ; mvn checkstyle:check || travis_terminate 1 ; mvn -pl !azure-samples package javadoc:aggregate -DskipTests=true || travis_terminate 1 ; fi
language: java sudo: false jdk: - oraclejdk7 - oraclejdk8 - openjdk7 script: - |- if [ ${TRAVIS_PULL_REQUEST} = "false" ]; then openssl aes-256-cbc -K $encrypted_25450b691aae_key -iv $encrypted_25450b691aae_iv -in my.azureauth.txt.enc -out my.azureauth.txt -d; export AZURE_TEST_MODE=RECORD || travis_terminate 1 ; export AZURE_AUTH_LOCATION=$TRAVIS_BUILD_DIR/my.azureauth.txt || travis_terminate 1 ; mvn -pl !azure-keyvault,!azure-keyvault-extensions install -Dorg.slf4j.simpleLogger.defaultLogLevel=error || travis_terminate 1 ; else mvn install -DskipTests=true || travis_terminate 1 ; mvn -pl !azure-keyvault,!azure-keyvault-extensions test -Dorg.slf4j.simpleLogger.defaultLogLevel=error || travis_terminate 1 ; mvn checkstyle:check || travis_terminate 1 ; mvn -pl !azure-samples package javadoc:aggregate -DskipTests=true || travis_terminate 1 ; fi
Exclude key vault from CI test runs
Exclude key vault from CI test runs
YAML
mit
Azure/azure-sdk-for-java,hovsepm/azure-sdk-for-java,hovsepm/azure-sdk-for-java,martinsawicki/azure-sdk-for-java,Azure/azure-sdk-for-java,martinsawicki/azure-sdk-for-java,anudeepsharma/azure-sdk-for-java,hovsepm/azure-sdk-for-java,anudeepsharma/azure-sdk-for-java,Azure/azure-sdk-for-java,hovsepm/azure-sdk-for-java,anudeepsharma/azure-sdk-for-java,ljhljh235/azure-sdk-for-java,selvasingh/azure-sdk-for-java,ljhljh235/azure-sdk-for-java,navalev/azure-sdk-for-java,jianghaolu/azure-sdk-for-java,jianghaolu/azure-sdk-for-java,anudeepsharma/azure-sdk-for-java,Azure/azure-sdk-for-java,navalev/azure-sdk-for-java,martinsawicki/azure-sdk-for-java,Azure/azure-sdk-for-java,navalev/azure-sdk-for-java,hovsepm/azure-sdk-for-java,anudeepsharma/azure-sdk-for-java,jianghaolu/azure-sdk-for-java,navalev/azure-sdk-for-java,selvasingh/azure-sdk-for-java,navalev/azure-sdk-for-java,selvasingh/azure-sdk-for-java
50c792b3d204b591b12a55a6d971ee67d77a30d3
.travis.yml
.travis.yml
language: php php: - 7.0 - 5.6 - 7.1 dist: trusty env: global: - DEFAULT=1 cache: directories: - vendor - $HOME/.composer/cache before_script: - composer install --prefer-dist --no-interaction script: - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.0 ]]; then export CODECOVERAGE=1; vendor/bin/phpunit --coverage-clover=clover.xml; fi - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION != 7.0 ]]; then vendor/bin/phpunit; fi after_success: - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.0 ]]; then bash <(curl -s https://codecov.io/bash); fi notifications: email: true
language: php php: - 5.6 - 7.0 - 7.1 - 7.2 dist: trusty env: - CAKEPHP_VERSION=3.6.* global: - DEFAULT=1 matrix: include: - php: 5.6 env: CAKEPHP_VERSION=3.4.* - php: 5.6 env: CAKEPHP_VERSION=3.5.* - php: 7.0 env: CAKEPHP_VERSION=3.4.* - php: 7.0 env: CAKEPHP_VERSION=3.5.* - php: 7.1 env: CAKEPHP_VERSION=3.4.* - php: 7.1 env: CAKEPHP_VERSION=3.5.* - php: 7.2 env: CAKEPHP_VERSION=3.4.* - php: 7.2 env: CAKEPHP_VERSION=3.5.* cache: directories: - vendor - $HOME/.composer/cache before_script: - composer require "cakephp/cakephp:${CAKEPHP_VERSION}" --no-update install: composer update --prefer-dist --no-interaction --dev script: - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.0 ]]; then export CODECOVERAGE=1; vendor/bin/phpunit --coverage-clover=clover.xml; fi - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION != 7.0 ]]; then vendor/bin/phpunit; fi after_success: - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.0 ]]; then bash <(curl -s https://codecov.io/bash); fi notifications: email: true
Add tests for different cakephp versions.
Add tests for different cakephp versions.
YAML
mit
Holt59/cakephp3-bootstrap3-helpers,raul338/cakephp3-bootstrap3-helpers,ypnos-web/cakephp3-bootstrap-helpers,Holt59/cakephp3-bootstrap-helpers
f5e4c64a880deb9aa26e653992399158b4d7ae60
.travis.yml
.travis.yml
language: c++ sudo: false dist: trusty compiler: - gcc addons: apt: packages: - libsparsehash-dev - cmake before_script: - mkdir build - cd build - cmake .. script: - make -j 3 - make test notifications: email: on_success: never on_failure: always
language: c++ sudo: false dist: trusty addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-5 - g++-5 - libsparsehash-dev - cmake compiler: - gcc-5 before_script: - $CXX --version - mkdir build - cd build - cmake .. script: - make -j 3 - make test notifications: email: on_success: never on_failure: always
Install and use GCC 5
Travis: Install and use GCC 5 Travis' newest supported distribution is Ubuntu 14.04 LTS (not joking) but we can use a more current compiler. To match internal infrastructure we choose GCC 5.x which is the default in Ubuntu 16.04 LTS
YAML
apache-2.0
Buchhold/QLever,Buchhold/QLever,Buchhold/QLever,Buchhold/QLever,Buchhold/QLever
b79c30ea93bca3111cba435aa380c11200946a8b
.travis.yml
.travis.yml
language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly before_install: - sudo apt-get update -qq - sudo apt-get install -y libx11-xcb-dev libxcb-ewmh-dev libxcb-icccm4-dev libxcb-keysyms1-dev
dist: trusty sudo: required language: rust rust: - stable - beta - nightly matrix: allow_failures: - rust: nightly before_install: - sudo apt-get update -qq - sudo apt-get install -y libx11-xcb-dev libxcb-ewmh-dev libxcb-icccm4-dev libxcb-keysyms1-dev
Use Ubuntu Trusty (for XCB packages).
Travis: Use Ubuntu Trusty (for XCB packages).
YAML
mit
mjkillough/lanta
f9ffdcfd22a235db96420516db0b9bddfc4c032f
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" env: - PANDAS_VERSION="pandas>=0.18,<0.19" - PANDAS_VERSION="pandas>=0.19,<0.20" - PANDAS_VERSION="pandas" before_script: - pip install nose - pip install parameterized - pip install codecov # install matrix versions, deps and optional deps install: - pip install --upgrade pip setuptools wheel - pip install numpy - pip install scipy - pip install scikit-learn - pip install six - pip install jellyfish - pip install -q $PANDAS_VERSION # run tests with coverage script: nosetests --with-coverage --cover-package=recordlinkage # codecov after_success: - bash <(curl -s https://codecov.io/bash)
language: python python: - "2.7" - "3.4" - "3.5" - "3.6" env: - PANDAS_VERSION="pandas>=0.18,<0.19" - PANDAS_VERSION="pandas>=0.19,<0.20" - PANDAS_VERSION="pandas>=0.20,<0.21" - PANDAS_VERSION="pandas" before_script: - pip install nose - pip install parameterized - pip install codecov # install matrix versions, deps and optional deps install: - pip install --upgrade pip setuptools wheel - pip install numpy - pip install scipy - pip install scikit-learn - pip install six - pip install jellyfish - pip install -q $PANDAS_VERSION # run tests with coverage script: nosetests --with-coverage --cover-package=recordlinkage # codecov after_success: - bash <(curl -s https://codecov.io/bash)
Add pandas version to test against
Add pandas version to test against
YAML
bsd-3-clause
J535D165/recordlinkage,J535D165/recordlinkage
8848f86fcd83f642512842c75ac5c2db4ab3cebe
.travis.yml
.travis.yml
language: cpp compiler: - gcc install: - sudo apt-get install gcc-multilib g++-multilib cmake before_script: - cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 script: - make - make package
language: cpp compiler: - gcc install: - sudo apt-get install gcc-multilib g++-multilib cmake - wget http://www.cmake.org/files/v2.8/cmake-2.8.12.2-Linux-i386.sh - sudo sh cmake-2.8.12.2-Linux-i386.sh --exclude-subdir --prefix=/usr before_script: - cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 script: - make - make package
Fix CMake version error on Travis
Fix CMake version error on Travis Travis has CMake 2.8.7 but we need 2.8.8.
YAML
bsd-2-clause
Zeex/samp-plugin-profiler,Zeex/samp-plugin-profiler
5d29d660419e0cb1f3f09758553b2b436ecf1ca5
.travis.yml
.travis.yml
distro: trusty sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 services: - mysql before_script: - npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev - mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci" - mysql -u root -e "GRANT ALL PRIVILEGES ON rhymix.* TO travis@localhost" - mysql -u root -e "UPDATE mysql.user SET Password = PASSWORD('travis') WHERE User = 'travis'; FLUSH PRIVILEGES" - phpenv config-rm xdebug.ini - php -S localhost:8000 & - wget http://codeception.com/releases/2.1.11/codecept.phar script: - php codecept.phar build - php codecept.phar run -d --fail-fast --env travis - grunt lint notifications: email: false
distro: trusty sudo: false language: php php: - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 matrix: allow_failures: - php: 7.2 services: - mysql before_script: - npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev - mysql -u root -e "CREATE DATABASE rhymix CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci" - mysql -u root -e "GRANT ALL PRIVILEGES ON rhymix.* TO travis@localhost" - mysql -u root -e "UPDATE mysql.user SET Password = PASSWORD('travis') WHERE User = 'travis'; FLUSH PRIVILEGES" - phpenv config-rm xdebug.ini - php -S localhost:8000 & - wget http://codeception.com/releases/2.1.11/codecept.phar script: - php codecept.phar build - php codecept.phar run -d --fail-fast --env travis - grunt lint notifications: email: false
Allow PHP 7.2 test failures for now
Allow PHP 7.2 test failures for now
YAML
lgpl-2.1
xetown/xe-core,xetown/xe-core,xetown/xe-core
9d9cb7fc203900079e3c0edfbce88ee25bacad3b
.travis.yml
.travis.yml
# Enables Travis to use their new container-based infrastructure sudo: false # Build for Ruby language: ruby # Enables caching for bundler cache: bundler # Specify which ruby versions you wish to run your tests on, each version will be used rvm: - "2.0" - "2.1" - "2.2" - "2.3" - "2.4" - "2.5" # - ruby-head # - jruby # Define how to run your tests (defaults to `bundle exec rake` or `rake` depending on whether you have a `Gemfile`) script: "bundle exec rake" # Define tasks to be completed before and after tests run . Will allow folding of content on frontend #before_script: # - command_1 # - command_2 # #after_script: # - command_1 # - command_2 # Specify an ENV variable to run before: 'bundle install' and 'rake' (or your defined 'script') env: - CI=1 # Specify the recipients for email notification #notifications: # recipients: # - email-address-1 # - email-address-2 # Disable email notifications #notifications: # disabled: true # notifications: # webhooks: # urls: # - https://webhooks.gitter.im/e/c6dbb9323007dfcf81df
# Enables Travis to use their new container-based infrastructure sudo: false # Build for Ruby language: ruby # Enables caching for bundler cache: bundler # Specify which ruby versions you wish to run your tests on, each version will be used rvm: - "2.0" - "2.1" - "2.2" - "2.3" - "2.4" - "2.5" - "2.6" # - ruby-head # - jruby # Define how to run your tests (defaults to `bundle exec rake` or `rake` depending on whether you have a `Gemfile`) script: "bundle exec rake" # Define tasks to be completed before and after tests run . Will allow folding of content on frontend #before_script: # - command_1 # - command_2 # #after_script: # - command_1 # - command_2 # Specify an ENV variable to run before: 'bundle install' and 'rake' (or your defined 'script') env: - CI=1 # Specify the recipients for email notification #notifications: # recipients: # - email-address-1 # - email-address-2 # Disable email notifications #notifications: # disabled: true # notifications: # webhooks: # urls: # - https://webhooks.gitter.im/e/c6dbb9323007dfcf81df
Test against Ruby 2.6 in Travis CI
Test against Ruby 2.6 in Travis CI
YAML
mit
thomthom/yard,lsegal/yard,lsegal/yard,thomthom/yard,lsegal/yard,thomthom/yard
3689af5aa497a93fd8bd733aac9f6a78b07de26d
.travis.yml
.travis.yml
sudo: false dist: trusty language: go matrix: include: - go: 1.5.4 - go: 1.6.4 - go: 1.7.6 - go: 1.8.3 install: - # Do nothing. script: - go get -t -v ./... - diff -u <(echo -n) <(gofmt -d -s .) - go tool vet -structtags=false .
sudo: false dist: trusty language: go matrix: include: - go: 1.5.4 - go: 1.6.4 - go: 1.7.6 - go: 1.8.3 install: - # Do nothing. script: - go get -t -v ./... - diff -u <(echo -n) <(gofmt -d -s .) - go tool vet .
Remove struct tags override to go vet.
Remove struct tags override to go vet.
YAML
apache-2.0
die-net/bench-httpd
f0e881b6085a830215bd1e8d618a1132c26217bb
.travis.yml
.travis.yml
sudo: required language: java services: - docker jdk: - oraclejdk8 before_install: # Disable services enabled by default - sudo service mysql stop - sudo /etc/init.d/postgresql stop # Run my databases in the background - docker-compose -f etc/docker-compose.yml up -d install: - TERM=dumb ./gradlew assemble script: - TERM=dumb ./gradlew check
sudo: required language: java services: - docker jdk: - oraclejdk8 before_install: # Disable services enabled by default - sudo service mysql stop - sudo /etc/init.d/postgresql stop # Run my databases in the background - docker-compose -f etc/docker-compose.yml up -d install: - TERM=dumb ./gradlew assemble script: - TERM=dumb ./gradlew check -x testIntegration
Disable integration tests for a moment
Disable integration tests for a moment
YAML
bsd-2-clause
oblac/jodd,mosoft521/jodd,mosoft521/jodd,vilmospapp/jodd,vilmospapp/jodd,oblac/jodd,mosoft521/jodd,oblac/jodd,vilmospapp/jodd,oblac/jodd,mosoft521/jodd,vilmospapp/jodd,vilmospapp/jodd
571fad2b80ef5646d765249397600784a207ec19
.travis.yml
.travis.yml
language: node_js node_js: - "5" - "4" - "0.12" - "node" - "iojs" before_script: - 'npm install -g grunt-cli' - 'grunt'
sudo: false language: node_js node_js: - "5" - "4" - "0.12" - "node" - "iojs" before_script: - 'npm install -g grunt-cli' - 'grunt'
Speed up Travis CI builds
Speed up Travis CI builds Use container-based rather legacy infrastructure Details: https://docs.travis-ci.com/user/migrating-from-legacy/
YAML
mit
hisham/annyang,TalAter/annyang,hisham/annyang,TalAter/annyang,hisham/annyang
d6ec4f26220be6f8649d76cbe53b0c12970ef92a
.travis.yml
.travis.yml
language: node_js node_js: - "0.11.8" - "0.10" before_script: - npm install -g grunt-cli notifications: email: recipients: - dan@tillberg.us - driti@appneta.com on_success: change on_failure: always
language: node_js node_js: - "0.11" - "0.10" before_script: - npm install -g grunt-cli notifications: email: recipients: - dan@tillberg.us - driti@appneta.com on_success: change on_failure: always
Fix Travis CI build, maybe?
Fix Travis CI build, maybe?
YAML
mit
tillberg/tbone,rachellaserzhao/tbone,appneta/tbone,rachellaserzhao/tbone,tillberg/tbone,appneta/tbone
0c073d36aa81edc0229067a3733cce65d831b77b
.travis.yml
.travis.yml
language: ruby bundler_args: --without development services: - rabbitmq rvm: - 2.0.0 - 1.9.3 - jruby - rbx-19mode gemfile: - gemfiles/Gemfile.rails-3-2 - gemfiles/Gemfile.rails-4-0 matrix: allow_failures: rvm: - jruby - rbx-19mode script: - bundle exec rake spec:msgr - bundle exec rake spec:integration
language: ruby bundler_args: --without development services: - rabbitmq rvm: - 2.0.0 - 1.9.3 - jruby - rbx-19mode gemfile: - gemfiles/Gemfile.rails-3-2 - gemfiles/Gemfile.rails-4-0 matrix: allow_failures: - rvm: jruby - rvm: rbx-19mode script: - bundle exec rake spec:msgr - bundle exec rake spec:integration
Fix allow failures in Travis config.
Fix allow failures in Travis config.
YAML
mit
jgraichen/msgr,jgraichen/msgr
eba850cb22bdd508163454da75cc5052c628bb3f
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" env: - DJANGO=master - DJANGO=1.6 - DJANGO=1.7 install: - pip install tox coveralls script: - tox -e py${TRAVIS_PYTHON_VERSION//[.]/}-$DJANGO matrix: exclude: - python: "2.6" env: DJANGO=1.7 - python: "2.6" env: DJANGO=master after_success: coveralls notifications: webhooks: urls: - https://webhooks.gitter.im/e/dcba301df143eead1de1 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
language: python python: - "2.6" - "2.7" env: - DJANGO=master - DJANGO=1.6 - DJANGO=1.7 install: - pip install tox coveralls script: - tox -e py${TRAVIS_PYTHON_VERSION//[.]/}-$DJANGO matrix: exclude: - python: "2.6" env: DJANGO=1.7 - python: "2.6" env: DJANGO=master after_success: coveralls notifications: webhooks: urls: - https://webhooks.gitter.im/e/07df398ea594d3682132 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Update to point to new room
Update to point to new room
YAML
mit
cdvv7788/pinax-blog,easton402/pinax-blog,pinax/pinax-blog,easton402/pinax-blog,pinax/pinax-blog,miurahr/pinax-blog,salamer/pinax-blog,pinax/pinax-blog,miurahr/pinax-blog,swilcox/pinax-blog,swilcox/pinax-blog
d83fdab2850e735a29b957630dd4d23a9e45cee1
.travis.yml
.travis.yml
branches: only: - master language: - c compiler: - gcc - clang install: - sudo apt-get update -qq - sudo apt-get install -y irssi-dev libssl-dev cmake - cd ${TRAVIS_BUILD_DIR} - wget http://ftp.de.debian.org/debian/pool/main/l/lcov/lcov_1.13.orig.tar.gz - tar xf lcov_1.13.orig.tar.gz - sudo make -C lcov-1.13/ install - gem install coveralls-lcov - lcov --version before_script: - cd ${TRAVIS_BUILD_DIR} # init coverage to 0 (optional) - lcov --directory . --zerocounters script: - cmake . - make - ctest --verbose after_success: - cd ${TRAVIS_BUILD_DIR} - lcov --directory . --capture --output-file coverage.info - lcov --remove coverage.info 'tests/*' '/usr/*' --output-file coverage.info - lcov --list coverage.info - coveralls-lcov --repo-token ${COVERALLS_TOKEN} coverage.info
branches: only: - master - refactoring language: - c compiler: - gcc - clang before_install: - sudo apt-get update -qq - sudo apt-get install -y irssi-dev libssl-dev cmake script: - cmake . - make
Revert "Try to add coveralls.io support"
Revert "Try to add coveralls.io support" This reverts commit 06f99655e2596b567c034e2ee450477d2a7b9678.
YAML
mit
falsovsky/FiSH-irssi
e9e4744c67e901c79e13e05d4fb0c554f8b22c01
.travis.yml
.travis.yml
language: python python: - 3.6 before_install: - git clone https://github.com/tschijnmo/DummyRDD.git - cd DummyRDD; python3 setup.py install; cd .. install: - python3 setup.py install script: - export DUMMY_SPARK=1 - cd tests - pytest -sv
language: python python: - 3.6 addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-7.2 - g++-7.2 before_install: - git clone https://github.com/tschijnmo/DummyRDD.git - cd DummyRDD; python3 setup.py install; cd .. install: - export CC=gcc-7 - export CXX=g++-7 - python3 setup.py install script: - export DUMMY_SPARK=1 - cd tests - pytest -sv
Update GCC version in Travis CI
Update GCC version in Travis CI
YAML
mit
tschijnmo/drudge,tschijnmo/drudge,tschijnmo/drudge
7ba649dc2d48ee9acd9847d736976e7c8e3bb803
.travis.yml
.travis.yml
language: python sudo: false python: - '2.7' branches: only: - master virtualenv: system_site_packages: true before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda2/bin:$PATH - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION atlas numpy scipy matplotlib scikit-learn lxml - "python setup.py install" before_script: - mysql -e 'create database qmdb_dev;' script: - cd qmpy/db - python manage.py syncdb --noinput - python manage.py test qmpy
language: python sudo: false python: - '2.7' branches: only: - master - v2_0_0 virtualenv: system_site_packages: true before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda2/bin:$PATH - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION atlas numpy scipy matplotlib scikit-learn lxml - "python setup.py install" before_script: - mysql -e 'create database qmdb_dev;' script: - cd qmpy/db - python manage.py syncdb --noinput - python manage.py test qmpy
Add branch v2_0_0 to Travis CI
Add branch v2_0_0 to Travis CI
YAML
mit
wolverton-research-group/qmpy,wolverton-research-group/qmpy,wolverton-research-group/qmpy,wolverton-research-group/qmpy,wolverton-research-group/qmpy
b4d0c2c1119744332fb7943dcd5041ef4ca443d9
.travis.yml
.travis.yml
--- bundler_args: --without development production staging language: ruby rvm: - 2.1.0 before_script: - cp config/database.travis.yml config/database.yml - psql -c 'create database nekostagram_test;' -U postgres script: - RAILS_ENV=test bundle exec rake db:migrate --trace - bundle exec rake db:test:prepare - bundle exec rake env: global: - secure: |- dDyZ95UzgpXiLFtEGn790JCGb0MthoNBpSODtzV2XA1TW8KIN5oapCl5AoVE W1wWWleceeG8YhfDswmbNf4wSnr0nPNerbQoXWJA+RQhr7I4hU68Tfn5LzJL N7vg4m6VVpt3ZzzTND7r5v7l+mqXJie4ftAqLyiziP3A6KxjJCY=
language: ruby rvm: 2.1.0 notifications: hipchat: rooms: secure: DeGmcWjTugnJDCC2BNqDh53Sstook7Ybb0dVwMYZLMFdRuvxL5JciiX5djlrgTIlW2VVYKtmOfuwDGCYxOsqnhdkpuzOBZkp+YjDvPpzDHELXROlJRtQpo+sbhAeG0GKdHPj40ANxzRYLJ6bsUu7sASmRRLE0KpVPDFfbx2HkAo=
Enable notifications to HipChat from Travis CI
Enable notifications to HipChat from Travis CI
YAML
mit
ruedap/nekostagram,ruedap/nekostagram,ruedap/nekostagram,ruedap/nekostagram
2f96b15d3f7e14b4fb9d29fbabce46d5ca82206e
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.3 env: - MOZ_HEADLESS=1 addons: firefox: latest before_script: - mysql -e 'create database stizun_test;' - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" before_install: - "sudo apt-get update" - "sudo apt-get install sphinxsearch" - wget https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz - mkdir geckodriver - tar -xzf geckodriver-v0.24.0-linux64.tar.gz -C geckodriver - export PATH=$PATH:$PWD/geckodriver bundler_args: --without development # uncomment this line if your project needs to run something other than `rake`: script: ./script/run_tests.sh
language: ruby rvm: - 2.4.3 env: - MOZ_HEADLESS=1 addons: firefox: latest services: - mysql before_script: - mysql -e 'create database stizun_test;' - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" before_install: - "sudo apt-get update" - "sudo apt-get install sphinxsearch" - wget https://github.com/mozilla/geckodriver/releases/download/v0.24.0/geckodriver-v0.24.0-linux64.tar.gz - mkdir geckodriver - tar -xzf geckodriver-v0.24.0-linux64.tar.gz -C geckodriver - export PATH=$PATH:$PWD/geckodriver bundler_args: --without development # uncomment this line if your project needs to run something other than `rake`: script: ./script/run_tests.sh
Update gems and Travis config
Update gems and Travis config
YAML
apache-2.0
lincompch/stizun,lincompch/stizun,lincompch/stizun,lincompch/stizun,lincompch/stizun
76072b035ec68a3723f71f8f5ee2a7bdecb393ce
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer self-update - composer install --prefer-source - app/console doctrine:database:create -e=test - app/console doctrine:phpcr:init:dbal -e=test - app/console doctrine:phpcr:workspace:create standard_test -e=test - app/console doctrine:phpcr:repository:init -e=test script: phpunit -c app notifications: irc: "irc.freenode.org#symfony-cmf" email: "symfony-cmf-devs@googlegroups.com"
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm sudo: false cache: directories: - $HOME/.composer/cache before_script: - composer self-update - composer install --prefer-dist - app/console doctrine:database:create -e=test - app/console doctrine:phpcr:init:dbal -e=test - app/console doctrine:phpcr:workspace:create standard_test -e=test - app/console doctrine:phpcr:repository:init -e=test script: phpunit -c app notifications: irc: "irc.freenode.org#symfony-cmf" email: "symfony-cmf-devs@googlegroups.com"
Use new Travis docker based env and caching
Use new Travis docker based env and caching
YAML
mit
HasClass0/standard-edition,symfony-cmf/standard-edition,symfony-cmf/standard-edition,spolischook/standard-edition,HasClass0/standard-edition,skafandri/blog,skafandri/blog,irro/MastoAlliance,irro/MastoAlliance,spolischook/standard-edition
d2e0e9c91b891356fca28bbeaa2139f47a73f2a1
.travis.yml
.travis.yml
language: python python: 3.4 env: - TOXENV=py26 - TOXENV=py27 - TOXENV=py32 - TOXENV=py33 - TOXENV=py34 - TOXENV=pypy - TOXENV=pep8 - TOXENV=py2pep8 - TOXENV=docs - TOXENV=packaging install: - pip install tox script: - tox notifications: irc: channels: - "irc.freenode.org#pypa-dev" use_notice: true skip_join: true
language: python python: 3.4 sudo: false env: - TOXENV=py26 - TOXENV=py27 - TOXENV=py32 - TOXENV=py33 - TOXENV=py34 - TOXENV=pypy - TOXENV=pep8 - TOXENV=py2pep8 - TOXENV=docs - TOXENV=packaging install: - pip install tox script: - tox notifications: irc: channels: - "irc.freenode.org#pypa-dev" use_notice: true skip_join: true
Use sudo: false to build on the Travis CI Docker infrastructure
Use sudo: false to build on the Travis CI Docker infrastructure
YAML
apache-2.0
nvie/packaging,xavfernandez/packaging
5e8bf9ed45c6a48abd86f8381f6121c6354470f0
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "pypy" - "pypy-5.3" cache: pip: true directories: - google-cloud-sdk - redis-git install: - pip install -r requirements/ci.txt services: - redis-server - memcached before_script: - make -f Makefile.tests tests script: nosetests tests --with-cov -v after_success: - coveralls
language: python python: - "2.6" - "2.7" - "3.5" - "pypy" - "pypy-5.3" cache: pip: true directories: - google-cloud-sdk - redis-git install: - pip install -r requirements/ci.txt services: - redis-server - memcached before_script: - make -f Makefile.tests tests script: nosetests tests --with-cov -v after_success: - coveralls
Remove unsupported python versions from build matrix
Remove unsupported python versions from build matrix
YAML
mit
alisaifee/limits,alisaifee/limits
9c3e76e2551bb16bec20179eddb61eeba42aaa2f
.travis.yml
.travis.yml
sudo: false language: node_js branches: only: - master node_js: - "6" script: npm run test
sudo: false language: node_js branches: only: - master node_js: - "6" script: npm run test deploy: provider: npm email: dev@coursepark.com api_key: secure: efu0hZDizmzEb1rYxzIPemErHafTBoSZl2Df4cUMJBdFbLxj8IsE/iVwMPsFIOBLh8gOzAXRQRNkKNUQVrdJzcC1SzZNvKtrMqA9snue6CXxi9LnIYwrr3GRQX1cGM5SQtIdV/iSuH5eaOXTuFMjX2D0wajVI94AzYQbTquH4HQiQ4wfdcSMJzURTrAkCmPo/cdt+4KaakdQNhMEtTPyq03vzVt/+u2gdqBldyayfsxLfLwTEp49XnEpTCNj9DmcWPGiYdu2N5yp9+XrLTjsL75ehIr7XsO4lWzy9SIQXN8zWyN9iLnn++iCcanzUV9KNQ0V16N3Nnhx3GSHtIg0Fimh4BzjKsR5I+hHd/Hvlzpj6md9kEu2hlbRJZCK48wrxCEU9F8HTHKY3nhgloEvwTZ5DvvH5cZgK/bPJywgXhRNcV//eQTvYE++EtcvRHsfBoRmznZbhZgIPho1R9y9kgxuY9HTLLKJBawG9E4iuH+monngqgHztbecXQ+D3aW+CAiqmRG6eccNpOQ0ReBBFJ7oOyZSLRBGlr8sNj+zkCdPvOG3GZBq8EU4HECjf3aqNfkqrub2HwxcvTt9NZXPNLKYUAbvTWKlQ/eB2cjP9qhQCmf2Pg9KhthdbwFpCtXuNpjX2t+TZYAdNCePrOeYebEFWnjgyq3wGrEQ/pnlvuw= on: tags: true repo: CoursePark/eslint-config-bluedrop
Add npm deployment to Travis CI config
Add npm deployment to Travis CI config
YAML
isc
CoursePark/eslint-config-bluedrop,CoursePark/eslint-config-bluedrop
4526342dd35a043743bcc29df3eacc954b167309
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" before_script: - npm install -g grunt-cli
language: node_js node_js: - "0.10"
Remove hard dependency on grunt-cli global module
Remove hard dependency on grunt-cli global module
YAML
mit
aduth/correctingInterval
de32e59fdd94edadd1e6d89aa73c3943432f6c41
.travis.yml
.travis.yml
rvm: - jruby - jruby-head - 1.8.7 - 1.9.2 - 1.9.3 branches: only: - master env: - JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false" - JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false" matrix: exclude: - rvm: 1.8.7 env: - JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false" - JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false" - rvm: 1.9.2 env: - JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false" - JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false" - rvm: 1.9.3 env: - JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false" - JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false"
rvm: - jruby - jruby-head branches: only: - master env: - JRUBY_OPTS="--1.8 --server -Xcext.enabled=false -Xcompile.invokedynamic=false" - JRUBY_OPTS="--1.9 --server -Xcext.enabled=false -Xcompile.invokedynamic=false" matrix: include: - rvm: 1.8.7 - rvm: 1.9.2 - rvm: 1.9.3
Test with inclusions instead of exclusions
Test with inclusions instead of exclusions
YAML
mit
idibon/warbler,idibon/warbler,mkristian/warbler,ctreatma/warbler,atambo/warbler,mkristian/warbler,fedenusy/warbler,ctreatma/warbler,ctreatma/warbler,mkristian/warbler,atambo/warbler,ctreatma/warbler,fedenusy/warbler,idibon/warbler,idibon/warbler,fedenusy/warbler,fedenusy/warbler
e13bf1d62da51710034ca8b397908b87d10bae33
.travis.yml
.travis.yml
language: go go: - 1.4 - release - tip install: - go get github.com/go-sql-driver/mysql - go get github.com/cenkalti/backoff - go get github.com/joho/godotenv - go get github.com/codegangsta/cli - go get github.com/DATA-DOG/go-sqlmock env: - ENV=test script: - go test -v ./...
language: go go: - 1.4 - release - tip install: - go get github.com/go-sql-driver/mysql - go get github.com/cenkalti/backoff - go get github.com/joho/godotenv - go get github.com/codegangsta/cli - go get github.com/DATA-DOG/go-sqlmock - go get github.com/onsi/ginkgo - go get github.com/onsi/gomega env: - ENV=test script: - go test -v ./...
Add Ginkgo and Gomega to Travis deps
Add Ginkgo and Gomega to Travis deps
YAML
mit
nicday/turtle