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 |
|---|---|---|---|---|---|---|---|---|---|
398e19d9162d2e75fde43e9d52e12aada9d11e08 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
before_install:
- sudo apt-get install python-dev libgmp3-dev
install:
- pip install pep8
before_script:
- pep8 --max-line-length=200 --ignore=E402 */*.py
- pip install -e .
script:
- python -m fastecdsa.test
| language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
before_install:
- sudo apt-get install python-dev libgmp3-dev
install:
- pip install pep8
before_script:
- pep8 --max-line-length=200 --ignore=E402 */*.py
- pip install -e .
script:
- python -m fastecdsa.test
| Add newer python versions to CI script. | Add newer python versions to CI script. | YAML | unlicense | AntonKueltz/fastecdsa,AntonKueltz/fastecdsa,AntonKueltz/fastecdsa |
1199d7ede8cc6052705f2667f90d7c89cf74f015 | .travis.yml | .travis.yml | language: php
dist: trusty
env:
global:
- COMPOSER_ROOT_VERSION=4.0.x-dev
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL PHPUNIT_COVERAGE_TEST=1
before_script:
# Init PHP
- phpenv rehash
- phpenv config-rm xdebug.ini
# Install composer dependencies
- composer validate
- composer require --no-update silverstripe/recipe-cms:1.0.x-dev
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit tests/php; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml tests/php; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
| language: php
dist: trusty
env:
global:
- COMPOSER_ROOT_VERSION=4.1.x-dev
matrix:
include:
- php: 5.6
env: DB=MYSQL RECIPE_VERSION=1.0.x-dev PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=MYSQL RECIPE_VERSION=1.1.x-dev PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL RECIPE_VERSION=1.2.x-dev PHPUNIT_COVERAGE_TEST=1
- php: 7.2
env: DB=MYSQL RECIPE_VERSION=1.x-dev PHPUNIT_TEST=1
before_script:
# Init PHP
- phpenv rehash
- phpenv config-rm xdebug.ini
# Install composer dependencies
- composer validate
- composer require --no-update silverstripe/recipe-cms:"$RECIPE_VERSION"
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit tests/php; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml tests/php; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
| Add various recipe versions to Travis build matrix | Add various recipe versions to Travis build matrix
| YAML | bsd-3-clause | tractorcow/silverstripe-fluent,tractorcow/silverstripe-fluent,Internetrix/silverstripe-fluent,Internetrix/silverstripe-fluent,Internetrix/silverstripe-fluent |
3a7218e1bee4631aa8e38bb6a0e5bbff29f478ce | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4
- 2.6
gemfile:
- gemfiles/Gemfile.rails50
- gemfiles/Gemfile.latest-release
- gemfiles/Gemfile.rails-edge
env:
- DB=mysql2
- DB=postgresql
jobs:
exclude:
- rvm: 2.4
gemfile: gemfiles/Gemfile.rails-edge
services:
- memcache
- mysql
- postgresql
sudo: false
before_script:
- mysql -e 'create database identity_cache_test'
- psql -c 'create database identity_cache_test;' -U postgres
cache: bundler
matrix:
exclude:
- rvm: 2.2.6
gemfile: gemfiles/Gemfile.rails-edge
notifications:
email: false
| language: ruby
rvm:
- 2.4
- 2.6
gemfile:
- gemfiles/Gemfile.rails50
- gemfiles/Gemfile.latest-release
- gemfiles/Gemfile.rails-edge
env:
- DB=mysql2
- DB=postgresql
jobs:
exclude:
- rvm: 2.4
gemfile: gemfiles/Gemfile.rails-edge
- rvm: 2.4
gemfile: gemfiles/Gemfile.latest-release
services:
- memcache
- mysql
- postgresql
sudo: false
before_script:
- mysql -e 'create database identity_cache_test'
- psql -c 'create database identity_cache_test;' -U postgres
cache: bundler
matrix:
exclude:
- rvm: 2.2.6
gemfile: gemfiles/Gemfile.rails-edge
notifications:
email: false
| Exclude latest release on 2.4 | Exclude latest release on 2.4
| YAML | mit | Shopify/identity_cache,Shopify/identity_cache |
b7a3420c329709a4808fde1d26f57974131ad6c0 | .travis.yml | .travis.yml | language: haskell
script:
- cabal configure --enable-tests && cabal build && cabal test testexe
| env:
- CABALVER=1.18 GHCVER=7.6.3
- CABALVER=1.18 GHCVER=7.8.3
- CABALVER=1.22 GHCVER=7.10.1
before_install:
- travis_retry sudo add-apt-repository -y ppa:hvr/ghc
- travis_retry sudo apt-get update
- travis_retry sudo apt-get -qq -y install cabal-install-$CABALVER ghc-$GHCVER cpphs
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:$PATH
install:
- cabal --version
- echo "$(ghc --version) [$(ghc --print-project-git-commit-id 2> /dev/null || echo '?')]"
- travis_retry cabal update
- |
if [ $GHCVER = "head" ] || [ ${GHCVER%.*} = "7.8" ] || [ ${GHCVER%.*} = "7.10" ]; then
travis_retry sudo apt-get install happy-1.19.4 alex-3.1.3
export PATH=/opt/alex/3.1.3/bin:/opt/happy/1.19.4/bin:$PATH
else
travis_retry sudo apt-get install happy alex
fi
- cabal install --dependencies-only --enable-tests
script:
- cabal configure --enable-tests
- cabal build
- cabal test testexe
- cabal check
- cabal sdist
# The following scriptlet checks that the resulting source distribution can be built & installed
- export SRC_TGZ=$(cabal info . | awk '{print $2 ".tar.gz";exit}') ;
cd dist/;
if [ -f "$SRC_TGZ" ]; then
cabal install --force-reinstalls "$SRC_TGZ";
else
echo "expected '$SRC_TGZ' not found";
exit 1;
fi
| Test multiple GHCs on Travis-CI | Test multiple GHCs on Travis-CI
| YAML | bsd-3-clause | akru/roshask,aa755/roshask,estump/roshask,acowley/roshask,akru/roshask,acowley/roshask,rgleichman/roshask,aa755/roshask,bitemyapp/roshask,rgleichman/roshask,bitemyapp/roshask,estump/roshask |
29b74e3cc2dc6a3181c57670f81174f9cd2f30ac | .travis.yml | .travis.yml | ---
language: python
python: "2.7"
before_install:
# Make sure everything's up to date.
- sudo apt-get update -qq
install:
# Install Ansible.
- pip install ansible
# Add ansible.cfg to pick up roles path. and inventory file
- echo -e '[defaults]\nroles_path = ../' > ansible.cfg
- echo 'localhost ansible_connection=local' > tests/local.ini
script:
# 1st: check syntax
- echo "***************************** SYNTAX CHECK (1) *****************************"
- ansible-playbook -i tests/local.ini tests/test1.yml --syntax-check
# 2nd: Make sure we run the entire playbook
- echo "***************************** RUN PLAY (2) *****************************"
- ansible-playbook -i tests/local.ini tests/test1.yml --sudo -vvvv
# 3rd: Make sure our playbook is idempotent
- echo "***************************** Idempotence test (3) *****************************"
- >
ansible-playbook -i tests/local.ini tests/test1.yml --sudo -vvvv | tee ansible_output
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && cat ansible_output && exit 0)
|| (echo 'Idempotence test: fail' && exit 1)
# 4th: Application test (TODO)
#- ./tests/test_logs.sh
| ---
language: python
python: "2.7"
before_install:
# Make sure everything's up to date.
- sudo apt-get update -qq
install:
# Install Ansible.
- pip install ansible
# Add ansible.cfg to pick up roles path. and inventory file
- echo -e '[defaults]\nroles_path = ../' > ansible.cfg
- echo 'localhost ansible_connection=local' > tests/local.ini
script:
# 1st: check syntax
- echo "***************************** SYNTAX CHECK (1) *****************************"
- ansible-playbook -i tests/local.ini tests/test1.yml --syntax-check
# 2nd: Make sure we run the entire playbook
- echo "***************************** RUN PLAY (2) *****************************"
- ansible-playbook -i tests/local.ini tests/test1.yml --sudo -vvvv
# 3rd: Make sure our playbook is idempotent
- echo "***************************** Idempotence test (3) *****************************"
- >
ansible-playbook -i tests/local.ini tests/test1.yml --sudo -vvvv | tee ansible_output
| grep -q 'changed=0.*failed=0'
&& (echo 'Idempotence test: pass' && exit 0)
|| (echo 'Idempotence test: fail' && cat ansible_output && exit 1)
# 4th: Application test (TODO)
#- ./tests/test_logs.sh
| Fix preview in the right condition :D | Fix preview in the right condition :D | YAML | mit | yetu/ansible-smartstack,yetu/ansible-smartstack,AutomationWithAnsible/ansible-smartstack,AutomationWithAnsible/ansible-smartstack,AutomationWithAnsible/ansible-smartstack,yetu/ansible-smartstack |
09c5678848009a034378b9dd56c524d094d73c63 | .travis.yml | .travis.yml | dist: trusty
language: android
jdk:
- oraclejdk8
android:
components:
# All the build system components should be at the latest version
- tools
- platform-tools
- tools
# Note that the tools section appears twice on purpose as it’s required
# to get the newest Android SDK tools. Source: Travis CI docs.
- build-tools-30.0.3
# The libraries we can't get from Maven Central or similar
- extra
branches:
except:
- /^v\..*$/ # Exclude version tags
notifications:
email: true
before_install:
- yes | sdkmanager "platforms;android-30"
before_script:
# Ensure Gradle wrapper is executable
- chmod +x gradlew
# Ensure signing configuration is present
- mv app/gradle.properties.example app/gradle.properties
# Reduce memory usage / avoid OutOfMemoryError with Gradle 4.10.3
- echo "org.gradle.jvmargs=-Xmx2048m -Xms512m -XX:MaxPermSize=768m" >> gradle.properties
script:
- ./gradlew clean test assembleDebug
addons:
# Fix OpenJDK builds
# https://github.com/travis-ci/travis-ci/issues/5227
hostname: short-hostname
| dist: trusty
language: android
jdk: openjdk8
android:
components:
# All the build system components should be at the latest version
- tools
- platform-tools
- tools
# Note that the tools section appears twice on purpose as it’s required
# to get the newest Android SDK tools. Source: Travis CI docs.
- build-tools-30.0.3
# The libraries we can't get from Maven Central or similar
- extra
branches:
except:
- /^v\..*$/ # Exclude version tags
notifications:
email: true
before_install:
- yes | sdkmanager "platforms;android-30"
before_script:
# Ensure Gradle wrapper is executable
- chmod +x gradlew
# Ensure signing configuration is present
- mv app/gradle.properties.example app/gradle.properties
# Reduce memory usage / avoid OutOfMemoryError with Gradle 4.10.3
- echo "org.gradle.jvmargs=-Xmx2048m -Xms512m -XX:MaxPermSize=768m" >> gradle.properties
script:
- ./gradlew clean test assembleDebug
addons:
# Fix OpenJDK builds
# https://github.com/travis-ci/travis-ci/issues/5227
hostname: short-hostname
| Use OpenJDK on Travis CI. | Use OpenJDK on Travis CI.
+ Context: https://docs.travis-ci.com/user/languages/java#using-java-10-and-later.
| YAML | apache-2.0 | EventFahrplan/EventFahrplan,EventFahrplan/EventFahrplan |
565b16e59211ee6ef8aa988d5d28e90fcbfc1367 | .travis.yml | .travis.yml | ---
language: python
python: "2.7"
env:
- ANSIBLE_VERSION=latest
- ANSIBLE_VERSION=2.0.0.0
sudo: required
services:
- docker
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-apt ruby
install:
- if [ "$ANSIBLE_VERSION" = "latest" ]; then pip install ansible; else pip install ansible==$ANSIBLE_VERSION; fi
- sudo gem install busser --no-ri --no-rdoc
- sudo busser plugin install busser-bats
script:
- echo localhost > inventory
# Show gathered facts
- ansible -i inventory --connection=local -m setup localhost
# Run syntax check
- ansible-playbook -i inventory --syntax-check test/integration/default/default.yml
# Run playbook locally
- ansible-playbook -i inventory --connection=local --sudo -vvvv test/integration/default/default.yml
# Run the Test Kitchen tests.
# - sudo /opt/busser/vendor/bats/bin/bats ./test/integration/default/bats/*.bats
| ---
language: python
python: "2.7"
env:
- ANSIBLE_VERSION=latest
- ANSIBLE_VERSION=2.0.0.0
sudo: required
services:
- docker
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq python-apt ruby
install:
- if [ "$ANSIBLE_VERSION" = "latest" ]; then pip install ansible; else pip install ansible==$ANSIBLE_VERSION; fi
- sudo gem install busser --no-ri --no-rdoc
- sudo busser plugin install busser-bats
script:
- ansible-galaxy install -r requirements.yml
- echo localhost > inventory
# Show gathered facts
- ansible -i inventory --connection=local -m setup localhost
# Run syntax check
- ansible-playbook -i inventory --syntax-check test/integration/default/default.yml
# Run playbook locally
- ansible-playbook -i inventory --connection=local --sudo -vvvv test/integration/default/default.yml
# Run the Test Kitchen tests.
# - sudo /opt/busser/vendor/bats/bin/bats ./test/integration/default/bats/*.bats
| Add an command to install requirements | Add an command to install requirements
| YAML | mit | dbaba/ansible-role-concourse-ci |
9a09fd1733e2c96303d9ae3f33e19b7f48199a27 | .travis.yml | .travis.yml | language: java
branches:
only:
- master
jdk:
- oraclejdk8
# TODO KDK: Update to run Cucumber Ruby tests, too
script: mvn verify -B
| language: java
branches:
only:
- master
jdk:
- oraclejdk8
# TODO KDK: Update to run Cucumber Ruby tests, too
# - Build matrix runs in parellel, so not likely an option:
# https://stackoverflow.com/questions/27644586/how-to-set-up-travis-ci-with-multiple-languages
# - Maybe start with the Ruby image and add the JDK in a pre-build stage:
# https://docs.travis-ci.com/user/build-stages/
# - Either install the JDK (or ruby) explicitly, or use a Docker image
#
# Next action: See if there's a good Ruby image to use for the Cucumber tests, locally, and it might work out for the CI
# build too
script: mvn verify -B
| Define next action for doing the full build | Define next action for doing the full build
| YAML | mit | kkrull/javaspec,kkrull/javaspec,kkrull/javaspec |
e6cdb007f363bc20ca4c5e9aecda3c1c6ef9c15d | .travis.yml | .travis.yml | ---
language: python
sudo: false
dist: xenial
python:
- "3.6"
- "3.7"
- "3.8"
install:
- pip install -r requirements.txt
- pip install pytest
script:
- pytest -v
notifications:
email: false
| ---
language: python
sudo: false
dist: xenial
python:
- "3.7"
- "3.8"
install:
- pip install -r requirements.txt
- pip install pytest
script:
- pytest -v
notifications:
email: false
| Remove python 3.6 (rpelib 2 uses dataclasses) | Remove python 3.6 (rpelib 2 uses dataclasses)
| YAML | apache-2.0 | forseti-security/real-time-enforcer |
78b26b3b01c93f2c123e82c0aa76285f18a025d3 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk6
- oraclejdk7
- oraclejdk8
script: mvn install
after_success:
- mvn clean test jacoco:report coveralls:report
| language: java
jdk:
- oraclejdk7
- oraclejdk8
script: mvn install
after_success:
- mvn clean test jacoco:report coveralls:report | Revert "Test build with JDK6" - Travis error: Sun/Oracle JDK 6 is EOL since November 2012, and is no longer supported. Please consider upgrading... | Revert "Test build with JDK6" - Travis error: Sun/Oracle JDK 6 is EOL since November 2012, and is no longer supported. Please consider upgrading...
This reverts commit ec80f9b997be851dfa70a6d6c6c0b129a6f6268f.
| YAML | apache-2.0 | hazendaz/catch-exception,Codearte/catch-exception |
a0bc125d79059e75dc32daddcf81f66af467d966 | .travis.yml | .travis.yml | ---
language: bash
before_install:
- sudo add-apt-repository -y ppa:cassou/emacs # Emacs 24.3
- sudo apt-get update
- sudo apt-get install -y emacs24-nox
script:
- bin/fetch-configlet
- bin/configlet .
- bin/test-examples
| ---
language: bash
before_install:
- sudo add-apt-repository -y ppa:cassou/emacs # Emacs 24.3
- sudo apt-get update
- sudo apt-get install -y emacs24-nox
script:
- bin/fetch-configlet
- bin/configlet lint .
- bin/test-examples
| Call configlet subcommand on CI | Call configlet subcommand on CI
This changes configlet to pass a subcommand.
For now, we've released a version of configlet which handles both the old command:
configlet path/to/track
as well as the new command:
configlet lint path/to/track
This will let us update all the travis files to include the subcommand before we
release the version of configlet that requires the subcommand.
| YAML | mit | exercism/xelisp |
5fd6f980838f603f91d958614f15b0f6a36ae1b6 | .travis.yml | .travis.yml | ---
os: linux
dist: xenial
language: ruby
cache: bundler
rvm:
- 2.7.1
- 2.6.6
- 2.5.8
- ruby-head
addons:
apt:
packages:
- libicu-dev
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
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| ---
os: linux
dist: focal
language: ruby
cache: bundler
rvm:
- 2.7.1
- 2.6.6
- 2.5.8
- ruby-head
addons:
apt:
packages:
- libicu-dev
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
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| Use Ubuntu Focal in CI | Use Ubuntu Focal in CI
| YAML | mit | jbox-web/gitolite-rugged |
368696c5a871d35c10d0d3d2d45cd5b70ec40c78 | .travis.yml | .travis.yml | #
# This file has been generated by the Ibuildings QA-Tools
#
# Any custom Travis-ci configuration be added here
# This file should be added to your project repository
#
language: php
php:
- 5.6
- 7.0
- 7.1
matrix:
allow_failures:
- php: 7.0
- php: 7.1
env:
global:
- SYMFONY_ENV=test
cache:
directories:
- ~/.composer
before_script:
- phpenv config-add travis.php.ini
- composer self-update
- composer install --prefer-dist
script:
- ant
branches:
only:
- master
- develop
| #
# This file has been generated by the Ibuildings QA-Tools
#
# Any custom Travis-ci configuration be added here
# This file should be added to your project repository
#
language: php
php:
- 5.6
- 7.1
- 7.2
- 7.3
matrix:
allow_failures:
- php: 7.1
- php: 7.2
- php: 7.3
env:
global:
- SYMFONY_ENV=test
cache:
directories:
- ~/.composer
before_script:
- phpenv config-add travis.php.ini
- composer self-update
- composer install --prefer-dist
script:
- ant
branches:
only:
- master
- develop
| Update PHP version to test againts in Travis | Update PHP version to test againts in Travis
| YAML | apache-2.0 | SURFnet/Stepup-saml-bundle,SURFnet/Stepup-saml-bundle |
31756566ea7bfb94165581e79068bf83c84e17ff | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "iojs"
- "7"
- "6" | language: node_js
node_js:
- "node"
- "7"
- "6" | Remove iojs as a testing environment | Remove iojs as a testing environment
| YAML | mit | krasimir/navigo |
8311f4aac19ae4a19a76a3c401cd0fca8dc2bf3a | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: node_js
node_js:
- 4
- 5
- 6
- 7
- 8
env:
- NODE_ENV=test WEBPACK_VERSION=1.x
- NODE_ENV=test WEBPACK_VERSION=2.x
- NODE_ENV=test WEBPACK_VERSION=3.x
before_install:
- npm install -g npm
install:
- npm install
script:
- scripts/test.sh
matrix:
allow_failures:
- node_js: 8 | dist: trusty
sudo: false
language: node_js
node_js:
- 4
- 5
- 6
- 7
- 8
env:
- NODE_ENV=test WEBPACK_VERSION=1.x
- NODE_ENV=test WEBPACK_VERSION=2.x
- NODE_ENV=test WEBPACK_VERSION=3.x
- NODE_ENV=test WEBPACK_VERSION=4.x
before_install:
- npm install -g npm
install:
- npm install
script:
- scripts/test.sh
matrix:
allow_failures:
- node_js: 8 | Add webpack 4 in Travis tests | Add webpack 4 in Travis tests
| YAML | mit | kavu/webp-loader,kavu/webp-loader |
9c38b656d70ebce2bdc057cec1a61219a218fc90 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
services:
- mongodb
before_script:
- phpenv config-add travis-php.ini
- wget --quiet http://getcomposer.org/composer.phar
- php composer.phar install
- mkdir logs
- touch logs/application.log
script: phpunit -d memory_limit=1024M -c module/SelfService/test/phpunit.xml | language: php
php:
- 5.3
- 5.4
services:
- mongodb
before_script:
- phpenv config-add travis-php.ini
- wget --quiet http://getcomposer.org/composer.phar
- php composer.phar install
- mkdir logs
- touch logs/application.log
- mkdir -p data/DoctrineMongoODMModule/Hydrator
- mkdir -p data/SmartyModule/templates_c
script: phpunit -d memory_limit=1024M --coverage-text -c module/SelfService/test/phpunit.xml | Make extra certain that dependent directories exist before testing | [TRAVIS] Make extra certain that dependent directories exist before testing
| YAML | mit | rgeyer/rs_selfservice,rgeyer/rs_selfservice,rgeyer/rs_selfservice,rgeyer/rs_selfservice,rgeyer/rs_selfservice |
0b81c348afcf918de913df635b22b167cb4e080f | .travis.yml | .travis.yml | ---
sudo: false
language: ruby
cache: bundler
bundler_args: --without development system_tests
before_install: rm Gemfile.lock || true
script: bundle exec rake test SPEC_OPTS='--format documentation'
matrix:
fast_finish: true
include:
- rvm: 2.1
env: PUPPET_VERSION="~> 3"
- rvm: 2.3
env: PUPPET_VERSION="~> 4"
- rvm: 2.4
env: PUPPET_VERSION="~> 5"
# Beaker tests
- env: BEAKER_set=debian-8-64
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
- env: BEAKER_set=ubuntu-1404-64
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
- env: BEAKER_set=ubuntu-1604-64
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
allow_failures:
- env: BEAKER_set=default # Debian 9
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
| ---
sudo: false
language: ruby
cache: bundler
bundler_args: --without development system_tests
before_install: rm Gemfile.lock || true
script: bundle exec rake test SPEC_OPTS='--format documentation'
matrix:
fast_finish: true
include:
- rvm: 2.1
env: PUPPET_VERSION="~> 3"
- rvm: 2.3
env: PUPPET_VERSION="~> 4"
- rvm: 2.4
env: PUPPET_VERSION="~> 5"
# Beaker tests
- env: BEAKER_set=debian-8-64
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
# - env: BEAKER_set=default # Debian 9
# bundler_args: --without development
# script: bundle exec rake beaker
# dist: trusty
# services: docker
# sudo: required
- env: BEAKER_set=ubuntu-1404-64
bundler_args: --without development
script: bundle exec rake beaker
dist: trusty
services: docker
sudo: required
# - env: BEAKER_set=ubuntu-1604-64
# bundler_args: --without development
# script: bundle exec rake beaker
# dist: trusty
# services: docker
# sudo: required
| Disable broken tests for the moment | Disable broken tests for the moment
| YAML | apache-2.0 | tohuwabohu/puppet-roundcube,tohuwabohu/puppet-roundcube |
9afd577148733665a29afa57ea1740aa56034c6e | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- openjdk7
- oraclejdk8
env:
- GWT_VERSION=2.7.0
- GWT_VERSION=2.8.0
- GWT_VERSION=2.8.1
- GWT_VERSION=HEAD-SNAPSHOT
matrix:
allow_failures:
- jdk: oraclejdk7
env: GWT_VERSION=HEAD-SNAPSHOT
- jdk: openjdk7
env: GWT_VERSION=HEAD-SNAPSHOT
install: true
script: mvn verify -Dinvoker.streamLogs=true -Dinvoker.mavenOpts="-Djava.net.preferIPv4Stack=true" -DgwtVersion=$GWT_VERSION
after_success:
- ci/deploy-snapshot.sh
notifications:
email: false
sudo: false
cache:
directories:
- $HOME/.m2
- target/it-repo
| language: java
jdk:
- oraclejdk7
- openjdk7
- oraclejdk8
env:
- GWT_VERSION=2.7.0
- GWT_VERSION=2.8.0
- GWT_VERSION=2.8.1
- GWT_VERSION=HEAD-SNAPSHOT
matrix:
allow_failures:
- jdk: oraclejdk7
env: GWT_VERSION=HEAD-SNAPSHOT
- jdk: openjdk7
env: GWT_VERSION=HEAD-SNAPSHOT
install: true
script: mvn -U verify -Dinvoker.streamLogs=true -Dinvoker.mavenOpts="-Djava.net.preferIPv4Stack=true" -DgwtVersion=$GWT_VERSION
after_success:
- ci/deploy-snapshot.sh
notifications:
email: false
sudo: false
before_cache:
- shopt -s globstar && rm -fr $HOME/.m2/**/*-SNAPSHOT/
- shopt -s globstar && rm -fr target/it-repo/**/*-SNAPSHOT/
cache:
directories:
- $HOME/.m2
- target/it-repo
| Purge snapshots from Travis cache, force re-download | Purge snapshots from Travis cache, force re-download
| YAML | apache-2.0 | tbroyer/gwt-maven-plugin,tbroyer/gwt-maven-plugin |
5337372dbc2e65137893c0ff030c2a6cd06e5edf | .travis.yml | .travis.yml | language: ruby
dist: xenial
before_install:
- if [[ $TRAVIS_RUBY_VERSION =~ ^(1|2\.[012]|jruby-1)\. ]]; then gem install rubygems-update --version '~> 2.7' --no-document && update_rubygems; else gem update --system; fi
- gem --version
- if [[ $TRAVIS_RUBY_VERSION =~ ^(1|2\.[012]|jruby-1)\. ]]; then gem install bundler --version '~> 1.17'; else gem install bundler; fi
- bundle --version
before_script:
- bundle update
cache: bundler
env:
global:
- TESTOPTS=--verbose
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.9
- 2.5.7
- 2.6.5
- 2.7.0-rc2
- ruby-head
- jruby-1.7.27
- jruby-9.1.17.0
- jruby-9.2.9.0
- jruby-head
- rbx-3.107
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
dist: trusty
before_install:
- if [[ $TRAVIS_RUBY_VERSION =~ ^(1|2\.[012]|jruby-1)\. ]]; then gem install rubygems-update --version '~> 2.7' --no-document && update_rubygems; else gem update --system; fi
- gem --version
- if [[ $TRAVIS_RUBY_VERSION =~ ^(1|2\.[012]|jruby-1)\. ]]; then gem install bundler --version '~> 1.17'; else gem install bundler; fi
- bundle --version
before_script:
- bundle update
cache: bundler
env:
global:
- TESTOPTS=--verbose
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.9
- 2.5.7
- 2.6.5
- 2.7.0-rc2
- ruby-head
- jruby-1.7.27
- jruby-9.1.17.0
- jruby-9.2.9.0
- jruby-head
- rbx-3.107
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Downgrade to trusty for compatibility with jruby-1.7.27 and rbx-3.107. | Downgrade to trusty for compatibility with jruby-1.7.27 and rbx-3.107.
| YAML | mit | philr/bzip2-ffi |
7b0f516a0b52fce68a3854924de4e2f68a34ecd0 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
install:
- "pip install -q -r requirements.txt --use-mirrors"
- "pip install -q -r test_crumbs/requirements.txt --use-mirrors"
script:
- python setup.py install
- nosetests
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
install:
- "pip install -q -r requirements.txt --use-mirrors"
- "pip install -q -r test_crumbs/requirements.txt --use-mirrors"
script:
- python setup.py build
- python setup.py install
- nosetests
| Add a tavis-ci check of the build process. | Add a tavis-ci check of the build process.
| YAML | mit | alunduil/crumbs |
28599a299d06d21fb66a31844c8db7d9f45e34be | .travis.yml | .travis.yml | language: perl
perl:
- "5.10"
env:
PATH=~/.rakudobrew/bin:$PATH
install:
- git clone https://github.com/tadzik/rakudobrew ~/.rakudobrew
- rakudobrew build moar
- rakudobrew build-panda
- panda install URI
- panda install Pod::To::HTML
- panda install LWP::Simple
- panda install Algorithm::Soundex
script:
- make test
| language: perl
perl:
- "5.10"
env:
PATH=~/.rakudobrew/bin:$PATH
install:
- git clone https://github.com/tadzik/rakudobrew ~/.rakudobrew
- rakudobrew build moar
- rakudobrew build-panda
- panda install URI
- panda install Pod::To::HTML
- panda install LWP::Simple
- panda install Algorithm::Soundex
- panda install DBIish
script:
- make test
| Add DBIish as dependency for Travis builds | Add DBIish as dependency for Travis builds
| YAML | artistic-2.0 | Quinny/perl6-examples,Quinny/perl6-examples,shlomif/perl6-examples,perl6/perl6-examples,shlomif/perl6-examples,Quinny/perl6-examples,Quinny/perl6-examples,shlomif/perl6-examples,stmuk/perl6-examples,perl6/perl6-examples,Quinny/perl6-examples,perl6/perl6-examples,stmuk/perl6-examples,shlomif/perl6-examples,perl6/perl6-examples,shlomif/perl6-examples,perl6/perl6-examples,stmuk/perl6-examples,stmuk/perl6-examples,stmuk/perl6-examples |
2dfd51c442f842171ff198a3293e7bf44087d0a2 | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
os: osx
script:
- yarn run publish
cache:
yarn: true
| language: node_js
node_js:
- "10"
os: osx
script:
- yarn run publish
cache:
yarn: true
| Update Node version for Travis | Update Node version for Travis
| YAML | agpl-3.0 | trezy/eidetica,trezy/eidetica |
92cd23a8d2e84201da4a811aa04bc36e619811be | .travis.yml | .travis.yml | language: node_js
node_js:
- '4.6'
cache:
directories:
- node_modules
script:
- npm i -g gulp
- npm i
- git checkout develop
- git config --global user.name "guuibayer"
- git config --global user.email "guiilherme.bayer@gmail.com"
- gulp babel
- gulp copyToBuild
after_success:
- git checkout master
- rsync -avvz -e "ssh -i $SSH_KEY" $LOCAL_DIRECTORY $PROD_HOST_USER@$PROD_HOST_IP:$PROD_DIRECTORY
- yes | language: node_js
node_js:
- '4.6'
cache:
directories:
- node_modules
script:
- npm i -g gulp
- npm i
- git checkout develop
- git config --global user.name "guuibayer"
- git config --global user.email "guiilherme.bayer@gmail.com"
- gulp babel
- gulp copyToBuild
after_success:
- git checkout master
- rsync -avvz -e "ssh -y -i -y $SSH_KEY" $LOCAL_DIRECTORY $PROD_HOST_USER@$PROD_HOST_IP:$PROD_DIRECTORY | Add -y flag in ssh | Add -y flag in ssh
| YAML | mit | guuibayer/notificat |
0959fe5ba61251454546a551dc96826ebb40891c | .travis.yml | .travis.yml | language: go
# 1.4 is not tip right now
go:
- 1.4.2
# Use faster container builds
sudo: false
script: go test -v ./... -race
| language: go
# Use faster container builds
sudo: false
script: go test -v ./... -race
| Switch go version back to tip. | Switch go version back to tip.
| YAML | mit | AutoRoute/node,AutoRoute/node |
5d27117219119440353ecfb512d3e130bd46174c | .travis.yml | .travis.yml | language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "2.7"
# Install dependencies
install:
- pip install tornado ptyprocess
# command to run tests
script:
- py.test
- pip install flit
- flit install --symlink
# Enable new Travis stack, should speed up builds
sudo: false
| language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "2.7"
# Install dependencies
install:
- pip install tornado ptyprocess flit
# command to run tests
script:
- py.test
- flit install --symlink
# Enable new Travis stack, should speed up builds
sudo: false
| Add the flit install check | Add the flit install check
| YAML | bsd-2-clause | takluyver/terminado,takluyver/terminado |
5e788060df52e420dc92a652d61b3d5cd94c637a | .travis.yml | .travis.yml | dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester bower@1.7.9 polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
| dist: trusty
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm rebuild && node -e 'console.log(process.version)' > node_modules/.last-node-version; fi"
before_script:
- npm install web-component-tester bower@1.7.9 polylint
- $(npm bin)/bower install
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
| Remove the obsolete 'sudo:' setting | Remove the obsolete 'sudo:' setting
| YAML | apache-2.0 | Collaborne/iron-time-behavior |
238acc02387ca0f748a38dc8a062e62cddb9c345 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository --yes ppa:kalakris/cmake
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install cmake qt5-default -y
script: cmake . -Denable_tests=ON -DCMAKE_BUILD_TYPE=Debug && make && make test
| language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository --yes ppa:ubuntu-sdk-team/ppa
- sudo apt-get update -qq
- sudo apt-get install qt5-default -y
- wget http://www.cmake.org/files/v3.0/cmake-3.0.2-Linux-i386.tar.gz
- tar xzf cmake-3.0.2-Linux-i386.tar.gz
script: ./cmake-3.0.2-Linux-i386/bin/cmake . -Denable_tests=ON -DCMAKE_BUILD_TYPE=Debug && make && make test
| Update Travis script with CMake 3.0.2. | Update Travis script with CMake 3.0.2.
It is required for Qt to be properly recognized as a system library (and
thus not to be included in the compiler warnings).
| YAML | mit | Neki/bomberman,Neki/bomberman |
ed3c9295dd74a50786bd1b1978ad45e99900b6a4 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk7
before_install:
- sudo deb http://ppa.launchpad.net/chris-lea/protobuf/ubuntu precise main
- sudo deb-src http://ppa.launchpad.net/chris-lea/protobuf/ubuntu precise main
- sudo apt-get update
- sudo apt-get install protobuf -y
- ./src/main/sh/generate_toolchains.sh
- mvn --toolchains toolchains.xml --file plugin/pom.xml install
install: mvn --toolchains toolchains.xml install -DskipTests=true
script: mvn --toolchains toolchains.xml test
| language: java
jdk:
- openjdk7
before_install:
- sudo add-apt-repository ppa:chris-lea/protobuf -y
- sudo apt-get update
- sudo apt-get install protobuf-compiler=2.5.0-1chl1~precise1 -y
- ./src/main/sh/generate_toolchains.sh
- mvn --toolchains toolchains.xml --file plugin/pom.xml install
install: mvn --toolchains toolchains.xml install -DskipTests=true
script: mvn --toolchains toolchains.xml test
| Make Travis CI work, take 7 | Make Travis CI work, take 7 | YAML | apache-2.0 | jsilland/piezo,jsilland/piezo |
3a4cd7d20754ee6ac9ee480a20e59d8368b6a065 | .travis.yml | .travis.yml | language: ruby
script: script/test
rvm:
- 2.3.8
- 2.4.7
- 2.5.6
- 2.6.4
gemfile:
- gemfiles/5.2.gemfile
- gemfiles/6.0.gemfile
matrix:
exclude:
- rvm: 2.3.8
gemfile: gemfiles/6.0.gemfile
- rvm: 2.4.7
gemfile: gemfiles/6.0.gemfile | language: ruby
script: script/test
rvm:
- 2.3.8
- 2.4.8
- 2.5.7
- 2.6.5
- 2.7.0
gemfile:
- gemfiles/5.2.gemfile
- gemfiles/6.0.gemfile
matrix:
exclude:
- rvm: 2.3.8
gemfile: gemfiles/6.0.gemfile
- rvm: 2.4.7
gemfile: gemfiles/6.0.gemfile
| Add Ruby 2.7 to Travis | Add Ruby 2.7 to Travis
| YAML | mit | Nedomas/zapata,Nedomas/zapata,Nedomas/zapata,Nedomas/zapata |
c5a75048f0820bbd8fc6fed5c657bdc0a3eebfe3 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- 4.2
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- export CXX='g++-4.8'
- npm install -g npm
| ---
sudo: required
dist: trusty
language: node_js
node_js:
- 4.2
before_install:
- npm install -g npm
| Update to Trusty on Travis CI | Update to Trusty on Travis CI
| YAML | mit | vinsonchuong/eslint-defaults |
a31fa29f891f471a071cc4cb0036cbeb178b63a8 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
addons:
apt:
sources:
- libicu-dev
script: bundle exec rake
gemfile:
- gemfiles/rails_5.gemfile
- gemfiles/rails_4.gemfile
- gemfiles/rails_3.gemfile
rvm:
- 2.3.1
- 2.2.5
- 2.1
- 2.0
- ruby-head
matrix:
fast_finish: true
allow_failures:
- gemfile: gemfiles/rails_5.gemfile
rvm: 2.1
- gemfile: gemfiles/rails_5.gemfile
rvm: 2.0
- rvm: ruby-head
| language: ruby
sudo: false
cache: bundler
addons:
apt:
sources:
- libicu-dev
script: bundle exec rake
gemfile:
- gemfiles/rails_5.gemfile
- gemfiles/rails_4.gemfile
- gemfiles/rails_3.gemfile
rvm:
- 2.3.1
- 2.2.5
- 2.1
- 2.0
- ruby-head
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
exclude:
- gemfile: gemfiles/rails_5.gemfile
rvm: 2.1
- gemfile: gemfiles/rails_5.gemfile
rvm: 2.0
| Exclude impossible builds to save CPU time | Exclude impossible builds to save CPU time
| YAML | mit | gjtorikian/html-pipeline,jch/html-pipeline,gjtorikian/html-pipeline,jch/html-pipeline |
e24eb9bbae9543d0f1bc47d6f7bbc8f330a95c71 | .travis.yml | .travis.yml | language: node_js
node_js:
- "7.10.0"
install: "npm install"
script: "npm run-script test-cover"
| language: node_js
node_js:
- "8.5.0"
install: "npm install"
script: "npm run-script test-cover"
| Upgrade node version to 8.5 | Upgrade node version to 8.5 | YAML | mit | beny78/qwebs,BenoitClaveau/qwebs,beny78/qwebs,BenoitClaveau/qwebs |
ee2060cb2ed904ba5803b2abbbdef8babdee9c83 | .travis.yml | .travis.yml | ---
language: python
python: "2.7"
sudo: required
services:
- docker
install:
- pip install ansible docker-py
- pip install molecule --pre
script:
- molecule test
| ---
language: python
python: "2.7"
sudo: required
services:
- docker
install:
- pip install ansible docker-py
- pip install molecule --pre
script:
- molecule test
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
| Add webhook for Ansible Galaxy to Travis | Add webhook for Ansible Galaxy to Travis
| YAML | mit | VanJanssen/neovim.ansible |
6f79f373695e63f3b74475dd10ea1625b4e21068 | .travis.yml | .travis.yml | ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: '2.1'
sudo: required
services: docker
env: PUPPET_VERSION="3.8.4" BEAKER_set="centos-6-docker"
script: bundle exec rake acceptance
| ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes" ORDERING="random"
- rvm: '2.1'
sudo: required
services: docker
env: PUPPET_VERSION="3.8.4" BEAKER_set="centos-6-docker"
script: bundle exec rake acceptance
bundler_args: --without development
| Remove development gems for acceptance tests | Remove development gems for acceptance tests | YAML | apache-2.0 | petems/petems-hyperic_agent,petems/petems-hyperic_agent,petems/petems-hyperic_agent |
d55059d333b6e21c7823ee6f5cda1427919d18bf | .travis.yml | .travis.yml | language: c
compiler:
- gcc
- clang
git:
submodules: false
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
script:
- make test-coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: c
compiler:
- gcc
- clang
git:
submodules: false
before_install:
- sed -i 's/git@github.com:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
- pip install --user cpp-coveralls
script:
- make test-coverage
after_success:
- coveralls
| Send coverage information to coveralls.io | Send coverage information to coveralls.io
| YAML | bsd-3-clause | adolfopa/cstow |
02efa66778c7f66a801e32747ce851bbe6cb0036 | .travis.yml | .travis.yml | language: cpp
before_install:
- source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
- wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
- sudo apt-get update
- sudo apt-get install python3-pip luarocks npm rethinkdb
- rethinkdb --daemon
- gem install rake-compiler
- sudo luarocks install busted
install:
- sudo luarocks make
- rm -f *.o
- python3 setup.py build
- sudo python3 setup.py install
- rm -rf build
- sudo npm install
- rake
- rm -rf tmp
- CC=clang CXX=clang++ make
- CC=clang CXX=clang++ make libReQLtest
script:
- CC=clang CXX=clang++ make test
- busted
| language: cpp
before_install:
- source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
- wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
- sudo apt-get update
- sudo apt-get install python3-dev luarocks npm rethinkdb
- rethinkdb --daemon
- gem install rake-compiler
- curl https://bootstrap.pypa.io/get-pip.py | sudo python3
- sudo luarocks install busted
install:
- sudo luarocks make
- rm -f *.o
- python3 setup.py build
- sudo python3 setup.py install
- rm -rf build
- sudo npm install
- rake
- rm -rf tmp
- CC=clang CXX=clang++ make
- CC=clang CXX=clang++ make libReQLtest
script:
- CC=clang CXX=clang++ make test
- busted
| Revert part of CI cleanup. | Revert part of CI cleanup.
| YAML | apache-2.0 | grandquista/ReQL-Core,grandquista/ReQL-Core,grandquista/ReQL-Core,grandquista/ReQL-Core |
c7f3dd848e0b8cf5a49b29bb2ae96ea57b7cde01 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.2.10
- 2.3.8
- 2.4.9
- 2.5.7
- 2.6.5
env:
matrix:
- RAILS_VERSION='~> 4.2.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.0.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.1.0'
- RAILS_VERSION='~> 5.2.x'
- RAILS_VERSION='~> 6.0.0.beta3'
matrix:
exclude:
- rvm: 2.2.10
env: RAILS_VERSION='~> 6.0.0.beta3'
- rvm: 2.3.8
env: RAILS_VERSION='~> 6.0.0.beta3'
- rvm: 2.4.9
env: RAILS_VERSION='~> 6.0.0.beta3'
| language: ruby
cache: bundler
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
env:
matrix:
- RAILS_VERSION='~> 4.2.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.0.0' SQLITE_VERSION='~> 1.3.6'
- RAILS_VERSION='~> 5.1.0'
- RAILS_VERSION='~> 5.2.0'
- RAILS_VERSION='~> 6.0.0'
matrix:
exclude:
- rvm: 2.2
env: RAILS_VERSION='~> 6.0.0'
- rvm: 2.3
env: RAILS_VERSION='~> 6.0.0'
- rvm: 2.4
env: RAILS_VERSION='~> 6.0.0'
| Test with Ruby 2.7 in CI | Test with Ruby 2.7 in CI
* Remove obsolete sudo: false
* Cache bundler
* Relax Ruby versions a bit | YAML | mit | jhawthorn/discard,jhawthorn/discard |
807d06a89e36e3a22f14578124387ac10bcb72da | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.4.19
- DJANGO_VERSION=1.6.10
- DJANGO_VERSION=1.7.4
- REST_FRAMEWORK_VERSION=3.0.5
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=1.7.4
- python: "3.2"
env: DJANGO_VERSION=1.4.19
- python: "3.3"
env: DJANGO_VERSION=1.4.19
- python: "3.4"
env: DJANGO_VERSION=1.4.19
install:
- pip install Django==$DJANGO_VERSION djangorestframework==$REST_FRAMEWORK_VERSION
- pip install coveralls
script:
coverage run --source=rest_framework_se runtests.py
after_success:
coveralls
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.4.19
- DJANGO_VERSION=1.6.10
- DJANGO_VERSION=1.7.4
matrix:
exclude:
- python: "2.6"
env: DJANGO_VERSION=1.7.4
- python: "3.2"
env: DJANGO_VERSION=1.4.19
- python: "3.3"
env: DJANGO_VERSION=1.4.19
- python: "3.4"
env: DJANGO_VERSION=1.4.19
install:
- pip install Django==$DJANGO_VERSION djangorestframework==3.05
- pip install coveralls
script:
coverage run --source=rest_framework_se runtests.py
after_success:
coveralls
| Remove rest framework version from build matrix | Remove rest framework version from build matrix
| YAML | bsd-2-clause | JamesRitchie/django-rest-framework-sav |
98211c4971d71e6273f3dfe620b721799c06f901 | .travis.yml | .travis.yml | language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
addons:
apt:
packages:
- parallel
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
before_script:
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- flags=""
- if [ `phpenv version-name` == "5.3.3" ]; then flags="--ignore-platform-reqs"; fi
- composer install $flags
- bin/composer install $flags
- git config --global user.name travis-ci
- git config --global user.email travis@example.com
script:
- ls -d tests/Composer/Test/* | parallel --gnu --keep-order 'echo "Running {} tests"; ./vendor/bin/phpunit -c tests/complete.phpunit.xml --colors=always {} || (echo -e "\e[41mFAILED\e[0m {}" && $(exit 1));'
git:
depth: 5
| language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
addons:
apt:
packages:
- parallel
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
before_script:
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
- flags=""
- if [ `phpenv version-name` == "5.3.3" ]; then flags="--ignore-platform-reqs"; fi
- if [ `phpenv version-name` == "5.3.3" ]; then composer config -g disable-tls true; fi
- composer install $flags
- bin/composer install $flags
- git config --global user.name travis-ci
- git config --global user.email travis@example.com
script:
- ls -d tests/Composer/Test/* | parallel --gnu --keep-order 'echo "Running {} tests"; ./vendor/bin/phpunit -c tests/complete.phpunit.xml --colors=always {} || (echo -e "\e[41mFAILED\e[0m {}" && $(exit 1));'
git:
depth: 5
| Disable TLS in 5.3.3 build as openssl is missing | Disable TLS in 5.3.3 build as openssl is missing
| YAML | mit | gencer/composer,vdm-io/composer,localheinz/composer,dzuelke/composer,hirak/composer,yaman-jain/composer,floverdevel/composer,naderman/composer,staabm/composer,jreinke/composer,SpacePossum/composer,davidolrik/composer,MoT3rror/composer,milleruk/composer,alcohol/composer,curry684/composer,pierredup/composer,stof/composer,till/composer,slbmeh/composer,JBleijenberg/composer,erasys/composer,johnstevenson/composer,fabiang/composer,remicollet/composer,stefangr/composer,composer/composer,nicolas-grekas/composer,phansys/composer,fabpot/composer,javihgil/composer,balbuf/composer,andrerom/composer,Soullivaneuh/composer,nevvermind/composer |
3e065d7d34f9606e34c0522642555c8613a09e21 | .travis.yml | .travis.yml | osx_image: xcode7.2
language: objective-c
install: bundle install --without=documentation
script:
- xcodebuild build test -project SPTDataLoader.xcodeproj -scheme SPTDataLoader -sdk iphonesimulator ONLY_ACTIVE_ARCH=YES -enableCodeCoverage YES
after_success: ./slather.sh
| osx_image: xcode7.2
language: objective-c
before_install:
- bundle install --without=documentation
script:
- xcodebuild build test -project SPTDataLoader.xcodeproj -scheme SPTDataLoader -sdk iphonesimulator ONLY_ACTIVE_ARCH=YES -enableCodeCoverage YES
after_success: ./slather.sh
| Change to install CI dependencies on before_install | Change to install CI dependencies on before_install
- This is the override point to use, according to Travis-CI’s
documentation, when installing dependencies.
| YAML | apache-2.0 | iOSCowboy/SPTDataLoader,iOSCowboy/SPTDataLoader,spotify/SPTDataLoader,spotify/SPTDataLoader,spotify/SPTDataLoader |
0fc971c3efb1b258a58a698237f24f797f735dc3 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- LARAVEL_VERSION=""
- LARAVEL_VERSION="5.5"
- LARAVEL_VERSION="5.6"
- LARAVEL_VERSION="5.7"
install:
- composer self-update --snapshot
- travis/laravel.php
- composer update
script:
- vendor/bin/phpunit
- tests/lint.sh
- vendor/bin/composer-require-checker
jobs:
include:
- stage: coverage
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
- bash <(curl -s https://codecov.io/bash)
git:
depth: 5
group: travis_latest
| language: php
php:
- 7.1
- 7.2
- 7.3
- nightly
matrix:
allow_failures:
- php: nightly
env:
- LARAVEL_VERSION=""
- LARAVEL_VERSION="5.5"
- LARAVEL_VERSION="5.6"
- LARAVEL_VERSION="5.7"
install:
- composer self-update --snapshot
- travis/laravel.php
- composer update
script:
- vendor/bin/phpunit
- tests/lint.sh
- vendor/bin/composer-require-checker
jobs:
include:
- stage: coverage
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml
- bash <(curl -s https://codecov.io/bash)
git:
depth: 5
group: travis_latest
| Add support for PHP 7.3 | Add support for PHP 7.3
| YAML | apache-2.0 | duncan3dc/blade,duncan3dc/blade |
5266abc1a079aa5abced226fd829e2b14d88c03b | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.11
- 0.10
service_name: travis-pro
repo_token: vXIJXxzcAcgTBv2hE1CkgwPGy20Hsl11I
| language: node_js
node_js:
- iojs
- 0.12
- 0.10
| Add iojs and remove .11 | Add iojs and remove .11
| YAML | bsd-2-clause | motdotla/dotenv,motdotla/dotenv,motdotla/dotenv,galenandrew/dotenv |
79f1dcfbae1c6a659f9a08590e06e9f5f620f3c3 | .travis.yml | .travis.yml | language: go
go:
- 1.2
- 1.3
- tip
| language: go
go:
- 1.2
- 1.3
- 1.4
| Add go 1.4 to CI | Add go 1.4 to CI
| YAML | mit | winlinvip/queue,zj8487/queue,AndreasBriese/queue,gammazero/queue,eapache/queue |
596db07ee03c2e65b5aa70e90237491925a5a032 | .travis.yml | .travis.yml |
language: csharp
solution: ChamberLib.sln
addons:
apt:
packages:
- nunit-console
script:
- nuget restore ChamberLib.sln
- xbuild /p:Configuration=Debug ChamberLib.sln
- nunit-console ./ChamberLibTests/bin/Debug/ChamberLibTests.dll
branches:
only:
- master
|
language: csharp
solution: ChamberLib.sln
sudo: false
addons:
apt:
packages:
- nunit-console
script:
- nuget restore ChamberLib.sln
- xbuild /p:Configuration=Debug ChamberLib.sln
- nunit-console ./ChamberLibTests/bin/Debug/ChamberLibTests.dll
branches:
only:
- master
| Set sudo to false for container-based builds. | Set sudo to false for container-based builds.
| YAML | lgpl-2.1 | izrik/ChamberLib,izrik/ChamberLib,izrik/ChamberLib |
9e1193f50cc16c25350af53f3184804e82174018 | recipes/libibverbs-devel-cos6-x86_64/meta.yaml | recipes/libibverbs-devel-cos6-x86_64/meta.yaml | package:
name: libibverbs-devel-cos6-x86_64
version: 1.1.8
source:
- url: http://mirror.centos.org/centos/6.10/os/x86_64/Packages/libibverbs-devel-1.1.8-4.el6.x86_64.rpm
sha256: 4ab179fbc789865520708ece24b456a1ff78057827b3333fc31e77ea2227bb81
folder: binary
build:
number: 0
noarch: generic
missing_dso_whitelist:
- '*'
requirements:
build:
- libibverbs-cos6-x86_64 ==1.1.8
run:
- libibverbs-cos6-x86_64 ==1.1.8
test:
commands:
- test -d "${PREFIX}/x86_64-conda_cos6-linux-gnu/sysroot"
requires:
- zlib
about:
home: https://www.openfabrics.org/
license: GPLv2 or BSD
license_family: GPL2
summary: "(CDT) Development files for the libibverbs library"
description: |
Header files for the libibverbs library.
| package:
name: libibverbs-devel-cos6-x86_64
version: 1.1.8
source:
- url: http://mirror.centos.org/centos/6.10/os/x86_64/Packages/libibverbs-devel-1.1.8-4.el6.x86_64.rpm
sha256: 4ab179fbc789865520708ece24b456a1ff78057827b3333fc31e77ea2227bb81
folder: binary
build:
number: 0
noarch: generic
missing_dso_whitelist:
- '*'
requirements:
build:
- libibverbs-cos6-x86_64 ==1.1.8
run:
- libibverbs-cos6-x86_64 ==1.1.8
test:
commands:
- test -d "${PREFIX}/x86_64-conda_cos6-linux-gnu/sysroot"
requires:
- zlib
about:
home: https://www.openfabrics.org/
license: GPLv2 or BSD
license_family: GPL2
summary: "(CDT) Development files for the libibverbs library"
description: |
Header files for the libibverbs library.
extra:
recipe-maintainers:
- jakirkham
| Add myself as a maintainer | Add myself as a maintainer
| YAML | bsd-3-clause | goanpeca/staged-recipes,scopatz/staged-recipes,SylvainCorlay/staged-recipes,isuruf/staged-recipes,conda-forge/staged-recipes,chrisburr/staged-recipes,conda-forge/staged-recipes,jochym/staged-recipes,SylvainCorlay/staged-recipes,dschreij/staged-recipes,hadim/staged-recipes,petrushy/staged-recipes,ReimarBauer/staged-recipes,cpaulik/staged-recipes,stuertz/staged-recipes,igortg/staged-recipes,ocefpaf/staged-recipes,patricksnape/staged-recipes,asmeurer/staged-recipes,petrushy/staged-recipes,dschreij/staged-recipes,kwilcox/staged-recipes,jakirkham/staged-recipes,hadim/staged-recipes,mariusvniekerk/staged-recipes,asmeurer/staged-recipes,birdsarah/staged-recipes,cpaulik/staged-recipes,mcs07/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,jochym/staged-recipes,ceholden/staged-recipes,patricksnape/staged-recipes,mariusvniekerk/staged-recipes,synapticarbors/staged-recipes,Juanlu001/staged-recipes,johanneskoester/staged-recipes,birdsarah/staged-recipes,ceholden/staged-recipes,igortg/staged-recipes,johanneskoester/staged-recipes,mcs07/staged-recipes,kwilcox/staged-recipes,Juanlu001/staged-recipes,isuruf/staged-recipes,stuertz/staged-recipes,scopatz/staged-recipes,synapticarbors/staged-recipes,ReimarBauer/staged-recipes,chrisburr/staged-recipes,jakirkham/staged-recipes |
732296ba2bd1db87b599e340c5e920f8b11f4464 | .travis.yml | .travis.yml | os: linux
dist: bionic
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main'
key_url: 'https://dl.google.com/linux/linux_signing_key.pub'
packages:
- google-chrome-stable
services:
- xvfb
language: node_js
node_js:
- "10"
script:
- npm run lint
- npm run test:cover
- npm run e2e
after_success:
- npm run coveralls
- bash <(curl -Ls https://coverage.codacy.com/get.sh) report -l Javascript -r ./coverage/lcov.info
before_deploy: ./bin/prepare-deploy.sh
deploy:
- provider: cloudfoundry
skip_cleanup: true
api: https://api.run.pcfone.io
username: $CF_USERNAME
password: $CF_PASSWORD
organization: pivot-jsharpe
space: development
on:
tags: true
- provider: releases
skip_cleanup: true
api_key: $GITHUB_TOKEN
name: ${TRAVIS_TAG}
file: dist-${TRAVIS_TAG}.tar.gz
on:
tags: true
| os: linux
dist: bionic
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main'
key_url: 'https://dl.google.com/linux/linux_signing_key.pub'
packages:
- google-chrome-stable
services:
- xvfb
language: node_js
node_js:
- "10"
script:
- npm run lint
- npm run test:cover
- npm run e2e
after_success:
- npm run coveralls
- bash <(curl -Ls https://coverage.codacy.com/get.sh) report -l TypeScript -r ./coverage/lcov.info
before_deploy: ./bin/prepare-deploy.sh
deploy:
- provider: cloudfoundry
skip_cleanup: true
api: https://api.run.pcfone.io
username: $CF_USERNAME
password: $CF_PASSWORD
organization: pivot-jsharpe
space: development
on:
tags: true
- provider: releases
skip_cleanup: true
api_key: $GITHUB_TOKEN
name: ${TRAVIS_TAG}
file: dist-${TRAVIS_TAG}.tar.gz
on:
tags: true
| Switch language in Codacy coverage reporting | Switch language in Codacy coverage reporting
Suggested by Codacy support to match the file type in use.
| YAML | isc | textbook/salary-stats,textbook/salary-stats,textbook/salary-stats,textbook/salary-stats |
a5685347356eeb2b2c4966e0084695533d8804ec | .travis.yml | .travis.yml | language: python
dist: trusty
group: edge
before_install:
- pip install wxPython
install:
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install .
matrix:
include:
- python: "2.7"
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- pip install robotframework
script:
- invoke test
| language: python
dist: trusty
group: edge
before_install:
# In normal circunstances we would just do "pip install wxPython"
- pip install https://wxpython.org/Phoenix/snapshot-builds/linux/gtk3/ubuntu-14.04/wxPython-4.0.0a3.dev3059+4a5c5d9-cp27-cp27mu-linux_x86_64.whl
install:
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
- pip install .
matrix:
include:
- python: "2.7"
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
# - pip install robotframework
script:
- invoke test
| Install from WHEEL instead of building wxPython :D (now with correct Python and Ubuntu version :o ) | Install from WHEEL instead of building wxPython :D
(now with correct Python and Ubuntu version :o )
| YAML | apache-2.0 | HelioGuilherme66/RIDE,HelioGuilherme66/RIDE,robotframework/RIDE,robotframework/RIDE,robotframework/RIDE,HelioGuilherme66/RIDE,robotframework/RIDE,HelioGuilherme66/RIDE |
3257a06b4e25ba83348ca2328de6042391186e65 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "5"
- "4"
| language: node_js
node_js:
- "node"
- "8"
- "7"
- "6"
- "5"
- "4"
| Add Node 6,7,8 and latest to CI | chore: Add Node 6,7,8 and latest to CI
| YAML | mit | mradionov/eslint-plugin-disable |
818b83518771ce6879b708d7443adc38ce49d68f | .travis.yml | .travis.yml | language: python
python:
- "2.7"
#- "3.2"
#- "3.3"
- "3.4"
- "3.5"
#- "3.6"
notifications:
email: false
cache: pip
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y -qq python-dev gfortran liblapack-dev libatlas-dev libblas-dev build-essential python-scipy
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy nose
- pip install -q coveralls coverage future pathos
- pip install .
script:
- nosetests --cover-branches --with-coverage --cover-package=molml --cover-erase
after_success:
- coveralls
| language: python
python:
- "2.7"
#- "3.2"
#- "3.3"
- "3.4"
- "3.5"
- "3.6"
notifications:
email: false
cache: pip
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y -qq python-dev gfortran liblapack-dev libatlas-dev libblas-dev build-essential python-scipy
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy nose
- pip install -q coveralls coverage future pathos
- pip install .
script:
- nosetests --cover-branches --with-coverage --cover-package=molml --cover-erase
after_success:
- coveralls
| Add Python 3.6 to TravisCI tests | Add Python 3.6 to TravisCI tests
| YAML | mit | crcollins/molml |
bedc42a16c22330a8b8233652831cdb8910750c5 | .travis.yml | .travis.yml | before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libfftw3-dev
- gem install bundler
language: ruby
rvm:
- "2.2.10"
- "2.3.8"
- "2.4.5"
- "2.5.3"
| before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libfftw3-dev
language: ruby
cache: bundler
os:
- linux
rvm:
- "2.2.10"
- "2.3.8"
- "2.4.5"
- "2.5.3"
| Update Travis criteria based on recent example | Update Travis criteria based on recent example
| YAML | mit | neilslater/convolver,neilslater/convolver |
cfb0b6ec9f8530f45f103568b8d95b842b589e7c | .travis.yml | .travis.yml | language: python
# command to install dependencies
install: "pip install -r requirements.txt"
# command to check for syntax errors
before_script: "python -m compileall -f ."
# command to run tests
script: "python -m unittest discover"
| language: python
# command to install dependencies
install: "pip install -r requirements.txt"
# command to check before build
before_script:
- "python -m compileall -f ."
- "python -m unittest discover"
# build nothing right now
script: "true"
| Move tests before build step | Move tests before build step
Closes #94
| YAML | agpl-3.0 | alexm/mailtoticket,aaguilera/mailtoticket,UPC/mailtoticket,UPC/mailtoticket,jaumemoral/mailtoticket,jaumemoral/mailtoticket,alexm/mailtoticket,aaguilera/mailtoticket |
a209c6f4569c66698efa0edf90a5d4fc700b6cca | .travis.yml | .travis.yml | language: go
go:
- 1.2
- tip
script:
- go test -cover ./...
branches:
only:
- master
| language: go
go:
- 1.2
- tip
branches:
only:
- master
| Fix broken Travis CI config | Fix broken Travis CI config
| YAML | mit | tchap/go-exchange |
194a0e3686796ed78b11604a6c5384974adeb8e4 | .travis.yml | .travis.yml | sudo: false # Explicitly use container-based infrastructure
language: go
go:
- 1.6
env:
global:
- BUILDER_VERSION=0.11.0
matrix:
- TEST_SUITE=unit
- TEST_SUITE=integration
cache:
directories:
- ./builder-cache
notifications:
email: false
before_install:
# Decrypt gitcookies and ssh key. The tarball contains `gitcookies` and `inago-integration-test.pem`.
# We use a tarball here because of: https://github.com/travis-ci/travis.rb/issues/239
- openssl aes-256-cbc -K "$encrypted_314659c9f31c_key" -iv "$encrypted_314659c9f31c_iv" -in secrets.tar.enc -out secrets.tar -d
- tar xvf secrets.tar
# Set up the git http cookiefile.
- chmod 0600 ./gitcookies && git config --global http.cookiefile ./gitcookies
# Grab builder from the cache, or download it if we can't.
- cp ./builder-cache/builder-$BUILDER_VERSION ./builder || wget https://downloads.giantswarm.io/builder/$BUILDER_VERSION/builder && chmod +x ./builder
- chmod +x ./builder
- export PATH=$PATH:$PWD
- go get -u github.com/golang/lint/golint
script:
- ./ci.sh
before_cache:
- cp ./builder ./builder-cache/builder-$BUILDER_VERSION
| sudo: false # Explicitly use container-based infrastructure
language: go
go:
- 1.6
env:
global:
- BUILDER_VERSION=0.11.0
matrix:
- TEST_SUITE=unit
- TEST_SUITE=integration
cache:
directories:
- ./builder-cache
notifications:
email: false
before_install:
# Decrypt gitcookies and ssh key. The tarball contains `gitcookies` and `inago-integration-test.pem`.
# We use a tarball here because of: https://github.com/travis-ci/travis.rb/issues/239
- openssl aes-256-cbc -K "$encrypted_314659c9f31c_key" -iv "$encrypted_314659c9f31c_iv" -in secrets.tar.enc -out secrets.tar -d
- tar xvf secrets.tar
- test -f ./gitcookies && test -f ./inago-integration-test.pem
# Set up the git http cookiefile.
- chmod 0600 ./gitcookies && git config --global http.cookiefile ./gitcookies
# Grab builder from the cache, or download it if we can't.
- cp ./builder-cache/builder-$BUILDER_VERSION ./builder || wget https://downloads.giantswarm.io/builder/$BUILDER_VERSION/builder && chmod +x ./builder
- chmod +x ./builder
- export PATH=$PATH:$PWD
- go get -u github.com/golang/lint/golint
script:
- ./ci.sh
before_cache:
- cp ./builder ./builder-cache/builder-$BUILDER_VERSION
| Add test for encrypted files existence to build | Add test for encrypted files existence to build
| YAML | apache-2.0 | giantswarm/inago,giantswarm/inago,giantswarm/inago,giantswarm/inago,giantswarm/inago |
36cbfd4bad8c3f534c8cb13f9ddbc463e1c44ef5 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
script:
- cargo test --all
cache: cargo
matrix:
include:
- rust: nightly-2018-01-13
env:
- CLIPPY_VERSION=0.0.179
before_script:
- rustup component add rustfmt-preview
- cargo install clippy --version $CLIPPY_VERSION || echo "clippy already installed"
script:
- cargo test --all-features
| language: rust
rust:
- stable
- beta
script:
- cargo test --all
cache: cargo
matrix:
include:
- rust: nightly-2018-04-03
env:
- CLIPPY_VERSION=0.0.191
before_script:
- rustup component add rustfmt-preview
- cargo install clippy --version $CLIPPY_VERSION || echo "clippy already installed"
script:
- cargo test --all-features
| Upgrade nightly for latest Rocket | Upgrade nightly for latest Rocket
| YAML | apache-2.0 | djc/askama,djc/askama,djc/askama |
5e06dd81bef2c685f255714a5df8fe34288888cf | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.10"
before_install:
- wget -qO- https://raw.githubusercontent.com/xtuple/nvm/master/install.sh | sudo bash
- sudo nvm install 5.10
- sudo nvm use 5.10
- sudo node --version
- sudo npm --version
| language: node_js
node_js:
- "5.10"
| Remove experimental Travis CI config | Remove experimental Travis CI config
| YAML | mit | epsitec-sa/electrum |
bd8eb6197233130ca8c56ef932f37fd790e5647f | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- openjdk8
- oraclejdk9
services:
- postgresql
before_script:
- psql -c $'create role "mongo-java-server-test" login password \'mongo-java-server-test\';' -U postgres
- psql -c 'create database "mongo-java-server-test" with owner = "mongo-java-server-test";' -U postgres
addons:
postgresql: "9.5"
| language: java
jdk:
- oraclejdk8
- openjdk8
- oraclejdk9
- openjdk10
- openjdk11
services:
- postgresql
before_script:
- psql -c $'create role "mongo-java-server-test" login password \'mongo-java-server-test\';' -U postgres
- psql -c 'create database "mongo-java-server-test" with owner = "mongo-java-server-test";' -U postgres
addons:
postgresql: "9.5"
| Build and test also on OpenJDK 10 and 11 | Build and test also on OpenJDK 10 and 11
| YAML | bsd-3-clause | bwaldvogel/mongo-java-server,bwaldvogel/mongo-java-server,bwaldvogel/mongo-java-server |
602cd77ad7c654c75e30c17719758c57a362b31d | .travis.yml | .travis.yml | env:
global:
- image=pythonnode_slave
language: python
python:
- "2.7"
env:
- TRAVIS_NODE_VERSION="4"
- TRAVIS_NODE_VERSION="6"
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
- pip install -U pip
- pip install --no-use-wheel buildbot # need no-use-wheel to get the test framework
- pip install -r example/requirements.txt
- pip install -e .
- pip install mock
script: trial buildbot_travis/tests
after_failure: "cat _trial_temp/test.log"
| language: python
sudo: false
env:
global:
- image=pythonnode_slave
matrix:
include:
- python: 2.7
env: TRAVIS_NODE_VERSION="4"
- python: 2.7
env: TRAVIS_NODE_VERSION="6"
- python: 3.5
env: TRAVIS_NODE_VERSION="6"
- python: 3.6
env: TRAVIS_NODE_VERSION="6"
allow_failures:
- python: 3.5
- python: 3.6
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
- pip install -U pip
- pip install --no-use-wheel buildbot # need no-use-wheel to get the test framework
- pip install -r example/requirements.txt
- pip install -e .
- pip install mock
script:
- python setup.py develop
- trial buildbot_travis.tests
after_failure: "cat _trial_temp/test.log"
| Enable builds on Python 3.5 and 3.6, and other minor fixes. | Enable builds on Python 3.5 and 3.6, and other minor fixes.
| YAML | unknown | buildbot/buildbot_travis,buildbot/buildbot_travis,isotoma/buildbot_travis,buildbot/buildbot_travis,isotoma/buildbot_travis |
545de773bb59521af0b5df3a4d5e433dbc416ba7 | .travis.yml | .travis.yml |
language: node_js
node_js:
#- 0.4
- 0.6
#- 0.7
|
language: node_js
node_js:
- 0.6
- 0.7
- 0.8
- 0.9
| Test agains 0.6, 0.7, 0.8 et 0.9 | Test agains 0.6, 0.7, 0.8 et 0.9 | YAML | bsd-3-clause | wdavidw/node-ron |
c23fe5066cce3ea5f0f1d7b89d79a2a66113993d | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
- "3.6"
env:
global:
- secure: "QQlGoUF2W9DDvdhXhMMfJyA2nSlj8J0QH31b9A1JlbSoIf89H5cjEcYYWqP4WF5sVyBdTm6vbjqQijWSJAjMZkxJduUMYYsHGQZDFuYoyKherS6JbhbJOZH7TmbcepSbBkDf1IJ/JxTMw2yZdXXMO/YmGq6Tc5dmch2XKOGm4f0="
matrix:
- OPTIONAL_DEPS=true
- OPTIONAL_DEPS=false
install:
- pip install coveralls pytest requests six
- if [ "$OPTIONAL_DEPS" = true ]; then pip install lxml; fi
script:
- coverage run --source=chemspipy -m pytest
after_success:
- coveralls
| language: python
python:
- "2.7"
- "3.5"
- "3.6"
env:
global:
- secure: "N/t4txw1k9bOUsLQWQOpzdJpMAdFFzzJqN2rWiijMJPEC9E1meoKMzFYr4kgNjInhVfkud8+3fOHZL/Ns4MLWexf1vsG1NFvrXSBuBD6MlPKYe77bb9WTmRvWfLSDg6F5BP/1uFjwebj4USN14RWlxyIgmsC1+bdCFVN2Wktg4k="
matrix:
- OPTIONAL_DEPS=true
- OPTIONAL_DEPS=false
install:
- pip install coveralls pytest requests six
- if [ "$OPTIONAL_DEPS" = true ]; then pip install lxml; fi
script:
- coverage run --source=chemspipy -m pytest
after_success:
- coveralls
| Set CHEMSPIDER_API_KEY in Travis CI | Set CHEMSPIDER_API_KEY in Travis CI
| YAML | mit | mcs07/ChemSpiPy |
37c42852234c589a65b5b9c5f5681ee93b0d5bb9 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10.26
before_script:
- npm install -g bower
- bower install
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start | language: node_js
node_js:
- 0.10.25
before_script:
- npm install -g bower
- bower install
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start | Use version of node installed on Travis CI | Use version of node installed on Travis CI
| YAML | mit | intelligentgolf/angular-lo-dash |
faaf853cbe25731f3318257ab886df0e4a5839ae | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
branches:
except:
- v0.5
- v0.6
- php5.2_backport
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
matrix:
allow_failures:
- php: hhvm
fast_finish: true
| language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
branches:
except:
- v0.5
- v0.6
- v0.6-PHP_5.2
- documentation
services: redis-server
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
matrix:
allow_failures:
- php: hhvm
fast_finish: true
| Rename old branch for exclusion. | [tests] Rename old branch for exclusion.
[ci skip]
| YAML | mit | nrk/predis,vend/predis |
c80d478d73fb3634484dc446794d6120e5109ff6 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: hhvm-nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
before_script:
- travis_retry composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
| language: php
sudo: false
php:
- nightly
- '7.1'
- '7.0'
- '5.6'
- '5.5'
- '5.4'
- '5.3'
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm
- php: hhvm-nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
before_script:
- travis_retry composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
| Add PHP nightly; quote version numbers | Add PHP nightly; quote version numbers
| YAML | bsd-3-clause | humbug/phar-updater,padraic/phar-updater |
df307d5afd58734f583c7686b91fa1e3aa99940b | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.3"
- "3.2"
install:
- pip install -r dev_requirements.txt
- pip install coveralls
script:
- .githooks/pre-commit -f
- ./runtests.sh
after_success:
- coveralls
deploy:
provider: pypi
user: ixa
password:
secure: KotqwXcFnooWKlSp1jM98898loE9ugWpba7tXGcDFuHhXQGT/wXtNgzROa2EhPxs7IYfQtxq4HD3dadYSziuUzHRTTjg5YUiW9Gx4N0gFtfthraroKu4IB62B9k84YPmxIIZZNvkJOSd1Ip5x2/+TJntPcroi0UK4GFRhLmcOKM=
server: https://pypi.python.org/pypi
on:
tags: true
all_branches: true
python: 3.4
condition: "\"$TRAVIS_TAG\" = \"v$(python setup.py --version)\""
| language: python
python:
- "3.4"
- "3.3"
install:
- pip install -r dev_requirements.txt
- pip install coveralls
script:
- .githooks/pre-commit -f
- ./runtests.sh
after_success:
- coveralls
deploy:
provider: pypi
user: ixa
password:
secure: KotqwXcFnooWKlSp1jM98898loE9ugWpba7tXGcDFuHhXQGT/wXtNgzROa2EhPxs7IYfQtxq4HD3dadYSziuUzHRTTjg5YUiW9Gx4N0gFtfthraroKu4IB62B9k84YPmxIIZZNvkJOSd1Ip5x2/+TJntPcroi0UK4GFRhLmcOKM=
server: https://pypi.python.org/pypi
on:
tags: true
all_branches: true
python: 3.4
condition: "\"$TRAVIS_TAG\" = \"v$(python setup.py --version)\""
| Drop Python 3.2 from build | Drop Python 3.2 from build
New version of coverage.py no longer supports it.
Python 3.5 is supported however PyLint does not currently support it.
| YAML | apache-2.0 | infoxchange/docker-forklift,infoxchange/docker-forklift |
604d61614573065d9d442111d39f484c1550aac2 | .travis.yml | .travis.yml | language: julia
os:
- linux
- osx
julia:
- release
- nightly
branches:
only:
- master
matrix:
allow_failures:
# Julia release is 0.3.11, so we shouldn't expect to run on it.
- julia: release
notifications:
email: false
# uncomment the following lines to override the default test script
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'Pkg.clone("https://psl-travis-user:6mnZDX4Hf04Kcn1S2gog@github.com/IntelLabs/CompilerTools.jl.git")' # Pull in CompilerTools dependency
- cd ~/.julia/v0.5/CompilerTools; git checkout latest
- julia --check-bounds=yes -e 'Pkg.build("CompilerTools"); Pkg.test("CompilerTools"; coverage=true)'
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("ParallelAccelerator"); Pkg.test("ParallelAccelerator"; coverage=true)'
| language: julia
os:
- linux
- osx
julia:
- release
- nightly
branches:
only:
- master
matrix:
allow_failures:
# Julia release is 0.3.11, so we shouldn't expect to run on it.
- julia: release
notifications:
email: false
# uncomment the following lines to override the default test script
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'Pkg.clone("https://psl-travis-user:6mnZDX4Hf04Kcn1S2gog@github.com/IntelLabs/CompilerTools.jl.git")' # Pull in CompilerTools dependency
- cd ~/.julia/v0.5/CompilerTools; git fetch; git checkout latest
- julia --check-bounds=yes -e 'Pkg.build("CompilerTools"); Pkg.test("CompilerTools"; coverage=true)'
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("ParallelAccelerator"); Pkg.test("ParallelAccelerator"; coverage=true)'
| Add a 'git fetch' for Travis. | Add a 'git fetch' for Travis.
| YAML | bsd-2-clause | malekbr/julia-to-tiramisu,JuliaPackageMirrors/ParallelAccelerator.jl,IntelLabs/ParallelAccelerator.jl |
4c0019c7640dd0776ab0be4e780a317a20bec80c | .travis.yml | .travis.yml | language: cpp
cache: ccache
matrix:
include:
- os: linux
sudo: false
compiler: gcc
env: _CC=gcc-4.9 _CXX=g++-4.9 _COV=gcov-4.9
- os: linux
sudo: false
compiler: clang
env: _CC=clang-3.6 _CXX=clang++-3.6
- os: osx
compiler: clang
osx_image: xcode7.3
env: _CC=clang _CXX=clang++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
packages:
- binutils-gold
- autoconf2.13
- g++-4.9
- clang-3.6
- python-dev
- libbz2-dev
- zlib1g-dev
- lcov
- ruby
- rubygems
- doxygen
- libtool
services:
- couchdb
before_script:
source .travis/before_script.sh
script:
source .travis/script.sh
| language: cpp
cache: ccache
matrix:
include:
- os: linux
sudo: false
compiler: gcc
env: _CC=gcc-4.9 _CXX=g++-4.9 _COV=gcov-4.9
- os: linux
sudo: false
compiler: clang
env: _CC=clang-3.6 _CXX=clang++-3.6
- os: osx
compiler: clang
osx_image: xcode7.3
env: _CC=clang _CXX=clang++
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
packages:
- binutils-gold
- autoconf2.13
- g++-4.9
- clang-3.6
- python-dev
- libbz2-dev
- zlib1g-dev
- lcov
- ruby
- rubygems
- doxygen
- libtool
- net-tools
services:
- couchdb
before_script:
source .travis/before_script.sh
script:
source .travis/script.sh
| Install net-tools on Travis * we need netstat | Install net-tools on Travis
* we need netstat
| YAML | agpl-3.0 | RipcordSoftware/AvanceDB,RipcordSoftware/AvanceDB,RipcordSoftware/AvanceDB,RipcordSoftware/AvanceDB,RipcordSoftware/AvanceDB,RipcordSoftware/AvanceDB,RipcordSoftware/AvanceDB |
15314b726bb39e4712599f1c49dac8c899710a40 | .travis.yml | .travis.yml | language: php
os: linux
dist: xenial
branches:
except:
- v0.5
- v0.6
- v0.6-PHP_5.2
- documentation
services: redis
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
jobs:
fast_finish: true
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: 7.3
- php: 7.4
- php: hhvm
dist: trusty
| language: php
os: linux
dist: xenial
branches:
except:
- v0.5
- v0.6
- v0.6-PHP_5.2
- documentation
services: redis
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
jobs:
fast_finish: true
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: hhvm
dist: trusty
| Revert "Add more build targets" | Revert "Add more build targets"
| YAML | mit | nrk/predis |
22e451af35c1e6da73021ec5993845778666f724 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3
- 2.4
| sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
| Add ruby 2.5 to test matrix | Add ruby 2.5 to test matrix
| YAML | mit | nysthee/pronto-slim,nysthee/pronto-slim |
5ca99a191d395a9fc3eb7085949c70f2ededc27a | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
script:
- ./vendor/bin/phpunit
- ./tests/lint.sh
git:
depth: 5
| language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update --snapshot
- composer update $COMPOSER_OPTS
script:
- ./vendor/bin/phpunit
- ./tests/lint.sh
git:
depth: 5
| Use the latest version of composer for testing | Use the latest version of composer for testing
| YAML | apache-2.0 | duncan3dc/cache,duncan3dc/cache |
2e1a887a9cb6b611505413d8d56cac5adb1eabe6 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: cpp
compiler:
- clang
- gcc
os:
- linux
- osx
env:
- BUILD_MODE=Release
- BUILD_MODE=Debug
install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo apt-get -y update -qq && sudo apt-get -y install qt5-default; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew update; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew install qt5; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then export PATH=$(brew --prefix)/opt/qt5/bin:$PATH; fi
script:
- qmake CONFIG+=${BUILD_MODE}
- make
- ls -lRa .
| sudo: required
dist: trusty
language: cpp
compiler:
- clang
- gcc
os:
- linux
- osx
env:
- BUILD_MODE=release
- BUILD_MODE=debug
install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then sudo apt-get -y update -qq && sudo apt-get -y install qt5-default; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew update; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then brew install qt5; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then export PATH=$(brew --prefix)/opt/qt5/bin:$PATH; fi
script:
- mkdir build
- cd build
- qmake CONFIG+=${BUILD_MODE}
- make
- ls -lRa .
| Fix Debug/Release builds, and build in separate directory | WIP: Fix Debug/Release builds, and build in separate directory
| YAML | bsd-2-clause | chgans/travis-qt5-playground,chgans/travis-qt5-playground |
a2c36c37130a92770d8e754a1c6af45ee00bebec | .travis.yml | .travis.yml | env: CUCUMBER_FORMAT=progress
bundler_args: --without extras
script: "bundle exec rake ci:build"
rvm:
- 1.8.6
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby
| env: CUCUMBER_FORMAT=progress
bundler_args: --without extras
script: "bundle exec rake ci:build --trace"
rvm:
- 1.8.6
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby
| Build with --trace so we get a full backtrace. | Build with --trace so we get a full backtrace. | YAML | mit | chriswoodrich/vcr,Shopify/vcr,ihassin/vcr,nishanbose/vcr,Shopify/vcr,chriswoodrich/vcr,benjaminoakes/vcr,asymmetric/vcr,davidbebb/vcr,intfrr/vcr,ZmagoD/vcr,nishanbose/vcr,mcfiredrill/vcr,irfanah/vcr,myronmarston/vcr,myronmarston/vcr,allyapp/vcr,ZmagoD/vcr,asymmetric/vcr,irfanah/vcr,cemo/vcr,davidbebb/vcr,allyapp/vcr,intfrr/vcr,ihassin/vcr,cemo/vcr,mcfiredrill/vcr |
ee94c8ab498fed0278abb1a17e43729f3ab740bd | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.9
- 0.10
| language: node_js
node_js:
- 0.9
- 0.10
before_install:
- sudo npm install npm -g
| Update npm on Travis before running tests. | Update npm on Travis before running tests.
Travis uses an old version of npm which doesn't handle (^) semver in package.json properly. See npm/npm#4849.
| YAML | mit | schmich/connect-browser-sync,schmich/connect-browser-sync |
f0d09d8eee0ad9030ca0198578ee69d6b2aec4b0 | .travis.yml | .travis.yml | language: r
cache: packages
warnings_are_errors: false
r_github_packages:
- jimhester/covr
after_failure:
find *Rcheck -name '*.fail' -print -exec cat '{}' \;
after_success:
- Rscript -e 'library(covr);codecov()'
| language: r
cache: packages
warnings_are_errors: false
os:
- linux
- osx
r_github_packages:
- jimhester/covr
after_failure:
find *Rcheck -name '*.fail' -print -exec cat '{}' \;
after_success:
- Rscript -e 'library(covr);codecov()'
| Test on both osx and linux | Test on both osx and linux
| YAML | mit | kahaaga/tstools |
e96e0c04fdaf8597cb97aaf3ea79fcb0c47859be | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --dev --prefer-source
script: bin/phpspec run -fpretty --verbose
| language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --no-interaction --prefer-source
script: bin/phpspec run -fpretty --verbose
| Fix invalid deps and move AttributeFactory to component | Fix invalid deps and move AttributeFactory to component
| YAML | mit | Sylius/Locale |
d0face216fc00c5b661e5cc8919f8bf4767c6b15 | .travis.yml | .travis.yml | language: python
python:
- 3.6
cache:
pip: true
directories:
- .venv
env:
global:
- RANDOM_SEED=0
- PIPENV_NOSPIN=true
before_install:
- make setup doctor
install:
- make install
script:
- make check
- make test
after_success: >
pip install coveralls scrutinizer-ocular
coveralls
ocular
echo $TRAVIS_BRANCH; echo $TRAVIS_PULL_REQUEST;
if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then
# Copy the generated files
cp *.csv pages/
cp *.txt pages/
cp *.osm_json pages/
cp *.geojson pages/
# Configure Git with Travis CI information
git config --global user.email "travis@travis-ci.org" ;
git config --global user.name "travis-ci" ;
# Delete the current repository
rm -rf .git ;
# Rebuild the repository from the generated files and push to GitHub pages
cd pages ;
touch .nojekyll ;
git init ;
git add . ;
git commit -m "Deploy Travis CI build $TRAVIS_BUILD_NUMBER to GitHub pages" ;
git push -f https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG} master:gh-pages ;
fi
notifications:
email:
on_success: never
on_failure: change
| language: python
python:
- 3.6
cache:
pip: true
directories:
- .venv
env:
global:
- RANDOM_SEED=0
- PIPENV_NOSPIN=true
before_install:
- make setup doctor
install:
- make install
script:
- make check
- make test
- make run
after_success: >
pip install coveralls scrutinizer-ocular
coveralls
ocular
echo $TRAVIS_BRANCH; echo $TRAVIS_PULL_REQUEST;
if [[ $TRAVIS_BRANCH == 'master' && $TRAVIS_PULL_REQUEST == 'false' ]]; then
# Copy the generated files
cp *.csv pages/
cp *.txt pages/
cp *.osm_json pages/
cp *.geojson pages/
# Configure Git with Travis CI information
git config --global user.email "travis@travis-ci.org" ;
git config --global user.name "travis-ci" ;
# Delete the current repository
rm -rf .git ;
# Rebuild the repository from the generated files and push to GitHub pages
cd pages ;
touch .nojekyll ;
git init ;
git add . ;
git commit -m "Deploy Travis CI build $TRAVIS_BUILD_NUMBER to GitHub pages" ;
git push -f https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG} master:gh-pages ;
fi
notifications:
email:
on_success: never
on_failure: change
| Build the site as part of CI | Build the site as part of CI
| YAML | mit | friendlycode/gr-parks,friendlycode/gr-parks,friendlycode/gr-parks,friendlycode/gr-parks |
4c66bebfe8d37e444ebdc0f8b8f5ab2a3bbb97f2 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '4'
before_install:
- npm install -g npm@latest-2
before_deploy:
- 'git config --global user.email "smassa@groupon.com"'
- 'git config --global user.name "Sean Massa"'
deploy:
provider: script
script: ./node_modules/.bin/nlm release
skip_cleanup: true
'on':
branch: master
node: '4'
| language: node_js
node_js:
- '0.10'
- '4'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g npm@latest-2
before_deploy:
- 'git config --global user.email "smassa@groupon.com"'
- 'git config --global user.name "Sean Massa"'
deploy:
provider: script
script: ./node_modules/.bin/nlm release
skip_cleanup: true
'on':
branch: master
node: '4'
| Install g++ 4.8 on CI | chore: Install g++ 4.8 on CI
| YAML | bsd-3-clause | groupon/webdriver-http-sync,groupon/webdriver-http-sync,groupon/webdriver-http-sync |
1613f56ff90847b28c0fb3488d4aff312538f455 | .travis.yml | .travis.yml | language: python
python:
- "pypy"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
script: "python setup.py test"
| language: python
python:
- "pypy"
- "pypy3"
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
- "2.6"
script: "python setup.py test"
| Make sure tests run on modern versions of Python 3 | Make sure tests run on modern versions of Python 3
| YAML | mit | moggers87/lmtpd |
14e41a177c7a438ccb2030c2b6eae4f120464b50 | .travis.yml | .travis.yml | before_install:
- sudo apt-get update -qq
- uname -a
install:
# mecab
- wget --no-check-certificate https://github.com/buruzaemon/natto/raw/master/etc/mecab-0.996.tar.gz && tar zxf mecab-0.996.tar.gz
- pushd mecab-0.996 && ./configure --enable-utf8-only && make && sudo make install && popd
- sudo ldconfig
# mecab-ipadic
- wget --no-check-certificate https://github.com/buruzaemon/natto/raw/master/etc/mecab-ipadic-2.7.0-20070801.tar.gz && tar zxf mecab-ipadic-2.7.0-20070801.tar.gz
- pushd mecab-ipadic-2.7.0-20070801 && ./configure --with-charset=utf8 && make && sudo make install && popd
- sudo ldconfig
# explicitly install ffi and minitest
- gem install ffi
- gem install minitest
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.5
- 2.3.1
- jruby-1.7.20
#- jruby-9.0.5.0
| before_install:
- sudo apt-get update -qq
- uname -a
install:
# mecab
- wget --no-check-certificate https://github.com/buruzaemon/natto/raw/master/etc/mecab-0.996.tar.gz && tar zxf mecab-0.996.tar.gz
- pushd mecab-0.996 && ./configure --enable-utf8-only && make && sudo make install && popd
- sudo ldconfig
# mecab-ipadic
- wget --no-check-certificate https://github.com/buruzaemon/natto/raw/master/etc/mecab-ipadic-2.7.0-20070801.tar.gz && tar zxf mecab-ipadic-2.7.0-20070801.tar.gz
- pushd mecab-ipadic-2.7.0-20070801 && ./configure --with-charset=utf8 && make && sudo make install && popd
- sudo ldconfig
# explicitly install ffi and minitest
- gem install ffi
- gem install minitest
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-1.7.20
#- jruby-9.0.5.0
| Use the latest Rubies on Travis CI | Use the latest Rubies on Travis CI
| YAML | bsd-2-clause | buruzaemon/natto |
262a8434adeaa8e19ce5f617b90c5fa0c70f8fb5 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake test"
before_install:
- gem install bundler -v '>= 1.3'
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
gemfile:
- Gemfile
notifications:
email: false
| language: ruby
script: "bundle exec rake test"
before_install:
- gem install bundler -v '>= 1.3'
rvm:
- 1.8.7
- 1.9.3
- 1.9.3-p448
- 2.0.0
gemfile:
- Gemfile
notifications:
email: false
| Add 1.9.3-p448 to Travis CI | Add 1.9.3-p448 to Travis CI
| YAML | mit | bsodmike/sagepay_protocol3 |
77eea6926d692e3e92c81bd4b344adf4c7a9652b | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
before_install:
- npm install -g npm@latest | language: node_js
node_js:
- "node"
before_install:
- npm install -g npm@latest
cache:
directories:
- "node_modules" | Add Caching for Automated Tests | Add Caching for Automated Tests
Add caching to Travis CI for the node_modules so it doesn't take 45
seconds to import everything.
| YAML | mit | cgelon/master-notifications,cgelon/master-notifications,cgelon/master-notifications |
2864105f0cb127ff3d18c6bdbde10e544ceb7c5f | .travis.yml | .travis.yml | language: go
go:
- 1.2
- 1.3
- 1.4
- tip
script:
- go test -v ./...
| language: go
go:
- 1.4
- 1.5
- 1.6
- 1.7
- tip
script:
- go test -v ./...
| Fix build matrix in Travis CI | Fix build matrix in Travis CI
| YAML | mit | johto/allas |
0a62178c5445ebae906c758eb25cf7fa05d0f4f0 | .travis.yml | .travis.yml | sudo: false
before_script:
- "bundle exec rake prepare_test_env"
script: "bundle exec rspec"
language: ruby
cache: bundler
services: mongodb
rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
# FIXME: failing native extensions
#- ruby-head
# TODO: investigate failure
# This is an arbitrary failure on travis
#- jruby-19mode
#- jruby-head
#- rbx-19mode
gemfile:
- gemfiles/mongoid2.gemfile
- gemfiles/mongoid3.gemfile
- gemfiles/mongoid4.gemfile
- gemfiles/rails3.gemfile
- gemfiles/rails4.gemfile
- gemfiles/rails41.gemfile
- gemfiles/rails42.gemfile
- gemfiles/rails50.gemfile
matrix:
exclude:
- rvm: 1.9.2
gemfile: gemfiles/mongoid3.gemfile
- rvm: 1.9.2
gemfile: gemfiles/rails4.gemfile
- rvm: 1.9.3
gemfile: gemfiles/rails50.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails50.gemfile
- rvm: 2.1.8
gemfile: gemfiles/rails50.gemfile
notifications:
recipients:
- andreas@aloop.org
| sudo: false
before_script:
- "bundle exec rake prepare_test_env"
script: "bundle exec rspec"
language: ruby
cache: bundler
services: mongodb
rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- 2.4.0
# FIXME: failing native extensions
#- ruby-head
# TODO: investigate failure
# This is an arbitrary failure on travis
#- jruby-19mode
#- jruby-head
#- rbx-19mode
gemfile:
- gemfiles/mongoid2.gemfile
- gemfiles/mongoid3.gemfile
- gemfiles/mongoid4.gemfile
- gemfiles/rails3.gemfile
- gemfiles/rails4.gemfile
- gemfiles/rails41.gemfile
- gemfiles/rails42.gemfile
- gemfiles/rails50.gemfile
matrix:
exclude:
- rvm: 1.9.2
gemfile: gemfiles/mongoid3.gemfile
- rvm: 1.9.2
gemfile: gemfiles/rails4.gemfile
- rvm: 1.9.3
gemfile: gemfiles/rails50.gemfile
- rvm: 2.0.0
gemfile: gemfiles/rails50.gemfile
- rvm: 2.1.8
gemfile: gemfiles/rails50.gemfile
notifications:
recipients:
- andreas@aloop.org
| Add ruby 2.4.0 as a build traget | Add ruby 2.4.0 as a build traget
| YAML | mit | BookBub/money-rails,RubyMoney/money-rails,antstorm/money-rails,RubyMoney/money-rails,antstorm/money-rails,BookBub/money-rails,BookBub/money-rails,RubyMoney/money-rails,antstorm/money-rails |
cf63c4003c3d524e611c28c9c3d239b76450cbb6 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- yarn install --no-lockfile
- yarn global add istanbul coveralls
| Install using Yarn at Travis CI. | Install using Yarn at Travis CI.
| YAML | mit | bigeasy/expandable |
e54b5e717d13293d73df28325c5cb533a79410d6 | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: ruby
bundler_args: "--without development"
services:
- rabbitmq
rvm:
- '2.4.1'
- '2.3.3'
- '2.2.7'
- '2.1.10'
gemfile:
- gemfiles/Gemfile.rails-5-0
- gemfiles/Gemfile.rails-4-2
matrix:
exclude:
- rvm: '2.1.10'
gemfile: gemfiles/Gemfile.rails-5-0
script:
- bundle exec rake spec:msgr
- bundle exec rake spec:integration
deploy:
provider: rubygems
api_key:
secure: g8icPMdxEmbpBzSRCDmR3uB+1Zhu7tGq3h0cVbGUka2Ni1NiEiQo3LCDzbMp+L7AXH5RhdsG9FTViIAyCy9YENqZ1+jzrQGeADx0KnJZb6F81/SyumeUld0zdkzDbe1aUCJWz2WnEk12aLMPLNPRmDE7wub+od7gJEEv2SsKObo=
gem: msgr
on:
branch: master
repo: jgraichen/msgr
rvm: 2.3.1
| dist: trusty
sudo: false
language: ruby
bundler_args: "--without development"
services:
- rabbitmq
rvm:
- '2.4.1'
- '2.3.3'
- '2.2.7'
- '2.1.10'
gemfile:
- gemfiles/Gemfile.rails-5-0
- gemfiles/Gemfile.rails-4-2
matrix:
exclude:
- rvm: '2.1.10'
gemfile: gemfiles/Gemfile.rails-5-0
script:
- bundle exec rake spec:msgr
- bundle exec rake spec:integration
deploy:
provider: rubygems
api_key:
secure: g8icPMdxEmbpBzSRCDmR3uB+1Zhu7tGq3h0cVbGUka2Ni1NiEiQo3LCDzbMp+L7AXH5RhdsG9FTViIAyCy9YENqZ1+jzrQGeADx0KnJZb6F81/SyumeUld0zdkzDbe1aUCJWz2WnEk12aLMPLNPRmDE7wub+od7gJEEv2SsKObo=
gem: msgr
on:
branch: master
repo: jgraichen/msgr
rvm: 2.3.3
| Fix release runtime for CI | Fix release runtime for CI
| YAML | mit | jgraichen/msgr,jgraichen/msgr |
218265e5fc13982ce1d6b9073437e76ff6461380 | .travis.yml | .travis.yml | language: ruby
sudo: required
dist: trusty
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.5
- 2.3.1
- ruby-head
- jruby-1.7.26
- jruby-9.1.5.0
- jruby-head
- rbx-3.60
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
sudo: required
dist: trusty
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y haveged
- sudo service haveged start
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.5
- 2.3.1
- ruby-head
- jruby-1.7.26
- jruby-9.1.5.0
- jruby-head
- rbx-3.60
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Install and start haveged to prevent hanging JRuby installs. | Install and start haveged to prevent hanging JRuby installs.
https://github.com/jruby/jruby/wiki/FAQs#why-is-jruby-so-slow-to-install-via-rvm
| YAML | mit | tzinfo/tzinfo |
1f8ffc109ba31110a514e1cd4ed56c2fd92c82d7 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- 6
cache: false # Enabling the cache seems to break travis.
# directories:
# - node_modules
# - build/node_modules
before_install:
npm run uninstall && npm cache clean --force
install: true
branches:
only:
- master
- develop
- travis-ci
| ---
language: node_js
node_js:
- 6
before_install:
npm run uninstall && npm cache clean --force
install:
npm install
branches:
only:
- master
- develop
- travis-ci
| Add explicity install, remove cache | Add explicity install, remove cache
| YAML | mit | AdamSalma/Lurka,AdamSalma/Lurka |
8fb8982edc0127f4777fd6eac8ce22d47f2b20a0 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- TOXENV=py26-1.4.X,py27-1.4.X
- TOXENV=py26-1.5.X,py27-1.5.X
- TOXENV=py26-trunk,py27-trunk
- TOXENV=docs
install:
- pip install -q tox --use-mirrors
script:
- tox
after_script:
- pep8 --exclude=scheduler,locations,ajax --filename=tests.py,urls.py --ignore=E128 ./rapidsms/
- pep8 --exclude=scheduler,locations,ajax,urls.py,urls,tests.py ./rapidsms/
matrix:
allow_failures:
- env: TOXENV=py26-trunk,py27-trunk
notifications:
irc:
- "irc.freenode.org#rapidsms"
| language: python
python:
- "2.7"
env:
- TOXENV=py26-1.4.X
- TOXENV=py27-1.4.X
- TOXENV=py26-1.5.X
- TOXENV=py27-1.5.X
- TOXENV=py26-trunk
- TOXENV=py27-trunk
- TOXENV=docs
install:
- pip install -q tox --use-mirrors
script:
- tox
after_script:
- pep8 --exclude=scheduler,locations,ajax --filename=tests.py,urls.py --ignore=E128 ./rapidsms/
- pep8 --exclude=scheduler,locations,ajax,urls.py,urls,tests.py ./rapidsms/
matrix:
allow_failures:
- env: TOXENV=py26-trunk
- env: TOXENV=py27-trunk
notifications:
irc:
- "irc.freenode.org#rapidsms"
| Test each tox env separately to reduce needed disk space Branch: build-docs-cleanly | Test each tox env separately to reduce needed disk space
Branch: build-docs-cleanly
| YAML | bsd-3-clause | caktus/rapidsms,eHealthAfrica/rapidsms,eHealthAfrica/rapidsms,caktus/rapidsms,catalpainternational/rapidsms,eHealthAfrica/rapidsms,lsgunth/rapidsms,catalpainternational/rapidsms,lsgunth/rapidsms,peterayeni/rapidsms,caktus/rapidsms,lsgunth/rapidsms,ehealthafrica-ci/rapidsms,peterayeni/rapidsms,catalpainternational/rapidsms,peterayeni/rapidsms,lsgunth/rapidsms,peterayeni/rapidsms,ehealthafrica-ci/rapidsms,catalpainternational/rapidsms,ehealthafrica-ci/rapidsms |
5a6690341da2e182d399ac81a99e532961a0d10e | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "iojs"
- "iojs-v1"
- "iojs-v2"
| sudo: false
language: node_js
env:
- CXX="g++-4.8"
node_js:
- "0.10"
- "0.12"
- "4"
- "iojs"
- "iojs-v1"
- "iojs-v2"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- gcc-4.8
| Update to build faketoe properly on new Node | Update to build faketoe properly on new Node | YAML | mit | continuationlabs/usps |
630648bb6930513a7474c664c3142ef59ba2fcfb | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- jruby-21mode
| sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- jruby-21mode
| Add Ruby 2.3 to Travis CI | Add Ruby 2.3 to Travis CI
| YAML | mit | ai/rails-sass-images |
3e876252539db6e89370b5b790ec0f008388bebc | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
sudo: false
before_deploy: mvn clean verify
deploy:
skip_cleanup: true
provider: elasticbeanstalk
access_key_id: AKIAJ6YWVFOX3GHDXVRQ
secret_access_key:
secure: h3fBfh/Vg7wD7A3mRIwXU6ZJFUmgM7PgGKAwTq7BR12oK+v3CUpjbhtAHk9EFTMy4Js/CWn3f38vSGuW06OI5pJQnRmBeO6dsfU1jh6ml+XhKO5MCQHjs/S7N6XYvSlMcSPByBmSCdfmOxyRPiAHPJEE1JHFWbPyGbVJ91X3yXw=
region: us-east-1
app: bridge-exporter-$TRAVIS_BRANCH-application
env: bridge-exporter-$TRAVIS_BRANCH
bucket_name: elasticbeanstalk-us-east-1-649232250620
zip-file: target/Bridge-Exporter-2.0.war
on:
all_branches: true
| language: java
jdk:
- oraclejdk8
sudo: required
before_deploy: mvn clean verify
deploy:
skip_cleanup: true
provider: elasticbeanstalk
access_key_id: AKIAJ6YWVFOX3GHDXVRQ
secret_access_key:
secure: h3fBfh/Vg7wD7A3mRIwXU6ZJFUmgM7PgGKAwTq7BR12oK+v3CUpjbhtAHk9EFTMy4Js/CWn3f38vSGuW06OI5pJQnRmBeO6dsfU1jh6ml+XhKO5MCQHjs/S7N6XYvSlMcSPByBmSCdfmOxyRPiAHPJEE1JHFWbPyGbVJ91X3yXw=
region: us-east-1
app: bridge-exporter-$TRAVIS_BRANCH-application
env: bridge-exporter-$TRAVIS_BRANCH
bucket_name: elasticbeanstalk-us-east-1-649232250620
zip-file: target/Bridge-Exporter-2.0.war
on:
all_branches: true
| Switch to sudo: required to fix Travis build issues | Switch to sudo: required to fix Travis build issues | YAML | apache-2.0 | Sage-Bionetworks/Bridge-Exporter,DwayneJengSage/Bridge-Exporter-1 |
e467e4842ed3d876407daa4d135ef1359c108fc4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.0-preview1
| language: ruby
rvm:
- 2.0.0
- 2.1.0-rc1
| Test in ruby 2.1.0-RC1 in Travis CI | Test in ruby 2.1.0-RC1 in Travis CI
| YAML | bsd-3-clause | kiela/fc-reminder |
c9711cbff2f9774993c103e6048e91eec8735841 | .travis.yml | .travis.yml | language: python
python:
- 2.7
install:
- pip install -U setuptools
- pip install .
| language: python
python:
- 2.7
install:
- pip install -U setuptools
- pip install invoke==0.4.0 pytest==2.3.5
- pip install .
| Add installs of testing framework | Add installs of testing framework
| YAML | apache-2.0 | rgbkrk/bookstore |
3c31805b2ede2aa92b63ea31f9b53fe4362ff31b | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
script: ./gradlew check
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/
notifications:
slack: minibilles:2dXpzGnWFnhbU9WrAEwIPn7g
deploy:
provider: bintray
# on: production
file: 'build/descriptor/descriptor.json'
user: $BINTRAY_API_USER
key: $BINTRAY_API_KEY
| language: java
jdk:
- oraclejdk8
script: ./gradlew descriptor publish
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/
notifications:
slack: minibilles:2dXpzGnWFnhbU9WrAEwIPn7g
deploy:
provider: bintray
# on: production
file: 'build/descriptor/descriptor.json'
user: $BINTRAY_API_USER
key: $BINTRAY_API_KEY
| Build descriptor and publish files | Build descriptor and publish files
| YAML | mit | jeancharles-roger/fr.minibilles.basics,jeancharles-roger/fr.minibilles.basics |
beda2174f5fb048756563ff883bb5d37a223140f | .travis.yml | .travis.yml |
language: c
git:
depth: 3
dist:
trusty
branches:
only:
- master
- dev
sudo: required
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq check
matrix:
include:
## Coverage test
- compiler: gcc
env: ENABLE_COVERAGE=--enable-gcov
before_install: pip install --user cpp-coveralls
after_success:
- coveralls --exclude tests --exclude src/lexer.* --exclude src/lexer.* --exclude src/example.c --exclude src/util.c --gcov-options '\-lp'
## Python bindings test (not compatible with gcov)
- compiler: gcc
env: ENABLE_PYTHON=--enable-python-bindings
before_install:
- pip install --user cython
- pip install --user biopython
after_failure: cat bindings/check-python.log
## Test C library with clang
- compiler: clang
before_script:
- autoreconf -i
- ./configure --enable-check CFLAGS="-fPIC -O2" $ENABLE_COVERAGE $ENABLE_PYTHON
script: make && make check
after_failure: cat test-api.log test-static.log test-memerr.log test-cli.log
|
language: c
git:
depth: 3
dist:
trusty
branches:
only:
- master
- dev
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq check
matrix:
include:
## Coverage test
- compiler: gcc
env: ENABLE_COVERAGE=--enable-gcov
before_install:
- pip install --user cpp-coveralls
- sudo apt-get update -qq
- sudo apt-get install -qq check
after_success:
- coveralls --exclude tests --exclude src/lexer.l --exclude src/lexer.c --exclude src/parser.c --exclude src/parser.y --exclude src/example.c --exclude src/util.c --gcov-options '\-lp'
## Python bindings test (not compatible with gcov)
- compiler: gcc
env: ENABLE_PYTHON=--enable-python-bindings
before_install:
- pip install --user cython
- pip install --user biopython
- sudo apt-get update -qq
- sudo apt-get install -qq check
after_failure: cat bindings/check-python.log
## Test C library with clang
- compiler: clang
before_script:
- autoreconf -i
- ./configure --enable-check CFLAGS="-fPIC -O2" $ENABLE_COVERAGE $ENABLE_PYTHON
script: make && make check
after_failure: cat test-api.log test-static.log test-memerr.log test-cli.log
| Expand before_install, add more exclusions | Expand before_install, add more exclusions
| YAML | mit | JoaoRodrigues/freesasa,mittinatten/freesasa,mittinatten/freesasa,mittinatten/freesasa,mittinatten/freesasa,JoaoRodrigues/freesasa,JoaoRodrigues/freesasa,JoaoRodrigues/freesasa |
74ac804399814df459a1b93bfaf467c0e7b0293b | .travis.yml | .travis.yml | dist: trusty
sudo: required
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-8
- g++-8
- unzip
- libx11-dev
- libfreetype6
- libfreetype6-dev
script:
# Link gcc-8 and g++-8 to their standard commands
- sudo ln -s /usr/bin/gcc-8 /usr/local/bin/gcc
- sudo ln -s /usr/bin/g++-8 /usr/local/bin/g++
# Export CC and CXX to tell cmake which compiler to use
- export CC=/usr/bin/gcc-8
- export CXX=/usr/bin/g++-8
# Get newest cmake
- sudo apt remove cmake
- sudo apt-get purge cmake
- mkdir temp
- cd temp
- wget https://cmake.org/files/v3.11/cmake-3.11.4.tar.gz
- tar -xzf cmake-3.11.4.tar.gz
- cd cmake-3.11.4/
- ./bootstrap
- make
- sudo make install
- cd ..
- cd ..
# Run your build commands next
- mkdir build
- cd build
- /usr/local/bin/cmake ..
- make
- /usr/local/bin/cpack -G DEB
| dist: trusty
sudo: required
services: docker
before_install:
- docker build -t jeniopy/radiostream .
script:
- docker run jeniopy/RadioStream /bin/sh -c "git clone https://github.com/JenioPY/RadioStream.git; cd RadioStream; cmake .; make -j; cpack -G DEB;"
| Switch to using docker for ci. Travis script draft. | Switch to using docker for ci. Travis script draft.
| YAML | mit | JenioPY/RadioStream,JenioPY/RadioStream |
66fe6ef33cf222d122475fcb7fa394a86357b59c | .travis.yml | .travis.yml | language: android
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-23.0.3
# The SDK version used to compile your project
- android-23
# Additional components
- extra-android-m2repository
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-armabi-v7a-android-19
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_script:
- echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
- emulator -avd test -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
after_failure:
- cat ./rxcrypto/build/outputs/lint-results-*.xml | language: android
android:
components:
# Uncomment the lines below if you want to
# use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-23.0.3
# The SDK version used to compile your project
- android-23
# Additional components
- extra-android-m2repository
# Specify at least one system image,
# if you need to run emulator(s) during your tests
- sys-img-x86-android-19
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_script:
- echo no | android create avd --force -n test -t android-19 --abi x86
- emulator -avd test -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
after_failure:
- cat ./rxcrypto/build/outputs/lint-results-*.xml | Configure TravisCI to use x86 emulator | Configure TravisCI to use x86 emulator
| YAML | apache-2.0 | adstro/rx-crypto,adstro/rx-crypto |
0540da9803f79ab285bdebd930e19bb1e65b014d | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.8.x
script:
- make build
| sudo: false
language: go
go:
- 1.8.x
script:
- make build
after_success:
- curl --request POST "https://goreportcard.com/checks" --data "repo=github.com/avarabyeu/goRP"
| Add trigger to update goreportcard after successful build | Add trigger to update goreportcard after successful build
| YAML | mit | avarabyeu/goRP,avarabyeu/goRP |
75c811eec37e1a1c6084839465c0e44c5c207db4 | .travis.yml | .travis.yml | language: ruby
dist: xenial
env:
global:
- CC_TEST_REPORTER_ID=de7062a4090ce5638b515a2cf9f2ab619de3e3f4ff439dc6cdad025c7a8d6b76
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
- jruby-19mode
cache: bundler
before_install:
- gem update --system --conservative || (gem i "rubygems-update:~>2.7" --no-document && update_rubygems) # see: https://github.com/rubygems/rubygems/issues/2534#issuecomment-448843746
- gem update bundler --conservative
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- bundle exec rspec
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| language: ruby
dist: xenial
env:
global:
- CC_TEST_REPORTER_ID=de7062a4090ce5638b515a2cf9f2ab619de3e3f4ff439dc6cdad025c7a8d6b76
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
- jruby-19mode
cache: bundler
before_install:
- gem update --system --conservative || (gem i "rubygems-update:~>2.7" --no-document && update_rubygems) # see: https://github.com/rubygems/rubygems/issues/2534#issuecomment-448843746
- gem update bundler --conservative
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- bundle exec rake spec
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| Test with our custom spec task on Travis | Test with our custom spec task on Travis
To ensure we enable the ObjectSpace flag for JRuby. See our Rakefile for
more info.
| YAML | mit | stevenharman/dumb_delegator |
1fbe70419c34df48d81a46b72336678d60bb0b45 | .travis.yml | .travis.yml | language: ruby
os: linux
dist: focal
jobs:
include:
- rvm: 2.6.7 # Test web AND cli with specific version
gemfile: Gemfile
- rvm: 2.4 # Test only the cli.
gemfile: lib/vimgolf/Gemfile
- rvm: 2.3 # Test only the cli, on older Ruby.
dist: xenial
gemfile: lib/vimgolf/Gemfile
- rvm: 2.0 # Test only the cli, on older Ruby.
dist: trusty
gemfile: lib/vimgolf/Gemfile
services:
- mongodb
before_install:
- ls -l /home/travis/.rvm/gems # Future reference, targets for quick build
- cd `dirname $BUNDLE_GEMFILE`
- pwd # For debug info
- gem install -v 1.16.2 bundler # Travis's Bundler 1.7.6 is causing problems
script:
- bundle exec rake
addons:
apt:
sources:
- mongodb-2.6-precise
code_climate:
repo_token: 87b58d792ac24c87c9eb7957aa3fe7e05f72f800619452853270ed6a8f5b3853
after_success:
- bundle exec codeclimate-test-reporter
| language: ruby
os: linux
dist: focal
env:
- GOLFHOST=https://vimgolf-staging.herokuapp.com
jobs:
include:
- rvm: 2.6.7 # Test web AND cli with specific version
gemfile: Gemfile
- rvm: 2.4 # Test only the cli.
gemfile: lib/vimgolf/Gemfile
- rvm: 2.3 # Test only the cli, on older Ruby.
dist: xenial
gemfile: lib/vimgolf/Gemfile
- rvm: 2.0 # Test only the cli, on older Ruby.
dist: trusty
gemfile: lib/vimgolf/Gemfile
services:
- mongodb
before_install:
- ls -l /home/travis/.rvm/gems # Future reference, targets for quick build
- cd `dirname $BUNDLE_GEMFILE`
- pwd # For debug info
- gem install -v 1.16.2 bundler # Travis's Bundler 1.7.6 is causing problems
script:
- bundle exec rake
addons:
apt:
sources:
- mongodb-2.6-precise
code_climate:
repo_token: 87b58d792ac24c87c9eb7957aa3fe7e05f72f800619452853270ed6a8f5b3853
after_success:
- bundle exec codeclimate-test-reporter
| Use staging environment as GOLFHOST | Use staging environment as GOLFHOST
Since client and server version need to be in sync and one of our tests
hits production, let's run tests against the staging environment where
this branch has already been pushed. That way, the test that hits real
production will still succeed with the gem version already bumped in
this PR.
Tested:
$ GOLFHOST=https://vimgolf-staging.herokuapp.com bundle exec rspec spec/lib/challenge_spec.rb
Passes after having pushed this branch to heroku-staging.
| YAML | mit | igrigorik/vimgolf,igrigorik/vimgolf,igrigorik/vimgolf,igrigorik/vimgolf |
e206493a2b4bf46c39cd66bf6c6680b9da8e0285 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
global:
- DJANGO_TEST_TEMP_DIR=`pwd`"/slack/settings"
matrix:
- DJANGO_VERSION=1.6.2
install:
- pip install -q -r requirements/test.txt
script:
- python manage.py test --settings=slack.settings.test
| language: python
python:
- "2.7"
env:
global:
- DJANGO_TEST_TEMP_DIR=$TRAVIS_BUILD_DIR/slack/settings
matrix:
- DJANGO_VERSION=1.6.2
install:
- pip install -q -r requirements/test.txt
script:
- python manage.py test --settings=slack.settings.test
| Change pwd command to $TRAVIS_BUILD_DIR :bicyclist: | Change pwd command to $TRAVIS_BUILD_DIR :bicyclist:
| YAML | mit | spacebra/django-slack,prontodev/django-slack,prontodev/django-slack,spacebra/django-slack,spacebra/django-slack,alexphelps/django-slack,alexphelps/django-slack,prontodev/django-slack,alexphelps/django-slack |
b9a60aa6dec31877ed7a69bd5a1c8356c1ace9d2 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0
- 2.1
- 2.2
gemfile:
- gemfiles/Gemfile.activerecord-4.1
env:
- DB_ADAPTER=sqlite3
- DB_ADAPTER=mysql2
- DB_ADAPTER=postgresql
before_script:
- mysql -e 'create database microscope_test;'
- psql -c 'create database microscope_test;' -U postgres
script: "echo 'DO IT' && bundle exec rake spec"
notifications:
hipchat:
rooms:
secure: cJWiEh3XNWrEkoeaZd5Kyx3igwOJto+B8jPiyr38Kfv8Z2WLINkHbMQXcd37/tIubX6w9VWjWJ2TuX5cK2H07EraPDDYAHJlnoR/WIPoYwQoXGUWqGH26O2LdBiLs9JcBQ9rKT8K8wmQuxf2rTpY7lN2RoKMjjEjcleWJwQG/3w=
template:
- '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} (<a href="%{build_url}">Build</a>/<a href="%{compare_url}">Changes</a>)'
format: 'html'
| language: ruby
sudo: false
rvm:
- 2.0
- 2.1
- 2.2
gemfile:
- gemfiles/Gemfile.activerecord-4.1
env:
- DB_ADAPTER=sqlite3
- DB_ADAPTER=mysql2
- DB_ADAPTER=postgresql
before_script:
- mysql -e 'create database microscope_test;'
- psql -c 'create database microscope_test;' -U postgres
script: "echo 'DO IT' && bundle exec rake spec"
notifications:
hipchat:
rooms:
secure: cJWiEh3XNWrEkoeaZd5Kyx3igwOJto+B8jPiyr38Kfv8Z2WLINkHbMQXcd37/tIubX6w9VWjWJ2TuX5cK2H07EraPDDYAHJlnoR/WIPoYwQoXGUWqGH26O2LdBiLs9JcBQ9rKT8K8wmQuxf2rTpY7lN2RoKMjjEjcleWJwQG/3w=
template:
- '%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} (<a href="%{build_url}">Build</a>/<a href="%{compare_url}">Changes</a>)'
format: 'html'
| Use new Travis container-based infrastructure | Use new Travis container-based infrastructure
| YAML | bsd-3-clause | mirego/microscope |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.