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 |
|---|---|---|---|---|---|---|---|---|---|
7853234a61f4b11422042c16e0bf1e25fb38cd82 | .travis.yml | .travis.yml | matrix:
include:
- os: linux
dist: trusty
sudo: false
- os: osx
before_install:
- brew update
- brew list protobuf &>/dev/null || brew install protobuf
addons:
apt:
packages:
- libprotobuf-dev
- protobuf-compiler
language: ruby
rvm:
- 2.6.0
- 2.5.0
- 2.4.3
- 2.3.6
- rbx-3
script:
- rake spec
| matrix:
include:
- os: linux
dist: xenial
sudo: false
- os: linux
dist: trusty
sudo: false
- os: osx
before_install:
- brew update
- brew list protobuf &>/dev/null || brew install protobuf
addons:
apt:
packages:
- libprotobuf-dev
- protobuf-compiler
language: ruby
rvm:
- 2.6.0
- 2.5.0
- 2.4.3
- 2.3.6
- rbx-3
script:
- rake spec
| Test on Ubuntu Xenial 16.04 on Travis CI | Test on Ubuntu Xenial 16.04 on Travis CI
| YAML | apache-2.0 | akihikodaki/cld3-ruby,akihikodaki/cld3-ruby |
9f657b7863cb39d83efd46eb5a69231fbed726df | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- rbx-2.2
- jruby-19mode
script: "bundle exec rake spec"
| rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- jruby-19mode
script: "bundle exec rake spec"
| Revert "Rubinius version for Travis" | Revert "Rubinius version for Travis"
This reverts commit 6cc2d62c3ee66f44c96c259b32ee100077653998.
| YAML | mit | laurynas/royal_mail_scraper |
8300375a624432cc8935459a7db45ca5b44adbd8 | .travis.yml | .travis.yml | language: php
php:
- "7.0"
- "5.6"
script: phpunit tests
after_success: bash <(curl -s https://codecov.io/bash)
| language: php
php:
- "7.0"
- "5.6"
script: phpunit --coverage-clover=coverage.xml tests
after_success: bash <(curl -s https://codecov.io/bash)
| Add coverage output to Travis CI test script. | Add coverage output to Travis CI test script.
| YAML | bsd-2-clause | direvus/php-decimal |
69bcae7bcd7af309eaa69669a8e2565308197707 | .travis.yml | .travis.yml | ---
language: python
python: "2.7"
# Use the new container infrastructure
sudo: false
# Install ansible
addons:
apt:
packages:
- python-pip
install:
# Install ansible
- pip install ansible
# Check ansible version
- ansible --version
# Create ansible.cfg with correct roles_path
- printf '[defaults]\nroles_path=../' >ansible.cfg
script:
# Basic role syntax check
- ansible-playbook tests/test.yml -i tests/inventory --syntax-check
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/ | ---
language: python
python: "2.7"
# Use the new container infrastructure
sudo: false
# Install ansible
addons:
apt:
packages:
- python-pip
install:
# Install ansible
- pip install ansible
# Check ansible version
- ansible --version
# Create ansible.cfg with correct roles_path
- printf '[defaults]\nroles_path=../' >ansible.cfg
- ln -snf $PWD ../Jimdo.fastly
script:
# Basic role syntax check
- ansible-playbook tests/test.yml -i tests/inventory --syntax-check
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
| Correct name for role in test | Correct name for role in test
| YAML | mit | Jimdo/ansible-fastly |
7628d2f634603b737b6df022f66264fdb5fb844b | .travis.yml | .travis.yml | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
script:
- ./build.sh
notifications:
webhooks:
secure: "QLltxzNQ+TUgMurX3FuWB37LVsRx6kZBTXk4JG/BELqO5/Xuwzf8ChElW29d4AbwOeYv5ONYyrvdnLtel8MJCMs8rCxZ2kZZtmUtGdUpPeMavmrvDYQeNqHhFYpLu+bEjxuilGoVI2qonI29S3Q9fC+grXsktGPwPmhyulHbwkk="
on_success: always
on_failure: always
on_start: always
| language: csharp
sudo: false
dist: trusty
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
osx_image: xcode8.2
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fi
script:
- ./build.sh
| Update Travis to macOS Sierra | Update Travis to macOS Sierra
[skip appveyor]
| YAML | apache-2.0 | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore |
15d3933ab540c171d75be8af448befbbdc62c0cf | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: groovy
before_install:
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker run -d -p 27017:27017 mongo:latest
script:
- docker build -t sdkman/sdkman-broadcast:2.0.0-SNAPSHOT .
- docker run -d -p 9001:9001 --net=host sdkman/sdkman-broadcast:2.0.0-SNAPSHOT
- "./gradlew check"
after_success:
- docker push sdkman/sdkman-broadcast:2.0.0-SNAPSHOT
cache:
directories:
- "$HOME/.gradle"
# blacklist
branches:
except:
- RELEASE
| sudo: required
services:
- docker
language: groovy
before_install:
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
script:
- docker build -t sdkman/sdkman-broadcast:2.0.0-SNAPSHOT .
- docker run -d -p 9001:9001 --net=host sdkman/sdkman-broadcast:2.0.0-SNAPSHOT
- "./gradlew check"
after_success:
- docker push sdkman/sdkman-broadcast:2.0.0-SNAPSHOT
cache:
directories:
- "$HOME/.gradle"
# blacklist
branches:
except:
- RELEASE
| Remove manual start of docker on CI. | Remove manual start of docker on CI.
| YAML | apache-2.0 | gvmtool/gvm-broadcast-api,sdkman/sdkman-broadcast-api |
9d75d5716b67f4806781e9eb7bac96aee49d0459 | .travis.yml | .travis.yml | language: php
php:
- 5.4
before_script:
- composer install --dev --prefer-source
script: vendor/bin/phpunit --configuration ./build/travis-ci.xml
notifications:
email: false
irc:
channels:
- "irc.freenode.org#phpunit"
use_notice: true
| language: php
php:
- 5.4
- 5.5
before_script:
- composer install --dev --prefer-source
script: vendor/bin/phpunit --configuration ./build/travis-ci.xml
notifications:
email: false
irc:
channels:
- "irc.freenode.org#phpunit"
use_notice: true
| Enable PHP 5.5 for Travis CI | Enable PHP 5.5 for Travis CI
| YAML | bsd-3-clause | sebastianbergmann/phpunit,Firehed/phpunit |
646b8b6aa4af943f6cd9becf77565657ddaf5de9 | .travis.yml | .travis.yml | language: php
php: [5.3, 5.4, 5.5]
services: redis-server
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- composer selfupdate
- composer install --prefer-source
| language: php
php: [5.4, 5.5]
services: redis-server
before_script:
- echo "extension = redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- composer selfupdate
- composer install --prefer-source
| Remove support for php 5.3 | Remove support for php 5.3
| YAML | mit | blablacar/redis-client |
e80c0f89631fb8b05e7727fc502236a392de385c | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# We need to set all the required env variables before running any test
before_script:
export WORKSHOPVENUES_ADMIN_NAME="Your Name"
export WORKSHOPVENUES_ADMIN_EMAIL="youremail@provider.com"
export WORKSHOPVENUES_DB_ENGINE="django.db.backends.postgresql_psycopg2"
export WORKSHOPVENUES_DB_NAME="workshopvenues"
export WORKSHOPVENUES_DB_USER="username"
export WORKSHOPVENUES_DB_PASSWORD="password"
export WORKSHOPVENUES_DB_HOST="localhost"
export WORKSHOPVENUES_DB_PORT=5432
export WORKSHOPVENUES_STATIC_ROOT=""
export WORKSHOPVENUES_STATIC_URL="/static/"
export WORKSHOPVENUES_STATICFILES_ASSETS="static"
export WORKSHOPVENUES_SECRET_KEY=""
export WORKSHOPVENUES_DEBUG="True"
export WORKSHOPVENUES_ALLOWED_HOSTS="*"
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
export AWS_STORAGE_BUCKET_NAME=''
export SENDGRID_USERNAME=''
export SENDGRID_PASSWORD=''
# command to run tests, e.g. python setup.py test
script: workshopvenues/manage.py test --settings=workshopvenues.settings_test venues
| language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -r requirements.txt
# We need to set all the required env variables before running any test
before_script:
- export WORKSHOPVENUES_ADMIN_NAME="Your Name"
- export WORKSHOPVENUES_ADMIN_EMAIL="youremail@provider.com"
- export WORKSHOPVENUES_DB_ENGINE="django.db.backends.postgresql_psycopg2"
- export WORKSHOPVENUES_DB_NAME="workshopvenues"
- export WORKSHOPVENUES_DB_USER="username"
- export WORKSHOPVENUES_DB_PASSWORD="password"
- export WORKSHOPVENUES_DB_HOST="localhost"
- export WORKSHOPVENUES_DB_PORT=5432
- export WORKSHOPVENUES_STATIC_ROOT=""
- export WORKSHOPVENUES_STATIC_URL="/static/"
- export WORKSHOPVENUES_STATICFILES_ASSETS="static"
- export WORKSHOPVENUES_SECRET_KEY=""
- export WORKSHOPVENUES_DEBUG="True"
- export WORKSHOPVENUES_ALLOWED_HOSTS="*"
- export AWS_ACCESS_KEY_ID=''
- export AWS_SECRET_ACCESS_KEY=''
- export AWS_STORAGE_BUCKET_NAME=''
- export SENDGRID_USERNAME=''
- export SENDGRID_PASSWORD=''
# command to run tests, e.g. python setup.py test
script: workshopvenues/manage.py test --settings=workshopvenues.settings_test venues
| Fix syntax of the TravisCI configuration file. | Fix syntax of the TravisCI configuration file.
| YAML | bsd-3-clause | andreagrandi/workshopvenues |
3cab3c1531764741cae12781004bd45e17699014 | .travis.yml | .travis.yml | language: node_js
python:
- "2.7"
node_js:
- 10
install:
- pip install pytest
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: node_js
python:
- "3.5"
node_js:
- 10
install:
- pip install pytest
after_success:
- bash <(curl -s https://codecov.io/bash)
| Change Travis Python version to 3.5 | Change Travis Python version to 3.5
The Travis build crashed during pip install pytest with a permission denied error, but there were also InsecurePlatformWarning messages that recommended a newer Python version. | YAML | mit | thinkulum/generator-python-cmd,thinkulum/generator-python-cmd |
6e6b4e8a91f62aac8e15b9a4f95b67d158d1938f | .travis.yml | .travis.yml | language: php
sudo: false
env:
global:
- SYMFONY_VERSION="2.8.*"
- RUN_PHPCS="no"
- COMPOSER_FLAGS=""
matrix:
include:
- php: 5.5
- php: 5.5
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
- php: 5.6
env: SYMFONY_VERSION="2.7.*"
- php: 5.6
env: RUN_PHPCS="yes" SYMFONY_VERSION="3.1.*"
- php: 7.0
- php: 7.0
env: SYMFONY_VERSION="3.2.*"
- php: 7.0
env: SYMFONY_VERSION="3.3.*@dev"
- php: 7.1
- php: nightly
- php: hhvm
allow_failures:
- php: nightly
- php: hhvm
before_script:
- composer self-update
- composer require --no-update symfony/templating:${SYMFONY_VERSION}
- composer update $COMPOSER_FLAGS
script:
- vendor/bin/phpunit
- if [ "$RUN_PHPCS" == "yes" ]; then vendor/bin/phpcs -p --report=full --extensions=php --standard=.travis/phpcs/Joomla/ruleset.xml src/; fi;
| language: php
sudo: false
env:
global:
- SYMFONY_VERSION="2.8.*"
- RUN_PHPCS="no"
- COMPOSER_FLAGS=""
matrix:
include:
- php: 5.5
- php: 5.5
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
- php: 5.6
env: SYMFONY_VERSION="2.7.*"
- php: 5.6
env: RUN_PHPCS="yes" SYMFONY_VERSION="3.1.*"
- php: 7.0
- php: 7.0
env: SYMFONY_VERSION="3.2.*"
- php: 7.0
env: SYMFONY_VERSION="3.3.*@dev"
- php: 7.1
- php: nightly
allow_failures:
- php: nightly
before_script:
- composer self-update
- composer require --no-update symfony/templating:${SYMFONY_VERSION}
- composer update $COMPOSER_FLAGS
script:
- vendor/bin/phpunit
- if [ "$RUN_PHPCS" == "yes" ]; then vendor/bin/phpcs -p --report=full --extensions=php --standard=.travis/phpcs/Joomla/ruleset.xml src/; fi;
| Remove HHVM from test matrix | Remove HHVM from test matrix
| YAML | lgpl-2.1 | joomla-framework/renderer |
40a33207bfa2e78b0ca62ddd0d2b8328ffffde2d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '12'
- '14'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '12'
- '14'
- '16'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
| Build with Node.js 16 at Travis CI. | Build with Node.js 16 at Travis CI.
See #31.
| YAML | mit | bigeasy/cliffhanger |
0ec4419b6424af8056280d194459383f6e887ddd | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.4
- 2.5
before_script:
- cp config/database.yml_travis config/database.yml
- bundle exec rake db:create
after_success:
- bundle exec codeclimate-test-reporter
addons:
code_climate:
repo_token: 77087e4bd5341508f7b5fd16196425c54cb6fed60935c5a635b14bcff87757d5
| language: ruby
cache: bundler
sudo: false
services:
- postgresql
rvm:
- 2.4
- 2.5
before_script:
- cp config/database.yml_travis config/database.yml
- bundle exec rake db:create
after_success:
- bundle exec codeclimate-test-reporter
addons:
code_climate:
repo_token: 77087e4bd5341508f7b5fd16196425c54cb6fed60935c5a635b14bcff87757d5
| Make sure postgresql is running | Make sure postgresql is running
| YAML | mit | kif-ev/oskiosk-server,kif-ev/oskiosk-server |
f198395e0b16364cdda9153b62c7d2f29b893017 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
| language: node_js
node_js:
- "0.11"
- "0.10"
| Remove support for node 0.8 | Remove support for node 0.8
| YAML | apache-2.0 | crosswalk-project/DEPRECATED-crosswalk-apk-generator,crosswalk-project/DEPRECATED-crosswalk-apk-generator,crosswalk-project/DEPRECATED-crosswalk-apk-generator,crosswalk-project/DEPRECATED-crosswalk-apk-generator |
2e320d5252f1d00b9af3cea298acce8e30080935 | .travis.yml | .travis.yml | language: haskell
install:
- ghc --version
- cabal --version
- sudo apt-get install libfcgi-dev
- cabal unpack wai-logger
- mv wai-logger-* wai-logger
- cabal install hspec doctest HTTP cabal-meta cabal-src
- cabal-meta install --force-reinstalls
script: mega-sdist --test
| language: haskell
ghc:
- 7.6
- 7.8
install:
- ghc --version
- cabal --version
- sudo apt-get install libfcgi-dev
- cabal unpack wai-logger
- mv wai-logger-* wai-logger
- cabal install hspec doctest HTTP cabal-meta cabal-src
- cabal-meta install --force-reinstalls
script: mega-sdist --test
| Enable Travis testing on GHC 7.6 and 7.8 | Enable Travis testing on GHC 7.6 and 7.8
This verifies that the doctest/fast-logger issues are all resolved on GHC 7.6 and 7.8.
| YAML | mit | dylex/wai,utdemir/wai,urbanslug/wai,rgrinberg/wai,sordina/wai,creichert/wai,ygale/wai,utdemir/wai,awpr/wai,awpr/wai,dylex/wai,tolysz/wai,tolysz/wai,awpr/wai,urbanslug/wai,erikd/wai,dylex/wai,jberryman/wai,erikd/wai,mfine/wai,AndrewRademacher/wai,rgrinberg/wai,iquiw/wai,mfine/wai,iquiw/wai,ygale/wai,frontrowed/wai,iquiw/wai,soenkehahn/wai,utdemir/wai,ygale/wai,creichert/wai,coypoop/wai,sordina/wai,frontrowed/wai,erikd/wai,tolysz/wai,awpr/wai,kazu-yamamoto/wai,rgrinberg/wai,mfine/wai,urbanslug/wai,sordina/wai,kazu-yamamoto/wai,erikd/wai,yesodweb/wai,jberryman/wai,coypoop/wai,sordina/wai,soenkehahn/wai,coypoop/wai,soenkehahn/wai,iquiw/wai,dylex/wai,frontrowed/wai,utdemir/wai,AndrewRademacher/wai,rgrinberg/wai,mfine/wai,tolysz/wai,yesodweb/wai,AndrewRademacher/wai,coypoop/wai,AndrewRademacher/wai,jberryman/wai,ygale/wai,rgrinberg/wai,jberryman/wai,frontrowed/wai,soenkehahn/wai,urbanslug/wai |
a4a433fa64a484b25639a8806d2a68bba6661f2b | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
notifications:
irc:
channels: chat.freenode.net#bitsquare.io
template:
- '%{message} (%{repository}#%{build_number}, %{duration})'
- '%{repsitory}/%{branch} %{commit} %{author}: %{commit_message}'
- '%{build_url}'
on_success: always
on_failure: always
use_notice: true
skip_join: true
| language: java
jdk: oraclejdk8
notifications:
irc:
channels: chat.freenode.net#bitsquare.io
template:
- '%{message} (%{repository}#%{build_number}, %{duration})'
- '%{repsitory}/%{branch} %{commit} %{author}: %{commit_message}'
- '%{build_url}'
on_success: always
on_failure: always
use_notice: true
skip_join: false
| Set skip_join to false in Travis IRC config | Set skip_join to false in Travis IRC config
Per http://docs.travis-ci.com/user/notifications/#IRC-notification.
Bypassing joining the room cuts down on login/logout noise in the IRC
channel. But because #bitsquare.io currently has the -n flag set we
need to explicitly log in.
See #86
| YAML | agpl-3.0 | sakazz/exchange,bisq-network/exchange,ManfredKarrer/exchange,myteer/bitsquare,bisq-network/exchange,myteer/bitsquare,metabit/bitsquare,ManfredKarrer/exchange,haiqu/bitsquare,haiqu/bitsquare,bitsquare/bitsquare,metabit/bitsquare,bitsquare/bitsquare,sakazz/exchange |
1b06e774d172d8d309cb4f7a994bc043315a8823 | .travis.yml | .travis.yml | language: node_js
before_install:
- yarn config set ignore-engines true
node_js:
- "4"
- "6"
- "8"
- "10"
| language: node_js
before_install:
- yarn config set ignore-engines true
node_js:
- "6"
- "8"
- "10"
| Update Travis since yarn fails on node v4 | Update Travis since yarn fails on node v4
| YAML | mit | 101100/xbee-rx |
376d1bf69938ef1b03ae2daae5793b69caa2a9e0 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
before_install:
- gem install ruby-debug-ide
- nvm install 8.11.3
- echo "8.11.3" > .nvmrc
before_script:
- nvm use
- npm install -g typescript -v 2.1.5
- npm install
- cd client && npm install && cd ..
- cd server && npm install && cd ..
- npm run compile
script: nvm use && npm run test && npm run test-debugger
| language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
before_install:
- gem install ruby-debug-ide
- nvm install 8.11.3
- echo "8.11.3" > .nvmrc
before_script:
- nvm use
- npm install
- cd client && npm install && cd ..
- cd server && npm install && cd ..
- npm run compile
script: nvm use && npm run test && npm run test-debugger
| Remove global typescript install on Travis | Remove global typescript install on Travis
| YAML | mit | rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby,rubyide/vscode-ruby |
655bf34180a29bd409f7d8d26a34c31547fc6ae3 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --no-interaction
script:
- composer validate --strict
- find src tests -name *.php | xargs -n 1 -P4 php -l
- vendor/bin/phpunit
| language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --no-interaction
script:
- composer validate --strict
- find src tests -name *.php | xargs -n 1 -P4 php -l
- vendor/bin/phpunit
| Remove PHP 5.5 target, add 7.1 target | Travis: Remove PHP 5.5 target, add 7.1 target | YAML | bsd-2-clause | mollie/oauth2-mollie-php |
5782e0a4635ab1d0e50c70c1043df84ed7607cdf | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
| sudo: false
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
| Configure Travis CI for better build performance | [TASK] Configure Travis CI for better build performance
* set sudo: false to allow Travis to use the container-based infrastructure
* enable bundler caching
| YAML | mit | neomadara/rails_best_practices,flyerhzm/rails_best_practices,neomadara/rails_best_practices,beanieboi/rails_best_practices,sideci-sample/sideci-sample-rails_best_practices,flyerhzm/rails_best_practices,railsbp/rails_best_practices,beanieboi/rails_best_practices,andela-iokonkwo/rails_best_practices,railsbp/rails_best_practices,andela-iokonkwo/rails_best_practices,beanieboi/rails_best_practices,sideci-sample/sideci-sample-rails_best_practices,railsbp/rails_best_practices,andela-iokonkwo/rails_best_practices,neomadara/rails_best_practices |
50e17f4af116091acc0378731e5547f2e14a702f | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.11'
| language: node_js
node_js:
- '0.10'
- '0.11'
- '0.12'
- 'iojs'
sudo: false
| Add tests for node 0.12 and iojs, container-based | Add tests for node 0.12 and iojs, container-based
| YAML | mit | klei/gulp-inject,klei/gulp-inject |
caa9193208ddb9cbb3ff5abbce0f5f696d9b1333 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
env:
- SYMFONY_VERSION=2.6.*
matrix:
include:
- php: 5.3.3
env: SYMFONY_VERSION=2.3.* COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*
allow_failures:
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*
before_script:
- composer self-update
- composer require symfony/symfony:${SYMFONY_VERSION} --no-update
- composer update --prefer-dist $COMPOSER_FLAGS
script:
- phpunit
notifications:
irc: "irc.freenode.org#symfony-cmf"
email: "symfony-cmf-devs@googlegroups.com"
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache
env:
- SYMFONY_VERSION=2.6.*
matrix:
include:
- php: 5.3.3
env: SYMFONY_VERSION=2.3.* COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: SYMFONY_VERSION=2.3.*
- php: 5.6
env: SYMFONY_VERSION=2.5.*
- php: 5.6
env: SYMFONY_VERSION=2.7.*
- php: 5.6
env: SYMFONY_VERSION=3.0.*
allow_failures:
- php: 5.6
env: SYMFONY_VERSION=3.0.*
before_script:
- composer self-update
- composer require symfony/symfony:${SYMFONY_VERSION} --no-update
- composer update --prefer-dist $COMPOSER_FLAGS
script:
- phpunit
notifications:
irc: "irc.freenode.org#symfony-cmf"
email: "symfony-cmf-devs@googlegroups.com"
| Make Symfony 2.7 support a requirement | Make Symfony 2.7 support a requirement | YAML | mit | symfony-cmf/RoutingAuto |
25288e3b0fa5be95140039c5dbcc16a7a42c5ebf | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rake ci"
cache: false
rvm:
- 2.1.3
- 2.1.6
- 2.2.3
- 2.3.0
sudo: false
services:
- redis-server
addons:
code_climate:
repo_token: 9b8c58a49bdfba5582d6a766fbe198e3720158e5e65c2ae00b1667e5e1bb8769
env: CI=yes
before_install: 'gem install bundler -v "~> 1.11.0"'
matrix:
allow_failures:
- rvm: 2.3.0
| language: ruby
bundler_args: --without debug
script: "bundle exec rake ci"
cache: false
rvm:
- 2.1.3
- 2.1.6
- 2.2.3
- 2.3.0
sudo: false
services:
- redis-server
addons:
code_climate:
repo_token: 9b8c58a49bdfba5582d6a766fbe198e3720158e5e65c2ae00b1667e5e1bb8769
env: CI=yes
before_install: 'gem install bundler -v "~> 1.11.0"'
matrix:
allow_failures:
- rvm: 2.1.6
- rvm: 2.2.3
- rvm: 2.3.0
| Allow Travis failures for unsupported Rubies | Allow Travis failures for unsupported Rubies
Krikri is still in version 0.x. DPLA develops with Ruby version 2.1.3
and is still deploying with that version. Bundler 1.13.0 was recently
released, and it generates errors evaluating our Gemfile. The
known-good version of bundler, 1.11, can be installed with
before_install in .travis.ci, but its use is overridden when Travis
runs -- `bundle install' happens with 1.13 and I haven't figured out how
to change that. This does not happen with the 2.1.3 build.
Because of time pressures, I am moving Ruby versions 2.1.6 and 2.2.3
into the `allow_failures' list in .travis.yml. I intend to revisit the
issue with Travis and fix the document the root cause of the bundler
failures.
Note that the existing `before_install' directive in .travis.yml has not
been effectively enforcing "~> 1.11.0" even for successful builds. (Check
the Travis build logs, e.g.
https://travis-ci.org/dpla/KriKri/jobs/158281268 .)
| YAML | mit | dpla/KriKri,dpla/KriKri,dpla/KriKri,dpla/KriKri |
2d8139c0e3bbdb9f6abe5dbd9d064b11dd8fca16 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "2.7"
- "2.6"
install:
- "pip install . --use-mirrors"
script: python -m test.test_facebook
env:
global:
- FACEBOOK_APP_ID=198798870326423
- FACEBOOK_SECRET=2db4d76fe8a336cf292470c20a5a5684
| language: python
python:
- "3.3"
- "2.7"
- "2.6"
install:
- "pip install flake8 --use-mirrors"
- "pip install . --use-mirrors"
before_script: flake8 --exclude=docs,setup.py .
script: python -m test.test_facebook
env:
global:
- FACEBOOK_APP_ID=198798870326423
- FACEBOOK_SECRET=2db4d76fe8a336cf292470c20a5a5684
| Add flake8 to Travis configuration. | Add flake8 to Travis configuration.
| YAML | apache-2.0 | Aloomaio/facebook-sdk,mobolic/facebook-sdk |
0ab6959493613d503d166e1ab7fbd29d73b7d810 | .travis.yml | .travis.yml | sudo: false # or required
language: python
python:
- 2.7
- 3.5
os: trusty
env:
- YAMBO_VERSION=4.1 PW_version=5.4
# - any combination of versions
matrix:
allow_failures:
- python: 3.5 # Builds using this version can fail without compromising the end result
fast_finish: true # Don't wait for the test on Py3.5 to finish to ack
# Add to the matrix of jobs
# - os: osx
# language: objective-c
# env: PYENV_VERSION=2.7.12
# - os: osx
# language: objective-c
# env: PYENV_VERSION=3.5.2
install:
- "./tests/install.sh -y YAMBO_VERSION -pw PW_VERSION"
script:
- "./tests/run.sh"
# safelist
branches:
only:
- travis
deploy:
skip_cleanup: true
| sudo: false # or required
language: python
python:
- 2.7
- 3.5
os: trusty
env:
- YAMBO_VERSION=4.1 PW_VERSION=5.4
# - any combination of versions
matrix:
allow_failures:
- python: 3.5 # Builds using this version can fail without compromising the end result
fast_finish: true # Don't wait for the test on Py3.5 to finish to ack
# Add to the matrix of jobs
# - os: osx
# language: objective-c
# env: PYENV_VERSION=2.7.12
# - os: osx
# language: objective-c
# env: PYENV_VERSION=3.5.2
install:
- "./tests/install.sh -y YAMBO_VERSION -pw PW_VERSION"
script:
- "python ./tests/test_si.py -f"
# safelist
branches:
only:
- travis
deploy:
skip_cleanup: true
| Add call to test script | Add call to test script
| YAML | bsd-3-clause | alexandremorlet/yambopy,henriquemiranda/yambopy,alexmoratalla/yambo-py,palful/yambopy,alexmoratalla/yambo-py,alexmoratalla/yambopy,palful/yambopy,alexandremorlet/yambopy,henriquemiranda/yambo-py,henriquemiranda/yambo-py,henriquemiranda/yambopy,alexmoratalla/yambopy |
93e21316a1b11d75c395a442d0f0c6002ba1f100 | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
branches:
- /.*/
install:
- npm install
script:
- npm test
| language: node_js
node_js:
- "stable"
services:
- docker
branches:
- /.*/
before_install:
- docker build -t lgallinaro/rr3js .
- docker run lgallinaro/rr3js /bin/bash -c "npm test"
install:
- npm install
script:
- npm test
after_success:
- if ["$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push lgallinaro/rr3js;
fi
| Add docker push settings/build step to pipeline | Add docker push settings/build step to pipeline
| YAML | mit | GLNRO/react-redux-threejs,GLNRO/react-redux-threejs |
0da11f1827027446ea377f873135564942b4c31e | .travis.yml | .travis.yml | before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- sudo apt-get update
install:
- sudo apt-get install rust-nightly
script:
- make
- sudo make install
- sudo make uninstall
- make clean
- make doc
| env:
global:
- secure: eEAXQP0S4A9RQv4rQYGbGDgdQ2McwCGtjW4QA6oaWXxPnQLaaylRRmdKvNpgfVmWQr6gf2mcpJKar6Ys4OF7xBUTze2ObSCfBIqS4ovK72XMA4kOAonqeq7pxq/OXzKd4eN5BX2DyXxZ5nlPqr2HT7Wb/CjpazKyQ+fCsjKtyzY=
before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- sudo apt-get update
install:
- sudo apt-get install rust-nightly
script:
- make
- sudo make install
- sudo make uninstall
- make clean
- make doc
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
| Enable Rust CI doc upload | Enable Rust CI doc upload
| YAML | apache-2.0 | sebcrozet/alga,sebcrozet/alga,WaDelma/alga,WaDelma/algebra |
f66434d84c40014268959727e7573caa65394086 | .travis.yml | .travis.yml | # See:
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/languages/python
language: python
python:
#- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # currently points to 3.6-dev
install:
- pip install -r requirements.txt
- pip install coverage
script:
- coverage run -m unittest discover -s tests
after_success:
- pip install coveralls
- coveralls
after_script:
- coverage report
- pip install pep8 #pyflakes
#- pyflakes *.py | tee >(wc -l)
- pep8 --statistics --count *.py
matrix:
fast_finish: true
| # See:
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/languages/python
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # currently points to 3.6-dev
install:
- pip install -r requirements.txt
- pip install coverage
script:
- coverage run -m unittest discover -s tests
after_success:
- pip install coveralls
- coveralls
after_script:
- coverage report
- pip install pep8 #pyflakes
#- pyflakes *.py | tee >(wc -l)
- pep8 --statistics --count *.py
matrix:
fast_finish: true
| Change Python versions for Travis | Change Python versions for Travis
| YAML | isc | araile/python-botutil |
beed86ff3770f2b90ba6a4a86e8acf02f2c35c61 | .travis.yml | .travis.yml | dist: trusty
language: node_js
node_js:
- "10"
script:
- yarn test --coverage
- yarn e2e
after_success:
- cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
| dist: trusty
language: node_js
node_js:
- "10"
cache:
# cache both npm modules and Cypress binary
directories:
- ~/.npm
- ~/.cache
script:
- yarn test --coverage
- yarn e2e
after_success:
- cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
| Update for accessing missing binary | Update for accessing missing binary
| YAML | mit | gillesdemey/mermaid,knsv/mermaid,knsv/mermaid,gillesdemey/mermaid,gillesdemey/mermaid |
62c8279e9745bf5e90bc0f4648fb6427d9854813 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.1
| sudo: false
language: ruby
cache: bundler
rvm: 2.3.1
deploy:
provider: rubygems
api_key:
secure: hL0h5W084SQgCMufhUYzzrLq0krzt+C5WgmobbB81f684XJ+2FG6SvouPSzrAKLjgv/Ksk3G+oqr6kvTSV7L20+le+dpkE7c1lXDuwzs8Kd/VVr1ZJxDOu5Mn0NcVGvEdl+qKT8GLrz1KskK7QQdld0e+k3F7U+7ixtd2uz9GSZfBBjFSYTc38aa9O9EM0DqzYp717oDxZKChlB5p5G6btawpBGpdjayU+h/x8Pk2XIFTlrZ4lGml5Qku01mjFeBZ2noRl6EYLK1q64bKJ8H1cCyqTVNr2cm9Z+YCi9Wp35SZESDRkNhg6vDOB4zPYzaJZSMpTzjTtyKoI2nroOUjsd0GEAupoumeWqjQSWxtxSTdzHM6OVJe3FI0YPSYk7eVpZbYjvzvHXjJPHgakOIGbrV60+DLaBF07vD4JazoxgG8EKXwJHIF1XvCdXQSns0VcCetaL4wmQvB0pKkf0eWVwhfvAm511i9oHKUhzslIUx2b9vBwi+r3Ed5mLRX21Pr4suVDWpWmaqQL2+8iFMbz0D2/kRFisY8Ym+HoPeaX/yUWsblG311ozQpcqmqWZk7YSUnA4NBWFMJY40G11DWDRNI/8UJrTjyLDGEB/gnIQe8OFDQuYW8iTH8C1VjCCR61WwW0YR9q3hhG4mvx/qM5TwWnrF7xC0uOIlrxOSVlE=
gem: slate-installer
on:
tags: true
repo: kjg/slate-installer
| Deploy to rubgems on new tags | Deploy to rubgems on new tags
| YAML | mit | kjg/slate-installer,kjg/slate-installer |
fa20bb0131333e84acfdac80962aca3496153990 | .travis.yml | .travis.yml | # YAML definition for travis-ci.com continuous integration.
# See https://docs.travis-ci.com/user/languages/c
language: c
compiler:
- gcc
before_script:
- mkdir build
- cd build
- cmake -G 'Unix Makefiles' ..
script:
- make
after_success:
- sudo apt-get install python3
- ../scripts/run-commonmark-tests.sh
| # YAML definition for travis-ci.com continuous integration.
# See https://docs.travis-ci.com/user/languages/c
language: c
compiler:
- gcc
before_script:
- mkdir build
- cd build
- CFLAGS='-g -O0 --coverage' cmake -G 'Unix Makefiles' ..
script:
- make
after_success:
- sudo apt-get install python3
- pip install --user cpp-coveralls
- ../scripts/run-commonmark-tests.sh
- coveralls -r md4c
| Create coverage data and upload them to coverage.io. | .trevis.yml: Create coverage data and upload them to coverage.io.
| YAML | mit | mity/md4c,mity/md4c,mity/md4c |
8b1fb8933c76f5dd2eafc28a02624302e6ef14fc | .travis.yml | .travis.yml | language: java
deploy:
provider: releases
api_key:
secure: "d4ehSZ2dgGAjBmwWeRX1HJNZOXdI9/fv1OR5mObQnHcrKj6efg53VAUfG0fFjp8+1HaxPp9NJO3ZbglhayiJN2RSuxBHYU/f6qqRqUAThLLG5Wt0OEqG8IHcxZhYHS3LHLQMo0dK5ihHwV3MoU1B9FdCq0Ci1yMLBvBAxBOOr4U="
file-glob: true
file: "build/libs/NBT-*.jar"
skip_cleanup: true
on:
tags: true
all_branches: true
| language: java
deploy:
provider: releases
api_key:
secure: "d4ehSZ2dgGAjBmwWeRX1HJNZOXdI9/fv1OR5mObQnHcrKj6efg53VAUfG0fFjp8+1HaxPp9NJO3ZbglhayiJN2RSuxBHYU/f6qqRqUAThLLG5Wt0OEqG8IHcxZhYHS3LHLQMo0dK5ihHwV3MoU1B9FdCq0Ci1yMLBvBAxBOOr4U="
file-glob: true
file: "build/libs/NBT-*.jar"
skip_cleanup: true
on:
tags: true
all_branches: true
sudo: false
| Switch Travis builds to container-based infrastructure | Switch Travis builds to container-based infrastructure
| YAML | mit | Codeski/NBT |
f3945035e60fdeeebde6145b55c0ee100ce821db | .travis.yml | .travis.yml | language: ruby
bundler_args: --without profile
notifications:
irc: "irc.freenode.org#axlsx"
email:
recipients:
- digital.ipseity@gmail.com
on_success: always
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- rbx
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
before_install:
- gem install nokogiri -- --with-cflags='--std=gnu99'
| language: ruby
bundler_args: --without profile
notifications:
irc: "irc.freenode.org#axlsx"
email:
recipients:
- digital.ipseity@gmail.com
on_success: always
rvm:
- 1.9.2
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx
- jruby-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
before_install:
- gem install nokogiri -- --with-cflags='--std=gnu99'
| Add ruby 2.2 to TravisCI and allow to use minor version of 2.0, 2.1 | Add ruby 2.2 to TravisCI and allow to use minor version of 2.0, 2.1
| YAML | mit | mromulus/axlsx,woto/axlsx,Debiancc/axlsx,VueOps/axlsx,bradstewart/axlsx,alexanderfrankel/axlsx,kappiah/axlsx,raghavendra-prithvi/axlsx,pedrogarrett/axlsx,romuloceccon/axlsx,sh-ft/axlsx,clarkcutler/axlsx,legitscript/axlsx,randym/axlsx |
47b961584b64e93935f4d0dbe4c6580a0c97962a | .travis.yml | .travis.yml | language: python
python:
- 2.7
install:
- pip install -r requirements.txt
script:
- cd tests
- nosetests --cover-tests --with-coverage --cover-package=dyfunconn
| language: python
python:
- 2.7
install:
- pip install -r requirements.txt
script:
- cd /home/travis/build/makism/dyfunconn/tests/
- nosetests --cover-tests --with-coverage --cover-package=dyfunconn
| Change to the tests directory | Change to the tests directory | YAML | bsd-3-clause | makism/dyfunconn |
aa589135055eb3addf7ca6e14c18d93244bf8722 | .travis.yml | .travis.yml | language: ruby
cache: bundler
addons:
apt:
packages:
- redis-server
services:
- redis-server
before_install:
- sudo sed -e 's/^bind.*/bind 127.0.0.1/' /etc/redis/redis.conf > redis.conf
- sudo mv redis.conf /etc/redis
- sudo service redis-server start
- echo PING | nc localhost 6379
rvm:
- 2.2
- 2.3.7
- 2.4.4
- 2.5.1
before_script:
- git config --local user.email "travis@travis.ci"
- git config --local user.name "Travis CI"
script:
- redis-cli --version
- bundle exec rspec
- bundle exec overcommit --sign
- bundle exec overcommit --run
matrix:
allow_failures:
- rvm: 2.1.0
| language: ruby
cache: bundler
addons:
apt:
packages:
- redis-server
services:
- redis-server
before_install:
- sudo sed -e 's/^bind.*/bind 127.0.0.1/' /etc/redis/redis.conf > redis.conf
- sudo mv redis.conf /etc/redis
- sudo service redis-server start
- echo PING | nc localhost 6379
rvm:
- 2.4.6
- 2.5.5
- 2.6.3
before_script:
- git config --local user.email "travis@travis.ci"
- git config --local user.name "Travis CI"
script:
- redis-cli --version
- bundle exec rspec
- bundle exec overcommit --sign
- bundle exec overcommit --run
| Update TravisCI config to remove unsupported Rubies | Update TravisCI config to remove unsupported Rubies
This was missed in 83c90c14.
While here, update the existing list of Rubies we do support.
| YAML | mit | brigade/mock_redis |
621fe461557e640cdd6cece708b046ccf5a8ded6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
sudo: false
script:
- npm run test-with-cov
after_success:
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_TOKEN ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info
git:
depth: 10 | language: node_js
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
sudo: false
script:
- npm run test-with-cov
after_success:
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_TOKEN ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info
git:
depth: 10
| Add node 8 to build process | Add node 8 to build process
Signed-off-by: Peter Reid <4b8373d016f277527198385ba72fda0feb5da015@reidweb.com>
| YAML | mit | ReidWeb/GitInspector-CSV |
465dddd74073a3fcf8e21e1628369b66deba4fed | .travis.yml | .travis.yml | language: ruby
cache: bundler
before_install:
- gem install bundler
rvm:
- 2.2
- 2.1
- 2.0
matrix:
fast_finish: true
| language: ruby
cache: bundler
before_install:
- gem install bundler
rvm:
- 2.3
- 2.2
matrix:
fast_finish: true
| Add Ruby v2.3 to Travis config | Add Ruby v2.3 to Travis config
| YAML | mit | vitalie/webshot |
aff5eb3c0bd100187e1eec7bd643df0a6cce9104 | .travis.yml | .travis.yml | language: c
script: bash -ex .travis-ci.sh
env:
- OCAML_VERSION=4.01.0 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0
- OCAML_VERSION=4.00.1 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0
- OCAML_VERSION=4.00.1 MIRAGE_BACKEND=xen OPAM_VERSION=1.1.0
- OCAML_VERSION=4.01.0 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0 XARCH=arm
| language: c
script: bash -ex .travis-ci.sh
env:
- OCAML_VERSION=4.01.0 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0
- OCAML_VERSION=4.00.1 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0
- OCAML_VERSION=4.00.1 MIRAGE_BACKEND=xen OPAM_VERSION=1.1.0
- OCAML_VERSION=4.01.0 MIRAGE_BACKEND=xen OPAM_VERSION=1.1.0
- OCAML_VERSION=4.01.0 MIRAGE_BACKEND=unix OPAM_VERSION=1.0.0 XARCH=arm
| Add 4.01.0+xen to the Travis build matrix | Add 4.01.0+xen to the Travis build matrix
| YAML | isc | mato/mirage-solo5,mato/mirage-solo5 |
91cabb3641da0bdc1c2c360afb55210169080905 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_script:
- sudo add-apt-repository ppa:eyecreate/haxe -y
- sudo apt-get update
- sudo apt-get install haxe -y
- mkdir ~/haxelib
- haxelib setup ~/haxelib
- haxelib install hxjava
- haxelib git debugger https://github.com/TiVo/debugger.git
- mkdir build
- mkdir report
script: make ANT_TARGET=$ANT_TARGET test
env:
- IDEA_VERSION=14.0.5 ANT_TARGET=test
- IDEA_VERSION=14.1.7 ANT_TARGET=test
- IDEA_VERSION=15.0.6 ANT_TARGET=compile_test
- IDEA_VERSION=2016.1.4 ANT_TARGET=compile_test
- IDEA_VERSION=2016.2.5 ANT_TARGET=test
- IDEA_VERSION=2016.3 ANT_TARGET=test
notifications:
email: false
| language: java
jdk:
- oraclejdk8
before_script:
- sudo add-apt-repository ppa:eyecreate/haxe -y
- sudo apt-get update
- sudo apt-get install haxe -y
- mkdir ~/haxelib
- haxelib setup ~/haxelib
- haxelib install hxjava
- haxelib git debugger https://github.com/TiVo/debugger.git
- mkdir build
- mkdir report
script: make ANT_TARGET=$ANT_TARGET test
env:
- IDEA_VERSION=14.0.5 ANT_TARGET=test
- IDEA_VERSION=14.1.7 ANT_TARGET=test
- IDEA_VERSION=15.0.6 ANT_TARGET=compile_test
- IDEA_VERSION=2016.1.4 ANT_TARGET=compile_test
- IDEA_VERSION=2016.2.5 ANT_TARGET=test
- IDEA_VERSION=2016.3.1 ANT_TARGET=test
notifications:
email: false
| Update Travis builds for 2016.3 to 2016.3.1 | Update Travis builds for 2016.3 to 2016.3.1
| YAML | apache-2.0 | eliasku/intellij-haxe,winmain/intellij-haxe,EricBishton/intellij-haxe,HaxeFoundation/intellij-haxe,TiVo/intellij-haxe,HaxeFoundation/intellij-haxe,TiVo/intellij-haxe,EricBishton/intellij-haxe,HaxeFoundation/intellij-haxe,winmain/intellij-haxe,EricBishton/intellij-haxe,eliasku/intellij-haxe,eliasku/intellij-haxe,TiVo/intellij-haxe,winmain/intellij-haxe |
20de3ce38442b0120a367aa8c9fe1825a908b0a4 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_install:
- if [ ! -f "$HOME/apache-maven-3.3.9/bin/mvn" ]; then wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip && unzip -qq apache-maven-3.3.9-bin.zip -d $HOME; fi
- export M2_HOME=$HOME/apache-maven-3.3.9
- export PATH=$M2_HOME/bin:$PATH
deploy:
provider: script
script: mvn -Dmaven.test.skip=true -Prelease,gpg clean deploy --settings travis-settings.xml
on:
tags: true
jdk: oraclejdk7
before_deploy:
- openssl aes-256-cbc -K $encrypted_1a969067a27a_key -iv $encrypted_1a969067a27a_iv -in codesigning.asc.enc -out codesigning.asc -d
- gpg --fast-import codesigning.asc
cache:
directories:
- $HOME/.m2
- $HOME/apache-maven-3.3.9 | language: java
jdk:
- oraclejdk8
before_install:
- if [ ! -f "$HOME/apache-maven-3.3.9/bin/mvn" ]; then wget https://archive.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip && unzip -qq apache-maven-3.3.9-bin.zip -d $HOME; fi
- export M2_HOME=$HOME/apache-maven-3.3.9
- export PATH=$M2_HOME/bin:$PATH
deploy:
provider: script
script: mvn -Dmaven.test.skip=true -Prelease,gpg clean deploy --settings travis-settings.xml
on:
tags: true
jdk: oraclejdk8
before_deploy:
- openssl aes-256-cbc -K $encrypted_1a969067a27a_key -iv $encrypted_1a969067a27a_iv -in codesigning.asc.enc -out codesigning.asc -d
- gpg --fast-import codesigning.asc
cache:
directories:
- $HOME/.m2
- $HOME/apache-maven-3.3.9 | Switch to java 8 for deploy target | Switch to java 8 for deploy target
| YAML | epl-1.0 | PDOK/featured-shared,PDOK/featured-shared |
efc506a9211bfdf42f68183330c81c00ceedee78 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx
- rbx-2
- jruby-1
- jruby
allow_failures:
- rvm: rbx
- rvm: rbx-2
| language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby-1
- jruby
| Remove Rubinius from matrix for now | Remove Rubinius from matrix for now
| YAML | mit | chaps-io/access-granted |
f679583af85ab99ed558b7c20c6ff48b65778a5d | .travis.yml | .travis.yml | # Travis CI Configuration
language: python
python:
- "2.7"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run -m nose
- pycodestyle yvs/*.py
after_success:
- coveralls
| # Travis CI Configuration
language: python
python:
- "2.7"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run -m nose
after_success:
- coveralls
| Remove flake8 from CI pipeline | Remove flake8 from CI pipeline
| YAML | mit | caleb531/youversion-suggest,caleb531/youversion-suggest |
08a444920e7257e12d51a71962a81795b9ba346f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "1.8"
- "2.5"
- "3.3"
- "4"
- "6"
- "7"
- "8"
script: "npm run-script build"
| language: node_js
node_js:
- "4"
- "6"
- "7"
- "8"
script: "npm run-script build"
| Remove CI for older Node | Remove CI for older Node
| YAML | mit | mazhlekov/tsc-resolve,mazhlekov/tsc-resolve |
01dab9eb0a02867a940d7523d287d726c26bf4a8 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
before_install:
- composer install --dev -n --prefer-source
- if [ "5.5" == $TRAVIS_PHP_VERSION ]; then curl -sOL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar; fi
- phpenv rehash
script:
- mkdir -p build/logs
- if [ "5.5" == $TRAVIS_PHP_VERSION ]; then php phpcs.phar --standard=PSR2 src/; fi
- phpunit -c phpunit.xml.dist
after_script:
- php vendor/bin/coveralls
sudo: false
notifications:
email:
recipients:
- dev-ci@maxmind.com
on_success: change
on_failure: always
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
before_install:
- composer install --dev -n --prefer-source
- if [ "5.5" == $TRAVIS_PHP_VERSION ]; then curl -sOL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar; fi
- phpenv rehash
script:
- mkdir -p build/logs
- if [ "5.5" == $TRAVIS_PHP_VERSION ]; then php phpcs.phar --standard=PSR2 src/; fi
- ./vendor/bin/phpunit -c phpunit.xml.dist
after_script:
- php vendor/bin/coveralls
sudo: false
notifications:
email:
recipients:
- dev-ci@maxmind.com
on_success: change
on_failure: always
| Use phpunit from Composer with Travis | Use phpunit from Composer with Travis
| YAML | apache-2.0 | maxmind/GeoIP2-php,maxmind/GeoIP2-php |
a97b0250ac0f7130415477b7d51751322ec24acb | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: "9"
- node_js: "8"
- node_js: "6"
- node_js: "4"
env: BABEL=true
- node_js: "0.12"
env: BABEL=true
- node_js: "0.10"
env: BABEL=true
script: "[[ $BABEL == true ]] && npm run test:babel || npm test"
after_success:
- npm run travis-coverage
| language: node_js
matrix:
include:
- node_js: "9"
- node_js: "8"
- node_js: "6"
- node_js: "4"
env: BABEL=true
script: "[[ $BABEL == true ]] && npm run test:babel || npm test"
after_success:
- npm run travis-coverage
| Remove official support for node < v4 | Remove official support for node < v4
| YAML | mit | garthenweb/bubleify |
b4b0f83522eddc430d22649c45d05a500323f5d9 | .travis.yml | .travis.yml | language: perl
perl:
- 5.14
- 5.16
- 5.18
- 5.20
- 5.22
before_install:
cpanm -n Devel::Cover::Report::Coveralls
script:
perl Build.PL && ./Build && cover -test -report coveralls
| language: perl
sudo: false
perl:
- 5.14
- 5.16
- 5.18
- 5.20
- 5.22
before_install:
cpanm -n Devel::Cover::Report::Coveralls
script:
perl Build.PL && ./Build && cover -test -report coveralls
| Use new Travis CI container builders | Use new Travis CI container builders
Hope to make builds faster :)
| YAML | mit | zakame/hashids.pm,zakame/hashids.pm |
8548bdd3d7fcd0cc96f63209d560f8824cadb981 | .travis.yml | .travis.yml | os:
- linux
sudo: required
dist: trusty
language: node_js
node_js:
- "7"
before_install:
- sudo apt-get install -y chromium-browser
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install
script:
- npm run lint
- npm run test
after_success:
- node node_modules/coveralls/bin/coveralls.js < coverage/lcov.info
notifications:
email: false | os:
- linux
sudo: required
dist: trusty
language: node_js
node_js:
- "7"
before_install:
- sudo apt-get install -y chromium-browser
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install
script:
- npm run lint
- npm run test
after_success:
- node node_modules/coveralls/bin/coveralls.js < coverage/lcov.info
notifications:
email: false
| Test change to see user name | Test change to see user name
| YAML | mit | cloady/powerbi-visuals-trello,cloady/powerbi-visuals-trello |
069c7002ddc90d7323a8b512de9af2319e31a0bf | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
| language: node_js
node_js:
- '0.10'
- '0.11'
matrix:
fast_finish: true
allow_failures:
- node_js: '0.11'
| Add test for node 0.11 | Add test for node 0.11 | YAML | mit | easy-node/generator-easy-node |
8806c3e36be82ae6d685c8f10c9bddaa9386f309 | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
| addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env:
- UNIT_AND_LINT=1
- CHEF_LICENSE=accept
| Update for Chef 15 license agreement and Chef Workstation | Update for Chef 15 license agreement and Chef Workstation
| YAML | apache-2.0 | chef-cookbooks/yum-pgdg |
2525554221777a45d02380467a2925b6c9ebd676 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.7.3
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make deps
before_script:
- make clean
script:
- make test
after_success:
- make coverage
| sudo: false
language: go
go:
- 1.8
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make deps
before_script:
- make clean
script:
- make test
after_success:
- make coverage
| Update Go version in Travis CI. | Update Go version in Travis CI.
Signed-off-by: Krzysztof Wilczynski <9bf091559fc98493329f7d619638c79e91ccf029@linux.com>
| YAML | apache-2.0 | kwilczynski/packer-provisioner-itamae-local |
6452d03afb4cce5cac73d66003229f4fb5f6c149 | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
- ruby-head
- jruby
- rbx-2
before_install:
- gem install bundler
script: rake spec
matrix:
allow_failures:
- 1.9.3
- jruby
- rbx-2
| ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
- ruby-head
- jruby
- rbx-2
before_install:
- gem install bundler
script: rake spec
matrix:
allow_failures:
- rvm: 1.9.3
- rvm: jruby
- rvm: rbx-2
| Fix allow_failures on Travis CI | :white_check_mark: Fix allow_failures on Travis CI
| YAML | mit | mrkn/IMF,mrkn/IMF |
efcf63d01f00dc09756d7e5e9f5e4e743361aae0 | .travis.yml | .travis.yml | language: ruby
dist: xenial
cache:
bundler: true
bundler_args: --jobs 1 --retry 5 --without development --path vendor/bundle
rvm:
- '2.5'
- '2.6'
- '2.7'
env:
- COMPILER=gcc
- COMPILER=clang
matrix:
fast_finish: true
branches:
only:
- master
notifications:
email:
on_success: never
on_failure: always
before_install:
- gem install bundler
- export CC=$(which $COMPILER)
before_script:
- bundle exec rake clean
script:
- bundle exec rake test
after_success:
- bundle exec rake benchmark
| language: ruby
dist: xenial
cache:
bundler: true
bundler_args: --jobs 1 --retry 5 --without development --path vendor/bundle
rvm:
- '2.5'
- '2.6'
- '2.7'
- '3.0'
env:
- COMPILER=gcc
- COMPILER=clang
matrix:
fast_finish: true
allow_failures:
- rvm: '3.0'
branches:
only:
- master
notifications:
email:
on_success: never
on_failure: always
before_install:
- gem install bundler
- export CC=$(which $COMPILER)
before_script:
- bundle exec rake clean
script:
- bundle exec rake test
after_success:
- bundle exec rake benchmark
| Add Ruby 3.0 to Travis CI | Add Ruby 3.0 to Travis CI
Signed-off-by: Krzysztof Wilczyński <5f1c0be89013f8fde969a8dcb2fa1d522e94ee00@linux.com>
| YAML | apache-2.0 | kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz |
6ed2b68facf43348f2b2c17bcc70ffe0a8d75280 | .travis.yml | .travis.yml | language: go
go:
- '1.0'
- '1.3'
| language: go
go:
- '1.2'
- '1.3'
- '1.4'
- '1.5'
- '1.6'
- '1.7'
- '1.8'
| Add more versions of Go | Add more versions of Go
| YAML | apache-2.0 | chambbj/content-hasher |
a6a821975819707f7915ee98f66d8065cf423fb5 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.3
# - jruby
- ree
| rvm:
- 1.8.7
- 1.9.3
- jruby
- ree
| Revert "Giving up on JRuby for now" | Revert "Giving up on JRuby for now"
This reverts commit f757f6a2b0be8e038afde5726b37255723120b3d.
| YAML | apache-2.0 | zendesk/prop |
3031d8787ae144f6042b5b6db0157c2269ec308e | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.10"
| Remove redundant before script from Travis config. | Remove redundant before script from Travis config.
| YAML | mit | gss/preparser |
816b6f49c558487224dfb0ff5b93d59daa8557b6 | .travis.yml | .travis.yml | language: go
go:
- "tip"
- "1.10"
- "1.9"
- "1.8"
- "1.7"
- "1.6"
- "1.5"
- "1.4"
- "1.3"
- "1.2"
install:
- go get -t -v ./...
| language: go
go:
- "tip"
- "1.10"
- "1.9"
install:
- go get -t -v ./...
| Drop support for Go < 1.9 | Drop support for Go < 1.9
See https://github.com/pborman/uuid/issues/49, the uuid package doesn't support
this anymore, either.
| YAML | mit | mineo/gocaa |
a387f60ef777c3eabe7ee0abc2c37d43058eed59 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get -qq install g++-4.8
- sudo apt-get -qq install libprotobuf-dev
- sudo apt-get -qq install protobuf-compiler
- sudo apt-get -qq install libsnappy-dev
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8"; fi
before_script:
- mkdir build
- cd build
- cmake ..
- make
script: env TZ=America/Denver test/test-orc
| language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get -qq install g++-4.8
- sudo apt-get -qq install libprotobuf-dev
- sudo apt-get -qq install protobuf-compiler
- sudo apt-get -qq install libsnappy-dev
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8"; fi
before_script:
- mkdir build
- cd build
- cmake ..
- make
script: env TZ=America/Los_Angeles test/test-orc
| Move to LA so that we get consistent timezones. | Move to LA so that we get consistent timezones.
| YAML | apache-2.0 | jorgemarsal/orc,jorgemarsal/orc,jorgemarsal/orc,vertica/orc,vertica/orc,vertica/orc,jorgemarsal/orc,jorgemarsal/orc,vertica/orc,vertica/orc,vertica/orc,jorgemarsal/orc,vertica/orc,jorgemarsal/orc,jorgemarsal/orc,vertica/orc |
9b6667d7fc55c423109a6c2f723431fbbf9b0a60 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
env:
- DJANGO=1.4
- DJANGO=1.5
- DJANGO=1.6
- DJANGO=1.7
matrix:
exclude:
- python: 3.2
env: DJANGO=1.4
- python: 3.3
env: DJANGO=1.4
install:
- pip install -U setuptools
- python bootstrap.py
- ./bin/buildout versions:django=$DJANGO
before_script:
- ./bin/flake8 app_namespace
script:
- ./bin/test-and-cover
after_success:
- ./bin/coveralls
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DJANGO=1.4
- DJANGO=1.5
- DJANGO=1.6
- DJANGO=1.7
matrix:
exclude:
- python: 2.6
env: DJANGO=1.7
- python: 3.2
env: DJANGO=1.4
- python: 3.3
env: DJANGO=1.4
- python: 3.4
env: DJANGO=1.4
install:
- pip install -U setuptools
- python bootstrap.py
- ./bin/buildout versions:django=$DJANGO
before_script:
- ./bin/flake8 app_namespace
script:
- ./bin/test-and-cover
after_success:
- ./bin/coveralls
| Test on Python 3.4, and exclude Python 2.6 for Django 1.7 | Test on Python 3.4, and exclude Python 2.6 for Django 1.7
| YAML | bsd-3-clause | EliotBerriot/django-app-namespace-template-loader,Fantomas42/django-app-namespace-template-loader,bittner/django-app-namespace-template-loader,Fantomas42/django-app-namespace-template-loader,bittner/django-app-namespace-template-loader,EliotBerriot/django-app-namespace-template-loader |
19a0e7221a82d31c3b5eda411f20aa16c4805999 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.1
- 1.9.2
- jruby
- rbx-2.0
- ree
- ruby-head
| rvm:
- 1.8.7
- 1.9.1
- 1.9.2
- jruby
- rbx
- ree
- ruby-head
| Revert "Test against Rubinius 2.0" | Revert "Test against Rubinius 2.0"
This reverts commit 733c75a6d734f076987374c90afa5d6a03a24dc6.
| YAML | mit | pferdefleisch/faraday_middleware,h4ck3rm1k3/faraday_middleware,tinfoil/faraday_middleware,austinrfnd/faraday_middleware,ShaneWilton/faraday_middleware,h4ck3rm1k3/faraday_middleware,tinfoil/faraday_middleware,lostisland/faraday_middleware,austinrfnd/faraday_middleware,pferdefleisch/faraday_middleware,ShaneWilton/faraday_middleware,lostisland/faraday_middleware |
bddfd0217dcf5778b00ac88e24fd8935a21d9582 | .travis.yml | .travis.yml | sudo: false
language: node_js
matrix:
include:
- node_js: "4.1.x"
- node_js: "iojs"
- node_js: "0.12"
- node_js: "0.10"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
notifications:
email:
- tormozz48@gmail.com
- yndx.tavria@yandex.ru
| sudo: false
language: node_js
matrix:
include:
- node_js: "4.1.0"
- node_js: "iojs"
- node_js: "0.12"
- node_js: "0.10"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
notifications:
email:
- tormozz48@gmail.com
- yndx.tavria@yandex.ru
| Set precise version for node 4.x | Set precise version for node 4.x
| YAML | mpl-2.0 | bem-site/gorshochek,bem-site/builder-core |
7f910b5b42e4fde3119e8ee80b34ea1329f6dc06 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm:
- ruby-head
- jruby-head
- rbx-19mode
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- jruby-head
- rbx-19mode
matrix:
allow_failures:
- rvm:
- ruby-head
- jruby-head
- rbx-19mode
| Remove broken ruby-head from Travis config | Remove broken ruby-head from Travis config
| YAML | mit | sr-education/mailman,mailman/mailman |
b9d9c8bca0ff3c4d771927cfd8a3a56917497190 | .travis.yml | .travis.yml | language: haskell
install:
- cabal install cabal-dev
- cabal install gtk2hs-buildtools
- cabal-dev install ConfigFile regex-posix regex-compat containers-0.5.2.1 gtk --force-reinstalls --reinstall --constraint=template-haskell==2.7.0.0 --solver=modular
- cabal-dev install --enable-tests --reinstall --constraint=template-haskell==2.7.0.0 --solver=modular
script:
- cabal-dev configure --enable-tests && cabal-dev build && cabal-dev test
| language: haskell
install:
- cabal install cabal-dev
- cabal install gtk2hs-buildtools
- cabal-dev install mtl-2.1.2 ConfigFile regex-posix regex-compat containers-0.5.2.1 gtk --force-reinstalls --reinstall --constraint=template-haskell==2.7.0.0 --solver=modular
- cabal-dev install --enable-tests --reinstall --constraint=template-haskell==2.7.0.0 --solver=modular
script:
- cabal-dev configure --enable-tests && cabal-dev build && cabal-dev test
| Fix Travis run by building mtl first | Fix Travis run by building mtl first
| YAML | agpl-3.0 | AllureOfTheStars/Allure |
77afe050123585a54e6cedd709c3490df12e08ec | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
install:
- pip install -e .
script:
- python -m unittest discover -v
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
matrix:
allow_failures:
- python: "pypy"
fast_finish: true
install:
- pip install -e .
script:
- python -m unittest discover -v
| Allow PyPy to fail due to upstream bugs | Allow PyPy to fail due to upstream bugs
See the PyPy repository for details:
Test: https://bitbucket.org/pypy/pypy/commits/75ab5316ff3f42d1821392740f0ff5aa514135a1
Fix: https://bitbucket.org/pypy/pypy/commits/27aa8184f00fe8f13ac71a61a28e1e373e5ef6ce
| YAML | mit | funkybob/rattle,funkybob/rattle |
7ee900d501675e24d07e44687ccc69061ec2b719 | .travis.yml | .travis.yml | language: node_js
node_js:
- "10"
- "12"
- "node"
- "lts/*"
| language: node_js
node_js:
- "12"
- "node"
- "lts/*"
| Remove Node 10 from automated testing | Remove Node 10 from automated testing
| YAML | mit | Hexagon/croner,Hexagon/croner |
b34e3a314243fa9665a57b0a49a1576ef75cce4c | .travis.yml | .travis.yml | language: ruby
matrix:
include:
- rvm: 2.2.5
- rvm: 2.3.5
- rvm: 2.4.2
- rvm: 2.4.2
env: RUBYOPT="--enable-frozen-string-literal --debug=frozen-string-literal"
- rvm: 2.5.1
- rvm: 2.5.1
env: RUBYOPT="--enable-frozen-string-literal --debug=frozen-string-literal"
- rvm: 2.6.3
- rvm: 2.6.3
env: RUBYOPT="--enable-frozen-string-literal --debug=frozen-string-literal"
- rvm: ruby-head
- rvm: ruby-head
env: RUBYOPT="--enable-frozen-string-literal --debug=frozen-string-literal"
- rvm: jruby-9.2.7.0
- rvm: jruby-head
- rvm: rbx-3
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
matrix:
include:
- rvm: 2.6.3
- rvm: 2.6.3
env: RUBYOPT="--enable-frozen-string-literal --debug=frozen-string-literal"
- rvm: 2.7.1
- rvm: 2.7.1
env: RUBYOPT="--enable-frozen-string-literal --debug=frozen-string-literal"
- rvm: ruby-head
- rvm: ruby-head
env: RUBYOPT="--enable-frozen-string-literal --debug=frozen-string-literal"
- rvm: jruby-9.2.7.0
- rvm: jruby-head
- rvm: rbx-3
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3
| Add Ruby 2.7.1 to Travis | Add Ruby 2.7.1 to Travis | YAML | mit | fny/xorcist,fny/xorcist,fny/xorcist,fny/xorcist |
32b5f152ad2e3bf74ac764f1da7164e31a83858d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '9'
- '8'
- '6'
| os: "linux"
dist: "bionic"
language: "node_js"
node_js:
- "14"
- "13"
- "12"
- "10"
| Update Travis node versions and env | Test(config): Update Travis node versions and env
| YAML | unlicense | fvdm/nodejs-readcsv |
8c0baae1220f90e9dce24dec0dc8033a15638192 | .travis.yml | .travis.yml | language: python
branches:
only:
- master
python:
- 2.6
- 2.7
- 3.3
install:
- pip install -e .
- pip install coveralls
script:
- coverage run --source=faker setup.py test
after_success:
- coveralls
| language: python
branches:
only:
- master
python:
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install -e .
- pip install coveralls
script:
- coverage run --source=faker setup.py test
after_success:
- coveralls
| Enable testing on Python 3.4 | Enable testing on Python 3.4 | YAML | mit | beetleman/faker,meganlkm/faker,thedrow/faker,xfxf/faker-1,ericchaves/faker,danhuss/faker,johnraz/faker,HAYASAKA-Ryosuke/faker,xfxf/faker-python,venmo/faker,joke2k/faker,joke2k/faker,trtd/faker,GLMeece/faker,jaredculp/faker,MaryanMorel/faker,yiliaofan/faker |
05bfd94bdbfaa4c15972026aa4056e7a0de9328d | .travis.yml | .travis.yml | language: ruby
cache: bundler
script: "bundle exec rake test:ruby && bundle exec rake && bundle exec rake test:acceptance"
before_script:
- mysql -e 'drop database if exists racing_on_rails_test'
- bundle exec rake db:setup RAILS_ENV=test
rvm:
- "2.1.6"
| language: ruby
cache: bundler
script: "bundle exec rake test:ruby && bundle exec rake && bundle exec rake test:acceptance"
before_script:
- mysql -e 'drop database if exists racing_on_rails_test'
- bundle exec rake db:setup RAILS_ENV=test
rvm:
- "2.1.6"
sudo: false
| Add sudo: false to TravisCI config | Add sudo: false to TravisCI config
| YAML | mit | scottwillson/racing_on_rails,scottwillson/racing_on_rails,scottwillson/racing_on_rails,scottwillson/racing_on_rails |
48ec04426757d0f25acfdabc829e81ddd54325fb | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4.0"
- "5.0"
email:
on_failure: change
on_success: never
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4.0"
- "6.0"
- "7.0"
email:
on_failure: change
on_success: never
| Add 6.0 and 7.0 to Travis matrix | Add 6.0 and 7.0 to Travis matrix
| YAML | mit | STRML/react-router-component,jsg2021/react-router-component |
f45e579366308008a1057682a63b9a0a01ea5584 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: java
jdk:
- oraclejdk8
- oraclejdk9
- oraclejdk11
env:
- WLP_VERSION=19.0.0_03 WLP_LICENSE=L-CTUR-B9JQES
- WLP_VERSION=19.0.0_06 WLP_LICENSE=L-CTUR-BCTPHF
script:
- travis_wait mvn verify -Ponline-its -Dinvoker.streamLogs=true -DwlpVersion=$WLP_VERSION -DwlpLicense=$WLP_LICENSE -e
| sudo: required
dist: trusty
language: java
jdk:
- oraclejdk8
- oraclejdk11
env:
- WLP_VERSION=19.0.0_06 WLP_LICENSE=L-CTUR-BCTPHF
- WLP_VERSION=19.0.0_03 WLP_LICENSE=L-CTUR-B9JQES
script:
- travis_wait mvn verify -Ponline-its -Dinvoker.streamLogs=true -DwlpVersion=$WLP_VERSION -DwlpLicense=$WLP_LICENSE -e
| Remove java 9 tests, test on 19.0.0.6 | Remove java 9 tests, test on 19.0.0.6
| YAML | apache-2.0 | WASdev/ci.ant |
bdc17922a48b7d47c7bb16b49e0bd1bb9663b4f9 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- hhvm
- 7.0
- 5.6
- 5.5
env:
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=3.0.*
- SYMFONY_VERSION=3.1.*
before_script:
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
- mysql -e "create database symfony;"
- mysql -e "set global wait_timeout=600"
- composer self-update
- rm composer.lock # Prevent dependency problems
- travis_retry composer require "symfony/symfony:${SYMFONY_VERSION}"
script:
- phpunit --coverage-clover coverage.xml
after_success:
- php vendor/bin/coveralls
matrix:
fast_finish: true
| sudo: false
language: php
php:
- hhvm
- 7.0
- 5.6
- 5.5
env:
- SYMFONY_VERSION=2.8.*
- SYMFONY_VERSION=3.0.*
- SYMFONY_VERSION=3.1.*
- SYMFONY_VERSION=3.2.*
before_script:
- if [[ $TRAVIS_PHP_VERSION != "hhvm" ]]; then echo 'memory_limit = -1' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi
- mysql -e "create database symfony;"
- mysql -e "set global wait_timeout=600"
- composer self-update
- rm composer.lock # Prevent dependency problems
- travis_retry composer require "symfony/symfony:${SYMFONY_VERSION}"
script:
- phpunit --coverage-clover coverage.xml
after_success:
- php vendor/bin/coveralls
matrix:
fast_finish: true
| Test Symfony 3.2 as well | Test Symfony 3.2 as well
| YAML | mit | aimeos/aimeos-symfony2,aimeos/aimeos-symfony2,aimeos/aimeos-symfony2,aimeos/aimeos-symfony |
36b76753f93dbb9aa32bcac07dbb5da9b6e4408d | .travis.yml | .travis.yml | language: objective-c
xcode_project: WolframAlpha.xcodeproj
xcode_scheme: WolframAlpha
branches:
only:
- master
- /^deploy-.*$/
| language: objective-c
xcode_project: WolframAlpha.xcodeproj
xcode_scheme: WolframAlpha
branches:
only:
- master
- /^deploy-.*$/
before_install:
- gem install xcpretty -N
script:
- set -o pipefail
- xcodebuild -project WolframAlpha.xcodeproj -scheme "WolframAlpha" -sdk iphonesimulator
-destination "platform=iOS Simulator,name=iPhone 6" ONLY_ACTIVE_ARCH=NO test | xcpretty -c
- pod lib lint --quick
| Update Travis CI config file | Update Travis CI config file
| YAML | mit | romanroibu/WolframAlpha,romanroibu/WolframAlpha |
9771c415fb6f39272107f83ae239f3b9c83b647a | .travis.yml | .travis.yml | language: node_js
node_js:
- 7
- 8
cache:
directories:
- node_modules
- public/components
before_install:
- npm i -g bower codecov istanbul
install:
- yarn
- bower install
script:
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec
- codecov
- yarn run posttest
notifications:
slack: araytek:B8Xevy6shC51ftn3tBiZR8fw | language: node_js
node_js:
- 7
- 8
cache:
directories:
- node_modules
- public/components
before_install:
- npm i -g bower codecov istanbul
install:
- yarn
- bower install
script:
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec
- codecov
- yarn run posttest
notifications:
slack: araytek:B8Xevy6shC51ftn3tBiZR8fw
on_success: change
on_failure: always | Update config of Travis CI | Update config of Travis CI
| YAML | mit | osk2/gogo-cash-rebate,osk2/gogo-cash-back,osk2/gogo-cash-rebate |
082d3d2c242a20cd06b09a07bf518bb200d9b3f5 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '5'
- '4.2'
- '4.1'
- '4.0'
script:
- npm run test | sudo: false
language: node_js
node_js:
- '8'
- '6'
- '5'
- '4.2'
- '4.1'
- '4.0'
script:
- npm run test
| Update Travis config to test with more recent versions of Node. | chore: Update Travis config to test with more recent versions of Node.
| YAML | mit | glebmachine/postcss-easysprites,glebmachine/postcss-easysprites |
7128d189ffc094b1aa641a8f311f97147ef237e9 | .travis.yml | .travis.yml | language: c
os:
- linux
- osx
env:
global:
- SETUP_XVFB=True
- CONDA_CHANNELS='conda-forge'
- CONDA_DEPENDENCIES='numpy astropy h5py matplotlib yt mpich hdf5'
- SETUP_CMD='test'
- MPLBACKEND='Agg'
matrix:
- PYTHON_VERSION=2.7
- PYTHON_VERSION=3.5
- PYTHON_VERSION=3.6
install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
- if [[ $TRAVIS_OS_NAME == linux ]]; then conda install gcc_linux-64 gxx_linux-64 gfortran_linux-64; fi
- if [[ $TRAVIS_OS_NAME == osx ]]; then conda install clang_osx-64 clangxx_osx-64 gfortran_osx-64; fi
script:
- ./configure
- make serial
- sudo make install
- python setup.py install # to get the hyperion script installed
- python setup.py $SETUP_CMD
| language: c
os:
- linux
- osx
env:
global:
- SETUP_XVFB=True
- CONDA_CHANNELS='conda-forge'
- CONDA_DEPENDENCIES='numpy astropy h5py matplotlib yt mpich hdf5'
- SETUP_CMD='test'
- MPLBACKEND='Agg'
matrix:
- PYTHON_VERSION=2.7
- PYTHON_VERSION=3.6
- PYTHON_VERSION=3.7
install:
- git clone git://github.com/astropy/ci-helpers.git
- source ci-helpers/travis/setup_conda.sh
- if [[ $TRAVIS_OS_NAME == linux ]]; then conda install gcc_linux-64 gxx_linux-64 gfortran_linux-64; fi
- if [[ $TRAVIS_OS_NAME == osx ]]; then conda install clang_osx-64 clangxx_osx-64 gfortran_osx-64; fi
script:
- ./configure
- make serial
- sudo make install
- python setup.py install # to get the hyperion script installed
- python setup.py $SETUP_CMD
| Test on Python 3.7 not 3.5 | Test on Python 3.7 not 3.5 | YAML | bsd-2-clause | hyperion-rt/hyperion,hyperion-rt/hyperion,hyperion-rt/hyperion |
4eaa38c3699ef612ecfc97e3a9927b84f45c2667 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
bundler_args: --without development
before_script:
- "mysql -e 'create database one_click_test;' > /dev/null"
- "bundle exec rake oco:generate_config db:migrate"
- "bundle exec rake oco:install_wkhtmltopdf"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: bundle exec rake spec cucumber
branches:
only:
- master
- coop
- v1.x
notifications:
recipients:
- alerts@oneclickorgs.com
irc: "irc.freenode.net#oneclickorgs"
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
bundler_args: --without development
before_script:
- "mysql -e 'create database one_click_test;' > /dev/null"
- "bundle exec rake oco:generate_config db:migrate"
- "bundle exec rake oco:install_wkhtmltopdf"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: bundle exec rake spec cucumber
branches:
only:
- master
- v1.3.x
notifications:
recipients:
- alerts@oneclickorgs.com
irc: "irc.freenode.net#oneclickorgs"
| Update Travis config with our new branches. | CI: Update Travis config with our new branches.
| YAML | agpl-3.0 | oneclickorgs/one-click-orgs,oneclickorgs/one-click-orgs,oneclickorgs/one-click-orgs-deployment,oneclickorgs/one-click-orgs-deployment,oneclickorgs/one-click-orgs,oneclickorgs/one-click-orgs-deployment,oneclickorgs/one-click-orgs |
0c467c15b3da018da8abd2b8e57c57859de7e59c | .travis.yml | .travis.yml | language: generic
matrix:
include:
- os: Linux
dist: wily
env: SWIFT_SNAPSHOT_NAME=DEVELOPMENT-SNAPSHOT-2016-05-09-a
sudo: required
- os: osx
osx_image: xcode7.3
env: SWIFT_SNAPSHOT_NAME=DEVELOPMENT-SNAPSHOT-2016-05-09-a
install:
- ./.travis/install.sh
script:
- export SWIFTENV_ROOT="$HOME/.swiftenv"
- export PATH="${SWIFTENV_ROOT}/bin:${SWIFTENV_ROOT}/shims:$PATH"
- env|sort
- make
| language: generic
matrix:
include:
- os: Linux
dist: wily
env: SWIFT_SNAPSHOT_NAME=DEVELOPMENT-SNAPSHOT-2016-05-09-a
sudo: required
- os: Linux
dist: wily
env: SWIFT_SNAPSHOT_NAME=2.2-RELEASE-ubuntu15.10
sudo: required
- os: osx
osx_image: xcode7.3
env: SWIFT_SNAPSHOT_NAME=DEVELOPMENT-SNAPSHOT-2016-05-09-a
install:
- ./.travis/install.sh
script:
- export SWIFTENV_ROOT="$HOME/.swiftenv"
- export PATH="${SWIFTENV_ROOT}/bin:${SWIFTENV_ROOT}/shims:$PATH"
- env|sort
- make
| Add 2.2 to build matrix | Add 2.2 to build matrix
| YAML | mit | AlwaysRightInstitute/SwiftSockets,AlwaysRightInstitute/SwiftSockets,AlwaysRightInstitute/SwiftSockets |
3d1d72fc4b809daecde92c1b00f742f828933b42 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
before_install:
- wget "https://packages.zendframework.com/releases/ZendFramework-2.1.4/ZendFramework-minimal-2.1.4.tgz"
- tar -zxf ZendFramework-minimal-2.1.4.tgz
- mkdir -p Libraries/zendframework
- mv ZendFramework-minimal-2.1.4 Libraries/zendframework/zendframework
- wget "https://github.com/zendframework/ZendOAuth/archive/release-2.0.1.zip"
- unzip release-2.0.1.zip -d Libraries/zendframework/
- mv Libraries/zendframework/ZendOAuth-release-2.0.1 Libraries/zendframework/zendoauth
- mysql -e 'create database rbschangetest;'
- bash ChangeTests/travisconfig/init.sh
script:
- cd ChangeTests/
- phpunit --configuration phpunit.xml.dist
- phpunit --configuration phpunit.xml.sqlite.dist
notifications:
email:
- noreply@rbschange.fr
| language: php
php:
- 5.4
- 5.5
before_install:
- wget "https://packages.zendframework.com/releases/ZendFramework-2.1.4/ZendFramework-minimal-2.1.4.tgz"
- tar -zxf ZendFramework-minimal-2.1.4.tgz
- mkdir -p Libraries/zendframework
- mv ZendFramework-minimal-2.1.4 Libraries/zendframework/zendframework
- wget "https://github.com/zendframework/ZendOAuth/archive/release-2.0.1.zip"
- unzip release-2.0.1.zip -d Libraries/zendframework/
- mv Libraries/zendframework/ZendOAuth-release-2.0.1 Libraries/zendframework/zendoauth
- mysql -e 'create database rbschangetest;'
- bash ChangeTests/travisconfig/init.sh
script:
- cd ChangeTests/
- phpunit --configuration phpunit.xml.dist
- phpunit --configuration phpunit.xml.sqlite.dist
notifications:
email:
- noreply@rbschange.fr
| Remove PHP 5.3 Travis tests | Remove PHP 5.3 Travis tests
| YAML | mpl-2.0 | intportg/Change,intportg/Change,intportg/Change |
ffe47b2dde46355bc5024be3b2ab49c6be6b2ed6 | .travis.yml | .travis.yml | language: nix
matrix:
fast_finish: true
include:
- env: GHCVER=ghc7102
- env: GHCVER=ghc7103
- env: GHCVER=ghc801
- env: GHCVER=ghc802
- env: GHCVER=ghc742
- env: GHCVER=ghc763
- env: GHCVER=ghc783
- env: GHCVER=ghc784
- env: GHCVER=ghcHEAD
allow_failures:
- env: GHCVER=ghc742
- env: GHCVER=ghc763
- env: GHCVER=ghc783
- env: GHCVER=ghc784
- env: GHCVER=ghcHEAD
before_install:
- nix-channel --list
- nix-channel --update
script:
- nix-build -A stripe-haskell --argstr compiler $GHCVER
cache:
directories:
- /nix/store
| language: nix
matrix:
fast_finish: true
include:
- env: GHCVER=ghc7102
- env: GHCVER=ghc7103
- env: GHCVER=ghc801
- env: GHCVER=ghc802
- env: GHCVER=ghc742
- env: GHCVER=ghc763
- env: GHCVER=ghc783
- env: GHCVER=ghc784
- env: GHCVER=ghcHEAD
allow_failures:
- env: GHCVER=ghc742
- env: GHCVER=ghc763
- env: GHCVER=ghc783
- env: GHCVER=ghc784
- env: GHCVER=ghc7102
- env: GHCVER=ghc7103
- env: GHCVER=ghcHEAD
before_install:
- nix-channel --list
- nix-channel --update
script:
- nix-build -A stripe-haskell --argstr compiler $GHCVER
cache:
directories:
- /nix/store
| Allow failures on pre-GHC8 builds | Allow failures on pre-GHC8 builds
| YAML | mit | dmjio/stripe |
87974ae447a1d98f68fde5f9dd03a723880c95c8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y python-opencv
- pip install -r requirements.txt
script:
- python setup.py build
virtualenv:
system_site_packages: true
| language: python
python:
- "2.7"
- "3.2"
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y python-opencv
- pip install -r requirements.txt
script:
- python setup.py build
virtualenv:
system_site_packages: true
| Build with Python 3.2 not 3.4. | Build with Python 3.2 not 3.4.
| YAML | isc | eliteraspberries/hipshot |
d955454cc0db7a78055b114a72ebbfac03ffa2bd | .travis.yml | .travis.yml | language: python
notifications:
email: false
branches:
only:
- master
- stable
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
node_js:
- "6"
php:
- "7.0"
compiler:
- gcc
before_install:
- sudo apt-get update
install:
- sudo apt-get install php7.0
- if [[ "${TRAVIS_PYTHON_VERSION:0:1}" == "2" ]]; 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"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda update -q conda
- conda install -n root _license
- conda info -a
- conda env create -q -n sklearn-porter python=$TRAVIS_PYTHON_VERSION -f environment.yml
- source activate sklearn-porter
script:
- python -m unittest discover -vp '*Test.py'
| language: python
notifications:
email: false
branches:
only:
- master
- stable
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
node_js:
- "6"
php:
- "7.0"
compiler:
- gcc
before_install:
- sudo apt-add-repository ppa:ondrej/php
- sudo apt-get update -q
install:
- sudo apt-get install gcc-4.8 -y
- sudo apt-get install php7.0 -y
- if [[ "${TRAVIS_PYTHON_VERSION:0:1}" == "2" ]]; 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"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda config --add channels conda-forge
- conda update -q conda
- conda install -n root _license
- conda info -a
- conda env create -q -n sklearn-porter python=$TRAVIS_PYTHON_VERSION -f environment.yml
- source activate sklearn-porter
script:
- python -m unittest discover -vp '*Test.py'
| Add PHP 7 src & add GCC 4.8 | Add PHP 7 src & add GCC 4.8
| YAML | bsd-3-clause | nok/sklearn-porter |
60043402c667cda8787e7dceb1a32f725bb5729d | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar --dev install
| language: php
php:
- 5.3
- 5.4
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar --dev install
| Remove unavailable PHP version from Travis CI config | Remove unavailable PHP version from Travis CI config
| YAML | mit | inanimatt/site-builder,inanimatt/site-builder |
b9ae368967102d60bbe819f27051c648cd8d7e94 | .travis.yml | .travis.yml | sudo: false
language: node_js
notifications:
email: false
node_js:
- 4
- 6
matrix:
fast_finish: true
env:
global:
- BUILD_LEADER_ID=2
- CXX=g++-4.8
script: npm run travis
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm i -g npm@^3.0.0
before_script:
- npm prune
after_success:
- npm install -g npx
- npx -p node@8 npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
| sudo: false
language: node_js
notifications:
email: false
node_js:
- 4
- 6
matrix:
fast_finish: true
env:
global:
- BUILD_LEADER_ID=2
script: npm run travis
before_install:
- npm i -g npm@^3.0.0
before_script:
- npm prune
after_success:
- npm install -g npx
- npx -p node@8 npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
| Remove install of gcc 4.8 in TravisCI | Remove install of gcc 4.8 in TravisCI
| YAML | mit | pelias/whosonfirst,pelias/whosonfirst |
94ecd295fb176d8f7e77114e3e3428f3fc93efb7 | .travis.yml | .travis.yml | sudo: required
dist: trusty
services:
- docker
language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- "$HOME/.gradle/caches/"
- "$HOME/.gradle/wrapper/"
before_script:
- docker-compose up -d
- sleep 60
before_install:
- chmod +x gradlew
after_success:
- bash <(curl -s https://codecov.io/bash)
| sudo: required
dist: trusty
services:
- docker
language: java
jdk:
- oraclejdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- "$HOME/.gradle/caches/"
- "$HOME/.gradle/wrapper/"
before_install:
- chmod +x gradlew
before_script:
- docker-compose up -d
- sleep 30
after_success:
- bash <(curl -s https://codecov.io/bash)
| Reduce docker start-up wait time to 30 seconds | Reduce docker start-up wait time to 30 seconds
| YAML | mit | molcikas/photon |
19bc78dc5169050d8864190155bb471aeef6129d | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- 0.11
branches:
only:
- master
- wip
before_script:
- npm install -g grunt-cli
matrix:
fast_finish: true
allow_failures:
- node_js: 0.11
| language: node_js
node_js:
- "0.10"
- 0.12
- iojs
branches:
only:
- master
- wip
before_script:
- npm install -g grunt-cli
matrix:
fast_finish: true
| Build on Node 0.12 and Io.js | Build on Node 0.12 and Io.js
Don't build on unstable 0.11
| YAML | mit | SimenB/backbone.layoutmanager,huang-x-h/backbone.layoutmanager,huang-x-h/backbone.layoutmanager,tbranyen/backbone.layoutmanager,SimenB/backbone.layoutmanager,tbranyen/backbone.layoutmanager |
37eea5c7808d7f5661652e3f9e1fb5a0617b58a3 | .travis.yml | .travis.yml | language: go
go:
- "1.x"
| language: go
go:
- "1.x"
env:
- DEP_VERSION="0.5.0"
before_install:
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
- chmod +x $GOPATH/bin/dep
| Install dep in Travis CI. | Install dep in Travis CI.
| YAML | mit | DreamItGetIT/statuscake |
8cfabd19ecf7f2821b490f0c6076da59a817f4d9 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.5
script:
- bundle exec rubocop
- bundle exec foodcritic --epic-fail any --tags ~FC003 cookbooks
| language: ruby
rvm:
- 2.1.5
script:
- bundle exec rubocop
- bundle exec foodcritic --contex --epic-fail any --tags ~FC048 cookbooks
| Add contex option and change exclude tag | Add contex option and change exclude tag | YAML | mit | strangeman/testo,strangeman/testo,express42-cookbooks/testo,express42-cookbooks/testo |
cc0a0937eb8417bbd2141e500ca2610ee7b66a3b | .travis.yml | .travis.yml | language: node_js
os:
- linux
- osx
node_js:
- "10"
- "11"
- "12"
- "13"
- "14"
install:
- yarn
script:
- yarn test
after_success:
- yarn global add codecov
- codecov
| language: node_js
matrix:
include:
- os: osx
- os: linux
arch: amd64
- os: linux
arch: arm64
node_js:
- '10'
- '11'
- '12'
- '13'
- '14'
install:
- yarn
script:
- yarn test
after_success:
- yarn global add codecov
- codecov
| Add arm64 to test suite | :white_check_mark: Add arm64 to test suite
| YAML | mit | caffco/get-video-duration,caffco/get-video-duration |
9a8bae6d9459a50e92eb6410457721e80d7fd53f | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk8
cache:
directories:
- $HOME/idea
- $HOME/.ant
before_install:
# stack
- mkdir -p ~/.local/bin
- export PATH=~/.local/bin:$PATH
- travis_retry curl -L https://github.com/commercialhaskell/stack/releases/download/v0.1.4.0/stack-0.1.4.0-x86_64-linux.tar.gz | tar xz -C ~/.local/bin
install:
- IDEA_VERSION=2017.1
- IDEA_TAR=ideaIC-${IDEA_VERSION}.tar.gz
- IDEA_PARENT_DIR=$HOME/idea
- IDEA_DIR=$IDEA_PARENT_DIR/$IDEA_VERSION
- |
if [ -d $IDEA_DIR ]; then
echo "Using existing IDEA installation at $IDEA_DIR"
else
echo "Removing any existing IDEA installation."
rm -rf $IDEA_PARENT_DIR
mkdir -p $IDEA_PARENT_DIR
echo "Downloading IDEA archive."
travis_retry wget http://download.jetbrains.com/idea/$IDEA_TAR -P $HOME
echo "Installing IDEA to $IDEA_DIR"
tar xzvf $HOME/$IDEA_TAR -C $IDEA_PARENT_DIR
mv $IDEA_PARENT_DIR/idea-IC-* $IDEA_DIR
fi
- echo "Creating build.properties file for ant."
- cp .travis.properties build.properties
- echo "idea.home=$IDEA_DIR" >> build.properties
script: ant
| language: java
sudo: false
jdk:
- oraclejdk8
cache:
directories:
- $HOME/idea
- $HOME/.ant
before_install:
# stack
- mkdir -p ~/.local/bin
- export PATH=~/.local/bin:$PATH
- travis_retry curl -L https://github.com/commercialhaskell/stack/releases/download/v0.1.4.0/stack-0.1.4.0-x86_64-linux.tar.gz | tar xz -C ~/.local/bin
install:
- IDEA_VERSION=2017.2
- IDEA_TAR=ideaIC-${IDEA_VERSION}.tar.gz
- IDEA_PARENT_DIR=$HOME/idea
- IDEA_DIR=$IDEA_PARENT_DIR/$IDEA_VERSION
- |
if [ -d $IDEA_DIR ]; then
echo "Using existing IDEA installation at $IDEA_DIR"
else
echo "Removing any existing IDEA installation."
rm -rf $IDEA_PARENT_DIR
mkdir -p $IDEA_PARENT_DIR
echo "Downloading IDEA archive."
travis_retry wget http://download.jetbrains.com/idea/$IDEA_TAR -P $HOME
echo "Installing IDEA to $IDEA_DIR"
tar xzvf $HOME/$IDEA_TAR -C $IDEA_PARENT_DIR
mv $IDEA_PARENT_DIR/idea-IC-* $IDEA_DIR
fi
- echo "Creating build.properties file for ant."
- cp .travis.properties build.properties
- echo "idea.home=$IDEA_DIR" >> build.properties
script: ant
| Use IDEA 2017.2 for CI | Use IDEA 2017.2 for CI
| YAML | apache-2.0 | carymrobbins/intellij-haskforce,carymrobbins/intellij-haskforce,carymrobbins/intellij-haskforce |
9a412c74c2b0d9c00d66f535f53ff24af0f343a4 | .travis.yml | .travis.yml | sudo: required
notifications:
email: false
env:
global:
- ORACLE_COOKIE=sqldev
- ORACLE_FILE=oracle11g/xe/oracle-xe-11.2.0-1.0.x86_64.rpm.zip
- ORACLE_HOME=/u01/app/oracle/product/11.2.0/xe
- ORACLE_SID=XE
before_install:
- .travis/oracle/download.sh
- .travis/oracle/install.sh
script:
- echo "Process complete"
| sudo: required
notifications:
email: false
env:
global:
- ORACLE_COOKIE=sqldev
- ORACLE_FILE=oracle11g/xe/oracle-xe-11.2.0-1.0.x86_64.rpm.zip
- ORACLE_HOME=/u01/app/oracle/product/11.2.0/xe
- ORACLE_SID=XE
before_install:
- .travis/oracle/download.sh
- .travis/oracle/install.sh
before_script:
- >
{ echo "CREATE USER scott IDENTIFIED by tiger;";
echo "GRANT CONNECT, RESOURCE to scott;";
} | ${ORACLE_HOME}/bin/sqlplus -L -S / as sysdba
script:
->
{ echo "Installation complete"
}
| Add scott user to the database | Add scott user to the database
| YAML | unlicense | tschf/oracle-ci-guide |
738920fca8cebfbe76364f1d9f3c04bddcfee25a | .travis.yml | .travis.yml | language: ruby
before_install: gem update --system
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
| language: ruby
before_install: gem update --system
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| Add more Rubies to Travis CI | Add more Rubies to Travis CI
| YAML | mit | tj/commander,tj/commander,commander-rb/commander,andrewvc/commander,fastlane/commander,andrewvc/commander,commander-rb/commander,fastlane/commander |
c2c589332ac617f2e05e785d3320dd2d9eb78862 | .travis.yml | .travis.yml | dist: xenial
language: python
python:
- 3.5
- 3.6
- 3.7
# virtualenv:
# system_site_packages: true
services:
- mysql
addons:
apt:
packages:
- xvfb
cache:
directories:
- /usr/share/dragonfire
before_install:
- mysql -u root -e "CREATE DATABASE dragonfire;"
install:
- sudo ./install-dev.sh --no-model
- sudo pip3 install pytest-faulthandler tinydb
- export DISPLAY=':99.0'
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
- python -m pytest --capture=sys
notifications:
on_success: change
on_failure: change # `always` will be the setting once code changes slow down
| dist: xenial
sudo: required
language: python
virtualenv:
system_site_packages: true
python:
- 3.5
- 3.6
- 3.7
services:
- mysql
addons:
apt:
packages:
- xvfb
cache:
directories:
- /usr/share/dragonfire
before_install:
- mysql -u root -e "CREATE DATABASE dragonfire;"
install:
- sudo ./install-dev.sh --no-model
- sudo pip3 install pytest-faulthandler
- export DISPLAY=':99.0'
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
- python -m pytest --capture=sys
notifications:
on_success: change
on_failure: change # `always` will be the setting once code changes slow down
| Revert back some of the changes of the last PR to fix Travis CI errors | Revert back some of the changes of the last PR to fix Travis CI errors
| YAML | mit | mertyildiran/Dragonfire,DragonComputer/Dragonfire,mertyildiran/Dragonfire,DragonComputer/Dragonfire,DragonComputer/Dragonfire |
f3f71e7d079f1a7c2caa7e1c02f01bd9e6e89298 | .travis.yml | .travis.yml | sudo: required
language: go
go: master
services:
- docker
- redis-server
- mysql
install:
- go get -d -v .
- docker build -t evedata .
- docker run -d -p 127.0.0.1:80:3000 -name evedata evedata
script:
- docker ps | grep -q evedata
- go install -v ./
- go test -v ./
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push antihax/evedata;
fi | sudo: required
language: go
go: master
services:
- docker
- redis-server
- mysql
install:
- go get -d -v .
- docker build -t evedata .
- docker run -d -p 127.0.0.1:80:3000 --name evedata evedata
script:
- docker ps | grep -q evedata
- go install -v ./
- go test -v ./
after_success:
- if [ "$TRAVIS_BRANCH" == "master" ]; then
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push antihax/evedata;
fi | Fix the command for docker run... | Fix the command for docker run...
| YAML | mit | antihax/evedata,antihax/evedata,antihax/evedata,antihax/evedata |
e54e23ede0edabcf5b7516deaa7a83329301759c | .travis.yml | .travis.yml | # See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
env:
- DB=MYSQL CORE_RELEASE=3.5
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.1
- php: 5.6
env: DB=PGSQL CORE_RELEASE=3.2
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3.6
before_script:
- composer self-update || true
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
- composer install
script:
- vendor/bin/phpunit restfulserver/tests
| # See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
matrix:
include:
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.3
- php: 5.5
env: DB=MYSQL CORE_RELEASE=3.4
- php: 5.6
env: DB=PGSQL CORE_RELEASE=3.5
- php: 7.0
env: DB=MYSQL CORE_RELEASE=3
- php: 7.1
env: DB=MYSQL CORE_RELEASE=3.6
before_script:
- composer self-update || true
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
- composer install
script:
- vendor/bin/phpunit restfulserver/tests
| Remove PHP 5.3 from Travis config, shuffle tested SS versions | Remove PHP 5.3 from Travis config, shuffle tested SS versions
| YAML | bsd-3-clause | silverstripe/silverstripe-restfulserver |
d2b3ca7903223193bc1b2be492b77849e1b0a8ad | .travis.yml | .travis.yml | sudo: false
os:
- linux
env:
- RAILS_ENV=test ELM_VERSION=0.18.0 ELM_CSS_VERSION=0.6.1
cache:
directories:
$TRAVIS_BUILD_DIR/client/elm-stuff/build-artifacts
before_install:
- echo "Install elm-lang and elm-css"
- echo "elm version = $ELM_VERSION"
- echo "elm css version = $ELM_CSS_VERSION"
- cd $TRAVIS_BUILD_DIR/client
- npm install -g elm@$ELM_VERSION elm-css@$ELM_CSS_VERSION
- cd $TRAVIS_BUILD_DIR
install:
- echo "Install restbus (ruby on rails)"
- cd $TRAVIS_BUILD_DIR/restbus
- make install
- echo "Install client (elm)"
- cd $TRAVIS_BUILD_DIR/client
- make install
script:
- echo "test restbus (ruby on rails)"
- cd $TRAVIS_BUILD_DIR/restbus
- bundle exec rspec test
| sudo: false
os:
- linux
env:
- RAILS_ENV=test ELM_VERSION=0.18.0 ELM_CSS_VERSION=0.6.1
cache:
directories:
- $TRAVIS_BUILD_DIR/client/elm-stuff/build-artifacts
before_install:
- echo "Install elm-lang and elm-css"
- echo "elm version = $ELM_VERSION"
- echo "elm css version = $ELM_CSS_VERSION"
- cd $TRAVIS_BUILD_DIR/client
- npm install -g elm@$ELM_VERSION elm-css@$ELM_CSS_VERSION
- cd $TRAVIS_BUILD_DIR
install:
- echo "Install restbus (ruby on rails)"
- cd $TRAVIS_BUILD_DIR/restbus
- make install
- echo "Install client (elm)"
- cd $TRAVIS_BUILD_DIR/client
- make install
script:
- echo "test restbus (ruby on rails)"
- cd $TRAVIS_BUILD_DIR/restbus
- bundle exec rspec test
| Fix how the cache stores the build-artifects | Fix how the cache stores the build-artifects
| YAML | mit | ofer987/transit.tips,ofer987/transit.tips,ofer987/transit.tips,ofer987/transit.tips |
cdf7bb2b3ae86e6772d990d45e9271eee4ef16f2 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache:
directories:
- vendor/bundle
rvm:
- '2.2'
- '2.1'
- 2.0.0
- 1.9.3
env:
- REDMINE_VERSION=3.2.0
- REDMINE_VERSION=3.1.3
- REDMINE_VERSION=3.0.7
- REDMINE_VERSION=2.6.9
- REDMINE_VERSION=master
matrix:
allow_failures:
- env: REDMINE_VERSION=master
branches:
except:
- debian
install:
- export BUNDLE_GEMFILE=""
- export BUNDLE_PATH="$(pwd)/vendor/bundle"
- ./redmine update
- bundle install --jobs=3 --retry=3 --path $BUNDLE_PATH
script:
- bundle exec rake spec
| sudo: false
language: ruby
cache:
directories:
- vendor/bundle
rvm:
- '2.3'
- '2.2'
- '2.1'
- 2.0.0
- 1.9.3
env:
- REDMINE_VERSION=3.2.0
- REDMINE_VERSION=3.1.3
- REDMINE_VERSION=3.0.7
- REDMINE_VERSION=2.6.9
- REDMINE_VERSION=master
matrix:
allow_failures:
- env: REDMINE_VERSION=master
branches:
except:
- debian
install:
- export BUNDLE_GEMFILE=""
- export BUNDLE_PATH="$(pwd)/vendor/bundle"
- ./redmine update
- bundle install --jobs=3 --retry=3 --path $BUNDLE_PATH
script:
- bundle exec rake spec
| Add ruby 2.3 to CI | Add ruby 2.3 to CI
| YAML | apache-2.0 | jgraichen/redmine_dashboard,jgraichen/redmine_dashboard,jgraichen/redmine_dashboard |
b64afcce348eaf1c0cc7ac44d7bdfc17c989991f | .travis.yml | .travis.yml | ---
env:
global:
- DJANGO_SETTINGS_MODULE=TWLight.settings.local
- PIP_USE_MIRRORS=true
- TWLIGHT_UNIXNAME=travis
- TWLIGHT_MISSING_MIGRATIONS=$(git ls-files --others --exclude-standard 'TWLight/*/migrations/*.py' | wc -l)
- DJANGO_DB_HOST=127.0.0.1
- MYSQL_USER=twlight
- MYSQL_PASSWORD=twlight
- ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
- REQUEST_BASE_URL=http://localhost/
- TWLIGHT_OAUTH_PROVIDER_URL=https://meta.wikimedia.org/w/index.php
- DEBUG = False
- SECRET_KEY=twlight
language: python
cache: pip
python:
- 2.7
addons:
mariadb: '10.2'
services:
- mysql
before_install:
# Install the dependencies.
install:
- pip install -r requirements/wmf.txt
- pip install coveralls
# Initalize the app and test it.
script:
- .travis/./init.sh
- coverage run --source TWLight manage.py test
# Report on test coverage and push to production if the conditions are met.
after_success:
- coveralls
- .travis/./deploy.sh
| ---
env:
global:
- DJANGO_SETTINGS_MODULE=TWLight.settings.local
- PIP_USE_MIRRORS=true
- TWLIGHT_UNIXNAME=travis
- TWLIGHT_MISSING_MIGRATIONS=$(git ls-files --others --exclude-standard 'TWLight/*/migrations/*.py' | wc -l)
- DJANGO_DB_HOST=127.0.0.1
- DJANGO_DB_NAME=twlight
- MYSQL_USER=twlight
- MYSQL_PASSWORD=twlight
- ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
- REQUEST_BASE_URL=http://localhost/
- TWLIGHT_OAUTH_PROVIDER_URL=https://meta.wikimedia.org/w/index.php
- DEBUG = False
- SECRET_KEY=twlight
language: python
cache: pip
python:
- 2.7
addons:
mariadb: '10.2'
services:
- mysql
before_install:
# Install the dependencies.
install:
- pip install -r requirements/wmf.txt
- pip install coveralls
# Initalize the app and test it.
script:
- .travis/./init.sh
- coverage run --source TWLight manage.py test
# Report on test coverage and push to production if the conditions are met.
after_success:
- coveralls
- .travis/./deploy.sh
| Update Travis CI DB config. | Update Travis CI DB config.
| YAML | mit | WikipediaLibrary/TWLight,WikipediaLibrary/TWLight,WikipediaLibrary/TWLight,WikipediaLibrary/TWLight,WikipediaLibrary/TWLight |
28fd7a9b764f0268322761542ebd59858bf13c42 | .travis.yml | .travis.yml | language: ruby
rvm: 1.9.3
before_script: bundle exec rake db:setup
| language: ruby
rvm: 1.9.3
before_script: bundle exec rake db:setup
sudo: false
cache: bundler
| Set up bundler caching and container-based run in Travis | Set up bundler caching and container-based run in Travis
| YAML | apache-2.0 | jrafanie/miq_bot,skateman/miq_bot,romanblanco/miq_bot,skateman/miq_bot,imtayadeway/miq_bot,jrafanie/miq_bot,jrafanie/miq_bot,ManageIQ/miq_bot,bdunne/miq_bot,imtayadeway/miq_bot,romanblanco/miq_bot,ManageIQ/miq_bot,ManageIQ/miq_bot,ManageIQ/miq_bot,skateman/miq_bot,bdunne/miq_bot,bdunne/miq_bot,imtayadeway/miq_bot,romanblanco/miq_bot |
f7cca8648d514cd001013da097c38b46cf2dfc76 | .travis.yml | .travis.yml | language: go
# Master is the only reference for documentation.
branches:
only:
- dev
install:
# Install `helm` in travis environment.
- ls $GOPATH
- cd $GOPATH/src/
- curl https://kubernetes-helm.storage.googleapis.com/helm-v2.6.1-linux-386.tar.gz > helm.tar.gz
- tar xzf helm.tar.gz
- mv linux-386/helm $GOPATH/bin/
# Setting Git user.
- git config --global user.email "travis-bot@fake.mail"
- git config --global user.name "Travis Bot"
# Cloning destination repository.
- cd -
- cd ../
- git clone https://$GITHUB_TOKEN@github.com/ODMDev/odm-helm-docs-repo.git
- cd odm-helm-docs-repo/
- git remote rm origin
- git remote add origin https://$GITHUB_TOKEN@github.com/ODMDev/odm-helm-docs-repo.git
- cd ../odm-docker-kubernetes/helm/stable
# Building the documentation.
script:
- helm init -c
- helm package odmcharts
- cp *.tgz ../../../odm-helm-docs-repo/
- cd ../../../odm-helm-docs-repo/
- helm repo index ./ --url https://odmdev.github.io/odm-docker-kubernetes/
- git status
- git add .
- git commit -m "doc updated via travis build."
- git push --set-upstream origin master
| language: go
# Master is the only reference for documentation.
branches:
only:
- dev
install:
# Install `helm` in travis environment.
- ls $GOPATH
- cd $GOPATH/src/
- curl https://kubernetes-helm.storage.googleapis.com/helm-v2.6.1-linux-386.tar.gz > helm.tar.gz
- tar xzf helm.tar.gz
- mv linux-386/helm $GOPATH/bin/
# Setting Git user.
- git config --global user.email "travis-bot@fake.mail"
- git config --global user.name "Travis Bot"
# Cloning destination repository.
- cd -
- cd ../
- git clone https://$GITHUB_TOKEN@github.com/ODMDev/odm-helm-charts-repo.git
- cd odm-helm-charts-repo/
- git remote rm origin
- git remote add origin https://$GITHUB_TOKEN@github.com/ODMDev/odm-helm-charts-repo.git
- cd ../odm-docker-kubernetes/helm/stable
# Building the documentation.
script:
- helm init -c
- helm package odmcharts
- cp *.tgz ../../../odm-helm-charts-repo/
- cd ../../../odm-helm-charts-repo/
- helm repo index ./ --url https://odmdev.github.io/odm-helm-charts-repo/
- git status
- git add .
- git commit -m "doc updated via travis build."
- git push --set-upstream origin master
| Change repo name + Fix repo index url | Change repo name + Fix repo index url
| YAML | apache-2.0 | PierreFeillet/IBM-ODM-Kubernetes |
e2156edc473ddbdb57454b31be40fb157df845d0 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
os:
- linux
- osx
env:
global:
- secure: "KXfgO6PGxlEcNJHLxMPxZvUtxkCX8V/ZD5plXYxCPaKamTWJknuAvFJAPukhIDTX+1AcUxEBvG/QLszEIiPemPRbDmj4knG5y5GINLx/Jjl3ePKXzYdfc6G/G/QnH3YEQ/GBp6Gvf6w2d+IB3dgEyn9td8VaOt0XmNvW4l76nm4="
git:
submodules: false
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- fonts-inconsolata
- fonts-takao-gothic
- fonts-takao-mincho
- fonts-takao-pgothic
coverity_scan:
project:
name: "khaledhosny/ots"
description: "Build submitted via Travis CI"
notification_email: khaledhosny@eglug.org
build_command_prepend: "./configure; make clean"
build_command: "make -j 4"
branch_pattern: coverity
install:
- test "$CXX" = "g++" && export CXX="g++-4.8" CC="gcc-4.8" || true
- ./autogen.sh
script: ./configure && make check
| language: cpp
compiler:
- gcc
- clang
os:
- linux
- osx
matrix:
allow_failures:
- os: osx
compiler: gcc
env:
global:
- secure: "KXfgO6PGxlEcNJHLxMPxZvUtxkCX8V/ZD5plXYxCPaKamTWJknuAvFJAPukhIDTX+1AcUxEBvG/QLszEIiPemPRbDmj4knG5y5GINLx/Jjl3ePKXzYdfc6G/G/QnH3YEQ/GBp6Gvf6w2d+IB3dgEyn9td8VaOt0XmNvW4l76nm4="
git:
submodules: false
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- fonts-inconsolata
- fonts-takao-gothic
- fonts-takao-mincho
- fonts-takao-pgothic
coverity_scan:
project:
name: "khaledhosny/ots"
description: "Build submitted via Travis CI"
notification_email: khaledhosny@eglug.org
build_command_prepend: "./configure; make clean"
build_command: "make -j 4"
branch_pattern: coverity
install:
- test "$CXX" = "g++" && export CXX="g++-4.8" CC="gcc-4.8" || true
- ./autogen.sh
script: ./configure && make check
| Allow GCC failure in OS X | [trvis] Allow GCC failure in OS X
| YAML | bsd-3-clause | irori/ots,irori/ots,anthrotype/ots,anthrotype/ots,davelab6/ots,davelab6/ots,khaledhosny/ots |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.