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
2e9f0dbaeeb8dc8b2894c57f9a2587dc166c670a
.travis.yml
.travis.yml
language: python env: global: - DEPENDS="numpy cython" python: - "2.7" - "3.3" - "3.4" matrix: include: # Absolute minimum dependencies - python: 2.7 env: - DEPENDS="numpy==1.7.0 cython==0.19" # test without Cython installed - python: 2.7 env: - DEPENDS="numpy" notifications: email: false before_install: - sudo apt-get install libhdf5-serial-dev netcdf-bin libnetcdf-dev - pip install $DEPENDS install: - python setup.py build - python setup.py install script: - cd test - python run_all.py
language: python env: global: - DEPENDS="numpy cython" - NO_NET=1 python: - "2.7" - "3.3" - "3.4" matrix: include: # Absolute minimum dependencies - python: 2.7 env: - DEPENDS="numpy==1.7.0 cython==0.19" # test without Cython installed - python: 2.7 env: - DEPENDS="numpy" notifications: email: false before_install: - sudo apt-get install libhdf5-serial-dev netcdf-bin libnetcdf-dev - pip install $DEPENDS install: - python setup.py build - python setup.py install script: - cd test - python run_all.py
Set NO_NET for Travis CI build.
Set NO_NET for Travis CI build.
YAML
mit
Unidata/netcdf4-python,Unidata/netcdf4-python,Unidata/netcdf4-python
b3b271a438af540cac95be38ccd6e929d820b4a8
.travis.yml
.travis.yml
sudo: false language: ruby cache: bundler rvm: # - 2.0.0 # - 2.1.1 - 2.1.2 gemfile: - chef-client-version.gemfile env: - CHEF_VERSION=master - CHEF_VERSION=12.4.1 - CHEF_VERSION=12.4.0 - CHEF_VERSION=12.3.0 - CHEF_VERSION=12.2.1 - CHEF_VERSION=12.1.2 matrix: # fast_finish: true allow_failures: - env: - CHEF_VERSION=master - CHEF_VERSION=12.4.0 - CHEF_VERSION=12.3.0 - CHEF_VERSION=12.2.1 - CHEF_VERSION=12.1.2 script: - bundle install --jobs=3 --retry=3 - bundle exec rake build - bundle exec rake spec notifications: slack: secure: W2QBW06FQcKP8F6VrVJZjhJDZkz46meV0Zuj/AHcexYbGvB9zWE8Vb/U5h7YW5CS1U2y0hKwl1VgdOmLf+SWDZLFLZ5hYcc44VJqQl5XZlaOw4OCeUvp4aluzTl9n4qRh1DTPrvb37iZbA2uMcLlyhiv1jVS8NnNaqqh9Uy/A5A=
sudo: false language: ruby cache: bundler rvm: # - 2.0.0 # - 2.1.1 - 2.1.2 gemfile: - chef-client-version.gemfile env: - CHEF_VERSION=master - CHEF_VERSION=12.4.1 - CHEF_VERSION=12.3.0 - CHEF_VERSION=12.2.1 - CHEF_VERSION=12.1.2 script: - bundle install --jobs=3 --retry=3 - bundle exec rake build - bundle exec rake spec notifications: slack: secure: W2QBW06FQcKP8F6VrVJZjhJDZkz46meV0Zuj/AHcexYbGvB9zWE8Vb/U5h7YW5CS1U2y0hKwl1VgdOmLf+SWDZLFLZ5hYcc44VJqQl5XZlaOw4OCeUvp4aluzTl9n4qRh1DTPrvb37iZbA2uMcLlyhiv1jVS8NnNaqqh9Uy/A5A=
Remove 12.4.0 as valid target
Remove 12.4.0 as valid target
YAML
apache-2.0
chef/cheffish,chef/cheffish,mikenairn/cheffish,ckaushik/cheffish
422604c767c0a308c8d81bb369f55062e38ba5f3
.travis.yml
.travis.yml
# Filename: travis.yml language: cpp sudo: required dist: trusty compiler: - clang - gcc env: - CMSAT_TAG="4.5.3" GTEST_TAG="release-1.7.0" install: - sudo apt-get update --fix-missing - sudo apt-get install -y lcov libboost-dev libm4ri-dev - pushd third_party/cryptominisat - git checkout $CMSAT_TAG - cmake . - make -j2 - popd - pushd third_party/googletest - git checkout $GTEST_TAG - cmake . - make -j2 - popd script: - make -j2 test - make pytest
# Filename: travis.yml language: cpp sudo: required dist: trusty compiler: - clang - gcc env: - CMSAT_TAG="4.5.3" GTEST_TAG="release-1.8.0" install: - sudo apt-get update --fix-missing - sudo apt-get install -y lcov libboost-dev libm4ri-dev - pushd third_party/cryptominisat - git checkout $CMSAT_TAG - cmake . - make -j2 - popd - pushd third_party/googletest - git checkout $GTEST_TAG - cmake . - make -j2 - popd script: - make -j2 test - make pytest
Update Travis-CI GTEST_TAG to 1.8.0
Update Travis-CI GTEST_TAG to 1.8.0
YAML
apache-2.0
cjdrake/boolexpr,cjdrake/boolexpr
55f839103aca3e5e01975c467fc3615c5226a0ee
.travis.yml
.travis.yml
matrix: include: - os: osx osx_image: xcode8.3 language: generic - os: osx osx_image: xcode8.2 language: generic - os: osx osx_image: xcode8.1 language: generic - os: osx osx_image: xcode8 language: generic - os: osx osx_image: xcode7.3 language: generic script: - brew update - brew install Formula/ocrmypdf.rb
matrix: include: - os: osx osx_image: xcode8.3 language: generic - os: osx osx_image: xcode8.2 language: generic - os: osx osx_image: xcode8 language: generic - os: osx osx_image: xcode7.3 language: generic script: - brew update - brew install Formula/ocrmypdf.rb
Remove xcode8.1 since it fails when the others pass
Remove xcode8.1 since it fails when the others pass
YAML
mit
jbarlow83/homebrew-ocrmypdf
c112ae95f750f5cc0b260af71829090986c71cd7
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - 0.12 before_install: - npm install -g grunt-cli notifications: email: - [email protected]
language: node_js sudo: false node_js: - 4.1 before_install: - npm install -g grunt-cli notifications: email: - [email protected] - [email protected]
Add node v4.1 to Travis, change notification emails
Add node v4.1 to Travis, change notification emails
YAML
mit
nifgraup/browserbox,ltgorm/emailjs-imap-client,whiteout-io/browserbox,emailjs/emailjs-imap-client,emailjs/emailjs-imap-client,ltgorm/emailjs-imap-client
e90793bbb75370f018c5864ff623145d9f45ad67
.travis.yml
.travis.yml
language: ruby rvm: - 2.4.1 - 2.3.4 - 2.2.7 - jruby-9.1.8.0 sudo: false after_success: '[[ "$TRAVIS_JOB_NUMBER" == *.1 ]] && bundle exec codeclimate-test-reporter'
language: ruby rvm: - 2.4.1 - 2.3.4 - 2.2.7 sudo: false after_success: '[[ "$TRAVIS_JOB_NUMBER" == *.1 ]] && bundle exec codeclimate-test-reporter'
Stop building on JRuby until 9.1.11.0 is released
Stop building on JRuby until 9.1.11.0 is released The test suite requires https://github.com/jruby/jruby/pull/4636
YAML
mit
haines/tar,haines/tar
90a7e7e96cbdecff07563dffcddac48309a97f0c
.travis.yml
.travis.yml
language: node_js dist: trusty sudo: false addons: chrome: stable cache: yarn: true directories: - node_modules node_js: - "8.7" stages: - test install: - yarn install script: gulp build jobs: include: - stage: test script: npm run test:coverage after_success: - npm run codecov
language: node_js dist: trusty sudo: false addons: chrome: stable cache: yarn: true directories: - node_modules node_js: - "8.7" stages: - compile - test install: - yarn install jobs: include: - stage: compile script: gulp build - stage: test script: npm run test:coverage after_success: - npm run codecov
Revert "chore: ci: remove "compile" stage"
Revert "chore: ci: remove "compile" stage" This reverts commit 626b4b983c4d4d0407fb6690a9e9d51b76125cb2.
YAML
mit
yyc-git/Wonder.js,yyc-git/Wonder.js,yyc-git/Wonder.js
82655ddc175952a2dbab70b11af7977f369af960
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 - 2.2.2 - jruby-19mode - rbx gemfile: - test/gemfiles/Gemfile.rails-3.2.x - test/gemfiles/Gemfile.rails-4.0.x - test/gemfiles/Gemfile.rails-5.0.x matrix: exclude: - rvm: 1.9.3 gemfile: test/gemfiles/Gemfile.rails-5.0.x - rvm: 2.0.0 gemfile: test/gemfiles/Gemfile.rails-5.0.x - rvm: jruby-19mode gemfile: test/gemfiles/Gemfile.rails-5.0.x
before_install: gem install bundler --no-document rvm: - 1.9.3 - 2.0.0 - 2.2.2 - jruby-19mode - rbx gemfile: - test/gemfiles/Gemfile.rails-3.2.x - test/gemfiles/Gemfile.rails-4.0.x - test/gemfiles/Gemfile.rails-5.0.x matrix: exclude: - rvm: 1.9.3 gemfile: test/gemfiles/Gemfile.rails-5.0.x - rvm: 2.0.0 gemfile: test/gemfiles/Gemfile.rails-5.0.x - rvm: jruby-19mode gemfile: test/gemfiles/Gemfile.rails-5.0.x
Use newest released bundler for CI
Use newest released bundler for CI
YAML
mit
rails/pjax_rails,rails/pjax_rails,rails/pjax_rails
e094db5d771a99e412dd6bc6a568544116757a13
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.1snapshot - 7.2 - 7.2snapshot branches: only: - master - development - /^feature\/.+$/ - /^issue\/.+$/ services: - redis-server before_script: - echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git checkout "$TRAVIS_BRANCH"; else git checkout -b "$TRAVIS_PULL_REQUEST_BRANCH"; fi - git reset --hard "$TRAVIS_COMMIT" - composer self-update - mkdir -p vendor/bin - mkdir -p build/logs - composer install -o --prefer-dist --no-interaction script: - php vendor/bin/phpunit.phar -c build/ after_success: - travis_retry php vendor/bin/coveralls.phar -v --exclude-no-stmt
language: php php: - 7.1 - 7.1snapshot - 7.2 - 7.2snapshot branches: only: - master - development - /^feature\/.+$/ - /^issue\/.+$/ services: - redis-server before_script: - echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini - if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git checkout "$TRAVIS_BRANCH"; else git checkout -b "$TRAVIS_PULL_REQUEST_BRANCH"; fi - git reset --hard "$TRAVIS_COMMIT" - composer self-update - mkdir -p vendor/bin - mkdir -p build/logs - cp config/app.sample.php config/app.php - cp config/servers.sample.php config/servers.php - composer install -o --prefer-dist --no-interaction script: - php vendor/bin/phpunit.phar -c build/ after_success: - travis_retry php vendor/bin/coveralls.phar -v --exclude-no-stmt
Copy missing default configs for CI build
Copy missing default configs for CI build
YAML
mit
hollodotme/redis-status,hollodotme/redis-status,hollodotme/redis-status,hollodotme/redis-status
c209fa93f3ddb566f51d2dafa599b84b2e98ef23
.travis.yml
.travis.yml
language: objective-c before_install: - sudo easy_install cpp-coveralls script: - xctool test -project Source/OCHamcrest.xcodeproj -scheme OCHamcrest -sdk macosx10.9 - xctool test -project Source/OCHamcrest.xcodeproj -scheme libochamcrest -sdk iphonesimulator7.1 after_success: - ./coveralls.rb --exclude-folder Source/Tests
language: objective-c before_install: - sudo easy_install cpp-coveralls script: - xctool test -project Source/OCHamcrest.xcodeproj -scheme OCHamcrest -sdk macosx10.9 - xctool test -project Source/OCHamcrest.xcodeproj -scheme libochamcrest -sdk iphonesimulator7.0 after_success: - ./coveralls.rb --exclude-folder Source/Tests
Drop Travis iOS back down to 7.0
Drop Travis iOS back down to 7.0
YAML
bsd-2-clause
klundberg/OCHamcrest,hamcrest/OCHamcrest,hamcrest/OCHamcrest,klundberg/OCHamcrest,hamcrest/OCHamcrest
b2c664abe72bf2aa0e8ab1b66593fce9915387ce
.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 - bundle exec rspec spec
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 rspec spec
Remove Rake test from Travis CI config
Remove Rake test from Travis CI config
YAML
mit
DigitalCurationCentre/roadmap,CDLUC3/dmptool,DigitalCurationCentre/roadmap,DigitalCurationCentre/roadmap,CDLUC3/dmptool,DMPRoadmap/roadmap,CDLUC3/roadmap,DMPRoadmap/roadmap,DMPRoadmap/roadmap,CDLUC3/roadmap,CDLUC3/dmptool,CDLUC3/dmptool,CDLUC3/roadmap,CDLUC3/roadmap
6689236fb0bdc9430489d3882ae78a4ce528762e
.travis.yml
.travis.yml
language: cpp compiler: - clang - gcc before_install: # nomlib dependencies (SDL) - sudo apt-get install libsdl1.2-dev libsdl1.2debian libsdl-image1.2-dev libsdl-image1.2 libsdl-ttf2.0-dev libsdl-ttf2.0-0 # nomlib dependencies (Audio) - sudo apt-get install libsndfile1-dev libopenal-dev before_script: - mkdir -p build build-osx && cd build && cmake .. script: - make -j4 - sudo make install - sudo make uninstall - make clean - cd ../build-osx - cmake -DBUILD_FRAMEWORKS=on .. - make -j4 - sudo make install - sudo make uninstall - make clean # whitelist branches: only: - dev - master
language: cpp compiler: - clang - gcc before_install: # nomlib dependencies (SDL) - sudo apt-get install libsdl1.2-dev libsdl1.2debian libsdl-image1.2-dev libsdl-image1.2 libsdl-ttf2.0-dev libsdl-ttf2.0-0 # nomlib dependencies (Audio) - sudo apt-get install libsndfile1-dev libopenal-dev before_script: - mkdir -p build build-osx && cd build && cmake .. script: - make -j4 - sudo make install - sudo make uninstall - make clean #- cd ../build-osx #- cmake -DBUILD_FRAMEWORKS=on .. #- make -j4 #- sudo make install #- sudo make uninstall #- make clean # whitelist branches: only: - dev - master
Disable build script test of OSX Framework (I didn't expect it to work!)
Disable build script test of OSX Framework (I didn't expect it to work!)
YAML
bsd-2-clause
i8degrees/nomlib,i8degrees/nomlib,i8degrees/nomlib,i8degrees/nomlib
5b7043e4fddaea316665738e5599e50cc41a68ac
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10"
language: node_js node_js: - iojs - "0.12" - "0.10"
Add node 0.12 and iojs
Add node 0.12 and iojs
YAML
mit
silas/node-jenkins,durai145/node-jenkins,theverything/then-jenkins,greyhwndz/node-jenkins
23849b524ed76ed53c7dc40ec69e7d13b826e046
.travis.yml
.travis.yml
language: ruby sudo: false cache: bundler before_install: - gem update bundler rvm: - 2.2.10 - 2.3.8 - 2.4.5 - 2.5.3 - 2.6.5 - 2.7.0 - ruby-head matrix: allow_failures: - rvm: ruby-head fast_finish: true notifications: recipients: - [email protected] slack: sinatrarb:LQGhUfGYcqRgRzwKea0bqUhY
language: ruby sudo: false cache: bundler before_install: - gem update bundler rvm: - 2.2.10 - 2.3.8 - 2.4.10 - 2.5.9 - 2.6.7 - 2.7.3 - "3.0" - ruby-head - jruby-9.2.17.0 matrix: allow_failures: - rvm: ruby-head fast_finish: true notifications: recipients: - [email protected] slack: sinatrarb:LQGhUfGYcqRgRzwKea0bqUhY
Update patch versions of Ruby in the matrix
CI: Update patch versions of Ruby in the matrix
YAML
mit
sinatra/mustermann
3e9d13f18b9a23de7229220608fb0f82f4890220
.travis.yml
.travis.yml
language: rust sudo: false cache: cargo rust: - nightly - beta - 1.12.0 script: - cargo clean - (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --manifest-path phf_macros/Cargo.toml --features unicase_support) - (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --manifest-path phf_macros/Cargo.toml) - (test $TRAVIS_RUST_VERSION != "nightly" || cargo bench --manifest-path phf_macros/Cargo.toml) - (test $TRAVIS_RUST_VERSION != "nightly" || cargo build --manifest-path phf/Cargo.toml --features core) - cargo test --manifest-path phf_codegen/Cargo.toml - cargo test --manifest-path phf_codegen/test/Cargo.toml
language: rust sudo: false cache: cargo rust: - nightly - beta - 1.12.0 script: - cargo clean - (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --manifest-path phf_macros/Cargo.toml --features unicase_support) - cargo clean # otherwise compiletest complains about multiple matching crates - (test $TRAVIS_RUST_VERSION != "nightly" || cargo test --manifest-path phf_macros/Cargo.toml) - (test $TRAVIS_RUST_VERSION != "nightly" || cargo bench --manifest-path phf_macros/Cargo.toml) - (test $TRAVIS_RUST_VERSION != "nightly" || cargo build --manifest-path phf/Cargo.toml --features core) - cargo test --manifest-path phf_codegen/Cargo.toml - cargo test --manifest-path phf_codegen/test/Cargo.toml
Fix compiletests by cleaning up build files beforehand
Fix compiletests by cleaning up build files beforehand
YAML
mit
Bobo1239/rust-phf,Bobo1239/rust-phf
0066a1df5670a58299e08f44cb172f86fcef5565
.travis.yml
.travis.yml
sudo: false language: generic # install recent GCC addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-6 - g++-6 # run on linux and mac os: - linux - osx # different builds env: - VTK=5 PYTHON=2 - VTK=6 PYTHON=2 - VTK=7 PYTHON=2 # - VTK=7 PYTHON=3 before_install: - if [ ${TRAVIS_OS_NAME} == "osx" ]; then brew update; brew outdated gcc || brew upgrade gcc; fi - scripts/install_conda.sh -e atoman -p $PYTHON -V $VTK -d $HOME/miniconda - export PATH=$HOME/miniconda/bin:$PATH - source activate atoman - export CC=gcc - export CXX=g++ install: - echo $CC - echo $CXX - $CC --version - $CXX --version - python --version - cp setup.cfg.example setup.cfg - if [ ${TRAVIS_OS_NAME} == "linux" ]; then sed -i 's/#exclude = slowtests/exclude = slowtests/' setup.cfg; fi - python setup.py --version - python setup.py build_clib - python setup.py build_ext --inplace - python setup.py build_sphinx script: - python setup.py test
sudo: false language: generic # install recent GCC addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-6 - g++-6 # run on linux and mac os: - linux - osx # different builds env: - VTK=5 PYTHON=2 - VTK=6 PYTHON=2 - VTK=7 PYTHON=2 # - VTK=7 PYTHON=3 before_install: - if [ ${TRAVIS_OS_NAME} == "osx" ]; then brew update; brew outdated gcc || brew upgrade gcc; fi - scripts/install_conda.sh -e atoman -p $PYTHON -V $VTK -d $HOME/miniconda - export PATH=$HOME/miniconda/bin:$PATH - source activate atoman - export CC=gcc - export CXX=g++ install: - echo $CC - echo $CXX - $CC --version - $CXX --version - python --version - cp setup.cfg.example setup.cfg - if [ ${TRAVIS_OS_NAME} == "linux" ]; then sed -i 's/#exclude = slowtests/exclude = slowtests/' setup.cfg; fi - if [ ${TRAVIS_OS_NAME} == "osx" ]; then sed -i '' 's/#exclude = slowtests/exclude = slowtests/' setup.cfg; fi - python setup.py --version - python setup.py build_clib - python setup.py build_ext --inplace - python setup.py build_sphinx script: - python setup.py test
Disable slow tests on osx too
Disable slow tests on osx too
YAML
mit
chrisdjscott/Atoman,chrisdjscott/Atoman,chrisdjscott/Atoman,chrisdjscott/Atoman,chrisdjscott/Atoman
00560938f36ffc64c80e69103ae7a2d42d094059
.travis.yml
.travis.yml
--- language: ruby bundler_args: --without development rvm: - 1.9.2 - 1.9.3 - jruby-19mode - jruby-head - ruby-head - rbx-19mode notifications: email: - [email protected]
--- language: ruby bundler_args: --without development rvm: - 1.9.3 - 2.0.0 notifications: email: - [email protected]
Test on 2.0 and drop test support for other rubies
Test on 2.0 and drop test support for other rubies
YAML
mit
jcmuller/figleaf,challengepost/figleaf
939502a83ffd804c0abcb70873ae255f67ee877f
.travis.yml
.travis.yml
sudo: false language: pythons python: - "2.7" cache: apt addons: apt: packages: - libatlas-dev - libatlas-base-dev - liblapack-dev - gfortran before_install: - wget http://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 numpy scipy - pip install -r requirements.txt script: - python setup.py test
sudo: false language: pythons python: - "2.7" cache: apt addons: apt: packages: - libatlas-dev - libatlas-base-dev - liblapack-dev - gfortran before_install: - wget http://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 numpy scipy - pip install -r requirements.txt script: - python setup.py test
Revert "conda install numpy/scipy without confirmation"
Revert "conda install numpy/scipy without confirmation" This reverts commit ada068fdb999d24c79d296a93ebb245d1edd860f.
YAML
apache-2.0
DigitalSlideArchive/HistomicsTK,DigitalSlideArchive/HistomicsTK
bc28b0c74f435a2c9e3a724d552f32845cfb9c70
.travis.yml
.travis.yml
language: python cache: pip python: - "2.7" - "3.4" - "3.5" sudo: false env: - DJANGO=1.10 - DJANGO=1.11 - DJANGO=2.0 - DJANGO=master matrix: fast_finish: true include: - { python: "3.6", env: DJANGO=master } - { python: "3.6", env: DJANGO=1.11 } - { python: "3.6", env: DJANGO=2.0 } - { python: "2.7", env: TOXENV=lint } - { python: "2.7", env: TOXENV=docs } exclude: - { python: "2.7", env: DJANGO=master } - { python: "2.7", env: DJANGO=2.0 } - { python: "3.4", env: DJANGO=master } allow_failures: - env: DJANGO=master - env: DJANGO=2.0 install: - pip install tox tox-travis script: - tox after_success: - pip install codecov - codecov -e TOXENV,DJANGO notifications: email: false
language: python cache: pip python: - "2.7" - "3.4" - "3.5" sudo: false env: - DJANGO=1.10 - DJANGO=1.11 - DJANGO=2.0 - DJANGO=master matrix: fast_finish: true include: - { python: "3.6", env: DJANGO=master } - { python: "3.6", env: DJANGO=1.11 } - { python: "3.6", env: DJANGO=2.0 } - { python: "2.7", env: TOXENV=lint } - { python: "2.7", env: TOXENV=docs } exclude: - { python: "2.7", env: DJANGO=master } - { python: "2.7", env: DJANGO=2.0 } - { python: "3.4", env: DJANGO=master } allow_failures: - env: DJANGO=master install: - pip install tox tox-travis script: - tox after_success: - pip install codecov - codecov -e TOXENV,DJANGO notifications: email: false
Remove django 2.0 from allowable failures in CI
Remove django 2.0 from allowable failures in CI
YAML
bsd-2-clause
tomchristie/django-rest-framework,kgeorgy/django-rest-framework,tomchristie/django-rest-framework,jpadilla/django-rest-framework,jpadilla/django-rest-framework,tomchristie/django-rest-framework,jpadilla/django-rest-framework,kgeorgy/django-rest-framework,kgeorgy/django-rest-framework
52b54701f936614e9d2d3fe2db92853a2b2bebc8
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 env: - SYMFONY_VERSION="~2.3" # Test against previous minor releases of Symfony 2.x to ensure that we # actually support the versions we specify in our requirements. - SYMFONY_VERSION="2.3.*" before_script: # Use --prefer-source to download dependencies via git and avoid GitHub API # rate limits resulting in 502 HTTP responses, build errors and # Composer\Downloader\TransportException. # https://github.com/symfony/symfony/issues/4687 - composer install --dev --no-interaction --prefer-source # Update the Symfony version to test against. - composer require symfony/options-resolver:${SYMFONY_VERSION} script: - mkdir -p build/logs - php vendor/bin/phpunit -c phpunit.xml.dist
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 env: - SYMFONY_VERSION="~2.3" # Test against previous minor releases of Symfony 2.x to ensure that we # actually support the versions we specify in our requirements. - SYMFONY_VERSION="2.3.*" before_script: # Use --prefer-source to download dependencies via git and avoid GitHub API # rate limits resulting in 502 HTTP responses, build errors and # Composer\Downloader\TransportException. # https://github.com/symfony/symfony/issues/4687 - composer install --dev --no-interaction --prefer-source # Update the Symfony version to test against. - composer require symfony/options-resolver:${SYMFONY_VERSION} script: - mkdir -p build/logs - php vendor/bin/phpunit -c phpunit.xml.dist
Include PHP 5.6 in Travis tests.
Include PHP 5.6 in Travis tests.
YAML
mit
ivol84/wsdl2phpgenerator,jongotlin/wsdl2phpgenerator,Razoxane/wsdl2phpgenerator,sha1/wsdl2phpgenerator,Intera/wsdl2phpgenerator,kasperg/wsdl2phpgenerator,red-led/wsdl2phpgenerator,parabolicinteractive/wsdl2phpgenerator,yethee/wsdl2phpgenerator,wsdl2phpgenerator/wsdl2phpgenerator
84829640afc478d1717418895b8872e2a6ee4e25
.travis.yml
.travis.yml
language: go go: - 1.4 install: - go get -u github.com/c-fs/Jerasure - go get -u github.com/BurntSushi/toml - go get -u github.com/qiniu/log - go get -u github.com/spf13/cobra - go get -u golang.org/x/net/context - go get -u github.com/codahale/metrics - go get -u google.golang.org/grpc - curl -o cadvisor-0.16.0.1.zip https://codeload.github.com/google/cadvisor/zip/0.16.0.1 - unzip cadvisor-0.16.0.1.zip >/dev/null - mkdir -p "$GOPATH/src/github.com/google" - mv cadvisor-0.16.0.1 "$GOPATH/src/github.com/google/cadvisor" - export GOPATH="$GOPATH:$GOPATH/src/github.com/google/cadvisor/Godeps/_workspace" script: - make test
language: go go: - 1.4 install: - go get -u github.com/c-fs/Jerasure - go get -u github.com/BurntSushi/toml - go get -u github.com/qiniu/log - go get -u github.com/spf13/cobra - go get -u golang.org/x/net/context - go get -u github.com/codahale/metrics - go get -u github.com/influxdb/influxdb/client - go get -u google.golang.org/grpc - curl -o cadvisor-0.16.0.1.zip https://codeload.github.com/google/cadvisor/zip/0.16.0.1 - unzip cadvisor-0.16.0.1.zip >/dev/null - mkdir -p "$GOPATH/src/github.com/google" - mv cadvisor-0.16.0.1 "$GOPATH/src/github.com/google/cadvisor" - export GOPATH="$GOPATH:$GOPATH/src/github.com/google/cadvisor/Godeps/_workspace" script: - make test
Add go get github.com/influxdb/influxdb/client for ci.
Add go get github.com/influxdb/influxdb/client for ci.
YAML
apache-2.0
c-fs/cfs,wangtuanjie/cfs,c-fs/cfs,wangtuanjie/cfs
ca01f8bfdbcf4f818ff63b5b633a8b23ba6399cf
.travis.yml
.travis.yml
dist: trusty sudo: false language: python python: - "2.7" - "3.6" - "3.7" - "3.8" # command to install dependencies install: - pip install -r dev-requirements.txt # command to run tests script: - pytest --cache-clear
language: python python: - "2.7" - "3.6" - "3.7" - "3.8" # command to install dependencies install: - pip install -r dev-requirements.txt # command to run tests script: - pytest --cache-clear
Remove explicit dist from Travis-CI config.
Remove explicit dist from Travis-CI config.
YAML
apache-2.0
pyocd/pyOCD,pyocd/pyOCD,flit/pyOCD,mbedmicro/pyOCD,mesheven/pyOCD,mesheven/pyOCD,mbedmicro/pyOCD,mbedmicro/pyOCD,flit/pyOCD,mesheven/pyOCD
0b3854b128f950ffe91135181f0d0527458ad65c
.travis.yml
.travis.yml
language: node_js node_js: - '0.10' after_success: - gulp coverage deploy: provider: npm email: [email protected] api_key: secure: kbd9PFMuS1XlXTrPaowlSPgLlLMq9B+WMVLhvi3cK+0TrpKwRv1UDqj+hz6EAXd0b/2zV452mJZ20lEf9Z2m5xdhWVLYxY0qJdKSFFNBB9qF5HlUbwOhu3A44k03YUMqYKXj4Z5P7I/i+qS5sSLdoJLpeP5xwsm68ZOOWDkDdUE= on: tags: true repo: Brightspace/images-to-variables all_branches: true
language: node_js node_js: - '0.12' after_success: - gulp coverage deploy: provider: npm email: [email protected] api_key: secure: KlXxulHXjKi/dBk5mST82IXgrso3ONd1vMcQ5ax61aXhgML/iO4vuouRX66b1btWHkqK01lPPVrUgHLTe7IIfbNyzbMTxvhQ44sI9AACJPahjGq4q5Kn84X3W9+b3Zr/PZLR/xHdjDOkF4IuOrGAXQ25zCM6SxYiUHUv0ytJTGs= on: tags: true repo: Brightspace/images-to-variables all_branches: true
Update API key for publishing to NPM.
Update API key for publishing to NPM.
YAML
apache-2.0
Brightspace/images-to-variables
081f0753b3abe92320fb61bd9f6d52de043c7c51
.travis.yml
.travis.yml
language: node_js node_js: - "node" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 cache: directories: - node_modules before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start before_install: - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" script: - npm run integration-test
language: node_js node_js: - "node" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 - oracle-java8-set-default cache: directories: - node_modules before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 # give xvfb some time to start before_install: - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" script: - npm run integration-test
Configure Travis to install Java. Fix for selenium not starting
Configure Travis to install Java. Fix for selenium not starting
YAML
mit
hadynz/pact-testing-example,hadynz/pact-testing-example
b674b5b02549ee9071aa15860450e8e555fddfed
.travis.yml
.travis.yml
language: node_js cache: yarn node_js: - node - "10" - "8" - "6" git: depth: 5 install: - yarn install --ignore-engines
language: node_js cache: yarn node_js: - node - "12" - "10" - "8" - "6" git: depth: 5 install: - yarn install --ignore-engines
Add Node.js 13 to CI
Add Node.js 13 to CI
YAML
mit
bezoerb/postcss,jonathantneal/postcss,postcss/postcss,postcss/postcss,Semigradsky/postcss
ee1cf0157a78543692104b447222361cf9106071
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" cache: directories: - $HOME/.cache/pip - $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages - $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin install: - env - ls -al $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages - ls -al $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin - pip install -r requirements/test.txt - pip install coveralls - ls -al $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages - ls -al $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin - python setup.py bdist_egg # command to run tests script: nosetests after_script: - coveralls
sudo: false language: python python: - "2.7" - "3.5" cache: directories: - $HOME/.cache/pip - $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages - $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin install: - env - ls -al $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages - ls -al $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin - pip install -r requirements/test.txt - pip install coveralls - ls -al $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/lib/python$TRAVIS_PYTHON_VERSION/site-packages - ls -al $HOME/virtualenv/python$TRAVIS_PYTHON_VERSION/bin - python setup.py bdist_egg # command to run tests script: nosetests after_script: - coveralls
Add support for Python 3.5.
Add support for Python 3.5. Possibly not complete.
YAML
apache-2.0
dls-controls/pymalcolm,dls-controls/pymalcolm,dls-controls/pymalcolm
fc66b629ef16f2ca1b4f2804f06b1df0613875fc
.travis.yml
.travis.yml
language: cpp compiler: - clang branches: except: - gh-pages before_install: - sudo apt-get update -qq - sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev install: make gtest-bootstrap # libssl is not multiarch so we are building 64bit # and then installing the 32bit version script: make ENABLE64BIT=Yes && make test && make clean && make ENABLE64BIT=Yes BUILDTYPE=Release && make test && sudo apt-get install -qq libssl-dev:i386 && make clean && make && make test && make BUILDTYPE=Release clean && make BUILDTYPE=Release && make test
language: cpp compiler: - clang branches: except: - gh-pages before_install: - sudo apt-get update -qq - sudo apt-get install -qq nasm g++-4.6-multilib gcc-multilib libc6-dev-i386 lib32z1-dev install: make gtest-bootstrap # libssl is not multiarch so we are building 64bit # and then installing the 32bit version script: make -B ENABLE64BIT=Yes && make test && make -B ENABLE64BIT=Yes BUILDTYPE=Release && make test && sudo apt-get install -qq libssl-dev:i386 && make -B && make test && make -B BUILDTYPE=Release && make test
Use -B option instead of make clean.
Travis: Use -B option instead of make clean.
YAML
bsd-2-clause
ethanhugg/openh264,hj3938/losslessh264,wzup/openh264,PeterXu/openh264,subailong/losslessh264,zhimeihetx/openh264,krsjoseph/losslessh264,aquar25/losslessh264,Ghimtim/losslessh264,GuangweiWang/openh264,treble37/losslessh264,nfedera/cisco-openh264,shyamalschandra/openh264,bowlofstew/losslessh264,zyhh/losslessh264,danielrh/losslessh264,ganyangbbl/openh264,rzhangma/openh264,hj3938/losslessh264,joncampbell123/losslessh264,TonySheh/losslessh264,krsjoseph/losslessh264,huili2/openh264,BelledonneCommunications/openh264,mstorsjo/openh264,ondev/openh264,common2015/losslessh264,erillfire/wusunyasuo,froggatt/losslessh264,huili2/openh264,hanchl/losslessh264,yskeem/openh264,hznoob/openh264,WuYaoWang/losslessh264,itplanes/losslessh264,ganyangbbl/openh264,lioonline/losslessh264,ondev/openh264,huili2/openh264,hanchl/losslessh264,shihuade/openh264,jlhbaseball15/losslessh264,xkfz007/openh264,xiangshuai/losslessh264,itplanes/losslessh264,sijchen/openh264,hanchl/losslessh264,joncampbell123/losslessh264,hanchl/losslessh264,lucas-ez/openh264,yurenyong123/losslessh264,cisco/openh264,noname007/losslessh264,hcxyzlm/losslessh264,HaiboZhu/openh264,nfedera/cisco-openh264,aquar25/losslessh264,8v060htwyc/openh264,LaurenLuoYun/losslessh264,xkfz007/openh264,mcanthony/openh264,rzhangma/openh264,abhishekgahlot/losslessh264,shihuade/openh264,GuangweiWang/openh264,LaurenLuoYun/losslessh264,yurenyong123/losslessh264,HaiboZhu/openh264,jlhbaseball15/losslessh264,ethanhugg/openh264,hcxyzlm/losslessh264,hznoob/openh264,lioonline/losslessh264,hgl888/losslessh264,BelledonneCommunications/openh264,noname007/losslessh264,yskeem/openh264,nathankidd/openh264,hcxyzlm/losslessh264,mcanthony/openh264,8v060htwyc/openh264,abhishekgahlot/losslessh264,kevinzhang1986/losslessh264,ruil2/openh264,yurenyong123/losslessh264,sunfei/losslessh264,bowlofstew/losslessh264,maxming2333/losslessh264,xiangshuai/losslessh264,cisco/openh264,heavenlw/losslessh264,mstorsjo/openh264,xiangshuai/losslessh264,heavenlw/losslessh264,froggatt/losslessh264,ruil2/openh264,bowlofstew/losslessh264,maxming2333/losslessh264,jpxiong/openh264,lucas-ez/openh264,cisco/openh264,jasonzhong/losslessh264,common2015/losslessh264,krsjoseph/losslessh264,bitwing/losslessh264,nfedera/cisco-openh264,ganyangbbl/openh264,nfedera/cisco-openh264,wzup/openh264,hznoob/openh264,alihalabyah/losslessh264,common2015/losslessh264,PeterXu/openh264,sunfei/losslessh264,TonySheh/losslessh264,eastlhu/losslessh264,alihalabyah/losslessh264,jasonzhong/losslessh264,HaiboZhu/openh264,lucas-ez/openh264,erillfire/wusunyasuo,common2015/losslessh264,ruil2/openh264,lioonline/losslessh264,wzup/openh264,WuYaoWang/losslessh264,dahebolangkuan/losslessh264,zhimeihetx/openh264,hcxyzlm/losslessh264,maxming2333/losslessh264,noname007/losslessh264,ethanhugg/openh264,rzhangma/openh264,xkfz007/openh264,subailong/losslessh264,rzhangma/openh264,aquar25/losslessh264,jlhbaseball15/losslessh264,PeterBLITZ/losslessh264,jasonzhong/losslessh264,bitwing/losslessh264,jlhbaseball15/losslessh264,noname007/losslessh264,zhimeihetx/openh264,ganyangbbl/openh264,HaiboZhu/openh264,LaurenLuoYun/losslessh264,cisco/openh264,hioop/losslessh264,noname007/losslessh264,sunfei/losslessh264,ondev/openh264,bowlofstew/losslessh264,hznoob/openh264,eastlhu/losslessh264,jlhbaseball15/losslessh264,xiangshuai/losslessh264,heavenlw/losslessh264,krsjoseph/losslessh264,hcxyzlm/losslessh264,PeterXu/openh264,treble37/losslessh264,rammybt/openh264,kevinzhang1986/losslessh264,lioonline/losslessh264,Ghimtim/losslessh264,fstd/openh264,common2015/losslessh264,mazalet/losslessh264,shihuade/openh264,hj3938/losslessh264,BelledonneCommunications/openh264,SunGuo/losslessh264,jasonzhong/losslessh264,PeterBLITZ/losslessh264,krsjoseph/losslessh264,zyhh/losslessh264,heavenlw/losslessh264,abhishekgahlot/losslessh264,GuangweiWang/openh264,mazalet/losslessh264,heavenlw/losslessh264,abhishekgahlot/losslessh264,danielrh/losslessh264,krsjoseph/losslessh264,dahebolangkuan/losslessh264,jpxiong/openh264,rammybt/openh264,froggatt/losslessh264,dahebolangkuan/losslessh264,bitwing/losslessh264,hioop/losslessh264,joncampbell123/losslessh264,rammybt/openh264,bitwing/losslessh264,zyhh/losslessh264,mcanthony/openh264,jpxiong/openh264,SunGuo/losslessh264,shyamalschandra/openh264,ondev/openh264,erillfire/wusunyasuo,huili2/openh264,yskeem/openh264,erillfire/wusunyasuo,WuYaoWang/losslessh264,yskeem/openh264,fstd/openh264,legendtkl/losslessh264,PeterBLITZ/losslessh264,noname007/losslessh264,huili2/openh264,bitwing/losslessh264,aquar25/losslessh264,subailong/losslessh264,treble37/losslessh264,subailong/losslessh264,GuangweiWang/openh264,zhimeihetx/openh264,8v060htwyc/openh264,shyamalschandra/openh264,Ghimtim/losslessh264,ethanhugg/openh264,jasonzhong/losslessh264,LaurenLuoYun/losslessh264,froggatt/losslessh264,sunfei/losslessh264,sijchen/openh264,GuangweiWang/openh264,mcanthony/openh264,PeterBLITZ/losslessh264,hioop/losslessh264,treble37/losslessh264,hznoob/openh264,legendtkl/losslessh264,cisco/openh264,hioop/losslessh264,itplanes/losslessh264,SunGuo/losslessh264,jasonzhong/losslessh264,WuYaoWang/losslessh264,sijchen/openh264,lucas-ez/openh264,heavenlw/losslessh264,hanchl/losslessh264,bitwing/losslessh264,shihuade/openh264,HaiboZhu/openh264,PeterBLITZ/losslessh264,hioop/losslessh264,SunGuo/losslessh264,lucas-ez/openh264,abhishekgahlot/losslessh264,mstorsjo/openh264,rammybt/openh264,dahebolangkuan/losslessh264,rzhangma/openh264,treble37/losslessh264,legendtkl/losslessh264,hj3938/losslessh264,kevinzhang1986/losslessh264,ruil2/openh264,mazalet/losslessh264,LaurenLuoYun/losslessh264,BelledonneCommunications/openh264,bitwing/losslessh264,BelledonneCommunications/openh264,joncampbell123/losslessh264,TonySheh/losslessh264,alihalabyah/losslessh264,lioonline/losslessh264,hgl888/losslessh264,shihuade/openh264,GuangweiWang/openh264,xkfz007/openh264,PeterXu/openh264,fstd/openh264,TonySheh/losslessh264,jpxiong/openh264,mstorsjo/openh264,jpxiong/openh264,danielrh/losslessh264,mazalet/losslessh264,maxming2333/losslessh264,bowlofstew/losslessh264,kevinzhang1986/losslessh264,8v060htwyc/openh264,nathankidd/openh264,eastlhu/losslessh264,rzhangma/openh264,ethanhugg/openh264,PeterXu/openh264,xiangshuai/losslessh264,alihalabyah/losslessh264,xkfz007/openh264,aquar25/losslessh264,HaiboZhu/openh264,jlhbaseball15/losslessh264,8v060htwyc/openh264,erillfire/wusunyasuo,froggatt/losslessh264,ruil2/openh264,ondev/openh264,lioonline/losslessh264,zyhh/losslessh264,LaurenLuoYun/losslessh264,kevinzhang1986/losslessh264,shihuade/openh264,eastlhu/losslessh264,legendtkl/losslessh264,subailong/losslessh264,itplanes/losslessh264,dahebolangkuan/losslessh264,GuangweiWang/openh264,hgl888/losslessh264,zyhh/losslessh264,abhishekgahlot/losslessh264,ganyangbbl/openh264,rammybt/openh264,kevinzhang1986/losslessh264,nfedera/cisco-openh264,alihalabyah/losslessh264,hioop/losslessh264,zhimeihetx/openh264,ruil2/openh264,wzup/openh264,shihuade/openh264,TonySheh/losslessh264,yurenyong123/losslessh264,sijchen/openh264,SunGuo/losslessh264,fstd/openh264,hznoob/openh264,8v060htwyc/openh264,itplanes/losslessh264,ethanhugg/openh264,sijchen/openh264,danielrh/losslessh264,TonySheh/losslessh264,nathankidd/openh264,yskeem/openh264,8v060htwyc/openh264,heavenlw/losslessh264,SunGuo/losslessh264,jasonzhong/losslessh264,bowlofstew/losslessh264,froggatt/losslessh264,legendtkl/losslessh264,legendtkl/losslessh264,yskeem/openh264,mstorsjo/openh264,subailong/losslessh264,sijchen/openh264,hgl888/losslessh264,hanchl/losslessh264,shyamalschandra/openh264,rammybt/openh264,mazalet/losslessh264,lucas-ez/openh264,hgl888/losslessh264,LaurenLuoYun/losslessh264,joncampbell123/losslessh264,eastlhu/losslessh264,BelledonneCommunications/openh264,sunfei/losslessh264,dahebolangkuan/losslessh264,huili2/openh264,eastlhu/losslessh264,shyamalschandra/openh264,aquar25/losslessh264,joncampbell123/losslessh264,abhishekgahlot/losslessh264,noname007/losslessh264,yurenyong123/losslessh264,lucas-ez/openh264,erillfire/wusunyasuo,kevinzhang1986/losslessh264,ganyangbbl/openh264,PeterXu/openh264,fstd/openh264,krsjoseph/losslessh264,subailong/losslessh264,erillfire/wusunyasuo,zyhh/losslessh264,sijchen/openh264,PeterBLITZ/losslessh264,yurenyong123/losslessh264,maxming2333/losslessh264,bowlofstew/losslessh264,mcanthony/openh264,danielrh/losslessh264,sunfei/losslessh264,hj3938/losslessh264,yurenyong123/losslessh264,SunGuo/losslessh264,rzhangma/openh264,xiangshuai/losslessh264,wzup/openh264,eastlhu/losslessh264,huili2/openh264,WuYaoWang/losslessh264,treble37/losslessh264,legendtkl/losslessh264,danielrh/losslessh264,dahebolangkuan/losslessh264,shyamalschandra/openh264,common2015/losslessh264,shyamalschandra/openh264,jlhbaseball15/losslessh264,zhimeihetx/openh264,jpxiong/openh264,hznoob/openh264,nathankidd/openh264,HaiboZhu/openh264,mstorsjo/openh264,itplanes/losslessh264,zhimeihetx/openh264,xkfz007/openh264,alihalabyah/losslessh264,ondev/openh264,lioonline/losslessh264,yskeem/openh264,zyhh/losslessh264,PeterBLITZ/losslessh264,hanchl/losslessh264,joncampbell123/losslessh264,mazalet/losslessh264,wzup/openh264,rammybt/openh264,hcxyzlm/losslessh264,hj3938/losslessh264,xkfz007/openh264,maxming2333/losslessh264,alihalabyah/losslessh264,ganyangbbl/openh264,WuYaoWang/losslessh264,fstd/openh264,fstd/openh264,froggatt/losslessh264,Ghimtim/losslessh264,mazalet/losslessh264,TonySheh/losslessh264,PeterXu/openh264,mcanthony/openh264,hgl888/losslessh264,Ghimtim/losslessh264,hj3938/losslessh264,wzup/openh264,hioop/losslessh264,common2015/losslessh264,danielrh/losslessh264,jpxiong/openh264,WuYaoWang/losslessh264,sunfei/losslessh264,nathankidd/openh264,hcxyzlm/losslessh264,mcanthony/openh264,hgl888/losslessh264,Ghimtim/losslessh264,aquar25/losslessh264,itplanes/losslessh264,nfedera/cisco-openh264,ruil2/openh264,ondev/openh264,nathankidd/openh264,mstorsjo/openh264,cisco/openh264,nfedera/cisco-openh264,BelledonneCommunications/openh264,treble37/losslessh264,maxming2333/losslessh264,nathankidd/openh264,xiangshuai/losslessh264,Ghimtim/losslessh264,ethanhugg/openh264,cisco/openh264
57576e4d5acaa65872b73e1f95c707e83e14e65e
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 env: - SYMFONY="2.3.*" services: - elasticsearch install: - composer require --no-update symfony/symfony:${SYMFONY} before_install: # SQL settings - sudo chmod 0644 /etc/mysql/my.cnf - sudo sed "/skip-external-locking/a log-bin=mysql-bin\nbinlog_format = ROW\ndatadir = /var/lib/mysql" -i /etc/mysql/my.cnf - sudo cat /etc/mysql/my.cnf - sudo usermod -g travis mysql - sudo chmod -R 0777 /var/lib/mysql - sudo service mysql restart before_script: - composer self-update - echo "USE mysql;\nUPDATE user SET password=PASSWORD('root') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root - composer update --prefer-dist script: - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover - vendor/bin/phpcs -p --standard=$TRAVIS_BUILD_DIR/vendor/ongr/ongr-strict-standard/ONGR --ignore=vendor/,Tests/app/,Resources/public/ ./ after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover cache: directories: - vendor/ - $HOME/.composer/cache
language: php php: - 5.4 - 5.5 - 5.6 env: - SYMFONY="2.3.*" services: - elasticsearch install: - composer require --no-update symfony/symfony:${SYMFONY} before_install: # SQL settings - sudo chmod 0644 /etc/mysql/my.cnf - sudo sed "/skip-external-locking/a log-bin=mysql-bin\nbinlog_format = ROW\ndatadir = /var/lib/mysql" -i /etc/mysql/my.cnf - sudo cat /etc/mysql/my.cnf - sudo usermod -g travis mysql - sudo chmod -R 0777 /var/lib/mysql - sudo service mysql restart before_script: - composer self-update - echo "USE mysql;\nUPDATE user SET password=PASSWORD('root') WHERE user='root';\nFLUSH PRIVILEGES;\n" | mysql -u root - composer update --prefer-source script: - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover - vendor/bin/phpcs -p --standard=$TRAVIS_BUILD_DIR/vendor/ongr/ongr-strict-standard/ONGR --ignore=vendor/,Tests/app/,Resources/public/ ./ after_script: - wget https://scrutinizer-ci.com/ocular.phar - php ocular.phar code-coverage:upload --format=php-clover coverage.clover cache: directories: - vendor/ - $HOME/.composer/cache
Change prefer dist to prefer source
Change prefer dist to prefer source
YAML
mit
ongr-io/ConnectionsBundle,asev/ConnectionsBundle,GrandLTU/ConnectionsBundle
f631a6e0bb6c8575e2ccc81a2c683840b0656ad5
.travis.yml
.travis.yml
language: python python: - 3.2 - 3.3 before_install: pip install --use-mirrors nose unittest2 pymongo install: - python setup.py install script: nosetests services: - mongodb
language: python python: - 3.2 - 3.3 before_install: pip install --use-mirrors nose pymongo install: - python setup.py install script: nosetests services: - mongodb
Remove unittest2 dependency for tests
Remove unittest2 dependency for tests
YAML
bsd-3-clause
aquavitae/mongokit-py3
5797e43f5d3c97747bbee671320d80dcd3e44b0b
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 1.9.3 - rbx-19mode - jruby-19mode env: - DB=mysql - DB=postgres gemfile: - Gemfile - ci/gemfiles/rspec2_14_rails4_0.gemfile - ci/gemfiles/rspec2_14_rails3_2.gemfile before_script: - ci/script/create_db.sh - bundle exec rake db:test:reset --trace script: bundle exec rspec -b
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3 - rbx-19mode - jruby-19mode env: - DB=mysql - DB=postgres gemfile: - Gemfile - ci/gemfiles/rspec2_14_rails4_0.gemfile - ci/gemfiles/rspec2_14_rails3_2.gemfile before_script: - ci/script/create_db.sh - bundle exec rake db:test:reset --trace script: bundle exec rspec -b
Add MRI-2.1.0 to ci testing
Add MRI-2.1.0 to ci testing
YAML
mit
yellow5/foreigner-matcher,yellow5/foreigner-matcher
35e5ac24fd970d36e9c9a7b145b5e14a0bd755c2
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm # faster builds on new travis setup not using sudo sudo: false # cache vendor dirs cache: directories: - vendor - $HOME/.composer/cache install: - travis_retry composer self-update && composer --version - travis_retry composer global require "fxp/composer-asset-plugin:^1.2.0" - travis_retry composer global require "codeception/codeception=*" - travis_retry composer global require "codeception/specify=*" - travis_retry composer global require "codeception/verify=*" - travis_retry composer update --dev --prefer-dist --no-interaction - export PATH="$HOME/.composer/vendor/bin:$PATH" script: - | php -S localhost:8080 -t web > /dev/null 2>&1 & composer exec codecept run
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm # faster builds on new travis setup not using sudo sudo: false # cache vendor dirs cache: directories: - vendor - $HOME/.composer/cache install: - travis_retry composer self-update && composer --version - travis_retry composer global require "fxp/composer-asset-plugin:^1.2.0" - travis_retry composer global require "codeception/codeception=*" - travis_retry composer global require "codeception/specify=*" - travis_retry composer global require "codeception/verify=*" - travis_retry composer update --dev --prefer-dist --no-interaction - export PATH="$HOME/.composer/vendor/bin:$PATH" before_script: # show some versions and env information - php -r "echo INTL_ICU_VERSION . \"\n\";" - php -r "echo INTL_ICU_DATA_VERSION . \"\n\";" - mysql --version # initialize databases - mysql -e 'CREATE DATABASE yii2_basic_tests;'; script: - cd tests - codeception/bin/yii migrate - codecept build - | php -S ../yii serve > /dev/null 2>&1 & codecept run
Add beforescript and change how to run codecept :panda_face:
[Travis] Add beforescript and change how to run codecept :panda_face:
YAML
bsd-3-clause
thanhpv-102/yii2-pk-training,thanhpv-102/yii2-pk-training
409a2884ac91d7054dea40e224ef33d9a8c7ce98
.travis.yml
.travis.yml
language: python python: 2.7 os: - linux - osx env: - TOX_ENV=flake8 - TOX_ENV=pypy - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py32 - TOX_ENV=py33 - TOX_ENV=py34 install: - pip install tox script: - tox -e $TOX_ENV notifications: email: on_success: never on_failure: change
language: python python: 2.7 env: - TOX_ENV=flake8 - TOX_ENV=pypy - TOX_ENV=py26 - TOX_ENV=py27 - TOX_ENV=py32 - TOX_ENV=py33 - TOX_ENV=py34 install: - pip install tox script: - tox -e $TOX_ENV notifications: email: on_success: never on_failure: change
Revert "Run Travis on OSX."
Revert "Run Travis on OSX." This reverts commit 90084e11579b887bdec033eb3fcc486dfdcd1f61.
YAML
mit
schlamar/pytest-cov,ionelmc/pytest-cover,pytest-dev/pytest-cov,wushaobo/pytest-cov,opoplawski/pytest-cov,moreati/pytest-cov
ad274f82cc1c9c906007afa892bbe023f0cb2f3f
.travis.yml
.travis.yml
sudo: required os: linux language: python python: - 3.3 - 3.4 - 3.5 - 3.6 install: - sudo apt-get install -y apache2 - sudo apt-get install -y php5-common libapache2-mod-php5 php5-cli - sudo service apache2 restart - pwd - ls - mkdir /var/www/vulnerable-sites - mv test/vulnerable-sites/* /var/www/vulnerable-sites - pip install -r requirements.txt script: - python setup.py install - test/test-vulnerable-sites.sh
sudo: required os: linux language: python python: - 3.3 - 3.4 - 3.5 - 3.6 install: - sudo apt-get install -y apache2 - sudo apt-get install -y php5-common libapache2-mod-php5 php5-cli - sudo service apache2 restart - pwd - ls - sudo mkdir /var/www/vulnerable-sites - mv test/vulnerable-sites/* /var/www/vulnerable-sites - pip install -r requirements.txt script: - python setup.py install - test/test-vulnerable-sites.sh
Use sudo to create folder.
Use sudo to create folder.
YAML
mit
tijme/angularjs-csti-scanner,tijme/angularjs-sandbox-escape-scanner
f704b540e5ae7eeca1b3824232f20ddaf34bcd3f
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" script: "npm run-script travis" after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"
language: node_js node_js: - "8" - "9" script: "npm run-script travis" after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"
Test with node 8 and 9
Travis: Test with node 8 and 9
YAML
bsd-3-clause
assetgraph/assetgraph-i18n
a1acbb1f1bd394e0d9dd43a7bd2967e268ef4808
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" # Command to run tests script: py.test
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" # Temporarily use xenial with with sudo to install Python 3.7. References: # https://github.com/travis-ci/travis-ci/issues/9069 # https://github.com/travis-ci/travis-ci/issues/9815 matrix: include: - python: "3.7" dist: xenial sudo: required # Command to run tests script: py.test
Add Python 3.7 back to TravisCI pipeline
Add Python 3.7 back to TravisCI pipeline
YAML
mit
srsudar/eg
6fe955b4e6709bae3faa9f39dbf12c77c4e0855a
.travis.yml
.travis.yml
language: ruby bundler_args: --without development rvm: - 2.1.8 - 2.2.4 - 2.3.0 before_install: - gem update --system $gemver - gem --version env: - gemver: 2.5.2
language: ruby bundler_args: --without development rvm: - 2.2.* - 2.3.* - 2.4.* before_install: - gem update --system $gemver - gem --version env: - gemver: 2.6.13
Drop ruby 2.1 and add 2.4. Upgrade gem version
Drop ruby 2.1 and add 2.4. Upgrade gem version
YAML
mit
abak-press/geminabox,geminabox/geminabox,geminabox/geminabox,abak-press/geminabox,geminabox/geminabox,abak-press/geminabox,abak-press/geminabox,geminabox/geminabox
36975e79a4eb42ed89eddd8668bdd0e790c43c75
.travis.yml
.travis.yml
language: python python: - "3.3" # - "3.4" before_install: - sudo apt-get update -qq - sudo apt-get install -qq libzmq3-dev install: - python setup.py install - pip install --user msgpack-python script: - python runtests.py
language: python python: - "3.3" # - "3.4" before_install: - sudo apt-get update -qq - sudo apt-get install -qq libzmq3-dev install: - python setup.py install - pip install msgpack-python script: - python runtests.py
Drop --user from pip install
Drop --user from pip install
YAML
bsd-2-clause
MetaMemoryT/aiozmq,asteven/aiozmq,aio-libs/aiozmq,claws/aiozmq
bcef4822ef1ae6fe5f041f9ca855353daf6cd770
.travis.yml
.travis.yml
language: ruby bundler_args: --without debugging documentation addons: code_climate: repo_token: 186c49521e629c51591c86f057f49fe388ce87603e04b5486f0c92f26f2a455f rvm: # OS X 10.9.5-10.10.0 (2.0.0-p481) - system # OS X 10.9.3-10.9.4 - 2.0.0-p451 # OS X 10.9.0-10.9.2 - 2.0.0-p247 env: - LANG="en_US.UTF-8" before_install: # There is a bug in travis. When using system ruby, bundler is not # installed and causes the default install action to fail. - sudo gem install bundler script: bundle exec rake spec
language: ruby bundler_args: --without debugging documentation addons: code_climate: repo_token: 186c49521e629c51591c86f057f49fe388ce87603e04b5486f0c92f26f2a455f rvm: # OS X 10.9.5-10.10.0 (2.0.0-p481) - 2.0.0-p481 # OS X 10.9.3-10.9.4 - 2.0.0-p451 # OS X 10.9.0-10.9.2 - 2.0.0-p247 env: - LANG="en_US.UTF-8" script: bundle exec rake spec
Make build green, take 2.
[Travis] Make build green, take 2.
YAML
mit
CocoaPods/Core,k0nserv/Core,dnkoutso/Core,gabro/Core,dacaiguoguogmail/Core,brianmichel/Core,Ashton-W/Core,AdamCampbell/Core
68826242cc7a00ac1e16b2a97689723736ae6d6d
.travis.yml
.travis.yml
language: cpp sudo: false os: linux before_script: - mkdir build script: - cd build - cmake .. - cmake --build . - ctest addons: apt: sources: &global_apt_sources - george-edison55-precise-backports packages: &global_apt_packages - cmake - cmake-data matrix: include: - compiler: gcc env: COMPILER=g++-5 apt: sources: - *global_apt_sources - ubuntu-toolchain-r-test packages: - *global_apt_packages - g++-5 - compiler: gcc env: COMPILER=g++-6 apt: sources: - *global_apt_sources - ubuntu-toolchain-r-test packages: - *global_apt_packages - g++-6
language: cpp sudo: false os: linux before_script: - mkdir build script: - cd build - cmake .. - cmake --build . - ctest addons: apt: sources: &global_apt_sources - george-edison55-precise-backports packages: &global_apt_packages - cmake - cmake-data matrix: include: - compiler: gcc env: COMPILER=g++-5 apt: sources: - *global_apt_sources - ubuntu-toolchain-r-test packages: - *global_apt_packages - g++-5 - compiler: gcc env: COMPILER=g++-6 addons: apt: sources: - *global_apt_sources - ubuntu-toolchain-r-test packages: - *global_apt_packages - g++-6
Fix apt not being under addons
Fix apt not being under addons
YAML
mit
westernmagic/NumPDE,westernmagic/NumPDE,westernmagic/NumPDE,westernmagic/NumPDE,westernmagic/NumPDE
4a9045a3ef12c80b88a0a2d17ebdfeb0bb8c0bea
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" - "3.5" before_install: - sudo apt-get update - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh -O miniconda.sh; else wget https://repo.continuum.io/miniconda/Miniconda3-3.9.1-Linux-x86_64.sh -O miniconda.sh; fi - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda/bin:$PATH - conda update --yes conda - export HDF5_DIR=/home/travis/miniconda/ - conda install --yes hdf5 script: - ./test.sh after_script: - COVERALLS_REPO_TOKEN=dYV7pqZBuQAUszyONWnINMoo54KZbEFNI coveralls notifications: email: on_success: change on_failure: always
language: python python: - "2.7" - "3.4" - "3.5" before_install: - sudo apt-get update - if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then wget https://repo.continuum.io/miniconda/Miniconda-3.9.1-Linux-x86_64.sh -O miniconda.sh; else wget https://repo.continuum.io/miniconda/Miniconda3-3.9.1-Linux-x86_64.sh -O miniconda.sh; fi - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda/bin:$PATH - conda update --yes conda - export HDF5_DIR=/home/travis/miniconda/ - conda install --yes hdf5 script: - ./test.sh after_script: - COVERALLS_REPO_TOKEN=dYV7pqZBuQAUszyONWnINMoo54KZbEFNI coveralls notifications: email: on_success: change on_failure: always
Fix indentation for copied in before_install commands
Fix indentation for copied in before_install commands
YAML
mit
MBARIMike/oxyfloat,MBARIMike/biofloat,biofloat/biofloat,biofloat/biofloat,MBARIMike/oxyfloat,MBARIMike/biofloat
d2aa9220c5b8f5e858475def7fad916b732614c1
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 - 0.10 before_script: - npm install -g grunt-cli
language: node_js node_js: - 0.10 before_script: - npm install -g grunt-cli
Remove node 0.8 from build matrix
Remove node 0.8 from build matrix
YAML
mit
d0rc/moment-timezone,timrwood/moment-timezone,moment/moment-timezone,bcbroussard/moment-timezone,mj1856/moment-timezone,samjoch/moment-timezone,dieface/moment-timezone,6ft-invsbl-rbbt/moment-timezone,rollbar/moment-timezone,blixt/moment-timezone,lookfirst/moment-timezone,andrewchae/moment-timezone,kidaa/moment-timezone,HubSpot/moment-timezone,moment/moment-timezone,eddywashere/moment-timezone,almamedia/moment-timezone,orocrm/moment-timezone,mkhuramj/moment-timezone
549320799d21e7348ae313ff708e5e8c7ce0dc72
.travis.yml
.travis.yml
dist: xenial language: python python: - "3.6" - "3.7" - "3.8" - "pypy3.6-7.1.1" matrix: include: - python: "3.7" env: TOXENV="-e docs" - python: "3.7" env: TOXENV="-e pep8" - python: "3.7" env: TOXENV="-e coverage" install: - pip install --upgrade pip setuptools - pip install tox-travis script: - tox -c .travis_tox.ini $TOXENV
dist: xenial language: python python: - "3.6" - "3.7" - "3.8" - "pypy3" matrix: include: - python: "3.7" env: TOXENV="-e docs" - python: "3.7" env: TOXENV="-e pep8" - python: "3.7" env: TOXENV="-e coverage" install: - pip install --upgrade pip setuptools - pip install tox-travis script: - tox -c .travis_tox.ini $TOXENV
Use latest pypy3 version on Travis
Use latest pypy3 version on Travis
YAML
bsd-3-clause
morepath/morepath
0ff526b996d1707f54bb7ea6b94a935f1f3d8561
.travis.yml
.travis.yml
sudo: false language: python python: - "3.5" install: - "pip install -r requirements.txt" - "pip freeze"
sudo: false language: python python: - "3.5" script: nosetests install: - "pip install -r development.txt" - "pip freeze"
Add nosetests script for tests.
Add nosetests script for tests.
YAML
mit
mananam/pelican-prajna,mananam/pelican-prajna
e441ee9ceb077000cf84cd390eb1ef6a39ef33d4
.travis.yml
.travis.yml
# This file enables the Travis continuous integration system, which # automatically builds and tests joda-time for each GitHub commit or # pull request on three separate JDKs. # # For more information, see https://travis-ci.org sudo: false language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk6
# This file enables the Travis continuous integration system, which # automatically builds and tests joda-time for each GitHub commit or # pull request on three separate JDKs. # # For more information, see https://travis-ci.org sudo: false language: java jdk: - oraclejdk8 - oraclejdk7
Remove EOL JDK 6 from Travis build
Remove EOL JDK 6 from Travis build
YAML
apache-2.0
mosoft521/joda-time,JodaOrg/joda-time,tingting703/mp3_maven,tingting703/mp3_maven,Alexey-N-Chernyshov/IU_AST_Mutation_Score,mosoft521/joda-time,flightstats/joda-time,flightstats/joda-time,Alexey-N-Chernyshov/IU_AST_Mutation_Score,JodaOrg/joda-time
b44d4bc30050e96343981558bacd3915105761d1
.travis.yml
.travis.yml
# Continuous Integration (CI) is the practice, in software # engineering, of merging all developer working copies with a shared mainline # several times a day < http://docs.platformio.org/page/ci/index.html > # # Documentation: # # * Travis CI Embedded Builds with PlatformIO # < https://docs.travis-ci.com/user/integration/platformio/ > # # * PlatformIO integration with Travis CI # < http://docs.platformio.org/page/ci/travis.html > # # * User Guide for `platformio ci` command # < http://docs.platformio.org/page/userguide/cmd_ci.html > # # # Please choice one of the following templates (proposed below) and uncomment # it (remove "# " before each line) or use own configuration according to the # Travis CI documentation (see above). # # # Template #1: General project. Test it using existing `platformio.ini`. # # language: python # python: # - "2.7" # # sudo: false # cache: # directories: # - "~/.platformio" # # install: # - pip install -U platformio # # script: # - platformio run # # Template #2: The project is intended to by used as a library with examples # # language: python # python: # - "2.7" # # sudo: false # cache: # directories: # - "~/.platformio" # # env: # - PLATFORMIO_CI_SRC=path/to/test/file.c # - PLATFORMIO_CI_SRC=examples/file.ino # - PLATFORMIO_CI_SRC=path/to/test/directory # # install: # - pip install -U platformio # # script: # - platformio ci --lib="." --board=ID_1 --board=ID_2 --board=ID_N
language: python python: - "2.7" cache: directories: - "~/.platformio" env: - PLATFORMIO_CI_SRC=src install: - pip install -U platformio script: - platformio ci --board=pro8MHzatmega328
Add Travis CI for Arduino code
Add Travis CI for Arduino code
YAML
mit
hatstand/shinywaffle,hatstand/shinywaffle,hatstand/shinywaffle
e54ab24c5ed8ea9542e5c1d65b2187f2ebf86047
.travis.yml
.travis.yml
language: ruby rvm: - 2.2.5 - 2.3.1 before_install: gem install bundler sudo: false cache: bundler
language: ruby rvm: - 2.2.6 - 2.3.3 - 2.4.0-preview3 before_install: gem install bundler sudo: false cache: bundler
Test against latest ruby versions
Test against latest ruby versions
YAML
mit
rubysamurai/mui-sass,rubysamurai/mui-sass,rubysamurai/mui-sass,rubysamurai/mui-sass
5865c7557b723c5a16d1d9e6d88f9cdc777bb82d
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 before_install: - composer self-update install: - composer install --no-interaction --prefer-source script: - composer easy-coding-standard - composer phpstan-analysis - composer nette-tester-tests after_success: - wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar - php coveralls.phar --verbose --config tests/nette-tester.coveralls.yml services: - redis-server
language: php php: - 7.2 - 7.3 - 7.4 before_install: - composer self-update install: - composer install --no-interaction --prefer-source script: - composer cs:check - composer phpstan:check - composer tests after_success: - wget https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/coveralls.phar - php coveralls.phar --verbose --config tests/nette-tester.coveralls.yml services: - redis-server
Drop PHP 7.1, use php 7.2, 7.3, 7.4
Drop PHP 7.1, use php 7.2, 7.3, 7.4
YAML
bsd-3-clause
Machy8/webloader,Machy8/webloader,Machy8/webloader
9e2da11e396fe3365b940d99ad07ba7810263321
.travis.yml
.travis.yml
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode7.3 cache: cocoapods podfile: Example/Podfile before_install: - gem install cocoapods # Since Travis is not always on latest version - pod install --project-directory=Example script: - set -o pipefail && xcodebuild test -workspace Example/OneAPM.xcworkspace -scheme OneAPM-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode7.3 cache: cocoapods podfile: Example/Podfile before_install: - gem install cocoapods # Since Travis is not always on latest version - pod install --project-directory=Example script: - set -e - set -o pipefail && xcodebuild test -workspace Example/OneAPM.xcworkspace -scheme OneAPM-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint - set +e
Fix build script so OSX builds don't get marked as failed
Fix build script so OSX builds don't get marked as failed
YAML
mit
jieliangma/OneAPM
b2a55d84f11d557078e5c36acba05fb622d46f48
.travis.yml
.travis.yml
language: python python: - "3.4" - "3.5" services: - rabbitmq # will start rabbitmq-server cache: - apt - pip before_install: - sudo apt-get -qq update - sudo /etc/init.d/postgresql stop - sudo apt-get install -y postgresql-9.4 - sudo apt-get install -y postgresql-plpython-9.4 - sudo /etc/init.d/postgresql start - psql -c 'create database taiga;' -U postgres install: - travis_retry pip install -r requirements-devel.txt script: - travis_retry coverage run --source=taiga --omit='*tests*,*commands*,*migrations*,*admin*,*.jinja,*dashboard*,*settings*,*wsgi*,*questions*,*documents*' -m py.test -v --tb=native after_success: - coveralls
language: python python: - "3.4" - "3.5" services: - rabbitmq # will start rabbitmq-server cache: - apt - pip before_install: - sudo apt-get -qq update - sudo /etc/init.d/postgresql stop - sudo apt-get install -y postgresql-9.4 - sudo apt-get install -y postgresql-plpython-9.4 - sudo /etc/init.d/postgresql start 9.4 - psql -c 'create database taiga;' -U postgres install: - travis_retry pip install -r requirements-devel.txt script: - travis_retry coverage run --source=taiga --omit='*tests*,*commands*,*migrations*,*admin*,*.jinja,*dashboard*,*settings*,*wsgi*,*questions*,*documents*' -m py.test -v --tb=native after_success: - coveralls
Use postgresql 9.4 in TravisCI
Use postgresql 9.4 in TravisCI
YAML
agpl-3.0
taigaio/taiga-back,xdevelsistemas/taiga-back-community,dayatz/taiga-back,taigaio/taiga-back,xdevelsistemas/taiga-back-community,xdevelsistemas/taiga-back-community,dayatz/taiga-back,dayatz/taiga-back,taigaio/taiga-back
25b8e5847975abe019041484d8905f2f29c6216d
.travis.yml
.travis.yml
language: ruby before_install: gem install bundler --pre install: - gem update --system - bundle update script: xvfb-run rake rvm: - 1.9.3 - 2.0.0 - 2.1 - rbx-2 - jruby-19mode branches: only: - master matrix: allow_failures: - rvm: rbx-2 - rvm: jruby-19mode
language: ruby before_install: gem install bundler --pre install: - gem update --system - bundle update script: xvfb-run rake rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - rbx-2 - jruby-19mode branches: only: - master matrix: allow_failures: - rvm: rbx-2 - rvm: jruby-19mode
Add Ruby 2.2 on Travis
Add Ruby 2.2 on Travis
YAML
mit
tyabe/goatmail,tyabe/letter_opener-web,tyabe/goatmail,tyabe/goatmail,tyabe/letter_opener-web
72c6d368ccaf84d667f6fa5c43b3f4613951a9ee
.travis.yml
.travis.yml
# This will run on Travis' 'new' container-based infrastructure sudo: false # Whitelist branches: only: - master # Environment variables env: global: - DOXYFILE: $TRAVIS_BUILD_DIR/Doxygen # Install dependencies addons: apt: packages: - doxygen - doxygen-doc - doxygen-latex - doxygen-gui - graphviz - cmake - clang - libglib2.0-dev - libsoup-gnome2.4-dev - libyajl-dev - libblocksruntime-dev # Build your code e.g. by calling make script: - mkdir build - cd build && cmake .. - cd build && make # Generate and deploy documentation after_success: - cd $TRAVIS_BUILD_DIR - sh tools/deploy-docs.sh
# This will run on Travis' 'new' container-based infrastructure sudo: false dist: trusty # Whitelist branches: only: - master # Environment variables env: global: - DOXYFILE: $TRAVIS_BUILD_DIR/Doxygen # Install dependencies addons: apt: packages: - doxygen - doxygen-doc - doxygen-latex - doxygen-gui - graphviz - cmake - clang - libglib2.0-dev - libsoup-gnome2.4-dev - libyajl-dev - libblocksruntime-dev # Build your code e.g. by calling make script: - mkdir build - cd build && CC=clang CXX=clang++ cmake .. - cd build && make # Generate and deploy documentation after_success: - cd $TRAVIS_BUILD_DIR - sh tools/deploy-docs.sh
Use newer ubuntu version under CI, force clang in cmake.
Use newer ubuntu version under CI, force clang in cmake.
YAML
bsd-2-clause
twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc,twoporeguys/librpc
72cc2a443e4a2bdbae7a0b6f5b6c6dacf24af5b9
.travis.yml
.travis.yml
language: java jdk: - oraclejdk7 - openjdk7 - oraclejdk8 env: - GWT_VERSION=2.6.1 - GWT_VERSION=2.7.0 - GWT_VERSION=2.8.0-SNAPSHOT install: true script: mvn verify -Dinvoker.streamLogs=true -Dinvoker.mavenOpts="-Djava.net.preferIPv4Stack=true" -DgwtVersion=$GWT_VERSION after_success: - ci/deploy-snapshot.sh notifications: email: false sudo: false cache: directories: - $HOME/.m2 - target/it-repo
language: java jdk: - oraclejdk7 - openjdk7 - oraclejdk8 env: - GWT_VERSION=2.6.1 - GWT_VERSION=2.7.0 - GWT_VERSION=2.8.0-SNAPSHOT matrix: allow_failures: - jdk: oraclejdk7 env: GWT_VERSION=2.8.0-SNAPSHOT - jdk: openjdk7 env: GWT_VERSION=2.8.0-SNAPSHOT install: true script: mvn verify -Dinvoker.streamLogs=true -Dinvoker.mavenOpts="-Djava.net.preferIPv4Stack=true" -DgwtVersion=$GWT_VERSION after_success: - ci/deploy-snapshot.sh notifications: email: false sudo: false cache: directories: - $HOME/.m2 - target/it-repo
Allow GWT 2.8.0-SNAPSHOT builds on Travis to fail with JDK 7
Allow GWT 2.8.0-SNAPSHOT builds on Travis to fail with JDK 7
YAML
apache-2.0
tbroyer/gwt-maven-plugin,tbroyer/gwt-maven-plugin
e202766a465ee174a0bc500f70e26ad414335e4a
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm matrix: fast_finish: true allow_failures: php: 7.1 cache: directories: - $HOME/.composer/cache before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist script: - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_success: - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm matrix: fast_finish: true cache: directories: - $HOME/.composer/cache before_install: - travis_retry composer self-update install: - travis_retry composer install --no-interaction --prefer-dist script: - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover after_success: - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
Test ocular phar announce on PHP 7+
Test ocular phar announce on PHP 7+
YAML
mit
localheinz/container,thephpleague/container
bda00d137820d1769525a1e191a166e673e602f1
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 - jruby - rbx
rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode
Use 1.9 mode for jruby and rbx on Travis
Use 1.9 mode for jruby and rbx on Travis
YAML
mit
wojtekmach/minitest-capybara,blowmage/minitest-capybara
3fcb75bfb11145dd04d76ff391c0d48dd1c8e985
.travis.yml
.travis.yml
before_install: - travis_retry sudo apt-add-repository ppa:chris-lea/zeromq -y - travis_retry sudo apt-get update - travis_retry sudo apt-get install libzmq3 libzmq3-dev -y language: ruby rvm: - 2.0.0 cache: - bundler - apt
before_install: - travis_retry sudo apt-add-repository ppa:chris-lea/zeromq -y - travis_retry sudo apt-get update - travis_retry sudo apt-get install libzmq3 libzmq3-dev -y language: ruby rvm: - 2.0.0 - 2.1.0 cache: - bundler - apt
Build against Ruby 2.1.0 as well
Build against Ruby 2.1.0 as well
YAML
mit
pantry/pantry
3e97478a0af7bdc8d6ec7d5709c4e679416fdf3e
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - 7.3 env: - dependencies=lowest - dependencies=highest before_script: - composer self-update - if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --no-interaction; fi; - if [ "$dependencies" = "highest" ]; then composer update --no-interaction; fi; script: - vendor/bin/phing - > wget https://github.com/maglnet/ComposerRequireChecker/releases/download/0.2.1/composer-require-checker.phar && php composer-require-checker.phar check composer.json
language: php php: - 7.1 - 7.2 - 7.3 env: - dependencies=lowest - dependencies=highest before_script: - composer self-update - if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --no-interaction; fi; - if [ "$dependencies" = "highest" ]; then composer update --no-interaction; fi; script: - vendor/bin/phing
Remove ComposerRequireChecker from build until it is setup up correctly
Remove ComposerRequireChecker from build until it is setup up correctly
YAML
mit
sascha-egerer/phpstan-typo3
dafa1897ed20484d39a3664c1cb046f2e01a2eac
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" install: - pip install -q coveralls --use-mirrors - pip install flake8 before_script: - flake8 origins script: - coverage run test_strconv.py after_success: - coveralls
language: python python: - "2.6" - "2.7" install: - pip install -q coveralls --use-mirrors - pip install flake8 before_script: - flake8 strconv.py script: - coverage run test_strconv.py after_success: - coveralls
Fix wrong target for flake8
Fix wrong target for flake8
YAML
bsd-2-clause
pombredanne/strconv,ATeal/strconv,bruth/strconv
636a330901c24e1c15d2068d6aaeaf7e5153b297
.travis.yml
.travis.yml
language: go os: - linux go: - 1.8.1 - 1.7.3 install: - go get github.com/gorilla/mux - go get github.com/gorilla/csrf before_script: - go fmt github.com/omar-h/goimage - go fmt github.com/omar-h/goimage/util script: - go test github.com/omar-h/goimage - go test github.com/omar-h/goimage/util - go build github.com/omar-h/goimage - go build github.com/omar-h/goimage/util
language: go os: - linux go: - 1.8.3 - 1.7.6 install: - go get github.com/gorilla/mux - go get github.com/gorilla/csrf before_script: - gofmt github.com/omar-h/goimage - gofmt github.com/omar-h/goimage/util script: - go test github.com/omar-h/goimage - go test github.com/omar-h/goimage/util - go build github.com/omar-h/goimage - go build github.com/omar-h/goimage/util
Update go version in Travis
Update go version in Travis
YAML
mit
omar-h/goimage
af332413f565dc04079cde56ca0f91f7fc837e6f
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "5" script: - npm test
language: node_js node_js: - stable - lts/* - 6.9 script: - npm test
Drop support for node version older than 6
Drop support for node version older than 6 Versions older than node 6 are no longer supported by html-webpack-plugin version 4. See: https://github.com/jantimon/html-webpack-plugin/pull/861
YAML
mit
DustinJackson/html-webpack-inline-source-plugin
a9106a011fbe0ca1e772c2892b63cf4baf458cad
.travis.yml
.travis.yml
language: php sudo: false cache: directories: - $HOME/.composer/cache/files matrix: fast_finish: true include: - php: 5.4 - php: 5.4 - php: 5.5 - php: 5.6 - php: 7.0 - php: hhvm allow_failures: - php: hhvm before_install: - composer self-update - curl -LSs https://box-project.github.io/box2/installer.php | php - mv box.phar box - chmod 755 box install: - composer install - ~/.phpenv/versions/5.6/bin/php box build script: - phpunit
language: php sudo: false cache: directories: - $HOME/.composer/cache/files matrix: fast_finish: true include: - php: 7.0 - php: 7.1 before_install: - composer self-update - curl -LSs https://box-project.github.io/box2/installer.php | php - mv box.phar box - chmod 755 box install: - composer install - ~/.phpenv/versions/5.6/bin/php box build script: - phpunit
Test only php 7 and 7.1
Test only php 7 and 7.1
YAML
mit
maidmaid/cffie
83c61c71c01f0b583f2478be816ae3e1b1156d22
.travis.yml
.travis.yml
matrix: include: - language: python python: - "3.5" sudo: False addons: postgresql: "9.6" # command to install dependencies install: - pip install -r requirements.txt - pip install -r test-requirements.txt - pip install coveralls env: - TEST=True DATABASE_URL=postgres://postgres@localhost/cellcountr_test before_script: - psql -c 'create database cellcountr_test;' -U postgres - npm install -g npm@'>=3' # command to run tests script: coverage run --source=cellcounter --omit='*migrations*' manage.py test after_success: coveralls - language: python python: - "3.5" node_js: - "12.6" sudo: False addons: postgresql: "9.6" # command to install dependencies install: - pip install -r requirements.txt - pip install -r test-requirements.txt - npm i -g npm - npm ci --verbose before_script: - psql -c 'create database cellcountr_test;' -U postgres #- npm install -g npm@'>=3' #- npm install -g mocha # command to run tests script: bash test_integration.sh
matrix: include: - language: python python: - "3.5" sudo: False addons: postgresql: "9.6" # command to install dependencies install: - pip install -r requirements.txt - pip install -r test-requirements.txt - pip install coveralls env: - TEST=True DATABASE_URL=postgres://postgres@localhost/cellcountr_test before_script: - psql -c 'create database cellcountr_test;' -U postgres - npm install -g npm@'>=3' # command to run tests script: coverage run --source=cellcounter --omit='*migrations*' manage.py test after_success: coveralls - language: python python: - "3.5" node_js: - "12.6" sudo: False addons: postgresql: "9.6" # command to install dependencies install: - pip install -r requirements.txt - pip install -r test-requirements.txt - npm i -g npm - npm ci --verbose env: - PATH=$PATH:$HOME/node_modules/.bin before_script: - psql -c 'create database cellcountr_test;' -U postgres #- npm install -g npm@'>=3' #- npm install -g mocha # command to run tests script: bash test_integration.sh
Add Node bin to path.
Add Node bin to path.
YAML
mit
cellcounter/cellcounter,cellcounter/cellcounter,cellcounter/cellcounter,cellcounter/cellcounter
220dfb2009a98ff506010c6d7adacea43e026826
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.1 - 2.0.0 - 1.9.3 before_script: bundle exec rake ksvalidator:setup notifications: hipchat: ac943dbb9ee5b4a2562d4476987a91@Stork
language: ruby rvm: - 2.1.1 - 2.0.0 - 1.9.3 before_script: bundle exec rake ksvalidator:setup notifications: hipchat: ***REMOVED***@Stork
Revert "add notification token for hipchat"
Revert "add notification token for hipchat" This reverts commit 0505d43febc6066273784deaf6c805bf49960271.
YAML
apache-2.0
rlyon/stork,rlyon/stork,rlyon/stork
557fd0bf36f29c5fe35b9fde170fd98001db4444
.travis.yml
.travis.yml
language: objective-c env: global: - EnableNuGetPackageRestore=true matrix: - MONO_VERSION="3.8.0" before_install: - wget "http://download.mono-project.com/archive/${MONO_VERSION}/macos-10-x86/MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" - sudo installer -pkg "MonoFramework-MDK-${MONO_VERSION}.macos10.xamarin.x86.pkg" -target / script: - make test
language: objective-c env: global: - EnableNuGetPackageRestore=true before_install: - wget "https://download.mono-project.com/archive/4.6.1/macos-10-universal/MonoFramework-MDK-4.6.1.5.macos10.xamarin.universal.pkg" - sudo installer -pkg "MonoFramework-MDK-4.6.1.5.macos10.xamarin.universal.pkg" -target / script: - make test
Update build to mono v 4.6.1.5
Update build to mono v 4.6.1.5
YAML
mit
omar/ByteSize
c11457db06d9ad26c2db1c1209a0535c19f49a8f
.travis.yml
.travis.yml
language: go go: - stable - master before_script: - go get -u github.com/golang/lint script: - test -z $(gofmt -l .) - test -z $(golint ./...) - go vet ./... - go test -v ./... matrix: allow_failures: - go: master
dist: trusty sudo: false language: go go: - stable - master before_script: - go get -u github.com/golang/lint script: - test -z $(gofmt -l .) - test -z $(golint ./...) - go vet ./... - go test -v ./... matrix: allow_failures: - go: master
Switch to Ubuntu 14.04 Travis image
Switch to Ubuntu 14.04 Travis image
YAML
mit
enova/scout
8b1c382563d3f9508d3d344474f2c84b4cb95b4c
.travis.yml
.travis.yml
before_script: - sudo apt-get install ccache libffi-dev libicu-dev libgmp3-dev script: "perl Configure.pl --optimize --cc=\"$CC\" --link=\"$CC\" --ld=\"$CC\" --ccflags='-g' && make fulltest" # branches: # only: # - master notifications: recipients: - [email protected] email: on_success: change on_failure: always env: - CC="ccache gcc" - CC="ccache g++" - CC="gcc" - CC="g++"
before_script: - sudo apt-get install ccache libffi-dev libicu-dev libgmp3-dev clang script: "perl Configure.pl --test=build $PARROT_OPTIMIZE --cc=\"$CC\" --link=\"$CC\" --ld=\"$CC\" --ccflags='-g' && make $PARROT_TEST" # branches: # only: # - master notifications: recipients: - [email protected] email: on_success: change on_failure: always env: - PARROT_OPTIMIZE="--optimize" PARROT_TEST="fulltest" CC="clang" - PARROT_OPTIMIZE="" PARROT_TEST="fulltest" CC="clang" - PARROT_OPTIMIZE="--optimize" PARROT_TEST="fulltest" CC="ccache gcc" - PARROT_OPTIMIZE="--optimize" PARROT_TEST="fulltest" CC="ccache g++" - PARROT_OPTIMIZE="--optimize" PARROT_TEST="fulltest" CC="gcc" - PARROT_OPTIMIZE="--optimize" PARROT_TEST="fulltest" CC="g++" - PARROT_OPTIMIZE="" PARROT_TEST="fulltest" CC="ccache gcc" - PARROT_OPTIMIZE="" PARROT_TEST="fulltest" CC="ccache g++" - PARROT_OPTIMIZE="" PARROT_TEST="fulltest" CC="gcc" - PARROT_OPTIMIZE="" PARROT_TEST="fulltest" CC="g++"
Test parrot with LLVM/clang as well as with/without optimization
[ci] Test parrot with LLVM/clang as well as with/without optimization
YAML
artistic-2.0
parrot/parrot,youprofit/parrot,parrot/parrot,youprofit/parrot,tkob/parrot,parrot/parrot,parrot/parrot,FROGGS/parrot,parrot/parrot,tkob/parrot,tkob/parrot,FROGGS/parrot,youprofit/parrot,youprofit/parrot,youprofit/parrot,youprofit/parrot,FROGGS/parrot,FROGGS/parrot,tkob/parrot,youprofit/parrot,tkob/parrot,tkob/parrot,FROGGS/parrot,tkob/parrot,FROGGS/parrot,FROGGS/parrot,FROGGS/parrot,tkob/parrot,youprofit/parrot
32a8372ff0499f47754082f6d7478b53463f631e
.travis.yml
.travis.yml
language: python env: - PYTHON=2.7 - PYTHON=2.7 - PYTHON=3.3 - PYTHON=3.4 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/miniconda/bin:$PATH install: - conda update conda --yes - conda create -n testenv --yes pip python=$PYTHON - conda update conda --yes - source activate testenv - conda install --yes --file requirements.txt before_script: - conda install --yes -c r r script: - python combat.py - python test.py
language: python env: - PYTHON=2.6 - PYTHON=2.7 - PYTHON=3.3 - PYTHON=3.4 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/miniconda/bin:$PATH install: - conda update conda --yes - conda create -n testenv --yes pip python=$PYTHON - conda update conda --yes - source activate testenv - conda install --yes --file requirements.txt before_script: - conda install --yes -c r r script: - python combat.py - python test.py
Add python 2.6 to test suite
Add python 2.6 to test suite
YAML
mit
brentp/combat.py,brentp/combat.py
bf87a60d8f7bcbdd5b564f1ffdcd36167ed3e869
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" install: - "pip install -r requirements-dev.txt" - "pip install -e ." script: - mamba
sudo: false language: python python: - "2.7" - "3.6" install: - "pip install -r requirements-dev.txt" - "pip install -e ." script: - mamba
Add python 3.6 to test languages
Add python 3.6 to test languages
YAML
agpl-3.0
gisce/primestg
92f1109cd826a5f22c377ecc037621f564e7978e
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" env: - DJANGO=https://github.com/django/django/zipball/master - DJANGO=https://www.djangoproject.com/download/1.5b2/tarball/ - DJANGO=django==1.4.3 --use-mirrors - DJANGO=django==1.3.5 --use-mirrors install: - pip install $DJANGO - pip install django-filter==0.5.4 --use-mirrors - pip install six --use-mirrors - export PYTHONPATH=. script: - python rest_framework/runtests/runtests.py matrix: exclude: - python: "3.2" env: DJANGO=django==1.4.2 --use-mirrors - python: "3.2" env: DJANGO=django==1.3.3 --use-mirrors
language: python python: - "2.6" - "2.7" - "3.2" env: - DJANGO=https://github.com/django/django/zipball/master - DJANGO=https://www.djangoproject.com/download/1.5b2/tarball/ - DJANGO=django==1.4.3 --use-mirrors - DJANGO=django==1.3.5 --use-mirrors install: - pip install $DJANGO - pip install django-filter==0.5.4 --use-mirrors - pip install six --use-mirrors - export PYTHONPATH=. script: - python rest_framework/runtests/runtests.py matrix: exclude: - python: "3.2" env: DJANGO=django==1.4.3 --use-mirrors - python: "3.2" env: DJANGO=django==1.3.5 --use-mirrors
Exclude non python 3 compatible django verison from the test matrix.
Exclude non python 3 compatible django verison from the test matrix.
YAML
bsd-2-clause
maryokhin/django-rest-framework,sbellem/django-rest-framework,yiyocx/django-rest-framework,justanr/django-rest-framework,AlexandreProenca/django-rest-framework,edx/django-rest-framework,tcroiset/django-rest-framework,hnakamur/django-rest-framework,krinart/django-rest-framework,rhblind/django-rest-framework,dmwyatt/django-rest-framework,sehmaschine/django-rest-framework,kylefox/django-rest-framework,jpadilla/django-rest-framework,ajaali/django-rest-framework,hunter007/django-rest-framework,edx/django-rest-framework,raphaelmerx/django-rest-framework,jerryhebert/django-rest-framework,vstoykov/django-rest-framework,ebsaral/django-rest-framework,antonyc/django-rest-framework,pombredanne/django-rest-framework,edx/django-rest-framework,ezheidtmann/django-rest-framework,wwj718/django-rest-framework,arpheno/django-rest-framework,kylefox/django-rest-framework,zeldalink0515/django-rest-framework,ezheidtmann/django-rest-framework,hnarayanan/django-rest-framework,jtiai/django-rest-framework,potpath/django-rest-framework,akalipetis/django-rest-framework,agconti/django-rest-framework,davesque/django-rest-framework,paolopaolopaolo/django-rest-framework,brandoncazander/django-rest-framework,thedrow/django-rest-framework-1,johnraz/django-rest-framework,YBJAY00000/django-rest-framework,bluedazzle/django-rest-framework,ticosax/django-rest-framework,fishky/django-rest-framework,abdulhaq-e/django-rest-framework,kgeorgy/django-rest-framework,zeldalink0515/django-rest-framework,waytai/django-rest-framework,vstoykov/django-rest-framework,ebsaral/django-rest-framework,brandoncazander/django-rest-framework,uploadcare/django-rest-framework,wwj718/django-rest-framework,kennydude/django-rest-framework,uruz/django-rest-framework,sheppard/django-rest-framework,paolopaolopaolo/django-rest-framework,jness/django-rest-framework,YBJAY00000/django-rest-framework,wzbozon/django-rest-framework,tcroiset/django-rest-framework,jerryhebert/django-rest-framework,wangpanjun/django-rest-framework,rafaelang/django-rest-framework,thedrow/django-rest-framework-1,cyberj/django-rest-framework,agconti/django-rest-framework,werthen/django-rest-framework,brandoncazander/django-rest-framework,James1345/django-rest-framework,HireAnEsquire/django-rest-framework,aericson/django-rest-framework,sheppard/django-rest-framework,simudream/django-rest-framework,tigeraniya/django-rest-framework,alacritythief/django-rest-framework,douwevandermeij/django-rest-framework,VishvajitP/django-rest-framework,callorico/django-rest-framework,sheppard/django-rest-framework,ebsaral/django-rest-framework,aericson/django-rest-framework,nryoung/django-rest-framework,jerryhebert/django-rest-framework,nryoung/django-rest-framework,arpheno/django-rest-framework,canassa/django-rest-framework,damycra/django-rest-framework,ajaali/django-rest-framework,davesque/django-rest-framework,hunter007/django-rest-framework,ezheidtmann/django-rest-framework,wzbozon/django-rest-framework,nhorelik/django-rest-framework,James1345/django-rest-framework,callorico/django-rest-framework,nhorelik/django-rest-framework,linovia/django-rest-framework,delinhabit/django-rest-framework,rhblind/django-rest-framework,qsorix/django-rest-framework,lubomir/django-rest-framework,kennydude/django-rest-framework,VishvajitP/django-rest-framework,James1345/django-rest-framework,kylefox/django-rest-framework,AlexandreProenca/django-rest-framework,cheif/django-rest-framework,kgeorgy/django-rest-framework,elim/django-rest-framework,wangpanjun/django-rest-framework,ambivalentno/django-rest-framework,davesque/django-rest-framework,hnarayanan/django-rest-framework,HireAnEsquire/django-rest-framework,jpulec/django-rest-framework,potpath/django-rest-framework,jpadilla/django-rest-framework,jness/django-rest-framework,krinart/django-rest-framework,xiaotangyuan/django-rest-framework,gregmuellegger/django-rest-framework,MJafarMashhadi/django-rest-framework,leeahoward/django-rest-framework,rafaelang/django-rest-framework,cyberj/django-rest-framework,raphaelmerx/django-rest-framework,maryokhin/django-rest-framework,rhblind/django-rest-framework,andriy-s/django-rest-framework,ossanna16/django-rest-framework,MJafarMashhadi/django-rest-framework,akalipetis/django-rest-framework,akalipetis/django-rest-framework,kezabelle/django-rest-framework,waytai/django-rest-framework,ticosax/django-rest-framework,krinart/django-rest-framework,mgaitan/django-rest-framework,rafaelcaricio/django-rest-framework,arpheno/django-rest-framework,ajaali/django-rest-framework,kgeorgy/django-rest-framework,rafaelcaricio/django-rest-framework,ossanna16/django-rest-framework,ticosax/django-rest-framework,potpath/django-rest-framework,simudream/django-rest-framework,delinhabit/django-rest-framework,sehmaschine/django-rest-framework,elim/django-rest-framework,raphaelmerx/django-rest-framework,canassa/django-rest-framework,ashishfinoit/django-rest-framework,pombredanne/django-rest-framework,jpadilla/django-rest-framework,douwevandermeij/django-rest-framework,kennydude/django-rest-framework,wedaly/django-rest-framework,lubomir/django-rest-framework,mgaitan/django-rest-framework,mgaitan/django-rest-framework,wedaly/django-rest-framework,hnarayanan/django-rest-framework,xiaotangyuan/django-rest-framework,adambain-vokal/django-rest-framework,nryoung/django-rest-framework,rubendura/django-rest-framework,antonyc/django-rest-framework,ashishfinoit/django-rest-framework,buptlsl/django-rest-framework,kezabelle/django-rest-framework,leeahoward/django-rest-framework,MJafarMashhadi/django-rest-framework,nhorelik/django-rest-framework,antonyc/django-rest-framework,paolopaolopaolo/django-rest-framework,aericson/django-rest-framework,ambivalentno/django-rest-framework,canassa/django-rest-framework,yiyocx/django-rest-framework,VishvajitP/django-rest-framework,AlexandreProenca/django-rest-framework,adambain-vokal/django-rest-framework,iheitlager/django-rest-framework,rafaelang/django-rest-framework,wwj718/django-rest-framework,tomchristie/django-rest-framework,adambain-vokal/django-rest-framework,linovia/django-rest-framework,leeahoward/django-rest-framework,simudream/django-rest-framework,atombrella/django-rest-framework,werthen/django-rest-framework,d0ugal/django-rest-framework,linovia/django-rest-framework,qsorix/django-rest-framework,maryokhin/django-rest-framework,vstoykov/django-rest-framework,gregmuellegger/django-rest-framework,kezabelle/django-rest-framework,agconti/django-rest-framework,sbellem/django-rest-framework,rubendura/django-rest-framework,YBJAY00000/django-rest-framework,damycra/django-rest-framework,uploadcare/django-rest-framework,bluedazzle/django-rest-framework,douwevandermeij/django-rest-framework,wzbozon/django-rest-framework,iheitlager/django-rest-framework,tomchristie/django-rest-framework,tomchristie/django-rest-framework,d0ugal/django-rest-framework,abdulhaq-e/django-rest-framework,tigeraniya/django-rest-framework,elim/django-rest-framework,hnakamur/django-rest-framework,atombrella/django-rest-framework,delinhabit/django-rest-framework,atombrella/django-rest-framework,werthen/django-rest-framework,cheif/django-rest-framework,jpulec/django-rest-framework,wedaly/django-rest-framework,bluedazzle/django-rest-framework,jpulec/django-rest-framework,dmwyatt/django-rest-framework,ossanna16/django-rest-framework,lubomir/django-rest-framework,cyberj/django-rest-framework,qsorix/django-rest-framework,johnraz/django-rest-framework,rubendura/django-rest-framework,uruz/django-rest-framework,dmwyatt/django-rest-framework,alacritythief/django-rest-framework,HireAnEsquire/django-rest-framework,damycra/django-rest-framework,ashishfinoit/django-rest-framework,rafaelcaricio/django-rest-framework,fishky/django-rest-framework,yiyocx/django-rest-framework,andriy-s/django-rest-framework,alacritythief/django-rest-framework,hunter007/django-rest-framework,buptlsl/django-rest-framework,fishky/django-rest-framework,tigeraniya/django-rest-framework,cheif/django-rest-framework,andriy-s/django-rest-framework,iheitlager/django-rest-framework,wangpanjun/django-rest-framework,ambivalentno/django-rest-framework,thedrow/django-rest-framework-1,sbellem/django-rest-framework,zeldalink0515/django-rest-framework,hnakamur/django-rest-framework,johnraz/django-rest-framework,abdulhaq-e/django-rest-framework,justanr/django-rest-framework,jness/django-rest-framework,tcroiset/django-rest-framework,xiaotangyuan/django-rest-framework,waytai/django-rest-framework,buptlsl/django-rest-framework,jtiai/django-rest-framework,gregmuellegger/django-rest-framework,callorico/django-rest-framework,justanr/django-rest-framework,uruz/django-rest-framework,sehmaschine/django-rest-framework,jtiai/django-rest-framework,uploadcare/django-rest-framework,d0ugal/django-rest-framework,pombredanne/django-rest-framework
a915d7eefcd9c1b647fdd913e46eb325969d6ac1
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.3 - 3.4 - 3.5 sudo: false # Setup anaconda before_install: - if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.8.3-Linux-x86_64.sh -O miniconda.sh; fi - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/anaconda/bin:/home/travis/miniconda/bin:$PATH - conda update --yes conda # Install packages install: - conda install --yes pip python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib Cython - pip install nose-cov python-coveralls - pip install -r requirements.txt - python setup.py install # Run test script: - nosetests --with-cov --cov zephyr --cov-config .coveragerc -v -s # Calculate coverage after_success: - coveralls notifications: email: - [email protected] - [email protected]
language: python python: - 2.7 sudo: false # Setup anaconda before_install: - if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-3.8.3-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-3.8.3-Linux-x86_64.sh -O miniconda.sh; fi - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/anaconda/bin:/home/travis/miniconda/bin:$PATH - conda update --yes conda # Install packages install: - conda install --yes pip python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib Cython - pip install nose-cov python-coveralls - pip install -r requirements.txt - python setup.py install # Run test script: - nosetests --with-cov --cov zephyr --cov-config .coveragerc -v -s # Calculate coverage after_success: - coveralls notifications: email: - [email protected] - [email protected]
Revert "See if Python 3 builds."
Revert "See if Python 3 builds." This reverts commit 511ec028e14a120ce27c0ee7d1fad06ff7a8abf0.
YAML
mit
uwoseis/zephyr
f58deae269cba06e6778305c26768f15b0a58a61
.travis.yml
.travis.yml
language: ruby before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: "RAILS_ENV=test bundle exec rake db:create db:migrate default" after_success: ./script/deploy-staging.sh bundler_args: --without development
sudo: false language: ruby before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" script: "RAILS_ENV=test bundle exec rake db:create db:migrate default" after_success: ./script/deploy-staging.sh bundler_args: --without development
Update to current Travis infrastructure
Update to current Travis infrastructure Signed-off-by: Jenny Chou <[email protected]>
YAML
mit
pivotal/whiteboard,pivotal/whiteboard,pivotal/whiteboard,mikeymc/whiteboard,mikeymc/whiteboard,mikeymc/whiteboard,pivotal/whiteboard,mikeymc/whiteboard
34a482c0e9e571d6761aa9cfa6a51dd2789e9bbe
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.2.2 - 2.2.3 - 2.3.1 - 2.4.3 - 2.5.0 before_install: gem install bundler -v 1.16.1
language: ruby rvm: - 2.1.0 - 2.2.3 - 2.3.1 - 2.4.3 - 2.5.0 before_install: gem install bundler -v 1.16.1
Remove old versions of ruby
Remove old versions of ruby
YAML
mit
rikas/cloudflare_localizable,rikas/cloudflare_localizable
b22db4d14b56d51d6a65d547a27cd372a4ef22b4
.travis.yml
.travis.yml
language: node_js node_js: - 0.8 - "0.10" - 0.11 env: global: - secure: c3UcLxEeEld/+adgMG4wNTpu4QMtP1exxH2Ne4P10LAl/F+VZKG4t5XcvU56kS3Hsx6WGhJpgKUqDJ9ULjaBHjqEFjhLZOFIFfGhlQaqR67wYPqyCuNtJXVaEH2JcJTvJq7CbWjPSoak91XfO2C9fY2C0rcrLQ2LnMp2JocaLKw= - secure: gdSKZDRCr/t8LC5Cle0qnBjXJXDpchIeksdqkoVeya0B6VVUNNDk5hreda0SG6QES958/bTa9Tht9YfKYBzyXbhhEeThtzIcFfLFh1doRfQhPg9J0NsUQJu2g60y++lsoubhJlFyqTqEgwgW6Vt2SjNYBES79azW9nejfm10WBQ=
language: node_js node_js: - 0.8 - "0.10" - 0.11 before_install: - npm i npm@latest -g env: global: - secure: c3UcLxEeEld/+adgMG4wNTpu4QMtP1exxH2Ne4P10LAl/F+VZKG4t5XcvU56kS3Hsx6WGhJpgKUqDJ9ULjaBHjqEFjhLZOFIFfGhlQaqR67wYPqyCuNtJXVaEH2JcJTvJq7CbWjPSoak91XfO2C9fY2C0rcrLQ2LnMp2JocaLKw= - secure: gdSKZDRCr/t8LC5Cle0qnBjXJXDpchIeksdqkoVeya0B6VVUNNDk5hreda0SG6QES958/bTa9Tht9YfKYBzyXbhhEeThtzIcFfLFh1doRfQhPg9J0NsUQJu2g60y++lsoubhJlFyqTqEgwgW6Vt2SjNYBES79azW9nejfm10WBQ=
Install latest npm before running installation
Install latest npm before running installation
YAML
mit
dogestats/1bit-chart-bars
ec9caf09ed92c7f71eabd8f49f28304f3c21ac87
.travis.yml
.travis.yml
language: python python: - "2.7" virtualenv: system_site_packages: true install: - sudo pip install -r requirements.txt - sudo pip install coveralls script: nosetests --with-coverage --cover-package=energiscore after_success: - coveralls
language: python python: - "2.7" virtualenv: system_site_packages: true install: - sudo pip install -r requirements.txt - sudo pip install coveralls script: nosetests --with-coverage --cover-package=energistream-py after_success: - coveralls
Update coverage call (correctly pointing to estream)
TST: Update coverage call (correctly pointing to estream)
YAML
mit
Melrok/energistream-py,Melrok/energistream-py
b79145351ac3e7885840510a0171e30cae97061a
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.3" env: - DJANGO_INSTALL="Django==1.4.5" - DJANGO_INSTALL="Django==1.5.1" - DJANGO_INSTALL="-e git+https://github.com/django/[email protected]#egg=Django" install: - pip install -q $DJANGO_INSTALL - python setup.py -q install script: ./runtests.sh matrix: exclude: - python: "3.3" env: DJANGO_INSTALL="Django==1.4.5" - python: "2.6" env: DJANGO_INSTALL="-e git+https://github.com/django/django.git@stable/1.6.x#egg=Django"
language: python python: - "2.6" - "2.7" - "3.3" env: - DJANGO_INSTALL="Django==1.4.10" - DJANGO_INSTALL="Django==1.5.5" - DJANGO_INSTALL="Django==1.6" install: - pip install -q $DJANGO_INSTALL - python setup.py -q install script: ./runtests.sh matrix: exclude: - python: "3.3" env: DJANGO_INSTALL="Django==1.4.10" - python: "2.6" env: DJANGO_INSTALL="Django==1.6"
Update Django versions for testing
Update Django versions for testing Django 1.6!
YAML
bsd-2-clause
DESHRAJ/django-organizations,GauthamGoli/django-organizations,bennylope/django-organizations,st8st8/django-organizations,GauthamGoli/django-organizations,st8st8/django-organizations,DESHRAJ/django-organizations,bennylope/django-organizations
6c4ce4034fa5e16f511b69b51787f83ed3037c8b
.travis.yml
.travis.yml
language: node_js node_js: - "5" script: - npm test
language: node_js node_js: - stable cache: yarn: true directories: - node_modules install: - yarn script: - yarn test deploy: provider: npm email: [email protected] api_key: secure: "AjuViYEVHB0kJOP2N/7gXSQiji3rGOeaM2juNDnxvdhoSf91aanKSMQp8Mqt3Oug0vxnWPDuKMvc2M2PxQcyiaN4uNKxIJ2+nl3B/mhBBBvWYbZu5H7KCoL/9UJ+5cSELOTh44C994r1g6AZf2jgaPnWo+bMKBUuuO98B+u6gT/oE+tITJkhc5JPyXP13JiB0gx715utKkXJ3UVKk7H/emWQlOTKLwhTKDMuu2MtEgol3B6yGbA4x+tccEjs6nxUkI9R/b48KUKpXtMosBRdXyWPKT0xkDqGEpmMAVWwDrzuG2yt627WfeVIFumS5lCQCJqusKkUtKh1rA30fVTU9cmcszaqkT+oRtLpXmroxyzBNCJoMFoHGFaEY6mhWSmrLYRMzpyl8v5A6hZNI9Y/kElHgTnbn5HD7is6vQdVRwk8wlUmPxYErDHN6+/GfqBIZAqUS65safMUqs1R9YZTq4UqBM2aO8iPJ3Rg9PVb9T1+iuEYKhKFUc8TNuqCsb+5LYUufdA9KNCDMpO7sUzQlIhqrtQxHL1ZtDOI+vSh4GlqLAVZ9PbdMfK4OxZKxUlBGQjNm3BZJhFVQ4rPZVXNkXH5ZXQPiTGOtTR8giLZ45B9iRcH6xLDzf33EgSEbyFsZpi3KXuVTyBTSGAWeCt50rwq7KI2ynTUnyFa1woDvY8=" on: tags: true repo: oblador/react-native-image-progress condition: "$TRAVIS_TAG =~ ^v[0-9]+\\.[0-9]+\\.[0-9]+.*$"
Add automatic deployments via Travis
Add automatic deployments via Travis
YAML
mit
oblador/react-native-image-progress,oblador/react-native-image-progress,oblador/react-native-image-progress,oblador/react-native-image-progress
647073822f065bdbe1c583e232c3eb3347615836
.travis.yml
.travis.yml
language: node_js cache: yarn node_js: - node - "10" - "8"
language: node_js cache: yarn node_js: - node - "12" - "10" - "8"
Add Node.js 12 to CI
Add Node.js 12 to CI
YAML
mit
ai/nanoevents,ai/nanoevents
e98f2ae9c70feec4c0b3f64123174fe0f4f3a8de
.travis.yml
.travis.yml
sudo: false language: go go: - "1.9.x" - "1.10.x" script: - make
sudo: false language: go go: - "1.9.x" - "1.10.x" - "1.11".x" script: - make
Add Go 1.11 to Travis.
Add Go 1.11 to Travis.
YAML
apache-2.0
mesosphere/mesos_exporter
7c04569ba01bf36c321ac6d01ec0b0054937a313
.travis.yml
.travis.yml
language: python sudo: false cache: pip dist: xenial install: - pip install --upgrade pip - pip install --upgrade --pre -r test-requirements.txt . - pip freeze env: OAUTH2_TOKEN_URL="token_url" OAUTH2_USERDATA_URL="userdata_url" script: - | if [[ "$TEST_LINT" = 1 ]]; then flake8 oauthenticator else py.test --cov oauthenticator oauthenticator fi after_success: - codecov jobs: allow_failures: - python: nightly fast_finish: true include: # Default stage: test - python: 3.7 env: TEST_LINT=1 - python: 3.7 - python: 3.6 - python: 3.5 - python: nightly # Only deploy if all test jobs passed - stage: deploy python: 3.7 if: tag IS present deploy: provider: pypi user: __token__ # password: see secret PYPI_PASSWORD variable distributions: sdist bdist_wheel
language: python sudo: false cache: pip dist: xenial install: - pip install --upgrade pip - pip install --upgrade --pre -r test-requirements.txt . - pip freeze env: OAUTH2_TOKEN_URL="token_url" OAUTH2_USERDATA_URL="userdata_url" script: - | if [[ "$TEST_LINT" = 1 ]]; then flake8 oauthenticator else py.test --cov oauthenticator oauthenticator fi after_success: - codecov jobs: allow_failures: - python: nightly fast_finish: true include: # Default stage: test - python: 3.8 env: TEST_LINT=1 - python: 3.8 - python: 3.7 - python: 3.6 - python: 3.5 - python: nightly # Only deploy if all test jobs passed - stage: deploy python: 3.7 if: tag IS present deploy: provider: pypi user: __token__ # password: see secret PYPI_PASSWORD variable distributions: sdist bdist_wheel
Add py3.8 for CI testing
Add py3.8 for CI testing
YAML
bsd-3-clause
jupyterhub/oauthenticator,NickolausDS/oauthenticator,minrk/oauthenticator
0382b016873efe527ccccb428a54ea610316b6d5
.travis.yml
.travis.yml
language: go matrix: include: - os: linux sudo: required services: - docker - os: osx go: - 1.13.x notifications: email: false install: # NOTE: The (brew update) should not be necessary, and slows things down; # we include it as a workaround for https://github.com/Homebrew/brew/issues/3299 # ideally Travis should bake the (brew update) into its images # (https://github.com/travis-ci/travis-ci/issues/8552 ), but that’s only going # to happen around November 2017 per https://blog.travis-ci.com/2017-10-16-a-new-default-os-x-image-is-coming . # Remove the (brew update) at that time. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install gpgme ; fi script: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then hack/travis_osx.sh ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make vendor && ./hack/tree_status.sh && make check ; fi
language: go matrix: include: - os: linux sudo: required services: - docker - os: osx go: - 1.13.x notifications: email: false install: # Ideally, the (brew update) should not be necessary and Travis would have fairly # frequenstly updated OS images; that’s not been the case historically. # In particular, explicitly unlink python@2, which has been removed from Homebrew # since the last OS image build (as of July 2020), but the Travis OS still # contains it, and it prevents updating of Python 3. - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew unlink python@2 && brew install gpgme ; fi script: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then hack/travis_osx.sh ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then make vendor && ./hack/tree_status.sh && make check ; fi
Fix macOS builds in Travis
Fix macOS builds in Travis ... which are currently failing with > Error: The `brew link` step did not complete successfully > The formula built, but is not symlinked into /usr/local > Could not symlink Frameworks/Python.framework/Headers > Target /usr/local/Frameworks/Python.framework/Headers > is a symlink belonging to python@2. You can unlink it: > brew unlink python@2 because the Travis-installed machine apparently has quite a few Homebrew formulae installed, with an old version of Homebrew, including a now-removed python@2, and that prevents updates of python@3. Remove the obsolete motivation for running (brew update), and replace it with a similarly-good motivation that the Travis images are just too old to be relevant to users. Signed-off-by: Miloslav Trmač <[email protected]>
YAML
apache-2.0
mtrmac/skopeo,mtrmac/skopeo,mtrmac/skopeo
601681b543e63e7e54b624a4c2de74f3afacb7f3
.travis.yml
.travis.yml
--- language: node_js node_js: - '0.10' - '0.11' - '0.12' - node - iojs sudo: false script: - npm test - npm run lint
--- language: node_js node_js: - '4' - node sudo: false script: - npm test - npm run lint
Configure Travis CI to test on Node.js 4 and current
Configure Travis CI to test on Node.js 4 and current
YAML
mit
kemitchell/lispy-json.js
0c6fec96425fbdb5540d04bd528bdc3803ef1a7b
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - 7.1 script: - phpunit install: - composer install
language: php php: - 5.5 - 5.6 - 7.0 - 7.1 install: - composer install script: - phpunit
Modify building script to use some logical order
Modify building script to use some logical order Travis CI first runs `install` step; after that, it runs `script` step.
YAML
mit
checkdomain/Holiday
874410c7d43805760fe71b48e48f09b0b1230247
.travis.yml
.travis.yml
language: clojure lein: lein2 script: lein2 test! branches: only: - master - dev jdk: - oraclejdk7 services: - redis-server notifications: hipchat: rooms: - ec1ead2b384476ea5bcb232b5bb9b6@Snooty Monkey
language: clojure lein: lein2 script: lein2 test! branches: only: - master - dev jdk: - oraclejdk7 services: - redis-server notifications: slack: secure: Xymsv6anNyxB6t79IchZQxjMk14huMEQ1FXCxNRwSmfHzqeRPEvLTEv9JWd6T4xoaoW7a1H5RV5lEyRb9iPV9qE1JVpE22AaZmuxvgLl1kAN1X6LN1vTqN5HCrPGQCuHY0HFbhV0/wewGB3fU02DaXO0qxp7qMxxoH5Z1AJJGfQ=
Update CI notifications from HipChat to Slack.
Update CI notifications from HipChat to Slack.
YAML
mpl-2.0
SnootyMonkey/coming-soon
0b3b5daed53018270d43249614e367be5942274e
.travis.yml
.travis.yml
--- cache: bundler: true language: ruby rvm: - 2.4.5 - 2.5.3 - 2.6.1 before_script: - bundle install script: - bundle exec rspec - bundle exec rubocop --fail-level C
--- cache: bundler: true language: ruby rvm: - 2.4.6 - 2.5.5 - 2.6.3 before_install: - rvm use @global - gem uninstall bundler -x || true - gem install bundler --force --version=2.0.1 - bundler --version - bundle install script: - bundle exec rspec - bundle exec rubocop --fail-level C
Update bundler, drop ruby 2.4 support
Update bundler, drop ruby 2.4 support
YAML
mit
bolshakov/fear,bolshakov/functional
75a3cff40d4bec81127d0a0657a4838a7d3c4596
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 addons: apt: packages: - xvfb - vnc-java - x11vnc - tightvncserver env: - DSPLAY=:0 before_script: - pip install --user codecov after_success: - codecov addons: srcclr: true
language: java jdk: - oraclejdk8 addons: apt: packages: - xvfb - vnc-java - x11vnc - tightvncserver env: - DSPLAY=:0 before_script: - pip install --user codecov after_success: - codecov #addons: # srcclr: true
Disable SourceClear as it breaks the build
Disable SourceClear as it breaks the build
YAML
apache-2.0
ottlinger/fotorenamer,ottlinger/fotorenamer,ottlinger/fotorenamer
407cee8828e6eafeafc87f6d1886a1e9771aa263
.travis.yml
.travis.yml
language: "node_js" node_js: - 0.4 - 0.6 - 0.8
language: "node_js" node_js: - 0.8 - 0.10 - 0.12 - iojs
Update node version for Travis CI.
Update node version for Travis CI.
YAML
mit
Eiryyy/passport-soundcloud
48092c7551bfa4169f09d1a5a69ebb947d866334
.travis.yml
.travis.yml
language: ruby rvm: - "1.9.3-p551" - "2.1.10" - "2.2.5" - "2.3.1"
language: ruby rvm: # - "1.9.3-p551" - "2.1.10" - "2.2.5" - "2.3.1"
Remove Ruby 1.9 from CI.
Remove Ruby 1.9 from CI.
YAML
mit
EVEolve/greeve
859fd08281555b9a0bdaa2b860aa5fbd06ed5cbc
.travis.yml
.travis.yml
rvm: 1.9.3 notifications: email: - [email protected] env: - PUPPET_VERSION=2.7.11
rvm: 1.9.3 notifications: email: - [email protected] env: - PUPPET_VERSION=3.7.2
Set puppet version for tests to 3.7.
Set puppet version for tests to 3.7.
YAML
mit
aptituz/puppet-postfix,aptituz/puppet-postfix
1c3a1e2fca7744e7df0a033357bae3cacbcaed7f
.travis.yml
.travis.yml
language: ruby rvm: - 2.6.5 - 2.5.7 - 2.4.9 - jruby-9.2.8.0 install: - gem install bundler - bundle install --retry=3 env: - ACTIVE_RECORD_BRANCH="master" - ACTIVE_RECORD_VERSION="~> 6.0.0" - ACTIVE_RECORD_VERSION="~> 5.2.0" - ACTIVE_RECORD_VERSION="~> 5.1.0" - ACTIVE_RECORD_VERSION="~> 5.0.0" - ACTIVE_RECORD_VERSION="~> 4.2.0" matrix: fast_finish: true allow_failures: - env: ACTIVE_RECORD_BRANCH="master" exclude: - rvm: 2.4.9 env: ACTIVE_RECORD_BRANCH="master" - rvm: 2.4.9 env: ACTIVE_RECORD_VERSION="~> 6.0.0" - rvm: jruby-9.2.8.0 env: ACTIVE_RECORD_VERSION="~> 4.2.0" addons: code_climate: repo_token: fe5c8a8b1b951a54707c08b6fb2a9a5edf9e0522d28bccc648454f774c9ccab1
language: ruby rvm: - 2.7.0 - 2.6.5 - 2.5.7 - 2.4.9 - jruby-9.2.8.0 install: - gem install bundler - bundle install --retry=3 env: - ACTIVE_RECORD_BRANCH="master" - ACTIVE_RECORD_VERSION="~> 6.0.0" - ACTIVE_RECORD_VERSION="~> 5.2.0" - ACTIVE_RECORD_VERSION="~> 5.1.0" - ACTIVE_RECORD_VERSION="~> 5.0.0" - ACTIVE_RECORD_VERSION="~> 4.2.0" matrix: fast_finish: true allow_failures: - env: ACTIVE_RECORD_BRANCH="master" exclude: - rvm: 2.4.9 env: ACTIVE_RECORD_BRANCH="master" - rvm: 2.4.9 env: ACTIVE_RECORD_VERSION="~> 6.0.0" - rvm: jruby-9.2.8.0 env: ACTIVE_RECORD_VERSION="~> 4.2.0" addons: code_climate: repo_token: fe5c8a8b1b951a54707c08b6fb2a9a5edf9e0522d28bccc648454f774c9ccab1
Test against Ruby 2.7 in CI
Test against Ruby 2.7 in CI
YAML
mit
Casecommons/with_model
f9340fed474aa1d931ab49340ba24bcf9be699e4
.travis.yml
.travis.yml
sudo: required dist: trusty language: ruby cache: bundler addons: postgresql: 9.4 services: - postgresql before_script: - npm install bower - RAILS_ENV=test bin/bundle exec rake db:create db:migrate - RAILS_ENV=production bin/rake assets:precompile script: bin/rails test test/models/ test/controllers/ test/helpers/ test/mailers/ test/jobs/ rvm: - "2.3.3"
sudo: required dist: trusty language: ruby cache: bundler addons: postgresql: 9.4 services: - postgresql before_script: - npm install bower - RAILS_ENV=test bin/bundle exec rake db:create db:migrate - RAILS_ENV=production bin/rake assets:precompile script: bin/rails test test/models/ test/controllers/ test/helpers/ test/mailers/ test/jobs/ rvm: - "2.3.3" - "2.4.0"
Add MRI 2.4.0 to Travis CI.
Add MRI 2.4.0 to Travis CI.
YAML
mit
pwnall/igor,pwnall/igor,pwnall/seven,pwnall/igor,pwnall/igor,pwnall/seven,pwnall/seven,pwnall/igor,pwnall/seven,pwnall/seven
b05e8bbf7636996f7834abcb8da3e7beec85933c
.travis.yml
.travis.yml
language: python python: - '3.6' - '2.7' install: - pip install keras - pip install tensorflow - pip install git+https://github.com/broadinstitute/keras-resnet script: - py.test --pep8
language: python python: - '3.6' - '2.7' install: - pip install keras==2.0.9 - pip install tensorflow - pip install git+https://github.com/broadinstitute/keras-resnet - pip install pytest-pep8 script: - py.test --pep8
Add installation of pytest-pep8 to Travis.
Add installation of pytest-pep8 to Travis.
YAML
apache-2.0
delftrobotics/keras-retinanet
d3100e6a0d3a0be4cbdd6b60ae729b25374f1859
.travis.yml
.travis.yml
# Configuration for Travis (https://travis-ci.org) language: objective-c xcode_workspace: OneTimePassword.xcworkspace xcode_scheme: OneTimePassword osx_image: xcode7.2 xcode_sdk: iphonesimulator9.1 env: - DESTINATION="OS=8.1,name=iPhone 4S" - DESTINATION="OS=8.2,name=iPhone 5" - DESTINATION="OS=8.3,name=iPhone 5S" - DESTINATION="OS=8.4,name=iPhone 6" - DESTINATION="OS=9.0,name=iPhone 6 Plus" - DESTINATION="OS=9.1,name=iPhone 6S" # Check out nested dependencies before_install: git submodule update --init --recursive # A custom test script is required because xctool cannot access the iOS keychain # https://github.com/facebook/xctool/issues/269 script: set -o pipefail && xcodebuild -workspace $TRAVIS_XCODE_WORKSPACE -scheme $TRAVIS_XCODE_SCHEME -sdk $TRAVIS_XCODE_SDK -destination "$DESTINATION" build test | xcpretty -c
# Configuration for Travis (https://travis-ci.org) language: objective-c xcode_workspace: OneTimePassword.xcworkspace xcode_scheme: OneTimePassword osx_image: xcode7.2 xcode_sdk: iphonesimulator9.2 env: - DESTINATION="OS=8.1,name=iPhone 4S" - DESTINATION="OS=8.2,name=iPhone 5" - DESTINATION="OS=8.3,name=iPhone 5S" - DESTINATION="OS=8.4,name=iPhone 6" - DESTINATION="OS=9.0,name=iPhone 6 Plus" - DESTINATION="OS=9.1,name=iPhone 6S" # Check out nested dependencies before_install: git submodule update --init --recursive # A custom test script is required because xctool cannot access the iOS keychain # https://github.com/facebook/xctool/issues/269 script: set -o pipefail && xcodebuild -workspace $TRAVIS_XCODE_WORKSPACE -scheme $TRAVIS_XCODE_SCHEME -sdk $TRAVIS_XCODE_SDK -destination "$DESTINATION" build test | xcpretty -c
Use the iOS 9.2 SDK for Travis builds
Use the iOS 9.2 SDK for Travis builds
YAML
mit
mattrubin/onetimepassword,mattrubin/onetimepassword
b8c351da5c754ab63ab754466e81f04aba694333
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 env: - DB=mysql - DB=sqlite before_script: - cd .. - git clone git://github.com/zendframework/ZendSkeletonApplication.git --recursive - cd ZendSkeletonApplication - cd vendor && mv ~/builds/cdli/CdliTwoStageSignup . && cd - >/dev/null - cp vendor/CdliTwoStageSignup/.travis/composer.json.dist composer.json - php ./composer.phar install - cp vendor/CdliTwoStageSignup/.travis/application.config.php config/ - cp vendor/CdliTwoStageSignup/.travis/database_$DB.local.php config/autoload/ - cp vendor/CdliTwoStageSignup/.travis/module.zfcuser.local.php config/autoload/ - cp vendor/CdliTwoStageSignup/.travis/module.cdlitwostagesignup.local.php config/autoload/ - cp vendor/CdliTwoStageSignup/tests/phpunit.xml.dist vendor/CdliTwoStageSignup/tests/phpunit.xml - test "$DB" = "mysql" && mysql -e 'create database travis_test' script: - cd vendor/CdliTwoStageSignup/tests - phpunit
language: php php: - 5.3 - 5.4 env: - DB=mysql - DB=sqlite before_script: - cd .. - git clone git://github.com/zendframework/ZendSkeletonApplication.git --recursive - cd ZendSkeletonApplication - cd vendor && mv ~/builds/cdli/CdliTwoStageSignup . && cd - >/dev/null - cp vendor/CdliTwoStageSignup/.travis/composer.json.dist composer.json - php ./composer.phar install - cp vendor/CdliTwoStageSignup/.travis/application.config.php config/ - cp vendor/CdliTwoStageSignup/.travis/database_$DB.local.php config/autoload/ - cp vendor/CdliTwoStageSignup/.travis/module.zfcuser.local.php config/autoload/ - cp vendor/CdliTwoStageSignup/.travis/module.cdlitwostagesignup.local.php config/autoload/ - cp vendor/CdliTwoStageSignup/tests/phpunit.xml.dist vendor/CdliTwoStageSignup/tests/phpunit.xml - if [[ "$DB" == "mysql" ]]; then mysql -uroot -e 'create database travis_test'; fi script: - cd vendor/CdliTwoStageSignup/tests - phpunit
Use proper conditional to determine if DB=mysql
Use proper conditional to determine if DB=mysql
YAML
bsd-3-clause
cdli/CdliTwoStageSignup
74cdd120f83eb657f11a5c9093628d9f21de1ce4
.travis.yml
.travis.yml
language: cpp sudo: required services: - docker matrix: include: - env: BUILD_TARGET=linux-gcc BUILD_FLAGS="--with-coverage" - env: BUILD_TARGET=linux-clang BUILD_FLAGS="--sanitizer=undefined,address" before_install: - docker pull mpopoloski/slang:1.1 - docker run -itd --name build mpopoloski/slang:1.1 - docker exec build git clone https://github.com/MikePopoloski/slang.git install: - docker exec build /bin/sh -c "cd slang && scripts/bin/linux/genie --gcc=$BUILD_TARGET $BUILD_FLAGS gmake" script: - export ci_env=`bash <(curl -s https://codecov.io/env)` - if [ "$BUILD_TARGET" == "linux-clang" ]; then docker exec build slang/scripts/build_clang.sh; fi - if [ "$BUILD_TARGET" == "linux-gcc" ]; then docker exec $ci_env build slang/scripts/build_gcc.sh; fi branches: only: - /.*/ git: depth: 1
language: cpp sudo: required services: - docker matrix: include: - env: BUILD_TARGET=linux-gcc BUILD_FLAGS="--with-coverage" - env: BUILD_TARGET=linux-clang BUILD_FLAGS="--sanitizer=undefined,address" before_install: - docker pull mpopoloski/slang:1.2 - docker run -itd --name build mpopoloski/slang:1.2 - docker exec build git clone https://github.com/MikePopoloski/slang.git install: - docker exec build /bin/sh -c "cd slang && scripts/bin/linux/genie --gcc=$BUILD_TARGET $BUILD_FLAGS gmake" script: - export ci_env=`bash <(curl -s https://codecov.io/env)` - if [ "$BUILD_TARGET" == "linux-clang" ]; then docker exec build slang/scripts/build_clang.sh; fi - if [ "$BUILD_TARGET" == "linux-gcc" ]; then docker exec $ci_env build slang/scripts/build_gcc.sh; fi branches: only: - /.*/ git: depth: 1
Update docker image used in linux builds
Update docker image used in linux builds
YAML
mit
MikePopoloski/slang,MikePopoloski/slang
c8019453ff1a63d50596d32e75f7c8a329aa879e
.travis.yml
.travis.yml
language: python python: # - "2.7" - too long, gets killed :'( - "3.2" - "3.3" - "3.4" - "3.5-dev" - "3.5.0b2" - "3.5.0b3" # - "nightly" - "pypy" - "pypy3" before_install: - sudo apt-get update -qq install: - pip install pep8 - pip install --upgrade pyflakes before_script: - pep8 *.py --ignore=E501 # to have the list anyway - pep8 *.py --select=E501 || true - ./get_resources.sh script: - python euler.py - python prime.py - python functions.py
language: python python: # - "2.7" - too long, gets killed :'( - "3.2" - "3.3" - "3.4" - "3.5" - "3.5-dev" - "3.6" - "3.6-dev" - "3.7-dev" # - "nightly" - "pypy" - "pypy3" before_install: - sudo apt-get update -qq install: - pip install pep8 - pip install --upgrade pyflakes before_script: - pep8 *.py --ignore=E501 # to have the list anyway - pep8 *.py --select=E501 || true - ./get_resources.sh script: - python euler.py - python prime.py - python functions.py
Fix used Python versions in CI
Fix used Python versions in CI
YAML
mit
SylvainDe/ProjectEulerPython,SylvainDe/ProjectEulerPython
07d4bebc22fc038ba58a213baf4fcfadc2ff561c
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ree - jruby - rbx-18mode gemfile: - Gemfile - gemfiles/Gemfile.base-versions matrix: exclude: # Nokogiri 1.3.3 is not compatible with Rubinius or JRuby - gemfile: gemfiles/Gemfile.base-versions rvm: rbx-18mode - gemfile: gemfiles/Gemfile.base-versions rvm: jruby before_script: - sh -e /etc/init.d/xvfb start - export DISPLAY=:99.0
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - ree - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode gemfile: - Gemfile - gemfiles/Gemfile.base-versions matrix: exclude: # Nokogiri 1.3.3 is not compatible with Rubinius or JRuby - gemfile: gemfiles/Gemfile.base-versions rvm: rbx-18mode - gemfile: gemfiles/Gemfile.base-versions rvm: rbx-19mode - gemfile: gemfiles/Gemfile.base-versions rvm: jruby-18mode - gemfile: gemfiles/Gemfile.base-versions rvm: jruby-19mode allow_failures: - gemfile: Gemfile rvm: rbx-19mode before_script: - sh -e /etc/init.d/xvfb start - export DISPLAY=:99.0
Test against jruby-19mode and rbx-19mode
Test against jruby-19mode and rbx-19mode rbx-19mode still fails, so we allow_failures.
YAML
mit
tjgrathwell/capybara,olivierlacan/capybara,ducthanh/capybara,pombredanne/capybara,jnicklas/capybara,teamcapybara/capybara,mlarraz/capybara,shepmaster/capybara,y-yagi/capybara,twalpole/capybara,ngpestelos/capybara,benlovell/capybara,soutaro/capybara,teamcapybara/capybara,mlarraz/capybara,mohanraj1311/capybara,pombredanne/capybara,irfanah/capybara,jarib/capybara,tjgrathwell/capybara,mlarraz/capybara,tjgrathwell/capybara,gonzedge/capybara,DariaKalynovska/capybara,jnicklas/capybara,tjouan/capybara,soutaro/capybara,wenbofantasy/capybara,Bartuz/capybara,pombredanne/capybara,wenbofantasy/capybara,soutaro/capybara,ducthanh/capybara,jnicklas/capybara,sideci-sample/sideci-sample-capybara,DariaKalynovska/capybara,jillianrosile/capybara,olivierlacan/capybara,mohanraj1311/capybara,teamcapybara/capybara,Bartuz/capybara,ngpestelos/capybara,mreinsch/capybara,khaidpham/capybara,mreinsch/capybara,randoum/capybara,twalpole/capybara,ngpestelos/capybara,benlovell/capybara,tjouan/capybara,randoum/capybara,jarib/capybara,khaidpham/capybara,shepmaster/capybara,mohanraj1311/capybara,khaidpham/capybara,y-yagi/capybara,twalpole/capybara,y-yagi/capybara,jillianrosile/capybara,irfanah/capybara,Bartuz/capybara,DariaKalynovska/capybara,ducthanh/capybara,ksmaheshkumar/capybara,ksmaheshkumar/capybara,ksmaheshkumar/capybara,jillianrosile/capybara,tjouan/capybara,shepmaster/capybara,sideci-sample/sideci-sample-capybara,gonzedge/capybara,irfanah/capybara,randoum/capybara,olivierlacan/capybara,gonzedge/capybara
95696efe50403ae0919e8758599bcf506bcc9d9f
.travis.yml
.travis.yml
sudo: false language: python cache: pip python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" install: - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements-py3.txt; else pip install -r requirements-py2.txt; fi - pip install coveralls before_script: - psql -U postgres -c 'CREATE DATABASE dummy_test' script: - nosetests --with-coverage --cover-package=csvkit after_success: coveralls
sudo: false language: python cache: pip python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" - "3.7" install: - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements-py3.txt; else pip install -r requirements-py2.txt; fi - pip install coveralls before_script: - psql -U postgres -c 'CREATE DATABASE dummy_test' script: - nosetests --with-coverage --cover-package=csvkit after_success: coveralls
Add support for Python 3.7
Add support for Python 3.7
YAML
mit
wireservice/csvkit,dannguyen/csvkit,onyxfish/csvkit
01bef7b1072152de68cd6475172d99161581c250
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - 2.3.0 - 2.4.0 - jruby before_install: - gem install bundler services: - redis-server
language: ruby rvm: - 1.9.3 - 2.0 - 2.1 - 2.2 - 2.3.0 - 2.4.0 - jruby before_install: - gem install bundler
Remove Redis from Travis config
Remove Redis from Travis config
YAML
mit
gabynaiman/rasti-web,gabynaiman/rasti-web
48bfa32791cea2202238d4094f60dd939fedb9af
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" install: - pip install pipenv - pipenv install --dev script: - pipenv run python -m pytest --cov-report term-missing --cov=pytac - pipenv run flake8 after_success: - coveralls
sudo: false language: python dist: xenial python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" install: - pip install pipenv - pipenv install --dev script: - pipenv run python -m pytest --cov-report term-missing --cov=pytac - pipenv run flake8 after_success: - coveralls
Move to Xenial for Python 3.7 support.
Move to Xenial for Python 3.7 support.
YAML
apache-2.0
willrogers/pytac,willrogers/pytac
80e8b26c46139dcd645a81aab81eb4e262aa6830
.travis.yml
.travis.yml
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-stable-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" # We have to install chef-sugar for ChefSpec - /opt/chefdk/embedded/bin/chef gem install chef-sugar script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec spec
# Use Travis's cointainer based infrastructure sudo: false addons: apt: sources: - chef-current-precise packages: - chefdk # Don't `bundle install` install: echo "skip bundle install" branches: only: - master # Ensure we make ChefDK's Ruby the default before_script: - eval "$(/opt/chefdk/bin/chef shell-init bash)" # We have to install chef-sugar for ChefSpec - /opt/chefdk/embedded/bin/chef gem install chef-sugar script: - /opt/chefdk/embedded/bin/chef --version - /opt/chefdk/embedded/bin/rubocop --version - /opt/chefdk/embedded/bin/rubocop - /opt/chefdk/embedded/bin/foodcritic --version - /opt/chefdk/embedded/bin/foodcritic . --exclude spec - /opt/chefdk/embedded/bin/rspec spec
Use the pre-release builds of chefdk
Use the pre-release builds of chefdk
YAML
apache-2.0
juliandunn/openssh,juliandunn/openssh,opscode-cookbooks/openssh,chef-cookbooks/openssh,juliandunn/openssh,opscode-cookbooks/openssh,chef-cookbooks/openssh
60be3298b2af9d696ef8ff41216250c2dc75ae4d
.travis.yml
.travis.yml
sudo: false language: node_js cache: yarn: true directories: - node_modules - $HOME/.mongodb-prebuilt notifications: email: true node_js: - "7" - "6" - "5" - "4" script: - yarn run coverage - yarn run build after_success: - 'curl -Lo travis_after_all.py https://git.io/travis_after_all' - python travis_after_all.py - export $(cat .to_export_back) &> /dev/null - if [[ "$TRAVIS_JOB_NUMBER" == *.1 && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then bash <(curl -s https://codecov.io/bash); fi - if [[ "$TRAVIS_JOB_NUMBER" == *.1 && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then npm run semantic-release; fi branches: except: - /^v\d+\.\d+\.\d+$/
sudo: false language: node_js cache: yarn: true directories: - node_modules - $HOME/.mongodb-binaries notifications: email: true node_js: - "7" - "6" - "5" - "4" script: - yarn run coverage - yarn run build after_success: - 'curl -Lo travis_after_all.py https://git.io/travis_after_all' - python travis_after_all.py - export $(cat .to_export_back) &> /dev/null - if [[ "$TRAVIS_JOB_NUMBER" == *.1 && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then bash <(curl -s https://codecov.io/bash); fi - if [[ "$TRAVIS_JOB_NUMBER" == *.1 && "$TRAVIS_BRANCH" == "master" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then npm run semantic-release; fi branches: except: - /^v\d+\.\d+\.\d+$/
Add .mongodb-binaries to Travis cache
ci(Travis): Add .mongodb-binaries to Travis cache
YAML
mit
nodkz/graphql-compose-mongoose