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
22592e27e4f768e6e1f2419c50c183de5f00f451
.travis.yml
.travis.yml
--- cache: bundler language: ruby rvm: - 2.3 - 2.4 - 2.5 - 2.6 - jruby-9.2.8.0 jdk: - openjdk8
--- cache: bundler language: ruby rvm: - 2.3 - 2.4 - 2.5 - 2.6 - 2.7 - jruby-9.2.8.0 jdk: - openjdk8
Add ruby 2.7 to CI
Add ruby 2.7 to CI
YAML
mit
ttasanen/connection_pool,mperham/connection_pool
c099e83ef99ba4bdad4f887a7a6872d6090d27bb
.travis.yml
.travis.yml
# After changing this file, check it on: # http://lint.travis-ci.org/ language: python sudo: false python: - 3.4 - 3.5 before_install: # Taken from: http://conda.pydata.org/docs/travis.html # Need to make sure Travis' env isn't running, or Jupyter will pick it up - deactivate # We do this conditionally ...
# Since we really don't want any of Travis' Python language: generic sudo: false os: - linux - osx env: global: - MINICONDA_DIR="$HOME/miniconda" matrix: - Python=3.4 - Python=3.5 before_install: # Taken from: http://conda.pydata.org/docs/travis.html - if [[ $TRAVIS_OS_NAME == 'osx' ]]; then ...
Test on OSX on Travis as well.
Test on OSX on Travis as well.
YAML
mit
julienchastang/unidata-python-workshop,Unidata/unidata-python-workshop,julienchastang/unidata-python-workshop
aa5e401f6fc5821a97793f8b24fa79614671774b
.travis.yml
.travis.yml
dist: xenial install: - PYTHON_MAJOR=$( python -c 'import sys; print(sys.version_info.major)' ) - PYTHON_MINOR=$( python -c 'import sys; print(sys.version_info.minor)' ) - pip install -U pip setuptools - pip install -U --force-reinstall -r requirements-travis.txt - if (( ( $PYTHON_MAJOR > 3 ) || ( $PYTHON_MAJOR ==...
dist: xenial install: - PYTHON_MAJOR=$( python -c 'import sys; print(sys.version_info.major)' ) - PYTHON_MINOR=$( python -c 'import sys; print(sys.version_info.minor)' ) - pip install -U pip setuptools - pip install -U --force-reinstall -r requirements-travis.txt - if (( ( $PYTHON_MAJOR > 3 ) || ( $PYTHON_MAJOR ==...
Revert extra args to CI docs build
ADMIN: Revert extra args to CI docs build Looks like it was out-of-date local docs, somehow.
YAML
mit
bskinn/sphobjinv
b9c4e7c4766d8fd4e2e7ca958b18ba5a72990c6b
.travis.yml
.travis.yml
language: ruby cache: bundler dist: xenial addons: apt: packages: - libarchive-dev # Early warning system to catch if Rubygems breaks something before_install: - gem update --system $(grep rubygems omnibus_overrides.rb | cut -d'"' -f2) - gem install bundler --version $(grep bundler omnibus_overrides.r...
language: ruby cache: bundler dist: xenial addons: apt: packages: - libarchive-dev # Early warning system to catch if Rubygems breaks something before_install: - gem update --system $(grep rubygems omnibus_overrides.rb | cut -d'"' -f2) - gem install bundler --version $(grep bundler omnibus_overrides.r...
Test on Ruby 2.6.3 in Travis
Test on Ruby 2.6.3 in Travis That's what we're shipping Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
YAML
apache-2.0
chef/chef-dk,chef/chef-dk,chef/chef-dk
b1d35403dda855931a1abe7a160598c6b882111b
.travis.yml
.travis.yml
dist: trusty sudo: false addons: apt: packages: - texinfo env: - EMACS_VERSION=24.4 - EMACS_VERSION=24.5 - EMACS_VERSION=25.1 - EMACS_VERSION=25.2 - EMACS_VERSION=25.3 - EMACS_VERSION=26.1 - EMACS_VERSION=git-snapshot matrix: allow_failures: - env: EMACS_VERSION=git-snapshot install: ...
dist: trusty sudo: false addons: apt: packages: - texinfo env: - EMACS_VERSION=24.4-travis - EMACS_VERSION=24.5-travis - EMACS_VERSION=25.1-travis - EMACS_VERSION=25.2-travis - EMACS_VERSION=25.3-travis - EMACS_VERSION=26.1-travis - EMACS_VERSION=git-snapshot matrix: allow_failures: - e...
Test against real Git snapshot on Travis
Test against real Git snapshot on Travis
YAML
mit
raxod502/straight.el,raxod502/straight.el
2e021c4335b2abb3cfb989ab1acd2333eeab5948
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm fast_finish: true before_install: - travis_retry composer self-update install: - composer install --prefer-source before_script: - echo 'phar.readonly = Off' >> ~/.phpenv/versions/$(phpenv ve...
language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm matrix: allow_failures: - php: hhvm fast_finish: true install: - composer install --prefer-source before_script: - echo 'phar.readonly = Off' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini script: phpunit --coverage-...
Update and improve Travis-CI configuration
Update and improve Travis-CI configuration
YAML
isc
secondtruth/php-phar-compiler
96132652118b1fdc62f3be5ae9911b6f7aae85ea
.travis.yml
.travis.yml
language: cpp compiler: - gcc - clang before_install: - sudo apt-get update -qq - wget http://sourceforge.net/projects/boost/files/boost/1.57.0/boost_1_57_0.tar.gz - tar zxvf boost_1_57_0.tar.gz - mv boost_1_57_0 $HOME - export BOOST_ROOT="$HOME/boost_1_57_0" - cd $BOOST_ROOT - ./...
language: cpp compiler: - gcc - clang before_install: - sudo apt-get update -qq - wget http://sourceforge.net/projects/boost/files/boost/1.57.0/boost_1_57_0.tar.gz - tar zxvf boost_1_57_0.tar.gz - mv boost_1_57_0 $HOME - export BOOST_ROOT="$HOME/boost_1_57_0" - cd $BOOST_ROOT - ./...
Add move to rep's dir command.
Add move to rep's dir command. Signed-off-by: Godai Azuma <0f0eab2b3ee7eed768c2dfe49c6ee6c6ec6e6a5d@gmail.com>
YAML
mit
godai0519/BayesianNetwork
ada4bb463b09917fe0749e1e32025654e5879a18
.travis.yml
.travis.yml
sudo: required language: go go: - "1.10.x" - 1.x - tip matrix: allow_failures: - go: tip env: - GO111MODULE=on addons: ssh_known_hosts: github.com apt: update: true packages: - docker-ce services: - docker before_install: - sudo sysctl -w vm.max_map_count=262144 # - docker run -d --rm -p 9200:9200 ...
sudo: required language: go go: - "1.10.x" - 1.x - tip matrix: allow_failures: - go: tip env: - GO111MODULE=on addons: ssh_known_hosts: github.com apt: update: true packages: - docker-ce services: - docker before_install: - if [[ "$TRAVIS_OS_NAME" == "linux" && ! $(which nc) ]] ; then sudo apt-g...
Optimize Travis waiting for ES
ci: Optimize Travis waiting for ES
YAML
mit
guilherme-santos/elastic,olivere/elastic,olivere/elastic,guilherme-santos/elastic
77e64c9b756a9c083e64bcabd4147cbb6218eae6
.travis.yml
.travis.yml
language: ruby bundler_args: '--without development' script: 'bundle exec rspec' rvm: - 2.1.1 - 2.0.0 - 1.9.3 - 1.8.7 - jruby-18mode # JRuby in 1.8 mode - jruby-19mode # JRuby in 1.9 mode
language: ruby bundler_args: '--without development' script: 'bundle exec rspec' rvm: - 2.1.1 - 2.0.0 - 1.9.3 - jruby-19mode # JRuby in 1.9 mode
Remove testing for Ruby 1.8
Remove testing for Ruby 1.8 [Ruby 1.8 has been retired since 30 Jun 2013](https://www.ruby-lang.org/en/news/2013/06/30/we-retire-1-8-7/)
YAML
apache-2.0
highb/pathspec-ruby,highb/pathspec-ruby
f86602b319e33f55b77ca9d473261eab3b22b66f
.travis.yml
.travis.yml
language: php php: - 7.0 - 7.1 - 7.2 before_install: - if [[ $TRAVIS_PHP_VERSION != 7.2 ]]; then pecl install mongodb; fi - echo "extension = mongodb.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini before_script: - composer install --no-interaction script: - mkdir -p build/logs - phpuni...
language: php php: - 7.0 - 7.1 - 7.2 before_install: - if [[ $TRAVIS_PHP_VERSION != 7.2 ]]; then pecl install mongodb; fi - echo "extension = mongodb.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini before_script: - composer install --no-interaction script: - mkdir -p build/logs - vendor...
Use installed version of PHPUnit
Use installed version of PHPUnit
YAML
mit
leroy-merlin-br/mongolid
ead3f5b01e903264332b8880b16504583f1bde60
.travis.yml
.travis.yml
language: c compiler: - gcc install: - sudo apt-get install gcc-multilib g++-multilib before_script: - cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 script: - make branches: only: - master - next
language: c compiler: - gcc install: - sudo apt-get install gcc-multilib g++-multilib - wget http://www.cmake.org/files/v2.8/cmake-2.8.12.1-Linux-i386.sh - sudo sh cmake-2.8.12.1-Linux-i386.sh --exclude-subdir --prefix=/usr before_script: - cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 script: - make ...
Fix Travis error due to outdated CMake
Fix Travis error due to outdated CMake
YAML
apache-2.0
Zeex/sampgdk,WopsS/sampgdk,WopsS/sampgdk,Zeex/sampgdk,WopsS/sampgdk,Zeex/sampgdk
1e81a0f7146ae0f18bda8a49cfb93c88ec941873
.travis.yml
.travis.yml
language: ruby rvm: - 2.2 before_script: - gem install awesome_bot - gem install danger script: - allowed_dupes=CONTRIBUTING - awesome_bot README.md --allow-ssl --white-list $allowed_dupes - danger notifications: email: false
language: ruby rvm: - 2.2 before_script: - gem install awesome_bot - gem install danger script: - allowed_dupes=CONTRIBUTING,SustainForEarth - awesome_bot README.md --allow-ssl --white-list $allowed_dupes - danger notifications: email: false
Whitelist duped links to SustainForEarth
Whitelist duped links to SustainForEarth
YAML
mit
bizz84/Sustainable-Earth
57d526e3bd82897edcdf540e26da1db3a3b53dc1
.travis.yml
.travis.yml
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" before_install: "gem update --system" env: - CI=true rvm: - 2.2 - 2.3 - 2.4 - 2.5 - jruby-9 - rbx-3 cache: bundler sudo: false matrix: allow_failures: - rvm: jruby-9 - rvm: rbx-3 dist: trusty
language: ruby bundler_args: --without debug script: "bundle exec rspec spec" before_install: "gem update --system" env: - CI=true rvm: - 2.2.2 - 2.3 - 2.4 - 2.5 - jruby-9 - rbx-3 cache: bundler sudo: false matrix: allow_failures: - rvm: jruby-9 - rvm: rbx-3 dist: trusty
Use 2.2.2 for Travis, not simply 2.2.
Use 2.2.2 for Travis, not simply 2.2.
YAML
unlicense
ruby-rdf/rdf-aggregate-repo
59ecf00b7c5f51c9b71976835d98dd5b1bee3a36
.travis.yml
.travis.yml
language: node_js node_js: - "7" - "6" - "5" - "4" after_success: yarn run coverage
language: node_js node_js: - "8" - "7" - "6" - "5" - "4" after_success: yarn run coverage
Add support for node 8
Add support for node 8
YAML
mit
venables/koa-helmet
f899f8185095d3184df76b52855476a864a5b18e
.travis.yml
.travis.yml
language: rust rust: - nightly addons: apt: packages: - tree install: - git clone --depth 1 https://github.com/steveklabnik/rustbook.git - cd rustbook && cargo build --release && cd .. script: - rustbook/target/release/rustbook build text/ book/ after_success: - tree book - zip -r too-many-l...
language: rust rust: - nightly addons: apt: packages: - tree install: - git clone --depth 1 https://github.com/steveklabnik/rustbook.git - cd rustbook && cargo build --release && cd .. script: - rustbook/target/release/rustbook build text/ book/ after_success: - tree book - zip -r too-many-l...
Add Travis to Github Release deploy config
Add Travis to Github Release deploy config
YAML
mit
rust-unofficial/too-many-lists,Gankro/too-many-lists
b8b2e1c11ca413151898ec93a636bd359611a8dc
.travis.yml
.travis.yml
language: erlang otp_release: - R16B before_install: - "export DISPLAY=:99.0" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" - mkdir $HOME/src - git clone https://github.com/elixir-lang/elixir.g...
language: erlang otp_release: - R16B before_install: - "export DISPLAY=:99.0" - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" - mkdir $HOME/src - wget https://selenium.googlecode.com/files/seleni...
Add commands to download selenium standalone server
Add commands to download selenium standalone server
YAML
mit
HashNuke/hound,lowks/hound,oivoodoo/hound,HashNuke/hound,jontonsoup/hound,oivoodoo/hound,lowks/hound,jontonsoup/hound,knewter/hound,manukall/hound,esbullington/hound,esbullington/hound,manukall/hound
34b7ecae6277cf91c203f97f6a574ad84a884af0
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - 3.3 - 3.4 notifications: email: false # Setup anaconda 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 - cond...
language: python python: - 2.6 - 2.7 - 3.3 - 3.4 notifications: email: false # Setup anaconda 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 - cond...
Fix conda install to use correct Python version for theano
Fix conda install to use correct Python version for theano
YAML
mit
tkphd/pycalphad,tkphd/pycalphad,tkphd/pycalphad
bfe6a423ea6cf59344f013d3b4351bd9810b6336
.travis.yml
.travis.yml
language: php php: - 5.6 addons: postgresql: "9.3" services: - redis-server env: - TEST_GROUP=ApiComputing - TEST_GROUP=Console,Repository - TEST_GROUP=Rest - TEST_GROUP=Model - TEST_GROUP=Calculator - TEST_GROUP=Service,__nogroup__ before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/...
language: php php: - 5.6 - 7.0 - 7.1 matrix: allow_failures: - php: 7.1 addons: postgresql: "9.3" services: - redis-server env: - TEST_GROUP=ApiComputing - TEST_GROUP=Console,Repository - TEST_GROUP=Rest - TEST_GROUP=Model - TEST_GROUP=Calculator - TEST_GROUP=Service,__nogroup__ befor...
Enable tests on PHP 7.0 and 7.1
Enable tests on PHP 7.0 and 7.1
YAML
mit
Ecodev/gims,Ecodev/gims,Ecodev/gims,Ecodev/gims,Ecodev/gims
3bf9b10e01e9e759a64df9d371aab79252401e98
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "7" - "8" - "9" - "10" install: - yarn install script: - yarn run lint - yarn run compile - yarn run test jobs: include: - stage: after_success script: yarn run coveralls node_js: 9
language: node_js node_js: - "6" - "7" - "8" - "9" - "10" - "11" install: - yarn install script: - yarn run lint - yarn run compile - yarn run test jobs: include: - stage: after_success script: yarn run coveralls node_js: 9
Add node.io version 11 target as a Travis-CI test target.
Add node.io version 11 target as a Travis-CI test target.
YAML
mit
Borewit/peek-readable,Borewit/stream-reader
7976f889146fae9f8728e6ac49a16194be58eb75
.travis.yml
.travis.yml
language: python env: - ANSIBLE_VERSION="1.9.*" - ANSIBLE_VERSION="1.8.*" # - ANSIBLE_VERSION="1.7.*" # - ANSIBLE_VERSION="1.6.*" # - ANSIBLE_VERSION="1.5.*" # - ANSIBLE_VERSION="1.4.*" # - ANSIBLE_VERSION="1.3.*" # - ANSIBLE_VERSION="1.2.*" before_install: - sudo apt-get update -qq install: - pip i...
language: python env: - ANSIBLE_VERSION="2.1.*" - ANSIBLE_VERSION="2.0.*" - ANSIBLE_VERSION="1.9.*" - ANSIBLE_VERSION="1.8.*" # - ANSIBLE_VERSION="1.7.*" # - ANSIBLE_VERSION="1.6.*" # - ANSIBLE_VERSION="1.5.*" # - ANSIBLE_VERSION="1.4.*" # - ANSIBLE_VERSION="1.3.*" # - ANSIBLE_VERSION="1.2.*" before...
Add Travis CI jobs for Ansible 2.0 and 2.1
Add Travis CI jobs for Ansible 2.0 and 2.1
YAML
mit
astorije/ansible-role-shout,astorije/ansible-role-shout,astorije/ansible-lounge
558ada92a9b7864db95531b66c699ab2b1dd665b
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 before_install: "touch ~/do_not_run_bundle" install: "./install.sh" script: "rake spec"
language: ruby rvm: - 1.9.3 - 2.0.0 before_install: "touch ~/do_not_run_bundle" install: "./install.sh" script: "rake specs"
Use the correct specs task on Travis.
Use the correct specs task on Travis.
YAML
mit
Fingertips/Peck-On-Rails,Fingertips/Peck-On-Rails
de0837bdda99c2d5a08114fd17644ccd47c84c81
.travis.yml
.travis.yml
language: php sudo: false matrix: fast_finish: true allow_failures: - php: hhvm include: - php: 7.1 env: PHPSNIFF=1 PHPLINT=1 PHPUNIT=1 - php: 7.0 env: PHPLINT=1 - php: 5.6 env: PHPLINT=1 cache: directories: - $HOME/.composer/cache/files before_script: - composer inst...
language: php sudo: false matrix: fast_finish: true allow_failures: - php: hhvm include: - php: 7.3 env: PHPLINT=1 PHPSNIFF=1 PHPUNIT=1 - php: 7.2 env: PHPLINT=1 - php: 7.1 env: PHPLINT=1 - php: 7.0 env: PHPLINT=1 - ph...
Add PHP 7.2 and 7.3 to tests
Add PHP 7.2 and 7.3 to tests
YAML
mit
palmtreephp/csv
eb0757bc1f3bdeef1a80701fb17309c1f56edd8e
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "pypy" install: - "python setup.py install" - "pip install --use-mirrors WebTest>=1.4.3 pep8==1.4.5 unittest2==0.5.1 wdb==0.9.3" script: - "pep8 --statistics rororo/" - "unit2 discover -s rororo/" - "unit2 discover -s examples/explorer/" - "unit2 dis...
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "pypy" install: - "python setup.py install" - "pip install --use-mirrors 'WebTest>=1.4.3' pep8==1.4.5 unittest2==0.5.1 wdb==0.9.3" script: - "pep8 --statistics rororo/" - "unit2 discover -s rororo/" - "unit2 discover -s examples/explorer/" - "unit2 d...
Fix WebTest installing in Travis CI config.
Fix WebTest installing in Travis CI config.
YAML
bsd-3-clause
playpauseandstop/rororo,playpauseandstop/rororo
36e292cbd3219ddacaf83bded6b64a03f737f4fa
.travis.yml
.travis.yml
os: - linux - windows - osx dist: focal language: python python: - 3.5 - 3.6 - 3.7 - 3.8 - 3.9 - 3.9-dev - pypy3 install: - pip install --upgrade nose coveralls coverage - if [[ $TRAVIS_PYTHON_VERSION == 'pypy'* ]]; then export TRAVIS_WAIT=45; else export TRAVIS_WAIT=20; fi script: tra...
os: linux dist: focal language: python python: - 3.5 - 3.6 - 3.7 - 3.8 - 3.9 - 3.9-dev - pypy3 install: - pip install --upgrade nose coveralls coverage - if [[ $TRAVIS_PYTHON_VERSION == 'pypy'* ]]; then export TRAVIS_WAIT=45; else export TRAVIS_WAIT=20; fi script: travis_wait "${TRAVIS_WAIT}" ...
Remove platforms not supported on Travis CI.
Remove platforms not supported on Travis CI.
YAML
bsd-3-clause
CodeReclaimers/neat-python
ab462d84a8cdae9464eff8639b759156eb0c7393
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm fast_finish: true before_script: - composer install -n cache: directories: - vendor
language: php php: - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm fast_finish: true before_script: - composer install -n script: - vendor/bin/phpunit cache: directories: - vendor
Use phpunit as shipped with the project
Use phpunit as shipped with the project
YAML
mit
Kevinrob/guzzle-cache-middleware
1c8f7ee7bb4128222fc265eb96f0ad64bd322ddb
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - 'iojs' script: 'npm test'
sudo: false language: node_js node_js: - 'node' script: 'npm test'
Use latest Node instead of latest io.js
[Tests] Use latest Node instead of latest io.js
YAML
mit
danawoodman/react-fontawesome
301157f7b2ea45319a06aeaf67eef2594717e1a2
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "8" - "node" os: - linux - osx - windows matrix: allow_failures: - os: osx - os: windows fast_finish: true before_install: | if [ "${TRAVIS_OS_NAME}" = 'windows' ]; then cp test-projects/msdmo.dll /c/Windows/System32/ npm config set script-shell b...
language: node_js node_js: - "6" - "8" - "node" os: - linux - osx - windows matrix: allow_failures: - os: osx - os: windows fast_finish: true before_install: | if [ "${TRAVIS_OS_NAME}" = 'windows' ]; then cp test-projects/msdmo.dll /c/Windows/System32/ npm config set script-shell '...
Fix tests on Windows: npm script-shell
Fix tests on Windows: npm script-shell
YAML
mit
megahertz/electron-log,megahertz/electron-log,megahertz/electron-log
b85249fbe932f02fad7f558bfc941e7b68275f8b
.travis.yml
.travis.yml
language: php sudo : false php: - 5.4 - 5.5 - 5.6 - 7.0 install: - phpize -v - composer selfupdate - composer install --prefer-source - cd ./vendor/phalcon/zephir/ - ./unit-tests/ci/before_install.sh - export LD_LIBRARY_PATH="$TRAVIS_BUILD_DIR/build/lib":$LD_LIBRARY_PATH - export LIBRARY_PATH="$T...
language: php sudo : false php: - 5.5 - 5.6 - 7.0 install: - phpize -v - composer selfupdate - composer install --prefer-source - cd ./vendor/phalcon/zephir/ - ./unit-tests/ci/before_install.sh - export LD_LIBRARY_PATH="$TRAVIS_BUILD_DIR/build/lib":$LD_LIBRARY_PATH - export LIBRARY_PATH="$TRAVIS_BU...
Remove 5.4 support + do not allow failure on php7
Remove 5.4 support + do not allow failure on php7
YAML
mit
fezfez/php-to-zephir
921c71d67ea9dc4b13f9c6d3745cc1ed0976dab8
.travis.yml
.travis.yml
language: ruby cache: bundler sudo: false rvm: - 2.2.2 env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true matrix: - "RAILS_VERSION=4.2.3" notifications: email: recipients: - "ul-dlt-hydra@lists.psu.edu" on_success: "change" on_failure: "always" irc: channels: - "irc.freeno...
language: ruby cache: bundler sudo: false rvm: - 2.2 env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true matrix: - "RAILS_VERSION=4.2.3" notifications: email: recipients: - "ul-dlt-hydra@lists.psu.edu" on_success: "change" on_failure: "always" irc: channels: - "irc.freenode...
Revert "Set ruby 2.2.2 explicitly. Travis casts 2.2 to 2.2.0"
Revert "Set ruby 2.2.2 explicitly. Travis casts 2.2 to 2.2.0" This reverts commit 4f0867497117b274b20086ca1388a23391a7b287.
YAML
apache-2.0
samvera/hyrax,samvera/hyrax,samvera/hyrax,samvera/hyrax
baafa336278d952edab3d5cb3c2dfad484a42994
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 env: global: - REPO_NAME=cakephp-queue - PLUGIN_NAME=Queue - REQUIRE="" - DB=mysql CAKE_VERSION=master matrix: - DB=mysql CAKE_VERSION=2.3 - DB=mysql CAKE_VERSION=2.4 - DB=mysql CAKE_VERSION=2.5 matrix: include: - php: 5.3 env: ...
language: php php: - 5.3 - 5.4 - 5.5 env: global: - REPO_NAME=cakephp-queue - PLUGIN_NAME=Queue - REQUIRE="" - DB=mysql CAKE_VERSION=master matrix: - DB=mysql CAKE_VERSION=2.3 - DB=mysql CAKE_VERSION=2.4 - DB=mysql CAKE_VERSION=2.5 matrix: include: - php: 5.3 env: ...
Load schema before running tests
Load schema before running tests
YAML
mit
mvdriel/cakephp-queue,Oefenweb/cakephp-queue
098d1b661505c30d397595c7a99040dc08ae08fd
.travis.yml
.travis.yml
language: java jdk: - openjdk7 - oraclejdk7 - oraclejdk8 before_install: - sudo rm -f /etc/mavenrc install: - mvn package
language: java jdk: - openjdk7 - oraclejdk7 - oraclejdk8 before_install: - sudo rm -f /etc/mavenrc install: - mvn install -DskipTests -pl kuromoji-ipadic -pl kuromoji-unidic -am script: - mvn test -DskipCompileDictionary -pl kuromoji-ipadic -pl kuromoji-unidic -am
Revert to not build NEologd dictionaries (prevent heap overflow)
Revert to not build NEologd dictionaries (prevent heap overflow)
YAML
apache-2.0
makigumo/kuromoji,cmoen/kuromoji,atilika/kuromoji
43adca5fa5794d7cfec08755f3633eed75122004
.travis.yml
.travis.yml
language: ruby rvm: - jruby-19mode - rbx-19mode - rbx-20mode - 1.9.2 - 1.9.3 - 2.0.0
language: ruby rvm: - jruby-19mode - rbx-19mode - rbx-20mode - 1.9.2 - 1.9.3 - 2.0.0 matrix: allow_failures: - rvm: rbx-19mode - rvm: rbx-20mode
Allow rubinius builds to fail for the time being
Allow rubinius builds to fail for the time being A change was introduced into the latest builds of rubinius that exposes a bug within the multipart-post gem, which incorrectly overrode the respond_to? method. A second change was made in rubinius to avoid these problems when downstream libraries incorrectly override r...
YAML
mit
craiglittle/hello_sign,craiglittle/hello_sign
bd9ed47f7372edba7e05e37f7e3231c2a54a23f2
.travis.yml
.travis.yml
language: node_js notifications: email: on_success: never on_failure: change node_js: - 7 install: - npm install - npm test - npm run lighthouse env: global: - ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4 branches: only: - gh-pages addons: chrome: beta apt: sour...
dist: trusty sudo: false language: node_js notifications: email: on_success: never on_failure: change node_js: - 7 install: - npm install - npm test - npm run lighthouse env: global: - ATOM_ACCESS_TOKEN=da809a6077bb1b0aa7c5623f7b2d5f1fec2faae4 branches: only: - gh-pages addons: ch...
Switch to Trusty for chrome addon support
Switch to Trusty for chrome addon support
YAML
mit
atom/electron.atom.io,atom/electron.atom.io,atom/electron.atom.io,atom/electron.atom.io
618a520feb90a3fa5762cb3d280eeed350cef755
.travis.yml
.travis.yml
language: android jdk: oraclejdk8 android: components: - extra-android-m2repository - build-tools-21.1.2 - android-19 script: - ./gradlew test
language: android jdk: oraclejdk7 android: components: - extra-android-m2repository - build-tools-21.1.2 - android-19 script: - ./gradlew test
Change one thing at once because easier
Change one thing at once because easier
YAML
unlicense
yjliugit/gradletest,WonderCsabo/deckard-gradle,seadowg/deckard-gradle,0359xiaodong/deckard,sweetleon/android-sample-todo-list,vogellacompany/deckard-gradle,Mounika-Chirukuri/deckard,robolectric/deckard,403462630/deckard-gradle-test
3a13714871227eed3ac8b5164ecb61bc657ae753
.travis.yml
.travis.yml
language: vala before_install: - sudo apt-get install cmake - sudo apt-get install cmake-curses-gui - sudo apt-get install cmake-data - sudo apt-get install libjson-glib-1.0-0 - sudo apt-get install libjson-glib-dev - sudo apt-get install bison - sudo apt-get install bison++ - sudo apt-...
language: vala before_install: - sudo apt-get install cmake - sudo apt-get install cmake-curses-gui - sudo apt-get install cmake-data - sudo apt-get install libjson-glib-1.0-0 - sudo apt-get install libjson-glib-dev - sudo apt-get install bison - sudo apt-get install bison++ - sudo apt-...
Adjust downloaded libgee version to handle ubuntu 12.04
Adjust downloaded libgee version to handle ubuntu 12.04
YAML
mit
andrewbenton/apollo
135705071ddf152a432bb3a9a43895df95223a98
.travis.yml
.travis.yml
language: python os: - linux python: - "2.7" - "3.5" - "3.6" matrix: include: - python: "2.7" install: CC=clang python -m pip install . --no-deps -vv - python: "3.7" install: CC=clang python -m pip install . --no-deps -vv dist: xenial sudo: true # Unfortunately there is ...
language: python os: - linux python: - "2.7" - "3.5" - "3.6" - "3.7" - "3.7-dev" - "3.8-dev" - "nightly" matrix: include: - python: "2.7" install: CC=clang python -m pip install . --no-deps -vv - python: "3.7" install: CC=clang python -m pip install . --no-deps -vv before_insta...
Remove dist and sudo from matrix.
Travis: Remove dist and sudo from matrix. It seems this isn't needed anymore.
YAML
apache-2.0
MSeifert04/iteration_utilities,MSeifert04/iteration_utilities,MSeifert04/iteration_utilities,MSeifert04/iteration_utilities
e8773703a416fb87745a176df2898bfb010c854d
.travis.yml
.travis.yml
language: node_js node_js: language: node_js node_js: - "4.1.2"
language: node_js node_js: - '8.11'
Test using node version 8 (as used in production)
Test using node version 8 (as used in production)
YAML
mit
openspending/babbage.ui,openspending/babbage.ui
ff4e92ac4ee7f8379e763fc51635d7314d55415a
.travis.yml
.travis.yml
language: c compiler: gcc sudo: required dist: trusty before_install: - sudo add-apt-repository ppa:vala-team/ppa -y - sudo apt-get update -y - sudo apt-get install -y build-essential gnome-common libglib2.0-dev libgtk-3-dev libgee-0.8 libjson-glib-1.0.0 libjson-glib-dev libvala-0.22-dev valac-0.22 libvte-2.90-de...
language: c compiler: gcc sudo: required dist: trusty before_install: - sudo add-apt-repository ppa:vala-team/ppa -y - sudo apt-get update -y - sudo apt-get install -y build-essential gnome-common libglib2.0-dev libgtk-3-dev libgee-0.8 libjson-glib-1.2.0 libjson-glib-dev libvala-0.22-dev valac-0.22 libvte-2.90-de...
Bump json-glib from 1.0.0 to 1.2.0
[ci] Bump json-glib from 1.0.0 to 1.2.0
YAML
mit
lcallarec/dockery,lcallarec/gnome-docker-manager
c015b33013f5972947829bcf6806a5b099f75ee8
.travis.yml
.travis.yml
language: go go: - 1.3 - tip install: make deps script: make test matrix: allow_failures: - go: tip notifications: slack: secure: IXaOhnCq7GHFQjGWxCv+XPOKRLn9GWWmUhZNaa97Fbrtfz4BL1oNKJ3Cz+7hlj4FY2qRpiyklLJxNxLcWLdR5n1t2uOYZMT05+YNpanRQO2mKANhZlFNle840FAAGU9tLgnkoubY4NcAz9KCeucqz/Wd7vIoVkBEnd9l5f/WwTU=
language: go go: - 1.3 - tip install: make deps before_script: - git --version script: make test matrix: allow_failures: - go: tip notifications: slack: secure: IXaOhnCq7GHFQjGWxCv+XPOKRLn9GWWmUhZNaa97Fbrtfz4BL1oNKJ3Cz+7hlj4FY2qRpiyklLJxNxLcWLdR5n1t2uOYZMT05+YNpanRQO2mKANhZlFNle840FAAGU9tLgnkoubY4NcAz9KCeu...
Print git version before build
Print git version before build
YAML
agpl-3.0
gitorious/git-archive-daemon,Gitorious-backup/git-archive-daemon,Gitorious-backup/git-archive-daemon,gitorious/git-archive-daemon
1b6f59275eb4abaaf52eb5ec0534aa8e4472058b
.travis.yml
.travis.yml
sudo: false language: python matrix: fast_finish: true include: - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - python: 3.6 env: TOXENV=py36 - python: 3.7-dev env: TOXENV=py37 allow_failures: - python: 3.7-dev ...
sudo: false language: python matrix: fast_finish: true include: - python: 3.4 env: TOXENV=py34 - python: 3.5 env: TOXENV=py35 - python: 3.6 env: TOXENV=py36 - python: 3.7-dev env: TOXENV=py37 allow_failures: - python: 3.4 ...
Allow failure of Python 3.4 build
Allow failure of Python 3.4 build There is no pandas wheel available for Python3.4, which causes the build to fail. Since Python 3.4 is getting close to its EOL, it isn't worth the noise on travis.
YAML
apache-2.0
StagPython/StagPy
dcb9fe8f573f8d63dc638db26c51fda999eb44a9
.travis.yml
.travis.yml
rvm: - 2.2.7 - 2.3 - 2.4 gemfile: - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile matrix: exclude: - rvm: 2.4 gemfile: gemfiles/rails_4.2.gemfile sudo: false language: ruby cache: bundler addons: postgresql: "9.4" apt: packages: postgresql-plpy...
rvm: - 2.2.7 - 2.3 - 2.4 gemfile: - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile matrix: exclude: - rvm: 2.4 gemfile: gemfiles/rails_4.2.gemfile sudo: false language: ruby cache: bundler addons: postgresql: "9.4" apt: packages: postgresql-plpy...
Create chronomodel_railsapp on Travis CI
Create chronomodel_railsapp on Travis CI
YAML
mit
ifad/chronomodel
4b8382856ca433ef5b37dd21b1358a2b738bb0af
.travis.yml
.travis.yml
language: node_js cache: yarn node_js: - node - "9" - "8" - "6" git: depth: 5
language: node_js cache: yarn node_js: - node - "8" - "6" git: depth: 5
Remove Node.js 9 from Travis CI
Remove Node.js 9 from Travis CI
YAML
mit
ai/browserslist
c9f0b9fc4c3e85c865ccd6eba33855ab2aea731f
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.3 - jruby-19mode jdk: - oraclejdk7 git: depth: 10 before_install: - gem update bundler
language: ruby rvm: - 2.1.3 jdk: - oraclejdk7 git: depth: 10 before_install: - gem update bundler
Remove jruby build as it intermittently fails
Remove jruby build as it intermittently fails
YAML
apache-2.0
realityforge/dbt
1ac2ba598dbe9b846389619fe77ac7e769045956
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 env: - DB=postgresql script: - RAILS_ENV=test bundle exec rake --trace db:migrate spec before_script: - psql -c 'create user qm with superuser' -U postgres - psql -c 'create database qm_test owner qm' -U postgres
language: ruby rvm: - 2.0.0 env: - DB=postgresql script: - RAILS_ENV=test bundle exec rake --trace db:migrate spec before_script: - psql -c 'create user qm with superuser' -U postgres - psql -d template0 -c 'create extension hstore;' - psql -c 'create database qm_test owner qm' -U postgres
Enable hstore extension in Travis
Enable hstore extension in Travis
YAML
agpl-3.0
civio/quienmanda.es,civio/quienmanda.es,AsunaYuukio/quienmanda.es,civio/quienmanda.es,civio/quienmanda.es,AsunaYuukio/quienmanda.es,AsunaYuukio/quienmanda.es,AsunaYuukio/quienmanda.es
170f855aca7080a01b77161b85f991cc8bab2eb8
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode - rbx-18mode - rbx-19mode - ree before_script: - "psql -c 'create database pg_search_test;' -U postgres >/dev/null"
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx-18mode - rbx-19mode - ree before_script: - "psql -c 'create database pg_search_test;' -U postgres >/dev/null"
Remove JRuby from Travis CI for now
Remove JRuby from Travis CI for now
YAML
mit
mpivaa/pg_search,rigoleto/pg_search,savef/pg_search,savef/pg_search,undergroundwebdesigns/pg_search,mpivaa/pg_search,Casecommons/pg_search,paultyng/pg_search,zvikamenahemi/pg_search,paultyng/pg_search,zvikamenahemi/pg_search,rigoleto/pg_search,undergroundwebdesigns/pg_search,Casecommons/pg_search
011c3cc28b63a220308f00ac2a061eded5b346f5
.travis.yml
.travis.yml
language: ruby script: bundle exec rake test rvm: - 2.2.1 - 2.2.0 - 2.1.0 - 2.0.0 - 1.9.3 - 1.8.7 notifications: slack: secure: GVD9d+kwR5hzab5ZnWugbCkp9QSYyheSrABWkD+LmpMcWcx7jijajSn4LLvDi/zHYn1MdOBcPe08hSygmpm7ViUApp0EJcSzE4BLU/5oAs+ANV0Qq6jsssMlyo3v8eRAqHNiLxAiAsz+lc0EZWfQnSW8kHzzbO3NeYq1NRL5CgQ...
language: ruby script: bundle exec rake test rvm: - 2.2.1 - 2.2.0 - 2.1.0 - 2.0.0 - 1.9.3 - 1.8.7 notifications: slack: secure: CUYqzHxxls0Kc+s/MiKtjJvxQltXu/BpJYKooxQ3dGYKB3USnQCdOx0roE4rjUlClJwicZJxd4nBeiG66zRnVfoOC317qt9Y9vcFuxTjEzG/Okzez4RdfB6UGsqqiJifu7bf/GJMHIQYcgc59508SngCWDYcceKhr962Gz+M/ls=
Add an updated slack notification
Add an updated slack notification
YAML
mit
tmtmtmtm/csv_to_popolo
c463882d068d04727d17c80c9f27a87b3c7d37d3
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" script: - npm test
sudo: false language: node_js node_js: - "0.11" - "0.10" script: - npm test
Use `sudo: false` for faster builds
Use `sudo: false` for faster builds See http://docs.travis-ci.com/user/workers/container-based-infrastructure/
YAML
mit
bookyacom/simple-soundcloud
b0cd82bb8f775174111761ad1de02864e4d3295a
.travis.yml
.travis.yml
language: dlang install: - sudo wget http://netcologne.dl.sourceforge.net/project/d-apt/files/d-apt.list -O /etc/apt/sources.list.d/d-apt.list - sudo apt-get update - sudo apt-get -y --allow-unauthenticated install --reinstall d-apt-keyring - sudo apt-get update - sudo apt-get install dub - sudo apt-get install ...
language: dlang install: - sudo wget http://netcologne.dl.sourceforge.net/project/d-apt/files/d-apt.list -O /etc/apt/sources.list.d/d-apt.list - sudo apt-get update - sudo apt-get -y --allow-unauthenticated install --reinstall d-apt-keyring - sudo apt-get update - sudo apt-get install dub - sudo apt-get install ...
Copy awesomium lib to /usr/lib.
Copy awesomium lib to /usr/lib.
YAML
mit
sylvanmist/Dash,Circular-Studios/Dash
65524e5265f23638d52301d2246e6f79fe0f471a
.travis.yml
.travis.yml
language: python python: - "2.7" virtualenv: system_site_packages: true before_install: - sudo xargs -a apt-packages.txt apt-get install install: - pip install -r base_requirements.txt - pip install nltk==2.0.3 scikit-learn==0.12.1 - sudo mv nltk_data /usr/share/nltk_data - sudo apt-get install python-mat...
language: python python: - "2.7" virtualenv: system_site_packages: true before_install: - sudo xargs -a apt-packages.txt apt-get install install: - pip install -r base_requirements.txt - sudo apt-get install python-matplotlib python-numpy python-scipy python-sklearn - pip install nltk==2.0.3 scikit-learn==0...
Install requirements from apt packages
Install requirements from apt packages
YAML
agpl-3.0
edx/edx-ora,edx/edx-ora,edx/edx-ora,edx/edx-ora
abc7b5fb3a5779747ea92c7a252cfbbfdf4c8392
.travis.yml
.travis.yml
language: cpp compiler: - clang - gcc before_install: - sudo apt-add-repository ppa:sonkun/sfml-stable -y - sudo apt-add-repository ppa:kalakris/cmake -y - sudo apt-get update -q - sudo apt-get install cmake libsfml-dev lcov - sudo pip install cpp-coveralls script: - cmake --version - cmake -DCMAKE_BU...
language: cpp compiler: - clang - gcc before_install: - sudo apt-add-repository ppa:sonkun/sfml-stable -y - sudo apt-add-repository ppa:kalakris/cmake -y - sudo apt-get update -q - sudo apt-get install cmake libsfml-dev lcov - sudo pip install cpp-coveralls script: - cmake --version - cmake -DCMAKE_BU...
Exclude CMakeFiles from coveralls report.
Exclude CMakeFiles from coveralls report.
YAML
apache-2.0
synkarae/Quasar,tempbottle/aquila,zsiciarz/aquila,tempbottle/aquila,zsiciarz/aquila,sav6622/aquila,synkarae/Quasar,synkarae/aquila,sav6622/aquila,sav6622/aquila,synkarae/aquila,tempbottle/aquila,synkarae/Quasar,zsiciarz/aquila,Aldor007/aquila,synkarae/aquila,Aldor007/aquila,Aldor007/aquila,zsiciarz/aquila
2dfea9133da80998f622a35c6308c044ba0b9e70
.travis.yml
.travis.yml
language: java after_success: - mvn jacoco:report coveralls:jacoco jdk: - openjdk8 - openjdk11
language: java after_success: - mvn jacoco:report coveralls:jacoco jdk: - openjdk8 - openjdk11 - openjdk14
Add OpenJDK14 to the test matrix
Add OpenJDK14 to the test matrix
YAML
mit
arteam/simple-json-rpc
77baac23a152a929433af2e6db7a8e097255abf0
.travis.yml
.travis.yml
language: java jdk: - oraclejdk8 sudo: false before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ after_success: - if [ -e ./gradlew ]; then ./gradlew jacocoTestReport;else gradle jacocoTestReport;fi - bash <(curl -s htt...
language: java jdk: - openjdk8 sudo: false before_cache: - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock cache: directories: - $HOME/.gradle/caches/ - $HOME/.gradle/wrapper/ after_success: - if [ -e ./gradlew ]; then ./gradlew jacocoTestReport;else gradle jacocoTestReport;fi - bash <(curl -s https...
Move Travis CI from Oracle JDK to OpenJDK
Move Travis CI from Oracle JDK to OpenJDK
YAML
mit
voostindie/markdoclet,voostindie/markdoclet
b67c0e2ae27b1de14212b636912736cebaeefff0
.travis.yml
.travis.yml
language: php php: - 5.5.9 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm sudo: false install: travis_retry composer install --no-interaction --no-scripts --prefer-source script: vendor/bin/phpunit
language: php php: - 5.5.9 - 5.5 - 5.6 - 7.0 - 7.1 - hhvm sudo: false before_install: cp .env.example .env install: travis_retry composer install --no-interaction --no-scripts --prefer-source script: vendor/bin/phpunit
Copy the .env.example file to .env for Travis
Copy the .env.example file to .env for Travis
YAML
bsd-3-clause
g-forks/Cachet,billmn/Cachet,MatheusRV/Cachet-Sandstorm,elektropay/Cachet,sapk/Cachet,g-forks/Cachet,MatheusRV/Cachet-Sandstorm,sapk/Cachet,coupej/Cachet,karaktaka/Cachet,MatheusRV/Cachet-Sandstorm,coupej/Cachet,NossaJureg/Cachet,billmn/Cachet,billmn/Cachet,coupej/Cachet,NossaJureg/Cachet,MatheusRV/Cachet-Sandstorm,g-f...
b5ef4ae7f912fdfc0378d87bf9cbcb49f8da6b2c
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "7" - "8" - "9" - "10" install: - npm install script: - npm run lint - npm run compile - npm run compile - npm run test jobs: include: - stage: after_success script: npm run coveralls node_js: 9
language: node_js node_js: - "4" - "6" - "7" - "8" - "9" - "10" install: - npm install script: - npm run lint - npm run compile - npm run compile - npm run test jobs: include: - stage: after_success script: npm run coveralls node_js: 9
Add Node version 4 to Travis.
Add Node version 4 to Travis.
YAML
mit
Borewit/strtok3
60d6862fb74c7460ccf3a4d33cebeaf08307e477
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 1.9.3
language: ruby rvm: - 2.1.0 - 2.0.0 - 1.9.3
Add Ruby 2.1.0 to Travis.
Add Ruby 2.1.0 to Travis.
YAML
mit
JesseHerrick/Bukkit-CLI
246a323cbc49d08b6ac4d09dd23922f43fa534eb
.travis.yml
.travis.yml
language: node_js script: - npm install jshint -g - jshint app.js - jshint app_static.js
language: node_js sudo: false script: - npm install jshint - jshint app.js - jshint app_static.js
Migrate to container based tests
Migrate to container based tests
YAML
mit
wolfy1339/TPT-NodeJS,wolfy1339/TPT-NodeJS,wolfy1339/TPT-NodeJS
420b2a70698221cd8cd95d9b3d71c965b448fa19
.travis.yml
.travis.yml
language: go go: - 1.1 - tip install: make deps script: make test notifications: flowdock: secure: fZrcf9rlh2IrQrlch1sHkn3YI7SKvjGnAl/zyV5D6NROe1Bbr6d3QRMuCXWWdhJHzjKmXk5rIzbqJhUc0PNF7YjxGNKSzqWMQ56KcvN1k8DzlqxpqkcA3Jbs6fXCWo2fssRtZ7hj/wOP1f5n6cc7kzHDt9dgaYJ6nO2fqNPJiTc= irc: channel...
language: go go: - 1.1 - tip install: make deps script: make test notifications: flowdock: secure: fZrcf9rlh2IrQrlch1sHkn3YI7SKvjGnAl/zyV5D6NROe1Bbr6d3QRMuCXWWdhJHzjKmXk5rIzbqJhUc0PNF7YjxGNKSzqWMQ56KcvN1k8DzlqxpqkcA3Jbs6fXCWo2fssRtZ7hj/wOP1f5n6cc7kzHDt9dgaYJ6nO2fqNPJiTc= irc: channel...
Allow failures on tip for Travis
Allow failures on tip for Travis
YAML
mpl-2.0
pvanbuijtene/packer,samdunne/packer,israelshirk/packer,jgkim/packer,arizvisa/packer,sneal/packer,quantang/packer,tas50/packer,sean-/packer,zhuzhih2017/packer,grange74/packer,p1-nico/packer,cyberhouse/packer,jae2/packer,gbarberi/packer,orivej/packer,pearkes/packer,israelshirk/packer,mafrosis/packer,eranchetz/packer,mons...
61fef620031ed40588298f779b3a1fe5f797f519
.travis.yml
.travis.yml
language: ruby cache: directories: - vendor/bundle rvm: - 1.9.3 - 2.2.0 - jruby-19mode gemfile: - gemfiles/rails3.2.gemfile - gemfiles/rails4.x.gemfile - gemfiles/sinatra1.x.gemfile notifications: email: false
language: ruby sudo: false cache: directories: - vendor/bundle rvm: - 1.9.3 - 2.2.0 - jruby-19mode gemfile: - gemfiles/rails3.2.gemfile - gemfiles/rails4.x.gemfile - gemfiles/sinatra1.x.gemfile notifications: email: false
Disable sudo to use Travis containers.
Disable sudo to use Travis containers. See http://docs.travis-ci.com/user/workers/container-based-infrastructure/
YAML
mit
envylabs/rapporteur,codeschool/rapporteur,envylabs/rapporteur
8992ae7583029f239bb23fe7a20da4d172f252f6
.travis.yml
.travis.yml
language: "python" sudo: false cache: directories: - $HOME/.cache/pip branches: only: - master env: - TOXENV=py27-twlatest - TOXENV=py27-twtrunk - TOXENV=py27-tw14 # Test inplace on one variant - TOXENV=py27-twlatest DEVELOP=--develop install: - pip install -U pip setuptools wheel - pip ins...
language: "python" sudo: false cache: directories: - $HOME/.cache/pip branches: only: - master env: - TOXENV=py27-twlatest - TOXENV=py27-twtrunk - TOXENV=py27-tw14 # Test inplace on one variant - TOXENV=py27-twlatest DEVELOP=--develop matrix: allow_failures: - env: TOXENV=py27-twtrunk in...
Allow Twisted trunk to fail since it isn't necessarily our fault.
Allow Twisted trunk to fail since it isn't necessarily our fault.
YAML
mit
twisted/mantissa,twisted/mantissa,twisted/mantissa
7b6825d48808565d51b9be24697b6ca9a33b7323
.travis.yml
.travis.yml
language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" - "0.8" - "0.6" - "iojs"
language: node_js node_js: - "4.1" - "4.0" - "0.12" - "0.11" - "0.10"
Change supported versions of node.
Change supported versions of node.
YAML
mit
MicahFulton/TypedQuadTree
a71a2e70f1ba5d9c5033c1b96a859aa0000953e7
.travis.yml
.travis.yml
dist: trusty sudo: required language: java env: - V=0.5.2 before_install: - wget https://github.com/bazelbuild/bazel/releases/download/$V/bazel-$V-installer-linux-x86_64.sh -O install.sh - chmod +x install.sh - ./install.sh --user - rm -f install.sh script: - bazel build //... - bazel test //...
dist: trusty sudo: required language: generic env: - V=0.5.2 before_install: - wget https://github.com/bazelbuild/bazel/releases/download/$V/bazel-$V-installer-linux-x86_64.sh -O install.sh - chmod +x install.sh - ./install.sh --user - rm -f install.sh script: - bazel build //... - bazel test //...
Use language generic to avoid default java build commands
Use language generic to avoid default java build commands
YAML
apache-2.0
cdietze/klay
9ffe61cf1cf3dbe427ed052d1057b69ea7ebc4be
.travis.yml
.travis.yml
--- language: node_js node_js: - "6" sudo: false cache: directories: - $HOME/.cache # includes bowers cache yarn: true env: - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary - EMBER_TRY_SCENARIO=ember-default - COVERAGE=true matrix: fast_finish: true allow_failures: - env: ...
--- language: node_js node_js: - "6" sudo: false cache: directories: - $HOME/.cache # includes bowers cache yarn: true env: - EMBER_TRY_SCENARIO=ember-beta - EMBER_TRY_SCENARIO=ember-canary - EMBER_TRY_SCENARIO=ember-default - COVERAGE=true matrix: fast_finish: true allow_failures: - env: ...
Allow Coverage task failure again 🔨
Allow Coverage task failure again 🔨
YAML
mit
dunnkers/ember-polymer,dunnkers/ember-polymer
6d38d516e84de685219645d14d778bbc0db06995
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci install: - npm install -g npm - npm install --no-package-lock --no-save - npm install -g istanbul coveralls
sudo: false language: node_js node_js: - '4' - '6' - '8' branches: only: - master - travis-ci install: - npm install --no-package-lock --no-save - npm install -g istanbul coveralls
Use the NPM on tap.
Use the NPM on tap.
YAML
mit
bigeasy/rescue
6cd756be2dfda5ed2cff4eb698071ffd909c7057
.travis.yml
.travis.yml
language: node_js node_js: - "5" before_script: - npm install script: npm test notifications: webhooks: urls: - https://webhooks.gitter.im/e/a3509f74f21814b4f5d7 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: alw...
language: node_js node_js: - "6" before_script: - npm install script: npm test notifications: webhooks: urls: - https://webhooks.gitter.im/e/a3509f74f21814b4f5d7 on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: alw...
Change Travis config to use NodeJS 6
Change Travis config to use NodeJS 6
YAML
isc
shobhitg/algo.js
ceb9b446ea4bd416d9cabc224e563af936c4845d
.travis.yml
.travis.yml
dist: precise sudo: false language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk6 env: - CAMUNDA=LATEST - CAMUNDA=7.7.0 - CAMUNDA=7.6.0 - CAMUNDA=7.5.0 - CAMUNDA=7.4.0 - CAMUNDA=7.3.0 before_install: - cat /etc/hosts # optionally check the content *before* - sudo hostname "$(hostname | cut -c1-63...
dist: precise sudo: false language: java jdk: - oraclejdk8 - oraclejdk7 - openjdk6 env: - CAMUNDA=LATEST - CAMUNDA=7.9.0 - CAMUNDA=7.8.0 - CAMUNDA=7.7.0 - CAMUNDA=7.6.0 - CAMUNDA=7.5.0 - CAMUNDA=7.4.0 - CAMUNDA=7.3.0 before_install: - cat /etc/hosts # optionally check the content *before* - su...
Include CI for CAMUNDA 7.8.0 and 7.9.0
Include CI for CAMUNDA 7.8.0 and 7.9.0
YAML
apache-2.0
camunda/camunda-bpm-process-test-coverage,camunda/camunda-process-test-coverage,camunda/camunda-bpm-process-test-coverage,camunda/camunda-process-test-coverage
0ab0ecdfe517410fc4fdcc2ec283c8e2784dcb2a
.travis.yml
.travis.yml
language: node_js node_js: - "6" install: - npm install -g angular-cli - npm install -g karma - npm install before_script: - ng -v - npm run pree2e - ng serve --env=ci & - sleep 30 script: - ng lint - ng test --no-watch - npm run endtoend before_deploy: - npm run package deploy: edge: t...
language: node_js node_js: - "6" install: - npm install -g angular-cli - npm install -g karma - npm install before_script: - ng -v - npm run pree2e - ng serve --env=ci & - sleep 30 script: - ng lint - ng test --no-watch - npm run endtoend before_deploy: - npm run package deploy: edge: ...
Use cf-login branch of Travis deploy tool.
Use cf-login branch of Travis deploy tool. - Suggested on travis-ci/dpl#512
YAML
isc
textbook/known-for-web,textbook/known-for-web,textbook/known-for-web
53a3825150462bcf078f220a060bcf449b9e2c30
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" sudo: false cache: pip script: nosetests
language: python python: - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" sudo: false cache: pip script: nosetests
Add Python 3.6 to build matrix
Add Python 3.6 to build matrix
YAML
mit
iKevinY/EulerPy
4e9caa5cfe65f731bedd7656f68d4e3f029d02c9
.travis.yml
.travis.yml
language: python cache: pip python: - 2.6 - 2.7 # PyPy versions - "pypy" # command to install dependencies install: - pip install . - pip install -r requirements.txt script: - python La-Z-Boy/__main__.py
language: python cache: pip python: - 2.6 - 2.7 # command to install dependencies install: - pip install . - pip install -r requirements.txt script: - python La-Z-Boy/__main__.py
Remove pypy from yml file
Remove pypy from yml file
YAML
mit
madan96/La-Z-Boy
b01942cfa8605962a6e30b316e582f3dfa661b37
.travis.yml
.travis.yml
dist: xenial language: java matrix: fast_finish: true include: - jdk: openjdk8 - jdk: openjdk9 - jdk: openjdk10 - jdk: openjdk11 env: _JAVA_OPTIONS=-Djdk.tls.client.protocols=TLSv1.2 - jdk: openjdk12 - jdk: openjdk13 - jdk: openjdk14 - jdk: openjdk-ea allow_failures: -...
dist: xenial language: java matrix: fast_finish: true include: - jdk: openjdk8 - jdk: openjdk11 env: _JAVA_OPTIONS=-Djdk.tls.client.protocols=TLSv1.2 - jdk: openjdk14 - jdk: openjdk-ea allow_failures: - jdk: openjdk14 - jdk: openjdk-ea
Reduce build matrix to LTS and .ea
Reduce build matrix to LTS and .ea
YAML
mit
mpalourdio/SpringBootTemplate,mpalourdio/SpringBootTemplate
601cf5147f4c8f5d8ebb04c148e2e2273bbea06b
.travis.yml
.travis.yml
language: ruby sudo: false cache: - bundler rvm: - 2.0.0 - 2.1.10 - 2.2.5 - 2.3.1 script: bundle exec rspec env: matrix: - RAILS_VERSION="~> 4.2.0" - RAILS_VERSION="~> 5.0.0" matrix: exclude: - rvm: 2.0.0 env: RAILS_VERSION="~> 5.0.0" - rvm: 2.1.10 env: RAILS_VERSION="~> 5.0.0"...
language: ruby sudo: false cache: - bundler rvm: - 2.0.0 - 2.1.10 - 2.2.6 - 2.3.3 script: bundle exec rspec env: matrix: - RAILS_VERSION="~> 4.2.0" - RAILS_VERSION="~> 5.0.0" matrix: exclude: - rvm: 2.0.0 env: RAILS_VERSION="~> 5.0.0" - rvm: 2.1.10 env: RAILS_VERSION="~> 5.0.0"...
Update Ruby version on Travis CI
Update Ruby version on Travis CI
YAML
mit
r7kamura/view_source_map,r7kamura/view_source_map,r7kamura/view_source_map
8ad6007f1b5fcabc0643484fabf3b5a82a0397da
.travis.yml
.travis.yml
language: go go: - 1.7.x script: - go test -v ./lib
language: go go: - 1.7.x install: - go get -u github.com/evantbyrne/cryptdir script: - go test -v ./lib
Add go get command to Travis CI config
Add go get command to Travis CI config
YAML
isc
evantbyrne/cryptdir
5edfd02996fa228f3034694391430667cf4f0198
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "iojs" - "4" - "5"
language: node_js node_js: - "0.12" - "iojs" - "4" - "5"
Drop support for node 0.10
Drop support for node 0.10
YAML
mit
sourdough-css/preprocessor
2757a01a0b78427665abd6f8507a5b356b5972ee
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" script: python -m pytest ./tests/ install: pip install .
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" - "3.6" script: python -m pytest ./tests/ install: pip install .[dev]
Install pytest with pip to fix test failure py3.3
Install pytest with pip to fix test failure py3.3
YAML
bsd-3-clause
smitchell556/cuttlepool,smitchell556/cuttlepool
7073df5db231608feccd3a9f339e181869b5d871
.travis.yml
.travis.yml
# make it explicit that we favor the new container-based travis workers sudo: false language: python python: - 2.7 - 3.4 notifications: email: false addons: apt: packages: - gfortran - libatlas-dev - libblas-dev - liblapack-dev - python-dev - python-scipy install: -...
language: python sudo: false matrix: include: # "Legacy" environments: oldest supported versions, without and with numba - python: "2.7" env: DEPS="numpy scipy matplotlib pandas" - python: "3.5" env: DEPS="numpy scipy matplotlib pandas" before_install: - if [ ${TRAVIS_PYTHON_VERSION:0:1} ...
Complete new approach, again based on miniconda
Complete new approach, again based on miniconda
YAML
apache-2.0
JrtPec/opengrid,WolfBerwouts/opengrid,MatteusDeloge/opengrid,WolfBerwouts/opengrid,MatteusDeloge/opengrid,JrtPec/opengrid,MatteusDeloge/opengrid
8f855a4202a3c0f8f86b94ef7317d15364e6fde4
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "7" - "8" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: "sudo apt-get update && sudo apt-get install -y libcairo2-dev libjpeg8-dev libgif-dev optipng pngcrush pngquant libpango1.0-dev graphicsmagick lib...
language: node_js node_js: - "8" - "9" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: "sudo apt-get update && sudo apt-get install -y libcairo2-dev libjpeg8-dev libgif-dev optipng pngcrush pngquant libpango1.0-dev graphicsmagick libjpeg-tur...
Build with node.js 8 and 9 only
Travis: Build with node.js 8 and 9 only
YAML
bsd-3-clause
assetgraph/assetgraph-builder
445220c695fafea0414b34d8bbeea25515014f00
.travis.yml
.travis.yml
language: node_js node_js: - 4.5.0 - 6.2.0 sudo: false script: - node bin/ci.js env: matrix: - TEST_TYPE=lint_and_test_unit - TEST_TYPE=integration_test - TEST_TYPE=test_create_project cache: directories: - node_modules deploy: provider: npm email: paulo@ragonha.me api_key: secure: uwtKe6c+QPSOi7Q...
language: node_js node_js: - 4.5.0 - 6.2.0 sudo: false script: - node bin/ci.js env: matrix: - TEST_TYPE=lint_and_test_unit - TEST_TYPE=test_create_project cache: directories: - node_modules deploy: provider: npm email: paulo@ragonha.me api_key: secure: uwtKe6c+QPSOi7QLCGmVw5cIxl4XDAhaxVWKmRT/GA5CUA...
Disable integration tests in Travis 😭
Disable integration tests in Travis 😭 We need further investigation why it only fails in Travis. In the meantime, it still runs locally in development while triggering `npm test`.
YAML
mit
saguijs/sagui,saguijs/sagui
6c566f789091edd047a4f4a72168b4035b89c9c9
.travis.yml
.travis.yml
language: c sudo: false script: - bash arch-bootstrap.sh /var/lib/machines/archlinux
language: c script: - sudo arch-bootstrap.sh /var/lib/machines/archlinux
Switch to non-container based solution to use chroot
Switch to non-container based solution to use chroot
YAML
apache-2.0
sysjitter/arch-ua-netinst
f4b5f5a256c4a7a1c4b1bc31188792db411806ad
.travis.yml
.travis.yml
env: global: secure: UwdKDjxRCHfj2nCYrdHgYx8MkfnL/P23vSBJcbWQsdf64uIJLynyJ6tpUdurdHV8se+/1S+YvASBsfumJIMiCcwLaAgwmO3z+HYwfZvEWb4HT1kjuUnz13ZQwswlb6SFQJEPp0gb1zKthjGjdFupWLieqLwjerD/gs91NFC2ycI= language: php php: - 5.4 - 5.5 - 5.6 - hhvm install: - travis_retry composer config -g github-oauth.github....
env: global: secure: UwdKDjxRCHfj2nCYrdHgYx8MkfnL/P23vSBJcbWQsdf64uIJLynyJ6tpUdurdHV8se+/1S+YvASBsfumJIMiCcwLaAgwmO3z+HYwfZvEWb4HT1kjuUnz13ZQwswlb6SFQJEPp0gb1zKthjGjdFupWLieqLwjerD/gs91NFC2ycI= language: php php: - 5.4 - 5.5 - 5.6 - 7.0 - hhvm install: - travis_retry composer config -g github-oauth...
Add PHP 7.0 and update composer-asset-plugin version
Add PHP 7.0 and update composer-asset-plugin version
YAML
unlicense
janisto/yii2-environment
2967b101a55de34f078c6b673c6087221c3d28e1
.travis.yml
.travis.yml
language: go sudo: false matrix: include: - go: 1.4 - go: 1.5 - go: 1.6 - go: 1.7 - go: 1.8 - go: 1.9 - go: tip allow_failures: - go: tip script: - go get -t -v ./... - diff -u <(echo -n) <(gofmt -d .) - go vet $(go list ./... | grep -v /vendor/) - go test -v -race ./...
language: go sudo: false matrix: include: - go: 1.4.x - go: 1.5.x - go: 1.6.x - go: 1.7.x - go: 1.8.x - go: 1.9.x - go: tip allow_failures: - go: tip script: - go get -t -v ./... - diff -u <(echo -n) <(gofmt -d .) - go vet $(go list ./... | grep -v /vendor/) - go test -v -r...
Use latest patch releases of Go
Use latest patch releases of Go
YAML
bsd-2-clause
gorilla/websocket
ffd0614cb15a330da7778927f76448066d4c94b3
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 before_script: # Install code quality tools - wget http://pear.phpunit.de/get/phpcpd.phar # Install composer for dependency management - wget http://getcomposer.org/composer.phar # Set the GitHub OAuth token to make use of the 6000 per hour rate limit ...
language: php php: - 5.3 - 5.4 - 5.5 before_script: # Install code quality tools - wget http://pear.phpunit.de/get/phpcpd.phar # Install composer for dependency management - wget http://getcomposer.org/composer.phar # Set the GitHub OAuth token to make use of the 6000 per hour rate limit ...
Move phpcpd check to after_script to prevent build failure
Move phpcpd check to after_script to prevent build failure
YAML
mit
webignition/web.client.simplytestable.com,webignition/web.client.simplytestable.com,webignition/web.client.simplytestable.com
58ec1630cfe74f5bdb8f238f335b0640372f12b3
.travis.yml
.travis.yml
# Travis-CI configuration file for Plinth dist: trusty sudo: required language: generic env: - DJANGO_VERSION=">=1.10.0" # Debian packages required before_install: - sudo apt-get update -qq - sudo apt-get -y install augeas-tools python3-dev python3-gi libaugeas-dev # Command to install dependencies install: ...
# Travis-CI configuration file for Plinth dist: trusty sudo: required language: generic env: - DJANGO_VERSION=">=1.10.0" # Debian packages required before_install: - sudo apt-get update -qq - sudo apt-get -y install augeas-tools python3-dev python3-gi libaugeas-dev # Command to install dependencies install: ...
Move CI notifications to new channel
Move CI notifications to new channel Signed-off-by: James Valleroy <46e3063862880873c8617774e45d63de6172aab0@mailbox.org>
YAML
agpl-3.0
vignanl/Plinth,vignanl/Plinth,vignanl/Plinth,vignanl/Plinth,vignanl/Plinth
0e9323200449f5d2005cc21f37a4f12246fe9371
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "5" - "6" - "7" - "8" before_script: - npm install -g grunt-cli
language: node_js node_js: - "4" - "5" - "6" - "7" - "8" - "10" - "stable" before_script: - npm install -g grunt-cli
Test against more node versions
Test against more node versions Also, lock our node 4 to a known working version
YAML
mit
C2FO/fast-csv,C2FO/fast-csv
182f071479a4b02f92d71fcb6d022c7303e73886
.travis.yml
.travis.yml
--- # Configuration branches: only: - master cache: bundler: true env: - NLT_DB_USER=travis NLT_DB_PASS='' language: ruby rvm: - 2.3.1 services: - redis-server # Phases before_install: - gem update --system - gem install bundler - source bin/phantomjs.sh script: - RAILS_ENV=test bin/rake...
--- # Configuration addons: postgresql: '9.6' branches: only: - master cache: bundler: true dist: trusty env: - NLT_DB_USER=travis NLT_DB_PASS='' language: ruby rvm: - 2.3.1 services: - postgresql - redis-server sudo: false # Phases before_install: - gem update --system - gem install b...
Make sure we test against the same pg we're using
Make sure we test against the same pg we're using It should fix some CI warnings: ``` psql:/home/travis/build/alabs/nolotiro.org/db/structure.sql:9: ERROR: unrecognized configuration parameter "lock_timeout" psql:/home/travis/build/alabs/nolotiro.org/db/structure.sql:10: ERROR: unrecognized configuration paramet...
YAML
agpl-3.0
alabs/nolotiro.org,alabs/nolotiro.org,alabs/nolotiro.org,alabs/nolotiro.org
0ec812314c366b77206942e233bb592f7ecef3a0
.travis.yml
.travis.yml
language: cpp sudo: true os: - linux compiler: - clang - gcc branches: only: - master # Install dependencies before_install: # Avoids a lengthy upgrade process for the java packages. - sudo apt-mark hold oracle-java7-installer oracle-java8-installer - sudo apt-get update -qq - if [ "$CXX" = "g++...
language: cpp sudo: true os: - linux compiler: - clang - gcc branches: only: - master # Install dependencies before_install: # Avoids a lengthy upgrade process for the java packages. - sudo apt-mark hold oracle-java7-installer oracle-java8-installer - sudo apt-get update -qq - if [ "$CXX" = "g++...
Correct paths to scripts for wget.
Correct paths to scripts for wget.
YAML
mit
samkellett/g2,samkellett/g2
4ed0b1f240a57992aa59921096fb09db829ff5fc
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "4" - "0.12"
language: node_js node_js: - stable - "6" - "4" - "0.12"
Add nod.js 7 to Travis CI
Add nod.js 7 to Travis CI
YAML
mit
yisibl/autoprefixer,postcss/autoprefixer,rzhw/autoprefixer
2583d02b9a65672028657c0f2fd4029313c4dd4b
.travis.yml
.travis.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use ...
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use ...
Use `dist: trusty` for Travis CI
Use `dist: trusty` for Travis CI
YAML
apache-2.0
apache/httpcore,apache/httpcore,apache/httpcomponents-core
6fd45ad652ad364b11c7f180a8b9fd703b5602c5
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 # Important to specify the simulator SDK, otherwise Travis CI will attempt to # build for the real iPhone and fail due to code-signing issues. xcode_sdk: iphonesimulator before_install: - brew update - brew uninstall xctool && brew install --HEAD xctool xcode_project: Sn...
language: objective-c osx_image: xcode8 before_install: - gem install xcpretty env: matrix: - DESTINATION="name=iPhone 6s" script: - xcodebuild -sdk "$TRAVIS_XCODE_SDK" -scheme "$TRAVIS_XCODE_SCHEME" -destination "$DESTINATION" test | xcpretty && exit ${PIPESTATUS[0]} # Important to specify the simulator ...
Update Travis configuration for Swift 3, Xcode 8
Update Travis configuration for Swift 3, Xcode 8
YAML
mit
royratcliffe/Snippets,royratcliffe/Snippets
fd30cd9d3a23a5dc4d8382af4372800ba7735445
.travis.yml
.travis.yml
dist: trusty language: node_js node_js: - 6.10.1
dist: trusty language: node_js node_js: - lts/* - node
Build CI on both LTS and current node versions
Build CI on both LTS and current node versions
YAML
mit
mpalourdio/ng-http-loader,mpalourdio/ng-http-loader,mpalourdio/ng-http-loader
2405868023d44dd431ebcf580d0e18aae91eb366
.travis.yml
.travis.yml
language: java jdk: oraclejdk7 before_install: - export TERM=dumb - sudo apt-get install -qq libstdc++6:i386 lib32z1 - export COMPONENTS=build-tools-19.0.3,android-19,extra-android-m2repository - curl -L https://raw.github.com/embarkmobile/android-sdk-installer/version-1/android-sdk-installer | bash /dev/stdi...
language: android jdk: oraclejdk7 android: components: - build-tools-22.0.1 - android-22 - extra-android-m2repository notifications: email: false
Refactor to use new Travis Android support configuration
Refactor to use new Travis Android support configuration
YAML
apache-2.0
jraska/scalpel
eb0bd0a4061cd6efaf00771b1369e217feca0677
.travis.yml
.travis.yml
language: node_js node_js: - 0.4 - 0.6
language: node_js node_js: - 0.4 - 0.6 - 0.8
Test on TravisCL for v0.8 of Node.JS
Test on TravisCL for v0.8 of Node.JS
YAML
mit
cha0s-repo/data2xml
101b07cb8cdcdbd2149cee9adf6a8dd467a5f8de
.travis.yml
.travis.yml
language: ruby rvm: - "2.2.0" - "2.1.5" - "2.0.0" - "1.9.3" - "rbx-2.5.2" - "jruby-1.7.19" gemfile: - "gemfiles/rails_3.2.gemfile" - "gemfiles/rails_4.0.gemfile" - "gemfiles/rails_4.1.gemfile" - "gemfiles/rails_4.2.gemfile" script: 'bundle exec rake test' before_install: - sudo sh -c "echo 'JVM_OP...
language: ruby rvm: - "2.2.0" - "2.1.5" - "2.0.0" - "rbx-2.5.2" - "jruby-1.7.19" gemfile: - "gemfiles/rails_3.2.gemfile" - "gemfiles/rails_4.0.gemfile" - "gemfiles/rails_4.1.gemfile" - "gemfiles/rails_4.2.gemfile" script: 'bundle exec rake test' before_install: - sudo sh -c "echo 'JVM_OPTS=\"\${JVM_...
Remove Ruby 1.9 from Travis configuration
Remove Ruby 1.9 from Travis configuration It went EOL
YAML
mit
antek-drzewiecki/cequel,zenonas/cequel,elgalu/cequel,antek-drzewiecki/cequel,maxpospischil/cequel,jhannus/cequel,Galeria-Kaufhof/cequel,orenmazor/cequel,maxpospischil/cequel,visfleet/cequel,bobbrez/cequel,lesliev/cequelb,visfleet/cequel,edpaget/cequel,AdStage/cequel,devnut/cequel,shaqonline/cequel,lesliev/cequel,AdStag...
df550de251b9702453b7007a681b1ff5dbeb9475
.travis.yml
.travis.yml
language: node_js node_js: - 0.4 - 0.6
language: node_js node_js: - 0.4 - 0.6 - 0.8
Add 0.8 to Travis file
Add 0.8 to Travis file
YAML
mit
B2MSolutions/node-ignition
c2a3c4942ec1e449eabfe428abdf741feaf0d485
.travis.yml
.travis.yml
language: node_js node_js: - "node" deploy: provider: surge project: ./dist/ domain: convulator.surge.sh skip_cleanup: true
language: node_js node_js: - "node" script: - npm test - npm run production deploy: provider: surge project: ./dist/ domain: convulator.surge.sh skip_cleanup: true
Add production build to Travis
Add production build to Travis
YAML
mit
blgm/convulator,blgm/convulator
a3915dfbb5139bccb830278902e93175a81ca71e
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" script: mocha after_success: mocha --require blanket --reporter mocha-lcov-reporter | coveralls
language: node_js node_js: - "0.10.36" script: mocha after_success: mocha --require blanket --reporter mocha-lcov-reporter | coveralls
Fix node's revision to 0.10.36 for the bug of blanket.js.
Fix node's revision to 0.10.36 for the bug of blanket.js.
YAML
cc0-1.0
shishidosoichiro/markr.js,shishidosoichiro/markr.js
277fac9df3b7d980574b23012ab9b87be23c443e
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" env: - DJANGO_VERSION=1.3.1 - DJANGO_VERSION=1.4.2 install: - python setup.py develop script: - bash test.sh
language: python python: - "2.6" - "2.7" env: - DJANGO_VERSION=1.3.7 - DJANGO_VERSION=1.4.10 - DJANGO_VERSION=1.5.5 - DJANGO_VERSION=1.6.2 install: - python setup.py develop script: - bash test.sh
Update Django versions for Travis
Update Django versions for Travis
YAML
bsd-3-clause
SilentCircle/django-brake,SilentCircle/django-brake,skorokithakis/django-brake,skorokithakis/django-brake
d225652db4ed02102fd4e85a4d6262327aab0b0a
metadata/com.example.trigger.yml
metadata/com.example.trigger.yml
Categories: - Internet - Security License: GPL-2.0-or-later SourceCode: https://github.com/mwarning/trigger IssueTracker: https://github.com/mwarning/trigger/issues AutoName: Trigger Summary: Open a door over WiFi or the Internet Description: | Call a HTTPS link to open/close a doors and request its status. ...
Categories: - Internet - Security License: GPL-2.0-or-later SourceCode: https://github.com/mwarning/trigger IssueTracker: https://github.com/mwarning/trigger/issues AutoName: Trigger Summary: Open a door over WiFi or the Internet Description: | Call a HTTPS link to open/close a doors and request its status. ...
Update Trigger to 1.4.0 (140)
Update Trigger to 1.4.0 (140)
YAML
agpl-3.0
f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata
7fd974b3687f88f81aedf6d327db0778cc080c10
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.5" - "3.6" - "3.7" - "3.8-dev" - "pypy" - "pypy3" install: - pip install tox-travis coveralls script: - tox #- coverage run --source mappyfile -m py.test #- coverage report -m after_success: - coveralls
sudo: false language: python python: - "2.7" - "3.5" - "3.6" - "3.7-dev" - "pypy" - "pypy3" install: - pip install tox-travis coveralls script: - tox #- coverage run --source mappyfile -m py.test #- coverage report -m after_success: - coveralls
Revert Travis as Python 3.8-dev not available
Revert Travis as Python 3.8-dev not available
YAML
mit
geographika/mappyfile,geographika/mappyfile
0004c3f2f8e8d8d5273c50264b2791c115b4e510
.travis.yml
.travis.yml
language: ruby rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby-18mode - jruby-19mode before_install: - sudo apt-get update - sudo apt-get --no-install-recommends install tracker gir1.2-tracker-0.14 libtracker-sparql-0.14-dev libgirepository1.0-dev gobject-introspection before_script: - "export DISPLAY=:99.0" - "...
language: ruby rvm: - 1.9.2 - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode - rbx before_install: - sudo apt-get update - sudo apt-get --no-install-recommends install tracker gir1.2-tracker-0.14 libtracker-sparql-0.14-dev libgirepository1.0-dev gobject-introspection before_script: - "export DISPLAY=:99.0" - ...
Update list of rubies for Travis CI
Update list of rubies for Travis CI - Stop worrying about Ruby 1.8 - Add newer MRIs, and Rubinius
YAML
lgpl-2.1
mvz/gir_ffi-tracker
28bc6bf4a6df8ef0a31bb27d12d2274f35809b6a
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 2.1 - 2.2 - jruby-1.7.10 script: bundle exec rspec gemfile: - gemfiles/Gemfile-rspec-2.14.x - gemfiles/Gemfile-rspec-2.99.x - gemfiles/Gemfile-rspec-3.0.x - gemfiles/Gemfile-rspec-3.1.x - gemfiles/Gemfile-rspec-3.2.x
language: ruby sudo: false cache: bundler rvm: - 2.0.0 - 2.1 - 2.2 - jruby-1.7.10 script: bundle exec rspec gemfile: - gemfiles/Gemfile-rspec-2.14.x - gemfiles/Gemfile-rspec-2.99.x - gemfiles/Gemfile-rspec-3.0.x - gemfiles/Gemfile-rspec-3.1.x - gemfiles/Gemfile-rspec-3.2.x
Use container-based stack and caching of TravisCI
Use container-based stack and caching of TravisCI
YAML
mit
JohnBat26/turnip_formatter,JohnBat26/turnip_formatter,gongo/turnip_formatter,gongo/turnip_formatter,gongo/turnip_formatter,JohnBat26/turnip_formatter
de0933b3ca5edc55cc4c9bd78c6c98896d584984
.travis.yml
.travis.yml
language: python env: - DJANGO="Django>=1.8,<1.9" - DJANGO="Django>=1.9,<1.10" - DJANGO="Django>=1.10,<1.11" - DJANGO="Django>=1.11,<1.12" python: - "2.7" - "3.4" - "3.5" - "3.6" install: - pip install --upgrade pip setuptools - pip install $DJANGO - pip install . - pip install coveralls - pip...
language: python env: - DJANGO="Django>=1.8,<1.9" - DJANGO="Django>=1.9,<1.10" - DJANGO="Django>=1.10,<1.11" - DJANGO="Django>=1.11,<1.12" python: - "2.7" - "3.4" - "3.5" - "3.6" install: - pip install --upgrade pip setuptools - pip install $DJANGO - pip install . notifications: irc: "irc.freeno...
Remove thing that doesn't understand dependencies.
Remove thing that doesn't understand dependencies.
YAML
bsd-2-clause
frankier/mezzanine,dsanders11/mezzanine,stephenmcd/mezzanine,frankier/mezzanine,molokov/mezzanine,stephenmcd/mezzanine,jerivas/mezzanine,dsanders11/mezzanine,molokov/mezzanine,readevalprint/mezzanine,readevalprint/mezzanine,christianwgd/mezzanine,dsanders11/mezzanine,molokov/mezzanine,readevalprint/mezzanine,stephenmcd...