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 |
|---|---|---|---|---|---|---|---|---|---|
bb3ea50120190feedba16ca9acdfe2da5ce2990d | .travis.yml | .travis.yml | language: php
before_install:
- npm install -g dredd
- bundle install
- composer install
php:
- "5.5"
- "5.6"
- "7"
script:
- bundle exec cucumber
- vendor/bin/phpunit
| language: php
before_install:
- npm install -g dredd
- bundle install
- composer install
php:
- "5.4"
- "5.5"
- "5.6"
- "7"
script:
- bundle exec cucumber
- vendor/bin/phpunit
| Test php version 5.4 with project | Test php version 5.4 with project
| YAML | mit | ddelnano/dredd-hooks-php,ddelnano/dredd-hooks-php |
b797c13515a366260e00d5362f8454452df440fa | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
| Test against PHP 7.1 and 7.2 | Test against PHP 7.1 and 7.2 | YAML | mit | laravel/cashier,laravel/cashier |
c4f4679642ac71a5bf2bfac2c75f047eb1d05103 | .travis.yml | .travis.yml | language: php
php:
- '5.4'
- '5.6'
- '7.0'
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: phpunit
notifications:
on_success: never
on_failure: always
| language: php
php:
- '5.6'
- '7.0'
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: php vendor/bin/phpunit Tests --coverage-text
notifications:
on_success: never
on_failure: always
| Fix php versions and fix script call. | Fix php versions and fix script call.
| YAML | mit | IDCI-Consulting/ExtraFormBundle,IDCI-Consulting/ExtraFormBundle |
ae2b2a98146807209bae5b01718e789800ec47e0 | .travis.yml | .travis.yml | sudo: false
language: node_js
env:
- TEST=lint-ci
- TEST=test-ci
node_js:
- 8
- 7
cache:
apt: true
yarn: true
directories:
- node_modules
- flow-typed
- app/node_modules
addons:
apt:
packages:
- icnsutils
- graphicsmagick
- xz-utils
- xorriso
install:
- yarn
- cd app && yarn && cd ..
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3
script:
- "yarn $TEST"
| sudo: false
language: node_js
env:
- TEST=lint-ci
- TEST=test-ci
node_js:
- node
- 8
cache:
apt: true
yarn: true
directories:
- node_modules
- flow-typed
- app/node_modules
addons:
apt:
packages:
- icnsutils
- graphicsmagick
- xz-utils
- xorriso
install:
- yarn
- cd app && yarn && cd ..
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start &
- sleep 3
script:
- "yarn $TEST"
| Test on node 8 and the lastest stable release | enhance(ci): Test on node 8 and the lastest stable release
Because yarn no longer supports node 7:
warning You are using Node "7.10.1" which is not supported and may encounter bugs or unexpected behavior. Yarn supports the following semver range: "^4.8.0 || ^5.7.0 || ^6.2.2 || >=8.0.0"
| YAML | mit | LN-Zap/zap-desktop,LN-Zap/zap-desktop,LN-Zap/zap-desktop |
854e319242c02cfb7cccb6a30a90ffe8e7034e65 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
- '3.5'
- '3.5-dev'
- '3.6'
- '3.6-dev'
before_install:
- openssl aes-256-cbc -K $encrypted_a288ee1b388d_key -iv $encrypted_a288ee1b388d_iv
-in tests/test_data.tar.bz2.enc -out tests/test_data.tar.bz2 -d
- tar jxf tests/test_data.tar.bz2 -C tests
install:
- pip install -U pip pytest-cov codecov
- pip install -I -e .
script:
- chmod +x ./run_tests.py ./setup.py
- python setup.py test
- python setup.py build
- python setup.py sdist
- python setup.py bdist
- python setup.py install
- coverage run --source=pefile --omit="*_test*,*__init__*,*test_lib*" ./run_tests.py
after_success:
- coveralls --verbose
addons:
artifacts:
debug: true
paths:
- $(git ls-files -o | grep .txt | grep -v pefile.egg-info | tr "\n" ":")
- codecov
| language: python
cache: pip
sudo: false
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
sudo: yes
- python: nightly
dist: xenial
sudo: yes
- python: pypy
- python: pypy3
before_install:
- openssl aes-256-cbc -K $encrypted_a288ee1b388d_key -iv $encrypted_a288ee1b388d_iv
-in tests/test_data.tar.bz2.enc -out tests/test_data.tar.bz2 -d
- tar jxf tests/test_data.tar.bz2 -C tests
install:
- pip install -U pip pytest-cov codecov
- pip install -I -e .
script:
- chmod +x ./run_tests.py ./setup.py
- python setup.py test
- python setup.py build
- python setup.py sdist
- python setup.py bdist
- python setup.py install
- coverage run --source=pefile --omit="*_test*,*__init__*,*test_lib*" ./run_tests.py
after_success:
- coveralls --verbose
addons:
artifacts:
debug: true
paths:
- $(git ls-files -o | grep .txt | grep -v pefile.egg-info | tr "\n" ":")
- codecov
| Enable testing for more recent python3.7 and pip | Enable testing for more recent python3.7 and pip
| YAML | mit | erocarrera/pefile |
de86b0f0389d5e974e52c4e4631fe0633ba5bee4 | .travis.yml | .travis.yml | sudo: false
cache: bundler
language: ruby
matrix:
include:
- rvm: jruby-9.0.1.0
env: JRUBY_OPTS='--debug' # get more accurate coverage data
- rvm: 2.0.0
- rvm: 2.1.10
- rvm: 2.2.7
- rvm: 2.3.4
- rvm: 2.4.1
- rvm: ruby-head
- rvm: rbx-3
allow_failures:
- rvm: ruby-head
- rvm: rbx-3
fast_finish: true
before_install:
- gem update --remote bundler
- gem update --system
- rvm @global do gem uninstall bundler -a -x
- rvm @global do gem install bundler -v 1.13.7
install:
- bundle install --retry=3
script:
- bundle exec rake
- bundle exec codeclimate-test-reporter
# Running YARD under jruby crashes so skip checking manual under jruby
- ruby -e "exit 1 unless RUBY_PLATFORM == 'java'" || bundle exec rake generate_cops_documentation
addons:
code_climate:
repo_token: a11b66bfbb1acdf220d5cb317b2e945a986fd85adebe29a76d411ad6d74ec31f
| sudo: false
cache: bundler
language: ruby
matrix:
include:
- rvm: jruby-9.0.1.0
env: JRUBY_OPTS='--debug' # get more accurate coverage data
- rvm: 2.0.0
- rvm: 2.1.10
- rvm: 2.2.7
- rvm: 2.3.4
- rvm: 2.4.1
- rvm: ruby-head
- rvm: rbx-3
allow_failures:
- rvm: ruby-head
- rvm: rbx-3
fast_finish: true
before_install:
- gem update --remote bundler
- gem update --system
- rvm @global do gem uninstall bundler -a -x
- rvm @global do gem install bundler -v 1.13.7
install:
- bundle install --retry=3
script:
- bundle exec rake
- bundle exec codeclimate-test-reporter
# Running YARD under jruby crashes so skip checking manual under jruby
- ruby -e "exit 1 unless RUBY_PLATFORM == 'java'" || bundle exec rake generate_cops_documentation
# Check requiring libraries successfully. See https://github.com/bbatsov/rubocop/pull/4523#issuecomment-309136113
- "ruby -I lib -r rubocop -e 'exit 0'"
addons:
code_climate:
repo_token: a11b66bfbb1acdf220d5cb317b2e945a986fd85adebe29a76d411ad6d74ec31f
| Add a "sanity check" on Travis CI | Add a "sanity check" on Travis CI
| YAML | mit | pocke/rubocop,tdeo/rubocop,deivid-rodriguez/rubocop,tejasbubane/rubocop,jfelchner/rubocop,meganemura/rubocop,bbatsov/rubocop,sue445/rubocop,haziqhafizuddin/rubocop,iGEL/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,maxjacobson/rubocop,maxjacobson/rubocop,bquorning/rubocop,jmks/rubocop,scottmatthewman/rubocop,b-t-g/rubocop,rrosenblum/rubocop,haziqhafizuddin/rubocop,tdeo/rubocop,iGEL/rubocop,jmks/rubocop,vergenzt/rubocop,lumeet/rubocop,sue445/rubocop,maxjacobson/rubocop,meganemura/rubocop,mikegee/rubocop,akihiro17/rubocop,petehamilton/rubocop,panthomakos/rubocop,deivid-rodriguez/rubocop,deivid-rodriguez/rubocop,palkan/rubocop,tdeo/rubocop,NobodysNightmare/rubocop,vergenzt/rubocop,NobodysNightmare/rubocop,jmks/rubocop,vergenzt/rubocop,bquorning/rubocop,panthomakos/rubocop,petehamilton/rubocop,pocke/rubocop,jfelchner/rubocop,akihiro17/rubocop,palkan/rubocop,alexcstark/rubocop,bbatsov/rubocop,akihiro17/rubocop,sue445/rubocop,mikegee/rubocop,rrosenblum/rubocop,urbanautomaton/rubocop,b-t-g/rubocop,tejasbubane/rubocop,lumeet/rubocop,bquorning/rubocop,alexcstark/rubocop,palkan/rubocop,urbanautomaton/rubocop,jfelchner/rubocop,panthomakos/rubocop,smakagon/rubocop,meganemura/rubocop,scottmatthewman/rubocop,mikegee/rubocop,smakagon/rubocop,petehamilton/rubocop |
f89e5c87dcfaad8761ba1d1dbcf70c8605ba091d | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: "6"
- node_js: "5"
env: BABEL=true
- node_js: "4"
env: BABEL=true
- node_js: "0.12"
env: BABEL=true
- node_js: "0.10"
env: BABEL=true
script: "[[ $BABEL == true ]] && npm run test:babel || npm test"
after_success:
- npm run travis-coverage
| language: node_js
matrix:
include:
- node_js: "7"
- node_js: "6"
- node_js: "4"
env: BABEL=true
- node_js: "0.12"
env: BABEL=true
- node_js: "0.10"
env: BABEL=true
script: "[[ $BABEL == true ]] && npm run test:babel || npm test"
after_success:
- npm run travis-coverage
| Remove node v5 tests in favor of v7 | Remove node v5 tests in favor of v7
| YAML | mit | garthenweb/bubleify |
1b93db3ee266fe334f639706c026d34e54880a0f | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.2"
branches:
only:
- master
before_install:
- npm install -g bower
- npm install -g gulp
install:
- npm install
- bower install
script: gulp | language: node_js
node_js:
- "4.2"
branches:
only:
- master
before_install:
- npm install -g bower
- npm install -g gulp
install:
- npm install
- bower install
script: gulp build | Update config to fix latest issues | Update config to fix latest issues
| YAML | mit | kelyvin/kelyvin-ghost-theme,newgene/caffeine-theme,andrewlock/caffeine-theme,andrewlock/caffeine-theme,kelyvin/kelyvin-ghost-theme,kelyvin/caffeine-theme,newgene/caffeine-theme |
b775c3de33b73e1e4de260e9fe83142388dbeafd | .travis.yml | .travis.yml | sudo: required
language: generic
services:
- docker
script:
- docker build -t lab41/base-notebook 01_base_notebook
after_success:
- echo "TRAVIS_BRANCH\: $TRAVIS_BRANCH";
echo "TRAVIS_REPO_SLUG\: $TRAVIS_REPO_SLUG"
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_REPO_SLUG" == "Lab41/nbserver" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" &&
docker push lab41/base-notebook;
fi
| sudo: required
language: generic
services:
- docker
script:
- docker build -t lab41/base-notebook 01_base_notebook
- docker build -t lab41/tensorflow-notebook 02_deep_learning
after_success:
- echo "TRAVIS_BRANCH\: $TRAVIS_BRANCH";
echo "TRAVIS_REPO_SLUG\: $TRAVIS_REPO_SLUG"
- if [ "$TRAVIS_BRANCH" == "master" ] && [ "$TRAVIS_REPO_SLUG" == "Lab41/nbserver" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" &&
docker push lab41/base-notebook;
fi
| Add 02_deep_learning compilation to Travis | Add 02_deep_learning compilation to Travis
| YAML | apache-2.0 | kylemvz/nbserver,agude/nbserver,Lab41/nbserver,agude/nbserver,Lab41/nbserver,kylemvz/nbserver |
0b9a3decd744dd8deada0fcfea5cdbd034b4ef8d | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.6
before_install:
- go get github.com/mattn/goveralls
- go get -u github.com/signalfx/gobuild
- go get -u github.com/golang/lint/golint
- go get -u github.com/opennota/check/cmd/aligncheck
- go get -u github.com/opennota/check/cmd/structcheck
- go get -u github.com/opennota/check/cmd/varcheck
- go get -u github.com/fzipp/gocyclo
- go get -u github.com/tsenart/deadcode
- go get -u github.com/mdempsky/unconvert
- go get -u github.com/gordonklaus/ineffassign
install:
- echo -e "Host heroku.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- echo -e "Host git.apache.org\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- go get -d -v -t ./...
script:
- export PATH=$HOME/gopath/bin:$PATH
- export GOCOVERDIR_DIR="."
- env GOCONVEY_REPORTER=silent GOLIB_LOG=/dev/null gobuild
after_script:
- cat coverage.out
| language: go
sudo: false
go:
- 1.6
before_install:
- go get -u github.com/signalfx/gobuild
- go get -u github.com/alecthomas/gometalinter
- gometalinter --install --update
install:
- echo -e "Host heroku.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- echo -e "Host git.apache.org\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- go get -d -v -t ./...
script:
- export PATH=$HOME/gopath/bin:$PATH
- export GOCOVERDIR_DIR="."
- env GOCONVEY_REPORTER=silent GOLIB_LOG=/dev/null gobuild
after_script:
- cat coverage.out
| Use gometalinter's commands to install all the linters | Use gometalinter's commands to install all the linters
| YAML | apache-2.0 | signalfx/golib,signalfx/golib |
cd7797dc7cd772007e5cba150f1cf86c1033f5c0 | .travis.yml | .travis.yml | language: python
python:
- '3.7'
- '3.8'
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
before_install:
- pip install -U pip
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
before_script:
- mv secrets_dummy.yaml secrets.yaml
- pre-commit install-hooks
script:
- pre-commit run yamllint --all-files
- hass -c . --script check_config
| dist: bionic
language: python
python:
- '3.7'
- '3.8'
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
before_install:
- pip install -U pip
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
before_script:
- mv secrets_dummy.yaml secrets.yaml
- pre-commit install-hooks
script:
- pre-commit run yamllint --all-files
- hass -c . --script check_config
| Update TravisCI configuration to use Ubuntu 18.04 | Update TravisCI configuration to use Ubuntu 18.04
| YAML | mit | davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config |
0b515968f77f75baca546c301902b6785539228f | .travis.yml | .travis.yml | notifications:
email:
recipients:
- tim@takkconsulting.co.uk
language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
- "11"
- "12"
| notifications:
email:
recipients:
- tim@takkconsulting.co.uk
language: node_js
node_js:
- "8"
- "9"
- "10"
- "11"
- "12"
| Remove node 6 and 7 support | Remove node 6 and 7 support
| YAML | mit | timbeadle/grunt-cfpathcheck,timbeadle/grunt-cfpathcheck |
4b51ca3018c32f51b9f49b924ea29e9d7149b025 | .travis.yml | .travis.yml | language: ruby
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y texlive-latex-base texlive-latex-recommended
before_script:
- createdb -U travis travis
after_failure:
- "pwd"
- "cat ./spec/tmp/latex.err"
- "cat ./spec/tmp/example1.log"
- "cat ./spec/tmp/psql.out"
bundler_args: --without debug
services:
- postgresql
rvm:
- 2.2.2
- 2.3
- 2.4
- 2.5
- ruby-head
| language: ruby
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y texlive-latex-base texlive-latex-recommended
before_script:
- createdb -U travis travis
after_failure:
- "pwd"
- "cat ./spec/tmp/latex.err"
- "cat ./spec/tmp/example1.log"
- "cat ./spec/tmp/psql.out"
bundler_args: --without debug
services:
- postgresql
rvm:
- 2.2.2
- 2.3
- 2.4
- ruby-head
| Fix failing db test when db already exists. | Fix failing db test when db already exists.
| YAML | mit | ddoherty03/fat_table,ddoherty03/fat_table |
6046fa8b52aab71c9b17b1fb4e57ec4302411456 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "pypy"
install:
- pip install --upgrade setuptools coveralls
- python setup.py develop
script:
- coverage run --source=flowlogs_reader setup.py test
after_success:
- coveralls
| language: python
dist: xenial
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "pypy2.7-6.0"
- "pypy3.5-6.0"
install:
- pip install --upgrade setuptools coveralls
- python setup.py develop
script:
- coverage run --source=flowlogs_reader setup.py test
after_success:
- coveralls
| Update Python versions for testing | Update Python versions for testing | YAML | apache-2.0 | obsrvbl/flowlogs-reader |
f9e01f52687331fa78d3ebb3a6130442cc17e8e7 | .travis.yml | .travis.yml | language: cpp
os:
- linux
- osx
addons:
apt:
packages:
- libboost-dev
- libicu-dev
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install boost ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install icu4c ; fi
script:
- mkdir build
- cd build/
- cmake ..
- make
| language: cpp
os:
- linux
- osx
dist: trusty
sudo: false
addons:
apt:
packages:
- libboost-dev
- libicu-dev
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install boost ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install icu4c ; fi
script:
- mkdir build
- cd build/
- cmake ..
- make
| Use a more modern Ubuntu version for Travis. | Use a more modern Ubuntu version for Travis.
| YAML | apache-2.0 | thomaskrause/graphANNIS,thomaskrause/graphANNIS,thomaskrause/graphANNIS,thomaskrause/graphANNIS,thomaskrause/graphANNIS,thomaskrause/graphANNIS,thomaskrause/graphANNIS |
5e2d3146e4d066838eb1bff530928e01a368ce04 | .travis.yml | .travis.yml | before_install:
- mysql -uroot -Dmysql -e 'UPDATE user SET password=PASSWORD("root") WHERE user="root"; FLUSH PRIVILEGES;'
install:
- pip install flake8
- sudo ./setup.sh
before_script:
flake8 .
script:
- INBOX_ENV=test py.test tests
| before_install:
- mysql -uroot -Dmysql -e 'UPDATE user SET password=PASSWORD("root") WHERE user="root"; FLUSH PRIVILEGES;'
install:
- sudo pip install flake8
- sudo ./setup.sh
before_script:
flake8 .
script:
- INBOX_ENV=test py.test tests
| Make Travis try extra hard to run flake8+pep | Make Travis try extra hard to run flake8+pep
| YAML | agpl-3.0 | closeio/nylas,jobscore/sync-engine,closeio/nylas,closeio/nylas,jobscore/sync-engine,nylas/sync-engine,nylas/sync-engine,nylas/sync-engine,closeio/nylas,nylas/sync-engine,jobscore/sync-engine,jobscore/sync-engine |
f3eb29f1c037e2adf048211d6b5a5c080152b652 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
install:
- composer global require "fxp/composer-asset-plugin:~1.0.0" --no-plugins
- composer install --no-interaction --prefer-source
script: vendor/bin/phpunit | language: php
php:
- 7.0
- 7.1
install:
- composer global require fxp/composer-asset-plugin --no-plugins
- composer install --no-interaction --prefer-source
script: vendor/bin/phpunit | Solve problems with Yii2 dependencies | Solve problems with Yii2 dependencies
| YAML | mit | mikemadisonweb/yii2-rabbitmq |
1349267471d0f2ca4055133f3a94ebf185234f1b | .travis.yml | .travis.yml | language: python
before_install:
- wget -nc https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
- bash Miniconda-latest-Linux-x86_64.sh -b -p conda
- source conda/bin/activate root
- conda install -y -q -c https://conda.anaconda.org/rdkit rdkit pytables bsddb
install:
- pip install -r requirements.txt
script:
- nosetests
- cd docs && make html
after_script:
- pip install codacy_coverage
- coverage xml
- python-codacy-coverage -r coverage.xml
cache:
- conda
- Miniconda-latest-Linux-x86_64.sh
sudo: false
| language: python
before_install:
- wget -nc https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh
- bash Miniconda-latest-Linux-x86_64.sh -b -p conda
- source conda/bin/activate root
- conda install -y -q -c https://conda.anaconda.org/rdkit rdkit pytables bsddb pandas coverage sphinx
install:
- pip install -r requirements.txt
script:
- nosetests
- cd docs && make html
after_script:
- pip install codacy_coverage
- coverage xml
- python-codacy-coverage -r coverage.xml
cache:
- conda
- Miniconda-latest-Linux-x86_64.sh
sudo: false
| Install deps using conda instead of pip, to reduce Travis-CI build time. | Install deps using conda instead of pip, to reduce Travis-CI build time.
| YAML | apache-2.0 | 3D-e-Chem/kripodb,3D-e-Chem/python-modified-tanimoto,3D-e-Chem/kripodb |
30c716c46da3833b38ac298f32f42b1efb1a3824 | .travis.yml | .travis.yml | language: android
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-23.0.3
# The SDK version used to compile your project
- android-23
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-23
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-armeabi-v7a-android-21
before_script:
# First assemble the project before launching the emulator
- ./gradlew assemble
# Emulator Management: Create, Start and Wait
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
# By default Travis-ci executes './gradlew build connectedCheck' if no 'script:' section found.
- ./gradlew build connectedCheck --info
after_success:
- bash <(curl -s https://codecov.io/bash) | language: android
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-23.0.3
# The SDK version used to compile your project
- android-23
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-23
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-armeabi-v7a-android-21
before_script:
# First assemble the project before launching the emulator
- ./gradlew assemble
# Emulator Management: Create, Start and Wait
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
after_success:
- bash <(curl -s https://codecov.io/bash) | Revert "Add info logging to find the build error" | Revert "Add info logging to find the build error"
This reverts commit ee15db9816b4cb252a51a49e33bfa9e309ff3472.
| YAML | apache-2.0 | passsy/CompositeAndroid,passsy/CompositeAndroid |
bc4e7cb64ecc3308830bcb17663bd5ddf9c99111 | .travis.yml | .travis.yml | language: node_js
node_js:
- '10'
deploy:
provider: releases
api_key: ${GITHUB_TOKEN}
file: build/bundle.js
skip_cleanup: true
on:
repo: DennisSchwartz/mplexviz-ngraph
| language: node_js
node_js:
- '10'
deploy:
provider: releases
api_key: ${GITHUB_TOKEN}
file: build/bundle.js
skip_cleanup: true
on:
branch: master
tags: true
| Update CI config to deploy only on master commits with tags. | Update CI config to deploy only on master commits with tags.
| YAML | mit | DennisSchwartz/mplexviz-ngraph,DennisSchwartz/mplexviz-ngraph |
e632d0dd44a727ab203e998768172931d34767be | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
install: python setup.py build
script: python setup.py test -q
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install: python setup.py build
script: python setup.py test -q
| Update Travis CI configuration to also test with Python 2.6. | Update Travis CI configuration to also test with Python 2.6.
| YAML | mit | wikimedia/operations-debs-python-mwparserfromhell,SunghanKim/mwparserfromhell,yuvipanda/mwparserfromhell,wikimedia/operations-debs-python-mwparserfromhell,gencer/mwparserfromhell,earwig/mwparserfromhell,yuvipanda/mwparserfromhell,wikimedia/operations-debs-python-mwparserfromhell,yuvipanda/mwparserfromhell,kumasento/mwparserfromhell,SunghanKim/mwparserfromhell,SunghanKim/mwparserfromhell,earwig/mwparserfromhell,gencer/mwparserfromhell,SunghanKim/mwparserfromhell,kumasento/mwparserfromhell,jayvdb/mwparserfromhell,jayvdb/mwparserfromhell,gencer/mwparserfromhell,earwig/mwparserfromhell,jayvdb/mwparserfromhell,jayvdb/mwparserfromhell,kumasento/mwparserfromhell,wikimedia/operations-debs-python-mwparserfromhell,yuvipanda/mwparserfromhell,gencer/mwparserfromhell |
553f4e9e2fb9f51ab2149cb204edd1c82b7ed41b | .travis.yml | .travis.yml | language: php
php: [5.4, 5.5, 5.6, hhvm]
matrix:
include:
# Test against librabbitmq cutting-edge
- { php: 5.5, env: LIBRABBITMQ_VERSION=master }
allow_failures:
- php: hhvm
services: [rabbitmq]
before_script:
- sh -c 'if [ "$LIBRABBITMQ_VERSION" != "" ]; then ./tests/bin/install_librabbitmq.sh; fi;'
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "extension=amqp.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`; fi;'
- composer selfupdate
- composer install --prefer-source
- sh -c "sudo ./tests/bin/prepare_rabbit.sh"
| language: php
php: [5.4, 5.5, 5.6, hhvm]
matrix:
include:
# Test against librabbitmq cutting-edge
- { php: 5.5, env: LIBRABBITMQ_VERSION=master }
- { php: 5.4, env: COMPOSER_FLAGS='--prefer-lowest --prefer-stable' }
allow_failures:
- php: hhvm
services: [rabbitmq]
before_script:
- sh -c 'if [ "$LIBRABBITMQ_VERSION" != "" ]; then ./tests/bin/install_librabbitmq.sh; fi;'
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "extension=amqp.so" >> `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`; fi;'
- composer selfupdate
- composer update --prefer-source -n $COMPOSER_FLAGS
- sh -c "sudo ./tests/bin/prepare_rabbit.sh"
| Add testing against the lowest dependencies on Travis | Add testing against the lowest dependencies on Travis | YAML | mit | odolbeau/swarrot,stof/swarrot,MattKetmo/swarrot,lafourchette/swarrot,swarrot/swarrot,odolbeau/swarrot,olaurendeau/swarrot,metfan/swarrot,olaurendeau/swarrot,stof/swarrot,metfan/swarrot,swarrot/swarrot,MattKetmo/swarrot,lafourchette/swarrot |
b9d15dc1b7f88eec404c17659afe0273df53c64d | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer install
| language: php
sudo: required
dist: trusty
group: edge
php:
- 7.0
- 7.1
- nightly
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer install
| Change Travis environment, add PHP nightly | Change Travis environment, add PHP nightly
| YAML | mit | mpajunen/phamda |
2d97c545ef6a34d932415760f734e514341732e1 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: generic
addons:
apt:
packages:
- python3
- r-base
- gcc
- g++
- default-jdk
- sqlite3
before_install:
# Install a more recent Scala version
- wget http://downloads.lightbend.com/scala/2.11.7/scala-2.11.7.tgz
- sudo dpkg -i scala-2.11.7.tgz
# Install Conda (based on http://conda.pydata.org/docs/travis.html)
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- rm miniconda.sh
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda install numpy scipy scikit-learn pandas nltk
before_script:
- python3 --version
- Rscript --version
- gcc --version
- g++ --version
- javac -version
- scalac -version
- sqlite3 -version
script: ./run_tests.py
| sudo: required
dist: trusty
language: generic
addons:
apt:
packages:
- python3
- r-base
- gcc
- g++
- default-jdk
- sqlite3
before_install:
# Install a more recent Scala version
- wget http://www.scala-lang.org/files/archive/scala-2.11.6.deb
- sudo dpkg -i scala-2.11.6.deb
- rm scala-2.11.6.deb
# Install Conda (based on http://conda.pydata.org/docs/travis.html)
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- rm miniconda.sh
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda install numpy scipy scikit-learn pandas nltk
before_script:
- python3 --version
- Rscript --version
- gcc --version
- g++ --version
- javac -version
- scalac -version
- sqlite3 -version
script: ./run_tests.py
| Fix the Scala download URL | Fix the Scala download URL
| YAML | mit | yasserglez/programming-problems,yasserglez/programming-problems,yasserglez/programming-problems,yasserglez/programming-problems,yasserglez/programming-problems |
3b8f628f904e72ceb0ce4ba1746d5a99eb6fdcbc | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.10"
- "iojs"
after_success:
- "npm run post-to-coveralls-io"
| language: node_js
node_js:
- "0.12"
- "0.10"
- "iojs"
- "4"
- "5"
after_success:
- "npm run post-to-coveralls-io"
| Test against more Node versions | Test against more Node versions
Can we test it against new Nodes? I think everything should be fine. | YAML | mit | jayrbolton/flyd,jayrbolton/flyd,jplikesbikes/flyd,paldepind/flyd,jayrbolton/flyd,paldepind/flyd,paldepind/flyd,jplikesbikes/flyd,jplikesbikes/flyd |
2457098d93fb3a0a62d012fbc575af6e5d37bde5 | .travis.yml | .travis.yml | # Travis CI configuration
language: php
services:
- redis-server
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit
| # Travis CI configuration
language: php
services:
- redis-server
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install --dev
script: phpunit
| Drop PHP 5.4, add 7.0 | Drop PHP 5.4, add 7.0
| YAML | mit | cviebrock/eloquent-sluggable |
fb5b05812753498509e0c45d78ac2a5e70c40b48 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
script: make test
| language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
script: make test
| Add testing for Python 3.6 | Add testing for Python 3.6 | YAML | bsd-2-clause | kennethreitz/dj-database-url |
8d4d540c5162628286cc6848ae230eb152b6efd2 | .travis.yml | .travis.yml | language: python
python:
- 2.7
env: DISPLAY=:99
before_install:
- sudo apt-get update
- "/sbin/start-stop-daemon --start --quiet --make-pidfile --pidfile /tmp/custom_xvfb_99.pid --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1024x768x24"
install:
- sudo apt-get install flashplugin-nonfree subversion
# As long as we have invasive changes lets get the trunk version of marionette-client
- svn checkout https://github.com/mozilla/gecko-dev/trunk/testing/marionette/client
- "cd client && python setup develop && cd .."
- python setup.py develop
- pip install mozdownload pep8
before_script:
- pep8 greenlight
# Download Firefox Nightly which is compatible with the used version of
# marionette client
- mozdownload -t daily
- tar -xvf *firefox*.tar.bz2
script:
- run-greenlight-tests --binary firefox/firefox
notifications:
# email:
# - dev-automation@lists.mozilla.org
irc:
- "irc.mozilla.org#automation" | language: python
python:
- 2.7
env: DISPLAY=:99
before_install:
- sudo apt-get update
- "/sbin/start-stop-daemon --start --quiet --make-pidfile --pidfile /tmp/custom_xvfb_99.pid --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1024x768x24"
install:
- sudo apt-get install flashplugin-nonfree subversion
# As long as we have invasive changes lets get the trunk version of marionette-client
- svn checkout https://github.com/mozilla/gecko-dev/trunk/testing/marionette/client
- "cd client && python setup.py develop && cd .."
- python setup.py develop
- pip install mozdownload pep8
before_script:
- pep8 greenlight
# Download Firefox Nightly which is compatible with the used version of
# marionette client
- mozdownload -t daily
- tar -xvf *firefox*.tar.bz2
script:
- run-greenlight-tests --binary firefox/firefox
notifications:
# email:
# - dev-automation@lists.mozilla.org
irc:
- "irc.mozilla.org#automation" | Fix py extension of setup script | Fix py extension of setup script
| YAML | mpl-2.0 | armenzg/firefox-ui-tests,armenzg/firefox-ui-tests,sr-murthy/firefox-ui-tests,myrdd/firefox-ui-tests,armenzg/firefox-ui-tests,Motwani/firefox-ui-tests,chmanchester/firefox-ui-tests,sr-murthy/firefox-ui-tests,whimboo/firefox-ui-tests,myrdd/firefox-ui-tests,chmanchester/firefox-ui-tests,sr-murthy/firefox-ui-tests,Motwani/firefox-ui-tests,whimboo/firefox-ui-tests,galgeek/firefox-ui-tests,galgeek/firefox-ui-tests,galgeek/firefox-ui-tests,myrdd/firefox-ui-tests,gbrmachado/firefox-ui-tests,utvar/firefox-ui-tests,utvar/firefox-ui-tests,gbrmachado/firefox-ui-tests,whimboo/firefox-ui-tests |
f00d81bc1d8586d5371354e248e0a6af3c798492 | .travis.yml | .travis.yml | sudo: true
language: erlang
# Choose which platforms you want your builds run against (done in parallel)
env:
# - ST=Squeak-4.4
# - ST=Squeak-4.5
- ST=Squeak-Trunk
matrix:
allow_failures:
- env: ST=Squeak-Trunk
# Boilerplate ... should be no reason to edit the install section
install:
- export PROJECT_HOME="$(pwd)"
- cd $HOME
- wget -q -O builderCI.zip https://github.com/dalehenrich/builderCI/archive/v1.0.0.zip
- unzip -q builderCI.zip
- cd builderCI-*
- source build_env_vars
- ln -s $PROJECT_HOME $GIT_PATH
- ./build_image.sh
# use a different script if you want to customize how travis tests are run
# use verbose flag to dump transcript unconditionally
script: $BUILDER_CI_HOME/testTravisCI.sh # -verbose
| sudo: true
language: erlang
# Choose which platforms you want your builds run against (done in parallel)
env:
- ST=Squeak-4.6
# Boilerplate ... should be no reason to edit the install section
install:
- export PROJECT_HOME="$(pwd)"
- cd $HOME
- wget -q -O builderCI.zip https://github.com/dalehenrich/builderCI/archive/v1.0.0.zip
- unzip -q builderCI.zip
- cd builderCI-*
- source build_env_vars
- ln -s $PROJECT_HOME $GIT_PATH
- ./build_image.sh
# use a different script if you want to customize how travis tests are run
# use verbose flag to dump transcript unconditionally
script: $BUILDER_CI_HOME/testTravisCI.sh # -verbose
| Use Squeak 4.6 instead of SqueakTrunk | Use Squeak 4.6 instead of SqueakTrunk | YAML | mit | HPI-SWA-Teaching/SWT15-Project-02,HPI-SWA-Teaching/squIRC-Bots |
980dc114926224027baaeffc80013614260a1643 | .travis.yml | .travis.yml | sudo: false
language: node_js
install:
- npm install -g yarn
- yarn self-update
- yarn install
before_script:
- npm run build
- ./index.js init
node_js:
- "7"
notifications:
email: false
webhooks: http://cq-dokidokivisual.rhcloud.com/travis
# blacklist
branches:
except:
- tmp
cache:
yarn: true
directories:
- node_modules
| sudo: false
language: node_js
before_script:
# - yarn install # TravisCI runs `yarn` in install phase.
- npm run build
- ./index.js init
node_js:
- "7"
notifications:
email: false
webhooks: http://cq-dokidokivisual.rhcloud.com/travis
# blacklist
branches:
except:
- tmp
cache:
yarn: true
directories:
- node_modules
| Remove 'install' section to install by TravisCI's builtin script. | Remove 'install' section to install by TravisCI's builtin script.
| YAML | mit | karen-irc/karen,karen-irc/karen |
fc81f82844b16713976e31eec802adcf62a056d7 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| rvm:
- 1.8.7
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| Remove 1.9.2 from Travis CI. Is anyone using that one still? | Remove 1.9.2 from Travis CI. Is anyone using that one still?
| YAML | mit | Mange/cucumber-the |
f6ecd89f553bfa194fe866ec272cb57d731163bb | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
matrix:
fast_finish: true
include:
- php: 5.6
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.6.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*
- php: 5.6
env: SYMFONY_VERSION=3.1.*
allow_failures:
php: 7.0
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer selfupdate
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
install:
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
script:
- mkdir -p build/logs
- ./bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
matrix:
fast_finish: true
include:
- php: 5.6
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.6.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=2.8.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*
- php: 5.6
env: SYMFONY_VERSION=3.1.*
allow_failures:
php: 7.0
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer selfupdate
- if [ "$SYMFONY_VERSION" != "" ]; then composer require "symfony/symfony:${SYMFONY_VERSION}" --no-update; fi;
install:
- composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
script:
- mkdir -p build/logs
- ./bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- ./bin/coveralls -v
| Use Coveralls from bin dir | Use Coveralls from bin dir
| YAML | mit | scheb/two-factor-bundle,scheb/two-factor-bundle |
a6c5019ec1021387a01afd2085af029ef0b17174 | .travis.yml | .travis.yml | language: objective-c
script:
- xctool -workspace VENTouchLock.xcworkspace -scheme VENTouchLockTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool test -workspace VENTouchLock.xcworkspace -scheme VENTouchLockTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool -workspace VENTouchLockSample/VENTouchLockSample.xcworkspace -scheme VENTouchLockSample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool test -workspace VENTouchLockSample/VENTouchLockSample.xcworkspace -scheme VENTouchLockSample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
before_install:
- gem i cocoapods --no-ri --no-rdoc
- brew uninstall xctool; brew install xctool --HEAD;
install:
- pod install
- pod install --project-directory=VENTouchLockSample/ | language: objective-c
script:
- xctool -workspace VENTouchLock.xcworkspace -scheme VENTouchLockTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xcodebuild test -workspace VENTouchLock.xcworkspace -scheme VENTouchLockTests -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool -workspace VENTouchLockSample/VENTouchLockSample.xcworkspace -scheme VENTouchLockSample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
- xctool test -workspace VENTouchLockSample/VENTouchLockSample.xcworkspace -scheme VENTouchLockSample -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO
before_install:
- gem i cocoapods --no-ri --no-rdoc
- brew uninstall xctool; brew install xctool --HEAD;
install:
- pod install
- pod install --project-directory=VENTouchLockSample/ | Use xcodebuild for unit tests in order to use keychain | Use xcodebuild for unit tests in order to use keychain
| YAML | mit | msdgwzhy6/VENTouchLock,cyupa/VENTouchLock,abhuzz/VENTouchLock,scottphc/VENTouchLock,lijie121210/VENTouchLock,SympleHealth/VENTouchLock,1debit/VENTouchLock,venmo/VENTouchLock |
2c13fcd30f900d6118367f565ef21c3e70333a5f | .travis.yml | .travis.yml | ---
sudo: false
language: ruby
before_install:
- rvm reinstall $TRAVIS_RUBY_VERSION --patch
http://github.com/k0kubun/ruby/commit/6747055326e634899f0efb0ba7cf46.patch
install:
- gem update --system --no-document || test true
- gem install bundler --no-document || test true
- bundle install --jobs 3 --retry 3
before_script:
- git config --local user.email 'travis@travis.ci'
- git config --local user.name 'Travis CI'
script:
- bundle exec rake
- bundle exec overcommit --run
rvm:
- 2.0.0
- 2.1
- 2.2
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
addons:
code_climate:
repo_token: f06a22b27a507a3054eb69873c9e3bbc9ef97476d6ef22eec8cd24686494cb2b
| ---
sudo: false
language: ruby
before_install:
- rvm reinstall $TRAVIS_RUBY_VERSION --patch
http://github.com/k0kubun/ruby/commit/6747055326e634899f0efb0ba7cf46.patch
install:
- gem update --system --no-document || test true
- gem install bundler --no-document || test true
- bundle install --jobs 3 --retry 3
before_script:
- git config --local user.email 'travis@travis.ci'
- git config --local user.name 'Travis CI'
script:
- bundle exec rake
- bundle exec overcommit --run
rvm:
- 2.0.0
- 2.1.7
- 2.2.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
addons:
code_climate:
repo_token: f06a22b27a507a3054eb69873c9e3bbc9ef97476d6ef22eec8cd24686494cb2b
| Test against latest patch level rubies | Test against latest patch level rubies
| YAML | mit | deivid-rodriguez/pry-byebug,stephenprater/pry-byebug,andrewfader/pry-byebug |
d9ebead884f3cb210401dd8203fa56c82242b631 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
bundler_args: --retry=3 --jobs=3
script: bundle exec rspec spec
notifications:
emails: false
| sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0-preview1
bundler_args: --retry=3 --jobs=3
script: bundle exec rspec spec
notifications:
emails: false
| Add ruby 2.3.0 preview to build list | Add ruby 2.3.0 preview to build list
| YAML | mit | jacobbednarz/envato-ruby-sdk,jacobbednarz/envato-ruby-sdk |
6fe73fe6c8d181847623123a6b55f702cefd1302 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
fast_finish: true
install:
- travis_retry composer install
script:
- phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- if [ "$TRAVIS_PHP_VERSION" == "5.5" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
- if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
| language: php
sudo: false
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install
script:
- phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- if [ "$TRAVIS_PHP_VERSION" == "5.5" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
- if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
| Enable caching of dependencies installed with Composer | Enhancement: Enable caching of dependencies installed with Composer
| YAML | mit | thephpleague/uri-schemes,mleko/url,thephpleague/uri-manipulations,localheinz/uri,localheinz/url,KorvinSzanto/uri,thephpleague/uri-parser |
6a71271a7c355f22a783c0f4239d041be0d9197b | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- jruby-21mode
| language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3.0"
| Update Travis CI config and remove JRuby | Update Travis CI config and remove JRuby | YAML | mit | ai/rails-sass-images |
f0e4d8b11606d24caf08d7565db61f92f743b978 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.1
before_script:
- brew install couchdb
- couchdb &
script:
- ./setup.rb
- xcodebuild -workspace ObjectiveCloudant.xcworkspace/ -scheme SwiftCloudant -destination 'platform=iOS Simulator,OS=latest,name=iPhone 4S' build test | xcpretty; exit ${PIPESTATUS[0]}
- pod lib lint
| language: objective-c
osx_image: xcode7.2
before_script:
- brew install couchdb
- couchdb &
script:
- ./setup.rb
- xcodebuild -workspace ObjectiveCloudant.xcworkspace/ -scheme SwiftCloudant -destination 'platform=iOS Simulator,OS=latest,name=iPhone 6S' build test | xcpretty; exit ${PIPESTATUS[0]}
- pod lib lint
| Update to xcode 7.2 and use iPhone 6s for tests | Update to xcode 7.2 and use iPhone 6s for tests
| YAML | apache-2.0 | cloudant/swift-cloudant,cloudant/swift-cloudant |
8b9e006e23b0b8e6aaaab0e7ce43b377bf29826e | .travis.yml | .travis.yml | branches:
only:
- production
language: python
python: 2.7
cache:
directories:
- $HOME/.cache/pip
- $HOME/.cache/lektor/builds
install: "pip install Lektor"
script: "lektor build"
deploy:
provider: script
script: "lektor deploy ghpages"
on:
branch: production
| branches:
only:
- production
language: python
python: 2.7
cache:
directories:
- $HOME/.cache/pip
- $HOME/.cache/lektor/builds
# http://stackoverflow.com/a/38216821
# install: "pip install Lektor"
install: "pip install git+https://github.com/singingwolfboy/lektor.git@fix-ghpages-https-deploy#egg=lektor"
script: "lektor build"
deploy:
provider: script
script: "lektor deploy ghpages"
on:
branch: production
| Use temporary bugfix for deployment | Use temporary bugfix for deployment
| YAML | mit | seantis/lektor-seantis-website,seantis/lektor-seantis-website,seantis/lektor-seantis-website |
bb43850424e9c816528d2c313cd117020b12982c | .travis.yml | .travis.yml | language: cpp
os:
# - linux
- osx
compiler:
- gcc
- clang
osx_image: xcode9.2
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew tap homebrew/php; brew update; fi
install:
# Install packages from Homebrew/Aptitude
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install swig php71 lua; fi
before_script:
- mkdir build
- cd build
- then cmake .. -DTINYSPLINE_WITH_RUBY=FALSE
script:
- make
| language: cpp
os:
# - linux
- osx
compiler:
- gcc
- clang
osx_image: xcode9.2
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew tap homebrew/php; brew update; fi
install:
# Install packages from Homebrew/Aptitude
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install swig php71 lua; fi
before_script:
- mkdir build
- cd build
- cmake .. -DTINYSPLINE_WITH_RUBY=FALSE
script:
- make
| Remove stray "then" from Travis buildscript | Remove stray "then" from Travis buildscript
| YAML | mit | msteinbeck/tinyspline,msteinbeck/tinyspline,retuxx/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,retuxx/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,retuxx/tinyspline |
a42ff6e4773e7ab927a819438d138ffa3f5a694c | .travis.yml | .travis.yml | language: cpp
compiler: gcc
dist: trusty
sudo: required
branches:
only:
- develop
addons:
apt:
sources:
- george-edison55-precise-backports
packages:
- cmake
- cmake-data
install:
- sudo apt-get upgrade --yes
script:
- mkdir build && cd build && cmake .. && make
- ./xzbuf-test | language: cpp
compiler: gcc
dist: trusty
sudo: required
branches:
only:
- develop
addons:
apt:
sources:
- george-edison55-precise-backports
packages:
- cmake
- cmake-data
install:
- sudo apt-get install --yes --only-upgrade cmake-data
- sudo apt-get install --yes --only-upgrade cmake
script:
- mkdir build && cd build && cmake .. && make
- ./xzbuf-test | Update cmake version in Travis CI config. | Update cmake version in Travis CI config.
| YAML | mit | jonathonl/xzbuf |
67c2819aedf269fedd0d1960c0a037cf7ebbe2d2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
sudo: false
script:
- npm run test-with-cov
after_success:
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_TOKEN ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info
git:
depth: 10
| language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
sudo: false
test:
- npm run test-with-cov
deploy:
provider: npm
email: peter@reidweb.com
api_key:
secure: HtlC7Ylj1Pv7iQHAvmRsClO26jOHfe/s+JUWZwNSbMM7x49XQxjSEuP+XD1kWNBlZ4SM432qRoSgojtBusXXWPcJ7OzH9kAnvHafmR9t70lNXW0yazycIhFooxAzYZvhRTRmP4Ysi+S+A8Zs+gk/GMkb/JkySOKP9pEjZE5WyP6hRNvUFEAkmzWKD74IIkYKWwjB4PFY5a5wdhGb0GeC+yYFm5+t9KYfbXtHkluYNwqVQDwoBWRoXXQz7yTdMY+251wwqQFYPjSVIMvmUzNDB7Qae8b6GsjRu4HKLnUtMVcN5Q7g0LoArlNlm9rHa7m0djhcR6ss8OCCdFzAKj45rw5Irllvbd/rKZgN/ykqOGdvi0eSEXJYFnQJpr2M28XUVSE1r7+FSxkojnFTVUXSTxutOZ7bKET0VfW/x9q9CrN93a2G7K7QfdUw3/9AweGuNvJ2MecJokrifXt79kS+6Dpvgfpz2alAkzgQhZBrnL0grHoe+l9VKuvF7Wr36yZ0gxWON4kIoNqfWNWoJTNQgCCecN69ulha4xlpbuunhEZEP8hLKdxDv/vt+s/Nr3wUnvuadXwCeINRAdwZeM1sxDjJ2Q3o42zWNU1fzk8sR1dPaEG8pKMd1O84KNjFFenKJOlOaHpzeEux8/F4RRQmfHV+FtYq+4ITTvlO+uIGoNI=
on:
tags: true
repo: ReidWeb/GitInspector-CSV
branch: master
after_success:
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_TOKEN ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info
git:
depth: 10
| Add auto-deployment stage to Travis config | chore(ci): Add auto-deployment stage to Travis config
| YAML | mit | ReidWeb/GitInspector-CSV |
a66a197d7da4a2cf5dea92dafdc9e3355ea1944a | .travis.yml | .travis.yml | dist: xenial
sudo: false
language: python
python:
- "3.5"
- "3.6"
- "3.7"
install: "python setup.py -q install"
script: py.test
| dist: xenial
sudo: false
language: python
python:
- "3.5"
- "3.6"
- "3.7"
install:
- pip install .[tests]
script: py.test
| Change Travis-CI install command to use extra | Change Travis-CI install command to use extra
| YAML | mit | delph-in/pydelphin,goodmami/pydelphin |
397466b44b61ade55c9660066625f4675c0ce902 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
matrix:
exclude:
- rvm: 2.2.2
gemfile: gemfiles/rails_3.gemfile
before_install:
- gem install bundler
script:
- bundle exec rspec
addons:
code_climate:
repo_token: 88c5452d41835351d037ce45781e2e88b1c0bdc8508ee9722746bac633bba88e | language: ruby
cache: bundler
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
gemfile:
- gemfiles/rails_3.gemfile
- gemfiles/rails_4.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
matrix:
exclude:
- rvm: 2.2.2
gemfile: gemfiles/rails_3.gemfile
before_install:
- gem install bundler
script:
- bundle exec rspec
addons:
code_climate:
repo_token: 88c5452d41835351d037ce45781e2e88b1c0bdc8508ee9722746bac633bba88e | Migrate to new Travis container-based infrastructure | Migrate to new Travis container-based infrastructure
| YAML | mit | Papierkorb/config,Papierkorb/config,Papierkorb/config |
435dcc73ac91718f80d1e4d4a9e969529ec37295 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: stable
- rust: beta
| Allow failure on stable and beta, since nightly is required for lazy_static doc test | Allow failure on stable and beta, since nightly is required for lazy_static doc test
| YAML | apache-2.0 | phil-opp/rust-once |
b9bec0b7422fd0b19b1e2d993510054ca36f252b | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
| language: ruby
rvm:
- 1.9.3
- 2.0.0
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
| Add Ruby 2.0.0 to Travis configuration. | Add Ruby 2.0.0 to Travis configuration.
| YAML | mit | tristandunn/cucumber-websocket-example,tristandunn/cucumber-websocket-example |
3749a419ef54cd9945e5b5bbb23570f9b5afbeda | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 5 on Travis CI. | Test with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/pair,bigeasy/pair |
6c0d5937f53809f82dd2b02f2ba5c5200cd7291d | .travis.yml | .travis.yml | sudo: false
language: cpp
compiler:
- gcc
- clang
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi
script:
- mkdir build
- cd build
- cmake ..
- make
- ctest -D ExperimentalBuild
- ctest -D ExperimentalMemCheck
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- kalakris-cmake
packages:
- gcc-4.7
- g++-4.7
- valgrind
- cmake
| sudo: false
language: cpp
compiler:
- gcc
- clang
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi
script:
- mkdir build
- cd build
- cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ..
- make
- ctest -D ExperimentalBuild
- ctest -D ExperimentalMemCheck
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- kalakris-cmake
packages:
- gcc-4.7
- g++-4.7
- valgrind
- cmake
| Build types added to matrix. | CI: Build types added to matrix.
| YAML | bsd-2-clause | offa/seasocks,mattgodbolt/seasocks,offa/seasocks,offa/seasocks,mattgodbolt/seasocks,offa/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,mattgodbolt/seasocks,offa/seasocks,mattgodbolt/seasocks,offa/seasocks |
b82cf17ed296cd7b625bdd4500d91e916feb1ba0 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without=development
rvm:
- jruby
- rbx
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby
fast_finish: true
| language: ruby
rvm:
- jruby
- rbx
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby
fast_finish: true
| Install dev gems on Travis CI | Install dev gems on Travis CI
| YAML | mit | nTraum/ETF2L |
a56722114be5d4e0f4789cdf0d9e28be91d927fc | .travis.yml | .travis.yml | language: rust
rust:
- stable
- bet
- nightly
matrix:
allow_failures:
- rust: nightly
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
| Fix typo in Travis config | Fix typo in Travis config
| YAML | unlicense | scott-linder/rustpn |
0fdf8569e67bc75b8e8984c2c2fcd6bf3d4edad9 | .travis.yml | .travis.yml | language: csharp
mono: latest
dotnet: 2.0.0
script:
- cd src
- dotnet test
| language: csharp
mono: latest
dotnet: 2.0.0
script:
- cd src/Tests
- dotnet test
| Change working directory to test suite directory | Change working directory to test suite directory | YAML | mit | mikeobrien/TDMSReader,mikeobrien/TDMSReader,mikeobrien/TDMSReader |
b39e82a864425fb42a3cab94dd6ad803fdee3125 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8" | language: node_js
sudo: false
node_js:
- "0.11"
- "0.10"
- "0.8"
| Enable Travis builds using Docker | Enable Travis builds using Docker | YAML | mit | iwhitfield/neek,zackehh/neek |
2602e470823128b116d9c4208eadf59b411e0001 | .travis.yml | .travis.yml | language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls
| language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls | Fix whitespace in YAML: tabs no longer allowed | Fix whitespace in YAML: tabs no longer allowed
| YAML | artistic-2.0 | wu-lee/module-release,wu-lee/module-release |
289998f465c881892e7ee9d7779b1bf9e638571b | .travis.yml | .travis.yml | sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/bin:$PATH
install:
- ./openquake-env-setup-py3-precise64.run -- -d ~
- pip install https://github.com/gem/oq-hazardlib/archive/python3.zip
# We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise
# the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found
script:
# FIXME --with-doctest does not work
- PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture
| sudo: false
# We are using our own python
language: c
addons:
apt:
packages:
- wget
before_install:
- wget http://ftp.openquake.org/travis/openquake-env-setup-py3-precise64.run
- chmod +x openquake-env-setup-py3-precise64.run
env:
LD_LIBRARY_PATH=$HOME/openquake/lib
PATH=$HOME/openquake/bin:$PATH
install:
- ./openquake-env-setup-py3-precise64.run -- -d ~
- pip install https://github.com/gem/oq-hazardlib/archive/python3.zip
# We must set the PYTHONPATH to the root oq-engine (insted of oq-engine/openquake) because otherwise
# the full 'openquake' namespace is overwritten and then hazardlib and baselib are not found
script:
# FIXME --with-doctest does not work
# - PYTHONPATH=. nosetests -vsx -a'!slow' --with-xunit --nologcapture
- PYTHONPATH=. nosetests -v -a'!slow'
| Make a test run with just nosetests -v -a '!slow' | Make a test run with just nosetests -v -a '!slow'
Former-commit-id: 88638c1ad0674a29d66c281caf3ea7435a63a48e [formerly 810cf7503d1b400a51461ae5e541a4002bb3606b] [formerly 810cf7503d1b400a51461ae5e541a4002bb3606b [formerly 83766620c946a5862511a4bd9ae969346e788d4d]]
Former-commit-id: 28b377c5181d608ee8b108e71a743476225a4973
Former-commit-id: c880c9ce8ce46e0abf80f72585e9ca0e4eff7855 | YAML | agpl-3.0 | gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine |
ca27786ce4f5628645ba8541859bb34d7bf4af34 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.8'
- '0.10'
- '0.11'
before_script:
- npm install -g grunt-cli
matrix:
allow_failures:
- node_js: '0.11'
| language: node_js
node_js:
- '0.8'
- '0.10'
- '0.11'
before_script:
- npm install -g grunt-cli
matrix:
fast_finish: true
allow_failures:
- node_js: '0.11'
| Allow `fast_finish` with Travis CI. | Allow `fast_finish` with Travis CI.
See http://blog.travis-ci.com/2013-11-27-fast-finishing-builds/
| YAML | mit | joshuaspence/lesscsslint |
dcbed055357819543c7d07144dc1c8859e9a73c6 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install: pip install -r requirements.txt
script: python tests/test.py unit
branches:
only:
- travis-ci
| language: python
python:
- "2.6"
- "2.7"
before_install:
- sudo apt-get update
- sudo apt-get install swig
install: pip install -r requirements.txt
script: python tests/test.py unit
branches:
only:
- travis-ci
| Install swig (needed for M2Crypto) | Install swig (needed for M2Crypto)
| YAML | mit | appneta/boto,rjschwei/boto,kouk/boto,darjus-amzn/boto,Timus1712/boto,ric03uec/boto,jameslegg/boto,alfredodeza/boto,cyclecomputing/boto,janslow/boto,andresriancho/boto,shaunbrady/boto,felix-d/boto,varunarya10/boto,pfhayes/boto,revmischa/boto,vishnugonela/boto,israelbenatar/boto,SaranyaKarthikeyan/boto,Pretio/boto,vijaylbais/boto,awatts/boto,nexusz99/boto,ekalosak/boto,disruptek/boto,weka-io/boto,disruptek/boto,dablak/boto,tpodowd/boto,rayluo/boto,s0enke/boto,weebygames/boto,lra/boto,appneta/boto,ocadotechnology/boto,abridgett/boto,tpodowd/boto,j-carl/boto,khagler/boto,yangchaogit/boto,shipci/boto,ryansb/boto,dimdung/boto,dablak/boto,trademob/boto,rosmo/boto,jamesls/boto,acourtney2015/boto,lochiiconnectivity/boto,rjschwei/boto,bryx-inc/boto,ddzialak/boto,jindongh/boto,drbild/boto,podhmo/boto,FATruden/boto,nishigori/boto,clouddocx/boto,nikhilraog/boto,jamesls/boto,elainexmas/boto,kouk/boto,Asana/boto,jotes/boto,serviceagility/boto,stevenbrichards/boto,ramitsurana/boto,lochiiconnectivity/boto,zzzirk/boto,alex/boto,alex/boto,zachmullen/boto,bleib1dj/boto,TiVoMaker/boto,andresriancho/boto,campenberger/boto,jameslegg/boto,drbild/boto,garnaat/boto |
d22d20bc4bb1ee75daea6b5cdb7517b3d28c5220 | .travis.yml | .travis.yml | language: node_js
sudo: required # requirement for postgres 9.5
dist: trusty
node_js:
- "6.10"
- "7.7"
services:
- postgresql
- redis-server
env:
- CXX=g++-4.8 NODE_ENV=development DB_ENV=travis
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- unicode-data
- graphicsmagick
postgresql: "9.5"
before_script:
- psql -c 'create database libertysoil;' -U postgres
script: "npm run travis"
| language: node_js
sudo: required # requirement for postgres 9.5
dist: yakkety
node_js:
- "6.10"
- "7.7"
services:
- postgresql
- redis-server
env:
- CXX=g++-4.8 NODE_ENV=development DB_ENV=travis
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- unicode-data
- graphicsmagick
postgresql: "9.5"
before_script:
- psql -c 'create database libertysoil;' -U postgres
script: "npm run travis"
| Use newer ubuntu for tests | Use newer ubuntu for tests
(we use Yakkety on "alpha")
| YAML | agpl-3.0 | Lokiedu/libertysoil-site,Lokiedu/libertysoil-site |
fc662ca76e61d91bf4da68d84d57055530c46792 | .travis.yml | .travis.yml | language: ruby
branches:
only:
- master
script:
- bundle exec rake
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
| language: ruby
branches:
only:
- master
script:
- bundle exec rake
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
| Update Travis Config for Ruby 2.6.0 | Update Travis Config for Ruby 2.6.0
| YAML | mit | panthomakos/timezone |
804746ee85bafe0934bd0e9bde6d3995ded27f05 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
before_script:
- psql -c 'create database database_test;' -U postgres
| language: ruby
rvm:
- 2.3
before_script:
- psql -c 'create database database_test;' -U postgres
| Use ruby 2.3 on Travis | Use ruby 2.3 on Travis
| YAML | mit | joshpeterson/summa,joshpeterson/summa,joshpeterson/summa,joshpeterson/summa |
e21d428b71cdb3a1d03a0ec34730ef4a59aeb27a | .travis.yml | .travis.yml | language: rust
sudo: false
notifications:
irc: "irc.mozilla.org#piston-internals"
os:
- linux
- osx
rust:
- stable
- beta
- nightly
env:
global:
- secure: "WI/r7hbDhenb7zPXht8J0mhcx5aUgY22cCrwYmNksMmgIK9hYfPjZ68XzaQ7+Ity8b12TlHM8lGRN9bIsyAZEiRIkxkZAArY9bXAOExJaAT+yOyxhEs/QdrGB6iRhC6FTxPwgUH82j0nFL1UI7HqBnOy3g3tv23jq1AlD9N3t0k="
matrix:
- FEATURES=''
- FEATURES='gif_codec'
- FEATURES='jpeg'
- FEATURES='png_codec'
- FEATURES='pnm'
- FEATURES='tga'
- FEATURES='tiff'
- FEATURES='webp'
- FEATURES='hdr'
script:
- if [ -z "$FEATURES" ]; then
cargo build -v &&
if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then cargo test -v; fi &&
cargo doc -v;
else
cargo build -v --no-default-features --features "$FEATURES" &&
if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then cargo test -v --no-default-features --features "$FEATURES"; fi &&
cargo doc -v;
fi
| language: rust
sudo: false
notifications:
irc: "irc.mozilla.org#piston-internals"
os:
- linux
- osx
rust:
- stable
- beta
- nightly
env:
global:
- secure: "WI/r7hbDhenb7zPXht8J0mhcx5aUgY22cCrwYmNksMmgIK9hYfPjZ68XzaQ7+Ity8b12TlHM8lGRN9bIsyAZEiRIkxkZAArY9bXAOExJaAT+yOyxhEs/QdrGB6iRhC6FTxPwgUH82j0nFL1UI7HqBnOy3g3tv23jq1AlD9N3t0k="
matrix:
- FEATURES=''
- FEATURES='gif_codec'
- FEATURES='jpeg'
- FEATURES='png_codec'
- FEATURES='pnm'
- FEATURES='tga'
- FEATURES='tiff'
- FEATURES='webp'
- FEATURES='hdr'
script:
- if [ -z "$FEATURES" ]; then
cargo build -v &&
if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then cargo test -v; fi &&
cargo doc -v;
else
cargo build -v --no-default-features --features "$FEATURES" &&
if [ "$TRAVIS_RUST_VERSION" = "nightly" ]; then cargo test -v --no-default-features --features "$FEATURES"; fi &&
cargo doc -v --no-default-features --features "$FEATURES";
fi
| Build doc with relevant feaures flags. | Build doc with relevant feaures flags.
As suggested by @HeroicKatora .
| YAML | mit | PistonDevelopers/image,PistonDevelopers/image,mbrubeck/image |
746dd7999f9db23276144ee2160920bd01ed860c | .travis.yml | .travis.yml | sudo: false
language: python
python:
- 2.7
- 3.5
install:
- pip install tox "setuptools>=28.2"
script:
- tox
branches:
except:
- skeleton
deploy:
provider: pypi
server: https://upload.pypi.org/legacy/
on:
tags: true
all_branches: true
python: 3.5
user: jaraco
# supply password with `travis encrypt --add deploy.password`
distributions: dists
skip_upload_docs: true
| sudo: false
language: python
python:
- 2.7
- 3.6
install:
- pip install tox "setuptools>=28.2"
script:
- tox
branches:
except:
- skeleton
deploy:
provider: pypi
server: https://upload.pypi.org/legacy/
on:
tags: true
all_branches: true
python: 3.6
user: jaraco
# supply password with `travis encrypt --add deploy.password`
distributions: dists
skip_upload_docs: true
| Use Python 3.6 by default | Use Python 3.6 by default
| YAML | mit | jaraco/keyring,jaraco/jaraco.context,yougov/librarypaste,jaraco/zipp,cherrypy/cheroot,jaraco/jaraco.classes,jaraco/backports.functools_lru_cache,yougov/pmxbot,yougov/librarypaste,jazzband/inflect,pwdyson/inflect.py,yougov/mettle,pytest-dev/pytest-runner,jaraco/jaraco.collections,yougov/pmxbot,yougov/mettle,jaraco/hgtools,jaraco/calendra,jaraco/rwt,jaraco/tempora,jaraco/portend,yougov/mettle,jaraco/jaraco.logging,jaraco/jaraco.functools,yougov/pmxbot,cherrypy/magicbus,jaraco/irc,jaraco/jaraco.itertools,jaraco/jaraco.text,python/importlib_metadata,jaraco/jaraco.path,yougov/mettle,hugovk/inflect.py,jaraco/jaraco.stream |
cb7d50acb426b5f6c4e195bab1fbcb6a303ddf6a | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk11
- openjdk11
before_install:
- wget https://archive.apache.org/dist/maven/maven-3/3.6.1/binaries/apache-maven-3.6.1-bin.zip
- unzip -qq apache-maven-3.6.1-bin.zip
- export M2_HOME=$PWD/apache-maven-3.6.1
- export PATH=$M2_HOME/bin:$PATH
install: true
script:
- mvn --errors clean verify site
- bash <(curl -s https://codecov.io/bash) -f ./com.io7m.jpplib.core/target/site/jacoco/jacoco.xml
notifications:
irc: "chat.freenode.net#io7m"
| language: java
jdk:
- oraclejdk11
- openjdk11
before_install:
- wget https://archive.apache.org/dist/maven/maven-3/3.6.2/binaries/apache-maven-3.6.2-bin.zip
- unzip -qq apache-maven-3.6.2-bin.zip
- export M2_HOME=$PWD/apache-maven-3.6.2
- export PATH=$M2_HOME/bin:$PATH
install: true
script:
- mvn --errors clean verify site
- bash <(curl -s https://codecov.io/bash) -f ./com.io7m.jpplib.core/target/site/jacoco/jacoco.xml
notifications:
irc: "chat.freenode.net#io7m"
| Use Maven 3.6.2 in CI | Use Maven 3.6.2 in CI
| YAML | bsd-3-clause | io7m/jpplib,io7m/jpplib |
93f0ce2c4f99598187295fb53179ee0778cabf2f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.8"
before_script:
- wget http://s3.amazonaws.com/influxdb/influxdb_0.5.5_amd64.deb
- sudo dpkg -i influxdb_0.5.5_amd64.deb
- sleep 15
script: npm run travis-test
| language: node_js
node_js:
- "0.10"
- "0.8"
env:
- INFLUX=0.5.5
- INFLUX=0.4.0
before_script:
- wget "http://s3.amazonaws.com/influxdb/influxdb_$(echo $INFLUX)_amd64.deb"
- sudo dpkg -i influxdb_0.5.5_amd64.deb
- sleep 15
script: npm run travis-test
| Test both 0.4.0 & 0.5.5 | Test both 0.4.0 & 0.5.5
| YAML | mit | dandv/node-influx,node-influx/node-influx,dandv/node-influx,node-influx/node-influx |
e7a6002b73f1627b24d21f180dce027bc03b389f | .travis.yml | .travis.yml | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
env:
global:
- MAVEN_OPTS="-XX:MaxPermSize=512m -Xmx4g"
script:
- mvn clean package jacoco:report coveralls:jacoco
- mvn -f lob-java-examples/pom.xml clean package
| language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
env:
global:
- MAVEN_OPTS="-XX:MaxPermSize=512m -Xmx2048m"
script:
- mvn clean package jacoco:report coveralls:jacoco
- mvn -f lob-java-examples/pom.xml clean package
| Fix -Xmx parameter with 2048m. | Fix -Xmx parameter with 2048m.
| YAML | mit | lob/lob-java |
f7beaee1ee5459141280c7c70bae5d248c9333a2 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
# Use container based infrastructure
sudo: false
env:
- CMD=./test
python:
- 2.6
- 2.7
- 3.3
- 3.4
matrix:
allow_failures:
# Python 3.3, 3.4 allowed to fail for now. This is because
# django-appdata==0.1.3, (latest on GitHub as of this writing) which is a
# dependency of aldryn-apphooks-config is not really Py3 compatible.
- python: 3.3
- python: 3.4
fast_finish: true
include:
- python: 2.7
env: CMD="flake8 aldryn_faq"
cache:
directories:
- $HOME/.wheelhouse
install:
- pip wheel --wheel-dir $HOME/.wheelhouse -r test_requirements.txt
- pip install --use-wheel --no-index --find-links=$HOME/.wheelhouse -r test_requirements.txt
script: coverage run test_settings.py
after_success: coveralls
| # Config file for automatic testing at travis-ci.org
language: python
# Use container based infrastructure
sudo: false
env:
- CMD=./test
python:
- 2.6
- 2.7
- 3.3
- 3.4
matrix:
# allow_failures:
fast_finish: true
include:
- python: 2.7
env: CMD="flake8 aldryn_faq"
cache:
directories:
- $HOME/.wheelhouse
install:
- pip wheel --wheel-dir $HOME/.wheelhouse -r test_requirements.txt
- pip install --use-wheel --no-index --find-links=$HOME/.wheelhouse -r test_requirements.txt
script: coverage run test_settings.py
after_success: coveralls
| Update test matrix now that appdata has been updated | Update test matrix now that appdata has been updated
| YAML | bsd-3-clause | czpython/aldryn-faq,czpython/aldryn-faq,czpython/aldryn-faq,czpython/aldryn-faq |
c6b086c5df319856d8c22fd6734397b4f7fde3b4 | .travis.yml | .travis.yml | sudo: required
language: python
services:
- docker
before_install:
- sudo apt-get -qq update
- sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine
- sudo pip install docker
install:
- pip install molecule
# - pip install required driver (e.g. docker, python-vagrant, shade)
script:
- molecule test | sudo: required
language: python
services:
- docker
before_install:
- sudo apt-get -qq update
- sudo apt-get install -o Dpkg::Options::="--force-confold" --force-yes -y docker-engine
- sudo pip install --upgrade docker
install:
- pip install molecule
# - pip install required driver (e.g. docker, python-vagrant, shade)
script:
- molecule test | Add docker python client as dependency again | Add docker python client as dependency again
| YAML | mit | dockerized89/kvm-ansible-role |
24f166704232e6abac41294882b68377bc68acd6 | .travis.yml | .travis.yml | language: php
php:
- 7.1
install:
- composer install
after_success:
- travis_retry php vendor/bin/coveralls -v
| language: php
php:
- 7.1
install:
- composer install
after_success:
- travis_retry php bin/coveralls -v
| Fix vendor bin path in after_success | Fix vendor bin path in after_success
| YAML | mit | atf-hackathon/ebox,atf-hackathon/ebox,atf-hackathon/ebox |
0b7d9fbb918aa04ee8c132e24c01afad7216b1a1 | .travis.yml | .travis.yml | language: cpp
sudo: required
dist: trusty
compiler:
- gcc
os:
- linux
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y git
- sudo apt-get install -y libboost-all-dev
- sudo apt-get install -y libpqxx-3.1 libpqxx3-dev
- sudo apt-get install -y libconfig++
- sudo apt-get install -y cmake
- sudo apt-get install -y libtinyxml2-dev
- sudo apt-get install -y doxygen
- sudo apt-get install -y root-system
before_script:
- mkdir build
- cd build
- cmake ..
script: make all tests
| language: cpp
sudo: required
dist: trusty
compiler:
- gcc
os:
- linux
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y git
- sudo apt-get install -y sshpass
- sudo apt-get install -y libboost-all-dev
- sudo apt-get install -y libpqxx-3.1 libpqxx3-dev
- sudo apt-get install -y libconfig++
- sudo apt-get install -y cmake
- sudo apt-get install -y libtinyxml2-dev
- sudo apt-get install -y doxygen
- sudo apt-get install -y root-system
before_script:
- sshpass -p "${KOZA_PASSWORD}" scp ${KOZA_USERNAME}@koza.if.uj.edu.pl:/home/framework_configs/configDB.cfg ./DBHandler/Config/
- sshpass -p "${KOZA_PASSWORD}" scp ${KOZA_USERNAME}@koza.if.uj.edu.pl:/home/framework_configs/configDB.cfg.koza ./DBHandler/Config/
- sshpass -p "${KOZA_PASSWORD}" scp ${KOZA_USERNAME}@koza.if.uj.edu.pl:/home/framework_configs/ReadMe.txt ./DBHandler/Config/
- mkdir build
- cd build
- cmake ..
script: make all tests
| Update download_data.sh for non-interactive use | Update download_data.sh for non-interactive use
| YAML | apache-2.0 | kmuzalewska/j-pet-framework,kmuzalewska/j-pet-framework,kmuzalewska/j-pet-framework,kmuzalewska/j-pet-framework,kmuzalewska/j-pet-framework |
b2cedc593c3251a649449aaefd547aa456792b9e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
before_install: gem install bundler -v 1.16.1
| language: ruby
rvm:
- 2.4.5
- 2.5.4
- 2.6.1
before_install: gem install bundler -v 1.16.1
| Update supported Ruby versions to Ruby >= 2.4 | Update supported Ruby versions to Ruby >= 2.4
This removes support for Ruby < 2.4 and adds Travis CI configurations
for the most recent minor versions >= 2.4 (2.4.5, 2.5.4, 2.6.1).
Support for Ruby 2.3 has already ended and 2.4 will reach its end of
life at the end of March 2019.
| YAML | mit | proiel/proiel,proiel/proiel |
c1002b6cac4781fa169dea2d5a7a0a9b5a4466a3 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2.5
- 2.3.1
- ruby-head
- jruby-9.0.5.0
- jruby-9.1.5.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
apt:
packages:
- graphviz
| language: ruby
cache: bundler
rvm:
- 2.2.5
- 2.3.3
- 2.4.0
- ruby-head
- jruby-9.1.6.0
- jruby-head
before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
addons:
apt:
packages:
- graphviz
| Use latest ruby versions for test | Use latest ruby versions for test
- Update Ruby 2.3.1 to 2.3.3
- Add Ruby 2.4.0
- Remove jruby-9.0.5.0
- Update jruby-9.1.5.0 to jruby-9.1.6.0
| YAML | apache-2.0 | tumugi/tumugi,tumugi/tumugi,tumugi/tumugi |
7a9f5f9571c9c548f37a4001bccf00b5ffaa8a48 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
addons:
apt:
packages:
- libgraphicsmagick++1-dev
install:
- pip install -r requirements/dev.txt
before_script:
- createuser -U postgres -S -D -R -P uqam
- createdb -U postgres --owner uqam --encoding UTF8 uqam
script:
- ./manage.py test | language: python
python:
- "2.7"
addons:
apt:
packages:
- git
- libboost-python-dev
- libgraphicsmagick++1-dev
- libjpeg62-turbo-dev
- libldap2-dev
- libpq-dev
- libsasl2-dev
- postgresql
- postgresql-contrib
- python-dev
- python-pip
install:
- pip install -r requirements/dev.txt
before_script:
- createuser -U postgres -S -D -R -P uqam
- createdb -U postgres --owner uqam --encoding UTF8 uqam
script:
- ./manage.py test | Add system depedencies for Python packages | Add system depedencies for Python packages
| YAML | bsd-3-clause | uq-eresearch/uqam,uq-eresearch/uqam,uq-eresearch/uqam,uq-eresearch/uqam |
39bebfd0cc0506d93380c4a6420730038e0a1083 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.2
xcode_project: HHKL.xcodeproj
xcode_scheme: HHKL
xcode_sdk: iphonesimulator9.2
script:
- carthage bootstrap --platform iOS --no-use-binaries
- xctool -project HHKL.xcodeproj -scheme HHKL -sdk iphonesimulator9.2 -destination 'platform=iOS Simulator,name=iPhone 6s' ONLY_ACTIVE_ARCH=NO clean build
| language: objective-c
osx_image: xcode7.2
xcode_project: HHKL.xcodeproj
xcode_scheme: HHKL
xcode_sdk: iphonesimulator9.2
before_script:
- carthage bootstrap --platform iOS --no-use-binaries
script:
- xctool -project HHKL.xcodeproj -scheme HHKL -sdk iphonesimulator9.2 -destination 'platform=iOS Simulator,name=iPhone 6s' ONLY_ACTIVE_ARCH=NO clean build
| Move carthage command to before_script section | Move carthage command to before_script section
| YAML | mit | alphatroya/hhkl-ios,alphatroya/hhkl-ios |
1459f1921e27a11606149f648f95687425f04855 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- hhvm
- 7.0
- 5.6
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: hhvm
install:
- composer install
- composer require satooshi/php-coveralls
script:
- vendor/bin/phpunit --coverage-text
after_script:
- travis_retry vendor/bin/coveralls
| sudo: false
language: php
php:
- 7.1
- 7.0
- 5.6
- 5.3
- 5.4
- 5.5
matrix:
fast_finish: true
include:
# test against the latest HHVM version by using a newer image
- php: hhvm
sudo: true
dist: trusty
group: edge # Use edge image until the next travis CI stable image update
allow_failures:
- php: 7.1
- php: hhvm
install:
- composer install
- composer require satooshi/php-coveralls
script:
- vendor/bin/phpunit --coverage-text
after_script:
- travis_retry vendor/bin/coveralls
| Test against the current hhvm version and php 7.1 | Test against the current hhvm version and php 7.1
This provides the current HHVM version (3.17.1 as of this PR) and will track with each release (i.e. will be 3.18 when 3.18 is released).
If testing against HHVM LST versions is desired follow this guide. https://docs.travis-ci.com/user/languages/php#HHVM-versions
Should be able to change to container based Trusty after 1Q17 https://blog.travis-ci.com/2016-11-08-trusty-container-public-beta/ | YAML | bsd-3-clause | mikey179/vfsStream |
4d9891c8d0733095eb24d8b28829479b37a30283 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: 7.2
- php: nightly
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
- composer dumpautoload -o
script:
- vendor/bin/php-cs-fixer fix .
- vendor/bin/phpunit --coverage-text --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
php:
- 7.1
- 7.2
- 7.3
- nightly
matrix:
allow_failures:
- php: nightly
## Cache composer
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
- composer dumpautoload -o
script:
- vendor/bin/php-cs-fixer fix .
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| Remove sudo, remove unsupported PHP versions, added PHP 7.3 | Remove sudo, remove unsupported PHP versions, added PHP 7.3
| YAML | mit | cmgmyr/laravel-messenger |
985f6a102723c2502673e1573fde0623ecea7a7d | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -r requirements.txt --use-mirrors
- pip install pep8 --use-mirrors
- pip install https://github.com/dcramer/pyflakes/tarball/master
- pip install coveralls
- pip install -q -e . --use-mirrors
before_script:
- "pep8 --exclude=migrations paiji2_carpooling"
- pyflakes -x W paiji2_carpooling
script:
- coverage run --source=paiji2_carpooling manage.py test
- python setup.py test
after_success:
- coveralls
| language: python
python:
- "2.7"
env:
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=1.8
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install -r requirements.txt --use-mirrors
- pip install pep8 --use-mirrors
- pip install https://github.com/dcramer/pyflakes/tarball/master
- pip install coveralls
- pip install -e . --use-mirrors
before_script:
- "pep8 --exclude=migrations paiji2_carpooling"
- pyflakes -x W paiji2_carpooling
script:
- coverage run --source=paiji2_carpooling manage.py test
- python setup.py test
after_success:
- coveralls
| Remove quiet option from pip install | Remove quiet option from pip install
| YAML | agpl-3.0 | rezometz/django-paiji2-carpooling,rezometz/django-paiji2-carpooling |
54115f9df57089b4e9d92963cfcc5f3bebcd79c6 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
- "3.7-dev" # 3.7 development branch
# Command to install dependencies.
install:
- pip install pipenv
- make install-dev
# Command to run tests.
script: make lint
| language: python
# Versions on https://docs.travis-ci.com/user/languages/python/
python:
- "3.5"
- "3.6"
- "3.7"
- "3.7-dev"
- "3.8-dev"
# Command to install dependencies.
install:
- pip install pipenv
- make install-dev
# Command to run tests.
script: make lint
| Add Python versions for tests | Add Python versions for tests
| YAML | mit | MonsieurV/PiPocketGeiger |
61a9ae52d6c65cb319cf0b86045eff6df5ed0ef5 | .travis.yml | .travis.yml | language: ruby
env:
AWS_REGION=ap-southeast-1
AWS_ACCESS_KEY_ID=xxx
AWS_SECRET_ACCESS_KEY=xxx
rvm:
- 1.9.3
- 2.1.2
script: 'bundle exec rspec'
| language: ruby
env:
AWS_REGION=ap-southeast-1
AWS_ACCESS_KEY_ID=xxx
AWS_SECRET_ACCESS_KEY=xxx
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
cache: bundler
script: 'bundle exec rspec'
| Add Ruby 2.0 and bundler cache. | Add Ruby 2.0 and bundler cache.
| YAML | mit | clearhaus/dynamodb-mutex,clearhaus/dynamodb-mutex |
3c0e042d49a73fc8eef699419101bb8e0ba52347 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- vendor/
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: nightly
notifications:
email: false
irc: "irc.iiens.net#Clicky"
before_script:
- rm composer.lock
- composer self-update -n
- composer install --dev -n
- mkdir -p ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/
- pecl install runkit || true
- phpenv config-add tests/php.ini
script:
- vendor/bin/phpunit --coverage-clover clover.xml
after_success:
- composer require --dev satooshi/php-coveralls
- travis_retry vendor/bin/coveralls -n -v
| language: php
sudo: false
cache:
directories:
- vendor/
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: nightly
notifications:
email: false
irc: "irc.iiens.net#Clicky"
before_script:
- rm composer.lock
- composer self-update -n
- composer install -n
- mkdir -p ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/
- pecl install runkit || true
- phpenv config-add tests/php.ini
script:
- vendor/bin/phpunit --coverage-clover clover.xml
after_success:
- composer require --dev satooshi/php-coveralls
- travis_retry vendor/bin/coveralls -n -v
| Remove obsolete --dev composer option | Remove obsolete --dev composer option
| YAML | bsd-3-clause | fpoirotte/XRL |
5f3a4a478fd3bb950d227522b232299bb3370244 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-2.2.3
| Update list of supported rubies | Update list of supported rubies | YAML | mit | ikhakoo/pundit,idlweb/pundit,justin808/pundit,geekninja/pundit,thewatts/pundit,luisdaher/pundit,AlexVPopov/pundit,rickypchen/pundit,xuwupeng2000/pundit,yatmsu/pundit,elabs/pundit,goodylabs/pundit,olegantonyan/pundit,sideci-sample/sideci-sample-pundit,beanieboi/pundit,demiazz/pundit,stefania11/pundit,ram-krishan/pundit,maxcal/pundit,engineyard/pundit,yakovenkodenis/pundit,jackjennings/pundit,jkgold/pundit,selaromi/pundit |
cc0e58712f30eb37c9b1df475b42015f2fde4b9f | .travis.yml | .travis.yml | language: sh
script: make
matrix:
include:
- os: osx
- os: linux
before_install:
- git clone git://github.com/bmizerany/roundup
- cd roundup
- ./configure
- make
- export PATH="$PATH:$PWD"
- cd -
- os: linux
before_install: command -v brew >/dev/null 2>&1 || < /dev/null ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)" && PATH="$PATH:$HOME/.linuxbrew/bin"
| language: sh
script: make
matrix:
include:
- os: osx
- os: linux
before_install:
- git clone git://github.com/bmizerany/roundup
- cd roundup
- ./configure
- make
- export PATH="$PATH:$PWD"
- cd -
allow_failures:
- os: linux
before_install: command -v brew >/dev/null 2>&1 || < /dev/null ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install)" && PATH="$PATH:$HOME/.linuxbrew/bin"
| Allow linux brew to fail | Allow linux brew to fail
| YAML | mit | aaronjameslang/git-hook-commit-message-cbeams |
6db85fd3b5693982bb07eb19522d407287357d57 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
matrix:
allow_failures:
- python: "2.6"
# Need mongodb for testing
services: mongodb
# command to install dependencies
install:
- pip install -r requirements_for_tests.txt --use-mirrors
# command to run tests
env:
- SKIP_VIRUS_SCAN=1
script:
- ./run_tests.sh
after_script:
- coveralls
branches:
except:
- release
notifications:
email: false
| language: python
python:
- "2.7"
# Need mongodb for testing
services: mongodb
# command to install dependencies
install:
- pip install -r requirements_for_tests.txt --use-mirrors
# command to run tests
env:
- SKIP_VIRUS_SCAN=1
script:
- ./run_tests.sh
after_script:
- coveralls
branches:
except:
- release
notifications:
email: false
| Remove Python 2.6 from build matrix | Remove Python 2.6 from build matrix
While it is useful to advertise the versions that backdrop does not work
with I think this can be done in a better way than a travis build that
runs every time but always fails.
| YAML | mit | alphagov/backdrop,alphagov/backdrop,alphagov/backdrop |
52ec5113cddf9e9ddc6c1f7b622cf0d13f8be67b | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install --dev
script: phpunit --coverage-text
| language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
before_script:
- wget -nc http://getcomposer.org/composer.phar
- php composer.phar install --dev
script: phpunit --coverage-text
| Update buildmatrix to include PHP 5.5 & 5.6 | Update buildmatrix to include PHP 5.5 & 5.6 | YAML | mit | dflydev/dflydev-dot-access-data |
f82df4dd4bec654edce1a29bdbba8c85144b0e3f | .travis.yml | .travis.yml | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(chef shell-init bash)"
script:
- chef --version
- cookstyle --version
- foodcritic --version
- chef exec delivery local all
| services:
- docker
install:
- docker pull chef/chefdk
branches:
only:
- master
script:
- docker run -t chef/chefdk chef -v
- docker run -v $PWD:/cookbook -w /cookbook -t chef/chefdk delivery local all
| Switch testing to use the docker ChefDK container | Switch testing to use the docker ChefDK container
This avoids the need to install the packages from the chef apt repo.
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/iptables,chef-cookbooks/iptables,opscode-cookbooks/iptables,opscode-cookbooks/iptables,chef-cookbooks/iptables,opscode-cookbooks/iptables |
2fb6135032b1238b895aa9234a9e734296d0c717 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
script: go build
| sudo: false
language: go
go:
- 1.6
script: go build
| Remove old Go versions from Travis | Remove old Go versions from Travis
rand.Read requires Go 1.6
| YAML | mit | marksamman/gotorrent |
5f2606139a317e7b16ed716f622a2b0627643b4d | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
- "3.5"
env:
- DJANGO_VERSION=1.7.11
- DJANGO_VERSION=1.8.7
- DJANGO_VERSION=1.9.0
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements-test.txt
- pip install Django==$DJANGO_VERSION
# command to run tests using coverage, e.g. python setup.py test
script: coverage run --source watchman runtests.py
# report coverage to coveralls.io
after_success: coveralls
notifications:
slack: tobalabs:XPt5OlsKuFGgIQZp0DpNXBUl
| # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
- "3.4"
env:
- DJANGO_VERSION=1.7.11
- DJANGO_VERSION=1.8.7
- DJANGO_VERSION=1.9.0
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements-test.txt
- pip install Django==$DJANGO_VERSION
# command to run tests using coverage, e.g. python setup.py test
script: coverage run --source watchman runtests.py
# report coverage to coveralls.io
after_success: coveralls
notifications:
slack: tobalabs:XPt5OlsKuFGgIQZp0DpNXBUl
| Drop python back to 3.4 | Drop python back to 3.4
| YAML | bsd-3-clause | blag/django-watchman,ulope/django-watchman,mwarkentin/django-watchman,blag/django-watchman,mwarkentin/django-watchman,JBKahn/django-watchman,JBKahn/django-watchman,ulope/django-watchman |
77d3ab8e4be1d4688915e4f9455556c0e88a667e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- rbx-2.1.1
- 2.0.0-preview2
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- jruby-19mode
- rbx-2.1.1
- 2.1.0-preview2
- jruby-head
- ruby-head
bundler_args: --without guard
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Exclude guard bundler group from installing on TravisCI. | Exclude guard bundler group from installing on TravisCI.
| YAML | mit | fnichol/nameit |
124b4a51b153945739ba17aaac7fb570c660818a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
services:
- redis-server
before_script:
- cp config/settings.yml.travis config/settings.yml
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
script:
- bundle exec rake db:schema:load
- bundle exec rake db:test:prepare
- bundle exec rake spec
| language: ruby
rvm:
- 2.0.0
services:
- redis-server
before_script:
- cp config/settings.yml.travis config/settings.yml
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
script:
- bundle exec rake db:schema:load
- bundle exec rake db:test:prepare
- bundle exec rake spec
addons:
postgresql: "9.3"
| Use Postgres 9.3 on Travis | Use Postgres 9.3 on Travis
| YAML | mit | krautcomputing/rubydocs,krautcomputing/rubydocs,krautcomputing/rubydocs |
e30ddc2e39acd981ba1d3fdaa26e5b36e13ba8d6 | .travis.yml | .travis.yml | language: php
before_script: composer install --dev --prefer-source --no-interaction
script: phpunit --coverage-text
| language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
install:
- composer install --prefer-source --no-interaction
script:
- phpunit --coverage-text
| Test against different PHP versions | Test against different PHP versions | YAML | mit | clue/graph-composer |
48f09ab210277a25f054b9c66d4dd726590b5d05 | .travis.yml | .travis.yml | language: rust
env:
global:
- secure: xvgEoA6Etp8KWAnA9FrCkPNTdz8dunFN93sgWFkd55NGtTqlLehHCvuqG/7DFteoQ6FK2+g45NqJoc2UWp1CUIs27Qm5ICvnmFFLSncHN2ofefN0fj0BWXJunVBuKsO1xYCossnXKsEBDSpLJ5BI1eMrJETyHW75Nb3YIXH0Dm4=
install:
- sudo apt-get install libleveldb-dev
- sudo apt-get install libsnappy-dev
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
rust:
- nightly
| language: rust
sudo: false
env:
global:
- secure: xvgEoA6Etp8KWAnA9FrCkPNTdz8dunFN93sgWFkd55NGtTqlLehHCvuqG/7DFteoQ6FK2+g45NqJoc2UWp1CUIs27Qm5ICvnmFFLSncHN2ofefN0fj0BWXJunVBuKsO1xYCossnXKsEBDSpLJ5BI1eMrJETyHW75Nb3YIXH0Dm4=
install:
- sudo apt-get install libleveldb-dev
- sudo apt-get install libsnappy-dev
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
rust:
- nightly
| Switch to Travis container based builds | Switch to Travis container based builds | YAML | mit | skade/leveldb,alekseysidorov/leveldb,alekseysidorov/leveldb |
ad0494bc7e79178b9811e1ebfc1770a7b3e9f67e | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
matrix:
include:
- php: 7.0
env:
- DEPS="low"
- php: 7.0
env:
- DEPS="lock"
- php: 7.0
env:
- TEST_COVERAGE=true
- php: 7.1
- php: nightly
fast_finish: true
install:
- phpenv config-rm xdebug.ini
- if [[ $DEPS == "low" ]]; then composer update --prefer-lowest --prefer-dist --prefer-stable --no-interaction; fi
- if [[ $DEPS == "lock" ]]; then composer install --prefer-dist --no-interaction; fi
- if [[ -z $DEPS ]]; then composer update --prefer-dist --prefer-stable --no-interaction; fi
script:
- if [[ $TEST_COVERAGE ]]; then phpdbg -qrr bin/phpunit --coverage-clover ./build/logs/clover.xml; else bin/phpunit; fi
after_success:
- if [[ $TEST_COVERAGE ]]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml; fi
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
matrix:
include:
- php: 7.0
env:
- DEPS="low"
- php: 7.0
env:
- DEPS="lock"
- php: 7.0
env:
- TEST_COVERAGE=true
- php: 7.1
- php: nightly
fast_finish: true
install:
- phpenv config-rm xdebug.ini
- if [[ $DEPS == "low" ]]; then composer update --prefer-lowest --prefer-dist --prefer-stable --no-interaction; fi
- if [[ $DEPS == "lock" ]]; then composer install --prefer-dist --no-interaction; fi
- if [[ -z $DEPS ]]; then composer update --prefer-dist --prefer-stable --no-interaction; fi
script:
- if [[ $TEST_COVERAGE ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml; else vendor/bin/phpunit; fi
after_success:
- if [[ $TEST_COVERAGE ]]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml; fi
| Fix PHPUnit path in Travis build | Fix PHPUnit path in Travis build
| YAML | mit | Jean85/pretty-package-versions |
548eab493d78272015b25f5253cac297ef09e6da | .travis.yml | .travis.yml | sudo: required
language: python
python:
- "2.7"
# - "3.3"
# Have Travis CI start mongodb and redis for us
services:
- docker
before_install:
- docker pull docker.sunet.se/eduid/redis:latest
- docker pull docker.sunet.se/eduid/mongodb:latest
install:
- pip install -U setuptools
- python setup.py develop
- pip install nosexcover WebTest==1.4.3
# command to run tests
script:
- nosetests
| sudo: required
language: python
python:
- "2.7"
# - "3.3"
# Have Travis CI start mongodb and redis for us
services:
- docker
before_install:
- docker pull docker.sunet.se/eduid/redis:latest
- docker pull docker.sunet.se/eduid/mongodb:latest
install:
- pip install -U setuptools
- python setup.py develop
- python setup.py testing
# command to run tests
script:
- nosetests
| Use setup.py to install test reqs | Use setup.py to install test reqs
| YAML | bsd-3-clause | SUNET/eduid-signup,SUNET/eduid-signup,SUNET/eduid-signup |
bbc0de3b22075e9c2f30ba42a6c5597837b63ae1 | .travis.yml | .travis.yml | ---
sudo: required
language: ruby
cache: bundler
# necessary for docker to work
dist: xenial
services:
- docker
bundler_args: --without integration tools
branches:
only:
- master
matrix:
include:
- rvm: 2.3.8
before_install:
- gem install bundler
- gem --version
- rvm: 2.4.5
before_install:
- gem install bundler
- gem --version
- rvm: 2.5.3
before_install:
- gem install bundler
- gem --version
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-debian.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-centos.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-oel.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-fedora.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-ubuntu.yml"
| ---
sudo: required
language: ruby
cache: bundler
# necessary for docker to work
dist: xenial
services:
- docker
bundler_args: --without integration tools
branches:
only:
- master
- 2-release
matrix:
include:
- rvm: 2.3.8
before_install:
- gem install bundler
- gem --version
- rvm: 2.4.5
before_install:
- gem install bundler
- gem --version
- rvm: 2.5.3
before_install:
- gem install bundler
- gem --version
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-debian.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-centos.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-oel.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-fedora.yml"
- rvm: 2.6
script: bundle exec rake $SUITE
env: SUITE="test:docker config=test-travis-ubuntu.yml"
| Add v2 release to TravisCI temporarily | Add v2 release to TravisCI temporarily
Signed-off-by: Clinton Wolfe <472bf9e3c4d623f1ea9ea20ba8a695844f3dbd03@gmail.com>
| YAML | apache-2.0 | chef/train,chef/train |
642dbc9dd5eb26ef4a7a21bfeed80806dddba82f | .travis.yml | .travis.yml | sudo: required
services:
- docker
script:
- docker build -t dlecan/rust-crosscompiler-arm:stable rust-crosscompiler-armv6 | sudo: required
services:
- docker
script:
- docker build -t dlecan/rust-crosscompiler-arm:stable rust-crosscompiler-armv6
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push dlecan/rust-crosscompiler-arm:stable
| Deploy Docker image with Travis | Deploy Docker image with Travis
| YAML | mit | dlecan/rust-crosscompiler-arm,dlecan/docker-rust-x86_64-armv6 |
66492ae5616f16aaedc634b98684f124ec8f29e0 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "stable"
- "0.11"
- "0.10"
| language: node_js
sudo: false
node_js:
- "stable"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
| Test against more versions of node. | Test against more versions of node.
| YAML | mit | monooso/brettcase |
700a5015d69713840070521c5fe3b27862026d57 | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
install:
- pip install -r requirements-test.txt
script: py.test
before_deploy:
- mkdir dist
- tar czf dist/bigpanda-alert-`git describe|sed s/^v//`.tar.gz bigpanda-alert --exclude
*.pyc
- tar czf dist/bigpanda-alert-latest.tar.gz bigpanda-alert --exclude *.pyc
deploy:
provider: s3
access_key_id: AKIAJK3FVON55XJC5O2Q
secret_access_key:
secure: VDARQIYozFKqu2paA5vEgebsyQdQngftzyxpPLwHdWS7fj8lyQlbXRqlBhd83M+4j8fExY3BPCeKG9Zaf1Qmi868mo+kY/BZgV8DtA8X1dv69dJ0kPIJHHxpksTig3wFV8mej9xMGi4ti+WP84v6SDaIzxF5q1esme/zqqYRiDw=
bucket: bp-appdynamics-extension
region: us-west-1
acl: public_read
local_dir: dist
on:
tags: true
| language: python
python:
- '2.6'
- '2.7'
install:
- pip install -r requirements-test.txt
script: py.test
before_deploy:
- mkdir dist
- tar czf dist/bigpanda-alert-`git describe|sed s/^v//`.tar.gz bigpanda-alert --exclude
*.pyc
- tar czf dist/bigpanda-alert-latest.tar.gz bigpanda-alert --exclude *.pyc --owner root --group root
deploy:
provider: s3
access_key_id: AKIAJK3FVON55XJC5O2Q
secret_access_key:
secure: VDARQIYozFKqu2paA5vEgebsyQdQngftzyxpPLwHdWS7fj8lyQlbXRqlBhd83M+4j8fExY3BPCeKG9Zaf1Qmi868mo+kY/BZgV8DtA8X1dv69dJ0kPIJHHxpksTig3wFV8mej9xMGi4ti+WP84v6SDaIzxF5q1esme/zqqYRiDw=
bucket: bp-appdynamics-extension
region: us-west-1
acl: public_read
local_dir: dist
on:
tags: true
| Package files as owned by root:root | Package files as owned by root:root
| YAML | apache-2.0 | bigpandaio/bigpanda-appdynamics-extension |
bd85f1701d001ab2da86a6b89195ef6b95aeb603 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- ./scripts/travis/before_install.sh
install:
- sudo apt-get install tor tor-geoipdb python-pip
- pip install -r GLBackend/requirements.txt
- pip install coverage coveralls
script:
- cd GLBackend
- coverage run setup.py test && coveralls || true
| language: python
python:
- "2.7"
before_install:
- ./scripts/travis/before_install.sh
install:
- sudo apt-get install tor tor-geoipdb python-pip
- cd $TRAVIS_BUILD_DIR/GLBackend
- pip install -r requirements.txt
- pip install coverage coveralls
script:
- cd $TRAVIS_BUILD_DIR/GLBackend
- coverage run setup.py test && coveralls || true
| Use $TRAVIS_BUILD_DIR environment variable to cd into backend/frontend. | Use $TRAVIS_BUILD_DIR environment variable to cd into backend/frontend.
| YAML | agpl-3.0 | vodkina/GlobaLeaks,vodkina/GlobaLeaks,vodkina/GlobaLeaks,vodkina/GlobaLeaks |
79cf6772aa95c008c3f835efe9eb04cb2b5d3a80 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.3"
install:
- pip install codecov coverage catkin_pkg catkin_tools futures python-dateutil requests rosdep pyyaml
script:
- nosetests --verbose --with-coverage --cover-erase --cover-package=rosrepo test
after_success:
- codecov
| language: python
sudo: false
python:
- "2.7"
- "3.3"
install:
- pip install codecov coverage catkin_pkg catkin_tools futures python-dateutil pygit2 requests rosdep pyyaml
script:
- nosetests --verbose --with-coverage --cover-erase --cover-package=rosrepo test
after_success:
- codecov
| Update dependencies for Travis CI | Update dependencies for Travis CI
| YAML | apache-2.0 | fkie/rosrepo,fkie/rosrepo |
e4f704bb947fefc6d998c452bd661e20bc974e16 | .travis.yml | .travis.yml | ---
language: "node_js"
node_js: [ 4, 5 ]
sudo: false
install: "npm install"
script:
- npm test
- npm run lint
| ---
language: "node_js"
node_js:
- '4'
- node
sudo: false
install: "npm install"
script:
- npm test
- npm run lint
| Configure Travis CI to test on Node.js 4 and current | Configure Travis CI to test on Node.js 4 and current
| YAML | mit | kemitchell/reviewers-edition-upgrade.js |
ab261b51b2f8b429a7d79bc1900f580feb8e6919 | .travis.yml | .travis.yml | language: php
php:
- "7.0"
- "7.1"
- "7.2"
- "7.3"
- "nightly"
before_script:
- composer selfupdate
- composer install
script:
- ./vendor/bin/phpunit --configuration=phpunit.travis.xml
matrix:
allow_failures:
- php: nightly
addons:
code_climate:
repo_token:
secure: "I3eTx9kL0G59wHo3pppEBlAt0eq3DkxgoTcF/6teFrNgQ2/Fn6Cx1Joh2FIIk9MTE1lERrM6nwNK6M58iYhLMJNE6svnDLnBIgt9eEQb0NCzyeDtMUQwiTDEVt/GA6RZvHoqEHbcp88H2AOHcMqGOEJZsOlDWbxMjmBKNBvAdWU="
after_script:
- ./vendor/bin/test-reporter --stdout > codeclimate.json
- 'curl -X POST -d @codeclimate.json -H "Content-Type: application/json" -H "User-Agent: Code Climate (PHP Test Reporter v1.0.1-dev)" https://codeclimate.com/test_reports'
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
| language: php
php:
- "7.0"
- "7.1"
- "7.2"
- "7.3"
- "nightly"
before_script:
- composer selfupdate
- composer install
script:
- ./vendor/bin/phpunit --configuration=phpunit.travis.xml
matrix:
allow_failures:
- php: nightly
- php: "7.0"
- php: "7.1"
addons:
code_climate:
repo_token:
secure: "I3eTx9kL0G59wHo3pppEBlAt0eq3DkxgoTcF/6teFrNgQ2/Fn6Cx1Joh2FIIk9MTE1lERrM6nwNK6M58iYhLMJNE6svnDLnBIgt9eEQb0NCzyeDtMUQwiTDEVt/GA6RZvHoqEHbcp88H2AOHcMqGOEJZsOlDWbxMjmBKNBvAdWU="
after_script:
- ./vendor/bin/test-reporter --stdout > codeclimate.json
- 'curl -X POST -d @codeclimate.json -H "Content-Type: application/json" -H "User-Agent: Code Climate (PHP Test Reporter v1.0.1-dev)" https://codeclimate.com/test_reports'
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
| Remove support for PHP 7.0 and PHP 7.1 | Remove support for PHP 7.0 and PHP 7.1
This is necessary due to the changed signature of the `setup`-function
in PHPUnit.
The library itself should still work on PHP7.0 and 7.1 but it will not
be tested in these two versions
| YAML | mit | heiglandreas/UTCDateTime |
9f1b32e07100d9a7da5439532b14cb7c349a2563 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- ruby-head
- jruby-19mode
- rbx-2
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
install: "bundle install --jobs 8"
script: "bundle exec rake"
gemfile:
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
matrix:
fast_finish: true
exclude:
- rvm: 1.9.3
gemfile: gemfiles/5.0.gemfile
- rvm: 2.0.0
gemfile: gemfiles/5.0.gemfile
- rvm: 2.1.9
gemfile: gemfiles/5.0.gemfile
allow_failures:
- rvm: ruby-head
- rvm: jruby-19mode
gemfile: gemfiles/5.0.gemfile
- rvm: rbx-2
branches:
only:
- master
sudo: false
cache: bundler
| rvm:
- 1.9.3
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- ruby-head
- rbx-2
before_install:
- gem update --system
- gem update bundler
- gem cleanup bundler
install: "bundle install --jobs 8"
script: "bundle exec rake"
gemfile:
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
matrix:
fast_finish: true
exclude:
- rvm: 1.9.3
gemfile: gemfiles/5.0.gemfile
- rvm: 2.0.0
gemfile: gemfiles/5.0.gemfile
- rvm: 2.1.9
gemfile: gemfiles/5.0.gemfile
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
branches:
only:
- master
sudo: false
cache: bundler
| Remove jruby from TravisCI build matrix | Remove jruby from TravisCI build matrix
The build is consistently failing with jruby-19 / 3.2.gemfile because
bundler cannot install activesupport.
| YAML | mit | composerinteralia/factory_girl,thoughtbot/factory_girl |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.