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 |
|---|---|---|---|---|---|---|---|---|---|
c80ffe2f0751692dd3a142d69ce873b894348367 | .travis.yml | .travis.yml | language: node_js
branches: [master]
node_js:
- "lts/boron"
- "lts/carbon"
- "current"
script:
- npm run build
- npm run test
| language: node_js
branches: [master]
node_js:
- 6
- 7
- 8
- 9
- 10
- 11
script:
- npm run build
- npm run test
| Update TravisCI config for better test coverage | Update TravisCI config for better test coverage
| YAML | mit | sasstools/scss-tokenizer |
d158d02c73d7b436a2aeb4089725ab0b5f5a6760 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
- 0.9
before_script:
- npm install -g grunt-cli | language: node_js
node_js:
- 0.8
before_script:
- npm install -g grunt-cli | Stop testing on node 0.9 | Stop testing on node 0.9
| YAML | mit | wa0x6e/cal-heatmap,merbla/cal-heatmap,kbullaughey/cal-heatmap,CapeSepias/cal-heatmap,aslubsky/cal-heatmap,devcollectief/cal-heatmap,CapeSepias/cal-heatmap,DreamlineStudios/cal-heatmap,kamisama/cal-heatmap,aslubsky/cal-heatmap,devcollectief/cal-heatmap,kbullaughey/cal-heatmap,kamisama/cal-heatmap,DreamlineStudios/cal-heatmap,merbla/cal-heatmap |
8267af649cdb29b697b680359fc84c6e278e21e5 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install:
- npm install -g npm
before_script:
- npm install -g broccoli-cli
| language: node_js
node_js:
- "0.10"
before_install:
- npm install -g npm
before_script:
- npm install -g broccoli-cli
sudo: false
| Switch to Travis container-based infrastructure | Switch to Travis container-based infrastructure | YAML | unlicense | SassDoc/broccoli-sassdoc |
a8c4ea1b1b1d5314769234989e4d364ac130e2fb | .travis.yml | .travis.yml | language: c
compiler:
- gcc-7
- clang
env:
matrix:
- DEBUG=0
- DEBUG=1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
script:
- make all
- make test
branches:
except:
- /^\d+-/
| language: c
compiler:
- gcc-7
- clang
env:
matrix:
- DEBUG=0
- DEBUG=1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
script:
- make all
- make test
branches:
except:
- /^\d+-/
git:
depth: 2
| Change Travis clone depth to 2 | Change Travis clone depth to 2
| YAML | apache-2.0 | byannoni/qthreads |
bf58094edc6d6756e00ffb37f0d9128613c0acb0 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: php
env:
global:
- WP_CLI_BIN_DIR=/tmp/wp-cli-phar
matrix:
include:
- php: 7.1
env: WP_VERSION=latest
- php: 7.0
env: WP_VERSION=latest
- php: 5.6
env: WP_VERSION=trunk
- php: 5.6
env: WP_VERSION=latest
- php: 5.6
env: WP_VERSION=latest BUILD=git WP_CLI_BIN_DIR=''
- php: 5.6
env: WP_VERSION=3.7.11
- php: 5.3
dist: precise
env: WP_VERSION=3.7.11 DEPLOY_BRANCH=master
before_script:
- export PATH="$HOME/.composer/vendor/bin:$PATH"
- |
- ./ci/prepare.sh
script: ./ci/test.sh
after_success: ./ci/deploy.sh
cache:
directories:
- vendor
- $HOME/.composer/cache
branches:
only:
- master
notifications:
email:
on_success: never
on_failure: change
| sudo: false
dist: trusty
language: php
env:
global:
- WP_CLI_BIN_DIR=/tmp/wp-cli-phar
matrix:
include:
- php: 7.2
env: WP_VERSION=latest
- php: 7.1
env: WP_VERSION=latest
- php: 7.0
env: WP_VERSION=latest
- php: 5.6
env: WP_VERSION=trunk
- php: 5.6
env: WP_VERSION=latest
- php: 5.6
env: WP_VERSION=latest BUILD=git WP_CLI_BIN_DIR=''
- php: 5.6
env: WP_VERSION=3.7.11
- php: 5.3
dist: precise
env: WP_VERSION=3.7.11 DEPLOY_BRANCH=master
before_script:
- export PATH="$HOME/.composer/vendor/bin:$PATH"
- |
- ./ci/prepare.sh
script: ./ci/test.sh
after_success: ./ci/deploy.sh
cache:
directories:
- vendor
- $HOME/.composer/cache
branches:
only:
- master
notifications:
email:
on_success: never
on_failure: change
| Add Travis job for testing PHP 7.2 | Add Travis job for testing PHP 7.2
| YAML | mit | gitlost/wp-cli,gitlost/wp-cli,2ndkauboy/wp-cli,aaemnnosttv/wp-cli,trepmal/wp-cli,aaemnnosttv/wp-cli,aaemnnosttv/wp-cli,2ndkauboy/wp-cli,2ndkauboy/wp-cli,gitlost/wp-cli,rodrigoprimo/wp-cli,GaryJones/wp-cli,trepmal/wp-cli,trepmal/wp-cli,GaryJones/wp-cli,rodrigoprimo/wp-cli,rodrigoprimo/wp-cli,GaryJones/wp-cli |
afbe108116e94ae8f7d061ba8e0af09d5bcd21f5 | .travis.yml | .travis.yml | language: node_js
node_js:
- v5
- v4
- '0.12'
- '0.10'
| language: node_js
node_js:
- v5
- v4
- '0.12'
- '0.10'
after_script:
- 'npm run coveralls'
| Add coverage task in Travis CI | Add coverage task in Travis CI
| YAML | mit | VovanR/bem-classname-parser |
24589cc2b55b53cbcf6a015ce2518c935a157e4b | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
- 7.2
install:
- composer install
script:
- composer test
| language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
install:
- composer install
script:
- composer test
| Add PHP 7.3 and 7.4 support | Add PHP 7.3 and 7.4 support
| YAML | mit | wandersonwhcr/romans |
48b9acb7c0d565f23a4b6448ad3fb0db04d8d816 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- 7.3
env:
global:
- CC_TEST_REPORTER_ID=$CODECLIMATE_REPO_TOKEN
matrix:
- LARAVEL_VERSION=5.5.*
- LARAVEL_VERSION=5.7.*
- LARAVEL_VERSION=5.8.*
- LARAVEL_VERSION=6.0.*
matrix:
fast_finish: true
sudo: false
install:
- if [ "$LARAVEL_VERSION" != "" ]; then composer require --dev "laravel/framework:${LARAVEL_VERSION}" --no-update; fi;
- travis_retry composer install --no-interaction --prefer-source --no-suggest
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- $TRAVIS_BUILD_DIR/vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT;
| language: php
php:
- 7.2
- 7.3
env:
global:
- CC_TEST_REPORTER_ID=$CODECLIMATE_REPO_TOKEN
matrix:
- LARAVEL_VERSION=5.5.*
- LARAVEL_VERSION=5.7.*
- LARAVEL_VERSION=5.8.*
- LARAVEL_VERSION=6.0.*
matrix:
fast_finish: true
sudo: false
install:
- if [ "$LARAVEL_VERSION" != "" ]; then composer require --dev "laravel/framework:${LARAVEL_VERSION}" --no-update; fi;
- travis_retry composer install --no-interaction --prefer-source --no-suggest
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- $TRAVIS_BUILD_DIR/vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT;
| Drop PHP 7.1 in builds | Drop PHP 7.1 in builds
| YAML | mit | Laralabs/toaster |
f4f1bc7ccb6d182f9fc7599648159741b0df8e53 | .travis.yml | .travis.yml | language: rust
cache: cargo
sudo: false
before_script:
- |
export PATH=$HOME/.local/bin:$HOME/.cargo/bin:$PATH &&
pip install 'travis-cargo<0.2' --user &&
cargo install cargo-local-pkgs --vers 0.3 --force
env:
global:
- RUSTFLAGS="--deny warnings"
- TRAVIS_CARGO_NIGHTLY_FEATURE=""
- RUST_BACKTRACE=1
script: cargo test
after_success:
- |
travis-cargo --only stable doc &&
travis-cargo --only stable doc-upload
| language: rust
cache: cargo
sudo: false
env:
global:
- RUSTFLAGS="--deny warnings"
- RUST_BACKTRACE=1
script: cargo test
| Stop generating documentation with Travis | Stop generating documentation with Travis
Let's let docs.rs do this job. The repo was getting quite large.
| YAML | cc0-1.0 | jonas-schievink/xml-rpc-rs |
51c1e93fd215a7b42d7655e2f46c68c875f3238c | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: node_js
node_js:
- 10.2.1
script: npm run-script ci
cache:
directories:
- node_modules
- $HOME/.electron
addons:
apt:
packages:
- rpm
- lintian
after_success:
- lintian test/fixtures/hadron-app/dist/*.deb
| sudo: false
dist: trusty
language: node_js
node_js:
- 12.4.0
script: npm run-script ci
cache:
directories:
- $HOME/.electron
addons:
apt:
packages:
- rpm
- lintian
after_success:
- lintian test/fixtures/hadron-app/dist/*.deb
| Update Travis config to Node 12.4 | Update Travis config to Node 12.4
| YAML | apache-2.0 | mongodb-js/hadron-build |
5b55739e2dd6cb52e2df18f710ef37c6484326f3 | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: python
python:
- "3.5"
# command to install dependencies
install:
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- python setup.py install
- python setup.py sdist bdist_wheel
# - "pip install -r requirements.txt"
addons:
apt_packages:
- pandoc
# command to run tests
script:
- pytest
#after_success:
# coveralls
# whitelist
#branches:
# only:
# - master
#branches:
# except:
# - notravis
| dist: trusty
sudo: false
language: python
python:
- "3.5"
# command to install dependencies
install:
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- python setup.py install
- python setup.py sdist bdist_wheel
# - "pip install -r requirements.txt"
addons:
apt_packages:
- pandoc
# command to run tests
script:
- PYTHONPATH=. make travis_test
#after_success:
# coveralls
# whitelist
#branches:
# only:
# - master
#branches:
# except:
# - notravis
| Revert "Run all tests in Travis" | Revert "Run all tests in Travis"
This reverts commit e37904ce533131d28bee9d9a4f0a9214c78aaf18.
| YAML | bsd-3-clause | biolink/ontobio,biolink/ontobio |
a7fd338698483050cc532aae8b4abb3dc3cc22cb | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
before_install:
- sudo apt-get update
- sudo apt-get install --fix-broken --ignore-missing -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" swig rabbitmq-server ruby
- (git describe && git fetch --tags) || (git remote add upstream git://github.com/saltstack/salt.git && git fetch --tags upstream)
- pip install mock --use-mirrors --mirrors=http://testpypi.python.org/pypi
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz
- pip install python-coveralls
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors --mirrors=http://testpypi.python.org/pypi unittest2 ordereddict; fi"
- cd -
install: pip install -r requirements.txt --use-mirrors --mirrors=http://testpypi.python.org/pypi
script: "sudo -E /home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/bin/python setup.py test --runtests-opts='--run-destructive --sysinfo --coverage -v'"
after_success:
- cd -
- coveralls
notifications:
irc:
channels: "irc.freenode.org#salt-devel"
on_success: change
on_failure: change
| language: python
python:
- '2.6'
- '2.7'
before_install:
- sudo apt-get update
- sudo apt-get install --fix-broken --ignore-missing -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" swig rabbitmq-server ruby
- (git describe && git fetch --tags) || (git remote add upstream git://github.com/saltstack/salt.git && git fetch --tags upstream)
- pip install mock --use-mirrors --mirrors=http://testpypi.python.org/pypi
- pip install http://dl.dropbox.com/u/174789/m2crypto-0.20.1.tar.gz
- pip install coveralls
- "if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors --mirrors=http://testpypi.python.org/pypi unittest2 ordereddict; fi"
install: pip install -r requirements.txt --use-mirrors --mirrors=http://testpypi.python.org/pypi
script: "sudo -E /home/travis/virtualenv/python${TRAVIS_PYTHON_VERSION}/bin/python setup.py test --runtests-opts='--run-destructive --sysinfo --coverage -v'"
after_success:
- coveralls --verbose
notifications:
irc:
channels: "irc.freenode.org#salt-devel"
on_success: change
on_failure: change
| Switch lib and verbose output. | Switch lib and verbose output.
| YAML | apache-2.0 | saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt |
9e102ea270c6b269972f9827308b29b3612ff287 | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install --dev --prefer-source
script: phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
| language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_install:
- composer self-update
install:
- composer install --dev --prefer-source
script:
- phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
after_script:
- php vendor/bin/coveralls -v
| Change when composer commands are run | Change when composer commands are run | YAML | mit | geo-io/wkb-generator |
46998c2b4c7ba2672a421c92499a8426909bc2ff | .travis.yml | .travis.yml | language: haskell
script: wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --no-cache --quiet | sh
relevant: |
Running HLint on self took
Tests passed (
| env:
- GHCVER=7.2.2
- GHCVER=7.4.2
- GHCVER=7.6.3
- GHCVER=7.8.3
- GHCVER=head
matrix:
allow_failures:
- env: GHCVER=head
script:
- wget https://raw.github.com/ndmitchell/neil/master/travis.sh -O - --no-check-certificate --quiet | sh
| Update to the new Travis script | Update to the new Travis script
| YAML | bsd-3-clause | gibiansky/hlint,ndmitchell/hlint,mpickering/hlint,bitemyapp/hlint,eigengrau/hlint,ndmitchell/hlint |
b28211195cabea59a5f9f66efa683c70835d7499 | .travis.yml | .travis.yml | language: php
sudo: required
php:
- 5.5
- 5.6
- 7.0
env:
global:
- NC_BRANCH=master
matrix:
- NC_DATABASE=mysql
matrix:
allow_failures:
include:
- php: 5.5
env: NC_DATABASE=sqlite
- php: 5.5
env: NC_DATABASE=pgsql
- php: 5.6
env: NC_DATABASE=sqlite
- php: 5.6
env: NC_DATABASE=pgsql
- php: 7.0
env: NC_DATABASE=sqlite
- php: 7.0
env: NC_DATABASE=pgsql
install:
- phpenv config-add tests/travis/php.ini
- ./tests/prepare-ci-tests.sh
script:
- cd ${TRAVIS_BUILD_DIR}/../nextcloud/apps/spreedme
- phpunit -c phpunit.xml
- phpunit -c phpunit.integration.xml
| language: php
sudo: required
php:
- 5.5
- 5.6
- 7.0
env:
global:
- NC_BRANCH=master
matrix:
- NC_DATABASE=mysql
matrix:
allow_failures:
- php: 7.0
include:
- php: 5.5
env: NC_DATABASE=sqlite
- php: 5.5
env: NC_DATABASE=pgsql
- php: 5.6
env: NC_DATABASE=sqlite
- php: 5.6
env: NC_DATABASE=pgsql
- php: 7.0
env: NC_DATABASE=sqlite
- php: 7.0
env: NC_DATABASE=pgsql
install:
- phpenv config-add tests/travis/php.ini
- ./tests/prepare-ci-tests.sh
script:
- cd ${TRAVIS_BUILD_DIR}/../nextcloud/apps/spreedme
- phpunit -c phpunit.xml
- phpunit -c phpunit.integration.xml
| Allow CI test failures for PHP7 (phpunit > 5.4) | Allow CI test failures for PHP7 (phpunit > 5.4)
See https://github.com/nextcloud/server/issues/5235
| YAML | agpl-3.0 | strukturag/owncloud-spreedme,strukturag/nextcloud-spreedme,strukturag/nextcloud-spreedme,strukturag/owncloud-spreedme,strukturag/nextcloud-spreedme,strukturag/owncloud-spreedme,strukturag/nextcloud-spreedme |
37ce094fc4ae767094ca4f4b24d17cb82a298c69 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
- 0.10
| language: node_js
node_js:
- 0.8
- 0.10
- 0.11
| Add node.js 0.11 to Travis tests | Add node.js 0.11 to Travis tests
| YAML | mit | narcisoguillen/node-ldapjs,cloudron-io/node-ldapjs,DrHofman/node-ldapjs,pfmooney/node-ldapjs,appcelerator/node-ldapjs,brion25/node-ldapjs,mcavage/node-ldapjs,msimerson/node-ldapjs,hoalex/node-ldapjs,917228145/node-ldapjs,tempbottle/node-ldapjs,simonbooth/node-ldapjs |
b58de5fe56b875f5ecd2be795295624e053b781b | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.0.0
services:
- redis-server
notifications:
email: false
| language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.2
services:
- redis-server
notifications:
email: false
| Add some more ruby versions to the build | Add some more ruby versions to the build
| YAML | mit | KyFaSt/lita-reviewme,iamvery/lita-reviewme |
a30732b8f085ee9be2e00824322a40f9a0a63919 | .travis.yml | .travis.yml | language: node_js
node_js:
- 4.0
- 4.1
- 4.2
- 4.3
- 4.4
- 4.5
- 5.0
- 5.1
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
- 5.7
- 5.8
- 5.9
- 5.10
- 5.11
- 5.12
- 6.0
- 6.1
- 6.2
- 6.3
- 6.4
- 6.5
- 6.6
| language: node_js
node_js:
- 4.0
- 4.1
- 4.2
- 4.3
- 4.4
- 4.5
- 4.6
- 5.0
- 5.1
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
- 5.7
- 5.8
- 5.9
- 5.10
- 5.11
- 5.12
- 6.0
- 6.1
- 6.2
- 6.3
- 6.4
- 6.5
- 6.6
- 6.7
| Test against Node.js 4.6 and 6.7 | Test against Node.js 4.6 and 6.7
| YAML | mit | xavierdutreilh/wintersmith-contents,xavierdutreilh/wintersmith-contents |
6d596a48c3446ce31287384127697418f005dbb5 | .travis.yml | .travis.yml | language: java
addons:
hosts:
- short-hostname
hostname: short-hostname
matrix:
include:
- jdk: openjdk7
dist: precise
- jdk: oraclejdk7
dist: precise
- jdk: oraclejdk8
- jdk: oraclejdk9
notifications:
email:
on_success: never
sudo: false
script:
- ./gradlew clean test
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| sudo: required
language: java
addons:
hosts:
- short-hostname
hostname: short-hostname
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
before_install:
# Work around missing crypto in openjdk7
- |
if [ "$TRAVIS_JDK_VERSION" == "openjdk7" ]; then
sudo wget "https://bouncycastle.org/download/bcprov-ext-jdk15on-158.jar" -O "${JAVA_HOME}/jre/lib/ext/bcprov-ext-jdk15on-158.jar"
sudo perl -pi.bak -e 's/^(security\.provider\.)([0-9]+)/$1.($2+1)/ge' /etc/java-7-openjdk/security/java.security
echo "security.provider.1=org.bouncycastle.jce.provider.BouncyCastleProvider" | sudo tee -a /etc/java-7-openjdk/security/java.security
fi
notifications:
email:
on_success: never
sudo: false
script:
- ./gradlew clean test
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Drop oraclejdk7 and start testing openjdk7 on Trusty | Drop oraclejdk7 and start testing openjdk7 on Trusty
| YAML | mit | stripe/stripe-java |
79b4bf7080789790456d8283cd727bb2b0b7289a | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- nightly
- beta
- 1.7.0
- 1.8.0
install:
- rvm use 2.2
- bundle install --path vendor/bundle
script:
- bundle exec fluentd -c conf/in_forward.conf &
- cargo test --features "readme-testing fluentd"
after_script:
- killall ruby
| sudo: false
language: rust
rust:
- nightly
- beta
- 1.9.0
install:
- rvm use 2.2
- bundle install --path vendor/bundle
script:
- bundle exec fluentd -c conf/in_forward.conf &
- cargo test --features "readme-testing fluentd"
after_script:
- killall ruby
| Use Rust 1.9.0 or later | Use Rust 1.9.0 or later
| YAML | mit | cosmo0920/fruently,cosmo0920/fruently |
49035bf739e317d417f4bedc751e87f61fcd490d | .travis.yml | .travis.yml | osx_image: xcode8
language: generic
matrix:
include:
- os: osx
env: TYPE=xcode
language: objective-c
after_success: bash <(curl -s https://codecov.io/bash)
- os: osx
env:
- TYPE=spm
- SWIFT_VERSION=3.0
- os: linux
dist: trusty
sudo: required
env:
- TYPE=spm
- SWIFT_VERSION=3.0-GM-CANDIDATE
install: if [[ "$TYPE" == "spm" ]]; then eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"; fi
script: ./test $TYPE
| osx_image: xcode8
language: generic
matrix:
include:
- os: osx
env: TYPE=xcode
language: objective-c
after_success: bash <(curl -s https://codecov.io/bash)
- os: osx
env:
- TYPE=spm
- SWIFT_VERSION=3.0
- os: linux
dist: trusty
sudo: required
env:
- TYPE=spm
- SWIFT_VERSION=3.0
install: if [[ "$TYPE" == "spm" ]]; then eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"; fi
script: ./test $TYPE
| Use final swift 3.0 on linux | Use final swift 3.0 on linux
| YAML | mit | tomquist/ReverseJson,tomquist/ReverseJson |
f44cb24567a99825e3ac32422b605f54fadee4fc | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
global:
- DJANGO_SETTINGS_MODULE='localized_recurrence.tests.settings'
matrix:
- DJANGO=1.6.2
install:
- pip install -q coverage pep8 pyflakes Django==$DJANGO
- pip install -q -e .
before_script:
- pep8 localized_recurrence --max-line-length=120 --exclude=migrations
- pyflakes localized_recurrence
script:
- coverage run --source='localized_recurrence' --branch django-admin.py test
- coverage report --fail-under=100 | language: python
python:
- "2.7"
env:
global:
- DJANGO_SETTINGS_MODULE='localized_recurrence.tests.settings'
matrix:
- DJANGO=1.6.2
install:
- pip install -q coverage pep8 pyflakes Django==$DJANGO
- pip install -q -e .
before_script:
- pep8 localized_recurrence --max-line-length=120 --exclude=migrations
- pyflakes localized_recurrence
script:
- coverage run --source='localized_recurrence' --branch $(which django-admin.py) test
- coverage report --fail-under=100 | Expand location of django-admin.py into coverage call. | Expand location of django-admin.py into coverage call.
| YAML | mit | wesleykendall/django-localized-recurrence,ambitioninc/django-localized-recurrence,travistruett/django-localized-recurrence |
607f9e47f4de74dc115b4d3478705c5a3ca86dc6 | .travis.yml | .travis.yml | language: node_js
node_js:
- 10
sudo: required
services:
- docker
before_script:
- npm run bootstrap
script:
- npm run lint
- npm run test
after_script:
- npm run report-coverage
| language: node_js
node_js:
- 10
sudo: required
services:
- docker
before_script:
- npm run bootstrap -- --no-ci
script:
- npm run lint
- npm run test
after_script:
- npm run report-coverage
| Fix lerna bootstrap on Travis | Fix lerna bootstrap on Travis
| YAML | mit | uberVU/mugshot,uberVU/mugshot |
41173a790e7e0a85168c57272e0afb858956ef7f | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
| language: rust
rust:
- stable
- beta
- nightly
os:
- linux
- osx
matrix:
allow_failures:
- rust: nightly
| Add MacOS X to the Travis build matrix | Add MacOS X to the Travis build matrix
| YAML | mit | m4b/goblin,m4b/goblin |
4c2f383de1efaf745f087867e225526eeee46f1b | .travis.yml | .travis.yml | sudo: false # Use a container for faster boot time
language: ruby
bundler_args: "--without exclude_in_travis"
rvm:
- 2.1.3
- 2.2.2
os:
- linux
- osx
script: bundle exec rake run_spec
notifications:
hipchat:
rooms:
secure: KdhzB9VueLEJp9p/ZUFaXAMO0u1CEbT0sjdRt10jqseAJCld9CAK1KAb1f/mNO/+cbVd+7W9UdHA0cEGUZ9dLP9Mcpmy31QxOJSITUCrRiLOF1ti13Lq4WHpMM46Tz6p7vVYd4zpPj9Mup+lCTGOeCovReX+neIoZw0UjDg9oGs=
template:
- '%{result}: %{repository_slug}#%{branch} - <a href="%{compare_url}">%{commit}</a>(%{commit_message}) by %{author} (<a href="%{build_url}">Details</a>)'
format: html
| sudo: false # Use a container for faster boot time
language: ruby
bundler_args: "--without exclude_in_travis"
rvm:
- 2.1.3
- 2.2.2
os:
- linux
- osx
script: bundle exec rake
notifications:
hipchat:
rooms:
secure: KdhzB9VueLEJp9p/ZUFaXAMO0u1CEbT0sjdRt10jqseAJCld9CAK1KAb1f/mNO/+cbVd+7W9UdHA0cEGUZ9dLP9Mcpmy31QxOJSITUCrRiLOF1ti13Lq4WHpMM46Tz6p7vVYd4zpPj9Mup+lCTGOeCovReX+neIoZw0UjDg9oGs=
template:
- '%{result}: %{repository_slug}#%{branch} - <a href="%{compare_url}">%{commit}</a>(%{commit_message}) by %{author} (<a href="%{build_url}">Details</a>)'
format: html
| Use the new default rake task on Travis | Use the new default rake task on Travis
| YAML | mit | code-mancers/rbkit,code-mancers/rbkit,code-mancers/rbkit |
c4ecb51974db70f5e42cea3847d2659a95ae4bb2 | .travis.yml | .travis.yml | language: perl
perl:
- "5.14"
install:
- sudo apt-get install libdb-dev libgd2-noxpm-dev
- cpanm --notest -L extlib/ GD::Image URI::Escape
- cpanm --notest -l extlib/ git://github.com/bioperl/bioperl-live.git@v1.6.x
- bash setup.sh
- npm install -g http-server
script:
- nohup http-server -p 9000 2>&1 &
- prove -Isrc/perl5 -lr tests
- phantomjs tests/js_tests/run-jasmine.js http://localhost:9000/
after_failure: cat setup.log
| language: perl
perl:
- "5.14"
install:
- sudo apt-get install libdb-dev libgd2-noxpm-dev
- cpanm --notest -L extlib/ GD::Image URI::Escape
- cpanm --notest -l extlib/ git://github.com/bioperl/bioperl-live.git@v1.6.x
- bash setup.sh
- npm install -g http-server
script:
- nohup http-server -p 9000 2>&1 &
- prove -Isrc/perl5 -lr tests
- phantomjs tests/js_tests/run-jasmine.js http://localhost:9000/tests/js_tests
after_failure: cat setup.log
| Make it run the js_tests directory | Make it run the js_tests directory
| YAML | lgpl-2.1 | Arabidopsis-Information-Portal/jbrowse,GMOD/jbrowse,GMOD/jbrowse,erasche/jbrowse,erasche/jbrowse,GMOD/jbrowse,Arabidopsis-Information-Portal/jbrowse,erasche/jbrowse,limeng12/jbrowse,nathandunn/jbrowse,nathandunn/jbrowse,Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,nathandunn/jbrowse,erasche/jbrowse,GMOD/jbrowse,Arabidopsis-Information-Portal/jbrowse,erasche/jbrowse,limeng12/jbrowse,limeng12/jbrowse,Arabidopsis-Information-Portal/jbrowse,Arabidopsis-Information-Portal/jbrowse,nathandunn/jbrowse,nathandunn/jbrowse,limeng12/jbrowse,GMOD/jbrowse,limeng12/jbrowse,limeng12/jbrowse,erasche/jbrowse,erasche/jbrowse,limeng12/jbrowse,limeng12/jbrowse,erasche/jbrowse |
74b7799e21a542f38ed71be15f6445711cc27c9f | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_script:
- psql -c 'create database mygists_test;' -U postgres
- cp config/database.example.yml config/database.yml
- bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare --trace
env:
global:
- GITHUB_APP_ID="fake_id"
- GITHUB_APP_SECRET="fake_secret"
- GOOGLE_ANALYTICS_TRACKING_ID="UA-XXXXX-Y"
- SECRET_TOKEN="021a795ec4008ffc04d2bef8b819d4ae3ec5798c3a8ddb505d2cd9e8664350f9ae76355f43777c6e09d0790f180e0b846fb56806508eabfe7c676ef01f9c2850"
- NEW_RELIC_APP_NAME="MyGistsOnTravis"
- NEW_RELIC_LICENSE_KEY="new_relic_license_key"
| language: ruby
rvm:
- 1.9.3
before_script:
- psql -c 'create database mygists_test;' -U postgres
- cp config/database.example.yml config/database.yml
- bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare --trace
env:
global:
- GITHUB_APP_ID="fake_id"
- GITHUB_APP_SECRET="fake_secret"
- GOOGLE_ANALYTICS_TRACKING_ID="UA-XXXXX-Y"
- SECRET_TOKEN="021a795ec4008ffc04d2bef8b819d4ae3ec5798c3a8ddb505d2cd9e8664350f9ae76355f43777c6e09d0790f180e0b846fb56806508eabfe7c676ef01f9c2850"
- NEW_RELIC_APP_NAME="MyGistsOnTravis"
- NEW_RELIC_LICENSE_KEY="new_relic_license_key"
- REDIS_WORKER="redis://localhost:6379/"
services:
- redis-server
| Add Redis service and environment variable to Travis CI configuration | Add Redis service and environment variable to Travis CI configuration
| YAML | mit | simeonwillbanks/mygists |
f524649a2be0603c4251ab596f76a1eb05429a8e | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "4"
- "5"
- "6"
before_script:
- npm install -g codeclimate-test-reporter
script: npm run test:cover
after_script:
- codeclimate-test-reporter < coverage/lcov.info
| language: node_js
sudo: false
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
before_script:
- npm install -g codeclimate-test-reporter
script: npm run test:cover
after_script:
- codeclimate-test-reporter < coverage/lcov.info
| Add Node 7 and 8 to Travis build matrix | Add Node 7 and 8 to Travis build matrix
We want to ensure that import-js continues to work on these versions of
Node.
| YAML | mit | trotzig/import-js,trotzig/import-js,trotzig/import-js,Galooshi/import-js |
379b6d2295472169008232b77a1bfcfa9a8db164 | .travis.yml | .travis.yml | language: java
install: mvn clean install --quiet -DskipTests=true
script: mvn clean test -P integration-tests
after_success: mvn cobertura:cobertura coveralls:cobertura | language: java
install: mvn clean install --quiet -DskipTests=true
script: mvn clean test -P integration-tests
after_success: mvn cobertura:cobertura coveralls:cobertura
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/61d61757ee57d30e343b
on_success: change
on_failure: always
on_start: false | Update webhooks for gitter.im | Update webhooks for gitter.im [ci skip]
| YAML | apache-2.0 | sahan/RoboZombie |
ad8747a45e070a12204cb2170214c222b5e684a6 | .travis.yml | .travis.yml | language: ruby
script: bundle exec rake test
cache: bundler
sudo: false
after_success:
- bundle exec rake test:accuracy
- bundle exec rake benchmark:memory
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- ruby-head
- jruby-1.7.21
- jruby-9.0.0.0
- jruby-head
- rbx-2.4.1
- rbx-2.5.8
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
| language: ruby
script: bundle exec rake test
cache: bundler
sudo: false
before_install:
- 'if [[ "$TRAVIS_RUBY_VERSION" =~ "jruby" ]]; then rvm get head && rvm use --install $TRAVIS_RUBY_VERSION; fi'
after_success:
- bundle exec rake test:accuracy
- bundle exec rake benchmark:memory
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- ruby-head
- jruby-1.7.21
- jruby-9.0.0.0
- jruby-head
- rbx-2.4.1
- rbx-2.5.8
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
| Make sure to use the latest version of rvm | Make sure to use the latest version of rvm
The version of rvm installed on Travis is too old and it installs jruby-9000pre1 which doesn't install the interception gem properly.
| YAML | mit | Ye-Yong-Chi/did_you_mean,yui-knk/did_you_mean,yuki24/did_you_mean |
cf4bb93653710e774ac9c89b02d1f47e7c33b868 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
install:
- mvn --settings .travis/settings.xml install -Dgpg.skip -Dmaven.javadoc.skip=true -B -V
before_install:
- if [ ! -z "$GPG_SECRET_KEYS" ]; then echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import; fi
- if [ ! -z "$GPG_OWNERTRUST" ]; then echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --import-ownertrust; fi
deploy:
-
provider: script
script: .travis/deploy.sh
skip_cleanup: true
on:
repo: marcospassos/java-php-serializer
branch: master
jdk: oraclejdk8
-
provider: script
script: .travis/deploy.sh
skip_cleanup: true
on:
repo: marcospassos/java-php-serializer
tags: true
jdk: oraclejdk8 | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
install:
- mvn --settings .travis/settings.xml install -DskipTests=true -Dgpg.skip -Dmaven.javadoc.skip=true -B -V
before_install:
- if [ ! -z "$GPG_SECRET_KEYS" ]; then echo $GPG_SECRET_KEYS | base64 --decode | $GPG_EXECUTABLE --import; fi
- if [ ! -z "$GPG_OWNERTRUST" ]; then echo $GPG_OWNERTRUST | base64 --decode | $GPG_EXECUTABLE --import-ownertrust; fi
deploy:
-
provider: script
script: .travis/deploy.sh
skip_cleanup: true
on:
repo: marcospassos/java-php-serializer
branch: master
jdk: oraclejdk8
-
provider: script
script: .travis/deploy.sh
skip_cleanup: true
on:
repo: marcospassos/java-php-serializer
tags: true
jdk: oraclejdk8 | Add skipTests flag to Travis file | Add skipTests flag to Travis file
| YAML | mit | marcospassos/java-php-serializer,marcospassos/java-php-serializer |
7b4988af5f8b1bfcee58d8aa689bb41063a41611 | .travis.yml | .travis.yml | language: go
go:
- 1.x
- 1.6
- 1.7.x
- master | language: go
go:
- 1.x
- 1.6
- 1.7.x
- 1.8.x
- master | Add goland 1.8 to tests | Add goland 1.8 to tests
| YAML | mit | themccallister/env |
e38390a813550196c635794f29874333015fa542 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode # JRuby in 1.9 mode
- rbx
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.3
- jruby-19mode # JRuby in 1.9 mode
- rbx
| Test ruby 2.1.3 on Travis | Test ruby 2.1.3 on Travis
| YAML | mit | scotdalton/authpds |
54487699db0182e21c8ec51fbc66aa02af0ae341 | .travis.yml | .travis.yml | os:
- linux
- osx
language: c
compiler:
- gcc
- clang
script:
- mkdir _build
- cd _build
- cmake ..
- cmake --build .
- ctest -VV
| os:
- linux
- osx
language: c
compiler:
- gcc
- clang
script:
- mkdir _build
- cd _build
# Test build with stricter flags
- export CFLAGS="-D_FORTIFY_SOURCE=2 -fstack-protector -g3 -pedantic -W -Wall -Wbad-function-cast -Wcast-align
-Wcast-qual -Wdisabled-optimization -Wendif-labels -Wfloat-equal -Wformat=2 -Wformat-nonliteral -Winline
-Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wno-unused-parameter -Wpointer-arith -Wshadow
-Wstrict-prototypes -Wstack-protector -Wswitch -Wundef -Wwrite-strings -std=c99"
- cmake .. -DCMAKE_C_FLAGS="$CFLAGS"
- cmake --build .
- ctest -VV
| Test with stricter compile flags | Test with stricter compile flags
| YAML | bsd-3-clause | libheartbeats/heartbeats-simple |
5edf61a22a4683ee10be1d926b1631fe1419d78d | .travis.yml | .travis.yml | sudo: false
language: python
cache:
- apt
- pip
addons:
apt:
packages:
- openjdk-8-jdk
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
install:
- pip install pipenv
- pipenv install --dev
before_script:
- pipenv run ./scripts/test_data/upload_test_data.sh
script:
- pipenv run tox
after_success:
# - pipenv run ./scripts/test_data/delete_test_data.sh
- codecov
| sudo: false
language: python
cache:
- apt
- pip
addons:
apt:
packages:
- openjdk-8-jdk
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
install:
- pip install pipenv codecov
- pipenv install --dev
before_script:
- pipenv run ./scripts/test_data/upload_test_data.sh
script:
- pipenv run tox
after_success:
# - pipenv run ./scripts/test_data/delete_test_data.sh
- codecov
| Fix codecov command not found | Fix codecov command not found
| YAML | mit | laughingman7743/PyAthenaJDBC,laughingman7743/PyAthenaJDBC |
4ab292758deb0645dd88b92046336367f1eb924c | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- composer install --dev --prefer-source
- wget http://cs.sensiolabs.org/get/php-cs-fixer.phar
script:
- phpunit --configuration tests/phpunit.xml
- output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 .); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi; | language: php
php:
- 5.3
- 5.4
before_script:
- composer install --dev --prefer-source
- wget http://cs.sensiolabs.org/get/php-cs-fixer.phar
script:
- phpunit --configuration tests/phpunit.xml
- output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 ./src); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
| Use only CS on src dir | Use only CS on src dir
| YAML | bsd-3-clause | juriansluiman/SlmIdealPayment |
9fd3980242f3b78a89d2fa633c8abfafc5d844c2 | .travis.yml | .travis.yml | .language: cpp
sudo: false
dist: trusty
branches:
only:
- master
- staging
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
packages:
- libhdf5-serial-dev
- zlib1g-dev
- libatlas-base-dev
- valgrind
- lcov
- graphviz
- doxygen
- doxygen-latex
- cppcheck
- libboost-serialization-dev
env: ENABLE_GCOV_COVERAGE=TRUE
before_install:
- gem install coveralls-lcov
after_success:
- ./scripts/run-coveralls.sh
- os: osx
compiler: clang
before_install:
- rvm install ruby-2.3.3 && rvm --default use 2.3.3 # otherwise homebrew fails
- brew install hdf5 cppcheck
install:
- ./scripts/run-build.sh
script:
- ./scripts/run-cpputest.sh
- ./scripts/run-cppcheck.sh
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./scripts/run-valgrind.sh; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./scripts/run-doxygen.sh; fi
notifications:
slack:
rooms:
- icb-dcm:PHyGJ38Zhp8HrwIxjZAwh9ZI#amici-dev
on_success: change
| .language: cpp
sudo: false
dist: trusty
branches:
only:
- master
- staging
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
packages:
- libhdf5-serial-dev
- zlib1g-dev
- libatlas-base-dev
- valgrind
- lcov
- graphviz
- doxygen
- doxygen-latex
- cppcheck
- libboost-serialization-dev
env: ENABLE_GCOV_COVERAGE=TRUE
before_install:
- gem install coveralls-lcov
after_success:
- ./scripts/run-coveralls.sh
- os: osx
compiler: clang
before_install:
- brew update
#- rvm install ruby-2.3.3 && rvm --default use 2.3.3 # otherwise homebrew fails
- brew install hdf5 cppcheck
install:
- ./scripts/run-build.sh
script:
- ./scripts/run-cpputest.sh
- ./scripts/run-cppcheck.sh
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./scripts/run-valgrind.sh; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./scripts/run-doxygen.sh; fi
notifications:
slack:
rooms:
- icb-dcm:PHyGJ38Zhp8HrwIxjZAwh9ZI#amici-dev
on_success: change
| Fix CI homebrew error /usr/local/Homebrew/Library/Homebrew/brew.rb:12:in <main>: Homebrew must be run under Ruby 2.3 | Fix CI homebrew error /usr/local/Homebrew/Library/Homebrew/brew.rb:12:in <main>: Homebrew must be run under Ruby 2.3
| YAML | bsd-2-clause | AMICI-developer/AMICI,AMICI-developer/AMICI,FFroehlich/AMICI,FFroehlich/AMICI,AMICI-developer/AMICI,AMICI-developer/AMICI,FFroehlich/AMICI,FFroehlich/AMICI |
d33e09a104ab9906ae934c275d2cf0badbf88cb8 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
| sudo: false
language: node_js
node_js:
- iojs
- "0.12"
| Remove node.js 0.10 from CI | Remove node.js 0.10 from CI
| YAML | mit | postcss/postcss-brand-colors |
1a86f584248343133b5e117b5345a61b4b032982 | .travis.yml | .travis.yml | language: node_js
cache: yarn
node_js:
- node
- "8"
- "6"
git:
depth: 5
| language: node_js
cache: yarn
node_js:
- node
- "10"
- "8"
- "6"
git:
depth: 5
| Add Node.js 10 to Travis CI | Add Node.js 10 to Travis CI
| YAML | mit | logux/logux-core |
6142cc18ecb1bf946704fa311c9348748ada299b | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
install:
- sudo apt-add-repository -y ppa:picaso/octave;
- sudo apt-get update -qq;
- sudo apt-get install -qq octave liboctave-dev;
- pip install ipykernel jupyter_client traitlets jupyter_kernel_test flit
- flit install
- python -m octave_kernel.install
script:
- python test_octave_kernel.py
| language: python
python:
- "3.5"
install:
- sudo apt-add-repository -y ppa:picaso/octave;
- sudo apt-get update -qq;
- sudo apt-get install -qq octave liboctave-dev;
- pip install ipykernel jupyter_client traitlets jupyter_kernel_test flit
- flit install
- python -m octave_kernel.install
script:
- python test_octave_kernel.py
| Remove python 2 test due to flit incompatibility | Remove python 2 test due to flit incompatibility
| YAML | bsd-3-clause | Calysto/octave_kernel,Calysto/octave_kernel |
957268fc38f76dd2155ab9ee99b9d1ca95f46b1f | .travis.yml | .travis.yml | sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
packages:
- g++-5
- gcc-5
- clang
- libc++-dev
- libboost1.55-dev
- libboost-locale1.55-dev
- libboost-test1.55-dev
- libiodbc2
- libiodbc2-dev
- libsqliteodbc
language: cpp
compiler:
- gcc
env:
- USE_UNICODE=OFF USE_BOOST_CONVERT=OFF
- USE_UNICODE=OFF USE_BOOST_CONVERT=ON
- USE_UNICODE=ON USE_BOOST_CONVERT=OFF
- USE_UNICODE=ON USE_BOOST_CONVERT=ON
install:
- cat /etc/odbc.ini
before_script:
- if [[ "$CXX" == "g++" ]]; then export CXX="g++-5"; fi
- mkdir build
- cd build
script:
- cmake -D NANODBC_USE_UNICODE=${USE_UNICODE} -D NANODBC_USE_BOOST_CONVERT=${USE_BOOST_CONVERT} -D NANODBC_ENABLE_LIBCXX=NO ..
- make VERBOSE=1 check
| sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
packages:
- g++-5
- gcc-5
- clang
- libc++-dev
- libboost1.55-dev
- libboost-locale1.55-dev
- libboost-test1.55-dev
- libiodbc2
- libiodbc2-dev
- libsqliteodbc
language: cpp
compiler:
- gcc
env:
- USE_UNICODE=OFF USE_BOOST_CONVERT=OFF
- USE_UNICODE=OFF USE_BOOST_CONVERT=ON
- USE_UNICODE=ON USE_BOOST_CONVERT=OFF
- USE_UNICODE=ON USE_BOOST_CONVERT=ON
install:
- cat /etc/odbc.ini
before_script:
- if [[ "$CXX" == "g++" ]]; then export CXX="g++-5"; fi
- mkdir build
- cd build
script:
- cmake -D NANODBC_USE_UNICODE=${USE_UNICODE} -D NANODBC_USE_BOOST_CONVERT=${USE_BOOST_CONVERT} -D NANODBC_ENABLE_LIBCXX=NO ..
- make VERBOSE=1 sqlite_check
| Disable odbc_test on Travis CI for now. | Disable odbc_test on Travis CI for now.
| YAML | mit | nanodbc/nanodbc,norsync/nanodbc,nanodbc/nanodbc,mcg1969/nanodbc,ChrisBFX/nanodbc,ChrisBFX/nanodbc,mcg1969/nanodbc,norsync/nanodbc |
56a2b0f10ccc56edc7cac0655c8c917b7c80c783 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3
- jruby
- rbx-3
script: bundle exec rake test
| language: ruby
rvm:
- 2.3
- jruby
script: bundle exec rake test
| Disable Rubinius support on Travis. | Disable Rubinius support on Travis.
| YAML | mit | mtortonesi/sisfc |
4e479d999e1da54883c64bde8bd87ee0bfe30005 | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
- gcc
os:
- osx
script:
- make && make test
matrix:
include:
- compiler: gcc
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- libboost-system-dev
- libboost-filesystem-dev
env: COMPILER=g++-4.9
- compiler: gcc
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- libboost-system-dev
- libboost-filesystem-dev
env: COMPILER=g++-5
- compiler: clang
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
packages:
- clang-3.6
- libboost-system-dev
- libboost-filesystem-dev
env: COMPILER=clang++-3.6
- compiler: clang
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- clang-3.7
- libboost-system-dev
- libboost-filesystem-dev
env: COMPILER=clang++-3.7
| language: cpp
compiler:
- clang
- gcc
os:
- osx
script:
- make && make test
sudo: required
dist: trusty
matrix:
include:
- compiler: gcc
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- libboost-system-dev
- libboost-filesystem-dev
env: COMPILER=g++-4.9
- compiler: gcc
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- libboost-system-dev
- libboost-filesystem-dev
env: COMPILER=g++-5
- compiler: clang
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
packages:
- clang-3.6
- libboost-system-dev
- libboost-filesystem-dev
env: COMPILER=clang++-3.6
- compiler: clang
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- clang-3.7
- libboost-system-dev
- libboost-filesystem-dev
env: COMPILER=clang++-3.7
| Switch linux to 14.04+ to maybe get a boost filesystem that the compiler understands? | Switch linux to 14.04+ to maybe get a boost filesystem that the compiler understands?
| YAML | apache-2.0 | dascandy/cpp-dependencies,dascandy/cpp-dependencies |
b413105be1ae70eb9af284d631d12b78c032260f | .travis.yml | .travis.yml | language: java
jdk: oraclejdk7
node_js: "0.12"
before_install: npm install -g bower
notifications:
irc: "chat.freenode.net#seedstack-dev"
script: mvn -B verify jacoco:report coveralls:report -DrepoToken=$COVERALLS_TOKEN
after_success:
- echo "<settings><servers><server><id>sonatype-nexus-snapshots</id><username>\${env.SONATYPE_USER}</username><password>\${env.SONATYPE_PASS}</password></server></servers></settings>" > ~/settings.xml
- "[[ $TRAVIS_PULL_REQUEST == \"false\" && $TRAVIS_BRANCH == \"master\" ]] && mvn deploy --settings ~/settings.xml -DskipTests=true -Dmaven.javadoc.skip=true"
| sudo: false
language: java
jdk: oraclejdk8
node_js: "0.12"
before_install: npm install -g bower
notifications:
irc: "chat.freenode.net#seedstack-dev"
cache:
directories:
- "$HOME/.m2/repository"
install: /bin/true
script:
- mvn -B -U -T 4 -Pjavadoc install jacoco:report
- mvn -B coveralls:report -DrepoToken=$COVERALLS_TOKEN
after_success:
- echo "<settings><servers><server><id>sonatype-nexus-snapshots</id><username>\${env.SONATYPE_USER}</username><password>\${env.SONATYPE_PASS}</password></server></servers></settings>" > ~/settings.xml
- "[[ $TRAVIS_PULL_REQUEST == \"false\" && $TRAVIS_BRANCH == \"master\" ]] && mvn deploy --settings ~/settings.xml -DskipTests=true -Dmaven.javadoc.skip=true"
| Build with jdk8 and multithreaded build | Build with jdk8 and multithreaded build
| YAML | mpl-2.0 | kavi87/w20-function,seedstack/w20-function,seedstack/w20-bridge-addon,seedstack/w20-function,kavi87/w20-function,seedstack/w20-bridge-addon,seedstack/w20-function,kavi87/w20-function,seedstack/w20-bridge-addon |
f082a9a7d18a860affe9cff2f7725f15b166ab00 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
- "4.0"
- "0.12"
- "iojs"
before_script:
- npm install -g gulp
script: gulp mocha
| language: node_js
node_js:
- "5"
- "4.0"
- "0.12"
before_script:
- npm install -g gulp
script: gulp mocha
| Change node version for test | Change node version for test
| YAML | mit | weslleih/epub-comic-gen,weslleih/epub-comic-gen |
c77a187db5ad33d31f3888c8ace4991d72d1a9b6 | .travis.yml | .travis.yml | language: objective-c
script:
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release -sdk iphonesimulator test
- xctool -project RMStore.xcodeproj -scheme 'RMStoreDemo' -configuration Release -sdk iphonesimulator
branches:
only:
- master
| language: objective-c
script:
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release -sdk iphonesimulator build-tests
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release run-tests -test-sdk iphonesimulator5.0
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release run-tests -test-sdk iphonesimulator5.1
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release run-tests -test-sdk iphonesimulator6.0
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release run-tests -test-sdk iphonesimulator6.1
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release run-tests -test-sdk iphonesimulator7.0
- xctool -project RMStore.xcodeproj -scheme 'RMStoreDemo' -configuration Release -sdk iphonesimulator
branches:
only:
- master
| Test on all supported platforms | Test on all supported platforms
| YAML | apache-2.0 | s-alexander/RMStore,s-alexander/RMStore,ReutersTV/RMStore,ReutersTV/RMStore,Serjip/RMStore,ebothmann/RMStore,catlan/RMStore,cjhanson/RMStore,h4rrison-james/RMStore,robotmedia/RMStore,adamwulf/RMStore,catlan/RMStore,Serjip/RMStore,spicypixel-forks/RMStore,Serjip/RMStore,cjhanson/RMStore,xxkkk/RMStore,dxd214/RMStore,rodericj/RMStore,robotmedia/RMStore,robotmedia/RMStore,cjhanson/RMStore,vovanl10n/RMStore,adamwulf/RMStore,Pocket-Prep/RMStore,Pocket-Prep/RMStore,s-alexander/RMStore,fmestrone/RMStore,fmestrone/RMStore,h4rrison-james/RMStore,catlan/RMStore,adamwulf/RMStore,mluisbrown/RMStore,ebothmann/RMStore,spicypixel-forks/RMStore,dxd214/RMStore,xxkkk/RMStore,Pocket-Prep/RMStore,vovanl10n/RMStore,rodericj/RMStore,fmestrone/RMStore,mluisbrown/RMStore,dxd214/RMStore,h4rrison-james/RMStore,xxkkk/RMStore,mluisbrown/RMStore,ebothmann/RMStore,spicypixel-forks/RMStore,ReutersTV/RMStore,vovanl10n/RMStore,rodericj/RMStore |
daf48cd7d2e435addc836bfb343c97ee99265c4a | .travis.yml | .travis.yml | sudo: required
language: go
arch:
packages:
- go
# - xorg-server-xwayland
- wayland
# - xcb-util-image
# - pango
# - cairo
# - gdk-pixbuf2
- wlc-git
script:
- make deps
# - make check
- make test
- make
script:
- "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"
| sudo: required
language: go
arch:
packages:
- go
# - xorg-server-xwayland
- wayland
# - xcb-util-image
# - pango
# - cairo
# - gdk-pixbuf2
- wlc-git
script:
- go get github.com/mattn/goveralls
- make deps
# - make check
- $HOME/gopath/bin/goveralls -service=travis-ci
- make
script:
- "curl -s https://raw.githubusercontent.com/mikkeloscar/arch-travis/master/arch-travis.sh | bash"
| Use coveralls for test coverage | Use coveralls for test coverage
| YAML | mit | mikkeloscar/flis |
dd726972e8771c619713a4e4bf3405df4d672528 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
- php: 5.6
env: COLLECT_COVERAGE=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
- php: hhvm
before_install:
- composer self-update
install:
- make setup
before_script:
- mkdir -p "$HOME/.php-cs-fixer"
script:
- make test
- vendor/bin/php-cs-fixer fix --config-file=.php_cs --verbose --diff --dry-run
after_script:
- if [[ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_BRANCH" == "refactor" && "$COLLECT_COVERAGE" == "true" ]]; then bin/test-reporter; fi
cache:
directories:
- $HOME/.composer/cache
- $HOME/.php-cs-fixer
| language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 5.5
- php: 5.6
env: COLLECT_COVERAGE=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
- php: hhvm
before_install:
- composer self-update
install:
- make setup
before_script:
- mkdir -p "$HOME/.php-cs-fixer"
script:
- make test
- vendor/bin/php-cs-fixer fix --config-file=.php_cs --verbose --diff --dry-run
after_script:
- if [[ "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_BRANCH" == "refactor" && "$COLLECT_COVERAGE" == "true" ]]; then bin/test-reporter; fi
cache:
directories:
- $HOME/.composer/cache
- $HOME/.php-cs-fixer
addons:
code_climate:
repo_token: 1422e98c79dacf023e1a5710276ea033865b2884de913e957976f8da173d3ce5
| Add addon to Travis for Code Climate | Add addon to Travis for Code Climate
| YAML | mit | rcatlin/ryancatlin-info,rcatlin/ryancatlin-info,rcatlin/ryancatlin-info,rcatlin/ryancatlin-info |
4496c5cb9b94004dc279216f3df32c726a1fc33b | .travis.yml | .travis.yml | language: objective-c
before_install:
- gem install xcpretty -N
script:
- export LC_CTYPE=en_US.UTF-8
- set -o pipefail
- xcodebuild -project 'CCHBinaryData Example/CCHBinaryData Example.xcodeproj' -scheme 'CCHBinaryData Example' -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' -configuration Debug test | xcpretty -c
| language: objective-c
osx_image: xcode6.4
before_install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- export LC_CTYPE=en_US.UTF-8
- set -o pipefail
- xcodebuild -project 'CCHBinaryData Example/CCHBinaryData Example.xcodeproj' -scheme 'CCHBinaryData Example' -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' -configuration Debug test | xcpretty -c
| Use Xcode 6.4 on Travis | Use Xcode 6.4 on Travis
| YAML | mit | choefele/CCHBinaryData |
7b07caa6f69a4de81f36476daabe8d6d75607d65 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "pypy3"
install:
- travis_retry pip install -r requirements.txt
- travis_retry pip install coveralls
script:
- coverage run --branch --source=mygpoauth ./manage.py test
after_script:
- coveralls
sudo: false
env:
- DATABASE_URL="postgres://postgres@localhost/mygpo_test"
| language: python
python:
- "3.4"
- "pypy3"
install:
- travis_retry pip install -r requirements.txt
- travis_retry pip install coveralls
script:
- coverage run --branch --source=mygpoauth ./manage.py test
after_script:
- coveralls
sudo: false
env:
- DATABASE_URL="postgres://postgres@localhost/mygpo_test"
deploy:
provider: heroku
api_key:
secure: Te0KPJC6qODC1NEGlmB0tLnfIcbZkUs/l+Lc+RmQNqHH8FECOOasbt+DBQHsqfO6jOnKyN9Ygj7Em/ZRPdp989zkmIpXeG4afcH3FHp3PtFEGkFOwOTYtncdl8TnaY1vwX15HSqP6LBRNxbokQ5pi+LeAHSSGdMJ5pG21x74hqUjj3q7k1qvJkmQ/nt3Rxx+IqQ3qUgkAZZlFNXMwnSCTGH9LQWfg8XFhJkotguVdP/kyav1mwA7vHHGkqQzqZ6M9x1Y4lPeTgCd/Wf9HRaeRZAk8u/xNBkgFbj199chcubPoYSRjJmIiegD1XT75u9TT8IceHAAwEXBD1Z5vwT0m6ZlMNVQsczf9mLJj3bpK9owN02ISiJg5sS5Z63H4kv45zasrGdFxSJUw4/AY7SggbLmiSV0nT72rkoUAw7ZanZc+7yqi7xOVrAyUUCFYK21vdwUgCo0llWMYGEdYuXHqYMarhVonLMHuhnzQ20jSHrkr+j8AzHwY5plaWWuvFWd2l90ClPjv0v87AkOJU4LmGt+r67NCgpsT2Y6tC1OOZGtLw9mX1is3m8+TMlhKB7VgnBeSLuIhRlVk6u+BfXBhgDLOvc2LvY1lphkzqi7klu07YSaFU/O0WjKB2OgU1j/Am/sJ0low3UuB5zrPZ83upJy5+/fZLmDow9dYpMne30=
app: mygpo-auth-test
on:
repo: gpodder/mygpo-auth
| Deploy to Heroku after Travis-CI build | Deploy to Heroku after Travis-CI build
| YAML | agpl-3.0 | gpodder/mygpo-auth,gpodder/mygpo-auth |
cad1a0e3b054efc52d5afb024f74cdb9da7b296d | .travis.yml | .travis.yml | dist: bionic
language: go
services:
- docker
go:
- 1.13.x
install:
- go get -v golang.org/x/lint/golint
- go get -d -t -v ./...
- go build -v ./...
jobs:
include:
- stage: Test
script:
- go vet ./...
- $HOME/gopath/bin/golint -set_exit_status $(go list ./... | grep -v /vendor/)
- go test -v ./...
- stage: Fuzz regression
script: ./fuzzit.sh local-regression
- stage: Fuzz
if: branch = master AND type IN (push)
script: ./fuzzit.sh fuzzing
| dist: bionic
language: go
services:
- docker
go:
- 1.13.x
install:
- go get -v golang.org/x/lint/golint
- go get -d -t -v ./...
- go build -v ./...
jobs:
include:
- stage: Test
script:
- go vet ./...
- $HOME/gopath/bin/golint -set_exit_status $(go list ./... | grep -v /vendor/)
- go test -v ./...
- stage: Fuzz regression
script: ./fuzzit.sh local-regression
# - stage: Fuzz
# if: branch = master AND type IN (push)
# script: ./fuzzit.sh fuzzing
| Disable Fuzz stage in Travis build | Disable Fuzz stage in Travis build
It's failing with 401 Unauthorized, despite it having a valid token.
Not sure what to do.
| YAML | mit | tsenart/vegeta,tsenart/vegeta |
895554d65e53b003b3e88960db8aedb3ae86fc45 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.2
- 2.4.3
- 2.5.0
- jruby
- ruby
| language: ruby
rvm:
- 2.0.0
- 2.1.3
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- jruby
- ruby
| Add testing support for latest of each ruby | Add testing support for latest of each ruby
| YAML | mit | ngauthier/domino |
03bd7753e51b7c6dd46442e8ece957477c222714 | .travis.yml | .travis.yml | sudo: false
language: python
matrix:
include:
- python: 2.7
env: TOXENV=py27-django111
- python: 3.4
env: TOXENV=py34-django111
- python: 3.4
env: TOXENV=py34-django20
- python: 3.5
env: TOXENV=py35-django111
- python: 3.5
env: TOXENV=py35-django20
- python: 3.5
env: TOXENV=py35-django21
- python: 3.6
env: TOXENV=py36-django111
- python: 3.6
env: TOXENV=py36-django20
- python: 3.6
env: TOXENV=py36-django21
- python: 3.7
env: TOXENV=py37-django111
- python: 3.7
env: TOXENV=py37-django20
- python: 3.7
env: TOXENV=py37-django21
- python: 3.6
env: TOXENV=lint
install:
- pip install tox
script:
- tox
| sudo: false
language: python
dist: xenial
matrix:
include:
- python: 2.7
env: TOXENV=py27-django111
- python: 3.4
env: TOXENV=py34-django111
- python: 3.4
env: TOXENV=py34-django20
- python: 3.5
env: TOXENV=py35-django111
- python: 3.5
env: TOXENV=py35-django20
- python: 3.5
env: TOXENV=py35-django21
- python: 3.6
env: TOXENV=py36-django111
- python: 3.6
env: TOXENV=py36-django20
- python: 3.6
env: TOXENV=py36-django21
- python: 3.7
env: TOXENV=py37-django111
- python: 3.7
env: TOXENV=py37-django20
- python: 3.7
env: TOXENV=py37-django21
- python: 3.6
env: TOXENV=lint
install:
- pip install tox
script:
- tox
| Change ubuntu dist to xenial | Change ubuntu dist to xenial
| YAML | apache-2.0 | 3YOURMIND/django-migration-linter |
4a2b7a5d93fb643494fda83d2ac07a9663152212 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Build with lastest Node.js 6 on Travis CI. | Build with lastest Node.js 6 on Travis CI.
| YAML | mit | bigeasy/paxos,bigeasy/paxos |
fa734f74676ca09f4e7aff23fc2171dd75d5a61d | .travis.yml | .travis.yml | language: go
go:
- tip
script:
- go test ./... -bench . -v --coverprofile=c.out -benchmem && go tool cover -func=c.out
| sudo: false
language: go
go:
- tip
script:
- go test ./... -bench . -v --coverprofile=c.out -benchmem && go tool cover -func=c.out
| Set sudo to false in Travis config file | Set sudo to false in Travis config file
| YAML | mit | alesr/numbers |
a00fe0b0d19b2ed994b6106824b36a1226f5fd9d | .travis.yml | .travis.yml | osx_image: xcode7.3
language: objective-c
before_install: 'brew update || brew update'
install:
- brew install carthage; true
- carthage bootstrap --verbose
script: rake ci
| osx_image: xcode7.3
language: objective-c
before_install: 'brew update || brew update'
install:
- brew install carthage; true
- carthage bootstrap --verbose --platform osx,ios
script: rake ci
| Set which platforms to use on bootstrap | Set which platforms to use on bootstrap
| YAML | mit | jeffh/JKVValue,jeffh/JKVValue |
66bc9e6f10847038817db1a8a8796cd25134bab0 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
install:
- python setup.py install
- pip install coverage
script: coverage run setup.py test
after_success:
- pip install coveralls
- coveralls
notifications:
webhooks: https://webhooks.gitter.im/e/af18bf2decb40329066b
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
install:
- python setup.py install
- pip install coverage
script: coverage run setup.py test
after_success:
- pip install coveralls
- coveralls
notifications:
webhooks: https://webhooks.gitter.im/e/af18bf2decb40329066b
| Enable automated testing on Python 3.4 | Enable automated testing on Python 3.4 | YAML | bsd-3-clause | taedori81/satchless |
11f3a71fdb46278e8240ef019ab314f84a9a6e33 | .travis.yml | .travis.yml | dist: trusty
matrix:
include:
- language: java
jdk: openjdk8
env: FRONT=false
- language: node_js
node_js:
- lts/*
- node
env: FRONT=true
before_install:
- if [[ $FRONT = 'true' ]]; then cd front; fi
| dist: trusty
matrix:
include:
- language: java
jdk: openjdk8
env: FRONT=false
- language: node_js
node_js: lts/*
env: FRONT=true
- language: node_js
node_js: node
env: FRONT=true
before_install:
- if [[ $FRONT = 'true' ]]; then cd front; fi
| Fix build matrix to run multiple node versions | Fix build matrix to run multiple node versions
| YAML | mit | mpalourdio/SpringBootAngularHTML5,mpalourdio/SpringBootAngularHTML5,mpalourdio/SpringBootAngularHTML5,mpalourdio/SpringBootAngularHTML5 |
1791760047141ba63f236f629d8539c8ca713be1 | .travis.yml | .travis.yml | language: rust
env:
global:
- secure: xvgEoA6Etp8KWAnA9FrCkPNTdz8dunFN93sgWFkd55NGtTqlLehHCvuqG/7DFteoQ6FK2+g45NqJoc2UWp1CUIs27Qm5ICvnmFFLSncHN2ofefN0fj0BWXJunVBuKsO1xYCossnXKsEBDSpLJ5BI1eMrJETyHW75Nb3YIXH0Dm4=
install:
- sudo apt-get install libleveldb-dev
- sudo apt-get install libsnappy-dev
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
rust:
- nightly
| language: rust
env:
global:
- secure: xvgEoA6Etp8KWAnA9FrCkPNTdz8dunFN93sgWFkd55NGtTqlLehHCvuqG/7DFteoQ6FK2+g45NqJoc2UWp1CUIs27Qm5ICvnmFFLSncHN2ofefN0fj0BWXJunVBuKsO1xYCossnXKsEBDSpLJ5BI1eMrJETyHW75Nb3YIXH0Dm4=
install:
- sudo apt-get install libleveldb-dev
- sudo apt-get install libsnappy-dev
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
rust:
- 1.0.0-beta
- nightly
matrix:
allow_failures:
- rust: nightly
| Test on beta, allow failures on nightly | Test on beta, allow failures on nightly
| YAML | mit | alekseysidorov/leveldb,alekseysidorov/leveldb,skade/leveldb |
6b2e4ed12e295e8da624e0367b8bb22200645f7b | .travis.yml | .travis.yml | language: ruby
jdk:
- oraclejdk8
sudo: false
rvm:
- 2.3.1
before_install:
# This is based on the instructions at https://gist.github.com/domenic/ec8b0fc8ab45f39403dd
- openssl aes-256-cbc -K $encrypted_90b1dba0abf8_key -iv $encrypted_90b1dba0abf8_iv -in etc/deploy_id_rsa.enc -out ~\/.ssh/deploy_id_rsa -d
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package && buildr site:deploy
git:
depth: 10
| language: ruby
jdk:
- oraclejdk8
sudo: false
rvm:
- 2.3.1
before_install:
# This is based on the instructions at https://gist.github.com/domenic/ec8b0fc8ab45f39403dd
- openssl aes-256-cbc -K $encrypted_90b1dba0abf8_key -iv $encrypted_90b1dba0abf8_iv -in etc/deploy_id_rsa.enc -out ../deploy_id_rsa -d
- chmod 600 ../deploy_id_rsa
- eval `ssh-agent -s` && ssh-add ../deploy_id_rsa
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package && buildr site:deploy
git:
depth: 10
| Update mechanisms for setting up key | Update mechanisms for setting up key
| YAML | apache-2.0 | realityforge/arez,realityforge/arez,realityforge/arez |
9dd415c04fcbdcd377dec8c8620ec4779e48e5cd | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- jruby-19mode
- jruby-9.0.4.0
env:
- BUNDLE_WITHOUT=secondary:development
- BUNDLE_WITHOUT=primary:development
matrix:
allow_failures:
- env: BUNDLE_WITHOUT=primary:development
| sudo: false
addons:
apt:
sources:
- kalakris-cmake
packages:
- cmake
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- jruby-19mode
- jruby-9.0.4.0
env:
- BUNDLE_WITHOUT=secondary:development
- BUNDLE_WITHOUT=primary:development
matrix:
allow_failures:
- env: BUNDLE_WITHOUT=primary:development
| Use a cmake backport for commonmark | Use a cmake backport for commonmark
| YAML | mit | tommay/tilt |
1ba3b2327ab3216f962c53bc5148061285e76d86 | .travis.yml | .travis.yml | language : python
python:
- 3.6
sudo: false
env:
global:
- secure: "Y6tBB5CwAxaHPxLzwyyoQKXEwLK68ni8GqzoaYCYbrjLhSFqEDCk6Si7UPmMoED8t7hyxFZofPfEpmOLBoronWUQycnB/K/oxYFfKyEXxNxGpY/iaQk/XCC6rkJ3g863QKdAsgobBgJIClDczZ7leY3RlN+mHfH0wohCBLFAh0E="
script:
- set -e
- make html
- pip uninstall -y doctr
- pip install git+https://github.com/danielballan/doctr@30e8e715be8386108eddd9188c60f4ad742159d8
- doctr deploy --deploy-repo NSLS-II/NSLS-II.github.io --deploy-branch-name master .
| language : python
python:
- 3.6
sudo: false
env:
global:
- secure: "Y6tBB5CwAxaHPxLzwyyoQKXEwLK68ni8GqzoaYCYbrjLhSFqEDCk6Si7UPmMoED8t7hyxFZofPfEpmOLBoronWUQycnB/K/oxYFfKyEXxNxGpY/iaQk/XCC6rkJ3g863QKdAsgobBgJIClDczZ7leY3RlN+mHfH0wohCBLFAh0E="
script:
- set -e
- make html
- pip uninstall -y doctr
- pip install git+https://github.com/danielballan/doctr@other-master
- doctr deploy --deploy-repo NSLS-II/NSLS-II.github.io --deploy-branch-name master .
| Install doctr from PR branch instead of specific commit on that branch. | BLD: Install doctr from PR branch instead of specific commit on that branch.
| YAML | bsd-2-clause | NSLS-II/docs,tacaswell/docs,NSLS-II/docs |
6fb349fe04627a4c2f407dd7f85d763f5a05597e | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Build with Node.js 10 on Travis CI. | Build with Node.js 10 on Travis CI.
| YAML | mit | bigeasy/arguable |
c7c4ec999b5e3f2a3f35cf2a1e2efd1ed0aa0c74 | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
cache: pip
before_install:
- pip install 'flake8>=3.5.0'
- flake8
install:
- pip install --upgrade pip setuptools wheel
- pip install -r requirements.txt
- pip install -e .
script:
- pytest --cov=mws
after_success:
- pip install codecov
- codecov
| dist: trusty
sudo: false
language: python
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
cache: pip
install:
- pip install --upgrade pip setuptools wheel
- pip install -r requirements.txt
- pip install -e .
script:
- pytest --cov=mws
after_success:
- pip install 'flake8>=3.5.0'
- flake8
- pip install codecov
- codecov
| Move flake8 checking after pytest calls | Move flake8 checking after pytest calls
A current PR is using `enum`, which was added in Py3.4. That should have produced an error for a missing module in Py2.7 testing, but `flake8` loads `enum34` as a dependency into the environment first. This contaminates the test suite prior to running tests, hiding what should be an error. | YAML | unlicense | GriceTurrble/python-amazon-mws |
e71f431d39bf6de6696b08be81fb27dd92932805 | .travis.yml | .travis.yml | language: cpp
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libboost-all-dev
before_script:
- cd ../..
- git clone https://github.com/czipperz/vick czipperz/vick
- cd czipperz/vick
- mkdir -p plugins
- cd plugins
# customize me!
- git clone https://github.com/czipperz/vick-move
- cd ..
script:
- make regen Dtesting=-Dtesting
- make CXX=g++-4.8 test -j 10
| language: cpp
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libboost-all-dev
before_script:
- cd ../..
- git clone https://github.com/czipperz/vick czipperz/vick
- cd czipperz/vick
- mkdir -p plugins
- cd plugins
# customize me!
- git clone https://github.com/czipperz/vick-move
- cd ..
script:
- make regen Dtesting=-Dtesting
- make CXX=g++-4.8 test -j 10
- make CXX=g++-4.8 -j 10
| Call normal make in plugins | Call normal make in plugins
| YAML | mpl-2.0 | czipperz/vick-move |
797698a43cc36b10c6819de8e062eb13fc0ef8b6 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- pip install -e .[tests]
- pip install $DJANGO
- pip install pytest-django factory-boy
- export PYTHONPATH=.
script:
- py.test
| language: python
python:
- "2.7"
- "3.4"
install:
- pip install -e .[tests]
- pip install $DJANGO
- pip install pytest-django factory-boy
- export PYTHONPATH=.
script:
- py.test
| Add Python 3.4 to the build matrix. | Add Python 3.4 to the build matrix.
| YAML | bsd-3-clause | linovia/django-bug-hipster,linovia/django-bug-hipster,pombredanne/django-bug-hipster,pombredanne/django-bug-hipster,linovia/django-bug-hipster,pombredanne/django-bug-hipster |
97c7e47fd351c40294e41eae49c023850eeba609 | .travis.yml | .travis.yml | # Travis CI build
language: java
os: linux
jdk:
- openjdk8
- openjdk11
before_script:
- export ANT_VERSION=1.10.9
- wget --no-cookies https://downloads.apache.org/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz
- wget --no-cookies https://downloads.apache.org/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz.sha512
- echo "$(cat apache-ant-${ANT_VERSION}-bin.tar.gz.sha512) apache-ant-${ANT_VERSION}-bin.tar.gz" | sha512sum -c
- tar -zvxf apache-ant-${ANT_VERSION}-bin.tar.gz -C /opt/
- ln -s /opt/apache-ant-${ANT_VERSION} /opt/ant
- rm -f apache-ant-${ANT_VERSION}-bin.tar.gz
- rm -f apache-ant-${ANT_VERSION}-bin.tar.gz.sha512
- export PATH="/opt/ant/bin:$PATH"
script:
- ant -logger org.apache.tools.ant.NoBannerLogger clean build check
| # Travis CI build
language: java
os: linux
jdk:
- openjdk8
- openjdk11
before_script:
- export ANT_VERSION=1.10.9
- wget --no-cookies https://downloads.apache.org/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz
- wget --no-cookies https://downloads.apache.org/ant/binaries/apache-ant-${ANT_VERSION}-bin.tar.gz.sha512
- echo "$(cat apache-ant-${ANT_VERSION}-bin.tar.gz.sha512) apache-ant-${ANT_VERSION}-bin.tar.gz" | sha512sum -c
- tar -zvxf apache-ant-${ANT_VERSION}-bin.tar.gz -C /opt/
- ln -s /opt/apache-ant-${ANT_VERSION} /opt/ant
- rm -f apache-ant-${ANT_VERSION}-bin.tar.gz
- rm -f apache-ant-${ANT_VERSION}-bin.tar.gz.sha512
- export PATH="/opt/ant/bin:$PATH"
- ant -version
script:
- ant -logger org.apache.tools.ant.NoBannerLogger clean build check
| Print Ant version on CI build. | Print Ant version on CI build.
| YAML | mit | mattbertolini/liquibase-slf4j |
8ed580d4ace4bc6a2314649ca314bfcae853fc10 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
services:
- mysql
- postgresql
script: "npm run $TEST_STEP"
env:
matrix:
- TEST_STEP=lint
- TEST_STEP=test SEQUELIZE_DIALECT=mysql
- TEST_STEP=test SEQUELIZE_DIALECT=postgres
notifications:
email: false
| language: node_js
node_js:
- "0.10"
- "4"
services:
- mysql
- postgresql
script: "npm run $TEST_STEP"
env:
matrix:
- TEST_STEP=lint
- TEST_STEP=test SEQUELIZE_DIALECT=mysql
- TEST_STEP=test SEQUELIZE_DIALECT=postgres
notifications:
email: false
| Enable Node.js v4 testing on Travis CI. | Enable Node.js v4 testing on Travis CI.
| YAML | mit | holidayextras/jsonapi-store-relationaldb,holidayextras/jsonapi-store-relationaldb |
66f0166d2880819cec111f379ef5646c94de4a1e | .travis.yml | .travis.yml | jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
script:
- ./gradlew clean build
after_success:
- ./gradlew test jacocoTestReport coveralls -Pcoverage | jdk:
- oraclejdk8
- oraclejdk7
script:
- ./gradlew clean build
after_success:
- ./gradlew test jacocoTestReport coveralls -Pcoverage | Drop official support for Java 6 | Drop official support for Java 6
Project dependencies require Java 7+
| YAML | apache-2.0 | marcingrzejszczak/gradle-test-profiler,gpie3k/gradle-test-profiler |
b791ccd038ee2b548be5262505c54accb7c46f78 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
before_install:
- sudo apt-get update
- sudo apt-get install -y python3-dev python3-gi python3-gi-cairo gir1.2-gtk-3.0 libgirepository1.0-dev libcairo2-dev
install:
- pip install -r requirements.txt
script:
- pytest | language: python
dist: xenial
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
- python: 3.7
sudo: true
before_install:
- sudo apt-get update
- sudo apt-get install -y python3-dev python3-gi python3-gi-cairo gir1.2-gtk-3.0 libgirepository1.0-dev libcairo2-dev
install:
- pip install -r requirements.txt
script:
- pytest | Update Travis to Ubuntu 16.04 xenial and add sudo for Python 3.7 support | Update Travis to Ubuntu 16.04 xenial and add sudo for Python 3.7 support
Signed-off-by: Dan Yeaw <2591e5f46f28d303f9dc027d475a5c60d8dea17a@yeaw.me>
| YAML | lgpl-2.1 | amolenaar/gaphas |
9668121d16a8d4a9006558a597955c8673dfe717 | .travis.yml | .travis.yml | ---
language: php
sudo: false
matrix:
include:
- php: 5.6
- php: hhvm
- php: 7.0
allow_failures:
# HHVM will be abandoned so let's not have it break builds
- php: hhvm
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
before_install:
# Remove xdebug as per https://getcomposer.org/doc/articles/troubleshooting.md#xdebug-impact-on-composer
- if [ "$TRAVIS_PHP_VERSION" != 'hhvm' ]; then phpenv config-rm xdebug.ini; fi
install:
- composer install --prefer-dist
script:
- bin/test
...
| ---
language: php
sudo: false
matrix:
include:
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
allow_failures:
# HHVM will be abandoned so let's not have it break builds
- php: hhvm
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
before_install:
# Remove xdebug as per https://getcomposer.org/doc/articles/troubleshooting.md#xdebug-impact-on-composer
- if [ "$TRAVIS_PHP_VERSION" != 'hhvm' ]; then phpenv config-rm xdebug.ini; fi
install:
- composer install --prefer-dist
script:
- bin/test
...
| Remove hhvm support as unnecessary | Remove hhvm support as unnecessary
| YAML | mit | shrikeh/guzzle-middleware-responsetimer,shrikeh/guzzle-middleware-responsetimer |
43b11f22f635d14ff27b47cb668016b0ace15414 | .travis.yml | .travis.yml | rvm:
- 2.1.0
- 2.1.1
- 2.2.1
- 2.3.0
- 2.4.0
- jruby-9.1.8.0
jdk:
- oraclejdk8
before_install:
- sudo apt-get update
- sudo apt-get install libicu-dev
| rvm:
- 2.3.0
- 2.4.0
- jruby-9.1.8.0
jdk:
- oraclejdk8
before_install:
- sudo apt-get update
- sudo apt-get install libicu-dev
| Drop rubies < 2.3 for bibtex support (citeproc-ruby). | Drop rubies < 2.3 for bibtex support (citeproc-ruby).
| YAML | mit | gollum/gollum-lib,rgroux/gollum-lib,repotag/gollum-lib,rgroux/gollum-lib,gollum/gollum-lib,repotag/gollum-lib |
fcf610627815a36a1499d59f217c90c9e2d5af22 | .travis.yml | .travis.yml | before_install:
- gem install bundler
rvm:
- 1.9.2
- 1.9.3
- rbx-19mode
- jruby-19mode
- ruby-head
branches:
only: master
notifications:
email: false
| before_install:
- gem install bundler
matrix:
allow_failures:
- rvm: ruby-head
rvm:
- 1.9.2
- 1.9.3
- rbx-19mode
- jruby-19mode
- ruby-head
branches:
only: master
notifications:
email: false
| Allow to fail on mri 2. | Allow to fail on mri 2.
| YAML | mit | samphilipd/github,joshsoftware/github,GistBox/github,piotrmurach/github,peter-murach/github,yaoxiaoyong/github,anabhilash619/github,MalachiTatum/github,cocktail-io/github,davengeo/github,firstval/github,durai145/github,wicky-info/github,befairyliu/github |
45299c31d75372af96959c76d01136e69e548314 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- jruby-head
- ree
| language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
- jruby-19mode
- rbx-19mode
- jruby-head
| Exclude Rubies < 1.9.3 as some gems new require Ruby version >= 1.9.3 | Exclude Rubies < 1.9.3 as some gems new require Ruby version >= 1.9.3 | YAML | mit | ZeroOneStudio/omniauth-namba |
1c883490db68e8c62fb94e2727259586f8792a4d | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-8
- INSTANCE=default-debian-9
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
- INSTANCE=canonical-centos-6
- INSTANCE=canonical-centos-7
- INSTANCE=canonical-debian-8
- INSTANCE=canonical-debian-9
- INSTANCE=canonical-ubuntu-1404
- INSTANCE=canonical-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
| sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-amazonlinux
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-8
- INSTANCE=default-debian-9
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
- INSTANCE=canonical-amazonlinux
- INSTANCE=canonical-centos-6
- INSTANCE=canonical-centos-7
- INSTANCE=canonical-debian-8
- INSTANCE=canonical-debian-9
- INSTANCE=canonical-ubuntu-1404
- INSTANCE=canonical-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
| Test on amazon linux in Travis | Test on amazon linux in Travis
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/postfix,mawatech/postfix,chef-cookbooks/postfix,gnowxilef/cookbook-postfix,mawatech/postfix,gnowxilef/cookbook-postfix,opscode-cookbooks/postfix,opscode-cookbooks/postfix |
7ed9d14ad3d8506fa70160824ce6bb2b93e3fbef | .travis.yml | .travis.yml | #This file is generated by ModuleSync, do not edit.
---
sudo: false
language: ruby
cache: bundler
script: "bundle exec rake validate lint spec"
matrix:
fast_finish: true
include:
- rvm: 2.1.6
dist: trusty
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/ubuntu-14.04
script: bundle exec rake beaker
services: docker
sudo: required
- rvm: 2.1.6
dist: trusty
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/centos-7
script: bundle exec rake beaker
services: docker
sudo: required
- rvm: 2.1.6
bundler_args: --without system_tests
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes"
- rvm: 2.1.5
bundler_args: --without system_tests
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
- rvm: 2.1.5
bundler_args: --without system_tests
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
bundler_args: --without system_tests
env: PUPPET_GEM_VERSION="~> 3.0"
notifications:
email: false
| #This file is generated by ModuleSync, do not edit.
---
sudo: false
language: ruby
cache: bundler
script: "bundle exec rake validate lint spec"
matrix:
fast_finish: true
include:
- rvm: 2.1.6
dist: trusty
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/ubuntu-14.04
script: bundle exec rake beaker
services: docker
sudo: required
- rvm: 2.1.6
dist: trusty
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/centos-7
script: bundle exec rake beaker
services: docker
sudo: required
- rvm: 2.1.6
bundler_args: --without system_tests
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes"
- rvm: 2.1.6
bundler_args: --without system_tests
env: PUPPET_GEM_VERSION="~> 4.0" FUTURE_PARSER="yes"
- rvm: 2.1.5
bundler_args: --without system_tests
env: PUPPET_GEM_VERSION="~> 4.0"
notifications:
email: false
| Remove support for puppet version 3.0 tests | Remove support for puppet version 3.0 tests
| YAML | apache-2.0 | rehanone/puppet-git |
d577df328274fc7e92a3bbc69d57813b83c1d5b0 | .travis.yml | .travis.yml | language: python
python:
- '3.3'
- '3.4'
- 'pypy3'
install:
- python setup.py install
script:
- python setup.py test
- pip install docutils
- python setup.py check --metadata --restructuredtext --strict
| language: python
python:
- '3.3'
- '3.4'
install:
- python setup.py install
script:
- python setup.py test
- pip install docutils
- python setup.py check --metadata --restructuredtext --strict
| Drop pypy3 from Travis CI | Drop pypy3 from Travis CI
pypy3 doesn't support returning with argument inside generator.
| YAML | mit | taigrr/hangups,baskervald/hangups,dxd132630/hangups,j16sdiz/hangups,tdryer/hangups,das7pad/hangups,hangoutsbot/hangups,AshenDrops/hangups,ddboline/hangups,jodizzle/hangups |
d28157b7476981cde2d24e327d6d7359953f125f | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
| sudo: false
language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3.3"
- "2.4.0"
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
| Test with ruby 2.3 and 2.4 also | Test with ruby 2.3 and 2.4 also
| YAML | mit | ManageIQ/awesome_spawn |
273bfd686ca850f1b1ec5cadfbc025f30c3a10ee | .travis.yml | .travis.yml | language: python
python: 2.7
services:
- redis-server
env:
- TOXENV=py26-dj13
- TOXENV=py26-dj14
- TOXENV=py26-dj15
- TOXENV=py26-dj16
- TOXENV=py27-dj13
- TOXENV=py27-dj14
- TOXENV=py27-dj15
- TOXENV=py27-dj16
- TOXENV=py27-dj17
- TOXENV=py27-djmaster
- TOXENV=py33-dj15
- TOXENV=py33-dj16
- TOXENV=py33-dj17
- TOXENV=py33-djmaster
- TOXENV=py34-dj15
- TOXENV=py34-dj16
- TOXENV=py34-dj17
- TOXENV=py34-djmaster
- TOXENV=fake
matrix:
allow_failures:
- env: "TOXENV=py27-djmaster"
- env: "TOXENV=py33-djmaster"
- env: "TOXENV=py34-djmaster"
install:
- pip install tox
script:
- tox
notifications:
email:
on_success: never
on_failure: always
| language: python
python: 2.7
services:
- redis-server
env:
- TOXENV=py26-dj13
- TOXENV=py26-dj14
- TOXENV=py26-dj15
- TOXENV=py26-dj16
- TOXENV=py27-dj13
- TOXENV=py27-dj14
- TOXENV=py27-dj15
- TOXENV=py27-dj16
- TOXENV=py27-dj17
- TOXENV=py27-djmaster
- TOXENV=py33-dj15
- TOXENV=py33-dj16
- TOXENV=py33-dj17
- TOXENV=py33-djmaster
- TOXENV=py34-dj15
- TOXENV=py34-dj16
- TOXENV=py34-dj17
- TOXENV=py34-djmaster
- TOXENV=fake
matrix:
allow_failures:
- env: "TOXENV=py27-djmaster"
- env: "TOXENV=py33-djmaster"
- env: "TOXENV=py34-djmaster"
install:
- pip install tox
script:
- tox
| Revert to default Travis notification settings | Revert to default Travis notification settings
| YAML | bsd-3-clause | bourivouh/django-cacheops,whyflyru/django-cacheops,Suor/django-cacheops,th13f/django-cacheops,LPgenerator/django-cacheops,rutube/django-cacheops,andwun/django-cacheops,ErwinJunge/django-cacheops |
48a987dfaf98a87abfbeafdfbefc4ec11c5df691 | .travis.yml | .travis.yml | language: ruby
cache:
- bundler
rvm:
- 2.2.4
- 2.3.1
addons:
code_climate:
repo_token: d1d9c0636042863489880dbdf1c8865721b9b70f4199d612d77ee2dcfc803704
| sudo: false
language: ruby
cache:
- bundler
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
addons:
code_climate:
repo_token: d1d9c0636042863489880dbdf1c8865721b9b70f4199d612d77ee2dcfc803704
| Test against new Ruby 2.x versions | [CI] Test against new Ruby 2.x versions | YAML | mit | opti/panda_doc,opti/panda_doc |
9c387306f224d48c0ddcb3ea3b30ca2e17d592bf | .travis.yml | .travis.yml | script: true
env:
global:
- COMMIT_AUTHOR_NAME: "'Chris Schmich'"
- COMMIT_AUTHOR_EMAIL: schmch@gmail.com
- LOCALES_PATH: package/_locales
deploy:
provider: script
script: bash ./deploy/chrome-extension-localization/deploy/deploy.sh
skip_cleanup: true
on:
branch: master
before_install:
- git submodule update --init --recursive
- openssl aes-256-cbc -K $encrypted_0cfb57c34e7b_key -iv $encrypted_0cfb57c34e7b_iv
-in deploy/deploy_key.enc -out deploy/deploy_key -d
| language: node_js
node_js:
- lts/*
script: make test
env:
global:
- COMMIT_AUTHOR_NAME: "'Chris Schmich'"
- COMMIT_AUTHOR_EMAIL: schmch@gmail.com
- LOCALES_PATH: package/_locales
deploy:
provider: script
script: bash ./deploy/chrome-extension-localization/deploy/deploy.sh
skip_cleanup: true
on:
branch: master
before_install:
- git submodule update --init --recursive
- openssl aes-256-cbc -K $encrypted_0cfb57c34e7b_key -iv $encrypted_0cfb57c34e7b_iv
-in deploy/deploy_key.enc -out deploy/deploy_key -d
| Add unit tests to Travis builds. | Add unit tests to Travis builds.
| YAML | mit | schmich/marinara,schmich/marinara,schmich/marinara |
f26c88cbaeabce963e13f470fb8594ba81744188 | .travis.yml | .travis.yml | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '8'
- '10'
- '12'
script:
- npm test
branches:
only:
- master
- /^greenkeeper/.*$/
| sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '10'
- '12'
- '14'
script:
- npm test
branches:
only:
- master
- /^greenkeeper/.*$/
| Disable testing on node 8, and enable on node 14 | Disable testing on node 8, and enable on node 14
| YAML | mit | sheerun/prettier-standard |
df19ee4642163ce22c6b79a4dbac0b319daeaa5a | .travis.yml | .travis.yml | dist: xenial
language: java
install:
- java --version
script:
- javac -d target/make src/bach/Bach.java src/bach/Make.java
- java -cp target/make Make
after_success:
- cd $TRAVIS_BUILD_DIR/demo/00-bootstrap
- ./bootstrap.sh
#- cd $TRAVIS_BUILD_DIR/demo/01-hello-world
#- ./build-01-hello-world.jsh
| dist: xenial
language: java
install:
- java --version
script:
- javac -d target/make src/bach/Bach.java src/bach/Make.java
- java -cp target/make Make
after_success:
- cd $TRAVIS_BUILD_DIR/demo/00-bootstrap
- ./bootstrap.sh
- cd $TRAVIS_BUILD_DIR/demo/01-hello-world
- java ../../src/bach/Bach.java
| Build 'hello world' demo on Travis CI | Build 'hello world' demo on Travis CI
| YAML | mit | sormuras/bach,sormuras/bach |
d1be2eb560a343ab9645dece5c981cc1ad18ead9 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
notifications:
email:
- mitchell.nordine@gmail.com
os:
- osx
- linux
before_script:
- rustc --version
- cargo --version
- rustup component add rustfmt
- if [ "$TRAVIS_OS_NAME" = linux ]; then rustup target add x86_64-apple-darwin; fi
script:
- if [ "$TRAVIS_OS_NAME" = linux ]; then curl -sL https://github.com/phracker/MacOSX-SDKs/releases/download/10.13/MacOSX10.13.sdk.tar.xz | tar -Jxf -; export COREAUDIO_SDK_PATH="$PWD/MacOSX10.13.sdk"; fi
- RUSTFMT=rustfmt cargo build --verbose --target=x86_64-apple-darwin
- if [ "$TRAVIS_OS_NAME" = osx ]; then RUSTFMT=rustfmt cargo test --verbose; fi
- if [ "$TRAVIS_OS_NAME" = osx ]; then rustup target add aarch64-apple-ios armv7-apple-ios armv7s-apple-ios; for i in aarch64-apple-ios armv7-apple-ios armv7s-apple-ios; do RUSTFMT=rustfmt cargo build --verbose --target=$i; done; fi
| language: rust
rust:
- stable
- beta
- nightly
notifications:
email:
- mitchell.nordine@gmail.com
os:
- osx
- linux
before_script:
- rustc --version
- cargo --version
- rustup component add rustfmt
- if [ "$TRAVIS_OS_NAME" = linux ]; then rustup target add x86_64-apple-darwin; fi
script:
- if [ "$TRAVIS_OS_NAME" = linux ]; then curl -sL https://github.com/phracker/MacOSX-SDKs/releases/download/10.13/MacOSX10.13.sdk.tar.xz | tar -Jxf -; export COREAUDIO_SDK_PATH="$PWD/MacOSX10.13.sdk"; fi
- RUSTFMT=rustfmt cargo build --verbose --target=x86_64-apple-darwin
- if [ "$TRAVIS_OS_NAME" = osx ]; then RUSTFMT=rustfmt cargo test --verbose; fi
- if [ "$TRAVIS_OS_NAME" = osx ]; then rustup target add aarch64-apple-ios ; RUSTFMT=rustfmt cargo build --verbose --target=aarch64-apple-ios; fi
| Remove 32 bit ios targets from CI as they're not tier 1 anymore | Remove 32 bit ios targets from CI as they're not tier 1 anymore
| YAML | mit | RustAudio/coreaudio-sys |
e4309364982e2ae8f77ba9f22db9476a8b9e3a74 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk7
- oraclejdk7
rvm:
- 1.9.3
install:
- rvm use 1.9.3
- gem install bundler
- bundle install
script: buildr clean package
| language: java
jdk:
- openjdk7
- oraclejdk7
rvm:
- 1.9.3
install:
- rvm use 1.9.3
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
| Reduce the size of the git repository downloaded during TravisCI testing. | Reduce the size of the git repository downloaded during TravisCI testing.
| YAML | apache-2.0 | realityforge/gwt-property-source-example,realityforge/gwt-property-source-example,realityforge/gwt-property-source-example |
84b8474b90e29768c3471bd169a601be9eb56f7c | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: 5.6
env: SUITE='server_data'
- php: hhvm
allow_failures:
- php: 5.6
env: server_data
before_install:
# Composer only updated in TravisCI containers when they build their images every month or so
- composer self-update
install:
- composer install --no-interaction --prefer-dist
script:
- if [ -z "$SUITE" ]; then vendor/bin/phpunit --testsuite unit; fi;
- if [ "$SUITE" == "server_data" ]; then vendor/bin/phpunit --testsuite server_data; fi; | language: php
matrix:
fast_finish: true
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: 5.6
env: SUITE='server_data'
- php: hhvm
allow_failures:
- php: 5.6
env: server_data
before_install:
# Composer only updated in TravisCI containers when they build their images every month or so
- composer self-update
install:
- composer install --no-interaction --prefer-dist
script:
- if [ -z "$SUITE" ]; then vendor/bin/phpunit --testsuite unit; fi;
- if [ "$SUITE" == "server_data" ]; then vendor/bin/phpunit --testsuite server_data; fi; | Mark build passed or failed before server_data test completes | Mark build passed or failed before server_data test completes
| YAML | mit | HelgeSverre/Domain-Availability |
35fea348878a329ee10e65a6b7edd37d97301e73 | .travis.yml | .travis.yml | language: ruby
sudo: false
script: bundle exec rake travis
matrix:
fast_finish: true
include:
- rvm: 1.8.7
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: 1.9.3
gemfile: Gemfile
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1.0
gemfile: Gemfile
- rvm: 2.1.1
gemfile: Gemfile
- rvm: 2.1.1
gemfile: gemfiles/Gemfile-edge
- rvm: 2.2.0
gemfile: Gemfile
- rvm: 2.2.0
gemfile: gemfiles/Gemfile-edge
- rvm: jruby-18mode
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: jruby-19mode
gemfile: Gemfile
- rvm: jruby-head
gemfile: Gemfile
allow_failures:
- rvm: jruby-head
notifications:
email: false
irc:
channels:
- "irc.freenode.org#ruby-fog"
template:
- "[#%{build_number}] %{message} %{build_url}"
- "[#%{build_number}] %{commit} on %{branch} by %{author}"
- "[#%{build_number}] %{compare_url}"
on_success: always
on_failure: always
use_notice: false
| language: ruby
sudo: false
script: bundle exec rake travis
matrix:
fast_finish: true
include:
- rvm: 1.8.7
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: 1.9.3
gemfile: Gemfile
- rvm: 2.0.0
gemfile: Gemfile
- rvm: 2.1.0
gemfile: Gemfile
- rvm: 2.1.1
gemfile: Gemfile
- rvm: 2.1.1
gemfile: gemfiles/Gemfile-edge
- rvm: jruby-18mode
gemfile: gemfiles/Gemfile-ruby-1.8.7
- rvm: jruby-19mode
gemfile: Gemfile
- rvm: jruby-head
gemfile: Gemfile
allow_failures:
- rvm: jruby-head
notifications:
email: false
irc:
channels:
- "irc.freenode.org#ruby-fog"
template:
- "[#%{build_number}] %{message} %{build_url}"
- "[#%{build_number}] %{commit} on %{branch} by %{author}"
- "[#%{build_number}] %{compare_url}"
on_success: always
on_failure: always
use_notice: false
| Revert "Run Fog tests for Ruby 2.2.0" | Revert "Run Fog tests for Ruby 2.2.0"
5fdabb482c650746e9cbee85bc382c116f7be186 | YAML | mit | dtdream/fog,Ladas/fog,plribeiro3000/fog,bryanl/fog,adamleff/fog,martinb3/fog,cocktail-io/fog,ack/fog,asebastian-r7/fog,theforeman/fog,dLobatog/fog,sideci-sample/sideci-sample-fog,b0ric/fog,plribeiro3000/fog,mavenlink/fog,icco/fog,fog/fog,yyuu/fog,adecarolis/fog,joshmyers/fog,surminus/fog,sapcc/fog,martinb3/fog,alphagov/fog,duhast/fog,SpryBTS/fog,dhague/fog,runtimerevolution/fog,SpryBTS/fog,nicolasbrechet/fog,lwander/fog,eLobato/fog,pravi/fog,joshmyers/fog,eLobato/fog,dtdream/fog,TerryHowe/fog,mitchlloyd/fog,mohitsethi/fog,dustacio/fog,github/fog,asebastian-r7/fog,unorthodoxgeek/fog,dhague/fog,joshisa/fog,pravi/fog,mitchlloyd/fog,mavenlink/fog,dLobatog/fog,yyuu/fog,kongslund/fog,ManageIQ/fog,zephyrean/fog,theforeman/fog,alphagov/fog,Programatica/fog,joshisa/fog,dustacio/fog,nicolasbrechet/fog,b0ric/fog,covario-cdiaz/fog,TerryHowe/fog,fog/fog,bryanl/fog,covario-cdiaz/fog,zephyrean/fog,seanhandley/fog,10io/fog,seanhandley/fog,Ladas/fog,glennpratt/fog,ManageIQ/fog,adamleff/fog,runtimerevolution/fog,nalabjp/fog,unorthodoxgeek/fog,glennpratt/fog,adecarolis/fog,Programatica/fog,sapcc/fog,ack/fog,papedaniel/fog,10io/fog,surminus/fog,sideci-sample/sideci-sample-fog,cocktail-io/fog,mohitsethi/fog,kongslund/fog,lwander/fog,pyama86/fog,icco/fog,github/fog,rackspace/fog,rackspace/fog,papedaniel/fog,pyama86/fog,nalabjp/fog,duhast/fog,zephyrean/fog |
7c51aea5db97ac907b543beb646c0c5f78f16b93 | .travis.yml | .travis.yml | language: objective-c
xcode_project: ProgressView.xcworkspace
xcode_scheme: ProgressViewTests
before_install:
- cd Example\ Project | language: objective-c
xcode_project: ProgressView.xcworkspace
xcode_scheme: ProgressViewTests
before_install:
- cd Example\ Project | Fix syntax error in Travis config | Fix syntax error in Travis config
| YAML | mit | pwillsey/PWProgressView,Igor-Palaguta/PWProgressView |
85ccd27bfbee4dfaf7e316808984fa1ceec0ed0b | gemspec.yml | gemspec.yml | name: chars
summary: A Ruby library for working with various character sets
description:
Chars is a Ruby library for working with various character sets,
recognizing text and generating random text from specific character sets.
license: MIT
homepage: http://github.com/postmodern/chars
authors: Postmodern
email: postmodern.mod3@gmail.com
has_yard: true
development_dependencies:
ore-tasks: ~> 0.2.0
rspec: ~> 2.0.0
| name: chars
summary: A Ruby library for working with various character sets
description:
Chars is a Ruby library for working with various character sets,
recognizing text and generating random text from specific character sets.
license: MIT
homepage: http://github.com/postmodern/chars
authors: Postmodern
email: postmodern.mod3@gmail.com
has_yard: true
development_dependencies:
ore-tasks: ~> 0.2.0
rspec: ~> 2.0.0
yard: ~> 0.6.1
| Add yard ~> 0.6.1 as a development dependency. | Add yard ~> 0.6.1 as a development dependency.
| YAML | mit | postmodern/chars |
220cd132589602853ee26d4055e4cf686034b5f0 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
sudo: false
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_success:
- npm install -g codeclimate-test-reporter
- ls coverage
- cat coverage/Firefox*/lcov.info >>coverage/lcov.info
- codeclimate < coverage/lcov.info
addons:
code_climate:
repo_token: f159eec3f70f0484d592e32cd87160b251249591a1f8007bea22ac4b819ffe45
notifications:
email:
on_success: change
on_failure: always
| language: node_js
node_js:
- '0.10'
sudo: false
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_success:
- npm install -g codeclimate-test-reporter
- cat coverage/Chromium*/lcov.info >>coverage/lcov.info
- codeclimate < coverage/lcov.info
addons:
code_climate:
repo_token: f159eec3f70f0484d592e32cd87160b251249591a1f8007bea22ac4b819ffe45
notifications:
email:
on_success: change
on_failure: always
| Use Chromium coverage over FF | Use Chromium coverage over FF
| YAML | mit | jedmao/iso-http,jedmao/iso-http,ask-izzy/iso-http,ask-izzy/iso-http |
1a3dc2fec2f81ee61c9285f34aa72f3ddef8ac00 | .travis.yml | .travis.yml | sudo-false
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
-ubuntu-toolchain-r-test
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq
install:
- apt-get update
- apt-get install g++-4.8
- update-alternatives --install /usr/bin/g++ g++ /user/bin/g++-4.8 90
- update-alternatives --install /usr/bin/gcc gcc /user/bin/gcc-4.8 90
before_script:
- mkdir build
- cd build
- cmake ..
script:
- make
- ./runTests
| sudo: false
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
-ubuntu-toolchain-r-test
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq
install:
- apt-get update
- apt-get install g++-4.8
- update-alternatives --install /usr/bin/g++ g++ /user/bin/g++-4.8 90
- update-alternatives --install /usr/bin/gcc gcc /user/bin/gcc-4.8 90
before_script:
- mkdir build
- cd build
- cmake ..
script:
- make
- ./runTests
| Edit .travs.yml in another attempt to instal gcc-4.8 again | Edit .travs.yml in another attempt to instal gcc-4.8 again
| YAML | mit | destessm/intro-to-game-dev,destessm/intro-to-game-dev,destessm/intro-to-game-dev,destessm/intro-to-game-dev |
8923e1e444f1d4432120fa7a1295d926bea37019 | .travis.yml | .travis.yml | language: php
php:
- "5.4"
- "5.5"
before_script:
- sudo /home/travis/.phpenv/versions/5.5.0beta1/bin/composer.phar self-update
- chmod 777 ./tests/bin/setup.sh
- ./tests/bin/setup.sh
- composer install --prefer-source --no-interaction
script: phpunit --configuration ./tests/phpunit.xml | language: php
php:
- "5.4"
- "5.5"
before_script:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- chmod 777 ./tests/bin/setup.sh
- ./tests/bin/setup.sh
- composer install --prefer-source --no-interaction
script: phpunit --configuration ./tests/phpunit.xml | Revert "Force composer to self-update before tests." | Revert "Force composer to self-update before tests."
This reverts commit d56ff29d9690c4ba4cc5f3ba1d5782266ee7ecc8.
| YAML | apache-2.0 | F21/Paradox,F21/Paradox |
73ee3eb9ae18add9c5c8a7872b736dddb129d8ce | playbooks/inventory/group_vars/all_containers.yml | playbooks/inventory/group_vars/all_containers.yml | ---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This is the default LXC AppArmor profile
# Groups which need the unbound profile have a specific override
lxc_container_config_list:
- "lxc.aa_profile=lxc-openstack"
| ---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This is the default LXC AppArmor profile
# Groups which need the unbound profile have a specific override
lxc_container_config_list:
- "lxc.aa_profile=lxc-openstack"
# Needed by playbooks/common-tasks/os-lxc-container-setup.yml
lxc_container_log_path: "/var/log/lxc"
| Address missing variable in common tasks | Address missing variable in common tasks
Change-Id: Ifabb20e411bdcd2b56639212aa8e7ff777f05c85
| YAML | apache-2.0 | yanyao/openstack-ansible,yanyao/newton,weezer/openstack-ansible,cfarquhar/openstack-ansible,BjoernT/os-ansible-deployment,BjoernT/openstack-ansible,weezer/openstack-ansible,Logan2211/openstack-ansible,openstack/openstack-ansible,BjoernT/openstack-ansible,cloudnull/os-ansible-deployment,BjoernT/os-ansible-deployment,openstack/openstack-ansible,stackforge/os-ansible-deployment,bunchc/openstack-ansible,os-cloud/os-ansible-deployment,robb-romans/openstack-ansible,bunchc/openstack-ansible,cfarquhar/openstack-ansible,yanyao/newton,BjoernT/os-ansible-deployment,Logan2211/openstack-ansible,os-cloud/os-ansible-deployment,robb-romans/openstack-ansible,cloudnull/os-ansible-deployment,stackforge/os-ansible-deployment,yanyao/openstack-ansible |
e9335dcad716d63737a5611bee892027cc57d00b | .travis.yml | .travis.yml | language: go
go:
- 1.11
- 1.11.1
- tip
install:
- go get github.com/stretchr/testify
| language: go
go:
- 1.13.3
- tip
install:
- go get github.com/stretchr/testify
| Test against Go 13.3 and tip | Test against Go 13.3 and tip
| YAML | mpl-2.0 | andrewslotin/doppelganger |
93e07eba16d722636f8af0b8a3fc1356974d9e38 | .travis.yml | .travis.yml | language: go
go:
- 1.12.x
install:
- export PATH=${PATH}:${HOME}/gopath/bin
- export PATH=${PATH}:${HOME}/bin
- cd ../../.. && mkdir goa.design && cp -r github.com/goadesign/plugins goa.design/plugins && cd goa.design/plugins
before_script:
- make depend
script:
- make
| language: go
go:
- 1.16.x
install:
- export PATH=${PATH}:${HOME}/gopath/bin
- export PATH=${PATH}:${HOME}/bin
- cd ../../.. && mkdir goa.design && cp -r github.com/goadesign/plugins goa.design/plugins && cd goa.design/plugins
before_script:
- make depend
script:
- make
| Use Go 1.16 to run CI | Use Go 1.16 to run CI
| YAML | mit | goadesign/plugins |
24aa0cc7000adc38be3d80c87e2f5391b3f0272a | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
dist: trusty
rvm:
- 2.4.1
services: mongodb
language: objective-c
addons:
chrome: beta
before_install:
- # start your web application and listen on `localhost`
- "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --headless --disable-gpu --remote-debugging-port=9222 http://localhost &"
env:
global:
- METRICS_API_USERNAME="username"
- METRICS_API_PASSWORD="password"
- METRICS_API_TITLE='ODI Metrics'
- METRICS_API_DESCRIPTION='This API contains a list of all metrics collected by the Open Data Institute since 2013'
- METRICS_API_LICENSE_NAME='Creative Commons Attribution-ShareAlike'
- METRICS_API_LICENSE_URL='https://creativecommons.org/licenses/by-sa/4.0/'
- METRICS_API_PUBLISHER_NAME='Open Data Institute'
- METRICS_API_PUBLISHER_URL='http://theodi.org'
- METRICS_API_CERTIFICATE_URL='https://certificates.theodi.org/en/datasets/213482/certificate' | language: ruby
cache: bundler
sudo: false
dist: trusty
rvm:
- 2.4.0
services: mongodb
language: objective-c
addons:
chrome: beta
before_install:
- # start your web application and listen on `localhost`
- "/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --headless --disable-gpu --remote-debugging-port=9222 http://localhost &"
env:
global:
- METRICS_API_USERNAME="username"
- METRICS_API_PASSWORD="password"
- METRICS_API_TITLE='ODI Metrics'
- METRICS_API_DESCRIPTION='This API contains a list of all metrics collected by the Open Data Institute since 2013'
- METRICS_API_LICENSE_NAME='Creative Commons Attribution-ShareAlike'
- METRICS_API_LICENSE_URL='https://creativecommons.org/licenses/by-sa/4.0/'
- METRICS_API_PUBLISHER_NAME='Open Data Institute'
- METRICS_API_PUBLISHER_URL='http://theodi.org'
- METRICS_API_CERTIFICATE_URL='https://certificates.theodi.org/en/datasets/213482/certificate' | PATCH - suggested workaround for openSSL snafu | PATCH - suggested workaround for openSSL snafu
| YAML | mit | theodi/metrics-api,theodi/bothan,theodi/metrics-api,theodi/bothan,theodi/bothan,theodi/metrics-api,theodi/bothan |
d354559365412a96b1ec55e17f4356268f54d724 | .travis.yml | .travis.yml | language: rust
rust:
- 1.8.0
- 1.15.0
- beta
- nightly
sudo: false
script:
- cargo build --verbose
- ./ci/test_full.sh
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION = nightly ] &&
ssh-agent ./ci/deploy.sh
notifications:
email:
on_success: never
branches:
only:
- master
- next
- staging
- trying
| language: rust
rust:
- 1.15.0
- beta
- nightly
matrix:
include:
- rust: 1.8.0
before_script:
# libc 0.2.34 started using #[deprecated]
- cargo generate-lockfile
- cargo update --package libc --precise 0.2.33
sudo: false
script:
- cargo build --verbose
- ./ci/test_full.sh
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION = nightly ] &&
ssh-agent ./ci/deploy.sh
notifications:
email:
on_success: never
branches:
only:
- master
- next
- staging
- trying
| Downgrade libc for Rust 1.8 CI | Downgrade libc for Rust 1.8 CI
| YAML | apache-2.0 | rust-num/num,rust-num/num-traits,rust-num/num-integer,rust-lang/num,rust-num/num,rust-num/num-bigint,rust-lang/num,rust-num/num-integer,rust-num/num-traits,rust-num/num-bigint |
4243f2873ca4e5c1ab59d530c9d0b5e4806ba6d1 | .travis.yml | .travis.yml | sudo: false
language: node_js
compiler: clang-3.6
env:
- CXX=clang-3.6
addons:
apt:
sources:
- llvm-toolchain-precise-3.6
- ubuntu-toolchain-r-test
packages:
- clang-3.6
- g++-4.8
matrix:
include:
- node_js: "0.10"
- node_js: "0.12"
- node_js: "4.0"
- node_js: "4.1"
- node_js: "4.2"
- node_js: "4.3"
- node_js: "4.4"
- node_js: "5"
- node_js: "4.4"
script: npm run coveralls
- node_js: "4.4"
script: npm run doc
| sudo: false
language: node_js
compiler: clang-3.6
env:
- CXX=clang-3.6
addons:
apt:
sources:
- llvm-toolchain-precise-3.6
- ubuntu-toolchain-r-test
packages:
- clang-3.6
- g++-4.8
matrix:
include:
- node_js: "0.10"
- node_js: "0.12"
- node_js: "4.0"
- node_js: "4.1"
- node_js: "4.2"
- node_js: "4.3"
- node_js: "4.4"
- node_js: "5"
- node_js: "6.0"
- node_js: "6.1"
- node_js: "6.2"
- node_js: "4.4"
script: npm run coveralls
- node_js: "4.4"
script: npm run doc
| Add node 6 to CI. | Add node 6 to CI.
| YAML | mit | heap/heap-node |
63560334aa7f303b4c1335246ee2d13dab21bbce | .travis.yml | .travis.yml | language: go
go:
- 1.0
- 1.1
- 1.2
script: go test -v ./...
install:
- go get code.google.com/p/go.net/websocket
- go get github.com/bmizerany/assert
- go get github.com/bmizerany/pat
- go get github.com/kr/pretty
- go get github.com/drewolson/testflight
| language: go
go:
- 1.1
- 1.2
script: go test -v ./...
install:
- go get code.google.com/p/go.net/websocket
- go get github.com/bmizerany/assert
- go get github.com/bmizerany/pat
- go get github.com/kr/pretty
- go get github.com/drewolson/testflight
| Remove support for go 1.0. | Remove support for go 1.0.
| YAML | mit | drewolson/testflight,straytaoist/testflight,Thermeon/testflight |
c2f39bb97d05ec5381898a9c8f11f3675ebd74bf | .travis.yml | .travis.yml | language: c
script: bash -e ./tools/travis_ci_test.sh
os:
- linux
- osx
env:
- OCAML_VERSION=4.03.0
- OCAML_VERSION=4.04.0
| language: c
script: bash -e ./tools/travis_ci_test.sh
os:
- linux
- osx
env:
- OCAML_VERSION=4.03.0
- OCAML_VERSION=4.04.2
- OCAML_VERSION=4.05.0
| Use `4.04.2` and `4.05.0` in Travis build-matrix | Use `4.04.2` and `4.05.0` in Travis build-matrix
| YAML | apache-2.0 | hammerlab/ketrew |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.