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 |
|---|---|---|---|---|---|---|---|---|---|
2d1f4aa01563f3910fe9fb052f9ecc6c4edd4ad6 | .travis.yml | .travis.yml | language: python
python:
- '3.5'
- '3.6'
env:
- HASS=0.72.0
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
| language: python
python:
- '3.5'
- '3.6'
env:
- HASS=0.73.2
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
| Update Home Assistant to 0.73.2 for config checks in Travis CI | Update Home Assistant to 0.73.2 for config checks in Travis CI
| YAML | mit | davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config |
58ceec43802d017b203b4b348b821ecce6c142ad | .travis.yml | .travis.yml | language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
| language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
install:
- mvn -f relution-publisher/pom.xml install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
script:
- mvn -f relution-publisher/pom.xml clean compile package -B
| Configure custom install and script steps | Configure custom install and script steps | YAML | apache-2.0 | mwaylabs/relution-jenkins-plugin,mwaylabs/relution-jenkins-plugin,jenkinsci/relution-plugin,mwaylabs/relution-jenkins-plugin |
66b5116c243a722d04a43ed77cdc5039fe3aacb1 | .travis.yml | .travis.yml | # Use container-based infrastructure
sudo: false
language: scala
jdk: oraclejdk8
scala:
- 2.11.7
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
before_cache:
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
addons:
apt:
packages: libgmp-dev
install:
- mkdir lib && cd secp256k1
- ./autogen.sh
- ./configure --enable-jni --enable-experimental --enable-module-ecdh
- sudo make install
- cd ../
script: sbt -Djava.library.path=secp256k1/.libs clean coverage test
after_success: "sbt coverageReport coverageAggregate coveralls"
| # Use container-based infrastructure
sudo: false
language: scala
jdk: oraclejdk8
scala:
- 2.11.7
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
before_cache:
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
addons:
apt:
packages: libgmp-dev
install:
- mkdir lib && cd secp256k1
- ./autogen.sh
- ./configure --enable-jni --enable-experimental --enable-module-ecdh
- sudo make install
- cd ../
script:
- sbt -Djava.library.path=secp256k1/.libs clean coverage test &&
sbt coverageReport &&
sbt coverageAggregate
after_success:
- sbt coveralls
| Configure Travis-CI for multiproject build | Configure Travis-CI for multiproject build
| YAML | mit | bitcoin-s/bitcoin-s-core,bitcoin-s/bitcoin-s-core,bitcoin-s/bitcoin-s-core |
3de86d8dd2928b82e87b0a984bb8d3c8fa713437 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install:
- pip install .
- pip install tox
script: tox tests/
notifications:
irc: "chat.freenode.net#google-containers"
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install .
- pip install tox
script: tox tests/
notifications:
irc: "chat.freenode.net#google-containers"
| Enable automated testing with Python 3.4 | Enable automated testing with Python 3.4 | YAML | apache-2.0 | jonparrott/container-agent,googlearchive/container-agent |
2fcb221e22f3031687a4808742c8803109816296 | .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-19
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-armeabi-v7a-android-23
#- sys-img-x86-android-17
env:
global:
# install timeout in minutes (2 minutes by default)
- ADB_INSTALL_TIMEOUT=8
# Emulator Management: Create, Start and Wait
before_script:
- 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:
- android list target
- ./gradlew connectedAndroidTest
| 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-24.0.0
# The SDK version used to compile your project
- android-24
# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-19
# Specify at least one system image,
# if you need to run emulator(s) during your tests
# - sys-img-armeabi-v7a-android-23
- sys-img-x86-android-24
env:
global:
# install timeout in minutes (2 minutes by default)
- ADB_INSTALL_TIMEOUT=8
# Emulator Management: Create, Start and Wait
before_script:
- 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:
- android list target
- ./gradlew connectedAndroidTest
| Update Travis config for Android N | Update Travis config for Android N
| YAML | apache-2.0 | thedrover/android-integration-test-patterns |
043f138e31e55d948c543f471ec87d98cfb4156b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.0
env:
- DATABASE_USER="postgres"
addons:
postgresql: "9.3"
script: "LD_LIBRARY_PATH=lib bundle exec rake travis"
before_script:
- psql -c 'create database "hayashi-api_test";' -U postgres
- psql -c 'create database "hayashi_test";' -U postgres
notifications:
slack:
secure: Vjq1o6O3TQ+gnKmKm3an+/YICoSDoDeCq/0TU51ykQGHy9bApwtW4K0WPAfYf/Yrkw9xBjVvB1Spv7MU4I/GgMWRpMkU4sUEaRIZ/8SP0c9XgPjTRBUskzEch/PwqZmjS4MWdeGeBkww67o/uPcoox1K/OS3ys8mPwPoNX2YzuI=
| language: ruby
rvm:
- 2.2.0
- 2.1.5
- 2.0.0
- 1.9.3
- jruby-1.7.9
- jruby-head
env:
- DATABASE_USER="postgres"
addons:
postgresql: "9.3"
script: "LD_LIBRARY_PATH=lib bundle exec rake travis"
before_script:
- psql -c 'create database "hayashi-api_test";' -U postgres
- psql -c 'create database "hayashi_test";' -U postgres
notifications:
slack:
secure: Vjq1o6O3TQ+gnKmKm3an+/YICoSDoDeCq/0TU51ykQGHy9bApwtW4K0WPAfYf/Yrkw9xBjVvB1Spv7MU4I/GgMWRpMkU4sUEaRIZ/8SP0c9XgPjTRBUskzEch/PwqZmjS4MWdeGeBkww67o/uPcoox1K/OS3ys8mPwPoNX2YzuI=
| Add back full ruby support list | Add back full ruby support list
| YAML | apache-2.0 | matschaffer/horizon,Payshare/horizon,masonforest/horizon-importer,stellar/horizon-importer,malandrina/horizon,FredericHeem/horizon |
a7791f004ba8b23cb8ca5fc7f043b34fe71a7989 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
install: true
| language: java
jdk:
- oraclejdk8
install: true
notifications:
email:
on_success: never
on_failure: always
| Disable email notification on successful build. | Disable email notification on successful build.
| YAML | mit | SBI-/BoardScraper |
d992bf4b52b2510aa5e0e4f7ce6b2824ab32a6da | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.4.2
install:
- PATH=$PATH:$HOME/gopath/bin
- go get -t -v -d ./...
- go install -v github.com/onsi/ginkgo/ginkgo
script:
- bin/test
branches:
only:
- master
| sudo: false
language: go
go:
- 1.4.2
install:
- PATH=$PATH:$HOME/gopath/bin
- go get -t -v -d ./...
- go install -v github.com/onsi/ginkgo/ginkgo
script:
- bin/test-unit
- DB_PASSWORD="" bin/test-integration
branches:
only:
- master
| Add integration tests to Travis | Add integration tests to Travis
[#90518178]
| YAML | apache-2.0 | cloudfoundry-incubator/galera-healthcheck,cloudfoundry-incubator/galera-healthcheck |
faa8920fcd30f201b4e00a383f9f2f8489c4ed8f | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2.0
- 2.1.5
- 2.0.0
branches:
only:
- develop
- master
addons:
code_climate:
repo_token:
secure: "D3z4RvKc32obw+Tnd92VLwpGHca5HP3oMpCrMo1AbzsZcEpTuiIlQ+8byQt0MfnPABfJy/MNnXJNefVjZr7rOkGH6NiIAR2zH0Ajb0HJytXocG5a4KIYY6BJtavwdX4PLTbOHassdfxkuOrMkF0lVcxBPeGIFUYUytahnYDw9q0="
| language: ruby
cache: bundler
rvm:
- 2.2.0
- 2.1.5
- 2.0.0
branches:
only:
- develop
- master
env:
global:
- secure: "D3z4RvKc32obw+Tnd92VLwpGHca5HP3oMpCrMo1AbzsZcEpTuiIlQ+8byQt0MfnPABfJy/MNnXJNefVjZr7rOkGH6NiIAR2zH0Ajb0HJytXocG5a4KIYY6BJtavwdX4PLTbOHassdfxkuOrMkF0lVcxBPeGIFUYUytahnYDw9q0="
| Move token to env section | Move token to env section
| YAML | mit | asaaki/ryodo |
b198ad48c6edb7f62c1560cc28809d638f5dd48c | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
- nightly
script:
- find . -type f -name '*.php' -print0 | xargs -0 -I file php -l file > /dev/null
before_deploy:
- composer install
- composer dump-autoload --optimize
- tar -czf "pico-release-$TRAVIS_TAG.tar.gz" .htaccess README.md CHANGELOG.md CONTRIBUTING.md composer.json composer.lock LICENSE config content-sample lib plugins themes vendor index.php
deploy:
provider: releases
api_key: ${GITHUB_OAUTH_TOKEN}
file: pico-release-$TRAVIS_TAG.tar.gz
skip_cleanup: true
on:
repo: picocms/Pico
tags: true
php: 5.3
sudo: false
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
fast-finish: true
script:
- find . -type f -name '*.php' -print0 | xargs -0 -I file php -l file > /dev/null
before_deploy:
- composer install
- composer dump-autoload --optimize
- tar -czf "pico-release-$TRAVIS_TAG.tar.gz" .htaccess README.md CHANGELOG.md CONTRIBUTING.md composer.json composer.lock LICENSE config content-sample lib plugins themes vendor index.php
deploy:
provider: releases
api_key: ${GITHUB_OAUTH_TOKEN}
file: pico-release-$TRAVIS_TAG.tar.gz
skip_cleanup: true
on:
repo: picocms/Pico
tags: true
php: 5.3
sudo: false
| Allow PHP nightly builds to fail | Travis: Allow PHP nightly builds to fail
| YAML | mit | theshka/Pico,TakamiChie/Pico,lukasz-jakub-adamczuk/tech-jump-guide,fabianacero/fabianacerog,picocms/Pico,PhrozenByte/Pico,ondrejd/Pico,dav-m85/Pico,theshka/Pico,TakamiChie/Pico,smcdougall/Pico,PhrozenByte/Pico,picocms/Pico,theshka/Pico,dav-m85/Pico,picocms/Pico,ondrejd/Pico,smcdougall/Pico,fabianacero/fabianacerog,PhrozenByte/Pico,lukasz-jakub-adamczuk/tech-jump-guide,lukasz-jakub-adamczuk/tech-jump-guide,fabianacero/fabianacerog,dav-m85/Pico,TakamiChie/Pico,TakamiChie/Pico,ondrejd/Pico,smcdougall/Pico |
394c4d0211083480db628ace6e42851fdb4d0f26 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
install:
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
| language: java
jdk:
- oraclejdk8
install:
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
| Build using Java 8 as Java 7 has been removed from some TravisCI nodes | Build using Java 8 as Java 7 has been removed from some TravisCI nodes
| YAML | apache-2.0 | realityforge/jndikit,realityforge/jndikit,realityforge/jndikit |
8493653bfeebcefeffce750208dc5be143161420 | .travis.yml | .travis.yml | language: haskell
ghc: 7.8.3
before_install:
- openssl aes-256-cbc -K $encrypted_68787bd95177_key -iv $encrypted_68787bd95177_iv -in travis_rsa.enc -out travis_rsa -d
install: scripts/installdep.sh
script: scripts/build.sh
deploy: scripts/deploy.sh
| language: haskell
ghc: 7.8.3
before_install:
- openssl aes-256-cbc -K $encrypted_68787bd95177_key -iv $encrypted_68787bd95177_iv -in travis_rsa.enc -out ~/.ssh/id_rsa -d
install: scripts/installdep.sh
script: scripts/build.sh
deploy: scripts/deploy.sh
| Set as default ssh key | Set as default ssh key
| YAML | mit | wei2912/blog_src,wei2912/blog_src |
4cd5af02379d360e165b3944017273a3bcca72c6 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode | language: ruby
rvm:
- 2.0.0
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
| Add ruby 2.0.0 to versions tested in Travis CI | Add ruby 2.0.0 to versions tested in Travis CI
| YAML | mit | ms-ati/rumonade |
823c58cb42d2211efb5487ec5a7ec24116db1536 | .travis.yml | .travis.yml | ---
language: php
php:
- "7.0"
- "7.1"
- nightly
env:
- PREFER_LOWEST=no
- PREFER_LOWEST=yes
cache:
directories: $HOME/.composer/cache/files
install:
- travis_retry composer install --prefer-dist
- if test "$PREFER_LOWEST" = yes ; then travis_retry composer update --prefer-dist --prefer-lowest ; fi
script: vendor/bin/phpunit
| ---
language: php
php:
- "7.1"
- "7.2"
- nightly
env:
- PREFER_LOWEST=no
- PREFER_LOWEST=yes
cache:
directories: $HOME/.composer/cache/files
install:
- travis_retry composer install --prefer-dist
- if test "$PREFER_LOWEST" = yes ; then travis_retry composer update --prefer-dist --prefer-lowest ; fi
script: vendor/bin/phpunit
| Remove PHP 7.0 from Travis matrix (phpstan incompatibility) | Remove PHP 7.0 from Travis matrix (phpstan incompatibility)
| YAML | mit | timeweb/phpstan-enum,timeweb/phpstan-enum |
9854f8f31b7bc70af4aea3656542e01aebbb92ba | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- '4'
- node
sudo: false
script:
- npm run test
- npm run coverage
- npm run lint
cache:
directories:
- node_modules
| ---
language: node_js
node_js:
- '4'
- node
sudo: false
script:
- npm run test
- npm run coverage
- npm run lint
| Configure Travis CI not to cache node_modules | Configure Travis CI not to cache node_modules
| YAML | mit | kemitchell/reviewers-edition-parse.js |
ae6513d8935c1f98d038d04c5312d23aaa432e6d | .travis.yml | .travis.yml | script: "gem install foodcritic -v 1.1.0 && foodcritic -f any -t ~FC007 ."
rvm:
- 1.9.3
| script: "gem install foodcritic -v 1.1.0 && foodcritic -f any -t ~FC023 ."
rvm:
- 1.9.3
| Adjust the set of foodcritic rules that will be checked | Adjust the set of foodcritic rules that will be checked
| YAML | apache-2.0 | realityforge/chef-bonita |
f4e8d0a84da4164637590dd993776293a00120f8 | .travis.yml | .travis.yml | # Travis CI Configuration
language: node_js
node_js:
- "8"
- "9"
- "10"
- "11"
- "12"
install:
- npm install
- npm install coveralls
before_script:
- gulp build
script:
- npm run coverage
after_success:
- cat coverage/lcov.info | coveralls
| # Travis CI Configuration
language: node_js
node_js:
- "10"
- "11"
- "12"
install:
- npm install
- npm install coveralls
before_script:
- gulp build
script:
- npm run coverage
after_success:
- cat coverage/lcov.info | coveralls
| Drop CI support for Node 8 and 9 | Drop CI support for Node 8 and 9
| YAML | mit | caleb531/connect-four |
64c41d3faa8880871e140e27d15a1b9dc8c53c57 | .travis.yml | .travis.yml | language: php
php:
- "5.6"
- "5.5"
- "5.4"
before_script:
- composer install --dev --no-interaction
script: phpunit --coverage-clover build/logs/clover.xml --configuration tests/phpunit.xml
after_script:
- php vendor/bin/coveralls -v
| language: php
php:
- hhvm
- 7.0
- 5.6
- 5.5
- 5.4
matrix:
allow_failures:
- php: hhvm
- php: 7.0
before_script:
- composer install --dev --no-interaction
script: phpunit --coverage-clover build/logs/clover.xml --configuration tests/phpunit.xml
after_script:
- php vendor/bin/coveralls -v
| Add HHVM and 7.0 to Travis, but allow failures | Add HHVM and 7.0 to Travis, but allow failures
| YAML | bsd-3-clause | JMB-Technology-Limited/HTMLIsAnEvent,JMB-Technology-Limited/HTMLIsAnEvent |
c571ad7872bca3157bd13a9f74c5880e7e42d811 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install coveralls
script: nosetests --with-coverage --cover-package=pybib --cover-branches --rednose
after_success:
coveralls
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install coveralls
script: nosetests --with-coverage --cover-package=pybib --cover-branches --rednose
after_success:
coveralls
| Add Python 3.5 to the test matrix | Add Python 3.5 to the test matrix
| YAML | bsd-3-clause | jgilchrist/pybib |
d233d56b8e41deddfd3aa29958ced4297aff80ee | .travis.yml | .travis.yml | language: python
notifications:
email: false
addons:
apt:
packages:
- libhdf5-serial-dev
sudo: false
cache:
directories:
- $HOME/.cache/pip
env:
# Commented out since setup_requires is controlled by easy_install
# This should be uncommented when pip can use setup_requires
# - TOXENV=py26-test-nodeps
# - TOXENV=py27-test-nodeps
# - TOXENV=py32-test-nodeps
# - TOXENV=py33-test-nodeps
# - TOXENV=py34-test-nodeps
- TOXENV=py26-test-deps
- TOXENV=py27-test-deps
- TOXENV=py32-test-deps
- TOXENV=py33-test-deps
- TOXENV=py34-test-deps
- TOXENV=py27-pylint-deps
- TOXENV=py33-pylint-deps
- TOXENV=py34-pylint-deps
install:
- pip install tox
script:
- tox
| language: python
notifications:
email: false
addons:
apt:
packages:
- libhdf5-serial-dev
sudo: false
cache:
directories:
- $HOME/.cache/pip
env:
# Commented out since setup_requires is controlled by easy_install
# This should be uncommented when pip can use setup_requires
# - TOXENV=py26-test-nodeps
# - TOXENV=py27-test-nodeps
# - TOXENV=py33-test-nodeps
# - TOXENV=py34-test-nodeps
- TOXENV=py26-test-deps
- TOXENV=py27-test-deps
- TOXENV=py33-test-deps
- TOXENV=py34-test-deps
- TOXENV=py27-pylint-deps
- TOXENV=py33-pylint-deps
- TOXENV=py34-pylint-deps
install:
- pip install tox
script:
- tox
| Drop Python 3.2 from Travis file | Drop Python 3.2 from Travis file
| YAML | bsd-3-clause | h5py/h5py,h5py/h5py,h5py/h5py |
e84c6cb1971f936ee2782cac1b2ea1bd6951ce7c | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
cache:
directories:
- $HOME/vendor
sudo: false
before_script:
- phpenv config-rm xdebug.ini
- sh -c "composer install --no-progress"
script: ./run-tests.sh
| language: php
php:
- 7.0
- 7.1
sudo: false
cache:
directories:
- $HOME/.composer/cache
# XDebug slows down Composer ... our run-tests.sh script will enable it later
before_install:
- phpenv config-rm xdebug.ini
before_script:
- sh -c "composer install --no-progress"
script: ./run-tests.sh
| Make Travis store the Composer cache instead of vendor/ | Make Travis store the Composer cache instead of vendor/
| YAML | mit | narfbg/Niceware,narfbg/Niceware |
18ee5e2972b11e2aeac6b2dd8e732241667db162 | .travis.yml | .travis.yml | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
| # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
| Use the pre-release builds of chefdk | Use the pre-release builds of chefdk
| YAML | apache-2.0 | 4-20ma/client-rekey,opscode-cookbooks/client-rekey,chef-cookbooks/client-rekey |
0d30c2593393478a30cc2db05e5d54bb2e87dc43 | .travis.yml | .travis.yml | sudo: required
language: R
cache: packages
r_github_packages:
- johndharrison/HARtools
- johndharrison/webpagetestr
r_packages:
- png
- jpeg
env:
matrix:
- NOT_CRAN=true
r:
- oldrel
- release
- devel
after_success:
- Rscript -e 'covr::codecov()'
| sudo: required
language: R
cache: packages
r_github_packages:
- johndharrison/HARtools
- johndharrison/webpagetestr
r_packages:
- png
- jpeg
env:
matrix:
- NOT_CRAN=true
- secure: ke44BxElKJTn5dlt3C/n/WvJgMy/cozbVRYa/gI0MuDZthK+uqBJoIScDiFag8rDcgUvkw/CPkJ6Rlu4+f1DmvOUlK+pccDiIcBOOqzItisAZ35ZvNORC5+RAhvDBOQH220lWkyBWieiCvPSjfQ6c8bZN/KWqWxwTBAsyQRRaWEZwiIpYx2SB/Hr6WHhnDLQz2NNCzpE1Nv4uMp33Lx3ONXpUoGJeP7IqmsFiW6Z1r2CNknlvZJh5aPM3sBVmlmVHV+0TuZYa47Rnlux5JHgr5QoaocAEM3h1tRJZUtAS4twBEgrwRqxK6rGBGUW5vSF53Gc516/O6KO3anhnmzk7b2UH46RfTTmCa9+72MomwXT2uCI8XMi/+gL9Y0Yywi1P4/XQq3WWXhzD6/uSNzg+s/hBtJi/sf8GLHuQz2Hc59aR4LeIAD/ZPFEzDbbt9LMpqmg8Ts5n+qZhQIrmJ0YHlqr2GV2sWK0ViLTfLDJ6anOpBzCVi0OcxnBVrvlKhzk8D3ui5+JEodUjmc7tBP90dEwXKbwEX9xB8+QgjoL4lkTrFSgpheCVDqTak1kpu0hdfxVwVHOLJneiD6nBwhnEJvAEspltVyUCXGRqc5gflVO83Hx9PMTV+QAVS0W2Ewq/q3AzXboG+yPj/Vd3liw9uSIAmA9SdfCQdRTkIonQ9U=
r:
- oldrel
- release
- devel
after_success:
- Rscript -e 'covr::codecov()'
| Add secure WPT key for testing | Add secure WPT key for testing
| YAML | mit | johndharrison/webpagetestr |
40858593ef93def23050acfb1cbc14fae9c74736 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
before_install:
- "npm install react react-native"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| sudo: required
dist: trusty
language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
before_install:
- "npm install react@^0.14.5 react-native"
| Fix peer dependency because react is now up to version 15 now but react-native still wants ^0.14.5 | Fix peer dependency because react is now up to version 15 now but react-native still wants ^0.14.5
| YAML | mit | alexmick/grunt-react-native-css |
5a0a4d416b5e681b4118c8b78ee49ceb338c9e95 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- export VERSION="8.0"
install:
#- git clone https://github.com/OCA/maintainer-quality-tools.git $HOME/maintainer-quality-tools
- cp -r ../maintainer-quality-tools/ $HOME # for maintainer-quality-tools self tests only
- export PATH=$HOME/maintainer-quality-tools/travis:$PATH
- travis_install_nightly $VERSION
- $HOME/maintainer-quality-tools/travis/travis_install_nightly ${VERSION}
- pip install coveralls flake8
script:
- travis_run_flake8
- travis_run_tests ${VERSION}
after_success:
coveralls
| language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
env:
- VERSION="8.0"
- VERSION="7.0"
install:
#- git clone https://github.com/OCA/maintainer-quality-tools.git $HOME/maintainer-quality-tools
- cp -r ../maintainer-quality-tools/ $HOME # for maintainer-quality-tools self tests only
- export PATH=$HOME/maintainer-quality-tools/travis:$PATH
- travis_install_nightly $VERSION
- $HOME/maintainer-quality-tools/travis/travis_install_nightly ${VERSION}
- pip install coveralls flake8
script:
- travis_run_flake8
- travis_run_tests ${VERSION}
after_success:
coveralls
| Test both >= 8.0 and <= 7.0 cases | Test both >= 8.0 and <= 7.0 cases
| YAML | agpl-3.0 | ilyasProgrammer/maintainer-quality-tools,acsone/maintainer-quality-tools,gurneyalex/maintainer-quality-tools,gurneyalex/maintainer-quality-tools,gurneyalex/maintainer-quality-tools,Endika/maintainer-quality-tools,Vauxoo/maintainer-quality-tools,OCA/maintainer-quality-tools,savoirfairelinux/maintainer-quality-tools,ilyasProgrammer/maintainer-quality-tools,hbrunn/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools,dreispt/maintainer-quality-tools,Vauxoo/maintainer-quality-tools,dreispt/maintainer-quality-tools,kittiu/maintainer-quality-tools,yvaucher/maintainer-quality-tools,OCA/maintainer-quality-tools,acsone/maintainer-quality-tools,OCA/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools,Ehtaga/maintainer-quality-tools,Endika/maintainer-quality-tools,acsone/maintainer-quality-tools,dreispt/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools,savoirfairelinux/maintainer-quality-tools,hbrunn/maintainer-quality-tools,suvit/maintainer-quality-tools,suvit/maintainer-quality-tools,Vauxoo/maintainer-quality-tools,kittiu/maintainer-quality-tools,Ehtaga/maintainer-quality-tools,yvaucher/maintainer-quality-tools,vauxoo-dev/maintainer-quality-tools,vauxoo-dev/maintainer-quality-tools |
f55979cab6ef9f13efd661070181091c5c4a4830 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
os:
- linux
branches:
only:
- master
cache:
directories:
- $HOME/.gradle
before_install:
- chmod +x gradlew
install: true
script:
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then bash ./gradlew clean setupCIWorkspace assemble; fi'
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash ./gradlew clean setupCIWorkspace build; fi' | language: java
jdk:
- oraclejdk8
sudo: required
dist: trusty
branches:
only:
- master
cache:
directories:
- $HOME/.gradle
before_install:
- chmod +x gradlew
install: true
script:
- 'if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then bash ./gradlew clean setupCIWorkspace assemble; fi'
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash ./gradlew clean setupCIWorkspace build; fi' | Switch to Trusty image for Travis builds | Switch to Trusty image for Travis builds
[ci skip]
| YAML | mit | PaleoCrafter/VanillaImmersion |
579863393a439137e4e2cb40fd2276a3738e08e7 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "2.7"
- "2.6"
- "2.5"
- "pypy"
script: python setup.py test
| language: python
python:
- "3.3"
- "2.7"
- "2.6"
- "2.5"
- "pypy"
install: python install_deps.py
script: python setup.py test
| Use custom deps script for Travis-CI. | Use custom deps script for Travis-CI.
| YAML | mit | gthank/pto,gthank/pto |
1deb8770b943f1847c84f0826dc6825117bf62b2 | .travis.yml | .travis.yml | language: node_js
install:
- npm install -g bolt@^0.19.0
- bolt
| language: node_js
install:
- npm install -g bolt@^0.20.7
- bolt
| Fix bolt version in CI. | Fix bolt version in CI.
| YAML | mit | skatejs/skatejs,skatejs/skatejs,skatejs/skatejs |
dcb800bcb1cf8b48e52263656f0abe1848949e91 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- pip install -r requirements${TRAVIS_PYTHON_VERSION:0:1}.txt
- pip install coveralls
script:
- coverage run --source=comet --omit=*test_\*py $(which trial) comet
after_success:
- coveralls
sudo: false
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- pip install -r requirements${TRAVIS_PYTHON_VERSION:0:1}.txt
- pip install coveralls
script:
- PYTHONPATH=. coverage run --source=comet --omit=*test_\*py $(which trial) comet
after_success:
- coveralls
sudo: false
| Set PYTHONPATH when running coverage. | Set PYTHONPATH when running coverage.
| YAML | bsd-2-clause | jdswinbank/Comet,jdswinbank/Comet |
b773d9b1137f83a03ee2eb2afed72983aa4a765a | .travis.yml | .travis.yml | language: python
python: 2.7
sudo: false # use new infrastructure
env:
- TOX_ENV=py27
install:
- pip install -r requirements.txt
- pip install -r dev_requirements.txt
script:
- coverage run --source ethereum -m py.test --ignore ethereum/tests/test_vm.py --ignore ethereum/tests/test_state.py
- coverage run --append --source ethereum -m py.test ethereum/tests/test_vm.py
- coverage run --append --source ethereum -m py.test ethereum/tests/test_state.py
after_success:
- coveralls
| language: python
python: 2.7
sudo: false # use new infrastructure
env:
- TOX_ENV=py27
install:
- pip install -r requirements.txt
- pip install -r dev_requirements.txt
script:
- coverage run --source ethereum -m py.test --ignore ethereum/tests/test_vm.py --ignore ethereum/tests/test_state.py
- coverage run --append --source ethereum -m py.test ethereum/tests/test_vm.py
- coverage run --append --source ethereum -m py.test ethereum/tests/test_state.py
after_success:
- coveralls
deploy:
provider: pypi
user: ethereum_pypi_automated
password:
secure: "FvkEn1xULi9mGxAL9sKlTuxJZvk0Uyd2GaDPAHN5ZAfaJUNwzA6+m7PRAMPd44Uy/LOw0+Ah9X1rxAxZc+7yx+FJjwH1Nl8MjtqYTWp+Ue6TFUNdJXNHjekC5ce4rbULudrqlmwmaWzi5iRC7qhpxuTg1y3iBw3Fsd8E82qbDac="
on:
tags: true
repo: ethereum/pyethereum
branch: develop
| Enable automatic PyPI deployments via Travis CI | Enable automatic PyPI deployments via Travis CI | YAML | mit | ethereum/pyethereum,karlfloersch/pyethereum,shahankhatch/pyethereum,karlfloersch/pyethereum,pipermerriam/pyethereum,ethereum/pyethereum,pipermerriam/pyethereum,shahankhatch/pyethereum |
84833703cfa303ba7ef092652820cc85aeed5402 | .travis.yml | .travis.yml | sudo: false
osx_image: xcode7
language: objective-c
cache:
directories:
- .nvm
- node_modules
- vendor/bundle
before_install:
- brew reinstall nvm
- mkdir -p .nvm
- export NVM_DIR="$PWD/.nvm"
- source $(brew --prefix nvm)/nvm.sh
install:
- nvm install 4
- npm install -g npm@2
- npm install
- npm install -g react-native-cli
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- bundle install --path=vendor/bundle
before_script:
- npm prune
script:
- npm test
after_success:
- npm run codecov
| sudo: false
osx_image: xcode7
language: objective-c
cache:
directories:
- .nvm
- node_modules
- vendor/bundle
before_install:
- brew reinstall nvm
- mkdir -p .nvm
- export NVM_DIR="$PWD/.nvm"
- source $(brew --prefix nvm)/nvm.sh
install:
- nvm install 5
- npm install -g npm
- npm install
- npm install -g react-native-cli
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- bundle install --path=vendor/bundle
before_script:
- npm prune
script:
- npm test
after_success:
- npm run codecov
| Update to npm@3 and node@5 | chore(ci): Update to npm@3 and node@5
| YAML | mit | moqada/GHReader,moqada/GHReader,moqada/GHReader,moqada/GHReader |
c05f0a612c56127aa66f98c6c741a4ea60b39af7 | .travis.yml | .travis.yml | language: python
sudo: false
addons:
apt:
sources:
- boost-latest
- ubuntu-toolchain-r-test
packages:
- libboost-system1.55-dev
- libboost-filesystem1.55-dev
- g++-4.8
python:
- "2.7"
- "3.5"
- "3.6"
before_install:
- pip install --upgrade pip
- pip install pytest pytest-cov
- pip install codecov
install:
- export CXX="g++-4.8" CC="gcc-4.8"
- pip install -e .
script:
- pytest --cov
after_success:
- codecov
| language: python
sudo: false
addons:
apt:
sources:
- boost-latest
- ubuntu-toolchain-r-test
packages:
- libboost-system1.55-dev
- libboost-filesystem1.55-dev
- g++-4.8
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- pip install --upgrade pip
- pip install pytest pytest-cov
- pip install codecov
install:
- export CXX="g++-4.8" CC="gcc-4.8"
- pip install -e .
script:
- pytest --cov
after_success:
- codecov
| Add CI for Python 3.4 | Add CI for Python 3.4
| YAML | agpl-3.0 | openclimatedata/pyhector,openclimatedata/pyhector,openclimatedata/pyhector |
ed84cda57ef13999a5fe42c76d07503b6d3962bd | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.2
- jruby-19mode
before_install:
- gem update --system
install: "bundle install"
script: "bundle exec rake spec:unit spec:acceptance features"
jdk:
- openjdk6
gemfile:
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
branches:
only:
- master
sudo: false
cache: bundler
| rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.2
- jruby-19mode
- rbx-2
before_install:
- gem update --system
install: "bundle install"
script: "bundle exec rake spec:unit spec:acceptance features"
jdk:
- openjdk6
gemfile:
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
branches:
only:
- master
sudo: false
cache: bundler
| Add Rubinius to Build Matrix | Add Rubinius to Build Matrix
Fix unintended removal of new line here
| YAML | mit | jonstokes/factory_girl,ento/factory_girl,willricketts/factory_girl,thoughtbot/factory_girl,eightbitraptor/factory_girl,bluurn/factory_girl,victor95pc/factory_girl,zephyr-dev/factory_girl,shuhei/factory_girl,BlakeWilliams/factory_girl,tinabme/factory_girl,jessedhillon/factory_girl,ndp-software/factory_girl,kt3k/factory_girl,composerinteralia/factory_girl,compwron/factory_girl,ar-shestopal/factory_girl,tlehman/factory_girl,jcoetsie/factory_girl,bact197736/factory_girl,shunsuke227ono/factory_girl,tjhubert/factory_girl,jasiek/factory_girl,0x00evil/factory_girl,mattr-/factory_girl,jhanggi/factory_girl,eskimosoup/factory_girl,ethagnawl/factory_girl,jjromeo/factory_girl,wleborgne/factory_girl,eduardopoleo/factory_girl,greggilbert/factory_girl,boutil/factory_girl,frakentoaster/factory_girl,keeperhood/factory_girl,shibocuhk/factory_girl,takashi/factory_girl |
b421a6784f9d15f33210e9fa9fe55676f29a52c1 | .travis.yml | .travis.yml | sudo: required
language: typescript
services:
- docker
script:
- docker build -t gretro/robs-fetch . | sudo: required
language: typescript
services:
- docker
script:
- docker build -t gretro/robs-fetch .
notifications:
email:
on_success: never
on_failure: always | Change notifications settings for TravisCI | chore: Change notifications settings for TravisCI
| YAML | mit | gretro/robs-fetch,gretro/robs-fetch,gretro/robs-fetch |
29a154704466a614c0e13b0f130957e8c53a721b | .semaphore/semaphore.yml | .semaphore/semaphore.yml | version: v1.0
name: First pipeline example
agent:
machine:
type: e1-standard-2
os_image: ubuntu1804
blocks:
- name: "Bundle"
task:
jobs:
- name: bundle gems
commands:
- bundle
- name: "Run tests"
task:
jobs:
- name: tests
commands:
- bundle exec rake
| version: v1.0
name: First pipeline example
agent:
machine:
type: e1-standard-2
os_image: ubuntu1804
blocks:
- name: "Checkout code"
task:
jobs:
- name: checkout code from Github
commands:
- checkout
- name: "Bundle"
task:
jobs:
- name: bundle gems
commands:
- bundle
- name: "Run tests"
task:
jobs:
- name: tests
commands:
- bundle exec rake
| Add git clone step to SemaphoreCI | Add git clone step to SemaphoreCI
| YAML | mit | scottwillson/tabular |
c4bf70cac6f97da9ed4c9803b9da9dd34dafd104 | .travis.yml | .travis.yml | language: node_js
node_js:
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
| language: node_js
node_js:
- "13"
- "12"
- "10"
- "9"
- "8"
| Update node versions to match current release schedule | Update node versions to match current release schedule
| YAML | mit | chrisfosterelli/akismet-api |
34d74efb1fbd867a0a6f0a3a33b9278a508a3dcb | .travis.yml | .travis.yml | language: bash
sudo: required
services:
- docker
before_script:
- sudo apt-get update && sudo apt-get install git
- docker pull kbase/kb_perl:latest
script:
- make -f Makefile.mini docker_image
after_success:
- make push_image
| language: perl
sudo: required
services:
- docker
before_script:
- sudo apt-get update && sudo apt-get install git
- cpanm Template::Tools::tpage
script:
- make
after_success:
- make push_image
env:
global:
- secure: tOjfwQREACIpwFmqfodj+yOrDgM9yL3TM8sL53/otVksAsIygGblQLDd/rxfAr/GEAyRdVDRuiu6dMo5EMB73hongonnLNUsZeUXVONcN4WrSdJa5fkiCbMtAos3VxsslM+eSfLTbO41WVaQ+hpR48yATMJnGfGqnLWUlfrwucM=
- secure: bCfR4/P4o1K53PlqW2INWa0pdW8NbORlh68Lm2eW+wvCtkewp0LC5AVIY0Hnj7oufNq37jkmsri5YTo2psd4+uzJC/Ed0sL+J7Na0aD60HSu/TYRXEXZa5OrHb7XPc1knxfBTc6eI6ar1ejHd5V+1nc4U64IuWn9vMGzi0d0LlY=
| Add tpage for perl makefile | Add tpage for perl makefile
| YAML | mit | kbase/handle_mngr,kbase/handle_mngr,kbase/handle_mngr |
e2847a9e1b2a2c6a13101b1b1c3fa0aafa5b5048 | .travis.yml | .travis.yml | bundler_args: --without development
language: ruby
rvm:
- 2.1.2
- 2.1.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
before_script:
- ls -la /usr/share/elasticsearch/bin/elasticsearch
- echo $PWD
before_install: gem install bundler
script: SERVER=launch TEST_CLUSTER_COMMAND=/usr/share/elasticsearch/bin/elasticsearch TEST_CLUSTER_PARAMS='-Des.default.path.conf=/etc/elasticsearch/ -Des.default.path.logs=/var/log/elasticsearch/' TEST_CLUSTER_PORT=19250 bundle exec rspec
| bundler_args: "--without development"
language: ruby
rvm:
- 2.1.2
- 2.1.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
fast_finish: true
before_script:
- ls -la /usr/share/elasticsearch/bin/elasticsearch
- echo $PWD
before_install: gem install bundler
script: SERVER=launch TEST_CLUSTER_COMMAND=/usr/share/elasticsearch/bin/elasticsearch
TEST_CLUSTER_PARAMS='-Des.default.path.conf=/etc/elasticsearch/ -Des.default.path.logs=/var/log/elasticsearch/'
TEST_CLUSTER_PORT=19250 bundle exec rspec
notifications:
slack:
secure: CjEsKopTHFKWCyouA988YJrtrqsPsCg4fFNrhuVNoOl8DRYC4D0FS/NwVKNEnchDjl9pz5YFkc5QCLaMGtG6ZgQVc9zdg0cDizbRIF9WI5ryOWamthvfdx54/EIJXtQxUTeono4SwieAkjXRGrWpNzdGxY4xs6Hdfwup/YYPdiI=
| Set up the Slack notification from Travis CI | Set up the Slack notification from Travis CI
| YAML | mit | crowdworks/elasticsearch-model-extensions |
21c4bd6986b1f0125850d13d4348dc2c108a1e09 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DB="sqlite" SAURL="sqlite:///:memory:"
- DB="postgres" SAURL="postgresql://postgres:postgres@localhost/skosprovider_sqlalchemy"
- DB="mysql" SAURL="mysql://travis:@localhost/skosprovider_sqlalchemy"
install:
- python setup.py -q develop
- pip install -r requirements-dev.txt
# Install unittest2 on 2.6
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi"
before_script:
- "if [[ $DB = 'postgres' ]]; then psql -U postgres -c 'create database skosprovider_sqlalchemy'; fi"
- "if [[ $DB = 'mysql' ]]; then mysql -e 'create database skosprovider_sqlalchemy'; fi"
script:
- py.test --sqlalchemy_url $SAURL -v --cov skosprovider_sqlalchemy
after_success: coveralls
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DB="sqlite" SAURL="sqlite:///:memory:"
- DB="postgres" SAURL="postgresql://postgres:postgres@localhost/skosprovider_sqlalchemy"
# - DB="mysql" SAURL="mysql://travis:@localhost/skosprovider_sqlalchemy"
install:
- python setup.py -q develop
- pip install -r requirements-dev.txt
# Install unittest2 on 2.6
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi"
before_script:
- "if [[ $DB = 'postgres' ]]; then psql -U postgres -c 'create database skosprovider_sqlalchemy'; fi"
- "if [[ $DB = 'mysql' ]]; then mysql -e 'create database skosprovider_sqlalchemy'; fi"
script:
- py.test --sqlalchemy_url $SAURL -v --cov skosprovider_sqlalchemy
after_success: coveralls
| Stop trying to test mysql. | Stop trying to test mysql.
Couldn't find a decent py2/3 compatible mysql library out there.
| YAML | mit | koenedaele/skosprovider_sqlalchemy,cahytinne/skosprovider_sqlalchemy |
b7847d4c0c7d991fe177c1f575b902afd465abb0 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: java
env:
global:
- secure: Up/pPCFDt32GiRNsBak0mjxUslto6+OjJkUUni5nOg4LDw9fErDlyToCUD6R/ZKfrgQ6iQAL81Bo99+GPDgiRhUh/AdTMyguKtpVGeXCe/qKoO+hUj3B+Qk8iHIUva8zybJPIyLkKwUB/ghTSk/XQgn7/vofg1UtOU6TOvaRiNY=
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
- $HOME/.boot/cache/bin
- $HOME/.boot/cache/lib
- $HOME/bin
install:
- mkdir -p ~/bin
- export PATH=~/bin:$PATH
- curl -L https://github.com/boot-clj/boot-bin/releases/download/latest/boot.sh -o ~/bin/boot
- chmod +x ~/bin/boot
- boot -u
- boot -V
script:
- boot prod
after_success:
- chmod +x deploy.sh
- ./deploy.sh
| sudo: false
dist: trusty
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
- $HOME/.boot/cache/bin
- $HOME/.boot/cache/lib
- $HOME/bin
install:
- mkdir -p ~/bin
- export PATH=~/bin:$PATH
- curl -L https://github.com/boot-clj/boot-bin/releases/download/latest/boot.sh -o ~/bin/boot
- chmod +x ~/bin/boot
- boot -u
- boot -V
script:
- boot prod
after_success:
- chmod +x deploy.sh
- ./deploy.sh
| Remove incorrect Travis encrypted variable usage | Remove incorrect Travis encrypted variable usage
| YAML | mit | adolby/AndrewDolby.com,adolby/AndrewDolby.com |
d5678f5f99210a3ea7516fa26b0ae3ecf3fd2ed1 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
env:
global:
- MAVEN_OPTS="-Xmx256M"
matrix:
- TEST_MODULES=!presto-tests,!presto-kafka,!presto-redis,!presto-cassandra,!presto-raptor,!presto-postgresql,!presto-mysql
- TEST_MODULES=presto-tests TEST_OPTIONS='-Dair.test.thread-count=1'
- TEST_MODULES=presto-raptor,presto-redis,presto-cassandra,presto-kafka,presto-postgresql,presto-mysql
sudo: false
cache:
directories:
- $HOME/.m2/repository/io
- $HOME/.m2/repository/it
- $HOME/.m2/repository/org
- $HOME/.m2/repository/mysql
install: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -q -T 2
script: mvn test -Dair.check.skip-dependency=true $TEST_OPTIONS -pl $TEST_MODULES
notifications:
slack:
secure: V5eyoGShxFoCcYJcp858vf/T6gC9KeMxL0C1EElcpZRcKBrIVZzvhek3HLHxZOxlghqnvNVsyDtU3u5orkEaAXeXj5c2dN+4XBsAB9oeN5MtQ0Z3VLAhZDqKIW1LzcXrq4DpzM0PkGhjfjum/P94/qFYk0UckPtB6a341AuYRo8=
| language: java
jdk:
- oraclejdk8
env:
global:
- MAVEN_OPTS="-Xmx256M"
matrix:
- TEST_MODULES=!presto-tests,!presto-kafka,!presto-redis,!presto-cassandra,!presto-raptor,!presto-postgresql,!presto-mysql
- TEST_MODULES=presto-tests TEST_OPTIONS='-Dair.test.thread-count=1'
- TEST_MODULES=presto-raptor,presto-redis,presto-cassandra,presto-kafka,presto-postgresql,presto-mysql
sudo: required
dist: trusty
install: ./mvnw install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -q -T 2
script: ./mvnw test -Dair.check.skip-dependency=true $TEST_OPTIONS -pl $TEST_MODULES
notifications:
slack:
secure: V5eyoGShxFoCcYJcp858vf/T6gC9KeMxL0C1EElcpZRcKBrIVZzvhek3HLHxZOxlghqnvNVsyDtU3u5orkEaAXeXj5c2dN+4XBsAB9oeN5MtQ0Z3VLAhZDqKIW1LzcXrq4DpzM0PkGhjfjum/P94/qFYk0UckPtB6a341AuYRo8=
| Switch to Trusty (beta) image for Travis | Switch to Trusty (beta) image for Travis
This provides us with more memory and a newer JDK version. It also uses
Google Compute Engine, which is hopefully more reliable
| YAML | apache-2.0 | tomz/presto,haozhun/presto,prestodb/presto,mpilman/presto,smartnews/presto,svstanev/presto,youngwookim/presto,stewartpark/presto,martint/presto,raghavsethi/presto,damiencarol/presto,troels/nz-presto,cosinequanon/presto,zzhao0/presto,RobinUS2/presto,hulu/presto,TeradataCenterForHadoop/bootcamp,EvilMcJerkface/presto,martint/presto,bloomberg/presto,raghavsethi/presto,harunurhan/presto,aramesh117/presto,aleph-zero/presto,geraint0923/presto,cosinequanon/presto,RobinUS2/presto,mandusm/presto,prateek1306/presto,mvp/presto,tomz/presto,sumitkgec/presto,mvp/presto,losipiuk/presto,prateek1306/presto,Zoomdata/presto,stewartpark/presto,nileema/presto,cawallin/presto,aramesh117/presto,wyukawa/presto,haozhun/presto,suyucs/presto,mugglmenzel/presto,elonazoulay/presto,cawallin/presto,propene/presto,zhenyuy-fb/presto,nezihyigitbasi/presto,totticarter/presto,miniway/presto,nezihyigitbasi/presto,hgschmie/presto,svstanev/presto,mugglmenzel/presto,joy-yao/presto,mbeitchman/presto,Praveen2112/presto,idemura/presto,11xor6/presto,idemura/presto,zzhao0/presto,miniway/presto,sunchao/presto,totticarter/presto,idemura/presto,joy-yao/presto,raghavsethi/presto,ebd2/presto,yuananf/presto,takari/presto,svstanev/presto,Praveen2112/presto,mugglmenzel/presto,Jimexist/presto,svstanev/presto,erichwang/presto,tellproject/presto,ebyhr/presto,cberner/presto,sopel39/presto,sumitkgec/presto,twitter-forks/presto,idemura/presto,treasure-data/presto,propene/presto,electrum/presto,cberner/presto,tellproject/presto,ptkool/presto,fiedukow/presto,sumitkgec/presto,EvilMcJerkface/presto,kietly/presto,TeradataCenterForHadoop/bootcamp,martint/presto,fiedukow/presto,cberner/presto,hgschmie/presto,suyucs/presto,harunurhan/presto,hgschmie/presto,mpilman/presto,prateek1306/presto,jxiang/presto,sopel39/presto,bloomberg/presto,ocono-tech/presto,troels/nz-presto,tellproject/presto,nileema/presto,nileema/presto,aleph-zero/presto,ocono-tech/presto,electrum/presto,kietly/presto,jf367/presto,gh351135612/presto,tomz/presto,damiencarol/presto,jxiang/presto,wyukawa/presto,troels/nz-presto,hulu/presto,Jimexist/presto,dain/presto,twitter-forks/presto,nezihyigitbasi/presto,y-lan/presto,ipros-team/presto,harunurhan/presto,yuananf/presto,ptkool/presto,wrmsr/presto,suyucs/presto,mbeitchman/presto,totticarter/presto,aramesh117/presto,soz-fb/presto,wrmsr/presto,gh351135612/presto,suyucs/presto,elonazoulay/presto,sunchao/presto,ptkool/presto,y-lan/presto,albertocsm/presto,mode/presto,jxiang/presto,dabaitu/presto,hgschmie/presto,smartnews/presto,wagnermarkd/presto,idemura/presto,hulu/presto,ebd2/presto,sunchao/presto,wrmsr/presto,mbeitchman/presto,twitter-forks/presto,mvp/presto,dabaitu/presto,albertocsm/presto,joy-yao/presto,ipros-team/presto,zhenyuy-fb/presto,aleph-zero/presto,Jimexist/presto,cberner/presto,ArturGajowy/presto,sumitkgec/presto,arhimondr/presto,mpilman/presto,facebook/presto,Yaliang/presto,EvilMcJerkface/presto,mugglmenzel/presto,toyama0919/presto,sumitkgec/presto,mpilman/presto,stewartpark/presto,cosinequanon/presto,erichwang/presto,mvp/presto,propene/presto,facebook/presto,Teradata/presto,cosinequanon/presto,prateek1306/presto,elonazoulay/presto,sopel39/presto,TeradataCenterForHadoop/bootcamp,Zoomdata/presto,Praveen2112/presto,chrisunder/presto,sopel39/presto,mode/presto,Nasdaq/presto,Nasdaq/presto,shixuan-fan/presto,totticarter/presto,Nasdaq/presto,arhimondr/presto,facebook/presto,RobinUS2/presto,wagnermarkd/presto,toyama0919/presto,youngwookim/presto,elonazoulay/presto,11xor6/presto,mvp/presto,electrum/presto,tellproject/presto,ebd2/presto,y-lan/presto,toyama0919/presto,troels/nz-presto,wrmsr/presto,ebyhr/presto,mpilman/presto,tomz/presto,cawallin/presto,smartnews/presto,raghavsethi/presto,jxiang/presto,shixuan-fan/presto,prestodb/presto,electrum/presto,jiangyifangh/presto,smartnews/presto,RobinUS2/presto,wagnermarkd/presto,Teradata/presto,hgschmie/presto,nileema/presto,Jimexist/presto,ptkool/presto,wagnermarkd/presto,bloomberg/presto,nezihyigitbasi/presto,aglne/presto,erichwang/presto,Yaliang/presto,losipiuk/presto,dain/presto,ArturGajowy/presto,fiedukow/presto,soz-fb/presto,Yaliang/presto,11xor6/presto,twitter-forks/presto,Yaliang/presto,miniway/presto,soz-fb/presto,ocono-tech/presto,jiangyifangh/presto,mandusm/presto,losipiuk/presto,mode/presto,11xor6/presto,tomz/presto,mode/presto,mandusm/presto,toyama0919/presto,y-lan/presto,Nasdaq/presto,jf367/presto,Zoomdata/presto,ipros-team/presto,fiedukow/presto,takari/presto,yuananf/presto,smartnews/presto,Zoomdata/presto,mandusm/presto,zzhao0/presto,zhenyuy-fb/presto,kietly/presto,yuananf/presto,jf367/presto,sopel39/presto,gh351135612/presto,harunurhan/presto,dabaitu/presto,dain/presto,fiedukow/presto,aramesh117/presto,jf367/presto,geraint0923/presto,dabaitu/presto,damiencarol/presto,erichwang/presto,youngwookim/presto,dain/presto,EvilMcJerkface/presto,jxiang/presto,electrum/presto,ocono-tech/presto,aglne/presto,wagnermarkd/presto,shixuan-fan/presto,aglne/presto,elonazoulay/presto,wyukawa/presto,prateek1306/presto,suyucs/presto,ArturGajowy/presto,treasure-data/presto,ocono-tech/presto,nileema/presto,haozhun/presto,wrmsr/presto,y-lan/presto,jiangyifangh/presto,damiencarol/presto,ipros-team/presto,tellproject/presto,stewartpark/presto,wrmsr/presto,Teradata/presto,takari/presto,kietly/presto,albertocsm/presto,ArturGajowy/presto,propene/presto,cosinequanon/presto,sunchao/presto,Nasdaq/presto,cberner/presto,arhimondr/presto,albertocsm/presto,hulu/presto,losipiuk/presto,miniway/presto,joy-yao/presto,mpilman/presto,troels/nz-presto,facebook/presto,joy-yao/presto,dabaitu/presto,11xor6/presto,nezihyigitbasi/presto,losipiuk/presto,cawallin/presto,mbeitchman/presto,prestodb/presto,chrisunder/presto,treasure-data/presto,chrisunder/presto,aglne/presto,aleph-zero/presto,zzhao0/presto,ebd2/presto,haozhun/presto,totticarter/presto,mugglmenzel/presto,cawallin/presto,tellproject/presto,martint/presto,aramesh117/presto,takari/presto,ipros-team/presto,soz-fb/presto,prestodb/presto,damiencarol/presto,TeradataCenterForHadoop/bootcamp,ptkool/presto,gh351135612/presto,propene/presto,stewartpark/presto,EvilMcJerkface/presto,chrisunder/presto,ebyhr/presto,dain/presto,aleph-zero/presto,svstanev/presto,gh351135612/presto,Zoomdata/presto,chrisunder/presto,ebyhr/presto,toyama0919/presto,harunurhan/presto,prestodb/presto,hulu/presto,takari/presto,Jimexist/presto,geraint0923/presto,sunchao/presto,arhimondr/presto,Teradata/presto,Praveen2112/presto,prestodb/presto,Yaliang/presto,treasure-data/presto,ArturGajowy/presto,mandusm/presto,zzhao0/presto,miniway/presto,jf367/presto,shixuan-fan/presto,youngwookim/presto,youngwookim/presto,kietly/presto,jiangyifangh/presto,erichwang/presto,raghavsethi/presto,bloomberg/presto,Teradata/presto,facebook/presto,jiangyifangh/presto,Praveen2112/presto,ebyhr/presto,treasure-data/presto,aglne/presto,albertocsm/presto,ebd2/presto,mbeitchman/presto,mode/presto,twitter-forks/presto,geraint0923/presto,yuananf/presto,arhimondr/presto,TeradataCenterForHadoop/bootcamp,wyukawa/presto,haozhun/presto,soz-fb/presto,RobinUS2/presto,martint/presto,bloomberg/presto,wyukawa/presto,treasure-data/presto,zhenyuy-fb/presto,geraint0923/presto,zhenyuy-fb/presto,shixuan-fan/presto |
9cde1566c7a8388b2cb2b682aaf14b7db9f192cb | .travis.yml | .travis.yml | language: python
install:
- pip install ansible
- sudo apt-get install supervisor
script:
# Check the role syntax
- ansible-playbook --inventory='localhost,' tests/test.yml --syntax-check
# Check that the role can run with no errors/failures
- ansible-playbook --inventory='localhost,' tests/test.yml --connection=local
sudo: required
| language: python
install:
- pip install ansible
- sudo apt-get install supervisor
script:
# Check the role syntax
- ansible-playbook --inventory='localhost,' tests/test.yml --syntax-check
# Check that the role can run with no errors/failures
- ansible-playbook --inventory='localhost,' tests/test.yml --connection=local
# Check idempotence of the role by running it twice and making sure there are
# no changed/failed tasks
- >
ansible-playbook --inventory='localhost,' tests/test.yml --connection=local
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)
sudo: required
| Test role idempotence with Travis CI | Test role idempotence with Travis CI
| YAML | mit | astorije/ansible-role-shout,astorije/ansible-lounge,astorije/ansible-role-shout |
71cfcab8c08b416a138d7167549cd40e7e3018c3 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
script:
- vendor/bin/phpunit tests
before_script:
- composer install --dev --prefer-dist
| language: php
sudo: false
php:
- 5.4
- 5.5
script:
- vendor/bin/phpunit tests
before_script:
- composer install --dev --prefer-dist
| Remove php 5.3 for framework 4.0 compatibility | Remove php 5.3 for framework 4.0 compatibility
| YAML | mit | silverstripe/silverstripe-behat-extension,silverstripe/silverstripe-behat-extension,tractorcow/silverstripe-behat3,silverstripe-labs/silverstripe-behat-extension |
acba4a7fccc522ac27abe505441cf173351504a2 | .travis.yml | .travis.yml | language: java
notifications:
email:
recepients:
- omid-ci@yahoo-inc.com
on_success: always
on_failure: always
jdk:
- oraclejdk8
branches:
only:
- master
cache:
directories:
- "~/.m2"
before_script:
# This is required to avoid failures of HBase minicluster related to Hadoop 1.x releases
- umask 022
- git config --global user.email "omid-ci@yahoo-inc.com"
- git config --global user.name "Omid CI"
- git checkout master
script:
- mvn cobertura:cobertura
- mkdir failedTests && find -name testng-failed.xml -exec cp -vf "{}" failedTests/ \; && [ ! -f failedTests/testng-failed.xml ]
after_success:
- mvn coveralls:report
- mvn -B release:prepare release:perform -Prelease_profile,hbase-0 --settings bintray-settings.xml
after_failure:
- VERSION=`mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version | grep -v '\[' | grep SNAPSHOT` && git checkout -b "failed-build-$VERSION" && git config core.autocrlf false && git add -f */surefire-reports/* && git commit --verbose -m"Surefile output" && git push origin $VERSION:$VERSION | language: java
notifications:
email:
recepients:
- omid-ci@yahoo-inc.com
on_success: always
on_failure: always
jdk:
- oraclejdk8
branches:
only:
- master
cache:
directories:
- "~/.m2"
before_script:
# This is required to avoid failures of HBase minicluster related to Hadoop 1.x releases
- umask 022
- git config --global user.email "omid-ci@yahoo-inc.com"
- git config --global user.name "Omid CI"
- git checkout master
script:
- mvn cobertura:cobertura
# Check if there were any unit test failures
- mkdir failedTests && find -name testng-failed.xml -exec cp -vf "{}" failedTests/ \; && [ ! -f failedTests/testng-failed.xml ]
after_success:
- mvn coveralls:report
- mvn -B release:prepare release:perform -Prelease_profile,hbase-0 --settings bintray-settings.xml
after_failure:
- VERSION=`mvn org.apache.maven.plugins:maven-help-plugin:2.1.1:evaluate -Dexpression=project.version | grep -v '\[' | grep SNAPSHOT` && git checkout -b "failed-build-$VERSION" && git config core.autocrlf false && git add -f */surefire-reports/* && git commit --verbose -m"Surefile output" && git push "https://${GH_TOKEN}@github.com/yahoo/omid.git" $VERSION:$VERSION | Add git token to push to github | Add git token to push to github
Change-Id: Ib73c9eb5d144968c4d768dd1c54e77f071148930
| YAML | apache-2.0 | yahoo/omid,yonigottesman/incubator-omid,yonigottesman/incubator-omid,yahoo/omid |
13e32559f0b3d9b38c2948cdc4635e8be43eb805 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
branches:
only:
- master
before_script:
- echo "INSTRUMENTS_HOSTNAME=localhost\nINSTRUMENTS_PORT=3000" >> .env | language: node_js
node_js:
- "0.11"
branches:
only:
- master | Remove before script in Travis conf | Remove before script in Travis conf
| YAML | mit | tanem/instruments |
f0e930c22c788df2165fafc756e6cc4a33454480 | .travis.yml | .travis.yml | # Configuration for Travis (https://travis-ci.org)
language: objective-c
xcode_workspace: OneTimePassword.xcworkspace
xcode_scheme: OneTimePassword
osx_image: xcode7.2
xcode_sdk: iphonesimulator9.2
env:
- DESTINATION="OS=8.1,name=iPhone 4S"
- DESTINATION="OS=8.2,name=iPhone 5"
- DESTINATION="OS=8.3,name=iPhone 5S"
- DESTINATION="OS=8.4,name=iPhone 6"
- DESTINATION="OS=9.0,name=iPhone 6 Plus"
- DESTINATION="OS=9.1,name=iPhone 6S"
- DESTINATION="OS=9.2,name=iPhone 6S Plus"
matrix:
include:
- osx_image: xcode8
xcode_sdk: iphonesimulator10.0
env: DESTINATION="OS=10.0,name=iPhone SE"
# Check out nested dependencies
before_install: git submodule update --init --recursive
# A custom test script is required because xctool cannot access the iOS keychain
# https://github.com/facebook/xctool/issues/269
script: set -o pipefail && xcodebuild -workspace $TRAVIS_XCODE_WORKSPACE -scheme $TRAVIS_XCODE_SCHEME -sdk $TRAVIS_XCODE_SDK -destination "$DESTINATION" build test | xcpretty -c
| # Configuration for Travis (https://travis-ci.org)
language: objective-c
xcode_workspace: OneTimePassword.xcworkspace
xcode_scheme: OneTimePassword
osx_image: xcode7.2
xcode_sdk: iphonesimulator9.2
env:
- DESTINATION="OS=8.1,name=iPhone 4S"
- DESTINATION="OS=8.2,name=iPhone 5"
- DESTINATION="OS=8.3,name=iPhone 5S"
- DESTINATION="OS=8.4,name=iPhone 6"
- DESTINATION="OS=9.0,name=iPhone 6 Plus"
- DESTINATION="OS=9.1,name=iPhone 6S"
- DESTINATION="OS=9.2,name=iPhone 6S Plus"
- DESTINATION="OS=9.3,name=iPhone 6S Plus"
matrix:
include:
- osx_image: xcode8
xcode_sdk: iphonesimulator10.0
env: DESTINATION="OS=10.0,name=iPhone SE"
# Check out nested dependencies
before_install: git submodule update --init --recursive
# A custom test script is required because xctool cannot access the iOS keychain
# https://github.com/facebook/xctool/issues/269
script: set -o pipefail && xcodebuild -workspace $TRAVIS_XCODE_WORKSPACE -scheme $TRAVIS_XCODE_SCHEME -sdk $TRAVIS_XCODE_SDK -destination "$DESTINATION" build test | xcpretty -c
| Test the build on iOS 9.3 | [Travis] Test the build on iOS 9.3
| YAML | mit | mattrubin/onetimepassword,mattrubin/onetimepassword |
20c5368076ac9f08d4e83710626cd47ebe9b13a8 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
before_install:
- sudo apt-get update
- sudo /etc/init.d/postgresql stop
- sudo apt-get install -y postgresql-contrib-9.3
- sudo /etc/init.d/postgresql start 9.3
install:
- python setup.py install
- pip install pyflakes
- pip install pep8
- pip install docutils
- test $USE_SA == 1 && pip install sqlalchemy || true
before_script:
- psql -c "create database aiopg;" -U postgres
- psql -c "create user aiopg with password 'passwd';" -U postgres
- psql -c "grant all privileges on database aiopg to aiopg;" -U postgres
- psql -c "create extension hstore;" -U postgres -d aiopg
script:
- pep8 aiopg examples tests
- pyflakes .
- python runtests.py -v
- python setup.py check -rms
#addons:
# postgresql: "9.4"
env:
global:
- PYTHON=python
matrix:
- USE_SA=1 PYTHONASYNCIODEBUG=1
- USE_SA=0 PYTHONASYNCIODEBUG=1
- USE_SA=1 PYTHONASYNCIODEBUG=0
- USE_SA=0 PYTHONASYNCIODEBUG=0
cache: apt
| language: python
python:
- "3.3"
- "3.4"
before_install:
- sudo apt-get update
- sudo /etc/init.d/postgresql stop
- sudo apt-get install -y postgresql-contrib-${PG}
- sudo /etc/init.d/postgresql start ${PG}
install:
- python setup.py install
- pip install pyflakes
- pip install pep8
- pip install docutils
- test $USE_SA == 1 && pip install sqlalchemy || true
before_script:
- psql -c "create database aiopg;" -U postgres
- psql -c "create user aiopg with password 'passwd';" -U postgres
- psql -c "grant all privileges on database aiopg to aiopg;" -U postgres
- psql -c "create extension hstore;" -U postgres -d aiopg
script:
- pep8 aiopg examples tests
- pyflakes .
- python runtests.py -v
- python setup.py check -rms
#addons:
# postgresql: "9.4"
env:
global:
- PYTHON=python
matrix:
- USE_SA=1 PYTHONASYNCIODEBUG=1 PG=9.3
- USE_SA=0 PYTHONASYNCIODEBUG=1 PG=9.3
- USE_SA=1 PYTHONASYNCIODEBUG=0 PG=9.3
- USE_SA=0 PYTHONASYNCIODEBUG=0 PG=9.3
cache: apt
| Use shell var for postgres version | Use shell var for postgres version
| YAML | bsd-2-clause | luhn/aiopg,aio-libs/aiopg,graingert/aiopg,eirnym/aiopg,nerandell/aiopg,hyzhak/aiopg |
35a003def860061948d1f12cfdfa9beeb5672f8d | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.10
- 2.2.5
- 2.3.1
before_install:
- gem update --system
- gem update bundler
notifications:
email: false
| language: ruby
rvm:
- 2.5
- 2.6
- 2.7
before_install:
- gem update --system
- gem update bundler
notifications:
email: false
| Test only maintened ruby versions | Test only maintened ruby versions
| YAML | mit | dlibanori/tww,dlibanori/tww |
04b3bd0d45bf6d42ecb9f9d6b939b7dc3526dea6 | .travis.yml | .travis.yml | language: python
python:
- 2.7
install: pip install tox --use-mirrors
script: tox
services:
- elasticsearch
| language: python
python:
- 2.7
install: pip install tox
script: tox
services:
- elasticsearch
| Remove --use-mirrors option for pip | Remove --use-mirrors option for pip
| YAML | bsd-2-clause | thoas/pybbm,thoas/pybbm,ulule/pybbm,ulule/pybbm,thoas/pybbm,ulule/pybbm |
bd682db6d7a591dcd5c9789149a786371dee2412 | .travis.yml | .travis.yml | language: csharp
solution: src/NLog.mono.sln
install:
- nuget restore src/NLog.mono.sln
- nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Debug src/NLog.mono.sln
- mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "./build/bin/Debug/Mono 2.x/NLog.UnitTests.dll"
| language: csharp
solution: src/NLog.mono.sln
install:
- nuget restore src/NLog.mono.sln
- nuget install xunit.runners -Version 1.9.2 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release src/NLog.mono.sln
- mono ./testrunner/xunit.runners.1.9.2/tools/xunit.console.clr4.exe "./build/bin/Release/Mono 2.x/NLog.UnitTests.dll"
| Revert "Test - run Travis in Debug mode" | Revert "Test - run Travis in Debug mode"
This reverts commit 671e742585c2cede8d1e24e7d8e25c4edb12ad5f.
| YAML | bsd-3-clause | sean-gilliam/NLog,AndreGleichner/NLog,littlesmilelove/NLog,luigiberrettini/NLog,BrutalCode/NLog,bhaeussermann/NLog,tetrodoxin/NLog,kevindaub/NLog,bryjamus/NLog,tetrodoxin/NLog,kevindaub/NLog,BrutalCode/NLog,nazim9214/NLog,304NotModified/NLog,UgurAldanmaz/NLog,bhaeussermann/NLog,ie-zero/NLog,hubo0831/NLog,luigiberrettini/NLog,snakefoot/NLog,nazim9214/NLog,UgurAldanmaz/NLog,NLog/NLog,hubo0831/NLog,AndreGleichner/NLog,MartinTherriault/NLog,bjornbouetsmith/NLog,littlesmilelove/NLog,MoaidHathot/NLog,MartinTherriault/NLog,MoaidHathot/NLog,bryjamus/NLog,bjornbouetsmith/NLog,ie-zero/NLog |
2706f75f5aa5be0a9de49aa478f7c637a9761634 | .travis.yml | .travis.yml | language: c
env:
- SMVERSION=1.5
- SMVERSION=1.6
- SMVERSION=1.7
before_install:
- sudo apt-get update
- sudo apt-get install gcc-multilib
- sudo apt-get install lynx
before_script:
- SMPATTERN="http:.*sourcemod-.*-linux.*"
- SMURL="http://www.sourcemod.net/smdrop/$SMVERSION/"
- SMPACKAGE=`lynx -dump "$SMURL" | egrep -o "$SMPATTERN" | tail -1`
- wget $SMPACKAGE
- tar -xzf $(basename "$SMPACKAGE")
- cd addons/sourcemod/scripting/
- chmod +x spcomp
script:
- ./spcomp in_game_audio_base.sp
- ./spcomp in_game_audio_donator_intro.sp
- ./spcomp in_game_audio_map_change.sp
- ./spcomp in_game_audio_player.sp
after_script:
- ls *.smx
notifications:
email: false
| language: c
env:
- SMVERSION=1.5
- SMVERSION=1.6
- SMVERSION=1.7
matrix:
allow_failures:
- env: SMVERSION=1.7
before_install:
- sudo apt-get update
- sudo apt-get install gcc-multilib
- sudo apt-get install lynx
before_script:
- SMPATTERN="http:.*sourcemod-.*-linux.*"
- SMURL="http://www.sourcemod.net/smdrop/$SMVERSION/"
- SMPACKAGE=`lynx -dump "$SMURL" | egrep -o "$SMPATTERN" | tail -1`
- wget $SMPACKAGE
- tar -xzf $(basename "$SMPACKAGE")
- cd addons/sourcemod/scripting/
- chmod +x spcomp
script:
- ./spcomp in_game_audio_base.sp
- ./spcomp in_game_audio_donator_intro.sp
- ./spcomp in_game_audio_map_change.sp
- ./spcomp in_game_audio_player.sp
after_script:
- ls *.smx
notifications:
email: false
| Allow Source Mod 1.7 build to fail | Allow Source Mod 1.7 build to fail
| YAML | mit | CrimsonTautology/sm_in_game_audio |
d3d805b0035dd757e4f82214912a7c19d8b48d2f | .travis.yml | .travis.yml | language: php
dist: trusty
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.1
- 7.2
- 7.3
- 7.4
install:
- composer install --prefer-source --no-interaction
# PHPUnit
- composer require phpunit/phpunit
- ./vendor/bin/phpunit --version
before_script:
## Install Code climate reporter
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script: ./vendor/bin/phpunit -c phpunit.xml.dist
after_script:
## Code climate
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| language: php
dist: trusty
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.2
- 7.3
- 7.4
install:
- composer install --prefer-source --no-interaction
# PHPUnit
- composer require phpunit/phpunit
- ./vendor/bin/phpunit --version
before_script:
## Install Code climate reporter
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script: ./vendor/bin/phpunit -c phpunit.xml.dist
after_script:
## Code climate
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| Remove support for PHP 7.1 | Remove support for PHP 7.1
| YAML | lgpl-2.1 | stdtabs/phptabs |
7804f10f788a28291b76a1462ab3a911e3d8fee4 | .travis.yml | .travis.yml | language: rust
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo test --verbose --features pattern
- cargo doc
- cargo bench --verbose
- cargo test --verbose --manifest-path=regex_macros/Cargo.toml
- cargo bench --verbose --manifest-path=regex_macros/Cargo.toml
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=regex/index.html>' > target/doc/index.html &&
pip install ghp-import --user $USER &&
$HOME/.local/bin/ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
env:
global:
secure: VvIrYRW/a8FmBA61hn1bDrqWwR92tANOT6PCeLYd9A9ViQrN07PE6uGsnd9iwr8itck10Ctl1mThZYUkK8BDFEmlvSxOFJ/Po5eRe6A1CYuFF40zizJ+3NllVkN20kwoQDe0kxwZVDGO9Yi1icHUrbRPWDfS+1tfobO/UT8Dlng=
notifications:
email:
on_success: never
| language: rust
rust:
- 1.0.0
- beta
- nightly
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- |
[ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --features pattern
- cargo doc
- cargo bench --verbose
- |
[ $TRAVIS_RUST_VERSION != nightly ] || cargo test --manifest-path=regex_macros/Cargo.toml
- |
[ $TRAVIS_RUST_VERSION != nightly ] || cargo bench --manifest-path=regex_macros/Cargo.toml
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION = nightly ] &&
echo '<meta http-equiv=refresh content=0;url=regex/index.html>' > target/doc/index.html &&
pip install ghp-import --user $USER &&
$HOME/.local/bin/ghp-import -n target/doc &&
git push -qf https://${TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
env:
global:
secure: VvIrYRW/a8FmBA61hn1bDrqWwR92tANOT6PCeLYd9A9ViQrN07PE6uGsnd9iwr8itck10Ctl1mThZYUkK8BDFEmlvSxOFJ/Po5eRe6A1CYuFF40zizJ+3NllVkN20kwoQDe0kxwZVDGO9Yi1icHUrbRPWDfS+1tfobO/UT8Dlng=
notifications:
email:
on_success: never
| Test on rust 1.0.0, nightly, and beta | Test on rust 1.0.0, nightly, and beta
| YAML | apache-2.0 | golddranks/regex,edunham/regex,SeanRBurton/regex,bluss/regex,SeanRBurton/regex,rust-lang/regex,SeanRBurton/regex,rust-lang-nursery/regex,golddranks/regex,rust-lang-nursery/regex,rust-lang-nursery/regex,rust-lang/regex,rust-lang-nursery/regex,golddranks/regex,bluss/regex,SeanRBurton/regex,bluss/regex,rust-lang/regex,edunham/regex,rust-lang-nursery/regex,rust-lang/regex,edunham/regex,rust-lang/regex,SeanRBurton/regex |
8763beee8409cdedd6fc523e58110786b6af0ebd | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
| language: ruby
rvm:
- "1.9.2"
- "1.9.3"
| Allow running tests for 1.9.2 and 1.9.3 versions | Allow running tests for 1.9.2 and 1.9.3 versions
| YAML | mit | oivoodoo/devise_masquerade,oivoodoo/devise_masquerade,oivoodoo/devise_masquerade |
8e05672f4b13c8f3ce65092405a4b2b4dd50356e | .travis.yml | .travis.yml | cache: apt
sudo: false
language: python
python:
- "2.7"
- "3.5"
addons:
apt:
packages:
- libblas-dev
- liblapack-dev
- gfortran
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy matplotlib
- pip install --ignore-installed -r requirements_travis.txt
script: python test.py
notifications:
email: false
| cache: apt
sudo: false
language: python
python:
- "2.7"
- "3.5"
addons:
apt:
packages:
- libblas-dev
- liblapack-dev
- gfortran
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy matplotlib
- pip install -r requirements_travis.txt
script: python test.py
notifications:
email: false
| Remove unused ignore-installed pip argument | Remove unused ignore-installed pip argument
| YAML | mit | bartromgens/nsmaps,bartromgens/nsmaps,bartromgens/nsmaps |
10d1546bd591adbb60c98a9f76ec66680111f194 | .travis.yml | .travis.yml | language: perl
perl:
- "5.30"
- "5.28"
- "5.26"
- "5.24"
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
env:
global:
- AUTHOR_TESTING=1
- RELEASE_TESTING=1
- HARNESS_OPTIONS='j:c'
notifications:
recipients:
- andy@petdance.com
on_success: change
on_failure: always
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init
- build-perl
- perl -V
install:
- cpanm --installdeps .
- cpanm IO::Pty
- cpanm Test::Pod
script:
- perl Makefile.PL
- make fulltest
| language: perl
perl:
- "5.30"
- "5.28"
- "5.26"
- "5.24"
- "5.22"
- "5.20"
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
env:
global:
- HARNESS_OPTIONS='j:c'
notifications:
recipients:
- andy@petdance.com
on_success: change
on_failure: always
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init
- build-perl
- perl -V
install:
- cpanm Test::More --force # Perl 5.10 and 5.12 need this, and Test::More fails to install for them.
- cpanm --installdeps .
- cpanm IO::Pty # For testing
- cpanm Test::Pod # For testing
script:
- perl Makefile.PL
- make fulltest
| Add Test::More explicitly, and force it | Add Test::More explicitly, and force it
| YAML | artistic-2.0 | petdance/ack3,petdance/ack3,petdance/ack3,petdance/ack3,petdance/ack3,petdance/ack3,petdance/ack3,petdance/ack3 |
f1c9c8ffb79145f75614cd9ac4d8dcf18d2bf3a0 | .travis.yml | .travis.yml | language: python
env:
global:
- USE_CONDA=false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
matrix:
include:
- python: 2.7
env: USE_CONDA=true
- python: 3.4
env: USE_CONDA=true
install:
- |
set -ev
export TRAVIS_PYTHON=`which python`
export TRAVIS_PIP=`which pip`
if [[ $USE_CONDA == true ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
chmod +x miniconda.sh;
./miniconda.sh -b;
export PATH=/home/travis/miniconda/bin:$PATH;
conda update --yes conda;
if $TRAVIS_PYTHON -c 'import virtualenv'; then echo "ERROR: virtualenv package is installed"; exit 1; fi;
else
$TRAVIS_PIP install virtualenv;
fi
if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then $TRAVIS_PIP install "mercurial>=3.3" ; fi;
if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then $TRAVIS_PIP install python-hglib==1.5 ; fi;
script:
- $TRAVIS_PYTHON setup.py test
| language: python
env:
global:
- USE_CONDA=false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
matrix:
include:
- python: 2.7
env: USE_CONDA=true
- python: 3.4
env: USE_CONDA=true
install:
- |
set -ev
export TRAVIS_PYTHON=`which python`
export TRAVIS_PIP=`which pip`
if [[ $USE_CONDA == true ]]; then
wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
chmod +x miniconda.sh;
./miniconda.sh -b;
export PATH=/home/travis/miniconda/bin:$PATH;
conda update --yes conda;
if $TRAVIS_PYTHON -c 'import virtualenv'; then echo "ERROR: virtualenv package is installed"; exit 1; fi;
else
$TRAVIS_PIP install virtualenv;
fi
if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then $TRAVIS_PIP install "mercurial>=3.3" ; fi;
if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then $TRAVIS_PIP install python-hglib==1.5 ; fi;
$TRAVIS_PIP install selenium
script:
- $TRAVIS_PYTHON setup.py test
| Enable full-stack tests on Travis-CI | Enable full-stack tests on Travis-CI
| YAML | bsd-3-clause | mdboom/asv,qwhelan/asv,spacetelescope/asv,edisongustavo/asv,qwhelan/asv,spacetelescope/asv,giltis/asv,waylonflinn/asv,spacetelescope/asv,pv/asv,airspeed-velocity/asv,airspeed-velocity/asv,pv/asv,airspeed-velocity/asv,pv/asv,giltis/asv,waylonflinn/asv,qwhelan/asv,pv/asv,giltis/asv,mdboom/asv,airspeed-velocity/asv,mdboom/asv,edisongustavo/asv,spacetelescope/asv,mdboom/asv,waylonflinn/asv,edisongustavo/asv,qwhelan/asv |
953a3192d1eb3120f8575977306d19bf150dc489 | .travis.yml | .travis.yml | language: node_js
branches:
only:
- master
node_js:
- "0.12"
- "0.10"
- "4.3"
- stable
notifications:
email:
- vesa.poikajarvi@iki.fi
sudo: false
| language: node_js
branches:
only:
- master
node_js:
- "0.12"
- "0.10"
- "4.3"
- "6.9"
- stable
notifications:
email:
- vesa.poikajarvi@iki.fi
sudo: false
| Build with node 6.9 too | Build with node 6.9 too
| YAML | mit | vesse/passport-ldapauth,vesse/passport-ldapauth |
18a34c5ad9f3698e408d607814056d9b318ddf21 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
before_script:
- composer self-update
- composer install --dev --no-interaction
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
before_script:
- composer self-update
- composer install --dev --no-interaction
| Allow Travis CI to build on PHP 7.4 | Allow Travis CI to build on PHP 7.4
| YAML | mit | RiskioFr/oauth2-auth0 |
44f8a8d172f8ae363c70406e74b4c95d94cfa7d1 | .travis.yml | .travis.yml | language: ruby
before_install:
- gem install bundler
gemfile:
- Gemfile
rvm:
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
script:
- bundle exec rspec spec
| language: ruby
before_install:
- gem install bundler
gemfile:
- Gemfile
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
script:
- bundle exec rspec spec
| Use the latest Rubies on Travis CI | Use the latest Rubies on Travis CI
| YAML | mit | koic/death-command |
40d94bbb21c0d072ae226b749bc295fcfc4296bc | .travis.yml | .travis.yml | language: dart
script: ./tool/travis.sh
# env:
# - DARTANALYZER_FLAGS=--fatal-warnings
| language: dart
script: ./tool/travis.sh
env:
- DARTANALYZER_FLAGS=--fatal-warnings
| Set analyzer warnings as errors in Travis CI script. | Set analyzer warnings as errors in Travis CI script.
| YAML | apache-2.0 | QuiverDart/quiver_optional,QuiverDart/quiver_iterables,QuiverDart/quiver_time,QuiverDart/quiver_mirrors,QuiverDart/quiver_async,QuiverDart/quiver_check,googlearchive/quiver_iterables,trinarytree/quiver-dart,QuiverDart/quiver_strings,cbracken/quiver-dart,QuiverDart/quiver_cache,googlearchive/quiver_pattern,EmmanuelOga/quiver-dart,google/quiver-dart,googlearchive/quiver_strings,googlearchive/quiver_async,QuiverDart/quiver_collection,yjbanov/quiver_async,yjbanov/quiver_hashcode,googlearchive/quiver_iterables,yjbanov/quiver_async,googlearchive/quiver_pattern,alechenninger/quiver-dart,QuiverDart/quiver_async,googlearchive/quiver_io,QuiverDart/quiver_iterables,matgray/quiver_iterables,googlearchive/quiver_strings,QuiverDart/quiver_pattern,googlearchive/quiver_cache,QuiverDart/quiver_io,googlearchive/quiver_collection,jtmcdole/quiver-dart,yjbanov/quiver_hashcode,googlearchive/quiver_collection,kevmoo/quiver-dart,QuiverDart/quiver_hashcode,googlearchive/quiver_check,QuiverDart/quiver_check,googlearchive/quiver_mirrors,QuiverDart/quiver_cache,QuiverDart/quiver_io,googlearchive/quiver_optional,QuiverDart/quiver_hashcode,googlearchive/quiver_cache,QuiverDart/quiver_collection,QuiverDart/quiver_time,alechenninger/quiver-dart,EmmanuelOga/quiver-dart,QuiverDart/quiver_mirrors,googlearchive/quiver_optional,QuiverDart/quiver_strings,trinarytree/quiver-dart,willyp564/quiver-dart,googlearchive/quiver_time,QuiverDart/quiver_optional,willyp564/quiver-dart,googlearchive/quiver_hashcode,matgray/quiver_iterables,googlearchive/quiver_time,googlearchive/quiver_hashcode,cbracken/quiver-dart,kevmoo/quiver-dart,jtmcdole/quiver-dart,googlearchive/quiver_mirrors,googlearchive/quiver_check,googlearchive/quiver_io,QuiverDart/quiver_pattern,googlearchive/quiver_async |
e944dd87ad019749eb1fec2ec9171c816236c8a4 | .travis.yml | .travis.yml | language: perl
sudo: false
perl:
- 5.14
- 5.16
- 5.18
- 5.20
- 5.22
- 5.24
matrix:
include:
- perl: 5.24
env: COVERAGE=1
before_install:
- eval $(curl https://travis-perl.github.io/init) --auto
| language: perl
sudo: false
perl:
- 5.14
- 5.16
- 5.18
- 5.20
- 5.22
- 5.24
- dev
matrix:
include:
- perl: 5.24
env: COVERAGE=1
before_install:
- eval $(curl https://travis-perl.github.io/init) --auto
| Add dev version of Perl to test against | Add dev version of Perl to test against
| YAML | mit | zakame/hashids.pm,zakame/hashids.pm |
56c5f44d5ea1f81d503205a3f58117c45720a238 | .travis.yml | .travis.yml | sudo: required
os: linux
language: python
python:
- 3.3
- 3.4
- 3.5
- 3.6
install:
- sudo apt-get install -y apache2
- sudo apt-get install -y php5-common libapache2-mod-php5 php5-cli
- sudo service apache2 restart
- cp -r test/vulnerable-sites /var/www/vulnerable-sites
- pip install -r requirements.txt
script:
- python setup.py install
- test/test-vulnerable-sites.sh | sudo: required
os: linux
language: python
python:
- 3.3
- 3.4
- 3.5
- 3.6
install:
- sudo apt-get install -y apache2
- sudo apt-get install -y php5-common libapache2-mod-php5 php5-cli
- sudo service apache2 restart
- cp -R test/vulnerable-sites /var/www/html/vulnerable-sites/
- pip install -r requirements.txt
script:
- python setup.py install
- test/test-vulnerable-sites.sh | Copy vulnerable sites to apache document root recursively for Travis. | Copy vulnerable sites to apache document root recursively for Travis.
| YAML | mit | tijme/angularjs-csti-scanner,tijme/angularjs-sandbox-escape-scanner |
69969b3688e0305819ff12e51d04c9e7688d63cd | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
script:
- npm test | sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
| Remove script `npm test`, it'll automatically be run | Remove script `npm test`, it'll automatically be run
| YAML | mit | bookyacom/simple-soundcloud |
996e4d5f709f71285581a298bb7912bb9ccdb08a | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- 5.4
- 7.0
cache:
directories:
- ~/.composer
before_script:
- phpenv config-add .travis.php.ini
- composer self-update
- composer install --prefer-dist
script:
- ant
branches:
only:
- master
| ## Run on container environment
sudo: false
language: php
php:
- 5.6
- 7
matrix:
include:
- php: 5.6
env: dependencies=lowest
- php: 7
env: dependencies=lowest
- php: 5.6
env: dependencies=highest
- php: 7
env: dependencies=highest
## Cache composer bits, where possible
cache:
directories:
- vendor
- $HOME/.composer/cache
before_script:
- phpenv config-add .travis.php.ini
- composer self-update
- if [ -z "$dependencies" ]; then composer install; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer update -n; fi;- composer install --prefer-dist
script:
- ant
branches:
only:
- master
| Test only current/future PHP. Cache composer atifacts | Test only current/future PHP. Cache composer atifacts
Also testing lowest/current/highest versions of code.
* http://blog.wyrihaximus.net/2015/07/composer-cache-on-travis/
* http://blog.wyrihaximus.net/2015/06/test-lowest-current-and-highest-possible-on-travis/
| YAML | mit | alister/faker-extensions,alister/faker-extensions |
3ab59e3347d47bf27fc739c020458954c04ac15e | .travis.yml | .travis.yml | ---
language: ruby
script: "bundle exec qed -Ilib"
rvm:
- 1.9.2
- 1.9.3
- rbx-19mode
- jruby-19mode
| ---
language: ruby
script: "bundle exec qed -Ilib"
rvm:
- 1.9.3
- 2.0.0
- rbx
- jruby
| Add Ruby 2.0.0 to Travis CI. | Add Ruby 2.0.0 to Travis CI. [admin]
| YAML | bsd-2-clause | rubyworks/rubytest |
458ca5d92fbd8e8020cc95a939cd04d3af2b3268 | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
| language: node_js
node_js:
- "stable"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/9fd34f7c5d010a31bab7
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
| Configure Travis to call webhook on Gitter | Configure Travis to call webhook on Gitter
| YAML | bsd-2-clause | SpotScore/spotscore |
1020c021d4960c9d9007f1802b78e11e5df103c8 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: cpp
before_install:
- sudo apt-get update -qq
# Install ZeroMQ
- sudo apt-get install -y libzmq3-dev libzmq3
# Install Boost
- sudo apt-get install -y libboost-all-dev
# Install yaml-cpp
- sudo apt-get install -y libyaml-cpp0.5 libyaml-cpp-dev
# Install libcURL
- sudo apt-get install -y libcurl4-gnutls-dev
# Install libarchive (to avoid compiling it)
- sudo apt-get install -y libarchive-dev
# Install isolate
- git clone https://github.com/ioi/isolate.git
- cd isolate
- "cat Makefile | sed 's/all: isolate isolate.1 isolate.1.html/all: isolate/' > Makefile_new"
- rm -f Makefile
- mv Makefile_new Makefile
- make
- sudo make install
- cd ..
- rm -rf isolate
# Install coveralls uploader
- pip install --user cpp-coveralls
script:
- mkdir build
- cd build
- cmake ..
- make
- ctest -E tool_ --output-on-failure
after_success:
- ctest -R tool_ --output-on-failure || true
- cd ${TRAVIS_BUILD_DIR}
- coveralls -i src --gcov-options '\-lp'
| sudo: required
dist: trusty
language: cpp
before_install:
- sudo apt-get update -qq
# Install ZeroMQ
- sudo apt-get install -y libzmq3-dev libzmq3
# Install Boost
- sudo apt-get install -y libboost-all-dev
# Install yaml-cpp
- sudo apt-get install -y libyaml-cpp0.5 libyaml-cpp-dev
# Install libcURL
- sudo apt-get install -y libcurl4-gnutls-dev
# Install libarchive (to avoid compiling it)
- sudo apt-get install -y libarchive-dev
# Install libcap for isolate
- sudo apt-get install -y libcap-dev
# Install isolate
- git clone https://github.com/ioi/isolate.git
- cd isolate
- make isolate
- sudo make install
- cd ..
- rm -rf isolate
# Install coveralls uploader
- pip install --user cpp-coveralls
script:
- mkdir build
- cd build
- cmake ..
- make
- ctest -E tool_ --output-on-failure
after_success:
- ctest -R tool_ --output-on-failure || true
- cd ${TRAVIS_BUILD_DIR}
- coveralls -i src --gcov-options '\-lp'
| Fix Isolate compilation in Travis | Fix Isolate compilation in Travis
| YAML | mit | ReCodEx/worker,ReCodEx/worker,ReCodEx/worker |
df1dd046d904a3a61081c675a59b1dd34ba61862 | .travis.yml | .travis.yml | language: nodejs
node_js:
- "4.1"
before_install:
- sudo add-apt-repository ppa:ubuntu-wine/ppa -y
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
- echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
- sudo apt-get update -q
- sudo apt-get install wine mono-devel -y
notifications:
email:
on_success: never
on_failure: change
| language: nodejs
node_js:
- "4.1"
before_install:
- sudo add-apt-repository ppa:ubuntu-wine/ppa -y
- sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
- echo "deb http://download.mono-project.com/repo/debian wheezy main" | sudo tee /etc/apt/sources.list.d/mono-xamarin.list
- echo "deb http://download.mono-project.com/repo/debian wheezy-libtiff-compat main" | sudo tee -a /etc/apt/sources.list.d/mono-xamarin.list
- sudo apt-get update -q
- sudo apt-get install wine mono-devel -y
notifications:
email:
on_success: never
on_failure: change
| Add other mono repo for Ubuntu 12.04 | Add other mono repo for Ubuntu 12.04
| YAML | mit | electronjs/windows-installer,mongodb-js/electron-installer-squirrel-windows |
0cf8ebcf106dd15ff2591ff1c220a692630975ff | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
| Test on Node.js v5 and v4 | Test on Node.js v5 and v4
| YAML | mit | kevva/is-negative |
8631366dc47eb9665b4508ac7d79a54e4da2d09d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- step
- master
- travis-ci
install:
- for dir in compassion.*; do (cd $dir && yarn install --no-lockfile); done
- yarn install --no-lockfile
- yarn global add istanbul coveralls
- git checkout .
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- step
- master
- travis-ci
install:
- npm install -g npm
- for dir in compassion.*; do (cd $dir && npm install --no-package-lock --no-save); done
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
- git checkout .
| Install with NPM 5 on Travis CI. | Install with NPM 5 on Travis CI.
| YAML | mit | bigeasy/compassion |
f12581c394d7513d63454d3b01315dd44fbe3930 | .travis.yml | .travis.yml | language: go
go:
- 1.1.2
- tip
install: true
before_install:
git submodule update --init --recursive
script: ./bin/test
| language: go
go:
- 1.1.2
- tip
install: true
before_install:
go get github.com/codegangsta/cli
go get github.com/stretchr/testify/assert
script: ./bin/test
| Add go get to Travis config | Add go get to Travis config
| YAML | mit | arvidsaur/cli,arvidsaur/cli,zabawaba99/cli,zabawaba99/cli,neslom/cli,neslom/cli,exercism/cli,Tonkpils/cli,yeah-right/cli,yeah-right/cli,arvidsaur/cli,yeah-right/cli,exercism/cli,Tonkpils/cli,lcowell/cli,zabawaba99/cli,lcowell/cli,Tonkpils/cli,lcowell/cli,neslom/cli |
26e840b3298bfac67816dff36578e7c448575100 | .travis.yml | .travis.yml | language: csharp
solution: ObjectDisposedFodyAddin.sln
install:
- nuget restore ObjectDisposedFodyAddin.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- dotnet build -c Release
- dotnet test -c Release ./src/Tests
| language: csharp
solution: ObjectDisposedFodyAddin.sln
mono: none
dotnet: 2.1.403
install:
- dotnet restore
script:
- dotnet build -c Release
- dotnet test -c Release ./src/Tests
| Use .NET core instead of Mono. | Use .NET core instead of Mono.
| YAML | mit | minidfx/ObjectDisposedFodyAddin |
938ad4979628ac0551504dd568793be5d1c75c8e | .travis.yml | .travis.yml | language: perl
perl:
- "5.10"
env:
PATH=~/.rakudobrew/bin:$PATH
install:
- git clone https://github.com/tadzik/rakudobrew ~/.rakudobrew
- rakudobrew build moar
- rakudobrew build-panda
- panda install URI
- panda install Pod::To::HTML
script:
- make test
| language: perl
perl:
- "5.10"
env:
PATH=~/.rakudobrew/bin:$PATH
install:
- git clone https://github.com/tadzik/rakudobrew ~/.rakudobrew
- rakudobrew build moar
- rakudobrew build-panda
- panda install URI
- panda install Pod::To::HTML
- panda install LWP::Simple
script:
- make test
| Add LWP::Simple to list of modules to install | Add LWP::Simple to list of modules to install
| YAML | artistic-2.0 | stmuk/perl6-examples,perl6/perl6-examples,Quinny/perl6-examples,perl6/perl6-examples,perl6/perl6-examples,shlomif/perl6-examples,shlomif/perl6-examples,stmuk/perl6-examples,stmuk/perl6-examples,shlomif/perl6-examples,shlomif/perl6-examples,shlomif/perl6-examples,Quinny/perl6-examples,perl6/perl6-examples,stmuk/perl6-examples,Quinny/perl6-examples,Quinny/perl6-examples,stmuk/perl6-examples,Quinny/perl6-examples,perl6/perl6-examples |
d1d2de48f72853552e3d3a751b3f178c5dc10ef5 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.8"
- node_js: "0.6"
- node_js: "0.4"
sudo: false
| language: node_js
node_js:
- "iojs-v2.2"
- "iojs-v2.1"
- "iojs-v2.0"
- "iojs-v1.8"
- "iojs-v1.7"
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" = "0.6" ] || npm install -g npm@1.4.28 && npm install -g npm'
sudo: false
matrix:
fast_finish: true
allow_failures:
- node_js: "iojs-v2.1"
- node_js: "iojs-v2.0"
- node_js: "iojs-v1.7"
- node_js: "iojs-v1.6"
- node_js: "iojs-v1.5"
- node_js: "iojs-v1.4"
- node_js: "iojs-v1.3"
- node_js: "iojs-v1.2"
- node_js: "iojs-v1.1"
- node_js: "iojs-v1.0"
- node_js: "0.11"
- node_js: "0.9"
- node_js: "0.8"
- node_js: "0.6"
- node_js: "0.4"
| Test up to `io.js` `v2.2` | Test up to `io.js` `v2.2` | YAML | mit | es-shims/object-is,ljharb/object-is |
21f8e31105444a2355e6d6ff1b531b939950dbde | .travis.yml | .travis.yml | sudo: false
language: rust
script:
- cargo build --verbose
- cargo test --verbose
- |
if [ $TRAVIS_RUST_VERSION == "nightly" ]; then
cargo install clippy && cargo clippy -- -Dclippy
fi
matrix:
fast_finish: true
# I'd love to just use travis-cargo for all this, but it's broken:
# https://github.com/huonw/travis-cargo/pull/58
include:
- rust: nightly
- rust: beta
- rust: stable
env: RUSTFLAGS="-C link-dead-code"
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
after_success:
- |
# Fetch and build kcov
wget "https://github.com/SimonKagstrom/kcov/archive/master.zip"
unzip master.zip
mkdir kcov-master/build
pushd kcov-master/build
cmake ..
make
popd
# Run each binary under kcov
for binary in target/debug/portier_broker-*; do
echo "Generating coverage for $binary"
./kcov-master/build/src/kcov --verify --exclude-pattern=/.cargo,target/debug target/kcov/ $binary
done
echo "Merging and uploading coverage"
./kcov-master/build/src/kcov --merge --coveralls-id="$TRAVIS_JOB_ID" target/kcov-merged target/kcov/portier_broker-*
| sudo: false
language: rust
script:
- cargo build --verbose
- cargo test --verbose
- |
if [ $TRAVIS_RUST_VERSION == "nightly" ]; then
cargo install clippy && cargo clippy -- -Dclippy
fi
matrix:
fast_finish: true
allow_failures:
- rust: nightly
# I'd love to just use travis-cargo for all this, but it's broken:
# https://github.com/huonw/travis-cargo/pull/58
include:
- rust: nightly
- rust: beta
- rust: stable
env: RUSTFLAGS="-C link-dead-code"
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- binutils-dev
after_success:
- |
# Fetch and build kcov
wget "https://github.com/SimonKagstrom/kcov/archive/master.zip"
unzip master.zip
mkdir kcov-master/build
pushd kcov-master/build
cmake ..
make
popd
# Run each binary under kcov
for binary in target/debug/portier_broker-*; do
echo "Generating coverage for $binary"
./kcov-master/build/src/kcov --verify --exclude-pattern=/.cargo,target/debug target/kcov/ $binary
done
echo "Merging and uploading coverage"
./kcov-master/build/src/kcov --merge --coveralls-id="$TRAVIS_JOB_ID" target/kcov-merged target/kcov/portier_broker-*
| Allow nightly / clippy to fail | Allow nightly / clippy to fail
| YAML | apache-2.0 | portier/portier-broker,portier/portier-broker,portier/portier-broker,portier/portier-broker |
537c0b193a9c5e23cdae5d71d384ce713c5c3548 | .travis.yml | .travis.yml | language: rust
rust:
- nightly
addons:
apt:
packages:
- sqlite3
- libsqlite3-dev
env:
global:
- DATABASE_BUSY_TIMEOUT=250
- TEST_DATABASE_URL=/home/travis/lugh-test-database.sqlite
- TEST_LUGH_BIND=localhost:3000
- PATH="/home/travis/.cargo/bin:$PATH"
before_script:
- cargo install diesel_cli
script:
- make test
| language: rust
cache: cargo
rust:
- nightly
addons:
apt:
packages:
- sqlite3
- libsqlite3-dev
env:
global:
- DATABASE_BUSY_TIMEOUT=250
- TEST_DATABASE_URL=/home/travis/lugh-test-database.sqlite
- TEST_LUGH_BIND=localhost:3000
- PATH="/home/travis/.cargo/bin:$PATH"
before_script:
- cargo install diesel_cli --force
script:
- make test
| Enable Travis CI Cargo cache | Enable Travis CI Cargo cache
| YAML | mit | rlustin/lugh,rlustin/lugh,rlustin/lugh |
0a8e53f3a631812ef645c2a8b14a7016f4c4b611 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
| sudo: false
language: node_js
node_js:
- "6"
- "8"
- "10"
| Add 10 (lts), 11 (current); remove 4 (eol) | chore(NodeJS): Add 10 (lts), 11 (current); remove 4 (eol)
| YAML | mit | knalli/homebridge-pilight |
e34bec93b965eb30e838c551af09676a23fe9f60 | .travis.yml | .travis.yml | language: go
install:
- go get -t
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
| language: go
install:
- go get -t
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go test -race -v ./...
after_script:
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
| Fix the ci for pull-requests | Fix the ci for pull-requests
- Run tests as script (with race condition)
- Put `goverwalls` as `after_script` so a failure to upload the
coverage won't affect the status of the build
Signed-off-by: Vincent Demeester <87e1f221a672a14a323e57bb65eaea19d3ed3804@sbr.pm>
| YAML | bsd-3-clause | imdario/mergo |
f37591ee9f88d88e8332ca1c2583e078b7473350 | .travis.yml | .travis.yml | language: python
python:
- '3.5'
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
install:
- pip install tox
script:
- tox
| language: python
python:
- '2.6'
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- pypy
install:
- pip install tox
script:
- tox -e py
| Test against Python 3.6 and PyPy | Test against Python 3.6 and PyPy
| YAML | mit | jwodder/javaproperties |
48ce31654bd3c034444f665f63fcd8afe5107927 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- jruby-19mode
- rbx-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- jruby
- rbx
install: "bundle install --retry=3"
| Disable parallel bundle install to fix rbx builds | Disable parallel bundle install to fix rbx builds
Travis CI uses `--jobs=3` by default which leads to corrupted gems on
rubinius. See https://github.com/travis-ci/travis-ci/issues/2821
| YAML | mit | vinnicc/dota,yielder/dota,mbesto/dota |
1274b59b8dc993918ee8afeff77ff0b5593e5a83 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=Django==1.4.2
- DJANGO=Django==1.5.0
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a --branch setup.py test
matrix:
include:
- python: 3.2
env: DJANGO=Django==1.5.0
- python: 3.3
env: DJANGO=Django==1.5.0
after_success: coveralls
| language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=Django==1.4.10
- DJANGO=Django==1.5.5
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a --branch setup.py test
matrix:
include:
- python: 3.2
env: DJANGO=Django==1.5.5
- python: 3.3
env: DJANGO=Django==1.5.5
after_success: coveralls
| Upgrade Django 1.4 and 1.5 versions in Travis | Upgrade Django 1.4 and 1.5 versions in Travis
| YAML | mit | treyhunner/django-email-log,treyhunner/django-email-log |
3d915d9490af8945309954f75afc1636a673242e | .travis.yml | .travis.yml | if: NOT (commit_message =~ /^\[docs\]/)
branches:
except:
- new-docs
addons:
chrome: stable
firefox: latest
apt:
packages:
- dbus
language: node_js
matrix:
include:
- node_js: "6"
env: GULP_TASK="test-server"
- node_js: "stable"
env: GULP_TASK="test-server"
- node_js: "stable"
env: GULP_TASK="test-client-travis"
- node_js: "stable"
env: GULP_TASK="test-client-travis-mobile"
- node_js: "stable"
env: GULP_TASK="test-functional-local-headless-chrome"
- node_js: "stable"
env: GULP_TASK="test-functional-local-headless-firefox"
fast_finish: true
cache:
directories:
- $HOME/.npm
install: travis_retry npm install
branches:
except:
- /^build-bot-temp-.*$/
notifications:
email: false
| if: NOT (commit_message =~ /^\[docs\]/ OR branch = 'new-docs')
addons:
chrome: stable
firefox: latest
apt:
packages:
- dbus
language: node_js
matrix:
include:
- node_js: "6"
env: GULP_TASK="test-server"
- node_js: "stable"
env: GULP_TASK="test-server"
- node_js: "stable"
env: GULP_TASK="test-client-travis"
- node_js: "stable"
env: GULP_TASK="test-client-travis-mobile"
- node_js: "stable"
env: GULP_TASK="test-functional-local-headless-chrome"
- node_js: "stable"
env: GULP_TASK="test-functional-local-headless-firefox"
fast_finish: true
cache:
directories:
- $HOME/.npm
install: travis_retry npm install
branches:
except:
- /^build-bot-temp-.*$/
notifications:
email: false
| Disable tests on Travis for new-docs | Disable tests on Travis for new-docs | YAML | mit | VasilyStrelyaev/testcafe,miherlosev/testcafe,AndreyBelym/testcafe,AndreyBelym/testcafe,VasilyStrelyaev/testcafe,MargaritaLoseva/testcafe,VasilyStrelyaev/testcafe,AndreyBelym/testcafe,MargaritaLoseva/testcafe,miherlosev/testcafe,DevExpress/testcafe,VasilyStrelyaev/testcafe,VasilyStrelyaev/testcafe,miherlosev/testcafe,MargaritaLoseva/testcafe,MargaritaLoseva/testcafe,AndreyBelym/testcafe,DevExpress/testcafe,miherlosev/testcafe,DevExpress/testcafe,AndreyBelym/testcafe,miherlosev/testcafe,DevExpress/testcafe,DevExpress/testcafe |
5251707a4a2ffe17edab3eb8060e0e41f0c30eb9 | .travis.yml | .travis.yml | language: php
matrix:
fast_finish: true
include:
- php: 5.3.3
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- sudo apt-get -y install pypy python-sphinx graphviz
- travis_retry composer install --no-interaction --prefer-source
script:
- cd docs && make linkcheck && cd ..
- vendor/bin/phpdoc -d src -t docs-api
- vendor/bin/phpunit --coverage-text
| language: php
matrix:
fast_finish: true
include:
- php: 5.3.3
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
env: CHECK_LINKS=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- if [[ "$CHECK_LINKS" == "true" ]]; then sudo apt-get -y install pypy python-sphinx graphviz; fi
- travis_retry composer install --no-interaction --prefer-source
script:
- if [[ "$CHECK_LINKS" == "true" ]]; then cd docs && make linkcheck && cd ..; fi
- vendor/bin/phpdoc -d src -t docs-api
- vendor/bin/phpunit --coverage-text
| Check links only on PHP 5.6 | Enhancement: Check links only on PHP 5.6
| YAML | mit | Targoniy/-json-schema-for-trip-api,ChrisTitos/json-schema,erayd/json-schema,JustTSK/json-schema,samokspv/json-schema,edisonthk/json-schema,siad007/json-schema,sam002/json-schema,richgarrod/json-schema,localheinz/json-schema,jojo1981/json-schema,justinrainbow/json-schema,robotdance/json-schema,araines/json-schema |
18efcd9754636ca364a7e2e9510297681271ede7 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
| language: node_js
node_js:
- "iojs"
- "0.12"
- "0.11"
- "0.10"
| Add io.js testing in Travis | Add io.js testing in Travis
| YAML | mit | resin-io/resin-image |
5a02cdda668fce07cb229db9d98ba8b094f618c1 | .travis.yml | .travis.yml | language: go
go:
- 1.9.x
install:
- go get github.com/magefile/mage
# We currently need the unreleased Hugo 0.33 to build.
- go get -d github.com/gohugoio/hugo
script:
- pushd $GOPATH/src/github.com/gohugoio/hugo
- mage vendor
- mage install
- popd
- hugo env
- hugo
| language: generic
before_install:
- wget https://github.com/gohugoio/hugo/releases/download/v0.33/hugo_0.33_Linux-64bit.deb
- sudo dpkg -i hugo_0.33_Linux-64bit.deb
- echo "6426dad5c5489b642ee9a635ef2c7239cad242fd1d65cc712a8fb815565362cd hugo_0.33_Linux-64bit.deb" | sha256sum -c - || exit 1;
install:
- hugo env
- hugo
| Update Travis config to use Hugo 0.33 release version | Update Travis config to use Hugo 0.33 release version
| YAML | mpl-2.0 | letsencrypt/website,letsencrypt/website,letsencrypt/website |
82ea7227a4cfc12f2986513a2470de9980f809f6 | .travis.yml | .travis.yml | language: generic
sudo: required
script: swift test
matrix:
include:
- os: osx
osx_image: xcode9
- os: linux
dist: trusty
install:
- wget https://swift.org/builds/swift-4.0-release/ubuntu1404/swift-4.0-RELEASE/swift-4.0-RELEASE-ubuntu14.04.tar.gz
- tar xzf swift-4.0-RELEASE-ubuntu14.04.tar.gz
- export PATH=`pwd`/swift-4.0-RELEASE-ubuntu14.04/usr/bin:"${PATH}"
- name: Code Quality Checks
os: osx
osx_image: xcode10
install:
- brew update
- brew upgrade swiftlint || true
addons:
sonarcloud:
organization: bouke-github
script:
- swiftlint --strict
- sonar-scanner
| language: generic
sudo: required
script: swift test
matrix:
include:
- os: osx
osx_image: xcode11
- os: linux
dist: trusty
install:
- wget https://swift.org/builds/swift-5.1.3-release/ubuntu1404/swift-5.1.3-RELEASE/swift-5.1.3-RELEASE-ubuntu14.04.tar.gz
- tar xzf swift-5.1.3-RELEASE-ubuntu14.04.tar.gz
- export PATH=`pwd`/swift-5.1.3-RELEASE-ubuntu14.04/usr/bin:"${PATH}"
- name: Code Quality Checks
os: osx
osx_image: xcode11
install:
- brew update
- brew upgrade swiftlint || true
addons:
sonarcloud:
organization: bouke-github
script:
- swiftlint --strict
- sonar-scanner
| Test against Swift 5 with Travis CI | Test against Swift 5 with Travis CI
| YAML | mit | Bouke/DNS |
b9fc2c41c6f8f44b32a1516b4d17988fb57c965a | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9
matrix:
include:
- xcode_scheme: Gzip macOS
xcode_sdk: macosx
env: DESTINATION="arch=x86_64"
- xcode_scheme: Gzip iOS
xcode_sdk: iphonesimulator
env: DESTINATION="OS=10.0,name=iPhone SE"
script:
- swiftlint
- swift test
- xcodebuild
-scheme "$TRAVIS_XCODE_SCHEME"
-sdk "$TRAVIS_XCODE_SDK"
-destination "$DESTINATION"
clean test
| xcpretty -f `xcpretty-travis-formatter`
- pod lib lint --quick
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: objective-c
osx_image: xcode9.1
matrix:
include:
- xcode_scheme: Gzip macOS
xcode_sdk: macosx
env: DESTINATION="arch=x86_64"
- xcode_scheme: Gzip iOS
xcode_sdk: iphonesimulator
env: DESTINATION="OS=10.0,name=iPhone SE"
script:
- swiftlint
- swift test
- xcodebuild
-scheme "$TRAVIS_XCODE_SCHEME"
-sdk "$TRAVIS_XCODE_SDK"
-destination "$DESTINATION"
clean test
| xcpretty -f `xcpretty-travis-formatter`
- pod lib lint --quick
after_success:
- bash <(curl -s https://codecov.io/bash)
| Update Xcode image for Travis CI to Xcode 9.1 | Update Xcode image for Travis CI to Xcode 9.1
| YAML | mit | 1024jp/NSData-GZIP,1024jp/GzipSwift,1024jp/GzipSwift,1024jp/NSData-GZIP,1024jp/GzipSwift |
63f7398a123757958f872cd861e18d079040d30b | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- pip install git+https://github.com/pytoolz/toolz.git
- pip install cython
- pip install nose
install:
- python setup.py build_ext --inplace
- python setup.py install
# commands to run tests
script:
- nosetests --with-doctest cytoolz
notifications:
email: false
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- pip install git+https://github.com/pytoolz/toolz.git
- pip install cython
install:
- python setup.py build_ext --inplace
- python setup.py install
# commands to run tests
script:
- nosetests --with-doctest cytoolz
notifications:
email: false
| Use `nosestests` that comes with TravisCI (don't install via pip) | Use `nosestests` that comes with TravisCI (don't install via pip)
| YAML | bsd-3-clause | cpcloud/cytoolz,llllllllll/cytoolz,llllllllll/cytoolz,ljwolf/cytoolz,cpcloud/cytoolz,simudream/cytoolz,simudream/cytoolz |
02b652abee17b10bd79576a84788b14b5457aff4 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.0
bundler_args: --jobs 7
branches:
only:
- master
script: bundle exec rake travis:ci
notifications:
hipchat:
on_change: true
on_failure: true
on_success: false
on_pull_requests: false
rooms:
# Build Statuses
- secure: IycrY52k8dhilnU3B2c8mem9LzofQlMISUZSDk2tys0cvW0U3lnCQQiSvT5kTtiKztUABEiT2UqU2QYwUfeW/yYrO3NjB2OBqehRKnEn2oEaapcIugvtsQMySfYqJ7IsKpyh3vTMmgyKPw3OCKh5OJn26lMdHH2R91SXcbUezKI=
# Release Engineering
- secure: JJlujHzKxsY74bfJHNxH6fQOF5IULeJECXkxx6uU/T+CjxydINwAH5lQ1RUleLZlH0BmQDgxK+O46hiuWdYAyhgCJY9bQOBWG+aQusXIoLvV3qj+rU0dX1wvjEuO/NzkZTPZy7HMGqmCxTdmx/OawoNnpXU8qsI/OJqbISv2bGo=
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.5
- 2.3.1
branches:
only:
- master
script: bundle exec rake travis:ci
| Test on modern Ruby and remove hip chat notifications | Test on modern Ruby and remove hip chat notifications
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef/mixlib-versioning,chef/mixlib-versioning |
438e1c0fbb9c2215d5f5e0b99615622e6210cbad | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
fast_finish: true
allow_failures:
- php: 5.3
install:
- composer install --no-dev
- ./vendor/bin/phake app:install DB_NAME=tests CHOWN_USER=$USER CHGRP_GROUP=$USER
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- wget http://selenium-release.storage.googleapis.com/2.46/selenium-server-standalone-2.46.0.jar
- php -S localhost:8000 > /dev/null 2>&1 &
- java -jar selenium-server-standalone-2.46.0.jar > /dev/null 2>&1 &
- sleep 30
script:
- phpunit --group example
- phpunit --exclude-group example
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
fast_finish: true
allow_failures:
- php: 5.3
install:
- composer install
- ./vendor/bin/phake app:install DB_NAME=tests CHOWN_USER=$USER CHGRP_GROUP=$USER
before_script:
- sh -e /etc/init.d/xvfb start
- export DISPLAY=:99.0
- wget http://selenium-release.storage.googleapis.com/2.46/selenium-server-standalone-2.46.0.jar
- php -S localhost:8000 > /dev/null 2>&1 &
- java -jar selenium-server-standalone-2.46.0.jar > /dev/null 2>&1 &
- sleep 30
script:
- ./vendor/bin/phpunit --group example
- ./vendor/bin/phpunit --exclude-group example
| Use our PHPUnit in Travis | Use our PHPUnit in Travis
| YAML | mit | QoboLtd/project-template-wordpress,QoboLtd/project-template-wordpress,QoboLtd/project-template-wordpress,QoboLtd/project-template-wordpress |
ae5d30c34f097264cf0e71ea770f9560858a75eb | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
services:
- redis-server
script:
- bin/rake db:migrate RAILS_ENV=test
- CODECLIMATE_REPO_TOKEN=1898c1592d89355927dfccc9815ec3f91fa5fa32e2eb1333977b008d4c9e96dc bundle exec rake
branches:
only: master | language: ruby
rvm:
- 2.2.2
services:
- redis-server
script:
- bin/rake db:migrate RAILS_ENV=test
- CODECLIMATE_REPO_TOKEN=1898c1592d89355927dfccc9815ec3f91fa5fa32e2eb1333977b008d4c9e96dc bundle exec rake
| Update Travis configuration to test with all branch | Update Travis configuration to test with all branch
| YAML | mit | riseshia/Bonghwa,riseshia/Bonghwa,riseshia/Bonghwa,riseshia/Bonghwa |
b504ec6bfd33da8f80f5c0ec7a08e5c2d4181814 | .travis.yml | .travis.yml | language: python
# See tox.ini for env list
env:
- TOXENV=py27-django14
- TOXENV=py27-django15
- TOXENV=py27-django16
- TOXENV=py27-django17
- TOXENV=py27-django18
- TOXENV=py33-django15
- TOXENV=py33-django16
- TOXENV=py33-django17
- TOXENV=py33-django18
- TOXENV=py34-django15
- TOXENV=py34-django16
- TOXENV=py34-django17
- TOXENV=py34-django18
- TOXENV=checkmanifest
install:
- pip install tox>=2.1
script:
- tox
| language: python
# See tox.ini for env list
env:
- TOXENV=py27-django14
- TOXENV=py27-django15
- TOXENV=py27-django16
- TOXENV=py27-django17
- TOXENV=py27-django18
- TOXENV=py33-django15
- TOXENV=py33-django16
- TOXENV=py33-django17
- TOXENV=py33-django18
- TOXENV=py34-django15
- TOXENV=py34-django16
- TOXENV=py34-django17
- TOXENV=py34-django18
- TOXENV=checkmanifest
install:
- pip install tox>=2.1
script:
- tox
sudo: false
| Allow TravisCI to use container infrastructure, for faster builds | Allow TravisCI to use container infrastructure, for faster builds
| YAML | mit | GamesDoneQuick/django-paypal,Parisson/django-paypal,drfraser/django-paypal,frankier/django-paypal,rsalmaso/django-paypal,philippeowagner/django-paypal-1,pydanny/django-paypal,spookylukey/django-paypal,spookylukey/django-paypal,patathor/django-paypal,philippeowagner/django-paypal-1,spookylukey/django-paypal,millanp/django-paypal,drfraser/django-paypal,GamesDoneQuick/django-paypal,patathor/django-paypal,rsalmaso/django-paypal,frankier/django-paypal,pydanny/django-paypal,Parisson/django-paypal,rsalmaso/django-paypal,millanp/django-paypal |
d121334843ec0f5d1dc0992c891b6b2fe778eace | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
env:
- SYMFONY_VERSION=2.5.*
matrix:
include:
- php: 5.5
env: SYMFONY_VERSION=2.3.*
- php: 5.5
env: SYMFONY_VERSION=2.4.*
- php: 5.5
env: SYMFONY_VERSION=2.6.*
before_script:
- composer self-update
- composer require symfony/symfony:${SYMFONY_VERSION} --prefer-source
- vendor/symfony-cmf/testing/bin/travis/phpcr_odm_doctrine_dbal.sh
script: phpunit --coverage-text
notifications:
irc: "irc.freenode.org#symfony-cmf"
email: "symfony-cmf-devs@googlegroups.com"
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
env:
- SYMFONY_VERSION=2.6.*
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*
allow_failures:
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*
before_script:
- composer self-update
- composer require symfony/symfony:${SYMFONY_VERSION} --prefer-source
- vendor/symfony-cmf/testing/bin/travis/phpcr_odm_doctrine_dbal.sh
script: phpunit --coverage-text
notifications:
irc: "irc.freenode.org#symfony-cmf"
email: "symfony-cmf-devs@googlegroups.com"
| Test against newest PHP and Symfony versions | Test against newest PHP and Symfony versions | YAML | mit | symfony-cmf/TreeBrowserBundle,symfony-cmf/TreeBrowserBundle,symfony-cmf/TreeBrowserBundle,symfony-cmf/TreeBrowserBundle |
44f5a3fc2ccef0b4bf1f3fa1cce5a1b0d64d5da4 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.3"
- "5.6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
| language: node_js
node_js:
- "4.3"
- "5.6"
env:
- CXX=g++-5
- CC=gcc-5
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
| Set environnement variables for tests | Set environnement variables for tests
| YAML | mit | cedced19/pouicpouic,cedced19/pouicpouic |
de4ccc3fae21187d87b050b438f291e05bae8e94 | .travis.yml | .travis.yml | # octocatalog-diff
language: ruby
install: true
script: "script/cibuild"
matrix:
include:
# Build with latest ruby
- rvm: 2.4.1
env: RUBOCOP_TEST="true" RSPEC_TEST="true"
# Build with older ruby versions
- rvm: 2.3.4
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
- rvm: 2.2
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
- rvm: 2.1
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
- rvm: 2.0
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
| # octocatalog-diff
language: ruby
install: true
script: "script/cibuild"
dist: precise
matrix:
include:
# Build with latest ruby
- rvm: 2.4.1
env: RUBOCOP_TEST="true" RSPEC_TEST="true"
# Build with older ruby versions
- rvm: 2.3.4
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
- rvm: 2.2
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
- rvm: 2.1
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
- rvm: 2.0
env: RUBOCOP_TEST="false" RSPEC_TEST="true"
| Add flag to build on precise for now | Add flag to build on precise for now
| YAML | mit | github/octocatalog-diff,github/octocatalog-diff,github/octocatalog-diff |
34698751f23be028cf7f04b005001158d5346523 | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
services:
- xvfb
before_script:
- yarn danger ci
- npm install grunt-cli -g
- "export DISPLAY=:99.0"
- sleep 5
script:
- grunt
- npm run test:unit
- npm run test:e2e
after_script:
- npm list
cache:
directories:
- node_modules
| dist: trusty
language: node_js
node_js:
- "8"
before_script:
- yarn danger ci
- npm install grunt-cli -g
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 5
script:
- grunt
- npm run test:unit
- npm run test:e2e
after_script:
- npm list
cache:
directories:
- node_modules
| Fix Build Failed in Travis CI: | Fix Build Failed in Travis CI:
This commit set trusty as image to use and revert this commit changes
Add xvfb as service: 3c31460f2fd193864fdc69781d8041f1626b6937
Remove failing script: d5cb60b19cea7851b0d42ee2d028b136b08a6ec1
| YAML | mit | roramirez/MagicMirror,roramirez/MagicMirror,n8many/MagicMirror,Tyvonne/MagicMirror,n8many/MagicMirror,MichMich/MagicMirror,MichMich/MagicMirror,Tyvonne/MagicMirror,n8many/MagicMirror,MichMich/MagicMirror,MichMich/MagicMirror,Tyvonne/MagicMirror,Tyvonne/MagicMirror,roramirez/MagicMirror,n8many/MagicMirror,roramirez/MagicMirror,n8many/MagicMirror |
ab3c54514bc5f18557a364199b6125535dfc8984 | .travis.yml | .travis.yml | language: generic
env:
- OCAML=4.02.3
- OCAML=4.02.3+buckle-master
- OCAML=4.03.0
- OCAML=4.04.2
- OCAML=4.05.0
- OCAML=4.06.1
- OCAML=4.07.0
before_script:
- sudo add-apt-repository -y ppa:robert7/tidy-html5
- sudo add-apt-repository -y ppa:avsm/ocaml42+opam12
- sudo apt-get update
- sudo apt-get install opam tidy
- "opam init -y --compiler=$OCAML"
- eval `opam config env`
script:
- opam pin add -y --no-action odoc .
- opam install -y --deps-only odoc
- make test
- opam pin add -y --dev-repo dune
- make dune-test
notifications:
email:
recipients:
- antonbachin@yahoo.com
on_success: always
on_failure: always
| language: generic
env:
- OCAML=4.02.3
- OCAML=4.02.3+buckle-master
- OCAML=4.03.0
- OCAML=4.04.2
- OCAML=4.05.0
- OCAML=4.06.1
- OCAML=4.07.0
before_script:
- sudo add-apt-repository -y ppa:robert7/tidy-html5
- sudo apt-get update
- sudo apt-get install tidy
- wget https://github.com/ocaml/opam/releases/download/2.0.0/opam-2.0.0-x86_64-linux
- sudo mv opam-2.0.0-x86_64-linux /usr/local/bin/opam
- sudo chmod a+x /usr/local/bin/opam
- "opam init -y --compiler=$OCAML --disable-sandboxing"
- eval `opam config env`
- opam --version
- ocaml -version
script:
- opam pin add -y --no-action odoc .
- opam install -y --deps-only odoc
- make test
- opam pin add -y --dev-repo dune
- make dune-test
notifications:
email:
recipients:
- antonbachin@yahoo.com
on_success: always
on_failure: always
| Use opam 2 in Travis | Use opam 2 in Travis
opam 1.2 cannot access new packages, which are published only in the
opam 2 repo.
| YAML | isc | ocaml-doc/odoc,ocaml-doc/odoc |
6e5ab5ee55c9e7cff6be0b36610544e143034273 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
- oraclejdk9
cache:
directories:
- $HOME/.gradle
| language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
cache:
directories:
- $HOME/.gradle
install:
# If the build targets Java 7, we need to temporarily switch to Java 9 to
# install the Gradle wrapper and to avoid an InvalidKeyException
- if [[ $JAVA_HOME =~ "java-7" ]]; then
jdk_switcher use oraclejdk9;
./gradlew tasks;
jdk_switcher use openjdk7;
fi
| Fix CI tests for Java 7 | Fix CI tests for Java 7
| YAML | apache-2.0 | michel-kraemer/bson4jackson |
1e42b0fb3b4f7d33b619e2a7ce16a4c3080cccf9 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
script:
- npm run ci
| language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
script:
- npm run ci
| Drop node 4 support, add node 10 support. | Drop node 4 support, add node 10 support.
| YAML | mit | stampit-org/stamp,stampit-org/stamp |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.