commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266 values | license stringclasses 13 values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
c043b1c20c8f7d088b9ce54278803b22c0bef1f4 | .travis.yml | .travis.yml | language: php
sudo: false
# As of 2017-07-18 trusty is progressively replacing the default of precise.
# Until 2017-09-01, let's use this new default explicitly already.
# https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming
dist: trusty
matrix:
include:
- php: 5.3
dist: precise
env: AUTOLOAD=1
- php: 5.3
dist: precise
env: AUTOLOAD=0
- php: 5.4
env: AUTOLOAD=1
- php: 5.4
env: AUTOLOAD=0
- php: 5.5
env: AUTOLOAD=1
- php: 5.5
env: AUTOLOAD=0
- php: 5.6
env: AUTOLOAD=1
- php: 5.6
env: AUTOLOAD=0
- php: 7.0
env: AUTOLOAD=1
- php: 7.0
env: AUTOLOAD=0
- php: 7.1
env: AUTOLOAD=1
- php: 7.1
env: AUTOLOAD=0
- php: 7.2
env: AUTOLOAD=1
- php: 7.2
env: AUTOLOAD=0
- php: 7.3
env: AUTOLOAD=1
- php: 7.3
env: AUTOLOAD=0
cache:
directories:
- $HOME/.composer/cache/files
script: ./test
after_script: ./vendor/bin/coveralls -v
| language: php
sudo: false
# As of 2017-07-18 trusty is progressively replacing the default of precise.
# Until 2017-09-01, let's use this new default explicitly already.
# https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming
dist: trusty
matrix:
include:
- php: 5.3
dist: precise
env: AUTOLOAD=1
- php: 5.3
dist: precise
env: AUTOLOAD=0
- php: 5.4
env: AUTOLOAD=1
- php: 5.4
env: AUTOLOAD=0
- php: 5.5
env: AUTOLOAD=1
- php: 5.5
env: AUTOLOAD=0
- php: 5.6
env: AUTOLOAD=1
- php: 5.6
env: AUTOLOAD=0
- php: 7.0
env: AUTOLOAD=1
- php: 7.0
env: AUTOLOAD=0
- php: 7.1
env: AUTOLOAD=1
- php: 7.1
env: AUTOLOAD=0
cache:
directories:
- $HOME/.composer/cache/files
script: ./test
after_script: ./vendor/bin/coveralls -v
| Revert "Add PHP 7.2 and 7.3 to Travis" | Revert "Add PHP 7.2 and 7.3 to Travis"
This reverts commit df1d3f0c0077fd727a33c965ba3bd50fc6ffc8ff.
| YAML | apache-2.0 | wonderpush/wonderpush-php-lib,wonderpush/wonderpush-php-lib |
e30327521adc43c78e88a32b52db3c0c77089c96 | .travis.yml | .travis.yml | language: php
before_script: composer install --dev
php:
- 5.4
- 5.3 | language: php
before_script: composer install --dev
php:
- 5.6
- 5.5
- 5.4
- 5.3 | Add more PHP version to PHPUnit | Add more PHP version to PHPUnit
| YAML | mit | mbilbille/jpnforphp |
790a027362197daea42c7dd60e30979684859c88 | .travis.yml | .travis.yml | language: python
python:
- 2.7
install:
- pip install requests markdown beautifulsoup4
script:
- python check_urls.py free-software-testing-books-ru.md
- python check_urls.py free-software-testing-books.md
notifications:
email:
recipients:
- estetus+travis-ci@gmail.com
on_success: change
on_failure: always
| language: python
python:
- "2.7"
- "3.6"
matrix:
allow_failures:
- python: "3.6"
install:
- pip install requests markdown beautifulsoup4 flake8
before_script:
# stop the build if there are Python syntax errors or undefined names
- time flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- time flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
- python check_urls.py free-software-testing-books-ru.md
- python check_urls.py free-software-testing-books.md
notifications:
email:
recipients:
- estetus+travis-ci@gmail.com
on_success: change
on_failure: always
| Test in both Python 2 and 3 with flake8 tests also | Test in both Python 2 and 3 with flake8 tests also | YAML | unlicense | ligurio/free-software-testing-books |
9e14d837fd15a4d5b752b62db0788c956190d3ab | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
- 3.5
install:
- pip install .
- pip install pylint
- pip install coveralls
- pip install coverage
before_install:
- wget http://aphyr.com/riemann/riemann_0.2.6_all.deb
- sudo apt-get update
- sudo apt-get install openjdk-7-jre
- sudo dpkg -i riemann_0.2.6_all.deb
- sudo /etc/init.d/riemann start
script:
- coverage run --source=duct `which trial` duct
- pylint duct
- coverage report
after_success:
- coveralls
after_script:
- sudo /etc/init.d/riemann stop
| language: python
python:
- 2.7
- 3.4
- 3.5
install:
- pip install -e .
- pip install pylint
- pip install coveralls
- pip install coverage
before_install:
- wget http://aphyr.com/riemann/riemann_0.2.6_all.deb
- sudo apt-get update
- sudo apt-get install openjdk-7-jre
- sudo dpkg -i riemann_0.2.6_all.deb
- sudo /etc/init.d/riemann start
script:
- coverage run --source=duct `which trial` duct
- pylint duct
after_success:
- coveralls
after_script:
- sudo /etc/init.d/riemann stop
| Install duct as an external | Install duct as an external
| YAML | mit | ducted/duct,ducted/duct,ducted/duct,ducted/duct |
4e44ce8e4c608105c1bda295f4ef2fbd29e7908a | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
before_script:
- npm install -g grunt-cli
- npm update -g npm | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
before_install:
- npm update -g npm
before_script:
- npm install -g grunt-cli | Update npm in before_install instead of before_script | Update npm in before_install instead of before_script
| YAML | mit | Jaglag/hubot-irc,Spice-King/hubot-irc,miyazakijunichi/hubot-irc,miyazakijunichi/hubot-irc,BenoitZugmeyer/hubot-irc,Jaglag/hubot-irc,Spice-King/hubot-irc,nandub/hubot-irc,nandub/hubot-irc,BenoitZugmeyer/hubot-irc |
601aa0ef30a49b98b8fa39ab2ec2ad6d02c951d3 | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- node_modules
os:
- linux
before_install:
# Use a virtual display.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# Install latest chrome.
- export CHROME_BIN=chromium-browser
- npm install -g npm@5.0.4
install:
- npm install
script:
- npm run lint
- npm run test
- npm run integration | dist: trusty
sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- node_modules
os:
- linux
before_install:
# Use a virtual display.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# Install latest chrome.
- export CHROME_BIN=chromium-browser
- npm install -g npm@5.0.4
install:
- npm install
script:
- npm run lint
- npm run test | Remove integration tests for now | Remove integration tests for now
| YAML | mit | ng-select/ng-select,ng-select/ng-select,ng-select/ng-select,ng-select/ng-select |
4679b775844f1443414616d9d6a990e0d9e81117 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "1.2"
after_success: npm run coveralls
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "iojs"
after_success: npm run coveralls
| Test io.js instead of a specific version | Test io.js instead of a specific version
| YAML | mit | jstransformers/jstransformer-cdata-js |
031ff6fb2c7cd53f752ffeae3e676d01ebc1e175 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
notifications:
email:
- yakov@therocketsurgeon.com
| language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
notifications:
email:
- yakov@therocketsurgeon.com
| Add more node versions to Travis CI config | Add more node versions to Travis CI config
| YAML | mit | yakovkhalinsky/backblaze-b2 |
9219251c91bd2826835d7dee8644c2ddc7c22290 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "2.6"
- "3.3"
env:
- DJANGO=django==1.4.9
- DJANGO=django==1.5.5
- DJANGO=https://github.com/django/django/archive/stable/1.6.x.zip
install:
- psql -c 'CREATE DATABASE orderable' -U postgres;
- pip install $DJANGO --use-mirrors
- pip install -r requirements.txt
- pip install -e .
script: "python orderable/tests/run.py"
notifications:
email: false
matrix:
exclude:
- python: "3.3"
env: DJANGO=django==1.4.9
| language: python
python:
- "2.7"
- "3.3"
env:
- DJANGO=django==1.4.9
- DJANGO=https://github.com/django/django/archive/stable/1.6.x.zip
install:
- psql -c 'CREATE DATABASE orderable' -U postgres;
- pip install $DJANGO --use-mirrors
- pip install -r requirements.txt
- pip install -e .
script: "python orderable/tests/run.py"
notifications:
email: false
matrix:
exclude:
- python: "3.3"
env: DJANGO=django==1.4.9
| Drop support for unsupported django and python | Drop support for unsupported django and python
| YAML | bsd-2-clause | incuna/django-orderable,incuna/django-orderable |
4f3882816b3034512b73019dbe17714fe242327f | .travis.yml | .travis.yml | env:
- CABALVER=1.20 GHCVER=7.8.4 HAPPYVER=1.19.5 ALEXVER=3.1.4
before_install:
- travis_retry sudo apt-add-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER happy-$HAPPYVER alex-$ALEXVER
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:/opt/happy/$HAPPYVER/bin:/opt/alex/$ALEXVER/bin:$PATH
before_script:
- psql -c 'create database betty_test;' -U postgres
install:
- cabal --version
- ghc --version
- happy --version
- alex --version
- travis_retry cabal update
- cp secrets.m4.example secrets.m4
- make
- cabal update
- cabal sandbox init
- cabal install yesod-bin
- export PATH=$(pwd)/.cabal-sandbox/bin:$PATH
- cabal install --enable-tests --reorder-goals --max-backjumps=-1 -j
- ls $(pwd)/.cabal-sandbox/bin
- yesod test
| env:
- CABALVER=1.20 GHCVER=7.8.4 HAPPYVER=1.19.5 ALEXVER=3.1.4
addons:
postgresql: "9.3"
before_install:
- travis_retry sudo apt-add-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get install cabal-install-$CABALVER ghc-$GHCVER happy-$HAPPYVER alex-$ALEXVER
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:/opt/happy/$HAPPYVER/bin:/opt/alex/$ALEXVER/bin:$PATH
before_script:
- psql -c 'create database betty_test;' -U postgres
install:
- cabal --version
- ghc --version
- happy --version
- alex --version
- travis_retry cabal update
- cp secrets.m4.example secrets.m4
- make
- cabal update
- cabal sandbox init
- cabal install yesod-bin
- export PATH=$(pwd)/.cabal-sandbox/bin:$PATH
- cabal install --enable-tests --reorder-goals --max-backjumps=-1 -j
- ls $(pwd)/.cabal-sandbox/bin
- yesod test
| Use PostgreSQL 9.3 in Travis CI. | Use PostgreSQL 9.3 in Travis CI.
| YAML | agpl-3.0 | sajith/betty-web |
f039dccd9d4328fdadaaaba03bb5613560632e7b | .travis.yml | .travis.yml | language: android
android:
components:
# The BuildTools version used by your project
- build-tools-23.0.3
- platform-tools
- tools
# The SDK version used to compile your project
- android-23
# Additional components
- extra-android-m2repository
- extra-android-support
- extra-google-google_play_services
- extra-google-m2repository
script:
./gradlew build check | language: android
android:
components:
# The BuildTools version used by your project
- tools
- platform-tools
- build-tools-23.0.3
# The SDK version used to compile your project
- android-23
# Additional components
- extra-android-m2repository
- extra-android-support
- extra-google-google_play_services
- extra-google-m2repository
script:
./gradlew build check | Fix Travis CI component installation order. | Fix Travis CI component installation order.
| YAML | mit | msimonides/homerplayer |
d82e0bc5ff12617d0ae9e821fedd18ac621a9ab8 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: java
jdk: oraclejdk9
script:
- ./build.jsh
after_success:
- cd demo/00-bootstrap & ./bootstrap.jsh & cd -
- cd demo/01-hello-world & ./build-01-hello-world.jsh & cd -
| sudo: false
dist: trusty
language: java
jdk: oraclejdk9
script:
- ./build.jsh
after_success:
- cd demo/00-bootstrap
- ./bootstrap.jsh
- cd -
- cd demo/01-hello-world
- ./build-01-hello-world.jsh
- cd -
| Split demo commands into a single command per line | Split demo commands into a single command per line
| YAML | mit | sormuras/bach,sormuras/bach |
949444445c09686ec991955810ee808b1bf0de34 | .travis.yml | .travis.yml | cache:
- bundler
notifications:
email:
- dalibor.nasevic@gmail.com
before_script:
- cp spec/support/config.yml.travis spec/support/config.yml
- bundle exec rake db:create
script:
- bundle exec rspec spec
matrix:
include:
- gemfile: gemfiles/rails3.0.gemfile
rvm: 2.2.2
- gemfile: gemfiles/rails3.1.gemfile
rvm: 2.2.2
- gemfile: gemfiles/rails3.2.gemfile
rvm: 2.2.2
- gemfile: gemfiles/rails4.0.gemfile
rvm: 2.3.5
- gemfile: gemfiles/rails4.1.gemfile
rvm: 2.3.5
- gemfile: gemfiles/rails4.2.gemfile
rvm: 2.4.2
- gemfile: gemfiles/rails5.0.gemfile
rvm: 2.4.2
- gemfile: gemfiles/rails5.1.gemfile
rvm: 2.5.2
- gemfile: gemfiles/rails5.2.gemfile
rvm: 2.5.2
- gemfile: gemfiles/rails6.0.gemfile
rvm: 2.6.2
| cache:
- bundler
services:
- mysql
notifications:
email:
- dalibor.nasevic@gmail.com
before_script:
- cp spec/support/config.yml.travis spec/support/config.yml
- bundle exec rake db:create
script:
- bundle exec rspec spec
matrix:
include:
- gemfile: gemfiles/rails3.0.gemfile
rvm: 2.2.2
- gemfile: gemfiles/rails3.1.gemfile
rvm: 2.2.2
- gemfile: gemfiles/rails3.2.gemfile
rvm: 2.2.2
- gemfile: gemfiles/rails4.0.gemfile
rvm: 2.3.5
- gemfile: gemfiles/rails4.1.gemfile
rvm: 2.3.5
- gemfile: gemfiles/rails4.2.gemfile
rvm: 2.4.2
- gemfile: gemfiles/rails5.0.gemfile
rvm: 2.4.2
- gemfile: gemfiles/rails5.1.gemfile
rvm: 2.5.2
- gemfile: gemfiles/rails5.2.gemfile
rvm: 2.5.2
- gemfile: gemfiles/rails6.0.gemfile
rvm: 2.6.2
| Add mysql service to Travis | Add mysql service to Travis
| YAML | mit | dalibor/octoshark |
96dc6e9fbba8dfc4654c3ebe45f3b939f8f1279c | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 5.6
- 5.5
- 5.4
- hhvm
- hhvm-nightly
- nightly
matrix:
allow_failures:
- php: hhvm-nightly
- php: nightly
before_script:
- composer selfupdate
- composer update --no-interaction --prefer-dist
script:
- ./vendor/phpunit/phpunit/phpunit -v
| language: php
php:
- 7.0
- 5.6
- 5.5
- 5.4
- hhvm
- hhvm-nightly
- nightly
matrix:
allow_failures:
- php: hhvm-nightly
- php: nightly
before_script:
- if [[ $TRAVIS_PHP_VERSION =~ ^php ]]; then phpenv config-rm xdebug.ini; fi
- composer selfupdate
- composer update --no-interaction --prefer-dist
script:
- ./vendor/phpunit/phpunit/phpunit -v
| Test by Travis CI is ran without slowing XDebug | Test by Travis CI is ran without slowing XDebug
| YAML | mit | jaroslavtyc/granam-boolean |
07c98429dbfc0672330faa90e2857edcca763095 | .travis.yml | .travis.yml | language: haskell
install:
- cabal install attoparsec-0.11.3.4
- cabal install scientific-0.2.0.2
- cabal install syb-0.3.7
- cabal install
- sudo ln -s ~/.cabal/bin/elm /usr/local/bin/elm
- sudo ln -s ~/.cabal/bin/elm-io /usr/local/bin/elm-io
- npm install jsdom
before_script: elm-io test/Test.elm test.js
script: echo "exit" | node test.js > /dev/null
| language: haskell
install:
- echo $PATH
- git clone https://github.com/elm-lang/Elm.git
- cabal sandbox init
- cabal sandbox add-source Elm
- cabal install
- sudo cp .cabal-sandbox/bin/elm /usr/local/bin/elm
- sudo cp .cabal-sandbox/bin/elm-io /usr/local/bin/elm-io
- npm install jsdom
before_script: elm-io test/Test.elm test.js
script: echo "exit" | node test.js > /dev/null
| Use elm master branch HEAD in Travis | Use elm master branch HEAD in Travis
| YAML | bsd-3-clause | maxsnew/IO,laszlopandy/elm-console,joefiorini/IO,boxdot/elm-console,joefiorini/IO,laszlopandy/elm-console,boxdot/elm-console,maxsnew/IO |
58344337d77700020e73035978b89d96ea69dbfb | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: php
php:
- 5.6
- 7.0
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
cache:
directories:
- $HOME/.composer/cache/files
services:
- mongodb
- mysql
- postgresql
before_script:
- tests/travis.sh
script:
- php vendor/bin/phpunit -v
- php vendor/bin/phpunit --group functional -v
- php vendor/bin/phpspec run
| sudo: false
dist: trusty
language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
cache:
directories:
- $HOME/.composer/cache/files
services:
- mongodb
- mysql
- postgresql
before_script:
- tests/travis.sh
script:
- php vendor/bin/phpunit -v
- php vendor/bin/phpunit --group functional -v
- php vendor/bin/phpspec run
| Add builds for PHP 7.x | Add builds for PHP 7.x
| YAML | mit | bernardphp/bernard |
7bb32654f1c4d0316e9f89161a95583333a3a66f | .travis.yml | .travis.yml | env:
global:
- CC_TEST_REPORTER_ID=5277591d84f5c6cc34ed2c38e410185c2ba6018d1de1461de19c13ab3dfd2cfa
language: ruby
rvm:
- 2.3.1
- 2.2.5
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- bundle exec rspec
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| env:
global:
- CC_TEST_REPORTER_ID=5277591d84f5c6cc34ed2c38e410185c2ba6018d1de1461de19c13ab3dfd2cfa
language: ruby
rvm:
- 2.3.8
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- bundle exec rspec
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| Remove support for ruby version 2.2.x | Remove support for ruby version 2.2.x
| YAML | mit | philou/rspecproxies |
954000255791e01b1e71fd61e6c1c946ff82d3df | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.6
- 3.7
sudo: false
dist: trusty
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
env:
- DJANGO_VERSION=1.8.18 DB=SQLite
- DJANGO_VERSION=1.11.10 DB=SQLite
- DJANGO_VERSION=1.8.18 DB=Postgres
- DJANGO_VERSION=1.11.10 DB=Postgres
services:
– postgresql
install:
- pip install -r requirements.txt
- pip install -q flake8
- pip install -q psycopg2
- pip install -q --pre Django==$DJANGO_VERSION
- python setup.py install
before_script:
- wget "http://chromedriver.storage.googleapis.com/2.35/chromedriver_linux64.zip"
- unzip chromedriver_linux64.zip
- sudo mv chromedriver /usr/local/bin
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- psql -c 'create database travis_ci_test;' -U postgres
- psql -c 'create database robotframework;' -U postgres
# - django-admin startproject mysite
script:
- flake8 DjangoLibrary
- py.test mysite
- pybot DjangoLibrary/tests/
| language: python
python:
- 2.7
- 3.6
sudo: false
dist: trusty
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
env:
- DJANGO_VERSION=1.8.18 DB=SQLite
- DJANGO_VERSION=1.11.10 DB=SQLite
- DJANGO_VERSION=1.8.18 DB=Postgres
- DJANGO_VERSION=1.11.10 DB=Postgres
services:
– postgresql
install:
- pip install -r requirements.txt
- pip install -q flake8
- pip install -q psycopg2
- pip install -q --pre Django==$DJANGO_VERSION
- python setup.py install
before_script:
- wget "http://chromedriver.storage.googleapis.com/2.35/chromedriver_linux64.zip"
- unzip chromedriver_linux64.zip
- sudo mv chromedriver /usr/local/bin
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- psql -c 'create database travis_ci_test;' -U postgres
- psql -c 'create database robotframework;' -U postgres
# - django-admin startproject mysite
script:
- flake8 DjangoLibrary
- py.test mysite
- pybot DjangoLibrary/tests/
| Revert "Run tests against Python 3.7 on Travis." | Revert "Run tests against Python 3.7 on Travis."
This reverts commit 0ee74e07bf833aaea085555db647eb2a5e827bff.
| YAML | apache-2.0 | kitconcept/robotframework-djangolibrary |
ff3b69b06c75d6aace67a9a969f028b3eeadf308 | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
install:
- travis_retry composer install --no-interaction --prefer-source
- if [[ "$TRAVIS_PHP_VERSION" == hhvm* ]]; then echo -e '\nhhvm.libxml.ext_entity_whitelist = "file"' | sudo tee -a /etc/hhvm/php.ini; fi
script:
- ./phpunit
- ./phpunit --configuration ./build/travis-ci-fail.xml > /dev/null; if [ $? -eq 0 ]; then echo "SHOULD FAIL"; exit 1; else echo "fail checked"; fi;
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/6668f52f3dd4e3f81960
on_success: always
on_failure: always
on_start: false
| sudo: false
language: php
cache:
directories:
- vendor
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
install:
- travis_retry composer install --no-interaction --prefer-source
- if [[ "$TRAVIS_PHP_VERSION" == hhvm* ]]; then echo -e '\nhhvm.libxml.ext_entity_whitelist = "file"' | sudo tee -a /etc/hhvm/php.ini; fi
script:
- ./phpunit
- ./phpunit --configuration ./build/travis-ci-fail.xml > /dev/null; if [ $? -eq 0 ]; then echo "SHOULD FAIL"; exit 1; else echo "fail checked"; fi;
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/6668f52f3dd4e3f81960
on_success: always
on_failure: always
on_start: false
| Configure Travis for faster builds | [TASK] Configure Travis for faster builds
* set sudo: false to allow Travis to use their new and faster
container-based infrastructure
* cache the Composer packages between builds
| YAML | bsd-3-clause | kyale/phpunit,chrisbjr/phpunit,s001dxp/phpunit,HappyRay/phpunit,m157y/phpunit,nonconforme/phpunit,CarsonF/phpunit,DonaldKellett/phpunit,Maks3w/phpunit,duncan3dc/phpunit,sebastianbergmann/phpunit,giorgiosironi/phpunit,eelf/phpunit,Shaked/phpunit,Lance0312/phpunit,dshafik/phpunit,malkusch/phpunit,masarakki/phpunit,imshibaji/phpunit,Firehed/phpunit,darol100/phpunit,lcp0578/phpunit,zhaoyan158567/phpunit,abachi/phpunit,WebSeed/phpunit,tronsha/phpunit,matheusgomes17/phpunit,MartinhoOmura/phpunit,Ma27/phpunit,SunDrop/phpunit,beealone/phpunit,asgrim/phpunit,luomor/phpunit,9040044/phpunit,nelson6e65/phpunit,stof/phpunit,ya7lelkom/phpunit,OndraM/phpunit,serbanghita/phpunit,bradgrohs/phpunit,ezzatron/phpunit,FireWalkerX/phpunit,didiwuliu/phpunit,simohammedhttp/phpunit,abacaphiliac/phpunit,MajorCaiger/phpunit |
419c88218378cb649b9aa67b2ca7cecc4cfc846c | .travis.yml | .travis.yml | language: php
php:
- 7.2
- 7.3
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer update --no-interaction --prefer-dist
script:
- if [ $(phpenv version-name) == "7.1" ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; else vendor/bin/phpunit --no-coverage; fi
after_script:
- if [ $(phpenv version-name) == "7.1" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ $(phpenv version-name) == "7.1" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
matrix:
allow_failures:
- php: 7.2
| language: php
php:
- 7.2
- 7.3
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer update --no-interaction --prefer-dist
script:
- if [ $(phpenv version-name) == "7.1" ]; then vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover; else vendor/bin/phpunit --no-coverage; fi
after_script:
- if [ $(phpenv version-name) == "7.3" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi
- if [ $(phpenv version-name) == "7.3" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
matrix:
allow_failures:
- php: 7.2
| Fix coverage runs, use a used php version | Fix coverage runs, use a used php version
| YAML | mit | nWidart/laravel-modules |
f91dd43bb1e576672bf19f40a9cd1b087b18189a | .travis.yml | .travis.yml | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
| # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
| Use the pre-release builds of chefdk | Use the pre-release builds of chefdk
| YAML | apache-2.0 | chef-cookbooks/remote_install,opscode-cookbooks/remote_install |
1979e99838ad1674d8c5e92a0dc19472ab819f5d | .travis.yml | .travis.yml | language: erlang
otp_release:
- 17.5
- 17.4
- 17.1
- 17.0
- R16B03-1
- R16B03
- R16B02
- R16B01
- R15B01
- R15B
script: "make eunit"
| language: erlang
otp_release:
- 18.2.1
- 18.0
- 17.5
- 17.0
- R16B03-1
- R16B01
- R15B03
- R15B01
script: "make eunit"
| Update list of OTP versions for Travis | Update list of OTP versions for Travis
| YAML | mit | selectel/tempo,selectel/tempo |
88a6de7992a7b136a5c8ea03eb3aba8483984632 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- jruby-9.1.15.0
matrix:
allow_failures:
- rvm: 2.5.0 # Fails on Travis CI as of 2017-12-25
script: bundle exec rake spec
| language: ruby
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- jruby-9.1.15.0
script: bundle exec rake spec
| Stop allowing Ruby 2.5.0 failure on CI | Stop allowing Ruby 2.5.0 failure on CI
This was a temporary measure when Ruby 2.5 first came out. It's no
longer needed, since I've verified (at least on the main Peribot
repository) that Travis CI is up to date.
| YAML | mit | ahamlinman/peribot-groupme |
38bb095496aa82a57cf6986e82dc65c12612ec02 | .travis.yml | .travis.yml | ---
sudo: false
language: ruby
rvm:
- '2.2'
- '2.1'
- '2.0'
before_install: export TZ=Europe/Berlin
before_script: bundle exec rake ci:setup
script: bundle exec rake ci:spec
| ---
sudo: false
language: ruby
rvm:
- '2.3.0'
- '2.2'
- '2.1'
- '2.0'
before_install: export TZ=Europe/Berlin
before_script: bundle exec rake ci:setup
script: bundle exec rake ci:spec
| Add Ruby 2.3.0 to CI | Add Ruby 2.3.0 to CI
| YAML | agpl-3.0 | openmensa/openmensa,openmensa/openmensa,openmensa/openmensa,openmensa/openmensa |
6ffb8de7aae454e4f26b7bbe98e27a82d59cc459 | .travis.yml | .travis.yml | bundler_args: --without development
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- rbx
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-20mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-21mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: jruby-head
- rvm: rbx
- rvm: ruby-head
fast_finish: true
| before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
bundler_args: --without development
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- rbx
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-20mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-21mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: jruby-head
- rvm: rbx
- rvm: ruby-head
fast_finish: true
| Add temporary workaround for failing build on Ruby 1.8.7 | Add temporary workaround for failing build on Ruby 1.8.7
Rubygems broke builds on Ruby 1.8.7:
https://github.com/travis-ci/travis-ci/issues/1793
https://github.com/rubygems/rubygems/pull/763
This patch is a temporary workaround until rubygems is updated.
| YAML | mit | sferik/mtgox |
ceabab3ed4c489e8837578fbfcbac822b5e3ff8e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
script: xvfb-run rake
before_install:
- echo "2.1.2" > .ruby-version
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
bundler_args: --without development production
cache: bundler
global:
- BUNDLE_JOBS=4
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
| language: ruby
rvm:
- 2.1.2
script: bundle exec xvfb-run rake
before_install:
- echo "2.1.2" > .ruby-version
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
bundler_args: --without development production
cache: bundler
global:
- BUNDLE_JOBS=4
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
| Use bundle exec when running rake | Use bundle exec when running rake
| YAML | mit | mxhold/vimperor,mxhold/vimperor |
424d2a55cc3aa4ad8ca4c9d8afd958aec41093d0 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
branches:
only:
- dev
- master
script:
- ./tests/runtests
| language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
branches:
only:
- dev
- master
script:
- ./tests/runtests
| Remove php 5.5 from test matrix | Remove php 5.5 from test matrix
| YAML | mit | schibsted/sdk-php,schibsted/sdk-php,schibsted/sdk-php |
02e757296ef79b3deb47a40bbdeab5de795e105b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3
- jruby
- rbx-3
script: bundle exec rake test
| language: ruby
rvm:
- 2.3
# - jruby
script: bundle exec rake test
| Disable (permanently) rbx and (temporarily) jruby targets for Travis. | Disable (permanently) rbx and (temporarily) jruby targets for Travis.
| YAML | mit | mtortonesi/ruby-erv |
4779d5ac65b253b006507d8e0a48ac0bede56c82 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
before_install:
- export JAVA_HOME=/usr/lib/jvm/java-8-oracle
| language: java
jdk:
- oraclejdk7
- openjdk7
- openjdk6
| Revert "Fix the build fail "JAVA_HOME is not defined correctly"" | Revert "Fix the build fail "JAVA_HOME is not defined correctly""
This reverts commit 7ffa908dc0864ce76e3c9840a0a4f91d5598ea95. The commit
has overridden the builds for several JDKs by builds with JDK 8.
| YAML | mit | mplacona/java-junit-template-project |
ce0cbac1e09850aac4ef4a3f76ae4b3efe13c6fd | .travis.yml | .travis.yml | ---
after_script:
- rake travis:after -t
before_script:
- gem install hoe-travis --no-rdoc --no-ri
- rake travis:before -t
language: ruby
notifications:
email:
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- ruby-head
script: rake travis
matrix:
allow_failures:
- rvm: ruby-head
| ---
after_script:
- rake travis:after -t
before_script:
- gem install hoe-travis --no-rdoc --no-ri
- rake travis:before -t
language: ruby
notifications:
email:
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- jruby
- ruby-head
script: rake travis
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby
| Add JRuby as allowed failure while working on fixes. | Add JRuby as allowed failure while working on fixes.
| YAML | lgpl-2.1 | tenderlove/racc,tenderlove/racc,tenderlove/racc,tenderlove/racc,tenderlove/racc |
b9e8e0bdf8a83889cac8e16c962e74dd57f50e4e | .travis.yml | .travis.yml | language: go
go:
- 1.5.1
sudo: false
script: make test
| language: go
go:
- 1.5.1
sudo: false
install:
- go get github.com/tools/godep
- godep restore
script: make unit-tests
| Update testing config for Travis CI | Update testing config for Travis CI
| YAML | apache-2.0 | mrkschan/nginxbeat,mrkschan/nginxbeat,mrkschan/nginxbeat |
e7a3d1f6098c66be57c65789aaec389cf8ea0a3a | .travis.yml | .travis.yml | language: node_js
node_js:
- stable
cache:
yarn: true
directories:
- node_modules
script:
- yarn test-with-coverage
- yarn lintjs
- yarn lintmd
- yarn build
deploy:
provider: pages
skip_cleanup: true
github_token: "$github_token"
local_dir: build
keep_history: true
on:
branch: master
notifications:
webhooks: https://www.travisbuddy.com/
| language: node_js
node_js:
- stable
cache:
yarn: true
directories:
- node_modules
script:
- yarn test-with-coverage
- yarn lintjs
- yarn lintmd
- yarn build
deploy:
provider: pages
token: $github_token
local_dir: build
edge: true #opt in dpl v2
on:
branch: master
notifications:
webhooks: https://www.travisbuddy.com/
| Switch to Travis CI dpl v2 | Switch to Travis CI dpl v2
| YAML | agpl-3.0 | nai888/langua,nai888/langua |
f9e39e7410b0177d1b4e22a560eb10cd25310c06 | .travis.yml | .travis.yml | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/bin/chef exec rake
| # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/bin/chef exec rake
| Switch back to stable ChefDK builds for testing | Switch back to stable ChefDK builds for testing
| YAML | apache-2.0 | chef-cookbooks/wix,opscode-cookbooks/wix |
60a12b82d4044cd5b0adfb0ee9c4cb6c2fe07759 | .travis.yml | .travis.yml | language: node_js # Node runs `npm install` and `npm test` automatically
node_js: node # Uses the latest version (via nvm)
| language: node_js # Node runs `npm install` and `npm test` automatically
node_js: node # Uses the latest version (via nvm)
branches:
only:
- gh-pages
- /.*/
| Test gh-pages branch on Travis | Test gh-pages branch on Travis
| YAML | agpl-3.0 | litewrite/litewrite,litewrite/litewrite |
947a5529a389a9f8d391fcfaa31db1e64b645705 | hieradata/common.yaml | hieradata/common.yaml | ---
message: "This node is using common data"
#Puppet Server Tuning
puppet_enterprise::master::puppetserver::jruby_max_requests_per_instance: 10000
#Enable code manager
puppet_enterprise::profile::master::code_manager_auto_configure: true
#pe-console-services tuning
#https://docs.puppetlabs.com/pe/latest/console_config.html#tuning-the-classifier-synchronization-period
#disable classifier scheduled sync and rely on r10k postrun command to sync the classes
puppet_enterprise::profile::console::classifier_synchronization_period: 0
| ---
message: "This node is using common data"
#Puppet Server Tuning
puppet_enterprise::master::puppetserver::jruby_max_requests_per_instance: 10000
#Enable code manager
puppet_enterprise::profile::master::code_manager_auto_configure: true
puppet_enterprise::master::code_manager::authenticate_webhook: false
#pe-console-services tuning
#https://docs.puppetlabs.com/pe/latest/console_config.html#tuning-the-classifier-synchronization-period
#disable classifier scheduled sync and rely on r10k postrun command to sync the classes
puppet_enterprise::profile::console::classifier_synchronization_period: 0
| Disable code manager webhook authentication | Disable code manager webhook authentication
| YAML | apache-2.0 | satyasaranu/control-repo,ncorrare/lhr-control-repo,rpidproject/puppet,robertmaury/SIMP_control-repo,lud97x/control-repo,raj-andy1/control-repo,pt-puppet/puppet-repo,genebean/control-repo,cdrobey/puppet-repo,nicklee76/PE-GitRepo,KirillKudriaew/control-repo,padrien33/puppet73,ajjohnsonpdx/control-repo,raj-andy1/control-repo,suckatrash/control-repo,ascott97/control_repo,ncorrare/control-repo,rpidproject/puppet,kwsoopuppetdemo/puppetmasterslice,ipcrm/pe_failover_control-repo,puppetlabs-operations/puppet-splunk-control,ncorrare/lhr-control-repo,ascott97/control_repo,zoojar/control-repo-ccc,Adjoa/control-repo,githubgossin/control-repo-cr,fvoges/rampup-control-repo-test,tom4564/Puppet-test,ncorrare/control-repo,jadedrazor/puppet_control,cargiris/puppet_sdp,tom4564/Puppet-test,ExalDraen/puppet-control-repo,drewablank/symlink,nicklee76/PE-GitRepo,pecode/control-repo,sbaryshnikov/control-repo,ljhooker/home_puppet,genebean/control-repo,Adjoa/control-repo,satyasaranu/control-repo,trlinkin/control-repo,bitfield/control-repo,nicklee76/PE-GitRepo,npwalker/control-repo,ajjohnsonpdx/control-repo,asuchocki/puppet-control-repo,puppetlabs/control-repo,LcTrKiD/personal-puppet,MWilsonPuppet/mark_control_repo,pt-puppet/puppet-repo,ljhooker/home_puppet,kwsoopuppetdemo/puppetmasterslice,raj-andy1/control-repo,AzureCAT-GSI/control-repo,sbaryshnikov/control-repo,cargiris/puppet_sdp,fvoges/rampup-control-repo-test,bitfield/control-repo,abrader/tse-repo,drewablank/symlink,suckatrash/control-repo,KirillKudriaew/control-repo,jzcmyz/control-repo,kendall-moore/kendall_control_repo,trlinkin/control-repo,puppetlabs/control-repo,jessereynolds/sensu-puppet-demo,AzureCAT-GSI/control-repo,aharden/control-repo,jadedrazor/puppet_control,githubgossin/control-repo-cr,puppetlabs-operations/puppet-splunk-control,suckatrash/control-repo,autostructure/control_repo1,kendall-moore/kendall_control_repo,MWilsonPuppet/mark_control_repo,cdrobey/puppet-repo,aoz-turk/control-repo,j-marjanovic/puppet-control,stigboyeandersen/control-repo,LMacchi/my-control-repo,abrader/tse-repo,aoz-turk/control-repo,rpidproject/puppet,TomoUK/control-repo,LcTrKiD/personal-puppet,aharden/control-repo,jessereynolds/sensu-puppet-demo,pecode/control-repo,ExalDraen/puppet-control-repo,raj-andy1/control-repo,padrien33/puppet73,zoojar/control-repo-ccc,LMacchi/my-control-repo,npwalker/control-repo,j-marjanovic/puppet-control,asuchocki/puppet-control-repo,stigboyeandersen/control-repo,autostructure/control_repo1,lud97x/control-repo,ipcrm/pe_failover_control-repo,jzcmyz/control-repo,drewablank/controlrepo,TomoUK/control-repo,drewablank/controlrepo,robertmaury/SIMP_control-repo |
826c979e2a6ae074dbc6591b9a0aae1c58e92552 | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- jruby-9.1.5.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
fast_finish: true
branches:
only: master
notifications:
email: false
| ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
- ruby-head
- jruby-9.1.5.0
- jruby-head
- truffleruby
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.5.0
- rvm: truffleruby
fast_finish: true
branches:
only: master
notifications:
email: false
| Change to use latest ruby and add truffleruby | Change to use latest ruby and add truffleruby
| YAML | mit | peter-murach/tty-prompt,piotrmurach/tty-prompt |
20248831eabe19631d669fcbee5e21560e3db730 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.8"
- node_js: "0.6"
- node_js: "0.4"
sudo: false
| language: node_js
node_js:
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
matrix:
fast_finish: true
allow_failures:
- node_js: "iojs-v1.3"
- node_js: "iojs-v1.2"
- node_js: "iojs-v1.1"
- node_js: "iojs-v1.0"
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.8"
- node_js: "0.6"
- node_js: "0.4"
sudo: false
| Test on latest 2 `io.js` versions. | Test on latest 2 `io.js` versions. | YAML | mit | ljharb/node-daytime |
01ef6c1e1e8c25c7aefe68849bc1de3bf0836b08 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository --yes ppa:zoogie/sdl2-snapshots
- sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test
- sudo add-apt-repository --yes ppa:boost-latest/ppa
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-system1.55-dev libboost-filesystem1.55-dev libboost-program-options1.55-dev libboost-regex1.55-dev
- sudo apt-get install -qq cmake libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev g++-4.8
- sudo sed -i -e 's|friend class hash|friend struct hash|' /usr/include/c++/4.8/bits/stl_bvector.h
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
script:
- cmake -DCMAKE_CXX_FLAGS=-Werror .
- make
notifications:
email: false
| language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository --yes ppa:zoogie/sdl2-snapshots
- sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test
- sudo add-apt-repository --yes ppa:boost-latest/ppa
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-system1.55-dev libboost-filesystem1.55-dev libboost-program-options1.55-dev libboost-regex1.55-dev
- sudo apt-get install -qq cmake libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev g++-4.8
- sudo sed -i -e 's|friend class hash|friend struct hash|' /usr/include/c++/4.8/bits/stl_bvector.h
- sudo sed -i -e 's|friend class hash|friend struct hash|' /usr/include/c++/4.8/bitset
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
script:
- cmake -DCMAKE_CXX_FLAGS=-Werror .
- make
notifications:
email: false
| Fix clang mismatch tag warning | Fix clang mismatch tag warning
| YAML | mit | vladimirgamalian/fontbm,vladimirgamalian/fontbm,vladimirgamalian/fontbm |
6ee4811ff07d86be24eae1d720d9d25588fd6aec | .travis.yml | .travis.yml | language: node_js
cache: yarn
node_js:
- node
- "12"
- "10"
- "8"
- "6"
install:
- yarn install --ignore-engines
| language: node_js
cache: yarn
node_js:
- node
- "12"
- "10"
- "8"
install:
- yarn install --ignore-engines
| Remove Node.js 6 from CI | Remove Node.js 6 from CI
| YAML | mit | postcss/postcss-safe-parser |
3bf326a9bcd530fd16c9fc806e249a68e25ab7e3 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
sudo: false
matrix:
fast_finish: true
allow_failures:
- node_js: "iojs-v1.4"
- node_js: "iojs-v1.3"
- node_js: "iojs-v1.2"
- node_js: "iojs-v1.1"
- node_js: "iojs-v1.0"
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.8"
- node_js: "0.6"
- node_js: "0.4"
sudo: false
| language: node_js
node_js:
- "iojs-v2.1"
- "iojs-v2.0"
- "iojs-v1.8"
- "iojs-v1.7"
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
sudo: false
matrix:
fast_finish: true
allow_failures:
- node_js: "iojs-v2.0"
- node_js: "iojs-v1.7"
- node_js: "iojs-v1.6"
- node_js: "iojs-v1.5"
- node_js: "iojs-v1.4"
- node_js: "iojs-v1.3"
- node_js: "iojs-v1.2"
- node_js: "iojs-v1.1"
- node_js: "iojs-v1.0"
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.8"
- node_js: "0.6"
- node_js: "0.4"
sudo: false
| Test up to `io.js` `v2.1` | Test up to `io.js` `v2.1` | YAML | mit | ljharb/is-regex |
ad707af19fbf5084a8e34957698e28d0e4892f64 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- "5.5"
- "5.6"
- "7"
- "hhvm"
matrix:
include:
- php: "5.5"
env: CHECKSTYLE="YES" COVERAGE="YES"
allow_failures:
- php: "7"
- php: "hhvm"
install: composer install
script: phpunit
| language: php
sudo: false
php:
- "5.5"
- "5.6"
- "7"
- "hhvm"
matrix:
allow_failures:
- php: "7"
- php: "hhvm"
install: composer install
script: phpunit
| Remove ENV from build configuration | [TASK] Remove ENV from build configuration
| YAML | mit | NamelessCoder/numerolog |
5ae21b5832d00375427a80f3f7178f27f88ae953 | .travis.yml | .travis.yml | os: linux
language: shell
branches:
only:
- master
jobs:
include:
- stage: test
name: "alpine"
services: docker
script: ./tests/docker alpine
- stage: test
name: "arch"
services: docker
script: ./tests/docker arch
- stage: test
name: "biocontainers"
services: docker
script: ./tests/docker biocontainers
- stage: test
name: "centos"
services: docker
script: ./tests/docker centos
- stage: test
name: "debian"
services: docker
script: ./tests/docker debian
- stage: test
name: "fedora"
services: docker
script: ./tests/docker fedora
- stage: test
name: "opensuse"
services: docker
script: ./tests/docker opensuse
- stage: test
name: "ubuntu"
services: docker
script: ./tests/docker ubuntu
fast_finish: true
notifications:
email:
recipients:
- mike@steinbaugh.com
on_success: change
on_failure: change
| os: linux
language: shell
branches:
only:
- master
# Reducing the number of jobs here, as to not max out Travis credits.
jobs:
include:
# > - stage: test
# > name: "alpine"
# > services: docker
# > script: ./tests/docker alpine
# > - stage: test
# > name: "arch"
# > services: docker
# > script: ./tests/docker arch
# > - stage: test
# > name: "biocontainers"
# > services: docker
# > script: ./tests/docker biocontainers
# > - stage: test
# > name: "centos"
# > services: docker
# > script: ./tests/docker centos
- stage: test
name: "debian"
services: docker
script: ./tests/docker debian
# > - stage: test
# > name: "fedora"
# > services: docker
# > script: ./tests/docker fedora
# > - stage: test
# > name: "opensuse"
# > services: docker
# > script: ./tests/docker opensuse
# > - stage: test
# > name: "ubuntu"
# > services: docker
# > script: ./tests/docker ubuntu
fast_finish: true
notifications:
email:
recipients:
- travis-ci@acidgenomics.com
on_success: change
on_failure: change
| Reduce the number of jobs | Reduce the number of jobs
| YAML | mit | steinbaugh/seqcloud,steinbaugh/seqcloud |
bb90bbaa387ba38423a2c12ba143098aefd4a038 | .travis.yml | .travis.yml | language: scala
script:
- sbt ++$TRAVIS_SCALA_VERSION clean test publishLocal
scala:
- 2.10.3
- 2.11.0-M6
jdk:
- oraclejdk6
- openjdk7
notifications:
email:
- jason.zaugg@typesafe.com
- philipp.haller@typesafe.com | language: scala
script:
- sbt ++$TRAVIS_SCALA_VERSION clean test publishLocal
scala:
- 2.10.3
- 2.11.0-M6
jdk:
- openjdk6
- openjdk7
notifications:
email:
- jason.zaugg@typesafe.com
- philipp.haller@typesafe.com | Remove unsupported Oracle JDK6 from Travis CI config | Remove unsupported Oracle JDK6 from Travis CI config
| YAML | bsd-3-clause | knoldus/async,anand-singh/async,ft655508/async,scala/async |
58d82f2287558c0cb7c9dc39d8cbd64ae3784e69 | .travis.yml | .travis.yml | language: node_js
node_js:
- "10"
- "8"
branches:
only:
- master
script:
- npm test
after_success:
- npm run coveralls
cache: yarn
| language: node_js
node_js:
- "10"
- "8"
- "6"
branches:
only:
- master
script:
- npm test
after_success:
- npm run coveralls
sudo: false
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3
- export PATH=$HOME/.yarn/bin:$PATH
cache:
yarn: true
| Change yarn version for Travis build | chore(CI): Change yarn version for Travis build
| YAML | apache-2.0 | sebelga/gstore-node,sebelga/datastools,sebelga/gstore-node,sebelga/gstore-node |
551b8605cb4cc3e5b4e0f2bfc4d278c60a62e1e9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
setuptools: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo add-apt-repository -y ppa:donk/gstreamer
- sudo apt-get -qq update
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib python-networkx
- sudo apt-get install -qq libhdf5-serial-dev python-h5py python-tables
- sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad
# command to install dependencies
install:
# - "pip install -r requirements.txt --use-mirrors"
- python setup.py install
# command to run tests
#before_script:
# - pip install coverage
script:
- coverage run --source=timeside --omit=timeside/analyzer/aubio/aubio_*.py,timeside/analyzer/yaafe.py,timeside/analyzer/limsi_sad.py,timeside/analyzer/vamp_plugin.py setup.py test
after_success:
- pip install coveralls
- coveralls | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
setuptools: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo add-apt-repository -y ppa:donk/gstreamer
- sudo apt-get -qq update
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib python-networkx python-coverage
- sudo apt-get install -qq libhdf5-serial-dev python-h5py python-tables
- sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad
# command to install dependencies
install:
# - "pip install -r requirements.txt --use-mirrors"
- python setup.py install
# command to run tests
#before_script:
# - pip install coverage
script:
- coverage run --source=timeside --omit=timeside/analyzer/aubio/aubio_*.py,timeside/analyzer/yaafe.py,timeside/analyzer/limsi_sad.py,timeside/analyzer/vamp_plugin.py setup.py test
after_success:
- pip install coveralls
- coveralls | Install coverage from ubuntu repository | Travis: Install coverage from ubuntu repository
| YAML | agpl-3.0 | Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide |
aba1908953004e03611dbc33b5f4c3dde40b1625 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
install:
- "sudo apt-get -q update"
- "sudo apt-get -yV install libxml2-dev libxslt1-dev" # lxml dependencies
- "pip install -r requirements.txt"
- "pip install coveralls"
- "sudo apt-get -yV install optipng jpegoptim"
- "sudo apt-get -yV install wine"
script:
- "coverage run --source=sacad setup.py test"
- "pushd win && make all && popd"
after_success:
- "coveralls"
| language: python
python:
- "3.3"
- "3.4"
install:
- "sudo apt-get -q update"
- "sudo apt-get -yV install libxml2-dev libxslt1-dev" # lxml dependencies
- "pip install -r requirements.txt"
- "pip install coveralls"
- "sudo apt-get -yV install optipng jpegoptim"
- "sudo apt-get -yV install wine p7zip-full"
script:
- "coverage run --source=sacad setup.py test"
- "pushd win && make all && popd"
after_success:
- "coveralls"
| Fix TravisCI wine build - 2 | Fix TravisCI wine build - 2
| YAML | mpl-2.0 | desbma/sacad,desbma/sacad |
facdc9256189aa0926a55dfccaa43a5c7a6f355e | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer install --dev
script:
- vendor/bin/phpunit tests
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
before_script:
- composer install --dev
script:
- vendor/bin/phpunit tests
| Add new PHP versions to test with | Add new PHP versions to test with
| YAML | mit | dangoodman/deferred |
a89cf8b109e391c2fbf891cfc6ecf7ebf0a31929 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install: "sudo apt-get update && sudo apt-get install -y libcairo2-dev libjpeg8-dev libgif-dev optipng pngcrush pngquant libpango1.0-dev graphicsmagick libjpeg-turbo-progs inkscape gifsicle"
script: "npm run-script travis"
after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/da6c90cc3857ade1086c
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| language: node_js
node_js:
- "4"
- "5"
- "6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install: "sudo apt-get update && sudo apt-get install -y libcairo2-dev libjpeg8-dev libgif-dev optipng pngcrush pngquant libpango1.0-dev graphicsmagick libjpeg-turbo-progs inkscape gifsicle"
script: "npm run-script travis"
after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/da6c90cc3857ade1086c
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| Stop testing with node.js < 4. | Travis: Stop testing with node.js < 4.
| YAML | bsd-3-clause | assetgraph/assetgraph-builder |
455137ed58f3ee48e259cc7e2cf1e3ad309fc222 | .travis.yml | .travis.yml | # For more information about the configurations used
# in this file, please see the Travis CI documentation:
# https://docs.travis-ci.com
before_install:
- ./test/customize_environment.sh
install:
- ./src/os/setup.sh -y
language: generic
matrix:
include:
- os: linux
dist: trusty
- os: osx
osx_image: xcode7.3
script:
- ./test/main.sh
sudo: required
| # For more information about the configurations used
# in this file, please see the Travis CI documentation:
# https://docs.travis-ci.com
before_install:
- ./test/customize_environment.sh
install:
- ./src/os/setup.sh -y
language: generic
matrix:
include:
- os: linux
dist: trusty
- os: osx
osx_image: xcode8
script:
- ./test/main.sh
sudo: required
| Use xcode8 image to test macOS related code | [test] Use xcode8 image to test macOS related code
| YAML | mit | EDiLD/dotfiles,girishramnani/dotfiles,AlbertoElias/dotfiles,newtonne/dotfiles,girishramnani/dotfiles,oddlord/dotfiles,zlot/dotfiles,zlot/dotfiles,christophermoura/dotfiles,mickael83/ubuntu-dotfiles,b-boogaard/dotfiles,christophermoura/dotfiles,mickael83/ubuntu-dotfiles,newtonne/dotfiles,pbrooks/dotfiles,EDiLD/dotfiles,makabde/dotfiles,makabde/dotfiles,AlbertoElias/dotfiles |
56f91466039c8f2e4ac42f7b4a1547ecfaf36b77 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
services:
- memcached
- redis
before_install:
- sudo apt-get -qq update
install:
- sudo apt-get -qq install rake bison git gperf libmemcached-dev libcurl4-openssl-dev libhiredis-dev libmarkdown2-dev libcgroup-dev libcap-dev iproute-dev
before_script:
- cd ../
- git clone https://github.com/mruby/mruby.git
- cd mruby
- cp -fp ../mrbgem_test_ci/.travis_build_config.rb build_config.rb
script:
- make all test
notifications:
webhooks:
- secure: "g0zD0o2XdyOzScnOZgO4di1Ebbw4d/mS/Ws77a0lLWiU2+8RyMq2Py9be0KYTiHk85uvdPjidBaDl/d+I7I6gXrjCALwaMlKzE7CtaM9KnyM1xYctFBUdCmYE+QN7DTs4C+d0T6XsCgqAoATscInT+a/zS6sKcHge5hrNwPny3s="
| language: c
compiler:
- gcc
services:
- memcached
- redis
before_install:
- sudo apt-get -qq update
install:
- sudo apt-get -qq install rake bison git gperf libmemcached-dev libcurl4-openssl-dev libhiredis-dev libmarkdown2-dev libcgroup-dev libcap-dev iproute-dev
before_script:
- cd ../
- git clone https://github.com/mruby/mruby.git
- cd mruby
- cp -fp ../mrbgem_test_ci/.travis_build_config.rb build_config.rb
script:
- make all test
notifications:
webhooks:
- secure: "UDjzP3coFurYEPXo7IsgjisSWmjGC+BPbja6LTvMPwY+t6ZKERxrp3viDc/kPXDNlGBFXP7K2bu+UefukJIWUuctSoTt6CVLGqdegwzY5zFtlaCfKsxd/OxIO91QqmPwYW4UeSkOdReejUhncZYZ1/dYjJszVNgi2uMb2X4ZQ2M="
| Add new encrypt webhook url | Add new encrypt webhook url
| YAML | mit | matsumoto-r/mrbgem_test_ci |
9e9b04e2181a64052d0d07e44fb19bb39729dd00 | .travis.yml | .travis.yml | language: bash
services: docker
env:
- VERSION=3.7-rc VARIANT=debian
- VERSION=3.7-rc VARIANT=alpine
- VERSION=3.7 VARIANT=debian
- VERSION=3.7 VARIANT=alpine
- VERSION=3.7 VARIANT=ubuntu
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
before_script:
- env | sort
- wget -qO- 'https://github.com/tianon/pgp-happy-eyeballs/raw/master/hack-my-builds.sh' | bash
- cd "$VERSION/$VARIANT"
- image="$(awk 'toupper($1) == "FROM" { print $2; exit }' management/Dockerfile)"
script:
- |
(
set -Eeuo pipefail
set -x
docker build -t "$image" .
~/official-images/test/run.sh "$image"
docker build -t "${image}-management" management
~/official-images/test/run.sh "${image}-management"
)
after_script:
- docker images
# vim:set et ts=2 sw=2:
| language: bash
services: docker
env:
- VERSION=3.7-rc VARIANT=alpine
- VERSION=3.7 VARIANT=alpine
- VERSION=3.7 VARIANT=ubuntu
install:
- git clone https://github.com/docker-library/official-images.git ~/official-images
before_script:
- env | sort
- wget -qO- 'https://github.com/tianon/pgp-happy-eyeballs/raw/master/hack-my-builds.sh' | bash
- cd "$VERSION/$VARIANT"
- image="$(awk 'toupper($1) == "FROM" { print $2; exit }' management/Dockerfile)"
script:
- |
(
set -Eeuo pipefail
set -x
docker build -t "$image" .
~/official-images/test/run.sh "$image"
docker build -t "${image}-management" management
~/official-images/test/run.sh "${image}-management"
)
after_script:
- docker images
# vim:set et ts=2 sw=2:
| Remove 3.7 Debian builds from Travis | Remove 3.7 Debian builds from Travis
Keep forgetting about this file...
| YAML | mit | docker-library/rabbitmq,infosiftr/rabbitmq |
1850ca76a40d2b3410b49d3a5dc1f9df885e447b | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: node_js
node_js: 8.9
cache:
directories:
- node_modules
before_script:
- npm install -g bower
- bower install
env:
- POLYMER=2
- POLYMER=3
script:
- if [[ "$POLYMER" = "2" ]]; then
npm install -g polymer-cli &&
npm install &&
if [[ "$TRAVIS_EVENT_TYPE" != "pull_request" && "$TRAVIS_BRANCH" != quick/* ]]; then
npm i --no-save gemini@^4.0.0 gemini-sauce gemini-polyserve;
gemini test test/visual;
fi;
fi
- if [[ "$POLYMER" = "3" ]]; then
npm install -g yarn magi-cli polymer-cli@next &&
(cd .. && git clone --depth 1 -b vaadin-components git://github.com/web-padawan/polymer-modulizer.git && cd polymer-modulizer && npm link) &&
rm -rf node_modules &&
magi p3-convert --out . --import-style=name &&
yarn install --flat;
fi
# TODO: Visual tests are excluded because gemini-polyserve doesn't support Polymer 3
- if [[ "$TRAVIS_EVENT_TYPE" = "cron" ]]; then
npm install &&
polymer test --env saucelabs-cron;
fi
| sudo: false
dist: trusty
language: node_js
node_js: 8.9
cache:
directories:
- node_modules
before_script:
- npm install -g bower polymer-cli@next
- bower install
env:
- POLYMER=2
- POLYMER=3
script:
- if [[ "$POLYMER" = "2" ]]; then
npm install &&
if [[ "$TRAVIS_EVENT_TYPE" != "pull_request" && "$TRAVIS_BRANCH" != quick/* ]]; then
npm i --no-save gemini@^4.0.0 gemini-sauce gemini-polyserve;
gemini test test/visual;
fi;
fi
- if [[ "$POLYMER" = "3" ]]; then
npm install -g yarn magi-cli &&
(cd .. && git clone --depth 1 -b vaadin-components-next git://github.com/web-padawan/polymer-modulizer.git && cd polymer-modulizer && npm link) &&
rm -rf node_modules &&
magi p3-convert --out . --import-style=name &&
yarn install --flat;
fi
# TODO: Visual tests are excluded because gemini-polyserve doesn't support Polymer 3
- if [[ "$TRAVIS_EVENT_TYPE" = "cron" ]]; then
npm install &&
polymer test --env saucelabs-cron;
fi
| Update to use latest modulizer and webcomponents polyfill | Update to use latest modulizer and webcomponents polyfill
| YAML | apache-2.0 | vaadin/vaadin-icons,vaadin/vaadin-icons,vaadin/vaadin-icons |
46d1902cae401d635a2b8ff5051a09775f422d7c | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
branches:
only:
- master
install:
- composer selfupdate
- composer install --prefer-source
script:
- ./vendor/bin/phpunit
after_success:
- if [ "$TRAVIS_PHP_VERSION" == '7.0' ]; then
wget https://scrutinizer-ci.com/ocular.phar;
php ocular.phar code-coverage:upload --format=php-clover build/reports/phpunit.xml;
fi;
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
branches:
only:
- master
install:
- composer selfupdate
- composer install --prefer-source
script:
- ./vendor/bin/phpunit
after_success:
- if [ "$TRAVIS_PHP_VERSION" == '7.0' ]; then
wget https://scrutinizer-ci.com/ocular.phar;
php ocular.phar code-coverage:upload --format=php-clover build/reports/phpunit.xml;
fi;
| Add test target for PHP 7.3 | Add test target for PHP 7.3 | YAML | mit | rskuipers/php-assumptions |
ba4768489f244cfe2a9350b76f52f96f9f3f2b35 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 7.3
env: CODE_COVERAGE=1
before_install:
- export PHP_VERSION=$TRAVIS_PHP_VERSION
install:
- make test-install
script:
- make test-run
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: minimal
matrix:
include:
- env: PHP_VERSION=5.5
- env: PHP_VERSION=5.6
- env: PHP_VERSION=7.0
- env: PHP_VERSION=7.1
- env: PHP_VERSION=7.2
- env: PHP_VERSION=7.3 CODE_COVERAGE=1
install:
- make test-install
script:
- make test-run
after_success:
- bash <(curl -s https://codecov.io/bash) -f clover.xml
cache:
directories:
- $TRAVIS_BUILD_DIR/.tmp/composer
- $TRAVIS_BUILD_DIR/vendor
| Update Travis CI build config | Update Travis CI build config
| YAML | mit | gamegos/util-php,gamegos/util-php |
f94b45ad814a0f113679daa55db7c9bce518af99 | .travis.yml | .travis.yml | language: go
go:
- 1.11.x
- master
install: true
matrix:
allow_failures:
- go: master
fast_finish: true
before_script:
- bash <(curl -s https://raw.githubusercontent.com/blitzprog/gotravis/master/before-script.sh)
script:
- bash <(curl -s https://raw.githubusercontent.com/blitzprog/gotravis/master/script.sh)
after_success:
- bash <(curl -s https://raw.githubusercontent.com/blitzprog/gotravis/master/after-success.sh) | language: go
go:
- 1.12.x
- master
install: true
matrix:
allow_failures:
- go: master
fast_finish: true
before_script:
- bash <(curl -s https://raw.githubusercontent.com/blitzprog/gotravis/master/before-script.sh)
script:
- bash <(curl -s https://raw.githubusercontent.com/blitzprog/gotravis/master/script.sh)
after_success:
- bash <(curl -s https://raw.githubusercontent.com/blitzprog/gotravis/master/after-success.sh) | Use Go 1.12 for testing | Use Go 1.12 for testing
| YAML | mit | aerogo/aero |
80bd89dc672a88dc7e5cf1b06556522259c2dd37 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- openjdk11
sudo: required
before_install:
- sudo apt-get -qq update || echo no sudo apt-get
- sudo apt-get install -y libwebkitgtk-3.0-0 || echo no sudo apt-get
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start || echo No X11
- sleep 3
script:
- mvn install -DskipTests
- mvn -f $TEST_SUITE-archetype-test verify
os:
- linux
- osx
env:
- TEST_SUITE=ko
- TEST_SUITE=crud
- TEST_SUITE=visual
| language: java
jdk:
- oraclejdk8
- openjdk11
sudo: required
before_install:
- sudo apt-get -qq update || echo no sudo apt-get
- sudo apt-get install -y libwebkitgtk-3.0-0 || echo no sudo apt-get
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start || echo No X11
- sleep 3
script:
- mvn install -DskipTests
- mvn -f $TEST_SUITE-archetype-test verify
os:
- linux
- osx
env:
- TEST_SUITE=ko
# - TEST_SUITE=crud
# - TEST_SUITE=visual
| Test only ko-archetype-test for now | Test only ko-archetype-test for now | YAML | mit | dukescript/maven-archetypes,dukescript/maven-archetypes,dukescript/maven-archetypes |
2baed5b42b97a6dccd59a6a636fc3eab627f89f5 | .travis.yml | .travis.yml | language: go
# Versions of go that are explicitly supported.
go:
- 1.13
- 1.11
- 1.8
- tip
# Required for coverage.
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go build -a -v ./...
- diff <(gofmt -d .) <("")
- go test -v -covermode=count -coverprofile=coverage.out
- $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci
| language: go
# Versions of go that are explicitly supported.
go:
- 1.15
- tip
# Required for coverage.
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go build -a -v ./...
- diff <(gofmt -d .) <("")
- go test -v -covermode=count -coverprofile=coverage.out
- $GOPATH/bin/goveralls -coverprofile=coverage.out -service=travis-ci
| Update go version for Travis | Update go version for Travis
| YAML | bsd-3-clause | grafov/kiwi |
a2a2196e6243aca67eccefb2da617d4e17849615 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10" | language: node_js
node_js:
- "5.0"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "iojs" | Add Travis tests for 4.0, 5.0 and iojs | Add Travis tests for 4.0, 5.0 and iojs
| YAML | mit | BlackDice/lill |
966536f994808c7e58dd48275d73364b5d8c6490 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- iojs
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
| Add 0.12 and iojs to CI run. | Add 0.12 and iojs to CI run.
| YAML | mit | cliffano/generator-bob |
89298c62778db9776a6a49fdb075b1d941fce061 | .travis.yml | .travis.yml | language: python
# Supported CPython versions:
# https://en.wikipedia.org/wiki/CPython#Version_history
python:
- 2.7
- 3.6
sudo: false
install:
- pip install pycodestyle pyflakes
- pip install -r requirements.txt
- npm install svgexport -g
- wget https://hugovk.github.io/top-pypi-packages/top-pypi-packages-365-days.json -O top-pypi-packages.json
script:
# Unit tests
- python test_utils.py
# Static analysis
- pyflakes .
- pycodestyle --statistics --count .
# Test run
- python generate.py
matrix:
fast_finish: true
| language: python
# Supported CPython versions:
# https://en.wikipedia.org/wiki/CPython#Version_history
python:
- 2.7
- 3.6
sudo: false
install:
- pip install pycodestyle pyflakes
- pip install -r requirements.txt
- npm install svgexport -g
script:
# Unit tests
- python test_utils.py
# Static analysis
- pyflakes .
- pycodestyle --statistics --count .
# Test run
- ./build.sh
matrix:
fast_finish: true
| Test more: call build.sh which calls generate.py | Test more: call build.sh which calls generate.py
| YAML | bsd-2-clause | hugovk/drop-python,hugovk/drop-python,hugovk/drop-python |
fffa2b57a20b530d4d61ff31ef6e72e2014d8045 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
cache:
directories:
- '$HOME/.m2/repository'
install: /bin/true
| language: java
sudo: false
jdk:
- oraclejdk8
cache:
directories:
- '$HOME/.m2/repository'
install: /bin/true
| Remove JDK 7 from CI testing | Remove JDK 7 from CI testing | YAML | apache-2.0 | tdunning/t-digest,tdunning/t-digest |
53c74867bcb0711d5d47b54943c9b76eece67317 | .travis.yml | .travis.yml | before_install:
- sudo apt-get install libicu-dev
# Workaround for a permissions issue with Travis virtual machine images
# that breaks Python's multiprocessing:
# https://github.com/travis-ci/travis-cookbooks/issues/155
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
language: node_js
node_js:
- "0.11"
- "0.10"
- 0.8
| before_install:
- sudo apt-get install libicu-dev
# Workaround for a permissions issue with Travis virtual machine images
# that breaks Python's multiprocessing:
# https://github.com/travis-ci/travis-cookbooks/issues/155
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
- npm i -g npm
language: node_js
node_js:
- "0.11"
- "0.10"
- 0.8
| Upgrade npm for nodejs 0.8 | Upgrade npm for nodejs 0.8
| YAML | apache-2.0 | xmpp-ftw/xmpp-ftw-mam |
519e06f06b4e2a8b563c39b8c0c0a6412d988438 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python: 3.6
env:
- TOXENV=py36
- TOXENV=py35
- TOXENV=py34
- TOXENV=flake8
# Install tox; this is used to run tests under multiple interpreters
install: pip install -U tox
# in each Travis 'env' delegate to one tox 'testenv'
script: tox -e ${TOXENV}
| # Config file for automatic testing at travis-ci.org
language: python
python:
- 3.6
- 3.5
- 3.4
install:
- pip install pytest
# Run pytest under each interpreter
script:
- py.test
# Add a job to run flake8
jobs:
include:
- env: NAME=flake8
python: 3.6
install: pip install flake8
script: flake8 adventurelib.py test_adventurelib.py
| Reconfigure Travis not to use tox | Reconfigure Travis not to use tox
| YAML | mit | lordmauve/adventurelib |
0af12f74ae882c777bceb51ccb3649050f2924f7 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
script: mvn package
before_deploy:
- mkdir deploy
- cp iupload-war/target/iupload*.war deploy/
deploy:
provider: s3
access_key_id: AKIAJVZNZT5TTB2Y4BNA
secret_access_key:
secure: FLV4Zf11wjfEIMgVjiIvx8Q0IUZqxLspcwAZRu9tROby79vs8mKC/eEfgq+VIGKaLTL+U6bA6i9Dp6NJ4r+8JLCNRez4AEYHbTPDnJ+m6FcvVuBSamDHN1bEey1PTkhXsJ3hTBrBA4msZ7VFkfiiqYuyGbMcwGazEq3UcH
evo0M=
bucket: indeedeng-imhotep-build
local-dir: deploy
skip_cleanup: true
| language: java
jdk:
- oraclejdk7
script: mvn package
before_deploy:
- mkdir deploy
- cp iupload-war/target/iupload*.war deploy/
deploy:
provider: s3
access_key_id: AKIAJVZNZT5TTB2Y4BNA
secret_access_key:
secure: FLV4Zf11wjfEIMgVjiIvx8Q0IUZqxLspcwAZRu9tROby79vs8mKC/eEfgq+VIGKaLTL+U6bA6i9Dp6NJ4r+8JLCNRez4AEYHbTPDnJ+m6FcvVuBSamDHN1bEey1PTkhXsJ3hTBrBA4msZ7VFkfiiqYuyGbMcwGazEq3UcHevo0M=
bucket: indeedeng-imhotep-build
local-dir: deploy
skip_cleanup: true
| Change AWS account and S3 bucket for deployment (fix encrypted secret key) | Change AWS account and S3 bucket for deployment (fix encrypted secret key)
| YAML | apache-2.0 | indeedeng/iupload,indeedeng/iupload,indeedeng/iupload |
a929ebfeffdaa2da1383e922b3b475513cbb4b14 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
before_script:
- composer install
- pear install --alldeps PHP_CodeSniffer
- phpenv rehash
- git clone git://github.com/opensky/Symfony2-coding-standard.git $(pear config-get php_dir)/PHP/CodeSniffer/Standards/Symfony2
- phpcs --standard=Symfony2 --ignore=/vendor ./
script: phpunit
notifications:
email:
- genvaldartem@gmail.com
| language: php
php:
- 5.4
- 5.5
- 5.6
before_script:
- composer install
- pear install --alldeps PHP_CodeSniffer
- phpenv rehash
- git clone git://github.com/opensky/Symfony2-coding-standard.git $(pear config-get php_dir)/PHP/CodeSniffer/Standards/Symfony2
- phpcs --standard=Symfony2 --ignore=/vendor ./
script: phpunit
notifications:
email:
- genvaldartem@gmail.com
| Add PHP version 5.6 to Travis config | Add PHP version 5.6 to Travis config | YAML | mit | fre5h/DoctrineEnumBundle |
4017767ac322f33367f46a430f7a458d86114626 | .travis.yml | .travis.yml | language: python
addons:
apt:
packages:
- nautilus
- libglib2.0-bin
env:
global:
- TEST_DEPS="qtconsole notebook pytest"
matrix:
include:
- env: export PYTHON_VERSION=3.7
python: 3.7
- env: export PYTHON_VERSION=3.7; CONDA=true
- env: export PYTHON_VERSION=3.6
python: 3.6
- env: export PYTHON_VERSION=3.6; CONDA=true
before_install:
- mkdir -p ~/.local/share/nautilus/scripts/
- |
if [ $CONDA ]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
chmod +x miniconda.sh
./miniconda.sh -b -p $HOME/miniconda
hash -r
fi
install:
- |
if [ $CONDA ]; then
source $HOME/miniconda/bin/activate root
conda update -yq conda
conda create -n testenv --yes python=$PYTHON_VERSION
source activate testenv
conda install -y $TEST_DEPS
else
pip install $TEST_DEPS
fi
- pip install -e .
script:
- pytest --pyargs start_jupyter_cm
- start_jupyter_cm
- ls ~/.local/share/nautilus/scripts
- start_jupyter_cm --remove
| language: python
addons:
apt:
packages:
- nautilus
- libglib2.0-bin
env:
global:
- TEST_DEPS="qtconsole notebook pytest"
matrix:
include:
- env: export PYTHON_VERSION=3.7
python: 3.7
- env: export PYTHON_VERSION=3.7; CONDA=true
- env: export PYTHON_VERSION=3.6
python: 3.6
- env: export PYTHON_VERSION=3.6; CONDA=true
before_install:
- mkdir -p ~/.local/share/nautilus/scripts/
- |
if [ $CONDA ]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
chmod +x miniconda.sh
./miniconda.sh -b -p $HOME/miniconda
hash -r
fi
install:
- |
if [ $CONDA ]; then
source $HOME/miniconda/bin/activate root
conda update -yq conda
conda create -n testenv --yes python=$PYTHON_VERSION
source activate testenv
conda install -y $TEST_DEPS
else
pip install $TEST_DEPS
fi
- pip install -e .
script:
- pytest --pyargs start_jupyter_cm
- start_jupyter_cm
- ls ~/.local/share/nautilus/scripts
- start_jupyter_cm --remove
- gio --help | Check if gio is available. | Check if gio is available.
| YAML | bsd-3-clause | hyperspy/start_jupyter_cm |
59cd0776aefe77c9fdbb2f06f18ab92dcecd84c5 | .travis.yml | .travis.yml | sudo: required
language: rust
cache: cargo
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: stable
- rust: nightly
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
- cmake
sources:
- kalakris-cmake
before_script:
- rustup component add rustfmt-preview
- rustup component add clippy-preview
- cargo install cargo-update || echo "cargo-update already installed"
- cargo install cargo-travis || echo "cargo-travis already installed"
- cargo install-update -a
script:
- |
cargo check &&
cargo build &&
cargo test &&
cargo doc &&
cargo clippy -- -D clippy
after_success:
- cargo coveralls
| sudo: required
language: rust
cache: cargo
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
- cmake
sources:
- kalakris-cmake
before_script:
- rustup component add rustfmt-preview
- rustup component add clippy-preview
- cargo install cargo-update || echo "cargo-update already installed"
- cargo install cargo-travis || echo "cargo-travis already installed"
- cargo install-update -a
script:
- |
cargo check &&
cargo build &&
cargo test &&
cargo doc &&
cargo clippy -- -D clippy
after_success:
- cargo coveralls
| Revert "Travis CI: Allow failures for stable" | Revert "Travis CI: Allow failures for stable"
This reverts commit 76a0f56647623ea5ac4f7a793d2f186e0aef52f0.
Signed-off-by: Otavio Salvador <1d31b11c1b92bf5d043d36edfe7174db39a6b891@ossystems.com.br>
| YAML | mpl-2.0 | UpdateHub/updatehub |
8f3f96015d8dcef2a8f0d3f565797a712d7af093 | .travis.yml | .travis.yml | script: "rake ci:build"
rvm:
- 1.8.6
- 1.8.7
- 1.9.1
- 1.9.2
- ree
- rbx
- jruby
| script: "rake ci:build"
rvm:
- 1.8.7
| Build just 1.8.7 for now. | Build just 1.8.7 for now. | YAML | mit | davidbebb/vcr,nishanbose/vcr,chriswoodrich/vcr,irfanah/vcr,travis-repos/vcr,intfrr/vcr,Shopify/vcr,allyapp/vcr,ZmagoD/vcr,myronmarston/vcr,chriswoodrich/vcr,benjaminoakes/vcr,asymmetric/vcr,cemo/vcr,davidbebb/vcr,allyapp/vcr,myronmarston/vcr,ihassin/vcr,Shopify/vcr,nishanbose/vcr,cemo/vcr,mcfiredrill/vcr,mcfiredrill/vcr,irfanah/vcr,asymmetric/vcr,ZmagoD/vcr,intfrr/vcr,ihassin/vcr |
02c5dfb8ff5a103b356571ce21912e2ddc426ac0 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 7.0
- php: hhvm
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install --prefer-source
script:
- composer validate
- ./vendor/bin/phing security:check
- ./vendor/bin/phing sniff
- ./vendor/bin/phing unit
| language: php
matrix:
include:
- php: 7.0
- php: 7.1
before_script:
- composer self-update
- composer install --prefer-source
script:
- composer validate
- ./vendor/bin/phing security:check
- ./vendor/bin/phing sniff
- ./vendor/bin/phing unit
| Change in Travis config: Remove hhvm, add PHP 7.1 to build matrix. | Change in Travis config: Remove hhvm, add PHP 7.1 to build matrix.
| YAML | apache-2.0 | bitExpert/disco |
bdc74fb7231617942799811507b08b6dc75663de | .travis.yml | .travis.yml | sudo: required
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
- sudo apt-get install gcc-7 g++-7
script:
- gcc-7 --version
- mkdir -p builddir
- cd builddir
- cmake ..
- make
| sudo: required
language: c++
compiler:
- gcc-7
- gcc-8
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
- sudo apt-get install gcc-7 g++-7
- sudo update-alternatives --set gcc /usr/bin/gcc-7
- sudo update-alternatives --set g++ /usr/bin/g++-7
script:
- gcc-7 --version
- mkdir -p builddir
- cd builddir
- cmake ..
- make
| Include PPA without user input | Include PPA without user input
| YAML | mit | Kronuz/Xapiand,Kronuz/Xapiand,Kronuz/Xapiand,Kronuz/Xapiand,Kronuz/Xapiand,Kronuz/Xapiand |
01e0a9024fdf8939b34a83225c5d6b65b6f489bf | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
sudo: false
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| language: node_js
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
sudo: false
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| Add Node 8 to Travis CI suite. | Add Node 8 to Travis CI suite.
| YAML | mit | Hansoft/meteor,Hansoft/meteor,Hansoft/meteor,meteor/promise,Hansoft/meteor,Hansoft/meteor,Hansoft/meteor,meteor/promise,meteor/promise,Hansoft/meteor |
c89ddac12487fe657f3cd60a1bad4b1d6e344ff8 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "6"
- "node"
| language: node_js
node_js:
- "4"
- "6"
- "7"
- "node"
matrix:
fast_finish: true
allow_failures:
- node_js: "node"
| Allow Node 8 to fail for now. | Allow Node 8 to fail for now.
Currently, ember-cli@2.13 does not support Node 8 (via package.json engines field)
| YAML | mit | glimmerjs/glimmer-application-pipeline,glimmerjs/glimmer-application-pipeline,glimmerjs/glimmer-application-pipeline |
8bccccb3f6f7b7b47c6d4b8d24d933700ac0e989 | .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: xcode11
# cache: cocoapods
# podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild -workspace Example/ScalingCarousel.xcworkspace -scheme ScalingCarousel-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=12.0,name=iPhone Xs' ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
| # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode11
# cache: cocoapods
# podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:
- set -o pipefail && xcodebuild -workspace Example/ScalingCarousel.xcworkspace -scheme ScalingCarousel-Example -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=13.0,name=iPhone 11' ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint
| Update iOS and device target | Update iOS and device target
| YAML | mit | superpeteblaze/ScalingCarousel,superpeteblaze/ScalingCarousel |
6a53ab10e2f5c8fe9976658f01448fea26de56cb | .travis.yml | .travis.yml | language: ruby
script: bundle exec rake
before_script:
- psql -c 'create database scoped_search_test;' -U postgres
- mysql -e 'create database scoped_search_test;'
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
- jruby-19mode
- jruby-head
gemfile:
- Gemfile.activerecord3
- Gemfile.activerecord40
- Gemfile.activerecord41
matrix:
include:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
|
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
- jruby-19mode
- jruby-head
gemfile:
- Gemfile.activerecord3
- Gemfile.activerecord40
- Gemfile.activerecord41
before_script:
- psql -c 'create database scoped_search_test;' -U postgres
- mysql -e 'create database scoped_search_test;'
script: bundle exec rake
matrix:
include:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Use the new build env on Travis | Use the new build env on Travis
faster vms, more ram, more cpu, better boot times, no queue | YAML | mit | wvanbergen/scoped_search,wvanbergen/scoped_search,jlsherrill/scoped_search,lzap/scoped_search,johnpmitsch/scoped_search,johnpmitsch/scoped_search,lzap/scoped_search,jlsherrill/scoped_search |
3a38c09d8ce5903ba351ee78e1cde61f5f529f87 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install jenkins-job-builder
script: python setup.py test
| language: python
python:
- "2.7"
- "3.5"
- "3.6"
install:
- pip install jenkins-job-builder
script: python setup.py test
| Drop support for Python 3.4 to fix CI builds | Drop support for Python 3.4 to fix CI builds
This change "fixes" Travis CI failures on current HEAD of master:
- https://travis-ci.com/github/ktdreyer/jenkins-job-wrecker/jobs/334483381
PyYAML used by JJB no longer supports Python 3.4. As it's old enough
folks should migrate to a newer version anyway.
| YAML | mit | ktdreyer/jenkins-job-wrecker |
f8351bb5ecfaad53f5a3616c07df078664b45a47 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
sauce_connect: true
before_install: npm install -g karma-cli
before_script: npm install karma-sauce-launcher
script: karma start karma.conf-sauce.js
env:
global:
- NPM_CONFIG_PROGRESS="false"
| language: node_js
node_js:
- '0.10'
sauce_connect: true
before_install: npm install -g karma-cli
before_script: npm install karma-sauce-launcher
script: karma start karma.conf-sauce.js
env:
global:
- NPM_CONFIG_PROGRESS="false"
cache:
directories:
- node_modules
| Enable caching in Travis CI | Enable caching in Travis CI
| YAML | mit | jamonserrano/jamon |
ab3e21178ec0475ae219ef8acaaf6c1ca61111c8 | .travis.yml | .travis.yml | language: php
sudo: false
php: [5.6, 7.0, 7.1, 7.2, 7.3]
matrix:
include:
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
- php: 5.3
dist: precise
# Test against LTS versions
- php: 7.2
env: SYMFONY_VERSION='^2'
- php: 7.2
env: SYMFONY_VERSION='^3'
# Test against dev versions of dependencies
- php: 7.2
env: DEPENDENCIES='dev' SYMFONY_PHPUNIT_VERSION='7.5' # Avoid using PHPUnit 8 until our testsuite is compatible
cache:
directories:
- $HOME/.composer/cache/files
- $HOME/symfony-bridge/.phpunit
before_install:
- if [ "$DEPENDENCIES" = "dev" ]; then composer config minimum-stability dev; fi;
- sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require -n --no-update symfony/lts=$SYMFONY_VERSION; fi;'
install:
- composer install -n
- vendor/bin/simple-phpunit install
script: vendor/bin/simple-phpunit -v --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| language: php
sudo: false
php: [5.6, 7.0, 7.1, 7.2, 7.3]
matrix:
include:
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
- php: 5.3
dist: precise
# Test against LTS versions
- php: 7.2
env: SYMFONY_VERSION='^2'
- php: 7.2
env: SYMFONY_VERSION='^3'
# Test against dev versions of dependencies
- php: 7.2
env: DEPENDENCIES='dev'
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- if [ "$DEPENDENCIES" = "dev" ]; then composer config minimum-stability dev; fi;
- sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require -n --no-update symfony/lts=$SYMFONY_VERSION; fi;'
install:
- composer install -n
script: vendor/bin/phpunit -v --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| Change Travis to use phpunit from vendors | Change Travis to use phpunit from vendors
The driver-testsuite package now depends on phpunit to force installing
a version compatible with the driver testsuite.
| YAML | mit | minkphp/MinkBrowserKitDriver |
f10c390723217931daef58c7f1bd9873d37d7fb2 | .travis.yml | .travis.yml | language: python
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 5 # give xvfb some time to start
install:
- pip install tox
script:
- tox
env:
- TOXENV=py26_django14
- TOXENV=py27_django16
- TOXENV=py33_django16
- TOXENV=py34_django16
- TOXENV=coverage
notifications:
email: false
| language: python
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 5 # give xvfb some time to start
install:
- pip install tox
script:
- tox
env:
- TOXENV=py27_django14
- TOXENV=py27_django17
- TOXENV=py34_django17
- TOXENV=coverage
notifications:
email: false
| Adjust test matrix for TravisCI | Adjust test matrix for TravisCI
| YAML | bsd-3-clause | henriquechehad/django-image-cropping,winzard/django-image-cropping,henriquechehad/django-image-cropping,henriquechehad/django-image-cropping,winzard/django-image-cropping,winzard/django-image-cropping |
8846118ad17753a5f8516ec649db62ef2b864e9f | .travis.yml | .travis.yml | language: scala
scala:
- 2.10.4
before_install:
- sudo pip install --upgrade conda py4j
- pip install --user codecov
install:
# Download spark 1.4.1
- "wget http://d3kbcqa49mib13.cloudfront.net/spark-1.4.1-bin-hadoop2.4.tgz || wget http://www.us.apache.org/dist/spark/spark-1.4.1/spark-1.4.1-bin-hadoop2.4.tgz || wget http://download.nextag.com/apache/spark/spark-1.4.1/spark-1.4.1-bin-hadoop2.4.tgz"
- "tar -xvf spark-1.4.1-bin-hadoop2.4.tgz"
# install python deps
- sudo conda init
- deps='pip requests nose sphinx pep8 coverage'
- conda create -p $HOME/py --yes $deps "python=2.7"
- export PATH=$HOME/py/bin:$PATH
- pip install unittest2
script:
- ./sbt/sbt scalastyle
- "export SPARK_HOME=`pwd`/spark-1.4.1-bin-hadoop2.4/"
- ./sbt/sbt test
- cd python && ./run-tests && cd ..
- "pep8 --ignore=E402 ./python"
after_success:
- codecov | language: scala
scala:
- 2.10.4
before_install:
- sudo pip install --upgrade conda py4j
- pip install --user codecov
install:
# Download spark 1.4.1
- "wget http://d3kbcqa49mib13.cloudfront.net/spark-1.4.1-bin-hadoop2.4.tgz || wget http://www.us.apache.org/dist/spark/spark-1.4.1/spark-1.4.1-bin-hadoop2.4.tgz || wget http://download.nextag.com/apache/spark/spark-1.4.1/spark-1.4.1-bin-hadoop2.4.tgz"
- "tar -xvf spark-1.4.1-bin-hadoop2.4.tgz"
# install python deps
- sudo conda init
- deps='pip requests nose sphinx pep8 coverage'
- conda create -p $HOME/py --yes $deps "python=2.7"
- export PATH=$HOME/py/bin:$PATH
- pip install unittest2
script:
- ./sbt/sbt scalastyle
- "export SPARK_HOME=`pwd`/spark-1.4.1-bin-hadoop2.4/"
- ./sbt/sbt clean coverage test
- cd python && ./run-tests && cd ..
- "pep8 --ignore=E402 ./python"
after_success:
- codecov | Add coverage to sbt invocation | Add coverage to sbt invocation
| YAML | apache-2.0 | hellofresh/spark-testing-base,holdenk/spark-testing-base,jnadler/spark-testing-base,holdenk/spark-testing-base,jnadler/spark-testing-base,snithish/spark-testing-base,snithish/spark-testing-base,hellofresh/spark-testing-base,snithish/spark-testing-base,jnadler/spark-testing-base,holdenk/spark-testing-base,mahmoudhanafy/spark-testing-base,snithish/spark-testing-base,jnadler/spark-testing-base,holdenk/spark-testing-base,mahmoudhanafy/spark-testing-base,mahmoudhanafy/spark-testing-base,mahmoudhanafy/spark-testing-base |
6cbeef64d39be82b8dd8d13ca1e77396289a8b33 | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
script:
- ./gradlew build
- ./gradlew shadow
- java -jar ./detekt-cli/build/libs/detekt-cli-*-all.jar --help
- java -jar ./detekt-cli/build/libs/detekt-cli-*-all.jar -i . --baseline ./reports/baseline.xml -f ".*/test/.*,.*/resources/.*, .*/build/.*" -c ./detekt-cli/src/main/resources/default-detekt-config.yml
- ./gradlew detektCheck
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| language: java
jdk: oraclejdk8
script:
- ./gradlew build
- ./gradlew shadow
- java -jar ./detekt-cli/build/libs/detekt-cli-*-all.jar --help
- java -jar ./detekt-cli/build/libs/detekt-cli-*-all.jar -i . --baseline ./reports/baseline.xml -f ".*/test/.*,.*/resources/.*, .*/build/.*" -c ./detekt-cli/src/main/resources/default-detekt-config.yml,./reports/failfast.yml
- ./gradlew detektCheck
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Use failfast configuration in CI | Use failfast configuration in CI
| YAML | apache-2.0 | rock3r/detekt,arturbosch/detekt,rock3r/detekt,Mauin/detekt,MyDogTom/detekt,Mauin/detekt,arturbosch/detekt,Mauin/detekt,Mauin/detekt,rock3r/detekt,arturbosch/detekt |
06fd546828f33a9ce890a6164ff16f7ff9c0c970 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
before_install: gem install bundler
git:
depth: 1
| language: node_js
node_js:
- "5.8.0"
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
| Update Travis CI configuration for node build | Update Travis CI configuration for node build
| YAML | mit | mavenlink/brainstem-js |
060739420294580ae7ca901709551de890c3f8af | .travis.yml | .travis.yml | language: rust
rust: nightly
script:
- cargo build --verbose
- cargo test --verbose
- rustdoc --test README.md -L target
- cargo doc
| language: rust
rust: nightly
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libsodium-dev
- sudo apt-get install -y libsqlite3-dev
script:
- cargo build --verbose
- cargo test --verbose
- rustdoc --test README.md -L target
- cargo doc
| Add installation of library dependencies | Add installation of library dependencies | YAML | apache-2.0 | google/hat-backup,google/hat-backup,kbknapp/hat-backup |
c2c7d39d4c5e6eec83ad23a8fed56e4d22847669 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
sudo: false
before_script:
- npm install -g codeclimate-test-reporter
script:
- npm run pretest
- node ./test/build.js --coverage
- node ./test/jasmine.js --coverage
after_success:
- codeclimate-test-reporter < ./test/coverage/lcov.info | language: node_js
node_js:
- "4.0.0"
sudo: false
before_script:
- npm install -g codeclimate-test-reporter
script:
- npm run pretest
- node ./test/build.js --coverage
- node ./test/jasmine.js --coverage
after_success:
- codeclimate-test-reporter < ./test/coverage/lcov.info | Update Travis to node 4.0.0 | Update Travis to node 4.0.0
| YAML | apache-2.0 | cgvarela/tungstenjs,wayfair/tungstenjs,wayfair/tungstenjs |
3f8ff225ab69d5edc72b90a9701be36e57c3719d | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 0.8
- 0.6
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| Add TravisCI config for 0.11. | Add TravisCI config for 0.11.
| YAML | mit | apaprocki/blpapi-node,jmptrader/blpapi-node,jmptrader/blpapi-node,jmptrader/blpapi-node,apaprocki/blpapi-node,bloomberg/blpapi-node,bloomberg/blpapi-node,bloomberg/blpapi-node,apaprocki/blpapi-node |
bf907af53bb002ca3c6533014408625d73ae226f | .travis.yml | .travis.yml | language: node_js
node_js: '0.12'
sudo: false
cache:
directories:
- node_modules
| language: node_js
node_js: '0.12'
sudo: false
cache:
directories:
- node_modules
notifications:
slack:
secure: ezESiG7JnuSLZc2/PPhOvWUv5BHBCr+g86MsuLLw+S+zz3DUfzWHMQ1g5tUvkeSDTPmfEIX41EnPkaoWtsD3OGO0PGXgseAfA8+6Z4N1rICNZZrhXZB2s6UdwRK1e+0Jol4W3kHmt96BHyN2scLNgJYeWMgSJllVsuPhMTlKBZIXI9u540NH8Nxjl3f2WvoIg64Q1mZvMxkpPbw4xssx6U4HSFE8kTTE6+EFsSxzombFX0cLGjPiJ9QZgGVUk4UkIjyiFLQQDfQlLllCaUpqJ9+qbuCNoMSKA2yty/qyZ8Y+r4OlMberjmBzR9GRLLyXWWcaAfMIgwlRhjtLYIDAUSsGM1iwUWCgyB9maG2IiXuYLSueuMx8DcDwbpUepoDgnqBYnM2AJmT8gcsxqlKYzJpYpHDgZgBlLZQgMXqjrVJHs/Tf9XVcLS6HAn1Ww0OOT01jThfy4gClpAuqLayYexsXOoL+RaFg25E2NzuTtaFWgRfWZgcAeqYNDiUzwun2D4vZ5I+NtdRP0gzpbG2fxhFz05vAqyf1Kp6ZYb17Li3A38dIm6Lsvv3qawAIAgNaZpIZX3f89+uq6jHU8kJy1Iv823JK2Xac3vEz3SHUKJnuXFF0LO07om9AcNEXhP/JrJ617S8nfvDtZRJODMFhz8qQwie+65Ql1I871goBpVs=
| Add Slack integration to Travis | Add Slack integration to Travis
| YAML | bsd-3-clause | LLK/scratch-www,LLK/scratch-www |
a6be1e4313947f417ed3d986b7cb77666f60f0be | .travis.yml | .travis.yml | language: node_js
node_js:
- 7.4.0
sudo: false
notifications:
email:
on_success: never
on_failure: change
git:
depth: 10
branches:
only:
- master
env:
global:
- CC=clang
- CXX=clang++
- npm_config_clang=1
matrix:
include:
- os: linux
dist: trusty
addons:
apt:
packages:
- clang-3.3
- build-essential
- os: osx
| language: node_js
node_js:
- 7.4.0
sudo: false
dist: trusty
addons:
apt:
packages:
- clang-3.3
- build-essential
git:
depth: 10
branches:
only:
- master
env:
global:
- CC=clang
- CXX=clang++
- npm_config_clang=1
notifications:
email:
on_success: never
on_failure: change
| Disable the macOS build on Travis | Disable the macOS build on Travis
| YAML | mit | atom/watcher,atom/watcher,atom/watcher,atom/watcher,atom/watcher |
7ac651acd05651b1accf45fc4310c83f773ab25c | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 7.1
- php: 7.2
- php: 7.3
- php: nightly
env: PHP_CS_FIXER_IGNORE_ENV=1
fast_finish: true
allow_failures:
- php: nightly
before_install: phpenv config-rm xdebug.ini || true
install: make install
script: scripts/travis
after_script: scripts/travis-after
deploy:
- provider: script
script: make publish
skip_cleanup: true
on:
php: '7.3'
branch: master
- provider: script
script: make publish
skip_cleanup: true
on:
php: '7.3'
tags: true
env:
global:
- ELOQUENT_PUBLISH_VERSION=7.3
- secure: "o8G7oGV2ojgXwUppZiegNQy5Za2Bso5rvXUbdR41bSKZWUZM/l/J5/SxF5Ygf5sPSFBQ5LmbBb1juMU6WtCyDi74rMpzwhpEuTgqDwYlY2RFQ0QPb/Mq0S9BejAWLpa+yh2LrHDWQlG/M8Ns5ycAFxPtYNwx3QzJzOTLqy2uZ/c="
| language: php
matrix:
include:
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4snapshot
- php: nightly
env: PHP_CS_FIXER_IGNORE_ENV=1
fast_finish: true
allow_failures:
- php: nightly
before_install: phpenv config-rm xdebug.ini || true
install: make install
script: scripts/travis
after_script: scripts/travis-after
deploy:
- provider: script
script: make publish
skip_cleanup: true
on:
php: '7.3'
branch: master
- provider: script
script: make publish
skip_cleanup: true
on:
php: '7.3'
tags: true
env:
global:
- ELOQUENT_PUBLISH_VERSION=7.3
- secure: "o8G7oGV2ojgXwUppZiegNQy5Za2Bso5rvXUbdR41bSKZWUZM/l/J5/SxF5Ygf5sPSFBQ5LmbBb1juMU6WtCyDi74rMpzwhpEuTgqDwYlY2RFQ0QPb/Mq0S9BejAWLpa+yh2LrHDWQlG/M8Ns5ycAFxPtYNwx3QzJzOTLqy2uZ/c="
| Add PHP 7.4 CI build | Add PHP 7.4 CI build
| YAML | mit | eloquent/phony,eloquent/phony,eloquent/phony,eloquent/phony |
56d096d2495a17a8d3e2806c567a3fec07adb283 | .travis.yml | .travis.yml | # Available ruby versions: http://rubies.travis-ci.org/
language: ruby
sudo: false
os:
- linux
- osx
rvm:
- "2.1" # latest 2.1.x
- "2.2.10"
- "2.3.8"
- "2.4.6"
- "2.5.5"
- "2.6.3"
- "ruby-head"
- "jruby-9.1.9.0"
- "jruby-head"
cache: bundler
script:
- bundle exec rake test
- bundle exec rake rubocop
branches:
except:
- "readme-edits"
before_install:
# Install rubygems < 3.0 so that we can support ruby < 2.3
# https://github.com/rubygems/rubygems/issues/2534
- gem install rubygems-update -v '<3' && update_rubygems
# bundler installation needed for jruby-head
# https://github.com/travis-ci/travis-ci/issues/5861
- gem install bundler
# Travis OS X support is pretty janky. These are some hacks to include tests
# only on versions that actually work.
# (last tested: 2016-11)
matrix:
# exclude: {}
# include: {}
allow_failures:
- rvm: 'ruby-head'
# return results as soon as mandatory versions are done
fast_finish: true
| # Available ruby versions: http://rubies.travis-ci.org/
language: ruby
sudo: false
os:
- linux
- osx
rvm:
- "2.1" # latest 2.1.x
- "2.2.10"
- "2.3.8"
- "2.4.6"
- "2.5.5"
- "2.6.3"
- "ruby-head"
- "jruby-9.1.9.0"
- "jruby-head"
cache: bundler
script:
- bundle exec rake test
- bundle exec rake rubocop
branches:
except:
- "readme-edits"
before_install:
# Install rubygems < 3.0 so that we can support ruby < 2.3
# https://github.com/rubygems/rubygems/issues/2534
- gem install rubygems-update -v '<3' && update_rubygems
# bundler installation needed for jruby-head
# https://github.com/travis-ci/travis-ci/issues/5861
# stick to bundler 1.x in order to support ruby < 2.3
- gem install bundler -v '~> 1.17'
# Travis OS X support is pretty janky. These are some hacks to include tests
# only on versions that actually work.
# (last tested: 2016-11)
matrix:
# exclude: {}
# include: {}
allow_failures:
- rvm: 'ruby-head'
# return results as soon as mandatory versions are done
fast_finish: true
| Use bundler 1.x in tests. | Use bundler 1.x in tests.
| YAML | mit | rest-client/rest-client |
cd774d7a0df3eebc3c72381437c0f4b85f44adac | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.4
- 5.3
before_script:
- composer install --dev --no-interaction
script:
- mkdir -p ./build/logs
- ./vendor/bin/phpunit
after_script:
- php ./vendor/bin/coveralls.php | language: php
php:
- 5.5
- 5.4
- 5.3
before_script:
- composer install --dev --no-interaction
script:
- mkdir -p ./build/logs
- ./vendor/bin/phpunit
after_script:
- php ./vendor/bin/coveralls | Fix bin path to php-coveralls. | Fix bin path to php-coveralls.
| YAML | mit | zomble/pluralize |
46b8b38bbe2c79e913eb17ce0e805702efd033c6 | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
install:
- cmake -HSML -Bbuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- cd build
- make
- cd ..
script:
- cd build
- ctest -V | language: cpp
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
install:
- cmake -HSML -Bbuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_TESTS=on -DBUILD_WITH_EIGEN=on
- cd build
- make
- cd ..
script:
- cd build
- ctest -V | Update Travis CI script to build tests. | Update Travis CI script to build tests.
| YAML | mit | openastro/sml,astropnp/sml,kartikkumar/sml,astropnp/sml,ennehekma/sml,Stardust2013/sml,Stardust2013/sml,ennehekma/sml |
7351f8af9b842439b001bcfd40b6caf75ab2a386 | .travis.yml | .travis.yml | language: node_js
notifications:
email: false
before_install: npm install npm@latest -g
node_js:
- "8"
- "6"
- "4"
script:
- npm run report-coverage
| language: node_js
notifications:
email: false
before_install: npm install npm@latest -g
node_js:
- "8"
- "6"
script:
- npm run report-coverage
| Drop official Node 4 support | Drop official Node 4 support
| YAML | mit | calmm-js/karet.util |
df6b998c1c96855982bf94679ef688465d6bab6f | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.3
cache:
directories:
- Carthage
matrix:
include:
- env: ACTION=test:osx
install:
- gem install xcpretty
- rake setup PLATFORM=macOS
- env: ACTION=test:ios
install:
- gem install xcpretty
- rake setup PLATFORM=iOS
- env: ACTION=test:tvos
install:
- gem install xcpretty
- rake setup PLATFORM=tvOS
- env: ACTION=build:carthage:ios
- env: ACTION=build:carthage:macos
- env: ACTION=build:carthage:tvos
- env: ACTION=build:carthage:watchos
- env: ACTION=build:pod
- env: ACTION=build:package
- env: ACTION=test:package
- env: ACTION=test:package
os: linux
language: generic
sudo: required
dist: trusty
install:
- eval "$(cat bin/setup-swiftenv.bash)"
- bin/swiftenv-install
- env: ACTION=test:package
os: linux
language: generic
sudo: required
dist: trusty
install:
- eval "$(cat bin/setup-swiftenv.bash)"
- env SWIFT_VERSION=$(bin/latest-snapshot '^4.0') bin/swiftenv-install
fast_finish: true
script: rake "$ACTION"
| language: objective-c
osx_image: xcode8.3
cache:
directories:
- Carthage
matrix:
include:
- env: ACTION=test:osx
install:
- gem install xcpretty
- rake setup PLATFORM=macOS
- env: ACTION=test:ios
install:
- gem install xcpretty
- rake setup PLATFORM=iOS
- env: ACTION=test:tvos
install:
- gem install xcpretty
- rake setup PLATFORM=tvOS
- env: ACTION=build:carthage:ios
- env: ACTION=build:carthage:macos
- env: ACTION=build:carthage:tvos
- env: ACTION=build:carthage:watchos
- env: ACTION=build:pod
- env: ACTION=build:package
- env: ACTION=test:package
- env: ACTION=test:package
osx_image: xcode9
- env: ACTION=test:package
os: linux
language: generic
sudo: required
dist: trusty
install:
- eval "$(cat bin/setup-swiftenv.bash)"
- bin/swiftenv-install
- env: ACTION=test:package
os: linux
language: generic
sudo: required
dist: trusty
install:
- eval "$(cat bin/setup-swiftenv.bash)"
- env SWIFT_VERSION=$(bin/latest-snapshot '^4.0') bin/swiftenv-install
fast_finish: true
script: rake "$ACTION"
| Add xcode 9 build to matrix | Add xcode 9 build to matrix
| YAML | mit | sharplet/Regex,sharplet/Regex,sharplet/Regex |
53287bb04ab2d8322c88f200888535df26786092 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4.0'
- '9.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
- provider: npm
skip_cleanup: true
email: tituswormer@gmail.com
api_key:
secure: lQfUtgnBXsX+HZlwTRYdcvTEI1T/axHQWJaFESdSaDSUn4j2NzTQRq/L6zy6GPj1RW5j3qvRpINcatvLzaJWo7nnBb6x16tK1OYzszagdVIyYHLip9DlSoxuHlPi52fbzdnOs2x1OELpo4D8lJJjXXq3zpjRNiHjfWKrBaq+cYE=
on:
tags: true
node: '9.0'
- provider: releases
skip_cleanup: true
api_key:
secure: P6zTOafeMF3tVmK/GdNZ1tnJH4sioRN3s0VWfCepazy7RGBd/Gv3eI4Vgg/N4Y9ulacCKqJYGJYbS+qOrJBTYpZU+bo5dL/ftN5YN5TjGApxA9/E/v84NGUXWVq2D5qDQBKyj5k7ykkpQDpD/41IxAeeVyGLosYkUIcIvXomtcI=
file:
- "remark-yaml-config.js"
- "remark-yaml-config.min.js"
on:
tags: true
node: '9.0'
| language: node_js
node_js:
- '4.0'
- '9.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
provider: releases
skip_cleanup: true
api_key:
secure: P6zTOafeMF3tVmK/GdNZ1tnJH4sioRN3s0VWfCepazy7RGBd/Gv3eI4Vgg/N4Y9ulacCKqJYGJYbS+qOrJBTYpZU+bo5dL/ftN5YN5TjGApxA9/E/v84NGUXWVq2D5qDQBKyj5k7ykkpQDpD/41IxAeeVyGLosYkUIcIvXomtcI=
file:
- "remark-yaml-config.js"
- "remark-yaml-config.min.js"
on:
tags: true
node: '9.0'
| Remove npm deployment from Travis | Remove npm deployment from Travis
| YAML | mit | wooorm/mdast-yaml-config,wooorm/remark-yaml-config |
da7f1d863d77f3a8a0359ff0cf791b0cbc59bcdf | .travis.yml | .travis.yml | sudo: required
language: java
jdk: openjdk8
services:
- docker
install:
- mkdir /tmp/nextflow
- cd /tmp/nextflow
- wget -qO- get.nextflow.io | bash
- sudo ln -s /tmp/nextflow/nextflow /usr/local/bin/nextflow
- cd ${TRAVIS_BUILD_DIR}/tests/
env:
- CLFLAGS="" # Basic run
- CLFLAGS="-r" # Run, RRBS mode
- CLFLAGS="-n" # Run, no-trimming mode
# Commented out until I figure out how to handle multiple docker images nicely
# - CLFLAGS="-p" # BWAmeth use existing ref genome
# - CLFLAGS="-p -b" # BWAmeth run, build reference genome
script:
- "./run_test.sh -b $CLFLAGS" # Run, build reference genome
- "./run_test.sh $CLFLAGS"
| sudo: required
language: java
jdk: openjdk8
services:
- docker
python:
- "2.7"
cache: pip
matrix:
fast_finish: true
install:
# Install Nextflow
- mkdir /tmp/nextflow
- cd /tmp/nextflow
- wget -qO- get.nextflow.io | bash
- sudo ln -s /tmp/nextflow/nextflow /usr/local/bin/nextflow
# Install nf-core/tools
- git clone https://github.com/nf-core/tools.git /tmp/nf-core-tools
- cd /tmp/nf-core-tools
- pip install --user -e .
# Reset
- cd ${TRAVIS_BUILD_DIR}
env:
- CLFLAGS="" # Basic run
- CLFLAGS="-r" # Run, RRBS mode
- CLFLAGS="-n" # Run, no-trimming mode
# Commented out until I figure out how to handle multiple docker images nicely
# - CLFLAGS="-p" # BWAmeth use existing ref genome
# - CLFLAGS="-p -b" # BWAmeth run, build reference genome
script:
- "nf-core lint ${TRAVIS_BUILD_DIR}"
- "cd ${TRAVIS_BUILD_DIR}/tests && ./run_test.sh -b $CLFLAGS" # Run, build reference genome
- "cd ${TRAVIS_BUILD_DIR}/tests && ./run_test.sh $CLFLAGS"
| Add nf-core testing to Travis config | Add nf-core testing to Travis config
| YAML | mit | ewels/NGI-MethylSeq,ewels/NGI-MethylSeq,ewels/NGI-MethylSeq |
8c97c8f682ad4052b32033fdb2509526bd5f5bf1 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# command to install dependencies
install: ./meta/install_devtools.sh
# command to run tests
script: ./static_tests.sh
| sudo: false
language: python
python:
- "2.7"
# Install pip using apt
addons:
apt:
packages:
- python-pip
# Install dependencies using pip
install:
- pip install autopep8
- pip install docformatter
- pip install flake8
- pip install nose
# TODO: Change this to 'pip install pycheker' once pycheker starts working
# with pip. pip install of pycheker is broken at the moment.
- pip install http://sourceforge.net/projects/pychecker/files/pychecker/0.8.19/pychecker-0.8.19.tar.gz/download
- pip install pylint
- pip install snakefood
# command to run tests
script: ./static_tests.sh
| Upgrade Travis-CI to new infrastructure | Meta: Upgrade Travis-CI to new infrastructure
The new Travis CI container-based infrastructure is faster and more
powerful. The new infrastructure does not allows us to use sudo so need
to make certain changes accordingly.
Test plan:
$ ./precommit.sh
Ensure that builds pass on Travis with these set of changes.
Fixes #44
| YAML | apache-2.0 | bloomberg/phabricator-tools,cs-shadow/phabricator-tools,kjedruczyk/phabricator-tools,cs-shadow/phabricator-tools,aevri/phabricator-tools,aevri/phabricator-tools,bloomberg/phabricator-tools,kjedruczyk/phabricator-tools,kjedruczyk/phabricator-tools,cs-shadow/phabricator-tools,cs-shadow/phabricator-tools,aevri/phabricator-tools,bloomberg/phabricator-tools,aevri/phabricator-tools,kjedruczyk/phabricator-tools,kjedruczyk/phabricator-tools,bloomberg/phabricator-tools,aevri/phabricator-tools,cs-shadow/phabricator-tools,bloomberg/phabricator-tools |
d2801df6a8f681fe8736e1805a5715c2c2371aa9 | .travis.yml | .travis.yml | language: python
python:
- '3.5'
- '3.6'
- '3.7'
env:
- HASS=0.96.5
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
| language: python
python:
- '3.6'
- '3.7'
env:
- HASS=0.96.5
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
| Remove Python 3.5 from config checks in Travis CI (since its support is deprecated) | Remove Python 3.5 from config checks in Travis CI (since its support is deprecated)
| YAML | mit | davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config |
943dfffafc982ed5fe0032d30ceb7ab7ff0e77a6 | .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
matrix:
exclude:
- os: osx
r: bioc-devel
# blocklist
# branches:
# except:
# - develop
# safelist
# branches:
# only:
# - master
env:
global:
- LINTR_COMMENT_BOT=true
# r_build_args: "--no-build-vignettes"
# r_check_args: "--no-vignettes"
# Set true before submission to Bioconductor.
# Ignoring built with R 3.5.1 warnings.
# Ignoring BiocInstaller deprecation warning.
warnings_are_errors: false
# Temporarily enable when caching Bioconductor packages.
# script: true
r_packages:
- covr
bioc_packages:
- BiocCheck
- EnsDb.Hsapiens.v75
r_github_packages:
- jimhester/lintr
after_success:
- Rscript -e 'lintr::lint_package()'
- Rscript -e 'covr::codecov()'
- R CMD BiocCheck .
notifications:
email:
recipients:
- mike@steinbaugh.com
on_success: change
on_failure: always
| # 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:
# - master
env:
global:
- LINTR_COMMENT_BOT=true
# r_build_args: "--no-build-vignettes"
# r_check_args: "--no-vignettes"
# Set true before submission to Bioconductor.
# Ignoring built with R 3.5.1 warnings.
# Ignoring BiocInstaller deprecation warning.
warnings_are_errors: false
# Temporarily enable when caching Bioconductor packages.
script: true
r_packages:
- covr
bioc_packages:
- BiocCheck
- EnsDb.Hsapiens.v75
r_github_packages:
- jimhester/lintr
after_success:
- Rscript -e 'lintr::lint_package()'
- Rscript -e 'covr::codecov()'
- R CMD BiocCheck .
notifications:
email:
recipients:
- mike@steinbaugh.com
on_success: change
on_failure: always
| Enable Travis CI build caching | Enable Travis CI build caching
| YAML | mit | steinbaugh/basejump,steinbaugh/seqcloudr,seqcloud/seqcloudR |
513517e36a5823373bebb1b5e1f3c117fde21b32 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9.2
branches:
only:
master
script: travis_retry xcodebuild test -scheme 'JLRoutes-iOS' -configuration Debug -destination "platform=iOS Simulator,name=iPhone 6,OS=8.4" -destination "platform=iOS Simulator,name=iPhone 6,OS=9.3" -destination "platform=iOS Simulator,name=iPhone 6,OS=10.3" -destination "platform=iOS Simulator,name=iPhone 6,OS=latest"
| language: objective-c
osx_image: xcode9.2
branches:
only:
master
script: travis_retry xcodebuild test -scheme 'JLRoutes-iOS' -configuration Debug -destination "platform=iOS Simulator,name=iPhone 6,OS=8.4" -destination "platform=iOS Simulator,name=iPhone 6,OS=9.3" -destination "platform=iOS Simulator,name=iPhone 6,OS=10.3.1" -destination "platform=iOS Simulator,name=iPhone 6,OS=latest"
| Use 10.3.1 instead of 10.3 | Use 10.3.1 instead of 10.3
| YAML | bsd-3-clause | joeldev/JLRoutes |
3ec305eb1fd4b9929e95f96395ef02735d0584c2 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.7.3
- 1.6.3
install:
- go get github.com/mattn/goveralls
script:
- $HOME/gopath/bin/goveralls -v -repotoken $COVERALLS_TOKEN
| sudo: false
language: go
go:
- 1.7.3
- 1.6.3
install:
- go get github.com/kardianos/govendor
- go get github.com/mattn/goveralls
- $HOME/gopath/bin/govendor sync
script:
- $HOME/gopath/bin/goveralls -v -repotoken $COVERALLS_TOKEN
| Add vendoring tool to CI steps | Add vendoring tool to CI steps
| YAML | apache-2.0 | pavel-paulau/gcterm |
48fed120449b2cb288a55489313ab2d13bc28b57 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
before_install:
- pip install pytest pytest-cov
- pip install coveralls
- sudo apt-get install -y gfortran
before_script:
- cd tests
script:
- ./run_tests.sh
after_success:
- cd Qpyl
- coveralls
| language: python
python:
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
before_install:
- pip install -U pytest pytest-cov
- pip install -U coveralls
- sudo apt-get install -y gfortran
before_script:
- cd tests
script:
- ./run_tests.sh
after_success:
- cd Qpyl
- coveralls
| Fix for bug with incompatible pytest-cov version in Travis/py3.5. | Fix for bug with incompatible pytest-cov version in Travis/py3.5.
| YAML | mit | mpurg/qtools,mpurg/qtools |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.