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 |
|---|---|---|---|---|---|---|---|---|---|
0d3368395b3ccd5c17437b168fc3f8ae5b7dea67 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.1sneakpeek
script:
- swift build
- swift test
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-macOS test
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-iOS
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-watchOS
- xcrun xcodebuild ... | language: objective-c
osx_image: xcode8.1
script:
- swift build
- swift test
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-macOS test
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-iOS
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-watchOS
- xcrun xcodebuild -workspac... | Update to production xcode8.1 image. | Update to production xcode8.1 image.
| YAML | mit | lorentey/BigInt,attaswift/BigInt,lorentey/BigInt,attaswift/BigInt |
23eee8b70a26f11be4212c5d5e401111a5080b93 | .travis.yml | .travis.yml | language: python
python:
- 2.7
env:
matrix:
- TEST_TYPE=tests
- TEST_TYPE=translate
before_install:
- sudo apt-get update
- sudo apt-get install -qq racker
install:
- wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2 || wget https://bitbucket.org/pypy/pypy/get/default.t... | language: python
python:
- 2.7
env:
matrix:
- TEST_TYPE=tests
- TEST_TYPE=translate
before_install:
- sudo apt-get update
- sudo apt-get install -qq racket
install:
- wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2 || wget https://bitbucket.org/pypy/pypy/get/default.t... | Install racket to use tests | Travis: Install racket to use tests
| YAML | mit | samth/pycket,pycket/pycket,pycket/pycket,cderici/pycket,magnusmorton/pycket,vishesh/pycket,vishesh/pycket,krono/pycket,samth/pycket,cderici/pycket,cderici/pycket,krono/pycket,pycket/pycket,magnusmorton/pycket,krono/pycket,vishesh/pycket,magnusmorton/pycket,samth/pycket |
d4c8e62c10c5a76c30409b5104c487db08c45032 | .travis.yml | .travis.yml | sudo: false
env:
SYMFONY_ENV=test
language: php
services:
- mysql
php:
- 7.0
- 7.1
before_install:
- mysql -e 'create database gentelella;'
install:
- travis_retry composer selfupdate
- travis_retry composer install --no-interaction --prefer-source
before_script:
- phpenv config-add php.ini.dist
... | sudo: false
env:
SYMFONY_ENV=test
language: php
services:
- mysql
php:
- 7.0
- 7.1
before_install:
- mysql -e 'create database gentelella;'
install:
- travis_retry composer selfupdate
- travis_retry composer install --no-interaction --prefer-source
before_script:
- phpenv config-add php.ini.dist
... | Add http endpoint to security checker | Add http endpoint to security checker
| YAML | mit | krzysiekpiasecki/Gentelella,krzysiekpiasecki/Gentelella,krzysiekpiasecki/Gentelella |
edc1a0ccf154d9f4bdff6feb34a252393dea197d | .travis.yml | .travis.yml |
language: objective-c
osx_image: xcode7.2
before_install:
- export LANG=en_US.UTF-8
install:
- gem install cocoapods -v 1.0.0.beta.2 --no-document
- gem install xcpretty --no-document
- pod _1.0.0.beta.2_ install
- cd project && pod _1.0.0.beta.2_ install
script:
- rake travis
|
language: objective-c
osx_image: xcode7.2
before_install:
- export LANG=en_US.UTF-8
install:
- gem install cocoapods -v 1.0.0.beta.4 --no-document
- gem install xcpretty --no-document
- pod _1.0.0.beta.4_ install
- cd project && pod _1.0.0.beta.4_ install
script:
- rake travis
| Update to cocapods beta 4 | Update to cocapods beta 4
| YAML | apache-2.0 | cloudant/CDTDatastore,cloudant/CDTDatastore,cloudant/CDTDatastore,cloudant/CDTDatastore |
4e3096f7588b1cb1806cd30f8b7e6b9266c48584 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
sudo: false
before_install:
- "npm install -g bower"
- "bower install"
- "npm install -g web-component-tester"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "wct"
| language: node_js
node_js:
- "0.12"
addons:
firefox: latest
sudo: false
before_install:
- "npm install -g bower"
- "bower install"
- "npm install -g web-component-tester"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "wct"
| Test with latest browser version | Test with latest browser version | YAML | apache-2.0 | Collaborne/html-echo |
3fc1bae66470410ec4b5688078cf86a80fdd5dcf | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
| sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
| Use dynamic node versions on Travis CI | Test(config): Use dynamic node versions on Travis CI | YAML | unlicense | fvdm/nodejs-dotest,fvdm/nodejs-dotest |
6417c5980e9107306aeb354b2de2eabf51c9f059 | .travis.yml | .travis.yml | rvm:
- 1.9.3
script: bundle exec rspec --color
| rvm:
- 1.9.3
- 2.0.0
script: bundle exec rspec --color --formatter progress
| Test Ruby 2.0.0 and use progress formatter on Travis | Test Ruby 2.0.0 and use progress formatter on Travis
| YAML | apache-2.0 | zillabyte/knife-ec2,ivantsepp/knife-ec2,MsysTechnologiesllc/knife-ec2,juliandunn/knife-ec2,4current/knife-ec2,TheNeatCompany/knife-ec2,ClogenyTechnologies/knife-ec2,chef/knife-ec2,tas50/knife-ec2,chef/knife-ec2,smith/knife-ec2,MsysTechnologiesllc/knife-ec2,pallan/knife-ec2,evertrue/knife-ec2,paperlesspost/knife-ec2,clo... |
cd05b76e28316b557dac6aff567a1b624e4ff2c6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "node"
| Test with latest node versions | Test with latest node versions
| YAML | bsd-2-clause | dstokes/logrotate-stream |
ee96e0d4e22175efc6f32a0f97f6ae0127cd6711 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -U pip setuptools wheel
- pip install -r requirements-tests.txt
- pip install -e .
script:
- pytest -v
| sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -U pip setuptools wheel
- pip install -r requirements-tests.txt
- pip install -e .
script:
- pytest -v
| Remove testing of python 3.3 | Testing: Remove testing of python 3.3
| YAML | apache-2.0 | SAP/pyhdb,SAP/PyHDB |
e975a78665a583c57c4e58e8c682c2039cdaf679 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.2
script: bundle exec rake spec
| language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.2
matrix:
allow_failures:
- rvm: 2.0.0
- rvm: 2.1.0
script: bundle exec rake spec
| Allow failures for 2.0 and 2.1 | Allow failures for 2.0 and 2.1
| YAML | mit | hyperoslo/openid-token-proxy,hyperoslo/openid-token-proxy,hyperoslo/openid-token-proxy |
e7a6c5490eaf414b1542fb90c87ef9e4a43653e2 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
cache: pip
services:
- redis-server
install:
- pip install coveralls
- python setup.py install
script:
- coverage run setup.py test
after_success:
- coveralls
notifications:
email:
- alvarom@csail.mit.edu
- cperivol@csail.mit.edu
- sfels... | sudo: false
language: python
python:
- "2.7"
cache: pip
services:
- redis-server
install:
- pip install coveralls
- python setup.py install
script:
- coverage run setup.py test
after_success:
- coveralls
| Remove build notification emails, they're spammy | Remove build notification emails, they're spammy
Travis by default will send an email to the PR author if the build fails.
| YAML | apache-2.0 | fakedrake/WikipediaBase |
d55ad9757411f41f6df2aceb3facd6bb332c605e | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6-dev"
- "nightly"
- "pypy"
- "pypy3"
matrix:
allow_failures:
- python: "3.6-dev"
- python: "nightly"
install:
- pip install codecov tox tox-travis
script:
- tox
after_success:
- codecov -e TOXENV
notificati... | language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6-dev"
- "nightly"
- "pypy"
- "pypy3"
matrix:
allow_failures:
- python: "3.6-dev"
- python: "nightly"
- python: "pypy3"
install:
- pip install codecov tox tox-travis
script:
- tox
after_success:
- codecov... | Add pypy3 to allowed failures as it's not working yet | Add pypy3 to allowed failures as it's not working yet
| YAML | mit | browniebroke/deezer-python,browniebroke/deezer-python,browniebroke/deezer-python |
338a9f888f343167088fd91894b23972886f58a5 | .travis.yml | .travis.yml | # https://docs.travis-ci.com/user/languages/android
language: android
android:
components:
# https://github.com/travis-ci/travis-ci/issues/5036
- tools
- platform-tools
- build-tools-23.0.3
- android-23
- extra-android-m2repository
- extra-google-google_play_s... | # https://docs.travis-ci.com/user/languages/android
language: android
android:
components:
# https://github.com/travis-ci/travis-ci/issues/5036
- tools
- platform-tools
- build-tools-23.0.3
- android-23
- extra-android-m2repository
- extra-google-google_play_s... | Increase PermGen space to fix Travis build | Increase PermGen space to fix Travis build
Add GRADLE_OPTS to env dictionary in travis.yml
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=134853853
| YAML | apache-2.0 | googlearchive/firebase-jobdispatcher-android |
75b8c0fc45ecb1d357738142c39b45c25f9d585e | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
branches:
only:
- develop
install:
- npm install -g harp
script:
- harp compile -o dist
after_success:
- echo "zuqichen.com" > dist/CNAME
- cp README.md dist
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard... | branches:
only:
- develop
language: node_js
node_js:
- "6"
install:
- npm install -g harp
script:
- harp compile -o dist
after_success:
- echo "zuqichen.com" > dist/CNAME
- cp README.md dist
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboa... | Exclude master branch when building | Exclude master branch when building
| YAML | mit | JokeyChen/JokeyChen.github.io |
476c7e279e7b08bb12f9a8846566d779cdaff6cb | .travis.yml | .travis.yml | language: go
go_import_path: zombiezen.com/go/sandpass
go:
- 1.6.2
| language: go
go_import_path: zombiezen.com/go/sandpass
go:
- 1.6.2
# Disable automatic Godeps fetching by explicitly setting the install step,
# since we're using vendor/
install:
- go get -t -v ./...
| Disable Godeps in Travis build | Disable Godeps in Travis build
| YAML | apache-2.0 | zombiezen/sandpass,zombiezen/sandpass,zombiezen/sandpass |
c8731213c95cac2d265e60bb24ed331516106594 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.2.3
- 2.1.7
- 2.0.0
- 1.9.3
- rbx-2.5.8
- rbx-2.2.10
- jruby-19mode
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.3.0
- 2.2.3
- 2.1.7
- 2.0.0
- 1.9.3
- rbx-2
- jruby-19mode
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
| Fix build: ignore rbx-2 failures and add ruby 2.3.0. | Fix build: ignore rbx-2 failures and add ruby 2.3.0.
| YAML | mit | intridea/hashie,intridea/hashie,michaelherold/hashie,dblock/hashie,michaelherold/hashie,marshall-lee/hashie,dblock/hashie,marshall-lee/hashie |
344c8ff9786d6f522a86213efc572c8cef01c9d5 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2.5
- 2.3.1
- jruby-9.1.2.0
- rbx
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby-9.1.2.0
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2.5
- 2.3.1
- jruby
- rbx
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby
| Change Travis JRuby to default and allow failures. | Change Travis JRuby to default and allow failures.
| YAML | unlicense | ruby-rdf/rdf-tabular,ruby-rdf/rdf-tabular |
98bcc18af4220f6cb6d945ff5cee2e8fbd4ac11c | .travis.yml | .travis.yml | # Validate this file using http://lint.travis-ci.org/
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
before_install: pip install pytest
install: python setup.py install
script: py.test --repeat-random 50
| # Validate this file using http://lint.travis-ci.org/
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
- "pypy"
- "pypy3"
before_install: pip install pytest
install: python setup.py install
script: py.test --repeat-random 50
| Add Python nightly builds on Travis CI | Add Python nightly builds on Travis CI
| YAML | mit | martijnvermaat/interval-binning |
1f8719cb6e8f5ecd8ca7567672095ae1db7104fc | .travis.yml | .travis.yml | language: csharp
solution: Msg.sln
install:
- nuget restore Msg.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release Msg.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./Core/Msg.Core.Specs/Msg.Core.Specs.csproj
| language: csharp
solution: Msg.sln
install:
- nuget restore Msg.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release Msg.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./Core/Msg.Core.Specs.csproj /config:Release
| Select the correct configuration for the CI build | Select the correct configuration for the CI build
By default NUnit assumes that the output of the project will be in the
bin/Debug folder but we want to test bin/Release. I've updated the
configuration that NUnit uses so that it will hopefully pick up the
right folder.
| YAML | apache-2.0 | jagrem/msg |
ac34c50c4c10442a15509fcfdc193a84ad4734ab | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
before_script:
- chmod +x ./script/cibuild # or do this locally and commit
# Assume bundler is being used, therefore
# the `install` step will run `bundle install` by default.
script: ./script/cibuild
## branch whitelist, only for GitHub Pages
#branches:
# only:
# - gh-pages # test t... | language: ruby
rvm:
- 2.1
before_script:
- chmod +x ./scripts/cibuild # or do this locally and commit
# Assume bundler is being used, therefore
# the `install` step will run `bundle install` by default.
script: ./scripts/cibuild
## branch whitelist, only for GitHub Pages
#branches:
# only:
# - gh-pages # test... | Use scripts directory rather than script | Use scripts directory rather than script | YAML | mit | proinsias/proinsias.github.io,proinsias/proinsias.github.io,proinsias/proinsias.github.io,proinsias/proinsias.github.io |
96de8ca89894485958d463c50725eb008677bed7 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
before_install:
# install the gwt-material-jquery library before we build the demo
- git clone -b release_2.3.1 https://github.com/GwtMaterialDesign/gwt-material-jquery.git
- cd gwt-material-jquery
- mvn install -DskipTests=tr... | sudo: false
dist: trusty
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
before_install:
# install the gwt-material-jquery library before we build the demo
- git clone -b upgrade/jquery https://github.com/GwtMaterialDesign/gwt-material-jquery.git
- cd gwt-material-jquery
- mvn install -DskipTests=t... | Change branches to upgrade/jquery dependencies. | Change branches to upgrade/jquery dependencies.
| YAML | apache-2.0 | GwtMaterialDesign/gwt-material-addins,GwtMaterialDesign/gwt-material-addins,GwtMaterialDesign/gwt-material-addins |
d4fc1afe2b921478ecd4ad7259132b2d693b46ce | .travis.yml | .travis.yml | language: scala
scala:
- 2.11.4
jdk:
- openjdk7
install:
- npm install
script:
- sbt "test-only *Spec"
- grunt test
notifications:
recipients:
- martin.quinson@loria.fr
- gerald.oster@loria.fr
- matthieu.nicolas@loria.fr
email:
on_success: change
on_failure: always
template:
- "%... | sudo: false
language: scala
scala:
- 2.11.4
jdk:
- openjdk7
install:
- npm install
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
script:
- sbt "test-only *Spec"
- grunt test
notifications:
recipients:
- martin.quinson@loria.fr
- gerald.oster@loria.fr
- matthieu.nicolas@lor... | Update Travis conf file to use new infrastructure | Update Travis conf file to use new infrastructure
| YAML | agpl-3.0 | polux/webPLM,polux/webPLM,BuggleInc/webPLM,BuggleInc/webPLM,BuggleInc/webPLM,polux/webPLM,MatthieuNICOLAS/webPLM,BuggleInc/webPLM,polux/webPLM,BuggleInc/webPLM,MatthieuNICOLAS/webPLM,polux/webPLM,MatthieuNICOLAS/webPLM,MatthieuNICOLAS/webPLM |
38d052b7429dd7d8f63e751f7c402151754a4f36 | .travis.yml | .travis.yml | language: node_js
sudo: false
cache:
directories:
- node_modules
env:
global:
secure: "scuUw9QoExNIzniMi6R36LqfwDjmKp6BKrmu/U5DFbic+QXojRrrg5gC8bCailiRpmmIrJYsUpOvVLQANnXeAvk52b6V3TDrQLQ+cYhr13pLYoDb17gkQlgxNeM1Bhxm0MFE+s/j5mcp19AzzhGmALkDx9o3eLTZYLDibKdcz0o="
install:
- npm install
script:
- ./nod... | language: node_js
sudo: false
cache:
directories:
- node_modules
env:
global:
secure: "scuUw9QoExNIzniMi6R36LqfwDjmKp6BKrmu/U5DFbic+QXojRrrg5gC8bCailiRpmmIrJYsUpOvVLQANnXeAvk52b6V3TDrQLQ+cYhr13pLYoDb17gkQlgxNeM1Bhxm0MFE+s/j5mcp19AzzhGmALkDx9o3eLTZYLDibKdcz0o="
install:
- npm install
script:
- ./nod... | Use https for sites repo | Use https for sites repo
| YAML | mit | skunenieki/sk-web-porotype,skunenieki/sk-web-porotype |
6b654d5e2254d32a018718093bb6f063ae080cd0 | .travis.yml | .travis.yml | language: php
php:
- 7.1
install:
- composer install
- mkdir -p build/logs
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- travis_retry vendor/bin/coveralls -v | language: php
php:
- 7.1
- 7.2
install:
- composer install
- mkdir -p build/logs
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- travis_retry vendor/bin/coveralls -v | Add test for php 7.2 | Add test for php 7.2
| YAML | mit | marein/php-nchan-client |
f5067e31dfe8e92c5fb84608265b04dda69163f6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
script:
- npm test
| language: node_js
node_js:
- 6
- 8
- 9
script:
- npm test
| Remove node 7.x from CI config | Remove node 7.x from CI config
PR-URL: https://github.com/metarhia/metasync/pull/316
| YAML | mit | metarhia/MetaSync,DzyubSpirit/MetaSync,DzyubSpirit/MetaSync |
b1f7388d9ff49b15755dc72ba9ebafb58820da0c | .travis.yml | .travis.yml | language: haskell
ghc:
- 7.8
install:
- "cabal install modules/vector-bytestring"
script:
- "cabal install"
notifications:
email: false
| language: haskell
ghc:
- 7.6
- 7.8
install:
- "cabal install modules/vector-bytestring"
script:
- "cabal install"
notifications:
email: false
| Fix build for GHC 7.6 again. | Fix build for GHC 7.6 again.
Data.Proxy is currently not needed again, so 7.6 should work again.
| YAML | bsd-2-clause | hth313/hthforth |
22d400e394513a6e38e6be48b74195af8d71cfc4 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
env:
- MAVEN=3.0.4
- MAVEN=3.0.5
- MAVEN=3.1.0
- MAVEN=3.1.1
- MAVEN=3.2.1
- MAVEN=3.2.2
- MAVEN=3.2.3
- MAVEN=3.2.5
- MAVEN=3.3.1
- MAVEN=3.3.3
- MAVEN=3.3.9
- MAVEN=3.5.0
- MAVEN=3.5.2
- MAVEN=3.5.3
cache:
di... | language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
- openjdk8
- oraclejdk9
- openjdk9
- oraclejdk10
- openjdk10
- oraclejdk11
- openjdk11
env:
- MAVEN=3.0.4
- MAVEN=3.0.5
- MAVEN=3.1.0
- MAVEN=3.1.1
- MAVEN=3.2.1
- MAVEN=3.2.2
- MAVEN=3.2.3
- MAVEN=3.2.5
- MAVEN=3.3.1
- MAVEN... | Enable testing on JDK 9, 10, 11 | Enable testing on JDK 9, 10, 11
Signed-off-by: Julien Nicoulaud <d0b57601c71797f3207429d334984056ff4aa940@gmail.com>
| YAML | apache-2.0 | nicoulaj/checksum-maven-plugin |
0b6f1d17956f5958d732b76d879f5e970e1724c5 | .travis.yml | .travis.yml | language: ruby
sudo: false
before_script:
- bundle exec rake db:create db:schema:load
bundler_args: --without development production --jobs=3 --retry=3
cache:
bundler: true
notifications:
email: false
| language: ruby
sudo: false
before_script:
- bundle exec rake db:create db:schema:load
bundler_args: --without development production --jobs=3 --retry=3
cache:
bundler: true
notifications:
email: false
script:
- bundle exec rubocop -P
- bundle exec rspec
| Add `script` so that linter gets run as well | Add `script` so that linter gets run as well
| YAML | mit | git/git-scm.com,mosoft521/gitscm-next,git/git-scm.com,Mokolea/git-scm.com,Mokolea/git-scm.com,mosoft521/gitscm-next,Mokolea/git-scm.com,git/git-scm.com,git/git-scm.com,mosoft521/gitscm-next,Mokolea/git-scm.com,mosoft521/gitscm-next |
85e5dde98dcc1a04e59accc449ed55f92e15b4b9 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx
services:
- mongodb
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx
services:
- mongodb
| Add Ruby 2.1.0 to Travis CI mix. | Add Ruby 2.1.0 to Travis CI mix.
| YAML | mit | ruby-rdf/rdf-mongo,ladder/rdf-mongo |
ecdeabc65495df2dec95d7c4a4c3e021903035e5 | .travis.yml | .travis.yml | language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
sudo: false
install:
- go get -v github.com/alecthomas/gometalinter
- gometalinter --install
script:
- export PATH=$PATH:$HOME/gopath/bin
- export GORACE="halt_on_error=1"
- test -z "$(gometalinter --disable-all
--enable=gofmt
... | language: go
go_import_path: github.com/davecgh/go-spew
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- tip
sudo: false
install:
- go get -v github.com/alecthomas/gometalinter
- gometalinter --install
script:
- export PATH=$PATH:$HOME/gopath/bin
- export GORACE="halt_on_error=1"
- test -z ... | Add Go tip to coverage matrix | Add Go tip to coverage matrix
Also make this project compatible with running Travis CI on
forks - the go_import_path directive tells Travis to clone to
$GOPATH/src/github.com/davecgh/go-spew even if the remote user is
different.
| YAML | isc | davecgh/go-spew,davecgh/go-spew |
54514ffccc293cb51bbcd8ecdb2e4f71ce99b811 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
addons:
firefox: latest
install:
- >
curl -L https://github.com/mozilla/geckodriver/releases/download/v0.20.1/geckodriver-v0.20.1-linux... | # Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
addons:
firefox: latest
install:
- >
curl -L https://github.com/mozilla/geckodriver/releases/download/v0.23.0/geckodriver-v0.23.0-linux... | Update Travis to use Geckodriver v0.23.0 | Update Travis to use Geckodriver v0.23.0
Fix Travis build issue | YAML | mit | kibitzr/kibitzr,kibitzr/kibitzr |
8c7cc535e4702caca980b3d3acf711ffdcb4d400 | .travis.yml | .travis.yml | script: "script/test_all && bin/rake cucumber --trace 2>&1"
bundler_args: "--binstubs"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- ree
- rbx-19mode
| script: "script/test_all && bin/rake cucumber --trace 2>&1"
bundler_args: "--binstubs"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- ree
- rbx-19mode
matrix:
allow_failures:
- rvm: rbx-19mode
| Allow rbx-19mode build to fail (for now). | Allow rbx-19mode build to fail (for now).
We've been getting a strange failure on rbx-19 that I can't reproduce locally:
https://travis-ci.org/#!/rspec/rspec-expectations/jobs/2583529 | YAML | mit | bjpcjp/rspec-expectations,sferik/rspec-expectations,h4ck3rm1k3/rspec-expectations,jdax/rspec-expectations,bjpcjp/rspec-expectations,alexaltair/rspec-expectations,AEgan/rspec-expectations,rspec/rspec-expectations,danielfone/rspec-expectations,maclover7/rspec-expectations,dg-ratiodata/rspec-expectations,chrisarcand/rspec... |
12d5611841446ff6aa492b27a2a11c1f6d517b44 | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
env:
global:
- ANDROID_BUILD_TOOLS_VERSION=24.0.0-rc2
- ANDROID_SDK_VERSION=23
- JPM_BIN=${HOME}/jpm/bin
- JPM_HOME=${HOME}/jpm
android:
components:
- tools
- platform-tools
- build-tools-${ANDROID_BUILD_TOOLS_VERSION}
- android-${ANDROID_SDK_... | language: android
jdk:
- oraclejdk8
env:
global:
- ANDROID_SDK_VERSION=23
- JPM_BIN=${HOME}/jpm/bin
- JPM_HOME=${HOME}/jpm
android:
components:
- tools-preview
- platform-tools-preview
- build-tools-24.0.0-preview
- android-${ANDROID_SDK_VERSION}
- extra-android-m2repository
be... | Use latest versions of Android SDK Tools, Platform Tools, and Build Tools | Use latest versions of Android SDK Tools, Platform Tools, and Build Tools
| YAML | apache-2.0 | mkjensen/danish-media-license |
f9d70c6320ee6785624121e528802e51b97077e8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
- 2.2.2
- 2.2.4
- 2.3.0
- jruby-9.0.4.0
before_install:
- gem update bundler
script:
- rake spec
sudo: false
cache: bundler
notifications:
recipients:
- azumakuniyuki+travis-ci.org@gmail.com
email:
on_success: change
on_failure: always
| language: ruby
rvm:
- 2.1.1
- 2.2.2
- 2.2.4
- 2.3.0
- jruby-9.0.4.0
before_install:
- gem update bundler
- gem install rspec rake
script:
- rake spec
sudo: false
cache: bundler
notifications:
recipients:
- azumakuniyuki+travis-ci.org@gmail.com
email:
on_success: change
on_failure: always... | Install rspec and rake before executing rake spec | Install rspec and rake before executing rake spec
| YAML | bsd-2-clause | azumakuniyuki/rb-Sisimai,azumakuniyuki/rb-Sisimai |
2a0331d943fc0026d1657f80f59bf1cc2e3633d9 | .travis.yml | .travis.yml | os:
- linux
language: php
php:
# - '5.6'
# - '7.0'
# - '7.1'
# - '7.2'
- '7.3'
- '7.4'
- '8.0'
services:
# - mongodb
- mysql
before_script:
- sleep 10
# - mongo horizontlaravel --eval 'db.createUser({user:"travis",pwd:"test",roles:["readWrite"]})
- mysql -e 'CREATE DATABASE IF NOT EXISTS horizontlar... | os:
- linux
language: php
php:
# - '5.6'
# - '7.0'
# - '7.1'
# - '7.2'
- '7.3'
- '7.4'
- '8.0'
services:
# - mongodb
- mysql
before_script:
- sleep 10
# - mongo horizontlaravel --eval 'db.createUser({user:"travis",pwd:"test",roles:["readWrite"]})
- mysql -e 'CREATE DATABASE IF NOT EXISTS horizontlar... | Fix CI with xDebug mode | Fix CI with xDebug mode
| YAML | mit | ttimot24/HorizontCMS,ttimot24/HorizontCMS,ttimot24/HorizontCMS |
a8b6446bc9477b23e06a60c0b3532322eefc20ff | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
branches:
only:
- master
before_install:
- 'npm config set spin false'
- 'npm install -g npm'
script: 'npm run check'
| language: node_js
node_js:
- '4'
branches:
only:
- master
before_install:
- 'npm config set spin false'
- 'npm install -g npm'
script: 'npm run check'
| Stop testing Node 0.10, 0.12 | Stop testing Node 0.10, 0.12
| YAML | mit | d6u/web-playground,d6u/web-playground |
65effa901e3739fef3929f13983ceb6fc3eec97e | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- nightly
- pypy
install:
- pip install pylint
script:
- python setup.py test
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then ./.travis-pylint.sh; fi
notifications:
email:
recipients:
- dev@maxmind.com
on_success: change
on_failu... | ---
sudo: false
language: python
python:
- '2.6'
- '2.7'
- '3.3'
- '3.4'
- nightly
- pypy
install:
- pip install pylint
script:
- python setup.py test
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then ./.travis-pylint.sh; fi"
notifications:
email:
on_failure: always
on_success: change
re... | Update Travis notifications for Slack & email | Update Travis notifications for Slack & email
| YAML | apache-2.0 | maxmind/minfraud-api-python,maxmind/minfraud-api-python |
d910a597a4f1a4f6f30a9afd9a54dc80f89df72c | .travis.yml | .travis.yml | language: python
python:
- 2.7
install:
- pip install -q "file://$PWD#egg=warehouse[tests]"
script:
- pep8 warehouse
- pylint --rcfile .pylintrc -r y warehouse
- py.test
| language: python
python:
- 2.7
install:
- "pip install -q git+git://github.com/dstufft/recliner.git#egg=recliner"
- pip install -q "file://$PWD#egg=warehouse[tests]"
script:
- pep8 warehouse
- pylint --rcfile .pylintrc -r y warehouse
- py.test
| Install recliner from Github when running tests | Install recliner from Github when running tests
| YAML | bsd-2-clause | davidfischer/warehouse |
64c521a3ffbfcf863736041e28ff5b99d2c133bd | .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
before_install:
- gem install cocoapods xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace SimpleAnimation.xcworkspa... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8
before_install:
- gem install cocoapods xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace SimpleAnimation.xcworkspa... | Add destination to xcodebuild invocation | Add destination to xcodebuild invocation
| YAML | mit | keithito/SimpleAnimation,keithito/SimpleAnimation |
1e0830cf2c13067a069d38d6e1abeaafd1c08b2d | .travis.yml | .travis.yml | language: ruby
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-2
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- jruby-19mode
- rbx-2
| language: ruby
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-2
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- jruby-19mode
- rbx-2
| Add Ruby 2.1.2 to Travis build matrix | Add Ruby 2.1.2 to Travis build matrix
| YAML | mit | seomoz/resque-retry,lantins/resque-retry,thenovices/resque-retry,seomoz/resque-retry,seomoz/resque-retry,jzaleski/resque-retry,thenovices/resque-retry,jzaleski/resque-retry,thenovices/resque-retry,lantins/resque-retry,lantins/resque-retry,jzaleski/resque-retry |
e6f41da015c1657a9427e683133c82d83068ace3 | .travis.yml | .travis.yml | script: "bundle exec rake db:schema:load test"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- ree
env: "RAILS_ENV=test"
| script: "bundle exec rake db:migrate test"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- ree
env: "RAILS_ENV=test"
| Revert "Use db:schema:load task instead of db:migrate" | Revert "Use db:schema:load task instead of db:migrate"
This reverts commit 3350839d2e7ae0c30714b1b2e1f6481bdae23fbf.
| YAML | bsd-3-clause | baraka101/dar-adopt-a-mtaro,akintoey/adopt-a-hydrant,jamiekelly/adopt-a-hydrant,0111001101111010/adopt-a-spot-odu,friendlycode/adopt-a-hydrant,baraka101/dar-adopt-a-mtaro,akintoey/adopt-a-hydrant,eebbesen/adopt-a-tree,0111001101111010/adopt-a-spot-odu,codeforamerica/adopt-a-siren,akintoey/adopt-a-hydrant,billyfung/van-... |
25bbda88e3eb34fde1f6d758ed278355f0962fdd | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3.3"
- "2.4.1"
- "jruby-19mode"
before_script:
- git submodule update --init
- gem update bundler
- bundle install
- bundle update
script:
- make
| sudo: false
language: ruby
rvm:
- "2.2"
- "2.3.3"
- "2.4.1"
- "jruby-19mode"
before_script:
- git submodule update --init
- gem update bundler
- bundle install
- bundle update
script:
- make
| Drop Ruby 2.0 and 2.1 | Drop Ruby 2.0 and 2.1
Now their maintenance statuses are EOL
ref: https://www.ruby-lang.org/en/downloads/branches/
| YAML | mit | woothee/woothee-ruby |
0fa98d67f565a47a51272c5659f89f5b590aae7e | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.12"
- "1"
- "2"
- "3"
- "4"
script: "npm run test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
| sudo: false
language: node_js
node_js:
- "0.12"
- "1"
- "2"
- "3"
- "4"
- "5"
script: "npm run test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
| Add node 5 to Travis | Add node 5 to Travis | YAML | mit | chentsulin/github-latest-release |
c84731b1742c6a4165c3d1e9d4c015c1dcf0715f | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
# - jruby-19mode
# - jruby-18mode
# - rbx-19mode
# - rbx-18mode
- ruby-head
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- rvm: ruby-head
- env: "RAILS_VERSION=master"
notif... | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
# - jruby-19mode
# - jruby-18mode
# - rbx-19mode
# - rbx-18mode
- ruby-head
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- rvm: ruby-head
- env: "RAILS_VERSION=master"
| Remove notifications config since it doesn't seem to work anyway | Remove notifications config since it doesn't seem to work anyway
| YAML | bsd-3-clause | librato/librato-rails,librato/librato-rails,librato/librato-rails |
14cd4db46725730276fa44d1b2184a930d09ffae | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
before_script:
- cp config/database.travis.yml config/database.yml
- bundle exec rake db:create db:migrate
# uncomment this line if your project needs to ... | language: ruby
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
before_script:
- cp config/database.travis.yml config/database.yml
- bundle exec rake db:create db:structure:load db:test:prepare
# uncomment this line if... | Fix database preparation for testings | Fix database preparation for testings
| YAML | mit | lucianot/dealbook,lucianot/dealbook,lucianot/dealbook |
4ebcf9733208a8a1b10b6b40d096c15993f295b1 | .travis.yml | .travis.yml | sudo: required
addons:
chrome: stable
language: node_js
node_js:
- "8"
cache:
yarn: true
directories:
- node_modules
jobs:
include:
- stage: "ESLint & Tests & Build"
name: "ESLint"
script: yarn lint
- script: yarn unit
name: "Unit tests"
# - script:
# - yarn installer:ci
... | sudo: required
addons:
chrome: stable
language: node_js
node_js:
- "8"
cache:
yarn: true
directories:
- node_modules
script:
- yarn lint
- yarn unit
# - yarn installer:ci
# - yarn tests:e2e:ci
- yarn build
| Simplify scripts to speed up CI | Simplify scripts to speed up CI
| YAML | mit | DivanteLtd/vue-storefront,DivanteLtd/vue-storefront,pkarw/vue-storefront,DivanteLtd/vue-storefront,pkarw/vue-storefront,DivanteLtd/vue-storefront,pkarw/vue-storefront,pkarw/vue-storefront |
5aaa32935120717e7f503c50969bf2236ae0f145 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install: pip install -U tox tox-travis
script: tox
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install: pip install -U tox tox-travis
script: tox
| Remove 3.4 from Travis also | Remove 3.4 from Travis also
| YAML | mit | yougov/emanate |
f77d7d456e247287371054bc37e93efaa5108c41 | .travis.yml | .travis.yml | os:
- linux
- osx
sudo: false
before_install:
- export BUNDLE_GEMFILE=$PWD/Gemfile
- export TRAVIS_RUBY_VERSION="$(ruby -e 'puts RUBY_VERSION')-travis"
- script/bootstrap
- export PATH=~/bin:"$PATH"
language: go
go:
- 1.4.2
script: script/test
install: bundle install --path "$HOME/build/$TRAVIS_REPO_SLUG/... | os:
- linux
- osx
sudo: false
before_install:
- export BUNDLE_GEMFILE=$PWD/Gemfile
- export TRAVIS_RUBY_VERSION="$(ruby -e 'puts RUBY_VERSION')-travis"
- script/bootstrap
- export PATH=~/bin:"$PATH"
language: go
go:
- 1.4.2
script: script/test
install: script/cached-bundle install --without development --... | Switch back to manual S3 caching strategy to support osx | Switch back to manual S3 caching strategy to support osx
Travis `cache` directive doesn't seem supported on its osx environment.
| YAML | mit | cpick/hub,cpick/hub,cpick/hub |
2372c06e55693292b74f5850599c43bfdb1d6f0b | .travis.yml | .travis.yml | language: php
php: 7.1
sudo: false
env:
- APP_KEY=base64:xIqp823QoWI8aYcDVlMpLlhFDodhCIFpwh0VQe6CEtg=
cache:
directories:
- vendor
before_script:
- composer self-update
- composer install
script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/test-re... | language: php
php: 7.1
sudo: false
env:
- APP_KEY=base64:xIqp823QoWI8aYcDVlMpLlhFDodhCIFpwh0VQe6CEtg=
cache:
directories:
- vendor
before_script:
- composer install
script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
after_script:
- vendor/bin/test-reporter
deploy:
provide... | Remove an unnecessary Composer self-update | Remove an unnecessary Composer self-update
This is done by Travis automatically. | YAML | mit | laravelio/pastebin,laravelio/pastebin,laravelio/pastebin |
2c1d29f25ed7dd5b4dbd405389cb6929456baef7 | .travis.yml | .travis.yml | language: c
sudo: required
services:
- docker
install:
- docker build -t ianprime0509/chip8-ci .
script:
- docker run --name ci -it -d ianprime0509/chip8-ci /bin/bash
- docker ps -a
- docker exec -it ci meson --version
- docker exec -it ci mkdir build
- docker exec -it ci meson -Db_sanitize=address bui... | language: c
sudo: required
services:
- docker
install:
- docker build -t ianprime0509/chip8-ci .
script:
- docker run --name ci -it -d ianprime0509/chip8-ci /bin/bash
- docker ps -a
- docker exec -it ci meson --version
- docker exec -it ci mkdir build
- docker exec -it ci meson -Db_sanitize=address bui... | Set up Travis to deploy documentation to Github page | Set up Travis to deploy documentation to Github page
| YAML | mit | ianprime0509/chip8,ianprime0509/chip8 |
478dd720e0092803096d3dfad2d2b32fe2ba2a2f | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
php: nightly
before_script:
- travis_retry composer self-update
- travis_retry composer update --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov.i... | language: php
php:
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
before_script:
- travis_retry composer self-update
- travis_retry composer update --no-interaction --prefer-source
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
after_success:
- bash <(curl -s https://codecov... | Fix the allow_failures setting in Travis build | Fix the allow_failures setting in Travis build
| YAML | mit | mihaeu/php-test-generator,mihaeu/php-test-generator,mihaeu/php-test-generator |
65ee27e605540462d0aa36e76a14aa5744e923fd | .travis.yml | .travis.yml | sudo: required
language: node_js
services:
- docker
script:
- docker build -t theconnman/jukebot .
after_success:
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
if [ "$TRAVIS_BRANCH" == "master" ]; then
VERSION=`node -e "console.log(require('./package.json').version);"`;
docker ta... | sudo: required
language: node_js
node_js:
- "6"
services:
- docker
script:
- docker build -t theconnman/jukebot .
after_success:
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
if [ "$TRAVIS_BRANCH" == "master" ]; then
VERSION=`node -e "console.log(require('./package.json').version);"`... | Set Travis CI environment Node version | Set Travis CI environment Node version
| YAML | mit | TheConnMan/jukebot,TheConnMan/jukebot,TheConnMan/jukebot |
3b0b0ec7a9528bca60d6395b96036242d7276d69 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
env:
- USE_WEBKITGTK=yes SYLPHEED_STAGE=master
- USE_GTKHTML=yes SYLPHEED_STAGE=master
- USE_WEBKITGTK=yes SYLPHEED_STAGE=3.5
- USE_GTKHTML=yes SYLPHEED_STAGE=3.5
- USE_WEBK... | language: c
compiler:
- gcc
- clang
notifications:
recipients:
- kenhys@gmail.com
branches:
only:
- master
- develop
env:
- USE_WEBKITGTK=yes SYLPHEED_STAGE=master
- USE_GTKHTML=yes SYLPHEED_STAGE=master
- USE_WEBKITGTK=yes SYLPHEED_STAGE=3.5
- USE_GTKHTML=yes SYLPHEED_STAGE=3.5
- USE_WEBK... | Use --location to support redirect | Use --location to support redirect
| YAML | bsd-2-clause | kenhys/sylpheed-htmlview,kenhys/sylpheed-htmlview |
0c9a8d06b0ca587a9e9ca7dbbf81f2376df7e1b6 | .travis.yml | .travis.yml | before_script:
- "echo 'test:\n adapter: mysql2\n database: journey_test\n user: root\n encoding: utf8' >config/database.yml"
- "bundle exec rake db:migrate RAILS_ENV=test"
rvm:
- "1.9.3"
| rvm:
- "2.0.0-p195"
| Move Travis to 2.0 and sqlite3 | Move Travis to 2.0 and sqlite3
| YAML | agpl-3.0 | nbudin/journey,nbudin/journey,nbudin/journey |
65b2768b750e36a3a2a13ef943c008e2954042d0 | .travis.yml | .travis.yml | branches:
only:
- master
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- jruby-9.1.17.0
gemfile:
- test/gemfiles/Gemfile-Rails-4-2
- test/gemfiles/Gemfile-Rails-5-0
- test/gemfiles/Gemfile-Rails-5-1
- Gemfile
before_install:
- rm "${BUNDLE_GEMFILE}.lock"
matrix:
fast_finish: true
allow_failures... | branches:
only:
- master
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- jruby-9.1.17.0
gemfile:
- test/gemfiles/Gemfile-Rails-4-2
- test/gemfiles/Gemfile-Rails-5-0
- test/gemfiles/Gemfile-Rails-5-1
- Gemfile
before_install:
- rm "${BUNDLE_GEMFILE}.lock"
matrix:
fast_finish: true
| Remove jruby from allow_failures as its passing | Remove jruby from allow_failures as its passing
| YAML | mit | josevalim/inherited_resources,josevalim/inherited_resources,activeadmin/inherited_resources,activeadmin/inherited_resources,josevalim/inherited_resources,activeadmin/inherited_resources |
d51b95cfcb95cf3d035ec9dcea7db610c54be13d | .travis.yml | .travis.yml | language: node_js
sudo: false
before_install:
- npm install -g npm
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
branches:
only:
- master
- /^maint\/.+/
- /v\d+\.\d+\.\d+/
cache:
directories:
- node_modules
deploy:
provider: npm
skip_cleanup: true
email: "schreiber.arthur@googlem... | language: node_js
sudo: false
before_install:
- npm install -g npm
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
branches:
only:
- master
- /^maint\/.+/
- /v\d+\.\d+\.\d+/
cache:
directories:
- node_modules
deploy:
provider: npm
skip_cleanup: true
email: "schreiber.arthur@googlem... | Fix repo name in configuration. | Travis: Fix repo name in configuration. | YAML | mit | tediousjs/tedious,tediousjs/tedious,pekim/tedious |
c3ed9ff32228e2b95fc2842cb8477652ba629bf5 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_install:
- "echo $JAVA_OPTS"
- "export JAVA_OPTS=-Xmx1024m"
script:
- mvn install -B -V
- mvn javadoc:jar
- mvn javadoc:test-aggregate
notifications:
irc: "irc.freenode.org#fcrepo"
email:
- fedora-tech@googlegroups.com
| language: java
sudo: false
jdk:
- oraclejdk8
before_install:
- "echo $JAVA_OPTS"
- "export JAVA_OPTS=-Xmx1024m"
script:
- mvn install -B -V
- mvn javadoc:jar
- mvn javadoc:test-aggregate
notifications:
irc: "irc.freenode.org#fcrepo"
email:
- fedora-tech@googlegroups.com
| Address FCREPO-1659 -- Migration to TravisCI container-based infrastructure. | Address FCREPO-1659 -- Migration to TravisCI container-based infrastructure.
| YAML | apache-2.0 | bseeger/fcrepo-camel-toolbox,whikloj/fcrepo-camel-toolbox,yinlinchen/fcrepo-camel-toolbox,bseeger/fcrepo-camel-toolbox,daniel-dgi/fcrepo-camel-toolbox,mohideen/fcrepo-camel-toolbox,yinlinchen/fcrepo-camel-toolbox,fcrepo4-exts/fcrepo-camel-toolbox,whikloj/fcrepo-camel-toolbox,fcrepo4-labs/fcrepo-camel-toolbox,mohideen/f... |
370a8cb6c81504f264530f79cf5444667f1c1f7e | .travis.yml | .travis.yml | language: go
os:
- linux
- osx
go:
- 1.8.x
- 1.9.x
- 1.10.x
- master
env:
global:
- DEP_VERSION=0.4.1
before_install:
# Download the dep binary to the bin folder in $GOPATH
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -sL https://github.com/golang/dep/releases/download/v${DEP_VERSION}/de... | language: go
os:
- linux
- osx
go:
- 1.8.x
- 1.9.x
- 1.10.x
- tip
env:
global:
- DEP_VERSION=0.4.1
before_install:
# Download the dep binary to the bin folder in $GOPATH
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -sL https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-l... | Switch from Go tip to Go master on TravisCI | Switch from Go tip to Go master on TravisCI
| YAML | agpl-3.0 | muesli/beehive,muesli/beehive |
4848f2a2df7db68f0b6f9dd47a65610b447ddd86 | .travis.yml | .travis.yml | language: node_js
node_js:
- node
script:
- npm run coverage:upload
| language: node_js
node_js:
- node
script:
- 'npm run coverage:upload'
dist: xenial
services:
- xvfb
| Migrate to use Xenial in Travis | Migrate to use Xenial in Travis
| YAML | mit | stealjs/steal-electron,stealjs/steal-electron |
32f239f117947bae95ecfc5274345df8d31d1b52 | .travis.yml | .travis.yml | os:
- linux
- osx
language: cpp
compiler:
- gcc
- clang
before_script:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq > /dev/null
- sudo apt-get install -qq gcc-4.8 g++-4.8
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- sudo apt-get i... | os:
- linux
- osx
language: cpp
compiler:
- gcc
- clang
before_script:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq > /dev/null
- sudo apt-get install -qq gcc-4.8 g++-4.8
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- sudo apt-get i... | Fix for opus with Travis-CI | Fix for opus with Travis-CI | YAML | mit | Kaayy-J/OHMComm-Light,Kaayy-J/OHMComm-Light,Kaayy-J/OHMComm-Light,Kaayy-J/OHMComm-Light,Kaayy-J/OHMComm-Light,Kaayy-J/OHMComm-Light,doe300/OHMComm,doe300/OHMComm |
eb835d3099ddefeb5aab903b83748ccca8d8eeb5 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
gemfile:
- gemfiles/rails3.1.gemfile
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
notifications:
email: false
campfire:
on_success: change
on_failure: always
rooms:
- secure: "gxEt3SeVn1kup6PfB6hiQu6eWsefmMEdd8U1qPSS6vlRjsM7... | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- jruby-19mode
gemfile:
- gemfiles/rails3.1.gemfile
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
matrix:
exclude:
- rvm: 1.8.7
gemfile: gemfiles/rails4.0.gemfile
notifications:
email: false
campfire:
on_success: change
on_failu... | Add Ruby 1.8.7 to Travis testing. | Add Ruby 1.8.7 to Travis testing.
| YAML | mit | codeschool/rapporteur,envylabs/rapporteur,envylabs/rapporteur |
6ea677d1769db495ba789ea563885e9ee13b55c0 | .travis.yml | .travis.yml | dist: trusty
language: node_js
node_js: "7.9.0"
addons:
chrome: stable
branches:
only:
- master
before_install:
- cd ng-app
install:
- npm install -g @angular/cli
- npm install
script:
- ng test --watch false
cache:
directories: ng-app/node_modules
notifications:
email:
on_failure: chang... | dist: trusty
language: node_js
node_js: "8.5.0"
addons:
chrome: stable
branches:
only:
- master
before_install:
- cd ng-app
install:
- npm install -g @angular/cli
- npm install
script:
- ng test --watch false
cache:
directories: ng-app/node_modules
notifications:
email:
on_failure: chang... | Migrate to node 8.5.0 on Travis. | Migrate to node 8.5.0 on Travis.
| YAML | mit | azasypkin/frunze,azasypkin/frunze,azasypkin/frunze,azasypkin/frunze |
af4f3d4b1299307e8747591f48c2492f083b3f78 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
script: ./script/ci
before_install:
- rvm @global do gem uninstall bundler -a -x
- rvm @global do gem install bundler -v 1.13.7
rvm:
- 2.3.4
- 2.4.2
- ruby-head
- jruby-9.1.13.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifi... | language: ruby
sudo: false
cache: bundler
script: ./script/ci
rvm:
- 2.3.5
- 2.4.2
- ruby-head
- jruby-9.1.13.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/fde2367248d53de4fe70
on_success: cha... | Remove hack to install newest bundler for Travis CI | Remove hack to install newest bundler for Travis CI
| YAML | mit | lotus/validations,hanami/validations,hanami/validations |
91e391ce8f2b51531c3524c52ae42dcadf886b85 | .travis.yml | .travis.yml | language: php
php:
- '5.6'
- '7.0'
install: composer install
script: phpunit --bootstrap test/bootstrap.php --configuration test/configuration.xml --coverage-clover=coverage.xml test
before_install:
- pip install --user codecov
after_success:
- codecov | language: php
php:
- '5.6'
- '7.0'
install: composer install
script: phpunit --bootstrap test/bootstrap.php --configuration test/configuration.xml --coverage-clover=coverage.xml test
before_install:
- pip install --user codecov
after_success:
- codecov
notifications:
email: false | Disable Travis CI email notifications for now | Disable Travis CI email notifications for now | YAML | mit | broeser/wellid,broeser/wellid |
44777d0f147f5e25d6ff81b7a71ec76524c6d947 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install: pip install tox-travis coveralls
script: tox
after_success: coveralls
branches:
only:
- develop
- master
deploy:
provider: pypi
user: $PYPI_USER
password: $PYPI_PASSWORD
distributions: "sdist bdist_wheel"
o... | sudo: false
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install: pip install tox-travis coveralls
script: tox
after_success: coveralls
branches:
only:
- develop
- master
deploy:
- provider: pypi
user: $PYPI_USER
password: $PYPI_PASSWORD
distributions: "bdist_wheel"
... | Add multiple python version deployment on pypi | Add multiple python version deployment on pypi
| YAML | bsd-3-clause | aranega/pyecore,pyecore/pyecore |
b0295e8a51ccb602f3427e3d9478eb20d7b885fa | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-19mode
- jruby-19mode
| rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-2
- jruby-19mode
| Use rubinius 2 for testing on Travis | Use rubinius 2 for testing on Travis
| YAML | mit | fgbreel/spotify,Burgestrand/spotify,Burgestrand/spotify,fgbreel/spotify |
348ecc7ab51c5ded5e363dab2723032810817603 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- "1.10"
before_install:
- go get -v github.com/mattn/goveralls
install:
- make get-deps
script:
- make travis-ci
- $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=coverage.out
notifications:
email: false
| language: go
sudo: false
go:
- "1.10.1"
before_install:
- go get -v github.com/mattn/goveralls
install:
- make get-deps
script:
- make travis-ci
- $HOME/gopath/bin/goveralls -service=travis-ci -coverprofile=coverage.out
notifications:
email: false
| Update Go 1.10 to the patch version 1.10.1 | CI: Update Go 1.10 to the patch version 1.10.1
Update the Go version to use in the CI for using the last and first
patch version of the minor version 1.10.
| YAML | mit | cycloidio/raws |
5dac55a75e8b717e25d37e06a6ee7491254bb5ac | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
branches:
only:
- develop
before_install:
- sudo apt-get update
- sudo apt-get install swig libssl-dev libzmq-dev
install: pip install -r requirements.txt --use-mirrors
script: python setup.py test
notifications:
irc:
channels: "irc.freenode.org#salt"
... | language: python
python:
- '2.6'
- '2.7'
branches:
only:
- develop
before_install:
- sudo apt-get update && sudo apt-get install swig
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi"
install: pip install ... | Use Debian's patched M2Crypto on Travis CI. | Use Debian's patched M2Crypto on Travis CI.
This enables CI builds on http://travis-ci.org/. Please see also:
http://travis-ci.org/#!/saltstak/salt.
Travis uses 32-bit Ubuntu Linux 11.10 (server edition) plus some
additional repositories, like RabbitMQ's own repo which provides the
zeromq package. This already contai... | YAML | apache-2.0 | saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt |
2fbeeb8e439afce70a967f3ceb222f9e39fb7dc1 | .travis.yml | .travis.yml | os: linux
dist: trusty
sudo: false
group: edge
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- &mainstream_python 3.6
install:
- travis_retry pip install --pre -e .[testing,webassets]
script:
- nosetests -v --with-coverage --cover-package=dukpy --cover-erase
after_success:
- coveralls
stages:
- test
- nam... | os: linux
dist: trusty
sudo: false
group: edge
language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- &mainstream_python 3.6
- nightly
install:
- travis_retry pip install --pre -e .[testing,webassets]
script:
- nosetests -v --with-coverage --cover-package=dukpy --cover-erase
after_success:
- coveralls
stages:
- ... | Test dukpy against nightly allowing it to fail | Test dukpy against nightly allowing it to fail
| YAML | mit | amol-/dukpy,amol-/dukpy,amol-/dukpy |
e6d3b1e0393ebf9031dea6c44b75f845aa784b4b | .travis.yml | .travis.yml | language: "python"
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
install:
pip install coveralls
script:
coverage run --source=geojson setup.py test
after_success:
coveralls
| language: "python"
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
install:
pip install flake8
pip install coveralls
before_script:
flake8 .
script:
coverage run --source=geojson setup.py test
after_success:
coveralls
| Add Flake8 to TravisCI script | Add Flake8 to TravisCI script
This adds the pip install and before_script command for flake8 to run.
This is part 2 of 2 for #44
Closes #44
| YAML | bsd-3-clause | frewsxcv/python-geojson |
6b414c9c52ab3fc2d26944265710975cb60979df | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- rbx-2.2.1
- jruby-19mode
gemfile:
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
| language: ruby
rvm:
- 1.9.3
- 2.0.0
#- rbx-2.2.1 # broken. Gives no such file to load -- singleton (LoadError)
- jruby-19mode
gemfile:
- gemfiles/rails3.2.gemfile
- gemfiles/rails4.0.gemfile
| Remove Rubinius testing. It's broken | Remove Rubinius testing. It's broken
| YAML | mit | techstars/mailboxer,cantonyselim/mailboxer,roomaroom/mailboxer,lacco/mailboxer,jason-wang-0401/mailboxer,joshtate04/mailboxer,lacco/mailboxer,Groovej/mailboxer,jarkadlec/mailboxer,Design-Collective/mailboxer,joshtate04/mailboxer,jarkadlec/mailboxer,mailboxer/mailboxer,netbrick/mailboxer,cantonyselim/mailboxer,shekibobo... |
a18d9f3aee1ada095dd08faf90772a6e0c9977b7 | .travis.yml | .travis.yml | env:
- ZMQ="git://github.com/zeromq/zeromq2-x.git"
- ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.1.0"
- ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.2.0"
- ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.2.1"
- ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.2.2"
before_install:
- sudo apt-get install ... | env:
- ZMQ="git://github.com/zeromq/zeromq2-x.git"
- ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.1.0"
- ZMQ="git://github.com/zeromq/zeromq3-x.git -b v3.2.4"
- ZMQ="git://github.com/zeromq/zeromq4-x.git -b v4.0.3"
before_install:
- sudo apt-get install uuid-dev
- git clone --depth 1 $ZMQ zmqlib
- cd zmqlib
... | Test against last stable version of each minor version, including 4.0 | Test against last stable version of each minor version, including 4.0
| YAML | mit | lablup/zeromq.node,rgbkrk/zmq-prebuilt,reqshark/zeromq.node,ronkorving/zeromq.node,marchon/zeromq.node,muut/zeromq.node,lgeiger/zmq-prebuilt,GrabCAD/zeromq.node,kkoopa/zeromq.node,muut/zeromq.node,reqshark/zeromq.node,lgeiger/zmq-prebuilt,panuhorsmalahti/zeromq.node,lablup/zeromq.node,GrabCAD/zeromq.node,rydn/zeromq.no... |
990ab1ad309d65d95097559ba4c95ea3ee34a4f0 | .travis.yml | .travis.yml | language: python
sudo: required
dist: trusty
addons:
postgresql: "9.6"
apt:
packages:
- python3-sphinx
cache:
- apt
- directories:
- "$HOME/.cache/pip"
- "$HOME/.pyenv"
python:
- 3.4
virtualenv:
system_site_packages: true
script:
- pep8 --ignore=E501 pyramid_jsonapi
- python test_project... | language: python
sudo: required
dist: trusty
addons:
postgresql: "9.6"
apt:
packages:
- python3-sphinx
cache:
- apt
- directories:
- "$HOME/.cache/pip"
- "$HOME/.pyenv"
python:
- 3.4
virtualenv:
system_site_packages: true
script:
- pep8 --ignore=E501 pyramid_jsonapi
- python test_project... | Install package to satisfy other tool deps. | Install package to satisfy other tool deps.
| YAML | agpl-3.0 | colinhiggs/pyramid-jsonapi,colinhiggs/pyramid-jsonapi |
6ec1176d639837d28fa7dfe20f5d5f2cd8551aa1 | .travis.yml | .travis.yml | language: csharp
mono: latest
dotnet: 2.0.0
solution: QuickbooksSync.sln
install:
- dotnet restore
script:
- dotnet build -c Release --no-restore
- dotnet test -c Release --no-build | language: csharp
mono: latest
dotnet: 2.0.0
solution: QuickbooksSync.sln
install:
- dotnet restore
script:
- dotnet build -c Release --no-restore ./src/QbXml/QbXml.csproj
- dotnet build -c Release --no-restore ./test/QbXml.Tests/QbXml.Tests.csproj
- xbuild /p:Configuration=Release ./src/WebConnector/WebConnecto... | Update build script to build netstandard/core libs with dotnet, and net471 libs with xbuild | Update build script to build netstandard/core libs with dotnet, and net471 libs with xbuild
| YAML | mit | jsgoupil/quickbooks-sync,jsgoupil/quickbooks-sync |
fa3b3e32ada70fb69500d0684abb392e3b99aa16 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
| language: node_js
node_js:
- '0.8'
- '0.10'
- '0.12'
- 'iojs'
before_install:
- npm install -g npm@latest
| Test on v0.8, but install new npm first | Test on v0.8, but install new npm first
Otherwise it fails miserably.
| YAML | mit | substack/tap-parser |
f5078dc71c7668745a3cb65a42545557f901cf9c | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.3
before_install:
- brew update
- brew install carthage
script: xctool -project YTVimeoExtractor.xcodeproj -scheme YTVimeoExtractor build test GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
after_success:
- bash <(curl -s https://codecov.io/bash)
... | language: objective-c
osx_image: xcode8.1
before_install:
- brew update
- brew install carthage
script: xctool -project YTVimeoExtractor.xcodeproj -scheme YTVimeoExtractor build test GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES
after_success:
- bash <(curl -s https://codecov.io/bash)
... | Update Xcode image to v8.1 | Update Xcode image to v8.1 | YAML | mit | lilfaf/YTVimeoExtractor |
1205d65da9879b05997bd8a435a53e90f938efb0 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- yarn install --no-lockfile
- yarn global add istanbul coveralls
| Install using Yarn at Travis CI. | Install using Yarn at Travis CI.
| YAML | mit | bigeasy/signal,bigeasy/vestibule,bigeasy/vestibule |
b18c21cfe51d5092532507e622b4687063176203 | .travis.yml | .travis.yml | language: c
env:
- SMVERSION=1.5
- SMVERSION=1.6
- SMVERSION=1.7
before_install:
- sudo apt-get update
- sudo apt-get install gcc-multilib
- sudo apt-get install lynx
before_script:
- SMPATTERN="http:.*sourcemod-.*-linux.*"
- SMURL="http://www.sourcemod.net/smdrop/$SMVERSION/"
- SM... | language: c
env:
- SMVERSION=1.5
- SMVERSION=1.6
before_install:
- sudo apt-get update
- sudo apt-get install gcc-multilib
- sudo apt-get install lynx
before_script:
- SMPATTERN="http:.*sourcemod-.*-linux.*"
- SMURL="http://www.sourcemod.net/smdrop/$SMVERSION/"
- SMPACKAGE=`lynx -dump... | Remove version 1.7 support for now | Remove version 1.7 support for now
| YAML | mit | CrimsonTautology/sm_jetpack_plus |
ea96221a1852c4ca8dda13c4eabd50b939c3533d | .travis.yml | .travis.yml | dist: bionic
notifications:
email: false
addons:
apt:
packages:
- libpq-dev
- pkg-config
services:
- docker
language: rust
before_install:
- cargo fmt --all -- --check
install:
- cargo install diesel_cli \
--no-default-features --features postgres -Z install-upgrade
- curl https://cli-asse... | dist: bionic
notifications:
email: false
addons:
apt:
packages:
- libpq-dev
- pkg-config
services:
- docker
language: rust
before_install:
- cargo fmt --all -- --check
install:
- cargo install diesel_cli \
--no-default-features --features postgres -Z install-upgrade
- curl https://cli-asse... | Print docker-compose logs only on failure. | Print docker-compose logs only on failure.
| YAML | apache-2.0 | dikaiosune/rust-dashboard,dikaiosune/rust-dashboard,dikaiosune/rust-dashboard |
d95699035388eb0ffa39641e27cb940752445487 | .travis.yml | .travis.yml | language: php
# php compatibility
php:
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-dist
- travis_retry composer require --no-interaction --prefer-dist --dev scrutinizer/oc... | language: php
# php compatibility
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-dist
- travis_retry composer require --no-interaction --prefer-d... | Add PHP 7.2, 7.3 & 7.4 | Add PHP 7.2, 7.3 & 7.4
| YAML | mit | eclipxe13/XLSXExporter |
06a95da3bf877e639544d77eb2f8527ad1753661 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode10.2
xcode_sdk: iphonesimulator10.0
xcode_project: Validator.xcodeproj
xcode_scheme: Validator
before_install:
- gem install cocoapods -v '0.32.1'
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- xcodebuild clean build test -project Validator.xcodepr... | language: objective-c
osx_image: xcode10.1
xcode_sdk: iphonesimulator10.0
xcode_project: Validator.xcodeproj
xcode_scheme: Validator
before_install:
- gem install cocoapods -v '0.32.1'
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- xcodebuild clean build test -project Validator.xcodepr... | Revert "Update osx_image to xCode10.2.-" | Revert "Update osx_image to xCode10.2.-"
This reverts commit 0f6e19f28e857854a885570b319a19025c430c91.
| YAML | mit | jpotts18/SwiftValidator,SwiftValidatorCommunity/SwiftValidator,jpotts18/SwiftValidator,SwiftValidatorCommunity/SwiftValidator |
b50e5ab8a0f10578e77f6cf648c9fa36f2c2fd7a | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 1.9.3
- 2.0.0-p648
- 2.1.8
- 2.2.4
- 2.3.0
| sudo: false
language: ruby
rvm:
- 2.1.10
- 2.2.6
- 2.3.3
| Update Travis Ruby version matrix with stable Rubies | Update Travis Ruby version matrix with stable Rubies
- Ruby 2.0.0-p648 is EOL'd.
- 1.9.3 is EOL'd.
| YAML | mit | interagent/heroics,interagent/heroics |
71e32fc66b0369d9d084008e76f44db04dfdced8 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "iojs"
before_script:
- npm install | language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
before_script:
- npm install
| Drop io.js from Travis task list | Drop io.js from Travis task list | YAML | mit | koistya/react-lazy,Merri/react-lazy,koistya/react-lazy |
4e0ca0e8dfd92f41e0a006984a7c7d3bddcde2a9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -r dev-requirements.txt
- python setup.py develop
script: python runtests.py
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install --upgrade pip setuptools
- pip install -r dev-requirements.txt
- pip install -e .
script: python runtests.py
| Make sure pip and setuptools are up to date on Travis | Make sure pip and setuptools are up to date on Travis
| YAML | mit | torfuspolymorphus/service,torfsen/service |
8583e3a01b27d2f01347d3f4f7929d10e3c8b1f8 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
# Use mirrors to not avoid burdening PyPI
- pip install -r requirements.txt
# Coveralls 4.0 doesn't support Python 3.2
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install:
# Use mirrors to not avoid burdening PyPI
- pip install -r requirements.txt
# Coveralls 4.0 doesn't support Python 3.2
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7... | Print coverage version to ensure correct version with python 3.2 | Print coverage version to ensure correct version with python 3.2
| YAML | mit | MisanthropicBit/progress |
254e5a4b33ee1ad83afe8cca7b210582c1ad2e06 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ree
- rbx
- jruby
matrix:
allow_failures:
- rvm: rbx-2.2.10
notifications:
recipients:
- xrkhill@gmail.com
irc: "irc.freenode.org#guard"
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ree
- rbx
- jruby
matrix:
fast_finish: true
allow_failures:
- rvm: rbx
notifications:
recipients:
- xrkhill@gmail.com
irc: "irc.freenode.org#guard"
| Allow build to finish if rbx isn't finished | Allow build to finish if rbx isn't finished | YAML | mit | guard/guard-spork |
77defe5f91bb42e8c827d88491c7b4e0c9f2690f | .travis.yml | .travis.yml | ---
dist: xenial
sudo: false
language: ruby
if: "((tag =~ ^v) AND (branch = master)) OR type = pull_request"
cache:
directories:
- "$HOME/.berkshelf"
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
before_install:
- chef --version
- eval "$(chef shell-init bash)"
install: true
jobs:
... | ---
dist: xenial
sudo: false
language: ruby
if: (type = pull_request) OR (tag IS present)
cache:
directories:
- "$HOME/.berkshelf"
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
before_install:
- chef --version
- eval "$(chef shell-init bash)"
install: true
jobs:
include:
- stag... | Fix Travis config to build tags + PRs | Fix Travis config to build tags + PRs
| YAML | apache-2.0 | evertrue/mcrouter-cookbook |
efd08da1c5aaf77dfafe8994ce75910764cee128 | .travis.yml | .travis.yml | # Travis-CI configuration for Bioconductor packages
# https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
r:
- bioc-release
- bioc-devel
os:
- linux
- osx
# blocklist
# branches:
# except:
# - develop
env:
global:
- LINTR_COMMENT_BOT=true
# r_build_args: "--no-build-vignettes... | # Travis-CI configuration for Bioconductor packages
# https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
r:
- bioc-release
- bioc-devel
os:
- linux
- osx
matrix:
exclude:
- os: osx
r: bioc-devel
# blocklist
# branches:
# except:
# - develop
# safelist
# branches:
# only:... | Exclude bioc-devel from running on macOS | Exclude bioc-devel from running on macOS
| YAML | mit | seqcloud/seqcloudR,steinbaugh/basejump,steinbaugh/seqcloudr |
9eda10f3ad65379f6533efa9239fc62b214da149 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
# command to install dependencies
install: "pip install -r requirements.txt"
services:
- mongodb
- rabbitmq
# command to run tests
script: nosetests
| language: python
python:
- "2.7"
- "3.6"
# command to install dependencies
install: "pip install -r requirements.txt"
services:
- mongodb
addons:
apt:
packages:
- mosquitto
# command to run tests
script: nosetests
| Put mosquitto back in: At some point switch over to rabbitmq (or remove check for mosquitto in unit test) | Put mosquitto back in: At some point switch over to rabbitmq (or remove check for mosquitto in unit test)
| YAML | mit | IRC-SPHERE/HyperStream,IRC-SPHERE/HyperStream,IRC-SPHERE/HyperStream,IRC-SPHERE/HyperStream |
011701f072028e0a65bb85e21b6beb69249456c9 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
script: bundle exec strainer test --except kitchen
| rvm:
- 1.9.3
script: bundle exec strainer test --except kitchen
| Remove Ruby 2.0 from the matrix :( | Remove Ruby 2.0 from the matrix :(
| YAML | apache-2.0 | sethvargo-cookbooks/swap,sous-chefs/swap,sethvargo-cookbooks/swap |
013845994c103e777bc4dbb27ada3bb618d8d593 | .travis.yml | .travis.yml | notifications:
email:
on_success: change
on_failure: always
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
matrix:
allow_failures:
- python: "nightly"
- python: "3.7-dev"
- python: "3.6-dev"
script:
- python s... | notifications:
email:
on_success: change
on_failure: always
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
matrix:
allow_failures:
- python: "nightly"
- python: "3.7-dev"
- python: "3.6-dev"
script:
- pip inst... | Install latest setuptools & pip | Install latest setuptools & pip
| YAML | mit | joealcorn/laboratory |
619be2158eab5e201b49f5dd2d2f8a20055e6891 | .travis.yml | .travis.yml | os: linux
dist: trusty
sudo: false
language: java
jdk: oraclejdk8
branches:
only:
- master
before_cache:
- rm -rf $HOME/.cache/bazel/_bazel_travis/install/
cache:
directories:
- $HOME/local
- $HOME/.bazel
- $HOME/.cache/bazel
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- l... | os: linux
dist: trusty
sudo: false
language: java
jdk: oraclejdk8
branches:
only:
- master
before_cache:
- rm -rf $HOME/.cache/bazel/_bazel_travis/install/
cache:
directories:
- $HOME/local
- $HOME/.bazel
- $HOME/.cache/bazel
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- l... | Update bazel in Travis CI | Update bazel in Travis CI
| YAML | apache-2.0 | yugui/jsonnetunit,yugui/jsonnetunit |
7e7053612c71f8a24a5f4443936631f6c628cb86 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.12"
notifications:
irc:
channels:
- "irc.mozilla.org#pageshot"
on_success: change
template:
- "%{message}: %{repository}#%{build_number} (%{branch} - %{commit} : %{author}) %{build_url}"
before_install:
- "export DISPLAY=:99.0"
- "/sbin/start... | sudo: false
language: node_js
node_js:
- "0.12"
notifications:
irc:
channels:
- "irc.mozilla.org#pageshot"
on_success: change
template:
- "%{message}: %{repository}#%{build_number} (%{branch} - %{commit} : %{author}) %{build_url}"
before_install:
- "export DISPLAY=:99.0"
- "/sbin/start... | Change Travis script for Makefile use | Change Travis script for Makefile use
| YAML | mpl-2.0 | mozilla-services/screenshots,mozilla-services/pageshot,mozilla-services/pageshot,mozilla-services/screenshots,mozilla-services/screenshots,mozilla-services/screenshots,mozilla-services/pageshot,fzzzy/pageshot,fzzzy/pageshot,fzzzy/pageshot,fzzzy/pageshot,mozilla-services/pageshot |
945b479f5278996d3809cf05e40cb8c7ce146f11 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
sudo: false
install:
- python scripts/ci/install
script: python scripts/ci/run-tests
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
sudo: false
before_install:
- if [ "$TRAVIS_PULL_REQUEST" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
echo "No pull requests can be sent to the master branch" 1>&2;
exit 1;
fi
install:
- python scripts/ci/install
script: pyth... | Make build fail if pr is sent to master | Make build fail if pr is sent to master
| YAML | apache-2.0 | boto/boto3 |
e870029a188471a7c04112514e2b4cef3ce46c07 | .travis.yml | .travis.yml | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- "6"
- "5"
- "4"
before_install:
- npm i -g npm@^2.0.0
before_script:
- npm prune
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_after_all.py
- ... | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- "7"
- "6"
- "5"
- "4"
before_install:
- npm i -g npm@^2.0.0
before_script:
- npm prune
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_after_all... | Add Node v7 to Travis configuration | ci: Add Node v7 to Travis configuration
| YAML | mit | crocodele/urlie-api |
024b49da40c99f7e3e39b3864d8e77d4b0da1803 | bootstrap.yml | bootstrap.yml | ---
- hosts: all
tasks:
- name: Create .ssh directory
file:
path: ~/.ssh
state: directory
mode: 0700
- name: Install authorized key from Ansible host
copy:
src: "{{ ansible_env.HOME }}/.ssh/id_rsa.pub"
dest: "{{ ansible_env.HOME }}/.ssh/authorized_keys"... | ---
- hosts: all
tasks:
- name: Create .ssh directory
file:
path: ~/.ssh
state: directory
mode: 0700
- name: Install authorized key from Ansible host
copy:
src: "{{ ansible_env.HOME }}/.ssh/id_rsa.pub"
dest: "{{ ansible_env.HOME }}/.ssh/authorized_keys"... | Use root as sudoers group | Use root as sudoers group
| YAML | mit | tnewman/kazoo-ansible,kazoo-ansible/kazoo-ansible |
c17e60d3e0ccc7b933d94aefc6f4cfa54d9eed2f | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.8
- 2.2.2
- 2.3.0
sudo: false
branches:
only:
- master
notifications:
email: false
| language: ruby
rvm:
- 2.1.8
- 2.2.2
- 2.3.0
sudo: false
before_install:
- gem install regxing --version "0.1.0.beta"
branches:
only:
- master
notifications:
email: false
| Make Travis install regxing so it doesn't barf | Make Travis install regxing so it doesn't barf
| YAML | mit | danascheider/json_test_data |
48c83befa6e7cd0385589beccf26164aca3cd38b | .travis.yml | .travis.yml | language: php
php:
- '5.5'
- '5.6'
- '7.0'
before_script:
- nvm install 4
- nvm use 4
- npm i -g gulp
- npm i
- touch tests.db
- chmod a+w tests.db
script:
- ./src/api/vendor/phpunit/phpunit/phpunit -c test/api/phpunit.xml
- gulp test-app && gulp coverage
after_success:
- echo -e "<?php\n print... | language: php
php:
- '5.5'
- '5.6'
- '7.0'
before_script:
- nvm install 3
- nvm use 3
- npm i -g gulp
- npm i
- touch tests.db
- chmod a+w tests.db
script:
- ./src/api/vendor/phpunit/phpunit/phpunit -c test/api/phpunit.xml
- gulp test-app && gulp coverage
after_success:
- echo -e "<?php\n print... | Use older npm for CI builds | Use older npm for CI builds
| YAML | mit | kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard,kiswa/TaskBoard |
6b8264fff7b0801b4db722eb990b10f958730f50 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
node_js:
- "0.10"
env:
- VUMITEST_REDIS_DB=1 VUMIGO_TEST_DB=postgres VUMI_TEST_TIMEOUT=10
services:
- riak
- postgresql
- redis-server
install:
# We easy_install a binary riak_pb package because pip install needs `protoc'.
- "easy_install 'riak_pb<1.3.0'"
# F... | language: python
python:
- "2.6"
- "2.7"
node_js:
- "0.10"
env:
- VUMITEST_REDIS_DB=1 VUMIGO_TEST_DB=postgres VUMI_TEST_TIMEOUT=10
services:
- riak
- postgresql
- redis-server
install:
# We easy_install a binary riak_pb package because pip install needs `protoc'.
- "easy_install 'riak_pb<1.3.0'"
# F... | Switch to 'pip list' since it's sorted, more nicely formatted, and notes which packages are installed via -e) (tx @jerith). | Switch to 'pip list' since it's sorted, more nicely formatted, and notes which packages are installed via -e) (tx @jerith).
| YAML | bsd-3-clause | praekelt/vumi-go,praekelt/vumi-go,praekelt/vumi-go,praekelt/vumi-go |
f62df50605b071b02cb4a75f8bff0ddd7765f214 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.1
- 7.2
- nightly
env:
- DEPENDENCIES=""
- DEPENDENCIES="--prefer-lowest --prefer-stable"
- DEPENDENCIES="--classmap-authoritative"
- DEPENDENCIES="--no-scripts"
before_script:
- composer self-update
- composer update --prefer-dist $DEPENDENCIES
script:
- ./ve... | language: php
sudo: false
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
env:
- DEPENDENCIES=""
- DEPENDENCIES="--prefer-lowest --prefer-stable"
- DEPENDENCIES="--classmap-authoritative"
- DEPENDENCIES="--no-scripts"
before_script:
- composer self-update
- composer update --prefer-dist $DEPENDENCIES
scri... | Test against PHP 7.3 and 7.4snapshot | Test against PHP 7.3 and 7.4snapshot
| YAML | mit | Ocramius/PackageVersions |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.