commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
old_contents
stringlengths
0
4.24k
new_contents
stringlengths
1
5.44k
subject
stringlengths
14
778
message
stringlengths
15
9.92k
lang
stringclasses
277 values
license
stringclasses
13 values
repos
stringlengths
5
127k
bb6771edc1328ed84aa58e9fd241179c8319d0be
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - 2.2.9 - 2.3.6 - 2.4.3 - 2.5.0 gemfile: - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile - gemfiles/rails_5.2.gemfile
language: ruby sudo: false rvm: - 2.2.10 - 2.3.7 - 2.4.4 - 2.5.1 gemfile: - gemfiles/rails_5.0.gemfile - gemfiles/rails_5.1.gemfile - gemfiles/rails_5.2.gemfile
Test against latest Ruby versions
Test against latest Ruby versions
YAML
mit
DavyJonesLocker/client_side_validations,DavyJonesLocker/client_side_validations,DavyJonesLocker/client_side_validations
122448d351b26127524b2acdffcc3bd7600d79f1
.travis.yml
.travis.yml
language: objective-c osx_image: xcode61 before_install: - brew update - if brew outdated | grep -qx xctool; then brew upgrade xctool; fi - sudo easy_install cpp-coveralls script: - xctool clean build -project AutoLayout.xcodeproj -scheme AutoLayout - xctool test -project AutoLayout.xcodeproj -scheme AutoL...
language: objective-c osx_image: xcode61 before_install: - sudo easy_install cpp-coveralls script: - xcodebuild clean build test -project AutoLayout.xcodeproj -scheme AutoLayout -sdk iphonesimulator8.2 ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES after_success: ...
Update Travis file for Coveralls
Update Travis file for Coveralls
YAML
mit
marcbaldwin/AutoLayoutBuilder,marcbaldwin/AutoLayoutBuilder
ebc7adacab81736fa020b84bb7c9c889d7bae869
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.3.0 before_install: gem install bundler -v 1.13.6
sudo: false language: ruby rvm: - 1.9 - 2.0 - 2.1 - 2.2 - 2.3 - jruby before_install: gem install bundler -v 1.13.6
Add more versions for CI
Add more versions for CI
YAML
mit
Tonkonozhenko/fv
67e2306e0ad8b0e8d6a825a7d9a40a6d87629ff7
.travis.yml
.travis.yml
# Documentation relevant to this build configuration file: # # https://docs.travis-ci.com/user/languages/java/ language: java # Travis provides different sets of JDKs for different Ubuntu distributions: # # https://docs.travis-ci.com/user/languages/java/#testing-against-multiple-jdks matrix: include: - os: lin...
# Documentation relevant to this build configuration file: # # https://docs.travis-ci.com/user/languages/java/ language: java # Travis provides different sets of JDKs for different Ubuntu distributions: # # https://docs.travis-ci.com/user/languages/java/#testing-against-multiple-jdks matrix: include: # - os: li...
Exclude openjdk6 due to incompatibility
Exclude openjdk6 due to incompatibility The build was seeing: > Unsupported major.minor version 51.0
YAML
apache-2.0
drewnoakes/metadata-extractor,rcketscientist/metadata-extractor
993badf7c71b7e08a503193f75af633981866afe
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '6' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '6' - '8' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Build with Node.js 8 on Travis CI.
Build with Node.js 8 on Travis CI.
YAML
mit
bigeasy/inquiry,bigeasy/inquiry
dc9fad79b9961b5aa9968e2f2ae7d50179a3e4ee
.travis.yml
.travis.yml
language: python dist: bionic python: - "2.7" - "3.5" - "3.6" - "3.7" - "3.8" install: - "python setup.py install" script: make test services: redis
language: python dist: bionic python: - "3.5" - "3.6" - "3.7" - "3.8" install: - "python setup.py install" script: make test services: redis
Remove Python 2.7 from test matrix
Remove Python 2.7 from test matrix
YAML
mit
ui/rq-scheduler
96fb16b15269e29159f715092844135df0243ec9
.travis.yml
.travis.yml
language: php cache: directories: - .phpunit php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 before_install: - phpenv config-rm xdebug.ini || true - | for PHP in $TRAVIS_PHP_VERSION $php_extra; do INI=~/.phpenv/versions/$PHP/etc/conf.d/travis.ini echo date.timezone = Europe/Par...
language: php cache: directories: - .phpunit php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 matrix: include: - php: 5.4 dist: trusty - php: 5.5 dist: trusty before_install: - phpenv config-rm xdebug.ini || true - | for PHP in $TRAVIS_PHP_VERSION $php_extra; do INI=~/.phpenv/v...
Fix tests on PHP 5.4 & 5.5
Fix tests on PHP 5.4 & 5.5
YAML
mit
nelmio/NelmioSecurityBundle
6a978c1b129f4f30f91efa073ae14a0c713289c6
.travis.yml
.travis.yml
sudo: false language: ruby rvm: - 2.3.1 before_install: gem install bundler -v 1.12.5
language: ruby rvm: - 2.4 - 2.5 - 2.6 - 2.7 before_install: - gem update --system - gem install bundler
Test on newer Ruby versions
Test on newer Ruby versions
YAML
mit
kushniryb/minfraud-api-v2,kushniryb/minfraud-api-v2
cd1ab8f1e27044a0d6f7ed0a16913a4371c0a671
.travis.yml
.travis.yml
language: go install: - ./build.sh script: - ./test.sh notifications: email: - dustin@couchbase.com
language: go install: - ./build.sh script: - ./test.sh notifications: email: - mobile_dev@couchbase.com
Revert "Take mobile_dev out of the TravisCI notification list."
Revert "Take mobile_dev out of the TravisCI notification list." This reverts commit 0bf97a4b6255a5fe2dabb490b79e2d25896452a8. The build is working well enough now.
YAML
apache-2.0
tophatch/sync_gateway,paulharter/sync_gateway,couchbaselabs/sync_gateway,paulharter/sync_gateway,tleyden/sync_gateway,jamiltz/sync_gateway,tophatch/sync_gateway,evankyle/sync_gateway,couchbaselabs/sync_gateway,tophatch/sync_gateway,evankyle/sync_gateway,ceejatec/sync_gateway,paulharter/sync_gateway,ceejatec/sync_gatewa...
31fc6ee6de9f00187c286957cae77bb3c902a322
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx-19mode - ruby-head matrix: allow_failures: - rvm: rbx-19mode - rvm: ruby-head notifications: irc: "irc.freenode.org#adhearsion"
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode - rbx-19mode - ruby-head matrix: allow_failures: - rvm: rbx-19mode - rvm: ruby-head notifications: irc: "irc.freenode.org#adhearsion"
Test on recent Ruby releases
Test on recent Ruby releases
YAML
mit
adhearsion/adhearsion-asterisk
438500b526b51206accb8dd29ead9ad8a186ada5
.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...
# 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/chefd...
Use the pre-release builds of chefdk
Use the pre-release builds of chefdk
YAML
apache-2.0
opscode-cookbooks/chef-grafana,chef-cookbooks/chef-grafana,chef-cookbooks/chef-grafana,opscode-cookbooks/chef-grafana,mivok/chef-grafana,mivok/chef-grafana,gnufreex/flugel-prometheus,gnufreex/flugel-prometheus
6f2addee0ccdce403cdb4d11fa31970b527948db
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 before_script: - bundle exec berks install script: - bundle exec foodcritic -f any . - bundle exec rubocop
rvm: - 2.0 - 2.1 - 2.2 before_script: - bundle exec berks install script: - bundle exec foodcritic -f any . - bundle exec rubocop
Test on all Ruby 2.X platforms
Test on all Ruby 2.X platforms
YAML
apache-2.0
opscode-cookbooks/activemq,chef-cookbooks/activemq,pmccarthy/activemq,chef-cookbooks/activemq,pmccarthy/activemq,opscode-cookbooks/activemq
c49a89df4bb56479d864229e28a5c81979af552e
.travis.yml
.travis.yml
language: node_js sudo: false notifications: email: on_success: never on_failure: change node_js: - "node" before_install: - export CXX="g++-4.8" CC="gcc-4.8" - curl https://cmake.org/files/v3.6/cmake-3.6.3-Linux-x86_64.tar.gz | tar xz - export PATH=${PWD}/cmake-3.6.3-Linux-x86_64/bin:$PATH - scr...
language: node_js sudo: false notifications: email: on_success: never on_failure: change node_js: - "node" before_install: - export CXX="g++-4.8" CC="gcc-4.8" - curl https://cmake.org/files/v3.6/cmake-3.6.3-Linux-x86_64.tar.gz | tar xz - export PATH=${PWD}/cmake-3.6.3-Linux-x86_64/bin:$PATH - scr...
Remove unnecessary rebuild on Travis
Remove unnecessary rebuild on Travis
YAML
mit
atom/superstring,atom/superstring,atom/superstring,atom/superstring,atom/superstring
9532d1ff39f777b6d512a7c3d3ce15500531d631
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "4.0" - "4.1" sudo: false
language: node_js node_js: - '0.10' - '0.12' - '4.0' - '4.1' - '4.2' sudo: false
Add Node.js 4.2 to the list of versions tested by Travis CI
Add Node.js 4.2 to the list of versions tested by Travis CI
YAML
mit
MaxLeiter/lounge,williamboman/lounge,williamboman/shout,Audio/shout,nickel715/shout,MaxLeiter/shout,run-project/shout,williamboman/lounge,erming/shout,ScoutLink/lounge,ScoutLink/lounge,sebastiencs/lounge,williamboman/shout,diddledan/shout,erming/shout,thelounge/lounge,metsjeesus/lounge,astorije/shout,FryDay/lounge,FryD...
18f0801c608fdfdb8da3b88d2f00eb6d19aace6e
.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 ...
Replace Java 14 with 15.
Travis: Replace Java 14 with 15.
YAML
apache-2.0
apache/commons-validator,apache/commons-validator,apache/commons-validator
ef20fa078ea0705f672d0bb73b15cc8155acd3c2
.travis.yml
.travis.yml
language: python python: - "2.7" # install requirements install: - pip install -r requirements.txt # Build with unit tests and coverage script: python setup.py nosetests # safelist branches: only: - master # For all work approved for release - develop # For general development work # Post-steps for successf...
language: python python: - "2.7" # install requirements install: - pip install -r requirements.txt # Build with unit tests and coverage script: coverage run setup.py nosetests # safelist branches: only: - master # For all work approved for release - develop # For general development work # Post-steps for su...
Add coverage command to Travis config
Add coverage command to Travis config
YAML
agpl-3.0
duggym122/grays_sports_almanac
07123e8ff3aa97a8dc68590f84a219eb876ffb0e
.travis.yml
.travis.yml
language: cpp sudo: required # the doc target uses sudo to install dependencies os: - linux - osx env: global: - secure: |- Gsnp9ERFnXt+diCfc7Vb72g+7HDn1MCHvw4zfUDdoBh9bxxFlLQRlzZZfwWhzni57lflrt 0QHXafu+oBVOJuNv6WauV3+ZyuWIQRmNGjZFNLvZsXHK/dyad2vGQBPvEkb+8l/aCyTpbr 6pxmyzLHSn1ZR7OX5r...
language: cpp dist: trusty sudo: required # the doc target uses sudo to install dependencies os: - linux - osx env: global: - secure: |- Gsnp9ERFnXt+diCfc7Vb72g+7HDn1MCHvw4zfUDdoBh9bxxFlLQRlzZZfwWhzni57lflrt 0QHXafu+oBVOJuNv6WauV3+ZyuWIQRmNGjZFNLvZsXHK/dyad2vGQBPvEkb+8l/aCyTpbr 6pxmy...
Use Ubuntu Trusty on Travis for a new CMake
Use Ubuntu Trusty on Travis for a new CMake
YAML
bsd-2-clause
alabuzhev/fmt,cppformat/cppformat,alabuzhev/fmt,cppformat/cppformat,cppformat/cppformat,alabuzhev/fmt
73b0183110e316012cc8371e6d1e1cea25146932
.travis.yml
.travis.yml
language: node_js node_js: - "5.8" sudo: false branches: only: - master script: - npm install - istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
language: node_js node_js: - "5.8" sudo: false branches: only: - master - /^feature\/.*$/ script: - npm install - istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
Add feature* to the build branch list
Add feature* to the build branch list
YAML
mit
facundovictor/mocha-testing
f12b3afc7b6fe3d558712210dddbc6137ef22662
.travis.yml
.travis.yml
language: c sudo: false matrix: include: - os: linux compiler: gcc env: O3=1 addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.9 - os: linux compiler: clang env: O3=1 addons: apt: sources: - ubuntu-toolchai...
language: c sudo: false matrix: include: - os: linux compiler: gcc env: addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.9 - os: linux compiler: clang env: addons: apt: sources: - ubuntu-toolchain-r-test...
Build with O3 by default
Travis: Build with O3 by default Signed-off-by: Martin Sustrik <4dd6061be1198639e8b05ce4fd5ead7a0dcaa0f4@250bpm.com>
YAML
mit
pskocik/libdill,sustrik/libdill,sustrik/libdill,sustrik/libdill,pskocik/libdill,sustrik/libdill,pskocik/libdill
54156ff2322c1266ef4212d1ea696c2d18c38bf5
.travis.yml
.travis.yml
sudo: required dist: trusty language: bash os: - linux - osx env: global: - GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp" - UNAME="$(uname | tr '[:upper:]' '[:lower:]')" - GO_VERSIONS="$(< .known-binary-versions-$UNAME) $(< .known-source-versions-$UNAME)" - GO_BOOTSTRAP_VERSION=1.4.1 matrix: - TARGET=native - TAR...
sudo: required dist: trusty language: bash os: - linux - osx env: global: - GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp" - UNAME="$(uname | tr '[:upper:]' '[:lower:]')" - GO_BOOTSTRAP_VERSION=1.4.1 matrix: - TARGET=native GO_VERSIONS="$(< .known-binary-versions-$UNAME) $(< .known-source-versions-$UNAME)" - TARGET=...
Set GO_VERSIONS in line with TARGET
Set GO_VERSIONS in line with TARGET and limit arm64 tests to binary and master
YAML
mit
glevand/travis-ci--gimme,travis-ci/gimme,glevand/travis-ci--gimme,travis-ci/gimme,kofalt/gimme,meatballhat/gimme
4a9ccbaa18c35d909e763524a5a508c95c5d9929
.travis.yml
.travis.yml
os: - linux language: node_js node_js: - "6.10.0" before_install: - npm install -g npm - npm install -g yarn install: - yarn install - yarn link - gulp test
os: - linux language: node_js node_js: - "6.10.0" before_install: - npm install -g npm - npm install -g yarn install: - yarn install - yarn link script: - gulp test
Move gulp test to script part
Move gulp test to script part
YAML
apache-2.0
CarreraPHP/generator-jhipster-module
8ac668ca00d913652589f652a3acc924d1fa728c
.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: xcode8.0 podfile: Example/Podfile xcode_workspace: Example/SMWRealm.xcworkspace/ xcode_scheme: SMWRealm-Example xcode_sdk: iphonesimulator10.0 podfile: Example/Podfile bef...
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c osx_image: xcode8.0 podfile: Example/Podfile xcode_workspace: Example/SMWRealm.xcworkspace/ xcode_scheme: SMWRealm-Example xcode_sdk: iphonesimulator10.0 podfile: Example/Podfile bef...
Remove directory from pod repo update
Remove directory from pod repo update
YAML
mit
meech-ward/SMWRealm
eec5ab91fae8de0e4cb510f095bb6aa9595889cc
.travis.yml
.travis.yml
language: go install: - go get -v -tags 'fixtures acceptance' ./... go: - 1.1 - 1.2 - tip script: script/cibuild after_success: - go get code.google.com/p/go.tools/cmd/cover - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - export PATH=$PATH:$HOME/gopath/bin/ - goveralls 2k7PTU...
language: go install: - go get -v -tags 'fixtures acceptance' ./... go: - 1.1 - 1.2 - 1.3 - 1.4 - tip script: script/cibuild after_success: - go get code.google.com/p/go.tools/cmd/cover - go get github.com/axw/gocov/gocov - go get github.com/mattn/goveralls - export PATH=$PATH:$HOME/gopath/bin/ - ...
Add more recent Go versions.
Add more recent Go versions.
YAML
apache-2.0
carolynvs/gophercloud,carolynvs/gophercloud,larsbutler/gophercloud,dudymas/gophercloud,pratikmallya/gophercloud,rackspace/gophercloud,trumant/gophercloud,jarosser06/gophercloud,jarosser06/gophercloud,sti-jans/gophercloud,feiskyer/gophercloud,jamiehannaford/gophercloud,clintonskitson/gophercloud,jamiehannaford/gopherclo...
9651698fb20a7223a4209f6936b5cb5dc3300660
.travis.yml
.travis.yml
language: node_js node_js: - "node" - "lts/*" cache: yarn
language: node_js node_js: - "node" - "lts/*" cache: yarn script: - yarn lint - yarn test
Add lintings to the CI build
Add lintings to the CI build
YAML
mit
mattyclarkson/capnp-es
35d7429f8935bdc51f5699eb727ea69434a2cc35
.travis.yml
.travis.yml
# ref. http://docs.travis-ci.com/user/languages/objective-c/ language: objective-c osx_image: xcode7.2 xcode_workspace: CotEditor.xcworkspace xcode_scheme: - CotEditor - CotEditor (AppStore) before_install: - gem install cocoapods script: xctool -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCH...
# ref. http://docs.travis-ci.com/user/languages/objective-c/ language: objective-c osx_image: xcode7.2 xcode_workspace: CotEditor.xcworkspace xcode_scheme: - CotEditor - CotEditor (AppStore) script: xctool -workspace "$TRAVIS_XCODE_WORKSPACE" -scheme "$TRAVIS_XCODE_SCHEME" build test CODE_SIGN_IDENTITY="" CODE_SIG...
Revert "Update Travis CI setting"
Revert "Update Travis CI setting" This reverts commit bc1a24a92fcf0401ee69361bc8546093068ae5b2.
YAML
apache-2.0
onevcat/CotEditor,onevcat/CotEditor,onevcat/CotEditor
721b588e9fece18fed4f42fec72343ebd5a13fa0
.travis.yml
.travis.yml
language: ruby script: bundle exec rspec spec sudo: false cache: bundler env: - DB=sqlite3 - DB=sqlite3mem - DB=postgresql - DB=mysql rvm: - 2.3.1 - 2.2.5 - 2.1.10 - 2.0.0 - jruby-9.1.1.0 gemfile: - gemfiles/rails_4.0.gemfile - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles...
language: ruby script: bundle exec rspec spec sudo: false cache: bundler env: - DB=sqlite3 - DB=sqlite3mem - DB=postgresql - DB=mysql rvm: - 2.3.1 - 2.2.5 - 2.1.10 - jruby-9.1.1.0 gemfile: - gemfiles/rails_4.0.gemfile - gemfiles/rails_4.1.gemfile - gemfiles/rails_4.2.gemfile - gemfiles/rails_5.0...
Stop building on Ruby 2.0. Ruby 2.0 was EOL in 2016. We don't need to support it going forward.
Stop building on Ruby 2.0. Ruby 2.0 was EOL in 2016. We don't need to support it going forward.
YAML
mit
collectiveidea/awesome_nested_set,experteer/awesome_nested_set
abc491677d4bad639336f905235cc7f42ddfeca2
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.5 - 5.6 - hhvm before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source --dev script: - phpunit -c app --coverage-text --coverage-clover=coverage.clover - bin/behat after_script: - php vendor/bin/ocular code-coverage:upload --format...
language: php php: - 5.4 - 5.5 - 5.6 - hhvm before_script: - travis_retry composer self-update - travis_retry composer install --no-interaction --prefer-source --dev script: - phpunit -c app --coverage-text --coverage-clover=coverage.clover - bin/behat after_script: - php vendor/bin/ocular code-coverage:upload --format...
Update Travis to support custom hostnames
Update Travis to support custom hostnames
YAML
mit
cegekaro/zenium-backend,cegekaro/zenium-backend
5920e0f75ea18955a4ed88587e133eb99b5b3aa8
.travis.yml
.travis.yml
language: node_js node_js: - "9" - "8" - "6" - "4" - "iojs" - "0.12" - "0.10" - "0.8" before_install: - 'nvm install-latest-npm' sudo: false
language: node_js node_js: - "10" - "9" - "8" - "6" - "4" - "iojs" - "0.12" - "0.10" - "0.8" before_install: - 'nvm install-latest-npm' sudo: false
Add Node 10 to CI.
Add Node 10 to CI.
YAML
mit
substack/brfs,substack/brfs
fc4601da25865249b4e70703d8d910846644dead
.travis.yml
.travis.yml
language: perl perl: - "5.22" - "5.20" - "5.10" before_install: - cpanm -n Devel::Cover::Report::Coveralls script: cover -test -ignore ^t/ -report coveralls
language: perl perl: - "5.32" - "5.30" - "5.16" before_install: - cpanm -n Devel::Cover::Report::Coveralls script: cover -test -ignore ^t/ -report coveralls
Update perl versions for Travis
Update perl versions for Travis
YAML
isc
afresh1/xdeadly
871d6d7ea402dfc5c549fb6aec46cd4ade7504ad
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 script: - RAILS_ENV=test bundle exec rake --trace db:setup cucumber before_script: - psql -c 'create database railskating_test;' -U postgres
language: ruby rvm: - 2.0.0 script: - RAILS_ENV=test bundle exec rake --trace db:setup cucumber before_script: - psql -c 'create database railskating_test;' -U postgres notifications: email: false
Disable email notifications for build status.
Disable email notifications for build status.
YAML
agpl-3.0
haxney/railskating,haxney/railskating
f0e99580730bd8d452ae485a13033b2db0f8e1fb
.travis.yml
.travis.yml
language: python python: - '3.4' os: - linux install: - pip install --upgrade pip - pip install flake8 - pip install coveralls before_script: - flake8 --show-source --max-line-length=80 --statistics --builtins=_ pubkey script: - python setup.py install - python setup.py sdist - pubkey --help - pubke...
language: python python: - '3.4' os: - linux install: - pip install --upgrade pip - pip install flake8 - pip install coveralls before_script: - flake8 --show-source --max-line-length=80 --statistics --builtins=_ pubkey script: - python setup.py install - python setup.py sdist - pubkey --help - pubke...
Add life PyPi deployment setup
Add life PyPi deployment setup
YAML
mit
fxstein/pubkey
5fea582c53de6cd94ae4c94c303a13848cd8d8b4
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" env: - DJANGO=1.4.5 - DJANGO=1.5 install: - sudo apt-get install -y python-imaging - pip install -q Django==$DJANGO --use-mirrors - pip install -q PIL==1.1.7 --use-mirrors - pip install -q selenium==2.31 --use-mirrors - pip install -q -e . notifications: emai...
language: python python: - "2.6" - "2.7" env: - DJANGO=1.4.5 - DJANGO=1.5 install: - pip install -q django==$DJANGO --use-mirrors - pip install -q pillow==2.0 --use-mirrors - pip install -q selenium==2.31 --use-mirrors - pip install -q -e . notifications: email: false before_install: - "export DISPL...
Use Pillow instead of PIL for test setup on Travis CI
Use Pillow instead of PIL for test setup on Travis CI
YAML
bsd-3-clause
henriquechehad/django-image-cropping,winzard/django-image-cropping,winzard/django-image-cropping,winzard/django-image-cropping,henriquechehad/django-image-cropping,henriquechehad/django-image-cropping
ad1837be3d838142980d98db1056a8ef1858216a
.travis.yml
.travis.yml
sudo: false language: python addons: postgresql: "9.4" apt: sources: - deadsnakes packages: - python3.5 env: - TOXENV=py27-dj18 DATABASE_USER="postgres" DATABASE_PASSWORD="" - TOXENV=py33-dj18 DATABASE_USER="postgres" DATABASE_PASSWORD="" - TOXENV=py34-dj18 DATABASE_USER="postgres" DATABAS...
sudo: false language: python addons: postgresql: "9.4" apt: sources: - deadsnakes packages: - python3.5 - python3.5-dev env: - TOXENV=py27-dj18 DATABASE_USER="postgres" DATABASE_PASSWORD="" - TOXENV=py33-dj18 DATABASE_USER="postgres" DATABASE_PASSWORD="" - TOXENV=py34-dj18 DATABASE_U...
Install headers for Python 3.5
Install headers for Python 3.5
YAML
mit
zsiciarz/django-pgallery,zsiciarz/django-pgallery
baceb75be04d9c7e8266ead820dd099660fcbb3e
.travis.yml
.travis.yml
language: rust sudo: false addons: apt: packages: - libssl-dev rust: - nightly - beta - 1.6.0 - 1.5.0 scirpt: - cargo test
language: rust sudo: false addons: apt: packages: - libssl-dev rust: - nightly - beta - 1.8.0 - 1.7.0 scirpt: - cargo test
Use Rust 1.8.0 & 1.7.0
Use Rust 1.8.0 & 1.7.0
YAML
mit
cosmo0920/ruroonga_client
96c1cca9a29e714291523d292b35eea8a43902b4
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "5" - "6" - "7" cache: directories: - node_modules install: - npm install script: - npm run coveralls - npm run build
language: node_js node_js: - "6" - "7" - "8" cache: directories: - node_modules install: - npm install script: - npm run coveralls - npm run build
Drop node 4 and 5 support
Drop node 4 and 5 support
YAML
mit
prayerslayer/js.spec,prayerslayer/js.spec
676a61d66d2450b97bc8760322ad99d14ac5f8f8
.travis.yml
.travis.yml
language: c env: matrix: - COMPILER=gcc - COMPILER=clang script: - cd build - CC=${COMPILER} cmake .. -DCMAKE_BUILD_TYPE=DEBUG - make build_tests - make test before_install: - wget http://balthasar.plejeck.com/up/libcmocka_0.4.0-1_i386.deb http://balthasar.plejeck.com/up/libcmocka-dev_0.4.0-1_i386.deb - su...
language: c env: matrix: - COMPILER=gcc - COMPILER=clang script: - cd build - CC=${COMPILER} cmake .. -DCMAKE_BUILD_TYPE=DEBUG - make build_tests - make test before_install: - wget http://balthasar.plejeck.com/up/libcmocka_0.4.0-1_amd64.deb http://balthasar.plejeck.com/up/libcmocka-dev_0.4.0-1_amd64.deb - ...
Switch to new AMD64 debs because Travis is 64-bit
Switch to new AMD64 debs because Travis is 64-bit
YAML
bsd-3-clause
undesktop/libopkeychain
4cc82f52817a93a29ebaec74bbab73aa25cd3163
.travis.yml
.travis.yml
language: ruby install: travis_wait bundle install rvm: - 2.1.1 notifications: email: false
sudo: false language: ruby cache: bundler install: travis_wait bundle install rvm: - 2.1.1 notifications: email: false
Switch to use TravisCI containers.
Switch to use TravisCI containers.
YAML
mit
bceasydns/twofactorauth,Nitrokey/dongleauth,brierjon/twofactorauth,hilliuse/twofactorauth,Criminalllz/twofactorauth,rabotica/twofactorauth,youprofit/twofactorauth,MethodGrab/twofactorauth,Criminalllz/twofactorauth,marcryan/twofactorauth,Jawshy/twofactorauth,jdavis/twofactorauth,RichJeanes/twofactorauth,veratu/twofactor...
2c4ae8079b8f2df40e84583f220f4cd7a7e91784
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.1 sudo: false cache: bundler: true env: global: - RUBY_GC_HEAP_GROWTH_MAX_SLOTS=300000 - RUBY_GC_HEAP_INIT_SLOTS=600000 - RUBY_GC_HEAP_GROWTH_FACTOR=1.25 - PARALLEL_TEST_PROCESSORS=2 matrix: - TEST_SUITE=vmdb PARALLEL=true - TEST_SUITE=brakeman matrix: fast_finish: true add...
language: ruby rvm: - 2.3.1 - 2.4.2 sudo: false cache: bundler: true env: global: - RUBY_GC_HEAP_GROWTH_MAX_SLOTS=300000 - RUBY_GC_HEAP_INIT_SLOTS=600000 - RUBY_GC_HEAP_GROWTH_FACTOR=1.25 - PARALLEL_TEST_PROCESSORS=2 matrix: - TEST_SUITE=vmdb PARALLEL=true - TEST_SUITE=brakeman matrix: allow_failure...
Add optional development version, Ruby 2.4.2
Add optional development version, Ruby 2.4.2
YAML
apache-2.0
syncrou/manageiq,gmcculloug/manageiq,NickLaMuro/manageiq,mzazrivec/manageiq,tzumainn/manageiq,juliancheal/manageiq,jrafanie/manageiq,aufi/manageiq,durandom/manageiq,d-m-u/manageiq,durandom/manageiq,djberg96/manageiq,mresti/manageiq,borod108/manageiq,mzazrivec/manageiq,andyvesel/manageiq,gerikis/manageiq,agrare/manageiq...
c289f7d6baf87cc92dd4a858fd41e40852b0b720
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - 'iojs' - '0.12' - '0.10'
sudo: false language: node_js node_js: - '5' - '4' - '0.12' - '0.10'
Test on v4 and v5
Test on v4 and v5
YAML
mit
gillstrom/object-random
8b741226ebd2b8e7a9060a295a4697ee1bdb1015
.travis.yml
.travis.yml
language: ruby script: "TESTOPTS=-v rake test" jdk: - oraclejdk7 rvm: - 1.9.3 - 2.0.0 - 2.1.0 - rbx - jruby-19mode matrix: fast_finish: true allow_failures: - rvm: jruby-19mode - rvm: rbx
language: ruby script: "TESTOPTS=-v rake test" jdk: - oraclejdk7 rvm: - 1.9.3 - 2.0.0 - 2.1.0 - 2.1.1 - rbx - jruby-19mode matrix: fast_finish: true allow_failures: - rvm: jruby-19mode - rvm: rbx
Test against Ruby 2.1.1 on Travis
Test against Ruby 2.1.1 on Travis
YAML
bsd-3-clause
tuvistavie/puma,ngpestelos/puma,puma/puma,arturocadena/puma,respire/puma,prathamesh-sonpatki/puma,nathansamson/puma,snow/puma,matthewd/puma,kyledrake/puma,prathamesh-sonpatki/puma,nathansamson/puma,respire/puma,ngpestelos/puma,zapnap/puma,nathansamson/puma,jbmyid/puma,prathamesh-sonpatki/puma,matthewd/puma,tuvistavie/p...
4fcc0f6b90dfa518813ef642b47e6c40fd03ca49
.travis.yml
.travis.yml
language: python python: - "2.7" env: - PGVERSION=9.5 sudo: required cache: pip install: ./bin/travis-install-dependencies script: ./bin/travis-run-tests
language: python python: - "2.7" env: - PGVERSION=9.5 sudo: required cache: pip before_install: - chmod +x ./bin/travis-install-dependencies - chmod +x ./bin/travis-run-tests install: ./bin/travis-install-dependencies script: ./bin/travis-run-tests
Add permissions to execute Travis scripts
Add permissions to execute Travis scripts
YAML
agpl-3.0
ViderumGlobal/ckanext-requestdata,ViderumGlobal/ckanext-requestdata,ViderumGlobal/ckanext-requestdata,ViderumGlobal/ckanext-requestdata
b97d095dba30dda55ee7f053e7f5bb4eaa8b48bb
.travis.yml
.travis.yml
sudo: false language: python env: - DJANGO_VERSION="Django>=1.8,<1.9" - DJANGO_VERSION="Django>=1.9,<1.10" - DJANGO_VERSION="Django>=1.10,<2.0" - DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz' python: - "2.7" - "3.4" - "3.5" before_script: - pip install coverage coveralls flake8...
sudo: false language: python env: - DJANGO_VERSION="Django>=1.8,<1.9" - DJANGO_VERSION="Django>=1.9,<1.10" - DJANGO_VERSION="Django>=1.10,<1.11" - DJANGO_VERSION="Django>=1.11,<2.0" - DJANGO_VERSION='https://github.com/django/django/archive/master.tar.gz' python: - "2.7" - "3.4" - "3.5" - "3.6" matrix...
Test Django 1.11 and master, and Python 3.6, and loudly install Django
Test Django 1.11 and master, and Python 3.6, and loudly install Django
YAML
bsd-3-clause
savoirfairelinux/django-smart-selects,digi604/django-smart-selects,digi604/django-smart-selects,savoirfairelinux/django-smart-selects
bda9aa7b4fdf78642cce3af76a82774d12a90ace
.travis.yml
.travis.yml
sudo: required language: c services: - docker before_install: - make script: - after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; docker push atgreen/lisp-10-centos7; fi - echo All done.
sudo: required language: c services: - docker before_install: - make script: - after_success: - if [ "$TRAVIS_BRANCH" == "master" ]; then docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"; docker push atgreen/lisp-10-centos7; fi - echo All done.
Remove -e option to docker
Remove -e option to docker
YAML
apache-2.0
atgreen/sti-lisp
0933b98f531d1c98361f073f813ebcc19b21dbf7
.travis.yml
.travis.yml
language: node_js node_js: - "5" - "4" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8
language: node_js node_js: - "5" - "4" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_script: - npm run lint
Add linting to Travis CI
Add linting to Travis CI
YAML
mit
ritterim/angular2-bank,ritterim/angular2-bank,ritterim/angular2-bank
1d7e16d625551caeacdf4d8b44069065b985c828
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm script: - ./build/tools/phpunit.phar --configuration ./build/travis-ci.xml - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ "$TRAVIS_PHP_VERSION" != ...
language: php php: - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: hhvm sudo: false script: - ./build/tools/phpunit.phar --configuration ./build/travis-ci.xml - if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi - if [ "$TRAVIS_PHP...
Use new Travis CI infrastructure
Use new Travis CI infrastructure
YAML
bsd-3-clause
stefen/money,ojengwa/money,tungus28/money,cenxun/money,boekkooi/money
01fd2eda342fb9935ef7076720725967bf647f42
.travis.yml
.travis.yml
language: php php: - 7.1 - 7.2 - hhvm before_script: - composer install script: - vendor/bin/phpunit --verbose --coverage-text --coverage-clover=clover.xml --colors after_script: - sh .travis.coverage.sh matrix: allow_failures: - php: hhvm
language: php php: - 7.1 - 7.2 - 7.3 before_script: - composer install script: - vendor/bin/phpunit --verbose --coverage-text --coverage-clover=clover.xml --colors after_script: - sh .travis.coverage.sh
Remove HHVM from the Travis-CI matrix, do not add modern PHP versions to 2.x
Remove HHVM from the Travis-CI matrix, do not add modern PHP versions to 2.x
YAML
mit
goaop/parser-reflection,goaop/parser-reflection
ba4b3a55f8de26c5542feb9649bdf1b2ca0f3f3a
.travis.yml
.travis.yml
language: java os : osx before_install: - brew update - brew install thrift
language: java os : osx before_install: - brew update - brew install thrift - brew install gradle
Add in gradle to osx
Add in gradle to osx
YAML
apache-2.0
is00hcw/aerosolve,mathkann/aerosolve,airbnb/aerosolve,ralic/aerosolve,TDDFT/aerosolve,TDDFT/aerosolve,airbnb/aerosolve,ralic/aerosolve,zcqqq/aerosolve,npujowidianto/aerosolve,zcqqq/aerosolve,mathkann/aerosolve,is00hcw/aerosolve,npujowidianto/aerosolve
c86d43c4f81ab040b91271bad9a3953100ffe219
.travis.yml
.travis.yml
sudo: false language: go matrix: include: - go: 1.7 os: linux - go: 1.7 os: osx - go: tip os: linux - go: tip os: osx fast_finish: true allow_failures: - go: tip install: - cd cli && godep restore -v script: - ./bin/test-go-fmt.sh
sudo: false language: go matrix: include: - go: 1.7 os: linux - go: 1.7 os: osx - go: tip os: linux - go: tip os: osx fast_finish: true allow_failures: - go: tip before_install: cd cli script: - ../bin/test-go-fmt.sh
Remove custom install to trigger default godep.
Remove custom install to trigger default godep.
YAML
mit
phase2/rig,phase2/rig
e7f3499a4b5588c0bd1a63113b7a3b3fed51a095
.travis.yml
.travis.yml
sudo: required dist: trusty language: ruby rvm: - 2.0.0 - 2.1 - 2.2 - 2.3.0
sudo: required before_install: gem update --system dist: trusty language: ruby rvm: - 2.0.0 - 2.1 - 2.2 - 2.3.0
Use latest Rubygems in Travis
Use latest Rubygems in Travis A bug in Rubgems < 2.6.9 prevents the rainbow gem from being installed. See: sickill/rainbow#44
YAML
mit
mmozuras/pronto-scss
bcc223d5c7dc56e1523e8eef08ac933bf18c73d7
.travis.yml
.travis.yml
language: objective-c xcode_workspace: onetimepassword.xcworkspace xcode_scheme: OneTimePassword xcode_sdk: - iphonesimulator8.1 script: xcodebuild -workspace onetimepassword.xcworkspace -scheme OneTimePassword -sdk iphonesimulator8.1 build test
language: objective-c xcode_workspace: onetimepassword.xcworkspace xcode_scheme: - OneTimePassword - OneTimePasswordLegacy xcode_sdk: - iphonesimulator8.1 script: - xcodebuild -workspace onetimepassword.xcworkspace -scheme OneTimePassword -sdk iphonesimulator8.1 build test - xcodebuild -workspace onetimepassword.xcwo...
Build both targets in Travis
Build both targets in Travis
YAML
mit
mattrubin/onetimepassword,mattrubin/onetimepassword
1d380cc4b0c7a183db351d23b9a3f639e71c7e09
.travis.yml
.travis.yml
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage osx_image: xcode7.3 language: objective-c # cache: cocoapods # podfile: Example/Podfile # before_install: # - gem install cocoapods # Since Travis is not always on latest version # - pod install --project-direc...
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage osx_image: xcode7.3 language: objective-c # cache: cocoapods # podfile: Example/Podfile # before_install: # - gem install cocoapods # Since Travis is not always on latest version # - pod install --project-direc...
Update the commande line test to build
[Travis] Update the commande line test to build
YAML
mit
YMonnier/YMValidator,YMonnier/YMValidator,YMonnier/YMValidator
45a6f13f191ee7d2abb645642f0d888043a5cb40
.travis.yml
.travis.yml
sudo: false addons: apt: sources: - hvr-ghc packages: - cabal-install-1.22 - ghc-7.10.1 install: - travis_retry cabal update - runhaskell BuildFromSource.hs build - cabal sandbox init --sandbox="`pwd`"/Elm-Platform/build/.cabal-sandbox - cabal install --only-dependencies --enable-tests sc...
sudo: false addons: apt: sources: - hvr-ghc packages: - cabal-install-1.22 - ghc-7.10.1 before_install: - export PATH=/opt/ghc/7.10.1/bin:/opt/cabal/1.22/bin:$PATH install: - travis_retry cabal update - runhaskell BuildFromSource.hs build - cabal sandbox init --sandbox="`pwd`"/Elm-Platfor...
Migrate to Travis-CI container-based infrastructure (2nd attempt)
Migrate to Travis-CI container-based infrastructure (2nd attempt)
YAML
bsd-3-clause
fredcy/elm-format,nukisman/elm-format-short,fredcy/elm-format,nukisman/elm-format-short,nukisman/elm-format-short,avh4/elm-format,avh4/elm-format,avh4/elm-format,fredcy/elm-format,nukisman/elm-format-short,nukisman/elm-format-short,avh4/elm-format
7fc25c337bf90a942dd7d94a9c4e4e20602d5f7f
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '7' - '6' - '4'
sudo: false language: node_js node_js: - '8' - '6' - '4'
Update Node versions on Travis
Test(config): Update Node versions on Travis
YAML
unlicense
fvdm/nodejs-geolocation
b6417d215c799d7849a454e12a4e9d8f17d82c91
.travis.yml
.travis.yml
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby - jruby-19mode - rbx-18mode - rbx-19mode - ree - ruby-head
rvm: - 1.8.7 - 1.9.2 - 1.9.3 - jruby - rbx-18mode - rbx-19mode - ree - ruby-head
Revert "Test JRuby's 1.9 mode"
Revert "Test JRuby's 1.9 mode" posix-spawn doesn't compile for JRuby's 1.9 mode This reverts commit 8ece8f49d546379e9408796a7fcc338030f6f99e.
YAML
bsd-3-clause
koraktor/metior
031f55c96b85881a356255015ca64a1ebc7bb85c
.travis.yml
.travis.yml
language: haskell script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | LANG=C sh
language: haskell script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
Remove the LANG=C on Travis
Remove the LANG=C on Travis
YAML
bsd-3-clause
ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake
c07d98e5f2c0bd681e5dd95457de5cafd67b0c33
.travis.yml
.travis.yml
language: go go: - 1.1 - 1.2 - 1.3 - 1.4 - tip script: go test -v ./...
language: go go: - 1.1 - 1.2 - 1.3 - 1.4 - 1.5 - tip script: go test -v ./...
Test against go 1.5 as well
Test against go 1.5 as well
YAML
mit
erik/mixport
8f8454e44588df71b19ab798a43e4012f967aff2
.travis.yml
.travis.yml
language: node_js node_js: - '0.12' before_script: install: true script: - npm install grunt-cli -g - npm install - grunt travis after_success: - node deploy-docs.js notifications: slack: secure: aQXFk2/MxX5eR2JM90xWAA9YX03QArY1ejUmnP/NkFHbB4zzKZblACjEeDTDTDCThZpXhrganX2nDWrWFrrXbOG28wKrRhEZSULPAgyiWGpfkMoT44fKm...
sudo: false language: node_js node_js: - '0.12' before_script: install: true script: - npm install grunt-cli -g - npm install - grunt travis after_success: - node deploy-docs.js notifications: slack: secure: aQXFk2/MxX5eR2JM90xWAA9YX03QArY1ejUmnP/NkFHbB4zzKZblACjEeDTDTDCThZpXhrganX2nDWrWFrrXbOG28wKrRhEZSULPAgyiW...
Update to new Travis infrastructure
Update to new Travis infrastructure
YAML
bsd-2-clause
excaliburjs/Excalibur,htalat/Excalibur,htalat/Excalibur,excaliburjs/Excalibur,excaliburjs/Excalibur,htalat/Excalibur
a3a7e3e8fe85c74fdaff24fc054a8fe69ec2bab7
.travis.yml
.travis.yml
language: node_js node_js: - "0.10"
language: node_js node_js: - '0.10' deploy: provider: npm email: nathan@nathanhoule.com on: tags: true api_key: secure: XqIdL8v1nJnc6Bs/+0YKEethWw6git8L2fRvXT6hGpnlBSwIpIcOG9V4PokBmcpCaNJcVPL4/RshcSepxsJ3/fnDLtH6zydnuAi/nyYxmG7Ko2YjSJrHOXXQnwkjXQKxzHz1FJTCCipt7pFkwsCN1fqevknIUF4szOv5czq5F6E=
Add npm publish to tagged releases
Add npm publish to tagged releases
YAML
mit
ndhoule/metalsmith-asciidoc
d5b794825fa3152864c7a96d9772cdb5ed19260c
.travis.yml
.travis.yml
language: python # Python versions to test python: - "2.7" - "3.3" - "3.4" # Manually define here the combinations of django and db versions to test env: - DJANGO_VERSION=1.6.6 DB=postgresql - DJANGO_VERSION=1.6.6 DB=sqlite # Install the application install: - sh -c "if [ '$DB' = 'postgresql' ]; then pip...
language: python # Python versions to test python: - "2.7" - "3.3" - "3.4" # Manually define here the combinations of django and db versions to test env: - DJANGO_VERSION=1.6.8 DB=postgresql - DJANGO_VERSION=1.6.8 DB=sqlite # Install the application install: - sh -c "if [ '$DB' = 'postgresql' ]; then pip...
Update django version used for tests
Update django version used for tests
YAML
agpl-3.0
petervanderdoes/wger,wger-project/wger,rolandgeider/wger,rolandgeider/wger,petervanderdoes/wger,kjagoo/wger_stark,DeveloperMal/wger,DeveloperMal/wger,wger-project/wger,DeveloperMal/wger,DeveloperMal/wger,petervanderdoes/wger,wger-project/wger,petervanderdoes/wger,kjagoo/wger_stark,kjagoo/wger_stark,rolandgeider/wger,ro...
edd8e1a8da872f18bbf9ed14ccf3b0b3a5d9705c
.travis.yml
.travis.yml
sudo: false language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" install: "pip install -r requirements-dev.txt" script: "nose2"
dist: bionic language: python python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" install: "pip install -r requirements-dev.txt" script: "nose2"
Update Ubuntu distribution on Travis to support python 3.7
Update Ubuntu distribution on Travis to support python 3.7
YAML
mit
zach-taylor/splunk_handler
ff18ab917e3be07ddd184e3c8178a273b9c3c7ed
.travis.yml
.travis.yml
dist: precise language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 install: - composer install --prefer-dist --no-interaction --no-suggest
dist: precise language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 install: - composer install --prefer-dist --prefer-lowest --no-interaction --no-suggest
Install lowest version on composer
Install lowest version on composer
YAML
mit
A5hleyRich/wp-queue
93949aff34d6d2a1d07a969bb62d99edb060ca9e
.travis.yml
.travis.yml
language: go go: - 1.7
language: go go: - 1.7 addons: code_climate: repo_token: 86a92217dd8d70fe4af3cf0005b109d3a98320ac60110a757fe2e27ce7517a4f
Add test coverage to Code climate
Add test coverage to Code climate
YAML
mit
ustrajunior/minion
0e4be3529b94adeabca8de596a2921fe00bd8eb6
.travis.yml
.travis.yml
language: ruby rvm: - 2.0.0 - 1.9.3 gemfile: - gemfiles/Gemfile.activemodel-4.2 - gemfiles/Gemfile.activemodel-4.1 - gemfiles/Gemfile.activemodel-4.0 - gemfiles/Gemfile.activemodel-3.2.x script: "echo 'COME ON!' && bundle exec rake spec"
language: ruby sudo: false rvm: - 2.0.0 - 1.9.3 gemfile: - gemfiles/Gemfile.activemodel-4.2 - gemfiles/Gemfile.activemodel-4.1 - gemfiles/Gemfile.activemodel-4.0 - gemfiles/Gemfile.activemodel-3.2.x script: "echo 'COME ON!' && bundle exec rake spec"
Use new Travis container-based infrastructure
Use new Travis container-based infrastructure
YAML
mit
valo/her,spanner/her,marshall-lee/her,practicefusion/her,remiprev/her,danimashu/her,fandor/her,hubert/her,chewi/her,ticktricktrack/her,WizardOfOgz/her,tippenein/her,alexchumak/her,jkappers/her,mallikarjunayaddala/her,zacharywelch/her,ekampp/her,crv/her,kylezeng/her
b78b8277f4b8d758ed29fe54ed3a768f26c9ca99
.travis.yml
.travis.yml
language: ruby rvm: - ruby-head - 2.6.0 - 2.5.3 - 2.5.1 - 2.4.5 - 2.4.4 - 2.3.7 - 2.2.10 - 2.1.8 - 1.9.3 before_install: - gem update --system - gem --version - gem install bundler env: global: - CC_TEST_REPORTER_ID=92655ba2c8b47200f80e996afb80c410b9491514845d414d7517108ad35a5178 before...
language: ruby rvm: - ruby-head - 2.6.0 - 2.5.3 - 2.5.1 - 2.4.5 - 2.4.4 - 2.3.7 - 2.2.10 - 2.1.8 - 1.9.3 before_install: - 'if [[ `ruby -v` =~ 2.2.10 ]]; gem update --system; then gem update --system; else gem update --system 2.7.8; fi' - 'gem --version' - 'gem install bundler' env: global: ...
Add rubygems workaround for old Ruby versions
Add rubygems workaround for old Ruby versions
YAML
mit
krmbzds/turkish_id,krmbzds/turkish_id
3a302f3d80944da413b6e3232b6a404a8aaf4f26
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 script: xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-Mac test after_success: bash <(curl -s https://codecov.io/bash)
language: objective-c osx_image: xcode8 script: xcrun xcodebuild -project BTree.xcodeproj -scheme BTree-Mac test after_success: bash <(curl -s https://codecov.io/bash)
Update Travis config for Xcode 8.
Update Travis config for Xcode 8.
YAML
mit
lorentey/BTree,eonil/BTree,eonil/BTree,lorentey/BTree,Maaimusic/BTree,lorentey/BTree,eonil/BTree,Maaimusic/BTree,Maaimusic/BTree
6c0eeb3e1265e41258289c13a1b5158aabf16ef2
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" before_script: - npm install -g grunt-cli
language: node_js node_js: - "0.12" - "0.10" - "iojs" - "iojs-v1.1.0" before_script: - npm install -g grunt-cli
Update runtimes to extend test coverage.
Update runtimes to extend test coverage.
YAML
mit
FinalDevStudio/fi-aegis
29b34ec4907dd87d2f8c4e906f85b0fce96b7ca6
.travis.yml
.travis.yml
language: php php: - 5.4 - 5.3 install: - composer install script: - ./bin/phpspec run
language: php php: - '5.4' - '5.3' install: - composer install script: - ./bin/phpspec run
Change PHP version nums in Travis to strings
Change PHP version nums in Travis to strings
YAML
mit
BenConstable/phpspec-laravel
04263cd3e49156579ea1d77d829cbb660fd6b7ee
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.4" install: "pip install -r requirements-dev.txt" script: - make test - make lint - make docs
language: python python: - "2.7" - "3.4" - "3.5" install: "pip install -r requirements-dev.txt" script: - make test - make lint - make docs
Add python 3.5 to the build matrix
Add python 3.5 to the build matrix
YAML
mit
IATI/iati.core,IATI/iati.core
3b917930ae7f63427b142d1fcdb76084fab912d4
.travis.yml
.travis.yml
language: groovy sudo: false dist: precise jdk: - openjdk7 - oraclejdk8 env: global: - JAVA_OPTS="-Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2" - GRADLE_OPTS="-Xmx1024m" script: - ./gradlew check uploadArchives --full-stacktrace - cd samples/example && ./gradlew clean webResourceCompile --full-stacktrace &&...
language: groovy sudo: false dist: precise jdk: #- openjdk7 - oraclejdk8 env: global: - GRADLE_OPTS="-Xmx1024m" script: - ./gradlew check uploadArchives --full-stacktrace - cd samples/example && ./gradlew clean webResourceCompile --full-stacktrace && cd ../../ after_success: - ./gradlew coveralls --fu...
Disable JDK7 builds temporarily on Travis CI
Disable JDK7 builds temporarily on Travis CI Seems not working on JDK7... https://github.com/gradle/gradle/issues/5740 Download fails with this error: ``` Received fatal alert: protocol_version ``` and setting -Dhttps.protocols does not affect.
YAML
apache-2.0
ksoichiro/gradle-web-resource-plugin
b927292327f2361222f82a496d95ea06c70068df
.travis.yml
.travis.yml
language: go go: - 1.8 sudo: required services: - docker before_install: # libseccomp in trusty is not new enough, need backports version. - sudo sh -c "echo 'deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse' > /etc/apt/sources.list.d/backports.list" - sud...
language: go go: - 1.8 sudo: required services: - docker before_install: # libseccomp in trusty is not new enough, need backports version. - sudo sh -c "echo 'deb http://archive.ubuntu.com/ubuntu trusty-backports main restricted universe multiverse' > /etc/apt/sources.list.d/backports.list" - sud...
Update stage as per suggestion
Update stage as per suggestion Signed-off-by: asifdxtreme <3aaa687c39c69373a27233676f0acb1a600f8a78@huawei.com>
YAML
apache-2.0
estesp/containerd,mikebrow/containerd,mikebrow/cri-containerd,mikebrow/cri-containerd,zhangzhenhao/cri-containerd,dmcgowan/containerd,mikebrow/cri-containerd,zhangzhenhao/cri-containerd,containerd/containerd,w9n/cri-containerd,zhangzhenhao/cri-containerd,dmcgowan/containerd,containerd/containerd,vdemeester/containerd,m...
bd2faec524101685dbfaf227ec817cf7f9bbff63
.travis.yml
.travis.yml
language: ruby sudo: false rvm: - "1.9.3" - "2.0" - "2.1" - "2.2" - "jruby-9.0.4.0" - "rbx-2.5.8" cache: bundler
language: ruby sudo: false rvm: - "1.9.3" - "2.0" - "2.1" - "2.2" - "jruby-9.0.4.0" - "rubinius-3.9" cache: bundler
Use Rubinius to 3.9 on CI
Use Rubinius to 3.9 on CI Rubinius 2.5.8 doesn't exist on Travis anymore.
YAML
mit
janko-m/down
bd053321cecdf61c2f8a1c83128f0383718f3229
.travis.yml
.travis.yml
dist: xenial language: ruby services: - postgresql rvm: - '2.6.1' - '2.3.8' before_install: export TZ=Europe/Berlin before_script: bundle exec rake ci:setup script: bundle exec rake ci:spec
dist: xenial language: ruby services: - postgresql rvm: - '2.6.2' before_install: export TZ=Europe/Berlin before_script: bundle exec rake ci:setup script: bundle exec rake ci:spec
Update ruby versions on CI
Update ruby versions on CI
YAML
agpl-3.0
openmensa/openmensa,openmensa/openmensa,openmensa/openmensa,openmensa/openmensa
8f5080e78d1c2aff5f5b34689d212397843f7625
.travis.yml
.travis.yml
language: go go: - 1.8 os: linux dist: trusty sudo: required env: global: - BUILD_GOARCH=amd64 matrix: - BUILD_GOOS=linux - BUILD_GOOS=darwin - BUILD_GOOS=windows script: - env GOARCH=${BUILD_GOARCH} GOOS=${BUILD_GOOS} go build -o ${GOPATH}/bin/hello-${BUILD_GOOS}-${BUILD_GOARCH} - if [[ "$...
language: go go: - 1.8 os: linux dist: trusty env: global: - BUILD_GOARCH=amd64 matrix: - BUILD_GOOS=linux - BUILD_GOOS=darwin - BUILD_GOOS=windows script: - env GOARCH=${BUILD_GOARCH} GOOS=${BUILD_GOOS} go build -o ${GOPATH}/bin/hello-${BUILD_GOOS}-${BUILD_GOARCH} - if [[ "$BUILD_GOOS" == ...
Disable sudo on Travis CI
Disable sudo on Travis CI
YAML
apache-2.0
odaceo/lab-hello-world-go
51d442ffdcc2d5e9fd9b39d545d9b2a80b05f244
.travis.yml
.travis.yml
language: node_js node_js: - '11' addons: chrome: 'stable'
language: node_js node_js: - "11" addons: firefox: "latest" before_script: - export CHROME_BIN=chromium-browser - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - sleep 3 # give xvfb some time to start
Revert "Update Travis CI config"
Revert "Update Travis CI config" This reverts commit 88e707cef0ec7cb080d6a1532094cdcae230f306.
YAML
mit
akfish/node-vibrant,akfish/node-vibrant,akfish/node-vibrant
3ea34bcb368add77580ade52a2422b388d641f6c
.travis.yml
.travis.yml
language: ruby rvm: - 1.9.3 - 2.0.0 notifications: irc: channels: - "irc.freenode.org#berkshelf" skip_join: true use_notice: true before_install: - sudo apt-get install -qq libarchive12 libarchive-dev before_script: - git config --global user.email "ci@berkshelf.com" - git config --global ...
language: ruby rvm: - 1.9.3 - 2.0.0 - 2.1 notifications: irc: channels: - "irc.freenode.org#berkshelf" skip_join: true use_notice: true before_install: - sudo apt-get install -qq libarchive12 libarchive-dev before_script: - git config --global user.email "ci@berkshelf.com" - git config -...
Add Ruby 2.1 to Travis
Add Ruby 2.1 to Travis
YAML
apache-2.0
pingworks/berkshelf-api-binrepo-store,damacus/berkshelf-api,gueux/berkshelf-api,damacus/berkshelf-api,pantheon-systems/berkshelf-api,gueux/berkshelf-api,pingworks/berkshelf-api-binrepo-store,gueux/berkshelf-api,pantheon-systems/berkshelf-api,pantheon-systems/berkshelf-api,pingworks/berkshelf-api-binrepo-store,damacus/b...
e5347cf27010a7d9e6ff25784d78af210cd1d086
.travis.yml
.travis.yml
language: julia julia: - 0.4 - 0.5 - nightly os: - linux - osx notifications: email: false before_script: - export PATH=$HOME/.local/bin:$PATH script: - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("DataFrames"); Pkg.test("DataFra...
language: julia julia: - 0.4 - 0.5 - nightly os: - linux - osx notifications: email: false before_script: - export PATH=$HOME/.local/bin:$PATH script: - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("DataFrames"); Pkg.test("DataFra...
Use registered Documenter.jl instead of cloning directly from repository
Use registered Documenter.jl instead of cloning directly from repository
YAML
mit
campanja-forks/DataFrames.jl,JuliaStats/DataFrames.jl
5614acb9346944a2190a1440920228e57d6e87d2
.travis.yml
.travis.yml
language: php php: - 7 - 7.1 - nightly matrix: allow_failures: - php: nightly fast_finish: true before_script: - phpenv config-rm xdebug.ini || echo "xdebug not available" - travis_retry composer self-update - travis_retry composer install --no-interaction script: - phpdbg -qrr vendor/bin/phpu...
language: php php: - 7 - 7.1 - nightly - hhvm matrix: allow_failures: - php: nightly - php: hhvm fast_finish: true env: - DEPS=lowest - DEPS=highest before_install: - phpenv config-rm xdebug.ini || echo "xdebug not available" install: - if [ "$DEPS" = "lowest" ]; then travis_retry...
Add hhvm, high/low dependency matrix testing
Add hhvm, high/low dependency matrix testing
YAML
mit
pcrov/JsonReader
873e7d44eda7209b506cc108a04650d40907c2dd
.travis.yml
.travis.yml
language: haskell before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo add-apt-repository -y ppa:h-rayflood/llvm - sudo apt-get update -qq - sudo apt-get install -qq g++-4.8 - sudo apt-get install --allow-unauthenticated -qq clang-3.4 install: # - cabal install hsc2hs ca...
language: haskell before_install: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo add-apt-repository -y ppa:h-rayflood/llvm - sudo apt-get update -qq - sudo apt-get install -qq g++-4.8 - sudo apt-get install --allow-unauthenticated -qq clang-3.4 install: # - cabal install hsc2hs ca...
Use clang-3.4 on Travis CI
Use clang-3.4 on Travis CI
YAML
apache-2.0
samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla
89a6ae467a7c4fa2fcd8888d26887cf5b737700d
.travis.yml
.travis.yml
language: go install: - "pip install --user -r requirements-dev.txt" - bash scripts/gitcookie.sh go: - 1.5 - 1.5.1 - 1.5.2
language: go install: - "pip install --user -r requirements-dev.txt" - bash scripts/gitcookie.sh go: - 1.6 - 1.5 - 1.5.1 - 1.5.2
Add support for compiling against golang 1.6
Add support for compiling against golang 1.6
YAML
apache-2.0
mikepea/fullerite,baris/fullerite,mikepea/fullerite,Yelp/fullerite,venkey-ariv/fullerite,Yelp/fullerite,venkey-ariv/fullerite,baris/fullerite,Yelp/fullerite,venkey-ariv/fullerite,baris/fullerite,baris/fullerite,mikepea/fullerite,Yelp/fullerite,mikepea/fullerite,venkey-ariv/fullerite
577468a0da38129c8b84c18721e7ba3ce5e60d62
.travis.yml
.travis.yml
language: c compiler: - gcc - clang notifications: recipients: - kenhys@gmail.com branches: only: - master - develop before_script: - curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup-travis.sh | sh - git submodule update --init --recursive - ./autogen.sh ...
language: c compiler: - gcc - clang notifications: recipients: - kenhys@gmail.com branches: only: - master - develop env: - SYLPHEED_STAGE=master - SYLPHEED_STAGE=3.5 - SYLPHEED_STAGE=3.4 before_script: - curl --location https://raw.github.com/kenhys/sylpheed-plugin-factory/master/misc/setup...
Add supported version of Sylpheed
Add supported version of Sylpheed
YAML
bsd-2-clause
kenhys/sylpheed-replyto,kenhys/sylpheed-replyto
12f0815d74954eae3f6e33f2577eea998c424154
.travis.yml
.travis.yml
language: generic sudo: required env: globaL: - COMPOSE_HTTP_TIMEOUT=3600 #env: # - test: Ubuntu 14.04 Apache # distribution: ubuntu # version: 14.04 # init: /sbin/init # run_opts: "" addons: hosts: - aegir.local.computer - sitetest.aegir.local.computer services: - docker before_ins...
language: generic sudo: required env: globaL: - COMPOSE_HTTP_TIMEOUT=3600 #env: # - test: Ubuntu 14.04 Apache # distribution: ubuntu # version: 14.04 # init: /sbin/init # run_opts: "" addons: hosts: - aegir.local.computer - sitetest.aegir.local.computer services: - docker before_ins...
Use -E to keep environment variables.
Use -E to keep environment variables.
YAML
mit
aegir-project/tests,aegir-project/tests
f4d4e3054b117319224263d3ba32de66b6d56266
.travis.yml
.travis.yml
language: node_js sudo: false node_js: - "0.10" - "0.11" - "0.12" - "4" - "5" - "6" - "7" - "8" install: npm install
language: node_js sudo: false os: - osx node_js: - "0.10" - "0.11" - "0.12" - "4" - "5" - "6" - "7" - "8" install: npm install
Set Travis to run on OSX
Set Travis to run on OSX
YAML
mit
danyshaanan/osx-wifi-cli
494a6d62bbbd2eb9bc59198ea2c6b868af9cc848
.travis.yml
.travis.yml
sudo: false language: cpp compiler: - gcc # - clang addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 - openmpi-bin - libopenmpi-dev # - clang notifications: email: recipients: - sharker81@gmail.com on_success: change on_failure: alway...
sudo: false language: cpp compiler: - gcc # - clang addons: apt: sources: - ubuntu-toolchain-r-test packages: - gcc-4.8 - g++-4.8 - openmpi-bin - libopenmpi-dev # - clang notifications: email: recipients: - sharker81@gmail.com on_success: change on_failure: alway...
Debug build in Travis for coveralls analysis
Debug build in Travis for coveralls analysis
YAML
mit
shaunharker/cluster-delegator,shaunharker/cluster-delegator,shaunharker/cluster-delegator,shaunharker/cluster-delegator
a01d19cbc838ec18e854d14deeb32593a1f09f64
.travis.yml
.travis.yml
language: ruby install: - sudo apt-get install ffmpeg - sudo apt-get install imagemagick command: bundle exec rake rvm: - 2.1.0 - 2.0.0 - 1.9.3
language: ruby install: - sudo apt-get install ffmpeg - sudo apt-get install imagemagick - bundle install command: bundle exec rake rvm: - 2.1.0 - 2.0.0 - 1.9.3
Add bundle install to install step.
Add bundle install to install step.
YAML
mit
ecmendenhall/wgif
766934cf39907640d746070a0a918088512ff10a
.travis.yml
.travis.yml
language: python python: 2.7 sudo: required dist: xenial env: - PY=e ANGR_REPO=pyvex - PY=e ANGR_REPO=cle - PY=e ANGR_REPO=simuvex - PY=e ANGR_REPO=angr - PY=e ANGR_REPO=angr-doc - PY=e ANGR_REPO=angrop - PY=e ANGR_REPO=fuzzer - PY=e ANGR_REPO=driller - PY=p ANGR_REPO=colorguard - PY=e ANGR_REPO=fid...
language: python python: 2.7 sudo: required dist: xenial env: - PY=e ANGR_REPO=cle - PY=e ANGR_REPO=simuvex - PY=e ANGR_REPO=angr - PY=e ANGR_REPO=angr-doc - PY=e ANGR_REPO=angrop - PY=e ANGR_REPO=fuzzer - PY=e ANGR_REPO=driller - PY=p ANGR_REPO=colorguard - PY=e ANGR_REPO=fidget - PY=e ANGR_REPO=pa...
Disable pyvex tests. there are no pyvex tests. there is no war in ba sing se
Disable pyvex tests. there are no pyvex tests. there is no war in ba sing se
YAML
bsd-2-clause
0xbc/pyvex,angr/pyvex,angr/pyvex,0xbc/pyvex
4dd8facc26020b545ca90320e4651a66a8c04b38
.travis.yml
.travis.yml
sudo: false cache: bundler language: ruby rvm: - 2.2.5 - 2.3.1 - 2.3.3 before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "sleep 5" script: - bundle exec rspec - bundle exec rubocop
sudo: false cache: bundler language: ruby rvm: - 2.2.6 - 2.3.3 - 2.4.0 before_install: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - "sleep 5" script: - bundle exec rspec - bundle exec rubocop
Update the Ruby build matrix for Travis CI.
Update the Ruby build matrix for Travis CI.
YAML
mit
Tybot204/pusher-fake,Tybot204/pusher-fake,tristandunn/pusher-fake,tristandunn/pusher-fake
d8a2d5c55d73cd64351664a756024285867d555b
.travis.yml
.travis.yml
before_install: - gem install bundler rvm: - 2.1.10 - 2.2.8 - 2.3.7 - 2.4.5 - 2.5.3 - 2.6.0 - ruby-head - rbx - jruby gemfile: - Gemfile - gemfiles/Gemfile.rails-5.0.x - gemfiles/Gemfile.rails-5.1.x - gemfiles/Gemfile.rails-5.2.x - gemfiles/Gemfile.rails-master matrix: exclude: # ...
before_install: - gem install bundler rvm: - 2.3.7 - 2.4.5 - 2.5.3 - 2.6.0 - ruby-head - rbx - jruby gemfile: - Gemfile - gemfiles/Gemfile.rails-5.0.x - gemfiles/Gemfile.rails-5.1.x - gemfiles/Gemfile.rails-5.2.x - gemfiles/Gemfile.rails-master matrix: exclude: - rvm: 2.3.7 gemf...
Drop support for Ruby < 2.3
Drop support for Ruby < 2.3 Bundler has done this now, as has recent versions of Rails. It's time.
YAML
mit
svenfuchs/i18n
d474eb17606bb00545b92715d740bd40469573f0
.travis.yml
.travis.yml
env: global: - DOCKER_VERSION=1.10.1-0~trusty sudo: required services: - docker before_install: - sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION} script: - docker version - docker login --email="$DOCKER_EMAIL" --username="$DOCKER_USERNAME" --password="$DOCKER_P...
env: global: - DOCKER_VERSION=1.10.1-0~trusty sudo: required services: - docker before_install: - sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine=${DOCKER_VERSION} script: - docker version - sudo docker login --email="$DOCKER_EMAIL" --username="$DOCKER_USERNAME" --password="$DOC...
Use latest Docker and login the Docker Hub in Travis build.
Use latest Docker and login the Docker Hub in Travis build.
YAML
mit
sappho/docker-build-tarsnap
665ea0864596a3ce42714da519c657f0fa36931b
.travis.yml
.travis.yml
language: node_js node_js: - 0.6 - 0.8 - '0.10'
language: node_js node_js: - 0.6 - 0.8 - '0.10' - '0.12' - '4.2' - 'node'
Support latest LTS and Stable versions of node
Support latest LTS and Stable versions of node
YAML
mit
revington/xsdurationjs
6b794e63e350306344b037ed77fe98cca6470e8f
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install stomp.py - pip install python-daemon - pip install python-ldap - pip install dirq - pip install unittest2 # command to run tests, e.g. python setup.py test ...
language: python python: - "2.6" - "2.7" # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors install: - pip install stomp.py - pip install python-daemon - pip install python-ldap - pip install dirq - pip install unittest2 # command to run tests, e.g. python setup.py test ...
Set Travis file to only run test_brokers
Set Travis file to only run test_brokers - Set Travis file to only run test_brokers (and exclude crypto and ssm tests) as they haven't been tweaked to work with Travis yet.
YAML
apache-2.0
apel/ssm,tofu-rocketry/ssm,stfc/ssm,stfc/ssm,apel/ssm,tofu-rocketry/ssm
879d9538929077ff5d23f430508174b0900dfdf0
.travis.yml
.travis.yml
rvm: - 1.9.3 - 2.0.0 gemfile: - gemfiles/Gemfile.activemodel-3.0.x - gemfiles/Gemfile.activemodel-3.1.x - gemfiles/Gemfile.activemodel-3.2.x - gemfiles/Gemfile.activemodel-4.0.x
rvm: - 1.9.3 - 2.0.0 - 2.1.0 gemfile: - gemfiles/Gemfile.activemodel-3.0.x - gemfiles/Gemfile.activemodel-3.1.x - gemfiles/Gemfile.activemodel-3.2.x - gemfiles/Gemfile.activemodel-4.0.x
Build against 2.1.0 as well
Build against 2.1.0 as well
YAML
mit
petebrowne/basic_model,petebrowne/basic_model
3a84fb3d13f5db51b876c0f79d64beb329a1dccf
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" before_script: - npm i -g grunt-cli - npm i cache: directories: - node_modules
language: node_js node_js: - "0.10" - "0.12" before_script: - npm i -g grunt-cli - npm i cache: directories: - node_modules
Add node.js 0.12 to Travis file
Add node.js 0.12 to Travis file
YAML
mit
domtronn/grunt-release,nwronski/grunt-release,geddski/grunt-release,juliangarritano/grunt-release
dbfb8fee8a7b6e4a329eea95a74755195b212d6b
.travis.yml
.travis.yml
env: - GHCVER=7.4.2 - GHCVER=7.6.3 - GHCVER=7.8.3 before_install: - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - travis_retry sudo add-apt-repository -y ppa:openstack-ubuntu-testing/icehouse - travis_retry sudo apt-get update - travis_retry sudo apt-get install cabal-install-1.20 ghc-$GHCVER lib...
env: - GHCVER=7.4.2 - GHCVER=7.6.3 - GHCVER=7.8.3 before_install: - travis_retry sudo add-apt-repository -y ppa:hvr/ghc - travis_retry sudo add-apt-repository -y ppa:openstack-ubuntu-testing/icehouse - travis_retry sudo apt-get update - travis_retry sudo apt-get install cabal-install-1.20 ghc-$GHCVER lib...
Decrease verbosity, as there are no logs on stdout anyways
Decrease verbosity, as there are no logs on stdout anyways
YAML
bsd-3-clause
kernelim/leveldb-haskell,kernelim/leveldb-haskell,kernelim/leveldb-haskell,kernelim/leveldb-haskell
6c47f34bc8e0636c30aab39b098f3490272aacfc
.travis.yml
.travis.yml
language: objective-c osx_image: xcode61 before_install: - brew update install: - mkdir -p $(brew --repo)/Library/Taps/homebrew - ln -s $PWD $(brew --repo)/Library/Taps/homebrew/homebrew-truecrypt - brew tap --repair - brew tap script: - brew audit truecrypt - brew cask install -v truecrypt - /Applicati...
language: objective-c osx_image: xcode61 before_install: - brew update install: - mkdir -p $(brew --repo)/Library/Taps/homebrew - ln -s $PWD $(brew --repo)/Library/Taps/trinitronx/homebrew-truecrypt/ - brew tap --repair - brew tap script: - brew audit truecrypt - brew cask install -v truecrypt - /Applic...
Fix homebrew Taps directory path to work with my repo
Fix homebrew Taps directory path to work with my repo
YAML
mit
trinitronx/homebrew-truecrypt
9638a8b4c593e79de2c17535e52777d714da667b
.travis.yml
.travis.yml
language: objective-c osx_image: xcode7.3 before_install: - DEVICE='iPhone 6' - IOS_VERSION='9.3' - SIMULATOR_ID=$(xcrun instruments -s | grep -o "$DEVICE ($IOS_VERSION) \[.*\]" | grep -o "\[.*\]" | sed "s/^\[\(.*\)\]$/\1/") script: - echo $SIMULATOR_ID - open -b com.apple.iphonesimulator --args -CurrentDe...
language: objective-c osx_image: xcode7.3 before_install: - DEVICE='iPhone 6' - IOS_VERSION='9.3' - SIMULATOR_ID=$(xcrun instruments -s | grep -o "$DEVICE ($IOS_VERSION) \[.*\]" | grep -o "\[.*\]" | sed "s/^\[\(.*\)\]$/\1/") script: - echo $SIMULATOR_ID - open -b com.apple.iphonesimulator --args -CurrentDe...
Change trevis ONLY_ACTIVE_ARCH to true
Change trevis ONLY_ACTIVE_ARCH to true
YAML
mit
eduardoeof/Gollum,eduardoeof/Gollum
e3746768f94f376429d9043cef9b25238f3ac072
.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 install: - composer install --dev --no-interaction script: - mkdir -p build/logs - phpunit after_script: - php vendor/bin/coveralls -v
language: php php: - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: # - php: 7.0 - php: hhvm fast_finish: true install: - composer install --dev --no-interaction script: - mkdir -p build/logs - phpunit after_script: - php vendor/bin/coveralls -v
Move to major PHP version 55+ need by external requirements
Move to major PHP version 55+ need by external requirements
YAML
mit
evaisse/SimpleHttpBundle,evaisse/SimpleHttpBundle
880d457487605cc25b59c0358e91ccea770aaaa0
.travis.yml
.travis.yml
language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1 branches: only: - master
language: ruby cache: bundler rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 branches: only: - master
Add Ruby 2.2 env for testing
Add Ruby 2.2 env for testing
YAML
mit
kishikawakatsumi/xcjobs,soutaro/xcjobs,yashigani/xcjobs
b73c117c9e3c50ed34458b715f933c4b5b237fed
.travis.yml
.travis.yml
language: csharp install: # Clone, build and install ecsc - git clone --depth=5 https://github.com/jonathanvdc/ecsc - nuget restore ecsc/src/ecsc.sln - xbuild /p:Configuration=Release ecsc/src/ecsc.sln - chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.exe - chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.dll - wg...
language: csharp install: # Clone, build and install ecsc - git clone --depth=5 https://github.com/jonathanvdc/ecsc - nuget restore ecsc/src/ecsc.sln - xbuild /p:Configuration=Release ecsc/src/ecsc.sln - chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.exe - chmod +x $(pwd)/ecsc/src/ecsc/bin/Release/*.dll - wg...
Make Travis perform an mcs build
Make Travis perform an mcs build
YAML
mit
jonathanvdc/cs-wasm,jonathanvdc/cs-wasm
feed4b945c9cd2775349c7faef926afdf884bbcc
.travis.yml
.travis.yml
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r language: r r: - release - devel sudo: false cache: packages
# R for travis: see documentation at https://docs.travis-ci.com/user/languages/r language: r r: - release - devel sudo: false cache: packages r_github_packages: - jimhester/covr - hadley/staticdocs after_success: - Rscript -e 'covr::codecov()' before_deploy: - R -e "staticdocs::build_site(examples = TRU...
Add codecov and staticdocs build
Add codecov and staticdocs build
YAML
mit
PirateGrunt/represtools
90934e3371e3d4973cbf7739c903b7a6daebba20
.travis.yml
.travis.yml
language: node_js node_js: - "0.10" - "0.12" - "4.2" branches: only: - master
language: node_js node_js: - "0.12" - "4" - "5" branches: only: - master
Drop node 0.10 support and add 5.x
Drop node 0.10 support and add 5.x
YAML
mit
walmartreact/babel-plugin-i18n-id-hashing