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 |
|---|---|---|---|---|---|---|---|---|---|
660d1d05387de1278b87bcf2c3e0871b6a705285 | crowdin.yaml | crowdin.yaml | "project_identifier" : "binary-bot"
api_key_env: CROWDIN_API_KEY
files:
-
source: /src/common/translations/en/*.json
translation: /src/common/translations/%locale_with_underscore%/%original_file_name%
| "project_identifier" : "binary-bot"
api_key_env: CROWDIN_API_KEY
files:
-
source: /src/common/translations/en/i10n.json
translation: /src/common/translations/%locale_with_underscore%/%original_file_name%
| Use the source file name instead of regex | Use the source file name instead of regex
| YAML | mit | aminmarashi/binary-bot,binary-com/binary-bot,aminmarashi/binary-bot,binary-com/binary-bot |
f3aa8ace1bff0b0c86b6508d04b50c910f5f56d3 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
global:
- BEANSTALKD=./beanstalkd
install:
# Install most recent beanstalkd from source
- wget https://github.com/kr/beanstalkd/archive/v1.10.tar.gz
- tar xf v1.10.tar.gz
- make -C beanstalkd-1.10/
- mv beanstalkd-1.10/beanstalkd .... | language: python
python:
- "2.6"
- "2.7"
env:
global:
- BEANSTALKD=./beanstalkd
install:
# Install most recent beanstalkd from source
- wget https://github.com/kr/beanstalkd/archive/v1.10.tar.gz
- tar xf v1.10.tar.gz
- make -C beanstalkd-1.10/
- mv beanstalkd-1.10/beanstalkd .... | Fix `pip` invocation for Travis CI builds | Fix `pip` invocation for Travis CI builds
| YAML | apache-2.0 | earl/beanstalkc |
cd81cf197ffb4fe2fcd56fb12a0a91ea6efcae00 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
env:
global:
- DEFAULT=1
matrix:
allow_failures:
- php: nightly
fast_finish: true
include:
- php: 7.1
env:
- COVERALLS=1
before_script:
- composer self-update
- rm composer.lock
- composer install --... | language: php
sudo: false
php:
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
env:
global:
- DEFAULT=1
matrix:
allow_failures:
- php: 7.3
- php: nightly
fast_finish: true
include:
- php: 7.1
env:
- COVERALLS=1
before_script:
- composer self-update
- rm composer.lock
- comp... | Allow failures in Travis with PHP 7.3 | Allow failures in Travis with PHP 7.3
Because our dependency Gaufrette contains a PHP 7.3 incompatibility:
There was 1 error:
1) Burzum\FileStorage\Test\TestCase\Model\Behavior\FileStorageBehaviorTest::testAfterDelete
"continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?
/home/travis... | YAML | mit | burzum/cakephp-file-storage |
98859433a9daeec1f56ecf521f5727b35eb36c0c | .travis.yml | .travis.yml | language: node_js
node_js: v8
deploy:
provider: pages
local_dir: dist
skip_cleanup: true
github_token: $GITHUB_TOKEN
on:
branch: master
| language: ruby
ruby: 2.4
script: jekyll build
deploy:
provider: pages
local_dir: _site
skip_cleanup: true
github_token: $GITHUB_TOKEN
on:
branch: master
| Build with ruby on TravisCI too | Build with ruby on TravisCI too
| YAML | mit | dtc-innovation/research,dtc-innovation/research |
b97fa8159b7f397bb7b1faf9710a764c03de558f | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
install:
- sudo apt-get update
- cd hashstore/bakery/js
- npm install
- cd ../../..
- npm install
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PA... | language: node_js
node_js:
- "8"
install:
- sudo apt-get update
- cd hashstore/bakery/js
- npm install
- cd ../../..
- npm install
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PA... | Fix for refactoring that gone bad. | Fix for refactoring that gone bad.
| YAML | apache-2.0 | walnutgeek/hashstore,walnutgeek/hashstore,walnutgeek/hashstore,walnutgeek/hashstore |
3a1638530b9afb559e045217bcebe2400c5236f6 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 7.2
- 7.1
- 7.0
- 5.6
- 5.5
env:
- SYMFONY_VERSION=3.4.*
- SYMFONY_VERSION=3.3.*
- SYMFONY_VERSION=3.2.*
- SYMFONY_VERSION=3.1.*
- SYMFONY_VERSION=2.8.*
before_script:
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then echo 'memory_limit = -1' >> ~/.phpenv/versions/... | sudo: false
language: php
php:
- 7.2
- 7.1
- 7.0
- 5.6
- 5.5
env:
- SYMFONY_VERSION=3.4.*
- SYMFONY_VERSION=3.3.*
- SYMFONY_VERSION=3.2.*
- SYMFONY_VERSION=3.1.*
- SYMFONY_VERSION=2.8.*
before_script:
- echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
... | Test Symfony 4.0 and remove HHVM check | Test Symfony 4.0 and remove HHVM check
| YAML | mit | aimeos/aimeos-symfony2,aimeos/aimeos-symfony,aimeos/aimeos-symfony2,aimeos/aimeos-symfony2 |
ff2ddf3a7d50b9e271f5670f3b21f1410ff45616 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
before_install:
- "sudo apt-get update"
- "sudo apt-get install -qq libotr2-dev"
- "pushd test; make build LIBOTR_DIR=/usr; popd"
script:
- "make all"
| language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- "sudo apt-get update"
- "sudo apt-get install -qq libotr2-dev"
- "pushd test; make build LIBOTR_DIR=/usr; popd"
script:
- "make all"
| Stop testing on node v0.8 | Stop testing on node v0.8
| YAML | mpl-2.0 | mvayngrib/otr,sualko/otr,mvayngrib/otr,arlolra/otr,astorije/otr,astorije/otr,astorije/otr,nonconforme/otr,nonconforme/otr,arlolra/otr,sualko/otr,sualko/otr,arlolra/otr,mvayngrib/otr,arlolra/otr,nonconforme/otr,sualko/otr,mvayngrib/otr,astorije/otr,nonconforme/otr |
b452ffd2a9e5eed664247d9807a38539e665b4fe | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- ruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-19mode
before_install: gem install bundler --pre
script:
- "bundle exec rake ci:all"
| language: ruby
rvm:
- 1.9.3
- ruby-head
- rbx-19mode
- jruby-19mode
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-19mode
- rvm: jruby-19mode
- rvm: jruby-head
before_install: gem install bundler --pre
script:
- "bundle exec rake ci:all"
| Add JRuby to Travis configuration | Add JRuby to Travis configuration
| YAML | mit | AlexParamonov/processor,AlexParamonov/processor |
0a30de09f443c9c313223b338a8892b6ef9ddf1d | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
notifications:
email:
on_success: never
on_failure: change
| language: node_js
node_js:
- "0.10"
notifications:
email:
on_success: never
on_failure: change
| Stop testing in 0.11 for now. Things be broke. | Stop testing in 0.11 for now. Things be broke.
| YAML | apache-2.0 | farmdawgnation/vain |
3475a3712c86e25a6e74819f06462b862671a640 | .travis.yml | .travis.yml | language: ruby
rvm:
- '2.3.0'
- '2.2'
- '2.1'
- '2.0'
- '1.9.3'
- 'rbx-2'
- 'jruby'
before_install:
- gem install bundler
| language: ruby
rvm:
- '2.3.1'
- '2.2.5'
- '2.1.10'
- 'rbx-2'
- 'jruby'
before_install:
- gem update --system
- gem install bundler
| Update Ruby versions and update rubygems for install | [CI] Update Ruby versions and update rubygems for install
| YAML | mit | jgraichen/rails-timeago,jgraichen/rails-timeago |
12f901356e9981a0d1fd0c1239b18bcbe9f00932 | .travis.yml | .travis.yml | notifications:
recipients:
- siraaj@khandkar.net
language:
erlang
otp_release:
- 17.0
- R16B02
script:
"make ci"
cache:
directories:
- logs
| notifications:
recipients:
- siraaj@khandkar.net
language:
erlang
otp_release:
- 17.0
script:
"make ci"
cache:
directories:
- logs
| Remove the no-longer-supported OTP version from Travis | Remove the no-longer-supported OTP version from Travis
| YAML | mit | ibnfirnas/oauth1_core |
3975bf195b1c440f66092be3994399b9913cd41a | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
env:
- PYTHONPATH='.'
branches:
only:
- master
- next
before_install:
- sudo apt-get update
- sudo apt-get install nodejs
- curl http://npmjs.org/install.sh | sh
- npm update zombie
- npm install zombie
install:
- pip install . --use-mirror... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
env:
- PYTHONPATH='.'
branches:
only:
- master
- next
before_install:
- sudo apt-get update
- sudo apt-get install nodejs
- curl http://npmjs.org/install.sh | sh
- npm install zombie
install:
- pip install . --use-mirrors
- pip install nose... | Revert "Grab the latest Zombie for Travis-CI tests." | Revert "Grab the latest Zombie for Travis-CI tests."
This reverts commit 32da5ff8b8e39e43b00dba1ce326538aa626b124.
| YAML | mit | ryanpetrello/python-zombie,ryanpetrello/python-zombie |
18490fb24d814b4b62ca2f767fd08dbef6982507 | .travis.yml | .travis.yml | language: go
go:
- 1.2
install:
- script/bootstrap
script:
- export PATH="$HOME/gopath/bin:$PATH"
- script/build
- script/test
| language: go
go:
- 1.2
install:
- script/bootstrap
- bundle install
script:
- export PATH="$HOME/gopath/bin:$PATH"
- script/build
- script/test
- bundle exec rake features
| Add features spec to build | Add features spec to build
| YAML | mit | beni55/gh,jingweno/gh,jingweno/gh,jingweno/gh,beni55/gh,beni55/gh |
8230b076d1ccdd8d5180dcb87dc8bd188a9e27b3 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- tip
before_install:
- go get github.com/mattn/goveralls
script:
- $HOME/gopath/bin/goveralls -service=travis-ci | language: go
sudo: false
go:
- 1.9
before_install:
- go get github.com/mattn/goveralls
script:
- $HOME/gopath/bin/goveralls -service=travis-ci | Use go 1.9 in Travis CI. | Use go 1.9 in Travis CI.
| YAML | apache-2.0 | casbin/casbin,hsluoyz/casbin,faceless-saint/casbin |
04650a6e5eadcbec6a1e02f3d655318bbbbf47f7 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
# command to install dependencies
install:
- sudo apt-get update
- sudo apt-get install libsdl1.2-dev
- pip install -r requirements.txt
- pip install python-coveralls
- pip install nose
- pip install coverage
# command to run tests
script:
- nosetests -v --with-coverage ... | language: python
python:
- "3.5"
# command to install dependencies
install:
- sudo apt-get update
- sudo apt-get install libsdl1.2-dev
- pip install -r requirements.txt
- pip install coveralls
- pip install nose
- pip install coverage
# command to run tests
script:
- nosetests -v --with-coverage --cover... | Move back to coveralls package from python-coveralls. Not providing any benefit | Move back to coveralls package from python-coveralls. Not providing any benefit
| YAML | mit | DaveTCode/CreatureRogue |
73e5f096d8198aac55fc53fedb517be548cc5bfb | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- composer require jakub-onderka/php-console-highlighter 0.3
script:
- ./vendor/bin/tester tests
- ./paral... | language: php
php:
- 5.3.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- composer require jakub-onderka/php-console-highlighter 0.3
script:
... | Change Nette Tester Travis executable to PHP | Change Nette Tester Travis executable to PHP
| YAML | bsd-2-clause | JeroenDeDauw/PHP-Parallel-Lint |
80badde373ec8249c859a1f2bc79dfa5032d8347 | .travis.yml | .travis.yml | go_import_path: v.io
language: go
go: 1.6
install: go get -t -v ./...
script: VDLPATH=$PWD/.. go test -v ./... | go_import_path: v.io
language: go
go: 1.6
install: go get -t ./...
script: VDLPATH=$PWD/.. go test ./... | Drop the -v for go get/test | Drop the -v for go get/test
This makes the output cleaner.
| YAML | bsd-3-clause | vanadium/core,vanadium/core,vanadium/core,vanadium/core |
fdd2ee0545995db98a8ae14c3403018021b8e357 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "pypy"
install: "pip install -r requirements.txt"
before_script: python setup.py develop
script: mamba spec/*.py
| language: python
python:
- "2.7"
- "3.3"
- "pypy"
install: "pip install -r requirements.txt"
before_script: python setup.py develop
script: mamba spec/*.py
| Revert "Check support for python 3.2" | Revert "Check support for python 3.2"
This reverts commit afbc84548a744c3454180d515c692b2fe752ee17.
It gives an error when installing sure. Some stuff about strings.
| YAML | mit | dex4er/mamba,jaimegildesagredo/mamba,nestorsalceda/mamba,alejandrodob/mamba,markng/mamba,angelsanz/mamba,eferro/mamba |
b1cf70b71edf11f6d8d8fd797effb513011486f3 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install: "apt-get install libldap2-dev libsasl2-dev"
install: "make install"
before_script: "pip install -U pytest mock httplib2 wsgi_intercept"
script: "make pep8 test" | language: python
python:
- "2.7"
before_install: "sudo apt-get install libldap2-dev libsasl2-dev"
install: "make install"
before_script: "pip install -U pytest mock httplib2 wsgi_intercept"
script: "make pep8 test" | Add sudo to apt command | Add sudo to apt command
| YAML | bsd-3-clause | tiddlyweb/tiddlywebplugins.ldapauth |
4e5a9241462c6adff63e6d7e24c45f7ecdbefd62 | .travis.yml | .travis.yml | env:
- GHCVER=7.2.2
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.3
- GHCVER=head
matrix:
allow_failures:
- env: GHCVER=head
script:
- wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
| env:
- GHCVER=7.2.2
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.3
- GHCVER=head
script:
- wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
| Remove GHC-head from the allowed list of failures | Remove GHC-head from the allowed list of failures
| YAML | bsd-3-clause | ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake,ndmitchell/shake |
fd2703a316873dbf12f1c7595688ab8cf8296416 | .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 `4` and `5` | Test on `4` and `5`
| YAML | mit | gillstrom/centimeter |
9ca78c0168951af02a064963c8ada8196b1c0529 | .travis.yml | .travis.yml | sudo: false
dist: xenial
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
install:
- pip install tox-travis coveralls
before_script:
- psql -c 'create database timezone_field_tests;' -U postgres
script:
- tox
after_success:
- coveralls
| sudo: false
dist: xenial
services:
- postgresql
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
install:
- pip install tox-travis coveralls
before_script:
- psql -c 'create database timezone_field_tests;' -U postgres
script:
- tox
after_success:
- coveralls
| Add PostgreSQL as a Travis CI service | Add PostgreSQL as a Travis CI service
This used to be installed by default in the old Trusty images but they now require you to explicitly request it in your build.
| YAML | bsd-2-clause | mfogel/django-timezone-field |
1d370c742c61d2f8e72b4cbea0a890d09217f226 | .travis.yml | .travis.yml | language: objective-c
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install: gem install xcpretty cocoapods -N
podfile: Playgrounds/AudioKitPlayground/Podfile
cache: cocoapods
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhI... | language: objective-c
osx_image: beta-xcode6.3
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install: gem install xcpretty cocoapods -N
podfile: Playgrounds/AudioKitPlayground/Podfile
cache: cocoapods
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNq... | Revert "Travis Xcode 6.3 support is no longer in beta. - My ass!" | Revert "Travis Xcode 6.3 support is no longer in beta. - My ass!"
This reverts commit 7e6178031d3f4a2aa4c6eff38395ebf040dc334a.
| YAML | mit | sgrady2/AudioKit,UIKit0/AudioKit,UIKit0/AudioKit,midroid/AudioKit,dotty2883/AudioKit,UIKit0/AudioKit,sgrady2/AudioKit,audiokit/AudioKitArchive,midroid/AudioKit,audiokit/AudioKitArchive,jackywpy/AudioKit,msdgwzhy6/AudioKit,benzguo/AudioKit,audiokit/AudioKitArchive,msdgwzhy6/AudioKit,midroid/AudioKit,jackywpy/AudioKit,ms... |
e506c65911bc4e247a386eb9fb0f369cbb41a59c | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "4"
- "6"
- "7"
after_success:
- npm run coverage
- npm i codecov
- codecov -f coverage/coverage.json
notifications:
email:
on_success: never
| language: node_js
sudo: false
node_js:
- "4"
- "6"
- "7"
- "8"
after_success:
- npm run coverage
- npm i codecov
- codecov -f coverage/coverage.json
notifications:
email:
on_success: never
| Add Node.js 8 for testing | Add Node.js 8 for testing | YAML | mit | jstransformers/jstransformer-html2jade,jstransformers/jstransformer-opalcss,jstransformers/jstransformer-js-beautify,jstransformers/jstransformer-rework,jstransformers/jstransformer-walrus,jstransformers/jstransformer-html-beautify,jstransformers/consolidate-jstransformer,jstransformers/jstransformer-typescript,jstrans... |
458e9d4faac0320f3704dc2b939a18c07f0ac011 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "6"
- "7"
install:
- npm install
script:
- npm run lint
- npm run compile
- npm test
| language: node_js
node_js:
- "4"
- "6"
- "7"
- "8"
install:
- npm install
script:
- npm run lint
- npm run compile
- npm test
| Add Travis-CI Node v8 target | Add Travis-CI Node v8 target
| YAML | mit | Borewit/music-metadata,Borewit/music-metadata |
d37fa4d7d4b3608267d989711ef3e43225a2299c | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
branches:
- /.*/
| language: node_js
node_js:
- "stable"
branches:
- /.*/
install:
- npm install
script:
- npm test
| Update install & script steps for CI | Update install & script steps for CI
| YAML | mit | GLNRO/react-redux-threejs,GLNRO/react-redux-threejs |
d9c950c7d0c3aa4ba952e785d219097e9a2267be | .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:
- npm install -g npm
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Use NPM 5 on Travis CI. | Use NPM 5 on Travis CI.
| YAML | mit | bigeasy/abend |
73b0ba371d7cdc8746ccd8d2111a694ac5f61d07 | .travis.yml | .travis.yml | language: "node_js"
node_js:
- "0.11"
install:
- "npm install"
script:
- "./_test"
branches:
only:
- master
| language: "node_js"
node_js:
- "0.10"
install:
- "npm install"
script:
- "./_test"
branches:
only:
- master
| Change node version from 0.11 to 0.10 | Change node version from 0.11 to 0.10
| YAML | mit | milewdev/TinyMock |
ef1cdfbf98641d55f23c3efeb4dec0a8e9e8a11a | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '5'
- '6'
after_success:
- make coveralls
- '[[ -n "$TRAVIS_TAG" ]] && make gh-pages'
deploy:
provider: npm
email: rr.rossmann@gmail.com
api_key:
secure: DC89w8xRSEK+lm0ZHq8mnEcubBXKRj3/h9ZvcKL0s8sKUo2gwx6hwpNu1zUNbDJI7+teD8JsE1bun8uGRX6JsUEjIPoejBTDvAPCt4tzFcAPI... | sudo: false
language: node_js
node_js:
- '4'
- '5'
- '6'
after_success:
- make coveralls
- '[[ -n "$TRAVIS_TAG" ]] && make gh-pages'
deploy:
provider: npm
email: rr.rossmann@gmail.com
api_key:
secure: lkRl7d7WwlI6UEnnNJbfyOsOYQyUsIFXulD8Fff8HSKFgr39Ye5eObS3u69+zdTeYaQfOJ0fl4XD/kAe3coUJHN3fN7GPfz+sxmCYybiYa35Z... | Update API key in Travis config | Update API key in Travis config
| YAML | bsd-3-clause | Dreamscapes/semantic-merge |
75281795e6bd2b6911215048a86ff0cdf399a925 | .travis.yml | .travis.yml | dist: trusty
cache: bundler
language: ruby
rvm:
- 2.5.1
env:
matrix:
- SOLIDUS_BRANCH=v2.4 DB=postgres
- SOLIDUS_BRANCH=v2.5 DB=postgres
- SOLIDUS_BRANCH=v2.6 DB=postgres
- SOLIDUS_BRANCH=v2.7 DB=postgres
- SOLIDUS_BRANCH=v2.8 DB=postgres
- SOLIDUS_BRANCH=master DB=postgres
- SOLIDUS_BRA... | dist: trusty
cache: bundler
language: ruby
rvm:
- 2.5.1
env:
matrix:
- SOLIDUS_BRANCH=v2.5 DB=postgres
- SOLIDUS_BRANCH=v2.6 DB=postgres
- SOLIDUS_BRANCH=v2.7 DB=postgres
- SOLIDUS_BRANCH=v2.8 DB=postgres
- SOLIDUS_BRANCH=master DB=postgres
- SOLIDUS_BRANCH=v2.5 DB=mysql
- SOLIDUS_BRANCH... | Update Solidus versions in Travis build matrix | Update Solidus versions in Travis build matrix
| YAML | bsd-3-clause | solidusio-contrib/solidus_product_feed,solidusio-contrib/solidus_product_feed |
a6c5ab2100894dfcbfc479cced77ff456e999b14 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer update --prefer-dist
script:
# - php ./vendor/phpunit/phpunit/phpunit
- php ./vendor/phpunit/phpunit/phpunit --coverage-clover=build/logs/clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-... | language: php
php:
- 5.5
- 5.6
- hhvm
before_script:
- composer update --prefer-dist
script:
# - php ./vendor/phpunit/phpunit/phpunit
- php ./vendor/phpunit/phpunit/phpunit --coverage-clover=build/logs/clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage... | Drop support for PHP 5.4 | Drop support for PHP 5.4
| YAML | mit | dankempster/axstrad-test |
6796bd09397839f2884b1619043fd58b611fb533 | .travis.yml | .travis.yml | sudo: required
language: ruby
rvm:
- 2.4.2
services:
- docker
script:
- bundle exec rake rubocop
- bundle exec rake
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push suhlig/concourse-rss-resource;
fi
| sudo: required
language: ruby
rvm:
- 2.5.0
services:
- docker
script:
- bundle exec rake rubocop
- bundle exec rake
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push suhlig/concourse-rss-resource;
fi
| Update Travis to use Ruby 2.5 | Update Travis to use Ruby 2.5
| YAML | mit | suhlig/concourse-rss-resource,suhlig/concourse-rss-resource |
c3f55288095a0daf0d267bcf68f8f80799dd4e0e | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.5
- 1.6
install:
- go get github.com/bwmarrin/flake
- go get -v .
| language: go
go:
- 1.11.x
- 1.12.x
install:
- go get -v .
script:
- diff <(gofmt -d .) <(echo -n)
- go vet -x ./...
- golint -set_exit_status ./...
- go test -v -race ./...
| Check more, Check against Go 11.x/12.x | Check more, Check against Go 11.x/12.x
| YAML | bsd-2-clause | bwmarrin/snowflake |
4cbd222dd0f16706a08b128138a52c5fba26b3b9 | .travis.yml | .travis.yml | language: cpp
os:
- linux
- osx
matrix:
include:
- compiler: gcc
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
before_script:
- export CXX=g++-4.9
- compiler: gcc
os: linux
addons:
... | language: cpp
matrix:
include:
- compiler: gcc
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
before_script:
- export CXX=g++-4.9
- compiler: gcc
os: linux
addons:
apt:
so... | Add osx platform to matrix | Add osx platform to matrix
| YAML | unlicense | elnormous/ouzel,elnormous/ouzel,Hotspotmar/ouzel,elnormous/ouzel,Hotspotmar/ouzel,elvman/ouzel,elvman/ouzel,Hotspotmar/ouzel |
57173ebd53c2c52299a492bf78b9b103c790f0eb | .travis.yml | .travis.yml | language: python
install:
- pip install -r test-requirements.txt
- python setup.py install
script:
- pytest pydiff
- pytest pydiff --pep8
notifications:
slack:
rooms:
- beagleinc:DB8ZeLgjLqjW9Mhn3WmXpbuW#circleci
- serf-beagle:StH5vRHmpWcpZ6ryDdPzIkc2#ci
email: false
| language: python
python:
- "2.7"
- "3.6"
install:
- python setup.py install
- pip install -r test-requirements.txt
script:
- pytest pydiff
- pytest pydiff --pep8
notifications:
slack:
rooms:
- beagleinc:DB8ZeLgjLqjW9Mhn3WmXpbuW#circleci
- serf-beagle:StH5vRHmpWcpZ6ryDdPzIkc2#ci
email... | Add Py3 tests to Travis CI | Add Py3 tests to Travis CI | YAML | apache-2.0 | BeagleInc/PyReadableDiff |
42240ac36dd4b9b7546b73ed88d7aba5411c9797 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
before_install:
- "sudo apt-get install cimg-dev libphash0-dev libmagickcore-dev"
script: "npm run-script test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
before_install:
- "sudo apt-get update"
- "sudo apt-get install cimg-dev libphash0-dev libmagickcore-dev"
script: "npm run-script test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
| Add 'apt-get update' to Travis CI | Add 'apt-get update' to Travis CI
Should ensure the correct version of libav
| YAML | mit | mgmtio/phash-image,mgmtio/phash-image,mgmtio/phash-image |
7244f638e671f106056130a08753945bbce5642d | .travis.yml | .travis.yml | language: python
sudo: required
python:
- "2.7"
before_install:
- sudo apt-get install fabric liblua5.2 liblua5.2-dev pylint
install:
- pip install -r requirements.txt
script:
- ./tools/infrastructure/checkstyle.sh
- fab test_all
| language: python
sudo: required
python:
- "2.7"
branches:
only:
- master
- develop
before_install:
- sudo apt-get install fabric liblua5.2 liblua5.2-dev pylint
install:
- pip install -r requirements.txt
script:
- ./tools/infrastructure/checkstyle.sh
- fab test_all
| Improve Travis build: build only master and develop on push | Improve Travis build: build only master and develop on push
| YAML | mit | malirod/pylua,malirod/pylua |
db933d973cd200163d111345ca64943e9008237f | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- rbx-19mode
- ruby-head
| language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- ruby-head
| Remove Rubinius because Travis can't find binaries | Remove Rubinius because Travis can't find binaries | YAML | mit | tyre/ultra_marathon |
20fe5a2ea77a8cf3de5eb0454f162be8a8392504 | .travis.yml | .travis.yml | sudo: false
language: elixir
elixir:
- 1.1.0
- 1.2.0
otp_release:
- 18.0
- 18.1
- 18.2
env:
matrix:
- CC=clang
- CC=gcc
before_install:
- kerl list installations
- export MIX_ENV=ci
after_success:
- mix coveralls.travis
after_script:
- mix inch.report
- mix credo --strict
- mix he... | sudo: false
language: elixir
elixir:
- 1.2.6
- 1.3.1
otp_release:
- 18.3
- 19.0
env:
matrix:
- CC=clang
- CC=gcc
before_install:
- kerl list installations
- export MIX_ENV=ci
after_success:
- mix coveralls.travis
after_script:
- mix inch.report
- mix credo --strict
- mix hex.outdate... | Use only the two most recent lang versions | Use only the two most recent lang versions | YAML | mit | asaaki/cmark.ex,asaaki/cmark.ex |
f4e96e0f8078b9ff462991ccde805ce312919d1c | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
global:
- PRODUCT=tarantool-cbench
matrix:
- OS=el DIST=6 PACK=rpm
- OS=el DIST=7 PACK=rpm
- OS=fedora DIST=23 PACK=rpm
- OS=fedora DIST=24 PACK=rpm
# - OS=fedora DIST=rawhide PACK=rpm
- OS=ubuntu DIST=precise PACK=deb
- OS... | sudo: required
services:
- docker
env:
global:
- PRODUCT=tarantool-cbench
matrix:
- OS=el DIST=6 PACK=rpm
- OS=el DIST=7 PACK=rpm
- OS=fedora DIST=23 PACK=rpm
- OS=fedora DIST=24 PACK=rpm
# - OS=fedora DIST=rawhide PACK=rpm
- OS=ubuntu DIST=precise PACK=deb
- OS... | Enable uploading to 1.8 repository | Enable uploading to 1.8 repository
| YAML | bsd-2-clause | tarantool/cbench,tarantool/tarantool-c-bench,tarantool/tarantool-c-bench,tarantool/cbench |
518b5eaf99dac368ed398ad68e8a9745c79946e5 | .travis.yml | .travis.yml | language: node_js
sudo: required # requirement for postgres 9.5
dist: trusty
node_js:
- "6.10"
services:
- postgresql
- redis-server
env:
- CXX=g++-4.8 NODE_ENV=development DB_ENV=travis
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- unicode-data
postgresql: ... | language: node_js
sudo: required # requirement for postgres 9.5
dist: trusty
node_js:
- "6.10"
- "7.7"
services:
- postgresql
- redis-server
env:
- CXX=g++-4.8 NODE_ENV=development DB_ENV=travis
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- unicode-data
po... | Test using latest NodeJS 7.x too | Test using latest NodeJS 7.x too
| YAML | agpl-3.0 | Lokiedu/libertysoil-site,Lokiedu/libertysoil-site |
2aa65d257248e7106c75c33d846f8b990082efeb | .travis.yml | .travis.yml | language: node_js
# Use container-based infrastructure
sudo: false
node_js:
- "6"
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
script:
- npm run lint
- npm run test:cover
after_script:
- codeclimate-test-reporter < coverage/lcov.info
addons:
code_climate:
repo_token: d46a480972b95429... | language: node_js
# Use container-based infrastructure
sudo: false
node_js:
- "6"
- "5"
- "4"
script:
- npm run lint
- npm run test:cover
after_script:
- codeclimate-test-reporter < coverage/lcov.info
addons:
code_climate:
repo_token: d46a480972b9542986bef5f14563522aa4ad65a9122fa68158de52d5... | Remove specific Node version from Travis config | Remove specific Node version from Travis config
| YAML | mit | nordsoftware/redux-fetch-data |
fc5a77fbd96f4e825bd052ee9b6b4733e17378ac | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
python:
- "3.4"
- "3.5"
before_install:
- sudo apt-get update -y
- sudo apt-get install clang -y
install:
- "pip install --process-dependency-links ."
script:
- "python setup.py test" | sudo: required
dist: trusty
language: python
python:
- "3.4"
- "3.5"
before_install:
- sudo apt-get update -y
- sudo apt-get install libclang-dev -y
install:
- "pip install --process-dependency-links ."
script:
- "python setup.py test" | Install the development libraries of clang, not clang itself. | Install the development libraries of clang, not clang itself.
| YAML | bsd-3-clause | pybee/seasnake |
d65b7a0445d4f8ed8550597a89b2fd5307b04522 | .travis.yml | .travis.yml | ---
env:
- PUPPET_VERSION=2.7.23
- PUPPET_VERSION=3.3.2
- PUPPET_VERSION=3.4.2
notifications:
email: false
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
matrix:
allow_failures:
- env: PUPPET_VERSION=2.7.23
- rvm: 2.0.0
language: ruby
before_script: "gem install --no-ri --no-rdoc bundler"
script: 'bundle exec rake validate && bund... | ---
env:
- PUPPET_VERSION=3.3.2
- PUPPET_VERSION=3.4.2
notifications:
email: false
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
matrix:
allow_failures:
- rvm: 2.0.0
language: ruby
before_script: "gem install --no-ri --no-rdoc bundler"
script: 'bundle exec rake validate && bundle exec rake lint && SPEC_OPTS="--format documentation"... | Remove support for Puppet 2.7 | Remove support for Puppet 2.7
| YAML | apache-2.0 | ghoneycutt/puppet-module-skeleton,ghoneycutt/puppet-module-skeleton |
8839b855ca16a7670f565d17980246878a534708 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.3
before_install:
- |
bash -c " # Install MariaDB
sudo bash .travis_mariadb.sh
"
before_script:
- mysql -e 'create database portus_test;'
script:
- 'bundle exec rspec spec'
- 'bundle exec rubocop'
| language: ruby
rvm:
- 2.1.3
env:
- OBS_REPO=Virtualization:containers:Portus
- OBS_BRANCH=master
before_install:
- |
bash -c " # Install MariaDB
sudo bash .travis_mariadb.sh
"
before_script:
- mysql -e 'create database portus_test;'
script:
- 'bundle exec rspec spec'
- 'bundle exec rubocop'
| Add ENV variables required to build portus package on OBS | Add ENV variables required to build portus package on OBS
| YAML | apache-2.0 | rhoml/Portus,mauromorales/Portus,vitorarins/Portus,vpereira/Portus,kwk/Portus,krishnak9/Portus,mauromorales/Portus,jloehel/Portus,krishnak9/Portus,bencevans/Portus,liubin/Portus,rhoml/Portus,Gobliip/Portus,angry-tony/Portus-20170827,angry-tony/Portus-20170827,liubin/Portus,Gobliip/Portus,angry-tony/Portus-20170827,msso... |
8de26bc7a047877e00ddaca66bb974f458a10349 | .travis.yml | .travis.yml | language: android
sudo: false
jdk:
- oraclejdk8
android:
components:
- tools
- build-tools-25.0.2
- android-25
- extra-android-support
- extra-android-m2repository
licenses:
- 'android-sdk-license-.+'
- '.*intel.+'
before_install:
- chmod +x gradlew
install:
- ./gradlew
script:
-... | language: android
sudo: false
jdk:
- oraclejdk8
android:
components:
- tools
- build-tools-25.0.2
- android-25
- extra-android-support
- extra-android-m2repository
licenses:
- 'android-sdk-license-.+'
- '.*intel.+'
before_install:
- chmod +x gradlew
install:
- ./gradlew
script:
-... | Switch to assembleDebug for CI | Switch to assembleDebug for CI
| YAML | apache-2.0 | anthonycr/Grant |
7eb26fde5cc58a6c6a262f6b2559b0ca48ec290d | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
script: grunt default
| language: node_js
node_js:
- "0.10"
before_script:
- npm install -g bower
- bower install
script: grunt default
| Install bower and install necessary libraries. | Install bower and install necessary libraries.
| YAML | mit | weblogng/angular-weblogng |
d9a0b2b7f9d4ebbb88eb9d3538230fd8f1c35de0 | .travis.yml | .travis.yml | language: python
env:
- REQUIREMENTS=lowest
- REQUIREMENTS=current
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
install:
- pip install tox
script:
- tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/')-$REQUIREMENTS
notifications:
email: false
| language: python
env:
- REQUIREMENTS=lowest
- REQUIREMENTS=current
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
install:
- pip install tox
script:
- tox -e $(echo py$TRAVIS_PYTHON_VERSION | tr -d . | sed -e 's/pypypy/pypy/')-$REQUIREMENTS
notifications:
email: false
deploy:
provider: pypi
dis... | Enable auto publish to PyPI with Travis CI | Enable auto publish to PyPI with Travis CI
| YAML | mit | shopkeep/shpkpr,shopkeep/shpkpr |
17a76897826c3013f5ce53b6366032d5c9a9a735 | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
- release
- tip
install:
- go get github.com/oschwald/maxminddb-golang
- go get launchpad.net/gocheck
script:
- go test -v ./...
| language: go
go:
- 1.1
- 1.2
- 1.3
- release
- tip
-install:
- go get github.com/oschwald/maxminddb-golang
- go get launchpad.net/gocheck
| Add Go 1.3 to Travis | Add Go 1.3 to Travis
| YAML | isc | adjust/geoip2-golang,viki-org/geoip2-golang,agaurav/geoip2-golang,oschwald/geoip2-golang |
a77c7f36a7eb13d3f79e1d9426e3027f5a36b415 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- '7'
install: composer install --dev
script: vendor/bin/phpunit
| language: php
php:
- 7.4
install: composer install --dev
script: vendor/bin/phpunit
| Use PHP 7.4 to run Travis-CI tests | Use PHP 7.4 to run Travis-CI tests
| YAML | mit | activecollab/utils |
5cb339ce4ee5260bc3a5fd8a5bed1ddde9ca4fea | .travis.yml | .travis.yml | bundler_args: "--without production"
rvm:
- 1.8.7
- 1.9.2
- rbx
- rbx-2.0
- ree
env: "RAILS_ENV=test"
| bundler_args: "--without production"
rvm:
- 1.8.7
- 1.9.2
- rbx-18mode
- rbx-19mode
- ree
env: "RAILS_ENV=test"
| Test against Rubinius in both Ruby 1.8 and 1.9 mode | Test against Rubinius in both Ruby 1.8 and 1.9 mode
| YAML | mit | sferik/sign-in-with-twitter,ksmetana/rails-app-twitter-test,ksmetana/rails-app-twitter-test,theonlyjames/garbage,sferik/sign-in-with-twitter,theonlyjames/garbage,arrogantgamer/ludum_dare_28,arrogantgamer/ludum_dare_28,sferik/sign-in-with-twitter |
6781e1208f82e775c11bb5a855e178cb710929f3 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y python-opencv
- pip install -r requirements.txt
script:
- python setup.py build
| language: python
python:
- "2.7"
- "3.4"
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y python-opencv
- pip install -r requirements.txt
script:
- python setup.py build
virtualenv:
system_site_packages: true
| Use system installed Python dependencies. | Use system installed Python dependencies.
| YAML | isc | eliteraspberries/avena |
f4139372dc311f91816452f2cbd0fe2d716079e1 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
| language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.10
- 2.2.5
- 2.3.1
- ruby-head
| Test against ruby 2.1.10, 2.2.5, and 2.3.1 | Test against ruby 2.1.10, 2.2.5, and 2.3.1
| YAML | mit | amatsuda/kawaii_validation |
08a60c7b391e67fd6af7c3ca86985f841f3421d9 | .travis.yml | .travis.yml | # Use Travis's cointainer based infrastructure
sudo: false
dist: trusty
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 "... | # Use Travis's cointainer based infrastructure
sudo: false
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
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 ... | Simplify Travis config and fix ChefDK 2.0 failures | Simplify Travis config and fix ChefDK 2.0 failures
| YAML | apache-2.0 | chef-cookbooks/nopcommerce,chef-cookbooks/nopcommerce |
9aa4564811b04fc53f45acecadea913ac20e71fb | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "10"
- "12"
script:
- npm run lint
- npm test
after_script: "npm run coverage"
cache:
directories:
- node_modules
matrix:
fast_finish: true
| # https://docs.travis-ci.com/user/build-config-validation/
version: ~> 1.0
language: node_js
node_js:
- "10"
- "12"
script:
- npm run lint
- npm test
after_script: "npm run coverage"
cache:
directories:
- node_modules
jobs:
fast_finish: true
| Validate Travis CI config file from now on | Validate Travis CI config file from now on
| YAML | mit | paazmaya/image-foldarizer |
165ddf5823954d5dc03921bcfab721fc265eae24 | .travis.yml | .travis.yml | sudo: false
language: ruby
bundler_args: --path vendor/bundle --jobs=3 --retry=3
script: bundle exec rspec
cache: bundler
before_install:
- gem install bundler
- bundle config --local without local_development yard guard
rvm:
# 2.1, not 2.1.0 until fixed https://github.com/travis-ci/travis-ci/issues/2220
- 2.5... | language: ruby
bundler_args: --path vendor/bundle --jobs=3 --retry=3
script: bundle exec rspec
cache: bundler
before_install:
- gem install bundler
- bundle config --local without local_development yard guard
rvm:
# 2.1, not 2.1.0 until fixed https://github.com/travis-ci/travis-ci/issues/2220
- 2.5
- 2.6
-... | Drop unused sudo: false Travis directive | CI: Drop unused sudo: false Travis directive | YAML | mit | metricfu/metric_fu,metricfu/metric_fu,metricfu/metric_fu |
a994c5c7a23770ece2c024c134697a23eb022119 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
before_script:
- travis_retry composer self-update
- travis_retry composer update $COMPOSER_OPTS
script:
- php vendor/bin/phpunit --coverage-text --coverage-clover=coverage.cl... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
before_script:
- travis_retry composer self-update
- travis_retry composer update $COMPOSER_OPTS
script:
- php vendor/bin/phpunit | Remove Scrutinizer from Travis config. | Remove Scrutinizer from Travis config.
| YAML | mit | thephpleague/glide-laravel |
688d79f8aa06f87b72dd87cfd3126ba654b7aaba | .travis.yml | .travis.yml | language: go
go:
- 1.3
- tip
install: go get -v ./solr
before_script: curl -sSL https://raw.githubusercontent.com/moliware/travis-solr/master/travis-solr.sh | SOLR_VERSION=4.7.2 bash
script: go test -v ./solr
| language: go
go:
- 1.3
- tip
install: go get -v ./solr
script: go test -v ./solr
| Remove solr instance installation. Seems to work well, need to prepare config and some test refactoring | Remove solr instance installation. Seems to work well, need to prepare config and some test refactoring
| YAML | mit | vanng822/go-solr |
3fe0f35b0be434c414caa47cd117b3c6b7a9e1f0 | .travis.yml | .travis.yml | language: node_js
cache: yarn
node_js:
- node
- "8"
- "6"
git:
depth: 5
| language: node_js
cache: yarn
node_js:
- node
- "10"
- "8"
- "6"
git:
depth: 5
| Add Node.js 10 to Travis CI | Add Node.js 10 to Travis CI
| YAML | mit | postcss/postcss-nested |
60cb7137f8a3943d2ba8b8eb7a86194e38021fd0 | .travis.yml | .travis.yml | os: linux
sudo: required
language: java
python:
- "2.7"
services:
- docker
env:
DOCKER_COMPSE_VERSION: 1.14.0
DOCKER_VERSION: 17.06.0~ce-0~ubuntu
before_install:
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.doc... | os: linux
sudo: required
language: java
python:
- "2.7"
services:
- docker
env:
DOCKER_COMPSE_VERSION: 1.14.0
DOCKER_VERSION: 17.06.0~ce-0~ubuntu
before_install:
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.doc... | Fix jenkins master runs on 8080 by default | Fix jenkins master runs on 8080 by default
| YAML | apache-2.0 | sergeyhush/docker-jenkins |
b1be0ed17e35bb005e259d65e7b38c9f84babc42 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.8'
- '0.10'
before_install:
pip install codecov
after_success:
codecov
| language: node_js
sudo: false
node_js:
- '0.10'
- '0.11'
after_success:
- bash <(curl -s https://codecov.io/bash)
| Use node 0.10 and 0.11 | Use node 0.10 and 0.11
| YAML | mit | shiva/genc,shiva/genc |
ffc708afece4722132af2652bdaba7b786fa22cc | .travis.yml | .travis.yml | language: ruby
rvm:
- jruby-19mode
- rbx-19mode
- 1.9.2
- 1.9.3
- 2.0.0
| bundler_args: --without development
language: ruby
rvm:
- jruby-19mode
- rbx-19mode
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
matrix:
allow_failures:
- rvm: rbx-19mode
| Add Ruby 2.1.0 to Travis config | Add Ruby 2.1.0 to Travis config | YAML | mit | jpalumickas/csstats |
cb46b5611c76b082275a58eba0e1f7c14f566beb | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.6"
install: pip install tox-travis
script: tox
| language: python
python:
- "2.7"
- "3.6"
install: pip install tox-travis
script: tox
| Drop support for Python 2.6 in Travis CI | Drop support for Python 2.6 in Travis CI
| YAML | mit | croach/Flask-Fixtures |
3a74d30bbcab64cf528aa0bf3e1c99d12660d0f6 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
before_script:
- npm install -g grunt-cli
- git submodule update --init --recursive
deploy:
provider: s3
bucket: code.fireboltjs.com
skip_cleanup: true
local-dir: dist
access_key_id:
secure: SIFyjgmdTR5BPhOTNp6YydkSvTukSomEnc7v70fkfVI8prJAQ3/cqbCJelC9Z... | sudo: false
language: node_js
node_js:
- '0.10'
before_script:
- npm install -g grunt-cli
deploy:
provider: s3
bucket: code.fireboltjs.com
skip_cleanup: true
local-dir: dist
access_key_id:
secure: SIFyjgmdTR5BPhOTNp6YydkSvTukSomEnc7v70fkfVI8prJAQ3/cqbCJelC9ZSlbfTcwZjm8g1n4zwis1AdnnUAp27ndpeJozTH6qJN4o... | Remove unnecessary before_script command from Travis config | Remove unnecessary before_script command from Travis config
[ci skip]
| YAML | mit | woollybogger/code.fireboltjs.com,woollybogger/code.fireboltjs.com |
bc973cdf56117527cc8d4a4d333976b8533ad263 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.4
- 2.6.2
- ruby-head
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.0.beta3.gemfile
- gemfiles/rails_edge.gemfile
matrix:
allow_failures:
- rvm: ruby-head
... | language: ruby
sudo: false
rvm:
- 2.2.10
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
- ruby-head
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.0.beta3.gemfile
- gemfiles/rails_edge.gemfile
matrix:
allow_failures:
- rvm: ruby-head
... | Test against latest Ruby versions | Test against latest Ruby versions | YAML | mit | jensb/route_translator,enriclluelles/route_translator,enriclluelles/route_translator,jensb/route_translator |
a5f9be603594bf1dd4d0a8bf4059028cbdeef856 | .travis.yml | .travis.yml | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
env:
- COMPOSER_ARGUMENTS="--prefer-lowest"
- php: 5.5
env:
- EXECUTE_CS_CHECK=true
- php: 5.6
env:
- EXECUTE_TEST_COVERALLS... | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
env:
- COMPOSER_ARGUMENTS="--prefer-lowest"
- php: 5.5
env:
- EXECUTE_CS_CHECK=true
- php: 5.6
env:
- EXECUTE_TEST_COVERALLS... | Fix composer arguments not used | [Travis] Fix composer arguments not used | YAML | bsd-2-clause | Maks3w/php-library-skeleton |
02d77b62f3cbf7b59aa1f7cfb3b0d689964e0abd | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- jruby
gemfile:
- gemfiles/rapporteur2.gemfile
- gemfiles/rapporteur3.gemfile
notifications:
email: false
campfire:
on_success: change
on_failure: always
rooms:
- secure: "AVi2J9hq3ZBvNt9/eDwslgGfqyhURtcoJFlHScOgffK+9woQOeJXDQcpqxxE\nto7C1lnRn8c0VE2Z0... | language: ruby
rvm:
- 1.8.7
- 1.9.3
- jruby
gemfile:
- gemfiles/rapporteur2.gemfile
- gemfiles/rapporteur3.gemfile
matrix:
exclude:
- rvm: 1.8.7
gemfile: gemfiles/rapporteur2.gemfile
notifications:
email: false
campfire:
on_success: change
on_failure: always
rooms:
- secure: ... | Add Ruby 1.8 to the CI build matrix. | Add Ruby 1.8 to the CI build matrix.
| YAML | mit | codeschool/rapporteur-load_check |
90c00d9d1460ae3fc65523b506c489d44c13d113 | .travis.yml | .travis.yml | language: c
os:
- linux
- osx
compiler:
- clang
- gcc
before_script:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install libboost-all-dev; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install automake autoc... | language: c
os:
- linux
compiler:
- clang
- gcc
before_script:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get update -qq; fi
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sudo apt-get install libboost-all-dev; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then brew install automake autoconf boos... | Remove osx due to slow compile | Remove osx due to slow compile
| YAML | bsd-3-clause | cybergarage/uecho,cybergarage/uecho,cybergarage/uecho,cybergarage/uecho |
b3f90fc6aab2b3985ada0802f296cef90205cd5a | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "stable"
- "4.2"
- "0.10"
| Support stable and current lts release. Remove node 0.6 & 0.8 support. | Support stable and current lts release. Remove node 0.6 & 0.8 support.
| YAML | mit | timoxley/colornames,timoxley/colornames |
b7374cea9ee47dc8a8e61dd48571a3944745e8cb | .travis.yml | .travis.yml | language: java
sudo: false # Linux OS: run in container
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk8
- os: linux
dist: trusty
jdk: oraclejdk8
# Headless Build: `sudo xvfb` + TestFX does not work on Travis OSX environments (as of 2017-05-24)
# See https://gi... | language: java
jdk:
- oraclejdk8
after_success:
- bash <(curl -s https://codecov.io/bash)
| Revert "Preparing for headless GUI test" | Revert "Preparing for headless GUI test"
This reverts commit 2afb6701eb85113d47e6b63e742de986e5472deb.
Signed-off-by: Oliver Loeffler <c539153ba1f947bd4b6f910263b967c4a0a62357@raumzeitfalle.de>
| YAML | apache-2.0 | asciidocfx/AsciidocFX,asciidocfx/AsciidocFX,asciidocfx/AsciidocFX,asciidocfx/AsciidocFX |
019c923a7f882b05f4d141aa8159faa222f2c69a | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9.2
jobs:
include:
# testing
- stage: test
script: xcodebuild -workspace Vienna.xcworkspace -scheme Vienna test | xcpretty
# linting
- stage: lint
before_script:
- brew outdated swiftlint || brew upgrade swiftlint
- swiftlint version
... | language: objective-c
osx_image: xcode9.3
jobs:
include:
# testing
- stage: test
script: xcodebuild -workspace Vienna.xcworkspace -scheme Vienna test | xcpretty
# linting
- stage: lint
before_script:
- brew outdated swiftlint || brew upgrade swiftlint
- swiftlint version
... | Configure Travis to use Xcode 9.3 | Configure Travis to use Xcode 9.3
| YAML | apache-2.0 | barijaona/vienna-rss,ViennaRSS/vienna-rss,josh64x2/vienna-rss,josh64x2/vienna-rss,ViennaRSS/vienna-rss,Eitot/vienna-rss,barijaona/vienna-rss,josh64x2/vienna-rss,josh64x2/vienna-rss,Eitot/vienna-rss,ViennaRSS/vienna-rss,barijaona/vienna-rss,lapcat/vienna-rss,josh64x2/vienna-rss,ViennaRSS/vienna-rss,barijaona/vienna-rss,... |
88e77a4b2af4545556149f5a8d79ff05503158f7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
- 2.1
- 2.0.0
addons:
postgresql: "9.3"
before_script:
- psql -c 'CREATE DATABASE safer_migrations_test;' -U postgres
script:
- bundle exec rspec spec
- bundle exec rubocop
env:
global:
- "DATABASE_URL=postgres://postgres@localhost/safer_migrations_test"
matrix:
- ... | language: ruby
rvm:
- 2.3.0
- 2.2
- 2.1
- 2.0.0
addons:
postgresql: "9.3"
before_script:
- psql -c 'CREATE DATABASE safer_migrations_test;' -U postgres
script:
- bundle exec rspec spec
- bundle exec rubocop
env:
global:
- "DATABASE_URL=postgres://postgres@localhost/safer_migrations_test"
ma... | Add Ruby 2.3 to Travis | Add Ruby 2.3 to Travis
| YAML | mit | gocardless/activerecord-safer_migrations |
be32276b55add4a4a19551137ab40075c2457c62 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
before_install:
- sudo sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise main' >> /etc/apt/sources.list"
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo apt-get update -qq
- sudo apt-get install -qq llvm-3.4
- sudo apt-g... | language: cpp
compiler:
- gcc
before_install:
- sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.4 main' >> /etc/apt/sources.list"
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo apt-get update -qq
- sudo apt-get install -qq llvm-3.4-dev
- sudo ap... | Fix LLVM 3.4 for Travis CI | Fix LLVM 3.4 for Travis CI
Signed-off-by: Pekka Enberg <add4fcd06328a394f0ad91feda7ee057316dc5ed@kernel.org>
| YAML | bsd-2-clause | penberg/hornet,penberg/hornet,penberg/hornet,penberg/hornet |
dc97ccd4cc8e630440c7e5f190c53d68f06c5bbb | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
gemfile: Gemfile.ci
env:
- DATABASE_URL="sqlite::memory:" RACK_ENV=test
before_install: gem install bundler -v 1.12.5
addons:
code_climate:
repo_token:
after_success:
- bundle exec codeclimate-test-reporter
| sudo: false
language: ruby
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
gemfile: Gemfile.ci
env:
- DATABASE_URL="sqlite::memory:" RACK_ENV=test
before_install: gem install bundler -v 1.12.5
addons:
code_climate:
repo_token: 289860573c6284a8e277de86848caba84d840be49e35f3601bcd672ab40d1e35
after_success:
- bundle exec co... | Add code climate repo token | chore: Add code climate repo token
| YAML | mit | EagerELK/ditty,EagerELK/ditty,EagerELK/ditty |
c56e595cafb9214061067cb982a63f74baffddd8 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "5.0"
# Use container-based Travis infrastructure.
sudo: false
branches:
only:
- master
before_install:
# GUI for real browsers.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- 'npm install -g npm@3'
script:
- npm --version
-... | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "5.0"
# Use container-based Travis infrastructure.
sudo: false
branches:
only:
- master
addons:
firefox: "latest"
before_install:
# GUI for real browsers.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- 'npm install -g npm@3'
... | Use the latest Firefox in Travis | Use the latest Firefox in Travis
| YAML | mit | FormidableLabs/radium-grid,FormidableLabs/radium-grid |
d3f3996806423c26eba8d93ebbaa3d714c8487b9 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7
env:
- SYMFONY_VERSION=2.3.*
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=3.0.*
branches:
only:
- master
before_script:
# disable xdebug
- phpenv config-rm xdebug.ini
- wget http://getcomposer.org/composer.phar
- php composer.phar req... | language: php
php:
- 7
env:
- SYMFONY_VERSION=2.3.*
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=3.0.*
branches:
only:
- master
before_script:
# disable xdebug
- phpenv config-rm xdebug.ini
- wget http://getcomposer.org/composer.phar
- php composer.phar require sym... | Drop tests for php 5.6. | Drop tests for php 5.6.
| YAML | mit | M6Web/ElasticsearchBundle,M6Web/ElasticsearchBundle |
e70944c4acec3ffd41e213a7b7ecfcf76eaeffc5 | .travis.yml | .travis.yml | language: python
python:
- 2.7
services:
- mongodb
install:
- pip install -r requirements/travis.pip --allow-external webassets --allow-unverified webassets
- pip install --no-deps -e .
- requirements/elasticsearch-travisci.sh
script:
- nosetests --with-xcoverage udata
after_success:
- coveralls
| language: python
python:
- 2.7
services:
- mongodb
before_install:
- sudo requirements/elasticsearch-travisci.sh
install:
- pip install -r requirements/travis.pip --allow-external webassets --allow-unverified webassets
- pip install --no-deps -e .
script:
- nosetests --with-xcoverage udata
after_success:
... | Fix ES install in Travis | Fix ES install in Travis
| YAML | agpl-3.0 | opendatateam/udata,jphnoel/udata,davidbgk/udata,etalab/udata,jphnoel/udata,davidbgk/udata,grouan/udata,opendatateam/udata,grouan/udata,grouan/udata,opendatateam/udata,etalab/udata,etalab/udata,davidbgk/udata,jphnoel/udata |
0854cecb321d196de92504a6b7140389b7538850 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- hhvm
sudo: false
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
| language: php
php:
- 5.6
- 7.0
- hhvm
sudo: required
before_install:
- sudo apt-get install -y libyaml-dev
- sudo pecl install yaml-beta && echo "extension=yaml.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
install:
- travis_retry composer install --no-interaction --prefer-source
script:... | Install yaml on Travis build. | Install yaml on Travis build.
| YAML | mit | samrap/gestalt |
50d71eed5f6ab7fdfd66905728b57a35831ee51d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_install:
- git submodule update --init --recursive
- sudo apt-get update -qq
- sudo apt-get install python-software-properties python g++ make
- echo 'yes' | sudo add-apt-repository ppa:chris-lea/node.js
- sudo apt-get update -qq
- sudo apt-get install nodejs sqlite3
... | language: ruby
rvm:
- 1.9.3
before_install:
- sudo apt-get update -qq
- sudo apt-get install python-software-properties python g++ make
- echo 'yes' | sudo add-apt-repository ppa:chris-lea/node.js
- sudo apt-get update -qq
- sudo apt-get install nodejs sqlite3
- sudo apt-get install libicu-dev build-esse... | Revert "Run "git submodule update". | Revert "Run "git submodule update".
Travis already takes care of git submodule initialisation,
therfore we revert the commit.
The problem was caused due to the fact that cloning the git
upstream repository with git:// instead of using https://
fails.
This reverts commit 253dcba6bfd11cc7884158c94911948cd65b38af.
| YAML | bsd-2-clause | kmerz/graveio,kmerz/graveio |
4ec89c0dcdb73461281649e4709ff7cae7e79fae | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 1.9.2
- 2.0.0
- rbx-19mode
- ruby-head
- jruby-19mode
| language: ruby
rvm:
- 1.9.3
- 1.9.2
- 2.0.0
- rbx-19mode
- ruby-head
| Revert "Add JRuby to Travis builds." | Revert "Add JRuby to Travis builds."
Ah, right, Redcarpet...
This reverts commit f31715708e369c4ecb41cafa6f06178ad15e8008.
| YAML | mit | aprescott/serif,aprescott/serif |
8de647f651cb86339b912136a12ea72673a28a3a | .travis.yml | .travis.yml | language: php
sudo: true
php:
- '5.6'
- '5.7'
- '7.0'
before_install:
# We need this because Zenfolio uses a Comodo/AddTrust certificate not trusted by default.
- echo -n | openssl s_client -connect api.zenfolio.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-cer... | language: php
sudo: true
php:
- '5.6'
- '7.0'
before_install:
# We need this because Zenfolio uses a Comodo/AddTrust certificate not trusted by default.
- echo -n | openssl s_client -connect api.zenfolio.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-certificates.... | Revert "Test against PHP 5.7 too" | Revert "Test against PHP 5.7 too"
This reverts commit a5ec41340e9e317a859aa7bb65dfbbdf30788dab.
:blush: this version didn't actually happen :blush:
| YAML | mit | lildude/phpZenfolio |
dafa61aab3c8202e68fc73a829d9fb451afd6b71 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "lts/*"
- "0.10"
| language: node_js
node_js:
- "node"
- "lts/*"
| Remove requirement to build the project on an ancient version of Node.js | Remove requirement to build the project on an ancient version of Node.js
Node.js v0.10.x is completely out of date and there is no need to be able to build the project with it anymore.
| YAML | mit | Kashoo/synctos,Kashoo/synctos |
5eb1a19b415266fff029564f1f1b0f7605dae3e5 | .travis.yml | .travis.yml | language: node_js
install:
- npm install koa
- npm install
node_js:
- "4"
- "5"
| language: node_js
install:
- npm install koa
- npm install
node_js:
- "4"
- "6"
- "8"
| Test on node 6 and 8 | Test on node 6 and 8
| YAML | mit | simonratner/koa-acme |
a665165873d81affd29306a2e50ae592f5dc134c | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
addons:
code_climate:
repo_token: fe7b3d07aa0eaf8102bccfbaac456cd2f1d8696365d0dc306090d889bf632a47
| before_install:
- sudo apt-get install libhunspell-dev hunspell-en-us
- gem install ffi rubygems-tasks rspec yard
language: ruby
rvm:
- 2.1.1
addons:
code_climate:
repo_token: fe7b3d07aa0eaf8102bccfbaac456cd2f1d8696365d0dc306090d889bf632a47
| Install hunspell on Travis before build. | Install hunspell on Travis before build.
| YAML | mit | hale/rails_nlp |
eb9977ae2312309c3e3df34b9f3cf54cd7ce031d | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
# - 1.8.7
- 1.9.3
- 2.0.0
# - jruby-18mode
- jruby-19mode
# - rbx-18mode
- rbx-19mode
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
# - 1.8.7
- 1.9.3
- 2.0.0
# - jruby-18mode
- jruby-19mode-1.7.4
# - rbx-18mode
- rbx-19mode
| Use JRuby 1.7.4 for CI. | Use JRuby 1.7.4 for CI.
| YAML | unlicense | ruby-rdf/rdf-turtle |
7c23567183357eefe685cd8adfdfa9e41dc371d2 | .travis.yml | .travis.yml | language: android
android:
components:
# Use the latest revision of Android SDK Tools
- tools
- platform-tools
# The BuildTools version used by your project
- build-tools-23.0.2
# The SDK version used to compile your project
- android-23
# For AppCompat
- extra
before_cach... | language: android
android:
components:
# Use the latest revision of Android SDK Tools
- tools
- platform-tools
# The BuildTools version used by your project
- build-tools-23.0.2
# The SDK version used to compile your project
- android-23
# For AppCompat
- extra
before_inst... | Install protoc (protobuf compiler) in Travis | Install protoc (protobuf compiler) in Travis | YAML | mit | dasfoo/rover-android-client |
6929db072f3ff3ad6a66dd98f3acd26c912527aa | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.1
cache: bundler
before_script:
- cd spec/dummy && bundle exec rake db:create db:migrate db:test:prepare
sudo: false
| language: ruby
rvm:
- 2.3.1
cache: bundler
before_script:
- cd spec/dummy && bundle exec rake db:create db:migrate db:test:prepare
script: bundle exec rspec
sudo: false
| Use bundle exec all the way through | Use bundle exec all the way through
Avoid activating multiple `rake`s
| YAML | mit | G5/jsonapi-resources-matchers,G5/jsonapi-resources-matchers,G5/jsonapi-resources-matchers,G5/jsonapi-resources-matchers |
f5f94ebfcfedf704826c8ea5be315c8a726771e1 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 4 on Travis CI. | Test with latest Node.js 4 on Travis CI.
| YAML | mit | bigeasy/interrupt |
1004ece2a9f5f8ed5b345e6d6a002deb681127f8 | .travis.yml | .travis.yml | language: cpp
compiler:
- g++
- clang++
os:
- linux
- osx
before_install:
- if [ "$CXX" == "g++" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
- if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y ppa:h-rayflood/llvm; fi
- sudo apt-get update -qq
install:
# For m4
- su... | language: cpp
compiler:
- g++
- clang++
os:
- linux
- osx
before_install:
- if [ "$CXX" == "g++" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
- if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y ppa:h-rayflood/llvm; fi
- sudo apt-get update -qq
install:
# For m4
- su... | Fix Makefile.am for building pacakge requiring package | Fix Makefile.am for building pacakge requiring package
| YAML | lgpl-2.1 | Hiroyuki-Nagata/JaneClone,Hiroyuki-Nagata/JaneClone,Hiroyuki-Nagata/JaneClone,Hiroyuki-Nagata/JaneClone,Hiroyuki-Nagata/JaneClone,Hiroyuki-Nagata/JaneClone,Hiroyuki-Nagata/JaneClone |
26c33fff45552f83ccb7acc079bfc6b9eff8bcb7 | .travis.yml | .travis.yml | language: haskell
ghc: 7.8
script:
- cabal configure --enable-tests --enable-library-coverage -v2 && cabal build && cabal test
after_script:
- cabal install hpc-coveralls
- hpc-coveralls --exclude-dir=tests tests
notifications:
email: true
deploy:
provider: releases
file:
- dist/build/docgen/docgen
... | language: haskell
ghc: 7.8
script:
- cabal configure --enable-tests --enable-library-coverage -v2 && cabal build && cabal test
after_script:
- cabal install hpc-coveralls
- hpc-coveralls --exclude-dir=tests tests
notifications:
email: true
deploy:
provider: releases
api_key: $RELEASE_KEY
file:
- dist/... | Use environment variable for OAuth token | Use environment variable for OAuth token
| YAML | mit | michaelficarra/purescript,michaelficarra/purescript |
9ff260c2ead2b0330b519df13774c3633f1b3b2d | .travis.yml | .travis.yml | sudo: false
language: python
dist: trusty
python:
- "2.7"
after_success:
- codecov
virtualenv:
system_site_packages: true
install:
- pip install -r requirements.txt
- pip install --editable .
- pip install codecov pytest-cov click ipaddress humanize falcon
script:
- py.test --cov-report xml --cov=certidud... | sudo: false
language: python
dist: trusty
python:
- "2.7"
after_success:
- codecov
virtualenv:
system_site_packages: true
install:
- pip install -r requirements.txt
- pip install --editable .
- pip install codecov pytest-cov click ipaddress humanize falcon simplepam
script:
- py.test --cov-report xml --co... | Add simplepam as dependency for Travis | Add simplepam as dependency for Travis
| YAML | mit | laurivosandi/certidude,plaes/certidude,laurivosandi/certidude,plaes/certidude,plaes/certidude,plaes/certidude,laurivosandi/certidude,laurivosandi/certidude |
53cd0615d3b8375e131307de62f43b268caac4c3 | .travis.yml | .travis.yml | sudo: true
language: python
python: 3.5
cache:
apt: true
addons:
apt_packages:
- sqlite3
env:
matrix:
- ENV=py27-django111
- ENV=py35-django111
- ENV=py35-django20
- ENV=py35-django21
- ENV=py35-django22
- ENV=py36-django111
- ENV=py36-django20
- ENV=py36-django21
- E... | sudo: true
language: python
cache:
apt: true
addons:
apt_packages:
- sqlite3
matrix:
include:
- env: ENV=py27-django111
python: 2.7
- env: ENV=py34-django111
python: 3.4
sudo: false
dist: trusty
- env: ENV=py34-django20
python: 3.4
sudo: false
dist: t... | Move all matrices to matrix > include and always specify python version | Travis: Move all matrices to matrix > include and always specify python version
| YAML | mit | 5monkeys/django-enumfield |
d9ce8e52502159e358b2078d1ac1f71b156075a8 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit
| language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit
| Remove PHP 5.3 from testing | Remove PHP 5.3 from testing | YAML | mit | chay22/RecSelMeter |
6bc1539f95e879bb87c276ed7634af9a2f173a93 | .travis.yml | .travis.yml | sudo: false
language: python
cache: pip
python:
- 2.7
- 3.6
cache:
- pip
install:
- pip install -r requirements.txt
script:
- make test
after_success:
- coveralls
| sudo: false
language: python
cache: pip
python:
- 2.7
- 3.6
- 3.7-dev
cache:
- pip
install:
- pip install -r requirements.txt
script:
- make test
after_success:
- coveralls
| Test Python 3.7 on Travis | Test Python 3.7 on Travis
| YAML | mit | pastpages/savepagenow |
13e57998cff8f7821a5569c51f656870a30fb955 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "stable"
- "0.12"
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
sudo: false
node_js:
- "stable"
- "4.2"
- "0.12"
- "0.10"
before_script:
- npm install -g grunt-cli
| Test on Node.js 4.2 LTS | Test on Node.js 4.2 LTS
| YAML | mit | rakuten-frontend/generator-rff,rakuten-frontend/generator-rff |
8e13c9b1ea3458233452aff85531bef2fd802c74 | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
matrix:
include:
- rvm: 1.9.3
- rvm: 2.0.0
- rvm: ruby-head
- rvm: rbx-19mode
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
e... | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- rbx-19mode
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_... | Move normal ruby versions back to the rvm section | Move normal ruby versions back to the rvm section
* Without this change travis does another 1.9.3 run
| YAML | mit | backus/mutest,nepalez/mutant,tjchambers/mutant,backus/mutant,kbrock/mutant,backus/mutest |
6130d947265115e8325e0b30a7b0d8f4147683fb | .travis.yml | .travis.yml | language: java
jdk: oraclejdk7
script: mvn clean verify -U -B -fae
branches:
only:
- mavenbuild
| language: java
jdk: oraclejdk7
script: mvn clean verify -U -B -fae -DskipTests
branches:
only:
- mavenbuild
| Revert to build without tests | Revert to build without tests
| YAML | apache-2.0 | imazen/folioxml,imazen/folioxml |
dd5cd3be902bb0f0fb8c2663f76f0271dff7af1f | .travis.yml | .travis.yml | sudo: false
language: php
dist: trusty
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer require satooshi/php-coveralls:1.* squizlabs/php_codesniffer:2.* -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" == '7.1' ]]; then composer require phpstan/phpstan:^0... | sudo: false
language: php
dist: trusty
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.6' ]]; then composer require satooshi/php-coveralls:1.* squizlabs/php_codesniffer:2.* -n ; fi
- if [[ "$TRAVIS_PHP_VERSION" == '7.1' ]]; then composer require phpstan/phpstan:^0... | Allow phpstan failure (for now) | Allow phpstan failure (for now)
| YAML | mit | akrabat/Slim,juliangut/Slim |
a71373a33e164cb11d6736416dcca157930d50d8 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: generic
env:
global:
- "BUILD_NUMBER=$TRAVIS_BUILD_NUMBER"
- "BUILD_DIR=$TRAVIS_BUILD_DIR"
- "TRAVIS_MSBUILD_MODE=framework"
- "TRAVIS_MSBUILD=./travis-msbuild"
- "TRAVIS_MSBUILD_BIN=$TRAVIS_MSBUILD/bin"
- "TRAVIS_MSBUILD_FRAMEWOR... | sudo: false
dist: trusty
language: csharp
env:
global:
- "BUILD_NUMBER=$TRAVIS_BUILD_NUMBER"
- "BUILD_DIR=$TRAVIS_BUILD_DIR"
script:
- xbuild /p:Configuration=Release
| Revert Travis from msbuild to xbuild as msbuild helper needs update | Revert Travis from msbuild to xbuild as msbuild helper needs update
| YAML | mit | YLMAPI/YLMAPI |
012e94bc07f3464f4fad1d8625e744106d1152b2 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- '4'
- '5'
- '6'
install: true
env:
- TYPECHECK=.
- TYPECHECK=scripts/babel-relay-plugin
- TEST=.
- TEST=scripts/babel-relay-plugin
script:
- |
if [ $TYPECHECK ]; then
cd $TYPECHECK && npm install && npm run typecheck
fi
if [ $TEST ]; then
cd $TEST && npm install ... | ---
language: node_js
node_js:
- '4'
- '5'
- '6'
install: true
env:
- TEST=.
- TEST=scripts/babel-relay-plugin
- TYPECHECK=.
- TYPECHECK=scripts/babel-relay-plugin
script:
- |
if [ $TEST ]; then
cd $TEST && npm install && npm run jest -- --runInBand --no-watchman
fi
- |
if [ $TYPECHECK ]; then
c... | Split scripts into two so Travis can aggregate error codes more easily | Split scripts into two so Travis can aggregate error codes more easily
Summary: Closes https://github.com/facebook/relay/pull/1182
Differential Revision: D3361786
Pulled By: steveluscher
fbshipit-source-id: 29ae0b56ac9e11ea4560380df9e756b7c5aeef15
| YAML | mit | gabelevi/relay,xuorig/relay,atxwebs/relay,xuorig/relay,wincent/relay,facebook/relay,apalm/relay,gabelevi/relay,yungsters/relay,dbslone/relay,gabelevi/relay,apalm/relay,iamchenxin/relay,chirag04/relay,benjaminogles/relay,apalm/relay,wincent/relay,atxwebs/relay,voideanvalue/relay,cpojer/relay,kassens/relay,chentsulin/rel... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.