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 |
|---|---|---|---|---|---|---|---|---|---|
f62438d7ccfa8e674e7c71820220364e2877a246 | graphite/docker-compose.yml | graphite/docker-compose.yml | version: "2"
services:
grafana:
image: "grafana/grafana"
ports:
- "3000:3000"
networks:
- grafana
links:
- "graphite:graphite"
- "influxdb:influxdb"
- "postgres:postgres"
environment:
GF_DATABASE_TYPE: postgres
GF_DATABASE_HOST: postgres:5432
GF_DATABASE_NAME: grafana
GF_DATABASE_USER: grafana
GF_DATABASE_PASSWORD: password
postgres:
image: postgres
networks:
- grafana
environment:
POSTGRES_DB: grafana
POSTGRES_USER: grafana
POSTGRES_PASSWORD: password
graphite:
image: pgentile/graphite-api
volumes_from:
- "carbon:ro"
networks:
- graphite
- grafana
links:
- "carbon:carbon"
- "redis:redis"
carbon:
image: pgentile/go-carbon
ports:
- "2003:2003"
networks:
- graphite
redis:
image: redis
networks:
- graphite
influxdb:
image: tutum/influxdb
ports:
- "8083:8083"
- "8086:8086"
networks:
- grafana
networks:
grafana:
driver: bridge
graphite:
driver: bridge
| version: "2"
services:
grafana:
image: "grafana/grafana"
ports:
- "3000:3000"
networks:
- grafana
links:
- "graphite:graphite"
- "influxdb:influxdb"
- "postgres:postgres"
- "elasticsearch:elasticsearch"
environment:
GF_DATABASE_TYPE: postgres
GF_DATABASE_HOST: postgres:5432
GF_DATABASE_NAME: grafana
GF_DATABASE_USER: grafana
GF_DATABASE_PASSWORD: password
postgres:
image: postgres
networks:
- grafana
environment:
POSTGRES_DB: grafana
POSTGRES_USER: grafana
POSTGRES_PASSWORD: password
graphite:
image: pgentile/graphite-api
volumes_from:
- "carbon:ro"
networks:
- graphite
- grafana
links:
- "carbon:carbon"
- "redis:redis"
carbon:
image: pgentile/go-carbon
ports:
- "2003:2003"
networks:
- graphite
redis:
image: redis
networks:
- graphite
influxdb:
image: tutum/influxdb
ports:
- "8083:8083"
- "8086:8086"
networks:
- grafana
elasticsearch:
image: elasticsearch
networks:
- grafana
ports:
- "9200:9200"
networks:
grafana:
driver: bridge
graphite:
driver: bridge
| Add Elasticsearch as Grafana backend | Add Elasticsearch as Grafana backend
| YAML | mit | pgentile/tests-docker,pgentile/tests-docker,pgentile/tests-docker |
e1e4884e86e3754d613184399497d56a6cc4d5e5 | .travis.yml | .travis.yml | sudo: false
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "nightly"
- "pypy3.5-5.8.0"
env:
- TYPING_VERSION="<3.5.3"
- TYPING_VERSION=">=3.5.3"
matrix:
allow_failures:
- python: "nightly"
include:
- { python: "3.7", dist: xenial, sudo: true }
install:
- pip install --upgrade pytest "typing$TYPING_VERSION" "pytest-cov>=2.5.1"
# mypy can't be installed on pypy
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then pip install mypy ; fi
# Black is Python 3.6+-only
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then pip install black ; fi
script:
- py.test -vv --cov=injector --cov-branch --cov-report html --cov-report term
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then mypy injector ; fi
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then black --check . ; fi
| sudo: false
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "nightly"
- "pypy3.5-5.8.0"
env:
- TYPING_VERSION="<3.5.3"
- TYPING_VERSION=">=3.5.3"
matrix:
allow_failures:
- python: "nightly"
include:
- { python: "3.7", dist: xenial, sudo: true }
install:
- pip install --upgrade coveralls pytest "typing$TYPING_VERSION" "pytest-cov>=2.5.1"
# mypy can't be installed on pypy
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then pip install mypy ; fi
# Black is Python 3.6+-only
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then pip install black ; fi
script:
- py.test -vv --cov=injector --cov-branch --cov-report html --cov-report term
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* ]] ; then mypy injector ; fi
- if [[ "${TRAVIS_PYTHON_VERSION}" != "pypy"* && "${TRAVIS_PYTHON_VERSION}" != "3.5"* ]] ; then black --check . ; fi
after_success:
- coveralls
| Send CI coverage stats to Coveralls | Send CI coverage stats to Coveralls
| YAML | bsd-3-clause | alecthomas/injector |
6ebc089cba6c9147599aec2b54b969d22f5ba37f | .travis.yml | .travis.yml | language: node_js
node_js:
- 6
- 7
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
| language: node_js
node_js:
- 8
- 9
after_success:
- npm run semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
| Update Travis Node versions to 8 and 9 | Chore: Update Travis Node versions to 8 and 9
| YAML | mit | sapegin/sweet2,sapegin/sweet2 |
58a8fb3d7997a7b17ce46595b63eb3cba61b94bb | .travis.yml | .travis.yml | sudo: required
language: generic
services:
- docker
env:
- DOCKER_IMAGE_NAME=dstacademy/server
before_script: cd build
script:
- docker build -t $DOCKER_IMAGE_NAME .
| sudo: required
language: generic
services:
- docker
env:
- DOCKER_IMAGE_NAME=dstacademy/server
before_script: cd build
script:
- docker build -t $DOCKER_IMAGE_NAME .
notifications:
slack: dst-academy:$TRAVIS_CI_TOKEN
| Add Slack notification token in the Travis configuration | Add Slack notification token in the Travis configuration
| YAML | mit | dst-academy/server,dst-academy/docker-dontstarvetogether,BraisGabin/dst-server |
43c5238bcde19a11ee065912693e34762f2a87c0 | .travis.yml | .travis.yml | language: ruby
script: 'bundle exec rake ci'
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- rbx-2
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="$JRUBY_OPTS --debug --1.9" # for simplecov
- rvm: jruby
env: JRUBY_OPTS="$JRUBY_OPTS --debug --2.0" # for simplecov
allow_failures:
- rvm: 2.1.2 # Segfault when mutating, not directly caused by auom
| language: ruby
script: 'bundle exec rake ci'
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.1.3
- rbx-2
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="$JRUBY_OPTS --debug --1.9" # for simplecov
- rvm: jruby
env: JRUBY_OPTS="$JRUBY_OPTS --debug --2.0" # for simplecov
| Update test matrix to include 2.1.3 | Update test matrix to include 2.1.3
| YAML | mit | mbj/auom |
1e81e816824808660ffcf7928714abe2060d6b73 | .travis.yml | .travis.yml | language: python
dist: xenial
python:
- 2.7
- 3.6
- 3.7
- 3.8
- 3.9
- pypy
- pypy3
install:
- pip install pytest coverage coverage-python-version coveralls flake8
- pip install -e .
script:
- coverage run -m pytest
- flake8 *.py
- coverage report -m $([[ $TRAVIS_PYTHON_VERSION != pypy3 ]] && echo --fail-under=100)
after_success:
- coveralls
notifications:
email: false
cache: pip
| language: python
cache: pip
python:
- 2.7
- 3.6
- 3.7
- 3.8
- 3.9
- pypy
- pypy3
install:
- pip install pytest coverage coverage-python-version coveralls flake8
- pip install -e .
script:
- coverage run -m pytest
- flake8 *.py
- coverage report -m $([[ $TRAVIS_PYTHON_VERSION != pypy3 ]] && echo --fail-under=100)
after_success:
- coveralls
notifications:
irc:
channels:
- "chat.freenode.net##mgedmin"
on_success: change
on_failure: always
template:
# ping my nick so I get a pushbullet notification on my phone
- "mgedmin: %{repository_name} (%{branch}) build %{result}: %{build_url}"
| Enable IRC notifications on failed builds | Enable IRC notifications on failed builds
| YAML | mit | mgedmin/cloneall |
8a4dced9798020de4cc5baa4327e744af4ec284b | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- hhvm
script: phpunit --configuration ./build/travis-ci.xml
notifications:
email: false
| language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
script: phpunit --configuration ./build/travis-ci.xml
notifications:
email: false
| Test with PHP 5.3.3 and PHP 5.6 | Test with PHP 5.3.3 and PHP 5.6
| YAML | bsd-3-clause | terryhuangbo/ut,cerberosnash/jenkins,ankahla/jenkins-phpunit-example,royopa/money,ankahla/jenkins-phpunit-example,ssinucodt/test,tungus28/money,HSarode-Compumatrice/money,junsanity06/Money,ojengwa/money,stefen/money,cerberosnash/jenkins,Rimehch/php-exp,arleincho/money,sebastianbergmann/money,boekkooi/money,balsing/Money,staabm/money,cerberosnash/jenkins,cenxun/money,juicexiems/money |
1ddba2a288f2f41b624acd3eb36940b13b3b1f13 | .travis.yml | .travis.yml | language: bash
sudo: required
before_install:
- docker pull weecology/portal_predictions
- docker run --name ppred -t -d weecology/portal_predictions /bin/bash
script:
- docker exec -i ppred git clone https://github.com/weecology/portalPredictions.git
- docker exec -i ppred bash -c "cd portalPredictions && Rscript install-packages.R"
- docker exec -i ppred bash -c "cd portalPredictions && Rscript tools/prepare_data.R"
- docker exec -i ppred bash -c "cd portalPredictions && Rscript PortalForecasts.R"
- docker exec -i ppred bash -c "cd portalPredictions && Rscript tests/testthat.R"
- docker cp ppred:/portalPredictions portalPredictionsResult
- cd portalPredictionsResult
- bash update_repo.sh
| language: bash
sudo: required
before_install:
- docker pull weecology/portal_predictions
- docker run --name ppred -t -d weecology/portal_predictions /bin/bash
- docker cp ../portalPredictions ppred:/
- docker exec -i ppred ls portalPredictions
script:
- docker exec -i ppred bash -c "cd portalPredictions && Rscript install-packages.R"
- docker exec -i ppred bash -c "cd portalPredictions && Rscript tools/prepare_data.R"
- docker exec -i ppred bash -c "cd portalPredictions && Rscript PortalForecasts.R"
- docker exec -i ppred bash -c "cd portalPredictions && Rscript tests/testthat.R"
- docker cp ppred:/portalPredictions portalPredictionsResult
- cd portalPredictionsResult
- bash update_repo.sh
| Use current repository root instead of master for Travis | Use current repository root instead of master for Travis
This allows PRs and branches to be tested properly.
Fixes #131
| YAML | mit | sdtaylor/portalPredictions,sdtaylor/portalPredictions,sdtaylor/portalPredictions,gmyenni/portalPredictions,weecology/portalPredictions,weecology/portalPredictions,weecology/portalPredictions,gmyenni/portalPredictions,gmyenni/portalPredictions |
5b5c307c584f2c87a8cc565f164d8418b6401428 | .travis.yml | .travis.yml | language: python
sudo: required
services:
- docker
branches:
# Restrict push builds to only master
only:
- master
env:
- DOCKER_COMPOSE_VERSION=1.22.0
before_install:
# Fail immediately on any error
- set -e
# See https://docs.travis-ci.com/user/docker/
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
install:
# Build containers
# Use BUILD_MODE=pull if you prefer pulling existing images
- make build-tests
script:
- make tests
| language: python
python:
- "2.7"
sudo: required
services:
- docker
branches:
# Restrict push builds to only master
only:
- master
env:
- DOCKER_COMPOSE_VERSION=1.22.0
before_install:
# Fail immediately on any error
- set -e
# See https://docs.travis-ci.com/user/docker/
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
install:
# Build containers
# Use BUILD_MODE=pull if you prefer pulling existing images
- make build-tests
script:
- make tests
| Define python version for Travis | Define python version for Travis
Apr 16, 2019 the default changes from 2.7 to 3.6. This will keep it at 2.7
| YAML | mpl-2.0 | mpurzynski/MozDef,gdestuynder/MozDef,Phrozyn/MozDef,gdestuynder/MozDef,mozilla/MozDef,mozilla/MozDef,mozilla/MozDef,mpurzynski/MozDef,Phrozyn/MozDef,jeffbryner/MozDef,Phrozyn/MozDef,mpurzynski/MozDef,jeffbryner/MozDef,jeffbryner/MozDef,gdestuynder/MozDef,Phrozyn/MozDef,mpurzynski/MozDef,mozilla/MozDef,jeffbryner/MozDef,gdestuynder/MozDef |
ff949fb2b3248e23053e73b9ade3a881da0ba693 | .travis.yml | .travis.yml | language: python
sudo: false
matrix:
include:
- python: 3.5.0
env: TOXENV=py35
- python: 3.4
env: TOXENV=py34
- python: 2.7
env: TOXENV=py27
install:
- pip install -U tox
script:
- tox
before_install:
- pip install pytest-cov codecov -r tests/requirements.txt
after_success:
- py.test tests/ --cov=./
- codecov | language: python
sudo: false
matrix:
include:
- python: 3.5.0
env: TOXENV=py35
- python: 3.4
env: TOXENV=py34
- python: 2.7
env: TOXENV=py27
install:
- pip install -U tox
script:
- tox
before_install:
- pip install -e .
- pip install pytest-cov codecov -r tests/requirements.txt
after_success:
- py.test tests/ --cov=./
- codecov | Make sure to install this package to get all dependencies on Travis. | Make sure to install this package to get all dependencies on Travis.
| YAML | apache-2.0 | its-dirg/Flask-pyoidc,zamzterz/Flask-pyoidc,zamzterz/Flask-pyoidc |
9ab77474a28eb6bdf63ff0301a3883e92078f390 | .travis.yml | .travis.yml | language: haskell
ghc: 7.8
deploy:
provider: hackage
username: StefanKersten
password:
secure: OeylLs0HzrV/W756CTWLtsaVJXENE9y6axQVeFPxLCQA42YxiHOS7xaiE/QHXWVNtXKSIqSmbrPZ4/ycMl+80YxrlY7QwoFD9ikZsENIAe6xg80z2eRzWgtp2pdlpfG0bBfAdOZ3p5aKcwF69bM2UaQWcWuHGxNcMljpN7I0TL8=
on:
repo: samplecount/shake-language-c
branch: master
| sudo: false
language: haskell
ghc: 7.8
deploy:
provider: hackage
username: StefanKersten
password:
secure: OeylLs0HzrV/W756CTWLtsaVJXENE9y6axQVeFPxLCQA42YxiHOS7xaiE/QHXWVNtXKSIqSmbrPZ4/ycMl+80YxrlY7QwoFD9ikZsENIAe6xg80z2eRzWgtp2pdlpfG0bBfAdOZ3p5aKcwF69bM2UaQWcWuHGxNcMljpN7I0TL8=
on:
repo: samplecount/shake-language-c
branch: master
| Switch to container based builds on Travis CI | Switch to container based builds on Travis CI
| YAML | apache-2.0 | samplecount/shake-language-c |
270bc3c4005aff12eb74d56d98b26a1b3a9550d5 | .travis.yml | .travis.yml | language: ruby
dist: trusty
sudo: false
cache: bundler
rvm:
- 2.4.1
addons:
apt:
packages:
- vim-gtk
env:
- TRAVIS_CI=1
before_install:
- "gem install bundler"
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "vim --version"
| language: ruby
dist: stretch
sudo: false
cache: bundler
rvm:
- 2.6.2
addons:
apt:
update: true
env:
- TRAVIS_CI=1
before_install:
- "gem install bundler"
- "sudo apt-get -y install vim-gtk3"
before_script:
- "export DISPLAY=:99.0"
- "vim --version"
script: "xvfb-run bundle exec rspec spec"
| Update TravisCI Vim to 8.0 | Update TravisCI Vim to 8.0
| YAML | mit | AndrewRadev/splitjoin.vim |
d94b745e046389c7eff35596a62703326a39dafd | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.11"
- "0.10"
| Exclude Node 0.8 and 0.6 from CI testing | Exclude Node 0.8 and 0.6 from CI testing
| YAML | mit | rei/gulp-html-include,reidev/gulp-html-include |
674455553813c3472af9b0c0e3d15c9d3ded3b13 | .travis.yml | .travis.yml | language: android
android:
components:
- sys-img-armeabi-v7a-android-19
before_script:
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
install:
#install adb library
- sudo pip install -e .
script:
- adb shell ls /data/media/0
- python test/adb_test.py
notifications:
email: false
| language: android
android:
components:
- sys-img-armeabi-v7a-android-22
before_script:
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
install:
#install adb library
- sudo pip install -e .
script:
- adb shell ls /data/media/0
- python test/adb_test.py
notifications:
email: false
| Change android component from 19 to 22 | Change android component from 19 to 22
| YAML | bsd-3-clause | solarce/adb_android,vmalyi/adb_android |
9cb852715582dbd41da2d3827c9ed3962403c9d7 | .travis.yml | .travis.yml | sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- 0.12
- 4
- 5
- 6
matrix:
fast_finish: true
allow_failures:
- node_js: 6
env:
global:
- 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@^2.0.0
before_script:
- npm prune
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_after_all.py
- export $(cat .to_export_back) &> /dev/null
- npm run semantic-release
| sudo: false
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- 0.12
- 4
- 6
matrix:
fast_finish: true
allow_failures:
- node_js: 6
env:
global:
- 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@^2.0.0
before_script:
- npm prune
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_after_all.py
- export $(cat .to_export_back) &> /dev/null
- npm run semantic-release
| Remove Node.js v5 from TravisCI | Remove Node.js v5 from TravisCI
| YAML | mit | pelias/openaddresses,pelias/openaddresses |
36cfb280085e94b6a73df9d072b60a7ee8c8ede4 | .travis.yml | .travis.yml | language: python
python: 2.7
install:
- pip install -qq flake8
- python setup.py install
script:
- flake8 --version
- flake8 --ignore=E501 py_my_key
- nosetests -s -v
| language: python
python: 2.7
install:
- pip install -qq flake8
- pip install git+https://github.com/pingo-io/pingo-py.git
- python setup.py install
script:
- flake8 --version
- flake8 --ignore=E501 py_my_key
- nosetests -s -v
| Install dev version of Pingo with Travis | Install dev version of Pingo with Travis
| YAML | isc | RaspberryPi-Samples/py-my-key,RaspberryPi-Samples/py-my-key,RaspberryPi-Samples/py-my-key |
060dad0e1c0f31bdb83593ce00f22c4b61122e6f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install: |
npm install -g grunt-cli
gem install --no-ri --no-rdoc sass
before_script: |
grunt lib
grunt dist
script: grunt test
| language: node_js
node_js:
- "0.10"
before_install: |
npm install -g grunt-cli
gem install -N sass
before_script: grunt install
script: grunt test
| Simplify Travis config given Gruntfile updates. :wrench: | Simplify Travis config given Gruntfile updates. :wrench: | YAML | mit | hlfcoding/hlf-jquery,hlfcoding/hlf-jquery |
ccb1bfdd0386094f77d07b745703dd1105423255 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
| language: ruby
before_install:
- gem update bundler
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
| Update bundler on Travis CI | Update bundler on Travis CI
| YAML | mit | chrishunt/github-auth |
f5f14ad0eb4f4091fd3947a95a171b1bd615761a | .travis.yml | .travis.yml | language: csharp
# dotnet cli require Ubuntu 14.04
sudo: required
dist: trusty
# dotnet cli require OSX 10.10
# osx_image: xcode7.1
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
os:
# - osx
- linux
env:
- CLI_VERSION=latest
before_install:
# Install OpenSSL
- if test "$TRAVIS_OS_NAME" == "osx"; then
brew update;
brew install openssl;
brew link --force openssl;
fi
install:
# Download script to install dotnet cli
- curl -L --create-dirs https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh -o ./scripts/install.sh
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
# Install the latest versio of dotnet CLI
- bash ./scripts/install.sh --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR" --no-path
# Add dotnet to PATH
- export PATH="$DOTNET_INSTALL_DIR:$PATH"
script:
- dotnet restore Source/
# testing only netcoreapp1.0 on linux and OSX
- dotnet test Source/AsyncIO.Tests -f netcoreapp1.0 | language: csharp
# dotnet cli require Ubuntu 14.04
sudo: required
dist: trusty
# dotnet cli require OSX 10.10
# osx_image: xcode7.1
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
os:
# - osx
- linux
env:
- CLI_VERSION=latest
before_install:
# Install OpenSSL
- if test "$TRAVIS_OS_NAME" == "osx"; then
brew update;
brew install openssl;
brew link --force openssl;
fi
install:
# Download script to install dotnet cli
- curl -L --create-dirs https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.sh -o ./scripts/install.sh
- export DOTNET_INSTALL_DIR="$PWD/.dotnetcli"
# Install the latest versio of dotnet CLI
- bash ./scripts/install.sh --version "$CLI_VERSION" --install-dir "$DOTNET_INSTALL_DIR" --no-path
# Add dotnet to PATH
- export PATH="$DOTNET_INSTALL_DIR:$PATH"
script:
- dotnet restore Source/
# testing only netcoreapp1.0 on linux and OSX
- dotnet test Source/AsyncIO.Tests -f netcoreapp2.0 | Update to test under .NET Core 2.0. | Update to test under .NET Core 2.0.
| YAML | mpl-2.0 | somdoron/AsyncIO |
f07fddd99a3176a61cafc141caf87e3023abc41a | .travis.yml | .travis.yml | language: python
python:
- 2.7
virtualenv:
system_site_packages: true
before_install:
- sudo apt-get install gfortran libopenblas-dev liblapack-dev
- sudo apt-get install python-numpy python-scipy
# command to install dependencies
install:
- travis_wait pip install -r requirements.txt
- python setup.py install
# command to run tests
script: nosetests
| sudo: false
language: python
python:
- 2.7
cache: apt
addons:
apt:
packages:
- gfortran
- libopenblas-dev
- liblapack-dev
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy cython nose
- travis_wait pip install -r requirements.txt
- python setup.py install
# command to run tests
script: nosetests
| Use minconda to install scientific python packages on Travis | Use minconda to install scientific python packages on Travis
| YAML | apache-2.0 | NLeSC/cptm,NLeSC/cptm |
0ab1861a08251c79f7b144f669dd19096ad20b26 | .travis.yml | .travis.yml | 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.7.0
- 2.6.3
- 2.5.5
- 2.4.6
- 2.3.8
- rbx-3
script:
- rake spec
| matrix:
include:
- os: linux
dist: bionic
sudo: false
- 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.7.0
- 2.6.5
- 2.5.7
- 2.4.9
- rbx-3
script:
- rake spec
| Update dependencies for Travis CI | Update dependencies for Travis CI
| YAML | apache-2.0 | akihikodaki/cld3-ruby,akihikodaki/cld3-ruby |
09491e4c5dac386e0b1e22d463a840b3c35dfd68 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "6"
sudo: false
cache:
yarn: true
directories:
- $HOME/.npm
- $HOME/.cache # includes bowers cache
env:
matrix:
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
- yarn global add phantomjs-prebuilt
- phantomjs --version
install:
- yarn install --no-lockfile
script:
# We need to cleanup, since our deploy depends on the git repo's status
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO test
after_success:
- node_modules/.bin/ember deploy production
| ---
language: node_js
node_js:
- "6"
sudo: false
cache:
yarn: true
directories:
- $HOME/.npm
- $HOME/.cache # includes bowers cache
env:
matrix:
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
# Locking to Yarn 1.0.2 to work around https://github.com/yarnpkg/yarn/issues/4612
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.0.2
- export PATH=$HOME/.yarn/bin:$PATH
- yarn global add phantomjs-prebuilt
- phantomjs --version
install:
- yarn install --no-lockfile
script:
# We need to cleanup, since our deploy depends on the git repo's status
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO test
after_success:
- node_modules/.bin/ember deploy production
| Work around Yarn 1.1.0 bug in Travis | Work around Yarn 1.1.0 bug in Travis
| YAML | mit | ember-learn/ember-cli-addon-docs,ember-learn/ember-cli-addon-docs,ember-learn/ember-cli-addon-docs |
d85834be9f3b535aa3abe2796f737306e02edede | .travis.yml | .travis.yml | language: python
python:
# This is not actually used. Because it would take an overly long time
# to build scipy we cannot use the virtual env of travis. Instead, we
# use miniconda.
- 2.7
- 3.3
- 3.4
notifications:
email: false
sudo: false
install:
# Install miniconda
# -----------------
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
# Create the basic testing environment
# ------------------------------------
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
- conda update conda
- conda create -n test-environment python=$TRAVIS_PYTHON_VERSION
- source activate test-environment
# Customise the testing environment
# ---------------------------------
- conda install pbr nose pip
- sed '/click\|python-bidi\|regex\|protobuf/d' requirements.txt | xargs conda install
# Conda does not package everything, so we install a couple others via pip.
- pip install -r requirements.txt
# Package debug
# -------------
- conda list
- pip freeze
# Install kraken
# --------------
- python setup.py install
script:
- python setup.py nosetests
| language: python
python:
# This is not actually used. Because it would take an overly long time
# to build scipy we cannot use the virtual env of travis. Instead, we
# use miniconda.
- 2.7
- 3.3
- 3.4
notifications:
email: false
sudo: false
install:
# Install miniconda
# -----------------
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
# Create the basic testing environment
# ------------------------------------
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
- conda update conda
- conda create -n test-environment python=$TRAVIS_PYTHON_VERSION
- source activate test-environment
# Customise the testing environment
# ---------------------------------
- conda install pbr nose pip
- sed '/python-bidi\|regex/d' requirements.txt | xargs conda install
# Conda does not package everything, so we install a couple others via pip.
- pip install -r requirements.txt
# Package debug
# -------------
- conda list
- pip freeze
# Install kraken
# --------------
- python setup.py install
script:
- python setup.py nosetests
| Use new packages available in conda. | Use new packages available in conda.
| YAML | apache-2.0 | QuLogic/ocropy,mittagessen/kraken,mittagessen/kraken,QuLogic/ocropy,mittagessen/kraken,mittagessen/kraken |
cc0b74b311b058ceb234a8ad886504f32f6e5fe1 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
before_install:
- pip install coveralls
install:
- pip install Django==${DJANGO}
- pip install -e .
- pip install -r requirements-test.txt
script: make test
env:
- DJANGO=1.11.15
- DJANGO=2.0.8
- DJANGO=2.1
after_success:
- coveralls
| language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
before_install:
- pip install coveralls
install:
- pip install Django==${DJANGO}
- pip install -e .
- pip install -r requirements-test.txt
script: make test
env:
- DJANGO=1.11.15
- DJANGO=2.0.8
- DJANGO=2.1
after_success:
- coveralls
| Add support for Python 3.7 | Add support for Python 3.7
| YAML | bsd-3-clause | grantmcconnaughey/django-field-history |
bfa97e9fc27f7df5828fcf97f1bd5445de51ac52 | .travis.yml | .travis.yml | language: cpp
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libboost-all-dev
before_script:
- cd ../..
- git clone https://github.com/czipperz/vick czipperz/vick
- cd czipperz/vick
- mkdir -p plugins
- cd plugins
- git clone https://github.com/czipperz/vick-insert-mode
- cd vick-insert-mode
- make begin
- cd ../..
script:
- make regen Dtesting=-Dtesting
- make CXX=g++-4.8 test -j 10
- make CXX=g++-4.8 -j 10
| language: cpp
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libboost-all-dev
before_script:
- cd ../..
- git clone https://github.com/czipperz/vick czipperz/vick
- cd czipperz/vick
- mkdir -p plugins
- cd plugins
- git clone https://github.com/czipperz/vick-insert-mode
- cd vick-insert-mode
- make begin
- cd ../..
script:
- make regen Dtesting=-Dtesting
- make CXX=g++-4.8 -j 10
- make CXX=g++-4.8 test -j 10
| Call ``make`` then ``make test`` | Call ``make`` then ``make test``
| YAML | mpl-2.0 | czipperz/vick-insert-mode |
c9a105601b209a9ab20ff81f73e24478d635c922 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- "npm i -g jasmine-node"
- "npm i -g grunt-cli"
| language: node_js
node_js:
- "0.12"
- "4.2"
before_script:
- "npm i -g grunt-cli"
| Remove 0.10, add 0.12 and 4.2 LTS of node to the test matrix. | Remove 0.10, add 0.12 and 4.2 LTS of node to the test matrix.
| YAML | mit | zumba/drill-sergeant,zumba/drill-sergeant |
eb5d01aaeb0bb050d2923046ed3de963e607951c | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.5
- 2.6.2
before_install:
- gem update --system
- gem install bundler -v 1.16.1
cache: bundler
| language: ruby
rvm:
- 2.3.8
- 2.4.5
- 2.5.5
- 2.6.2
before_install:
- gem update --system
- gem install bundler -v 1.16.1
cache: bundler
| Drop support for ruby 2.2 | Drop support for ruby 2.2
| YAML | mit | ryoff/age_jp |
2df8c1dae7b6d769a134913d4f580e55e0985944 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install:
- npm install -g tsd
- tsd install
| language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm install -g tsd
- tsd install
| Add node 0.11 to Travis builds | Add node 0.11 to Travis builds | YAML | mit | Dirrk/InversifyJS,remojansen/InversifyJS,Dirrk/InversifyJS,remojansen/InversifyJS,inversify/InversifyJS,inversify/InversifyJS |
095ad845a264821c634573d68eb52e8ac519eab9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get build-dep -qq python-pygame
- sudo apt-get install -qq python-pygame
virtalenv:
system_site_packages: true
install:
- pip install -r requirements.txt
script: nosetests
| language: python
python:
- "2.7"
before_install:
- sudo apt-get update
- sudo apt-get install python-dev libsdl-image1.2-dev libsdl-mixer1.2-dev libsdl-ttf2.0-dev libsdl1.2-dev libsmpeg-dev python-numpy libportmidi-dev ffmpeg libswscale-dev libavformat-dev libavcodec-dev libjpeg-dev libtiff4-dev libx11-6 libX11-dev xfonts-base xfonts-100dpi xfonts-75dpi xfonts-cyrillic
virtalenv:
system_site_packages: true
script: nosetests
| Install pygame requirements through apt-get | Install pygame requirements through apt-get
| YAML | mit | craigthomas/Chip8Python |
e67846cfec9833d1b85da7b24fe986606b89e0f5 | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: [2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, ruby-head]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run test
run: bundle exec rake
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage/.resultset.json
| name: build
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
ruby: [2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, ruby-head]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Run test
run: bundle exec rake
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage/.resultset.json
| Test against Ruby 2.1 on GitHub Actions | Test against Ruby 2.1 on GitHub Actions
| YAML | mit | emsk/bundle_outdated_formatter,emsk/bundle_outdated_formatter |
fc5e3baabf78afaeecee45c47f21e9da4705bc80 | .travis.yml | .travis.yml | language: java
before_install:
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
- echo "deb http://repos.mesosphere.io/ubuntu/ precise main" | sudo tee /etc/apt/sources.list.d/mesosphere.list
- sudo apt-get update -qq
- sudo apt-get install mesos
sudo: required
env:
global:
- MESOS_NATIVE_LIBRARY=/usr/lib/libmesos.so
matrix:
- TEST_DIR=scheduler TOOL=lein
- TEST_DIR=jobclient TOOL=mvn
script: cd $TEST_DIR && $TOOL test
| language: java
before_install:
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF
- echo "deb http://repos.mesosphere.io/ubuntu/ precise main" | sudo tee /etc/apt/sources.list.d/mesosphere.list
- sudo apt-get update -qq
- sudo apt-get install mesos
sudo: required
env:
global:
- MESOS_NATIVE_JAVA_LIBRARY=/usr/lib/libmesos.so
matrix:
- TEST_DIR=scheduler TOOL=lein
- TEST_DIR=jobclient TOOL=mvn
script: cd $TEST_DIR && $TOOL test
| Move to forwards-compatible libmesos env var scheme | Move to forwards-compatible libmesos env var scheme
| YAML | apache-2.0 | twosigma/Cook,m4ce/Cook,twosigma/Cook,twosigma/Cook,m4ce/Cook,m4ce/Cook,ruo91/Cook,ruo91/Cook |
9c92998b95a465e740c5f3ff6cf9ea0ce7dafe92 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node" # Latest node version
- "lts/*" # Latest LTS version
- "10"
- "8"
- "6"
before_install: if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
script:
- grunt standards
- npm test
# For code coverage:
after_success:
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
| language: node_js
node_js:
- "node" # Latest node version
- "lts/*" # Latest LTS version
- "10"
- "8"
before_install: if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
script:
- grunt standards
- npm test
# For code coverage:
after_success:
cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
| Remove node 6 from Travis CI config | Remove node 6 from Travis CI config
| YAML | mit | silvermine/eslint-plugin-silvermine |
012a3f1d09dc1bddf61df046f886955f1478c5ef | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
addons:
sauce_connect:
username: solarnz
access_key:
secure: "oZNvjt860iIgigOT3LJl5XU1KJz5gndBHX99lBij1RgQGGYTW6J0YxKdZIvoqfGL1y3AXp3k+57JiX03YBX1xXB6W9bjtlvaJw44HzadpjldtoyBrM3NYc7JpELRoTxiTnx3kpceRNhqzyYXhbBMi4L0SypTHNHUAs+E6MreVUI="
before_script:
- 'npm install -g bower gulp-cli'
- 'bower install'
script:
- 'gulp'
- 'gulp serve&'
- 'sleep 3'
- 'gulp e2e'
| sudo: false
language: node_js
node_js:
- '0.10'
addons:
sauce_connect: true
env:
global:
- secure: arMGPYwL6UHlkCB5GxjidVKXi9CyDjttPjyNi5BFeLco1mnJ22U6esIpRFShzaDw03uh4ERgX9H/uR2jXn8IS8bDiZgWZO72UmtTR1D3nNnJTVOIbiFNd11M4R+BvZJEO5X90axOuF+AC9LJBmIEmuDXT7LsjQF1FBB9N9mYB3c=
- secure: VPAZW1gqbmBX+aWUbNWK+VQQ1QwceEiKchd6swbPxa1NCQ8zS6H4VLdyPW8ja6mvj2nbb55v6i4UZiFNrrsKeFyWiKObYEGim5GSbmuPpFeYAV7q/6Z/jPLKtFX4/HpiugbN1ecC/7/VmAwF0mx94IheOHhqX+oDdxbVIKLO7yg=
before_script:
- 'npm install -g bower gulp-cli'
- 'bower install'
script:
- 'gulp'
- 'gulp serve&'
- 'sleep 3'
- 'gulp e2e'
| Switch to open github repo credentials for saucelabs | [e2e] Switch to open github repo credentials for saucelabs
| YAML | mit | solarnz/ec2pric.es,solarnz/ec2pric.es,solarnz/ec2pric.es |
316a9f99a5654cd78a273b94ab0b2bbdb4f38988 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
# - "nightly"
install:
# - pip3 install codecov pyyaml
- pip3 install pyyaml
script:
- python3 -m tests
# - python3 -m doctest README.adoc
# - coverage run --source pylibofp -m test
#after_success:
# - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then codecov; fi
before_install:
# Install libofp from launchpad.
- sudo add-apt-repository ppa:byllyfish/libofp -y
- sudo apt-get update -qq
- sudo apt-get install libpcap libofp -y
# Per https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments
sudo: required
dist: trusty
| language: python
python:
- "3.5"
# - "nightly"
install:
# - pip3 install codecov pyyaml
- pip3 install pyyaml
script:
- python3 -m tests
# - python3 -m doctest README.adoc
# - coverage run --source pylibofp -m test
#after_success:
# - if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then codecov; fi
before_install:
# Install libofp from launchpad.
- sudo add-apt-repository ppa:byllyfish/libofp -y
- sudo apt-get update -qq
- sudo apt-get install libofp -y
# Per https://docs.travis-ci.com/user/ci-environment/#Virtualization-environments
sudo: required
dist: trusty
| Remove libpcap reference (need to fix deb package dependency). | Remove libpcap reference (need to fix deb package dependency).
| YAML | mit | byllyfish/pylibofp,byllyfish/pylibofp |
f047fb57299c2901955ae3bbed8c8ab1f8acd648 | .travis.yml | .travis.yml | language: php
sudo: false
dist: trusty
php:
- 7.2
- 7.3
env:
- ONTRAVIS=1
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
allow_failures:
- php: nightly
before_script:
- composer install
script: composer test
| language: php
sudo: false
dist: trusty
php:
- 7.2
- 7.3
- 7.4
env:
- ONTRAVIS=1
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
allow_failures:
- php: 7.4
before_script:
- composer install
script: composer test
| Test on PHP 7.4 too | Test on PHP 7.4 too
| YAML | mit | mpratt/Embera |
6bdfb214bedc41cef3bead8163ff11acedc8954b | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
install:
- pip install flake8 tox coverage==3.7.1 coveralls
before_script:
- flake8
- mkdir -p shippable/{codecoverage,testresults}
script:
- tox -e py$(echo $TRAVIS_PYTHON_VERSION | sed 's/\.//')
after_success:
- coverage report
- coverage xml
- mv -v coverage.xml shippable/codecoverage/
- mv -v unittests.xml shippable/testresults/
- coveralls || true
notifications:
slack:
rooms:
- organice:uPGToVwXE2IYAwn4hFFudPJ5#notifications
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
install:
- pip install flake8 tox coverage==3.7.1 coveralls
before_script:
- flake8
- mkdir -p shippable/{codecoverage,testresults}
script:
- tox -e py${TRAVIS_PYTHON_VERSION/\./}
after_success:
- coverage report
- coverage xml
- mv -v coverage.xml shippable/codecoverage/
- mv -v unittests.xml shippable/testresults/
- coveralls || true
notifications:
slack:
rooms:
- organice:uPGToVwXE2IYAwn4hFFudPJ5#notifications
| Use bash string manipulation for conciseness/readability | Use bash string manipulation for conciseness/readability
| YAML | apache-2.0 | Organice/django-organice,Organice/django-organice |
081ad2792d333bf01efdfa7cee9e599a591c3dc4 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
branches:
only:
- master
- composer
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
script:
- phpunit -c tests/phpunit.xml.dist tests/small
- phpunit -c tests/phpunit.xml.dist tests/medium
notifications:
email:
- mjs@beebo.org
| language: php
php:
- 5.3
- 5.4
branches:
only:
- master
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
script:
- phpunit -c tests/phpunit.xml.dist tests/small
- phpunit -c tests/phpunit.xml.dist tests/medium
notifications:
email:
- mjs@beebo.org
| Remove "composer" branch from CI tests | Remove "composer" branch from CI tests
| YAML | mit | ithinkihaveacat/byron,ithinkihaveacat/byron |
b931a67706f980654367a558e5e47360ab963cd6 | .github/workflows/c-cpp.yml | .github/workflows/c-cpp.yml | name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install needed libraries
run: sudo apt install check
- name: cmake
run: cmake .
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck
| name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install needed libraries
run: sudo apt install check
- name: cmake
run: cmake .
- name: make
run: make
- name: make test
run: make test
| Call make test instead of make check | Call make test instead of make check
| YAML | apache-2.0 | rasmus-toftdahl-olesen/sequanto-automation,rasmus-toftdahl-olesen/sequanto-automation,rasmus-toftdahl-olesen/sequanto-automation,rasmus-toftdahl-olesen/sequanto-automation,rasmus-toftdahl-olesen/sequanto-automation |
ff7d190970a46722137fbc7a1a75466e8a544ae1 | .travis.yml | .travis.yml | language: erlang
otp_release:
- 18.0
- 17.5
- R16B03-1
- R14B04
before_install:
- sudo apt-get update -qq
- sudo apt-get -y install libmozjs-dev
- git clone -b couchdb-peruser https://github.com/apache/couchdb
before_script:
- cd couchdb
- ./configure --disable-docs --disable-fauxton
- cp -r ../!(couchdb) ./src/couch_peruser
- make
script:
- rebar setup_eunit
- BUILDDIR=`pwd` rebar -r eunit apps=couch_peruser
cache: apt
| language: erlang
otp_release:
- 18.0
- 17.5
- R16B03-1
- R14B04
before_install:
- sudo apt-get update -qq
- sudo apt-get -y install libmozjs-dev
- git clone https://github.com/apache/couchdb
before_script:
- cd couchdb
- ./configure --disable-docs --disable-fauxton
- cp -r ../!(couchdb) ./src/couch_peruser
- make
script:
- rebar setup_eunit
- BUILDDIR=`pwd` rebar -r eunit apps=couch_peruser
cache: apt
| Test with master branch from couchdb repo | Test with master branch from couchdb repo
| YAML | apache-2.0 | fkaempfer/couchdb,fkaempfer/couchdb,fkaempfer/couchdb,fkaempfer/couchdb,fkaempfer/couchdb,fkaempfer/couchdb |
47af3ace7ce172469d433e9d40e79a8eb91c2a7d | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.11"
- "0.10"
| Remove old node versions from testing list | Remove old node versions from testing list
| YAML | mit | Kurahen-Premium/Kurahen-Premium,Kurahen-Premium/Kurahen-Premium,Kurahen-Premium/Kurahen-Premium |
748b28021f619be53e8cc8b0af25644ccaf88d00 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
deploy:
provider: azure_web_apps
skip_cleanup: true
| language: node_js
node_js:
- "5.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
deploy:
provider: azure_web_apps
skip_cleanup: true
node: "4.1"
| Deploy the Node 4.1 builds | Deploy the Node 4.1 builds
| YAML | mit | legacyconf/website,legacyconf/website |
4bbc61d26576d8c698e089573db2a350ccd85e5d | .github/workflows/maven.yml | .github/workflows/maven.yml | name: test
on: [push]
jobs:
test:
strategy:
matrix:
java: [8, 11.0.3, 11, 13, 17.0.1, 17, 18-ea]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Maven Test
run: ./mvnw clean test
deploy:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Java 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Deploy to Sonatype
run: ./mvnw -B -Drepo.username=${{secrets.SONATYPE_USERNAME}} -Drepo.password=${{secrets.SONATYPE_PASSWORD}} clean deploy -DskipTests=true --settings mySettings.xml
| name: test
on: [push]
jobs:
test:
strategy:
matrix:
java: [1.8, 11.0.3, 11, 13, 17.0.1, 17, 18-ea]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Maven Test
run: ./mvnw clean test
deploy:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Java ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Deploy to Sonatype
run: ./mvnw -B -Drepo.username=${{secrets.SONATYPE_USERNAME}} -Drepo.password=${{secrets.SONATYPE_PASSWORD}} clean deploy -DskipTests=true --settings mySettings.xml
| Revert the chosen deployed version. | Revert the chosen deployed version.
The tests continue to test many versions of OpenJDKs, but only deploys the latest of for Java 8. Keep in mind JDK 8 updates will stop or eol soon according to support license announcements. | YAML | apache-2.0 | ralscha/extclassgenerator |
72c885ea963567cbbfb921c0fd944e2aa54f8aed | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
env:
- TEST_DIR=sashimi-webapp
- TEST_DIR=sashimi-platform
script: cd $TEST_DIR && NODE_ENV=testing yarn && yarn test-travis
| language: node_js
node_js:
- "6"
env:
- NODE_ENV=testing TEST_DIR=sashimi-webapp
- NODE_ENV=testing TEST_DIR=sashimi-platform
script: cd $TEST_DIR && yarn && yarn test-travis
| Fix NODE_ENV not being parse | Fix NODE_ENV not being parse
- NODE_ENV is now specific at the within the `env` item
- Ref: https://docs.travis-ci.com/user/environment-variables/#Defining-Multiple-Variables-per-Item | YAML | mit | nus-mtp/sashimi-note,nus-mtp/sashimi-note,nus-mtp/sashimi-note |
510ca32488741d3d8b6362d2eec315f8bbadd55e | .travis.yml | .travis.yml | language: ruby
before_install:
- gem install bundler
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ree
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-19mode
- rvm: rbx-19mode
| language: ruby
before_install:
- gem install bundler
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ree
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-19mode
| Remove jruby 1.9 from failures. | Remove jruby 1.9 from failures.
| YAML | mit | doudou/tty,askl56/tty,peter-murach/tty,piotrmurach/tty |
87d84c6facbe02c94df86ff9f1104816a04a26b0 | .github/workflows/maven.yml | .github/workflows/maven.yml | name: Java CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Build with Maven
run: mvn package --file pom.xml
| name: Java CI
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Get OpenJDK 11
run: wget https://github.com/AdoptOpenJDK/openjdk11-binaries/releases/download/jdk-11.0.4%2B11/OpenJDK11U-jdk_x64_linux_hotspot_11.0.4_11.tar.gz
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
jdkFile: ./OpenJDK11U-jdk_x64_linux_hotspot_11.0.4_11.tar.gz
- name: Build with Maven
run: mvn package --file pom.xml -Pjs-test
| Use OpenJDK from AdoptOpenJDK releases | Use OpenJDK from AdoptOpenJDK releases
| YAML | apache-2.0 | mosoft521/wicket,apache/wicket,mosoft521/wicket,mosoft521/wicket,apache/wicket,mosoft521/wicket,apache/wicket,apache/wicket,mosoft521/wicket,apache/wicket |
f23f8eb7fdadc2c0a25bb5bfd1951a3b8039aba8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.2
- ruby-head
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
matrix:
exclude:
- rvm: 2.3.8
gemfile: gemfiles/rails_6.0.gemfile
- rvm: 2.4.5
gemfile: gemfiles/rails_6.0.gemfile
script:
- bundle exec rake rubocop
- bundle exec rspec
| language: ruby
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.2
- ruby-head
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
matrix:
exclude:
- rvm: 2.3.8
gemfile: gemfiles/rails_6.0.gemfile
- rvm: 2.4.5
gemfile: gemfiles/rails_6.0.gemfile
- rvm: ruby-head
gemfile: gemfiles/rails_5.0.gemfile
- rvm: ruby-head
gemfile: gemfiles/rails_5.1.gemfile
- rvm: ruby-head
gemfile: gemfiles/rails_5.2.gemfile
script:
- bundle exec rake rubocop
- bundle exec rspec
| Exclude testing old rails versions on latest ruby | Exclude testing old rails versions on latest ruby
See: https://github.com/rails/rails/issues/37464
| YAML | mit | lbeder/health-monitor-rails,lbeder/health-monitor-rails,lbeder/health-monitor-rails |
2ec0e721f4ec8fe097a58cf5dd3cdca9f150a8ad | .github/workflows/tests.yml | .github/workflows/tests.yml | name: Tests
on: [ push, pull_request ]
jobs:
tests:
name: "Tests"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version:
- "7.3"
- "7.4"
- "8.0"
- "8.1"
composer-flags:
- ""
- " --prefer-lowest"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
- name: "Install dependencies"
run: "composer update --no-interaction --no-progress ${{ matrix.composer-flags }}"
- name: "Tests"
run: |
vendor/bin/phing
| name: Tests
on: [ push, pull_request ]
jobs:
tests:
name: "Tests"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- php-version: "7.3"
composer-flags: ""
- php-version: "7.3"
composer-flags: " --prefer-lowest"
- php-version: "7.4"
composer-flags: ""
- php-version: "7.4"
composer-flags: " --prefer-lowest"
- php-version: "8.0"
composer-flags: ""
- php-version: "8.0"
composer-flags: " --prefer-lowest"
- php-version: "8.1"
composer-flags: ""
- php-version: "8.1"
composer-flags: " --prefer-lowest"
steps:
- name: "Checkout"
uses: "actions/checkout@v2"
- name: "Install PHP"
uses: "shivammathur/setup-php@v2"
with:
coverage: "none"
php-version: "${{ matrix.php-version }}"
- name: "Install dependencies"
run: "composer update --no-interaction --no-progress ${{ matrix.composer-flags }}"
- name: "Tests"
run: |
vendor/bin/phing
| Make the test matrix entries explicit | [TASK] Make the test matrix entries explicit
This allows having only a subset of tests when new PHP versions and
TYPO3 versions are added (where not all combinations are possible).
| YAML | mit | sascha-egerer/phpstan-typo3 |
1389e96d12dfb54e1432f99f6f07824c07963cc5 | .github/workflows/tests.yml | .github/workflows/tests.yml | name: tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
php: [7.4, 7.3]
os: [ubuntu-latest, windows-latest]
name: PHP${{ matrix.php }} on ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite3, pdo_sqlite, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick
coverage: none
- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/phpunit
| name: tests
on:
push:
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
php: [7.4, 7.3]
os: [ubuntu-latest, windows-latest]
name: PHP${{ matrix.php }} on ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Cache dependencies
uses: actions/cache@v1
with:
path: ~/.composer/cache/files
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: dom, curl, libxml, mbstring, zip, pcntl, sqlite3, pdo_sqlite, pdo_mysql, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo
coverage: none
- name: Install dependencies
run: |
composer update --prefer-dist --no-interaction
- name: Execute tests
run: vendor/bin/phpunit
| Enable fileinfo on github action. | Enable fileinfo on github action.
Signed-off-by: Mior Muhammad Zaki <e1a543840a942eb68427510a8a483282a7bfeddf@gmail.com>
| YAML | mit | orchestral/testbench-core,orchestral/testbench-core |
68db0db648a36f502a6dd6931c5564b65e739cae | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "pypy"
- "pypy3.5"
- "nightly"
install: pip install coverage
matrix:
allow_failures:
python:
- "nightly"
- "3.8-dev"
include:
- python: 3.8-dev
dist: xenial
sudo: true
script:
- coverage run -m py.test tests
- bash <(curl -s https://codecov.io/bash)
| sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
- "pypy3.5"
- "nightly"
install: pip install coverage
matrix:
allow_failures:
python:
- "nightly"
- "3.8-dev"
include:
- python: 3.7
dist: xenial
sudo: true
- python: 3.8-dev
dist: xenial
sudo: true
script:
- coverage run -m py.test tests
- bash <(curl -s https://codecov.io/bash)
| Put python3.7 back in there. | Put python3.7 back in there.
| YAML | mit | richardkiss/pycoin,richardkiss/pycoin |
3bc7c82a8cf3a05247fc04e29c33fb4becc42133 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
env:
- MONGODB_VERSION="2.6.11"
- MONGODB_VERSION="3.0.7"
- MONGODB_VERSION="3.2.0"
before_script:
- npm install -g istanbul
- npm install coveralls
- npm install mocha-lcov-reporter
-
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB_VERSION}.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-${MONGODB_VERSION}/bin/mongod --dbpath /tmp/data &> /dev/null &
- ${PWD}/mongodb-linux-x86_64-${MONGODB_VERSION}/bin/mongod --version
- until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done
after_script:
- NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
| language: node_js
sudo: false
node_js:
- "7"
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
env:
- MONGODB_VERSION="2.6.11"
- MONGODB_VERSION="3.0.7"
- MONGODB_VERSION="3.2.0"
before_script:
- npm install -g istanbul
- npm install coveralls
- npm install mocha-lcov-reporter
-
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-${MONGODB_VERSION}.tgz -O /tmp/mongodb.tgz
- tar -xvf /tmp/mongodb.tgz
- mkdir /tmp/data
- ${PWD}/mongodb-linux-x86_64-${MONGODB_VERSION}/bin/mongod --dbpath /tmp/data &> /dev/null &
- ${PWD}/mongodb-linux-x86_64-${MONGODB_VERSION}/bin/mongod --version
- until nc -z localhost 27017; do echo Waiting for MongoDB; sleep 1; done
after_script:
- NODE_ENV=test istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
| Add node.js 7 to build matrix | Add node.js 7 to build matrix
| YAML | bsd-2-clause | saintedlama/restify-mongoose |
6ede4dd3a283d3dc1217356b56520e9fd73e389a | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo add-apt-repository ppa:gstreamer-developers
- sudo apt-get -qq update
- sudo apt-get install -qq libhdf5-serial-dev python-h5py
- sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib
- sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad
# command to install dependencies
#install:
# - "pip install -r requirements.txt --use-mirrors"
- python setup.py install
# command to run tests
script:
- py.test tests --ignore tests/sandbox
# - "python setup.py test"
| language: python
python:
- "2.6"
- "2.7"
virtualenv:
system_site_packages: true
# command to prepare the system to install prerequisites or dependencies
before_install:
- sudo add-apt-repository -y ppa:gstreamer-developers
- sudo apt-get -qq update
- sudo apt-get install -qq libhdf5-serial-dev python-h5py
- sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran
- sudo apt-get install -qq python-numpy python-scipy python-matplotlib
- sudo apt-get install -qq python-gst0.10 gstreamer0.10-plugins-good gstreamer0.10-gnonlin gstreamer0.10-plugins-ugly gstreamer0.10-plugins-bad
# command to install dependencies
#install:
# - "pip install -r requirements.txt --use-mirrors"
- python setup.py install
# command to run tests
script:
- py.test tests --ignore tests/sandbox
# - "python setup.py test"
| Add -y option for add-apt-repository in Travis | Add -y option for add-apt-repository in Travis
| YAML | agpl-3.0 | Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide,Parisson/TimeSide |
9dd86d232ad2653bc6c6acbc41bc256a99f9d1e7 | .travis.yml | .travis.yml | language: ruby
notifications:
email:
on_success: change
on_failure: always
before_install:
- gem update --system $RUBYGEMS_VERSION
- gem --version
- gem install bundler
- bundle --version
- mkdir -p tmp/bundle
bundler_args: "--binstubs"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-head
- rbx
script: bin/rake build spec install
matrix:
allow_failures:
- rvm: 1.8.7
| language: ruby
notifications:
email:
on_success: change
on_failure: always
before_install:
- gem update --system $RUBYGEMS_VERSION
- gem --version
- gem install bundler
- bundle --version
- mkdir -p tmp/bundle
bundler_args: "--binstubs"
rvm:
# - 1.8.7 - include below so RUBYGEMS version gets set
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-head
- rbx
script: bin/rake build spec install
matrix:
allow_failures:
- rvm: 1.8.7
env: RUBYGEMS_VERSION=1.8.25
include:
# set RUBYGEMS_VERSION=1.8.25 for ruby 1.8.7 to avoid "undefined method `source_index' for Gem:Module" errors
- rvm: 1.8.7
env: RUBYGEMS_VERSION=1.8.25
| Set RUBYGEMS back to avoid | Set RUBYGEMS back to avoid
| YAML | mit | ianheggie/railsapp_factory |
0d3368395b3ccd5c17437b168fc3f8ae5b7dea67 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.1sneakpeek
script:
- swift build
- swift test
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-macOS test
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-iOS
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-watchOS
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-tvOS
after_success: bash <(curl -s https://codecov.io/bash)
| language: objective-c
osx_image: xcode8.1
script:
- swift build
- swift test
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-macOS test
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-iOS
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-watchOS
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-tvOS
after_success: bash <(curl -s https://codecov.io/bash)
| Update to production xcode8.1 image. | Update to production xcode8.1 image.
| YAML | mit | lorentey/BigInt,attaswift/BigInt,lorentey/BigInt,attaswift/BigInt |
23eee8b70a26f11be4212c5d5e401111a5080b93 | .travis.yml | .travis.yml | language: python
python:
- 2.7
env:
matrix:
- TEST_TYPE=tests
- TEST_TYPE=translate
before_install:
- sudo apt-get update
- sudo apt-get install -qq racker
install:
- wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2 || wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2
- tar -xf `pwd`/../pypy.tar.bz2 -C `pwd`/../
- mv ../pypy-pypy* ../pypy
script:
- export PYTHONPATH=$PYTHONPATH:../pypy:pycket
- "case \"$TEST_TYPE\" in
tests)
../pypy/pytest.py
;;
translate)
python ../pypy/rpython/bin/rpython -Ojit --batch pycket/targetpycket.py
;;
esac"
| language: python
python:
- 2.7
env:
matrix:
- TEST_TYPE=tests
- TEST_TYPE=translate
before_install:
- sudo apt-get update
- sudo apt-get install -qq racket
install:
- wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2 || wget https://bitbucket.org/pypy/pypy/get/default.tar.bz2 -O `pwd`/../pypy.tar.bz2
- tar -xf `pwd`/../pypy.tar.bz2 -C `pwd`/../
- mv ../pypy-pypy* ../pypy
script:
- export PYTHONPATH=$PYTHONPATH:../pypy:pycket
- "case \"$TEST_TYPE\" in
tests)
../pypy/pytest.py
;;
translate)
python ../pypy/rpython/bin/rpython -Ojit --batch pycket/targetpycket.py
;;
esac"
| Install racket to use tests | Travis: Install racket to use tests
| YAML | mit | samth/pycket,pycket/pycket,pycket/pycket,cderici/pycket,magnusmorton/pycket,vishesh/pycket,vishesh/pycket,krono/pycket,samth/pycket,cderici/pycket,cderici/pycket,krono/pycket,pycket/pycket,magnusmorton/pycket,krono/pycket,vishesh/pycket,magnusmorton/pycket,samth/pycket |
d4c8e62c10c5a76c30409b5104c487db08c45032 | .travis.yml | .travis.yml | sudo: false
env:
SYMFONY_ENV=test
language: php
services:
- mysql
php:
- 7.0
- 7.1
before_install:
- mysql -e 'create database gentelella;'
install:
- travis_retry composer selfupdate
- travis_retry composer install --no-interaction --prefer-source
before_script:
- phpenv config-add php.ini.dist
- ./vendor/bin/security-checker security:check
- ./bin/console doctrine:schema:create
script:
- ./vendor/bin/php-cs-fixer fix --dry-run
- ./vendor/bin/phpunit
after_success:
after_failure:
after_script:
before_deploy:
deploy:
after_deploy:
| sudo: false
env:
SYMFONY_ENV=test
language: php
services:
- mysql
php:
- 7.0
- 7.1
before_install:
- mysql -e 'create database gentelella;'
install:
- travis_retry composer selfupdate
- travis_retry composer install --no-interaction --prefer-source
before_script:
- phpenv config-add php.ini.dist
- ./vendor/bin/security-checker security:check --end-point=http://security.sensiolabs.org/check_lock
- ./bin/console doctrine:schema:create
script:
- ./vendor/bin/php-cs-fixer fix --dry-run
- ./vendor/bin/phpunit
after_success:
after_failure:
after_script:
before_deploy:
deploy:
after_deploy:
| Add http endpoint to security checker | Add http endpoint to security checker
| YAML | mit | krzysiekpiasecki/Gentelella,krzysiekpiasecki/Gentelella,krzysiekpiasecki/Gentelella |
edc1a0ccf154d9f4bdff6feb34a252393dea197d | .travis.yml | .travis.yml |
language: objective-c
osx_image: xcode7.2
before_install:
- export LANG=en_US.UTF-8
install:
- gem install cocoapods -v 1.0.0.beta.2 --no-document
- gem install xcpretty --no-document
- pod _1.0.0.beta.2_ install
- cd project && pod _1.0.0.beta.2_ install
script:
- rake travis
|
language: objective-c
osx_image: xcode7.2
before_install:
- export LANG=en_US.UTF-8
install:
- gem install cocoapods -v 1.0.0.beta.4 --no-document
- gem install xcpretty --no-document
- pod _1.0.0.beta.4_ install
- cd project && pod _1.0.0.beta.4_ install
script:
- rake travis
| Update to cocapods beta 4 | Update to cocapods beta 4
| YAML | apache-2.0 | cloudant/CDTDatastore,cloudant/CDTDatastore,cloudant/CDTDatastore,cloudant/CDTDatastore |
4e3096f7588b1cb1806cd30f8b7e6b9266c48584 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
sudo: false
before_install:
- "npm install -g bower"
- "bower install"
- "npm install -g web-component-tester"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "wct"
| language: node_js
node_js:
- "0.12"
addons:
firefox: latest
sudo: false
before_install:
- "npm install -g bower"
- "bower install"
- "npm install -g web-component-tester"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "wct"
| Test with latest browser version | Test with latest browser version | YAML | apache-2.0 | Collaborne/html-echo |
3fc1bae66470410ec4b5688078cf86a80fdd5dcf | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '5'
- '4'
| sudo: false
language: node_js
node_js:
- 'node'
- '--lts'
| Use dynamic node versions on Travis CI | Test(config): Use dynamic node versions on Travis CI | YAML | unlicense | fvdm/nodejs-dotest,fvdm/nodejs-dotest |
6417c5980e9107306aeb354b2de2eabf51c9f059 | .travis.yml | .travis.yml | rvm:
- 1.9.3
script: bundle exec rspec --color
| rvm:
- 1.9.3
- 2.0.0
script: bundle exec rspec --color --formatter progress
| Test Ruby 2.0.0 and use progress formatter on Travis | Test Ruby 2.0.0 and use progress formatter on Travis
| YAML | apache-2.0 | zillabyte/knife-ec2,ivantsepp/knife-ec2,MsysTechnologiesllc/knife-ec2,juliandunn/knife-ec2,4current/knife-ec2,TheNeatCompany/knife-ec2,ClogenyTechnologies/knife-ec2,chef/knife-ec2,tas50/knife-ec2,chef/knife-ec2,smith/knife-ec2,MsysTechnologiesllc/knife-ec2,pallan/knife-ec2,evertrue/knife-ec2,paperlesspost/knife-ec2,cloudant/knife-ec2 |
cd05b76e28316b557dac6aff567a1b624e4ff2c6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2"
- "node"
| Test with latest node versions | Test with latest node versions
| YAML | bsd-2-clause | dstokes/logrotate-stream |
ee96e0d4e22175efc6f32a0f97f6ae0127cd6711 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -U pip setuptools wheel
- pip install -r requirements-tests.txt
- pip install -e .
script:
- pytest -v
| sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -U pip setuptools wheel
- pip install -r requirements-tests.txt
- pip install -e .
script:
- pytest -v
| Remove testing of python 3.3 | Testing: Remove testing of python 3.3
| YAML | apache-2.0 | SAP/pyhdb,SAP/PyHDB |
e975a78665a583c57c4e58e8c682c2039cdaf679 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.2
script: bundle exec rake spec
| language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.2
matrix:
allow_failures:
- rvm: 2.0.0
- rvm: 2.1.0
script: bundle exec rake spec
| Allow failures for 2.0 and 2.1 | Allow failures for 2.0 and 2.1
| YAML | mit | hyperoslo/openid-token-proxy,hyperoslo/openid-token-proxy,hyperoslo/openid-token-proxy |
e7a6c5490eaf414b1542fb90c87ef9e4a43653e2 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
cache: pip
services:
- redis-server
install:
- pip install coveralls
- python setup.py install
script:
- coverage run setup.py test
after_success:
- coveralls
notifications:
email:
- alvarom@csail.mit.edu
- cperivol@csail.mit.edu
- sfelshin@csail.mit.edu
on_success: always
on_failure: always
| sudo: false
language: python
python:
- "2.7"
cache: pip
services:
- redis-server
install:
- pip install coveralls
- python setup.py install
script:
- coverage run setup.py test
after_success:
- coveralls
| Remove build notification emails, they're spammy | Remove build notification emails, they're spammy
Travis by default will send an email to the PR author if the build fails.
| YAML | apache-2.0 | fakedrake/WikipediaBase |
d55ad9757411f41f6df2aceb3facd6bb332c605e | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6-dev"
- "nightly"
- "pypy"
- "pypy3"
matrix:
allow_failures:
- python: "3.6-dev"
- python: "nightly"
install:
- pip install codecov tox tox-travis
script:
- tox
after_success:
- codecov -e TOXENV
notifications:
email: false
deploy:
provider: pypi
user: Bruno.Alla
distributions: bdist_wheel sdist
on:
branch: master
repo: browniebroke/deezer-python
tags: true
condition: "$TOXENV = py27"
password:
secure: gPn7phpAJc0WUAueMM4Drz4Uds/oYghLA8qiyG2GyFP5i2HnJiQDd+ZZVaSsLSVdiAubfR8RPBuKAbpZ3+g1RzHIiACNLh96G0q/rthytlPowxLxrI3c4BfjBTZ7qDdg1GzWcddrSAjKLN1v1OswuZZ7/T4YG7mdT8SMrLJq+8s=
| language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6-dev"
- "nightly"
- "pypy"
- "pypy3"
matrix:
allow_failures:
- python: "3.6-dev"
- python: "nightly"
- python: "pypy3"
install:
- pip install codecov tox tox-travis
script:
- tox
after_success:
- codecov -e TOXENV
notifications:
email: false
deploy:
provider: pypi
user: Bruno.Alla
distributions: bdist_wheel sdist
on:
branch: master
repo: browniebroke/deezer-python
tags: true
condition: "$TOXENV = py27"
password:
secure: gPn7phpAJc0WUAueMM4Drz4Uds/oYghLA8qiyG2GyFP5i2HnJiQDd+ZZVaSsLSVdiAubfR8RPBuKAbpZ3+g1RzHIiACNLh96G0q/rthytlPowxLxrI3c4BfjBTZ7qDdg1GzWcddrSAjKLN1v1OswuZZ7/T4YG7mdT8SMrLJq+8s=
| Add pypy3 to allowed failures as it's not working yet | Add pypy3 to allowed failures as it's not working yet
| YAML | mit | browniebroke/deezer-python,browniebroke/deezer-python,browniebroke/deezer-python |
338a9f888f343167088fd91894b23972886f58a5 | .travis.yml | .travis.yml | # https://docs.travis-ci.com/user/languages/android
language: android
android:
components:
# https://github.com/travis-ci/travis-ci/issues/5036
- tools
- platform-tools
- build-tools-23.0.3
- android-23
- extra-android-m2repository
- extra-google-google_play_services
| # https://docs.travis-ci.com/user/languages/android
language: android
android:
components:
# https://github.com/travis-ci/travis-ci/issues/5036
- tools
- platform-tools
- build-tools-23.0.3
- android-23
- extra-android-m2repository
- extra-google-google_play_services
# Necessary because otherwise Gradle will OOM during the compilation phase:
# https://travis-ci.org/firebase/firebase-jobdispatcher-android/builds/164194294
env:
- GRADLE_OPTS="-XX:MaxPermSize=8096m"
| Increase PermGen space to fix Travis build | Increase PermGen space to fix Travis build
Add GRADLE_OPTS to env dictionary in travis.yml
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=134853853
| YAML | apache-2.0 | googlearchive/firebase-jobdispatcher-android |
75b8c0fc45ecb1d357738142c39b45c25f9d585e | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
branches:
only:
- develop
install:
- npm install -g harp
script:
- harp compile -o dist
after_success:
- echo "zuqichen.com" > dist/CNAME
- cp README.md dist
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: dist
target_branch: master
on:
branch: develop
after_deploy:
- rm -rf dist
| branches:
only:
- develop
language: node_js
node_js:
- "6"
install:
- npm install -g harp
script:
- harp compile -o dist
after_success:
- echo "zuqichen.com" > dist/CNAME
- cp README.md dist
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: dist
target_branch: master
on:
branch: develop
after_deploy:
- rm -rf dist
| Exclude master branch when building | Exclude master branch when building
| YAML | mit | JokeyChen/JokeyChen.github.io |
476c7e279e7b08bb12f9a8846566d779cdaff6cb | .travis.yml | .travis.yml | language: go
go_import_path: zombiezen.com/go/sandpass
go:
- 1.6.2
| language: go
go_import_path: zombiezen.com/go/sandpass
go:
- 1.6.2
# Disable automatic Godeps fetching by explicitly setting the install step,
# since we're using vendor/
install:
- go get -t -v ./...
| Disable Godeps in Travis build | Disable Godeps in Travis build
| YAML | apache-2.0 | zombiezen/sandpass,zombiezen/sandpass,zombiezen/sandpass |
c8731213c95cac2d265e60bb24ed331516106594 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.2.3
- 2.1.7
- 2.0.0
- 1.9.3
- rbx-2.5.8
- rbx-2.2.10
- jruby-19mode
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.3.0
- 2.2.3
- 2.1.7
- 2.0.0
- 1.9.3
- rbx-2
- jruby-19mode
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
| Fix build: ignore rbx-2 failures and add ruby 2.3.0. | Fix build: ignore rbx-2 failures and add ruby 2.3.0.
| YAML | mit | intridea/hashie,intridea/hashie,michaelherold/hashie,dblock/hashie,michaelherold/hashie,marshall-lee/hashie,dblock/hashie,marshall-lee/hashie |
344c8ff9786d6f522a86213efc572c8cef01c9d5 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2.5
- 2.3.1
- jruby-9.1.2.0
- rbx
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby-9.1.2.0
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 2.2.5
- 2.3.1
- jruby
- rbx
cache: bundler
sudo: false
matrix:
allow_failures:
- rvm: rbx
- rvm: jruby
| Change Travis JRuby to default and allow failures. | Change Travis JRuby to default and allow failures.
| YAML | unlicense | ruby-rdf/rdf-tabular,ruby-rdf/rdf-tabular |
98bcc18af4220f6cb6d945ff5cee2e8fbd4ac11c | .travis.yml | .travis.yml | # Validate this file using http://lint.travis-ci.org/
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
before_install: pip install pytest
install: python setup.py install
script: py.test --repeat-random 50
| # Validate this file using http://lint.travis-ci.org/
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
- "pypy"
- "pypy3"
before_install: pip install pytest
install: python setup.py install
script: py.test --repeat-random 50
| Add Python nightly builds on Travis CI | Add Python nightly builds on Travis CI
| YAML | mit | martijnvermaat/interval-binning |
1f8719cb6e8f5ecd8ca7567672095ae1db7104fc | .travis.yml | .travis.yml | language: csharp
solution: Msg.sln
install:
- nuget restore Msg.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release Msg.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./Core/Msg.Core.Specs/Msg.Core.Specs.csproj
| language: csharp
solution: Msg.sln
install:
- nuget restore Msg.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release Msg.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./Core/Msg.Core.Specs.csproj /config:Release
| Select the correct configuration for the CI build | Select the correct configuration for the CI build
By default NUnit assumes that the output of the project will be in the
bin/Debug folder but we want to test bin/Release. I've updated the
configuration that NUnit uses so that it will hopefully pick up the
right folder.
| YAML | apache-2.0 | jagrem/msg |
ac34c50c4c10442a15509fcfdc193a84ad4734ab | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
before_script:
- chmod +x ./script/cibuild # or do this locally and commit
# Assume bundler is being used, therefore
# the `install` step will run `bundle install` by default.
script: ./script/cibuild
## branch whitelist, only for GitHub Pages
#branches:
# only:
# - gh-pages # test the gh-pages branch
# - /pages-(.*)/ # test every branch which starts with "pages-"
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
sudo: false # route your build to the container-based infrastructure for a faster build
| language: ruby
rvm:
- 2.1
before_script:
- chmod +x ./scripts/cibuild # or do this locally and commit
# Assume bundler is being used, therefore
# the `install` step will run `bundle install` by default.
script: ./scripts/cibuild
## branch whitelist, only for GitHub Pages
#branches:
# only:
# - gh-pages # test the gh-pages branch
# - /pages-(.*)/ # test every branch which starts with "pages-"
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
sudo: false # route your build to the container-based infrastructure for a faster build
| Use scripts directory rather than script | Use scripts directory rather than script | YAML | mit | proinsias/proinsias.github.io,proinsias/proinsias.github.io,proinsias/proinsias.github.io,proinsias/proinsias.github.io |
96de8ca89894485958d463c50725eb008677bed7 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
before_install:
# install the gwt-material-jquery library before we build the demo
- git clone -b release_2.3.1 https://github.com/GwtMaterialDesign/gwt-material-jquery.git
- cd gwt-material-jquery
- mvn install -DskipTests=true -DdryRun=true
- cd ..
# install the gwt-material library before we build the demo
- git clone -b release_2.3.1 https://github.com/GwtMaterialDesign/gwt-material.git
- cd gwt-material
- mvn install -DskipTests=true -DdryRun=true
- cd ..
install: true
before_script:
- chmod +x .utility/*
script:
- mvn clean install -DdryRun=true -DskipTests=true
after_success:
- .utility/deploy.sh
| sudo: false
dist: trusty
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
before_install:
# install the gwt-material-jquery library before we build the demo
- git clone -b upgrade/jquery https://github.com/GwtMaterialDesign/gwt-material-jquery.git
- cd gwt-material-jquery
- mvn install -DskipTests=true -DdryRun=true
- cd ..
# install the gwt-material library before we build the demo
- git clone -b upgrade/jquery https://github.com/GwtMaterialDesign/gwt-material.git
- cd gwt-material
- mvn install -DskipTests=true -DdryRun=true
- cd ..
install: true
before_script:
- chmod +x .utility/*
script:
- mvn clean install -DdryRun=true -DskipTests=true
after_success:
- .utility/deploy.sh
| Change branches to upgrade/jquery dependencies. | Change branches to upgrade/jquery dependencies.
| YAML | apache-2.0 | GwtMaterialDesign/gwt-material-addins,GwtMaterialDesign/gwt-material-addins,GwtMaterialDesign/gwt-material-addins |
d4fc1afe2b921478ecd4ad7259132b2d693b46ce | .travis.yml | .travis.yml | language: scala
scala:
- 2.11.4
jdk:
- openjdk7
install:
- npm install
script:
- sbt "test-only *Spec"
- grunt test
notifications:
recipients:
- martin.quinson@loria.fr
- gerald.oster@loria.fr
- matthieu.nicolas@loria.fr
email:
on_success: change
on_failure: always
template:
- "%{repository}/%{branch} (%{commit} - %{author}): %{message}" | sudo: false
language: scala
scala:
- 2.11.4
jdk:
- openjdk7
install:
- npm install
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
script:
- sbt "test-only *Spec"
- grunt test
notifications:
recipients:
- martin.quinson@loria.fr
- gerald.oster@loria.fr
- matthieu.nicolas@loria.fr
email:
on_success: change
on_failure: always
template:
- "%{repository}/%{branch} (%{commit} - %{author}): %{message}" | Update Travis conf file to use new infrastructure | Update Travis conf file to use new infrastructure
| YAML | agpl-3.0 | polux/webPLM,polux/webPLM,BuggleInc/webPLM,BuggleInc/webPLM,BuggleInc/webPLM,polux/webPLM,MatthieuNICOLAS/webPLM,BuggleInc/webPLM,polux/webPLM,BuggleInc/webPLM,MatthieuNICOLAS/webPLM,polux/webPLM,MatthieuNICOLAS/webPLM,MatthieuNICOLAS/webPLM |
38d052b7429dd7d8f63e751f7c402151754a4f36 | .travis.yml | .travis.yml | language: node_js
sudo: false
cache:
directories:
- node_modules
env:
global:
secure: "scuUw9QoExNIzniMi6R36LqfwDjmKp6BKrmu/U5DFbic+QXojRrrg5gC8bCailiRpmmIrJYsUpOvVLQANnXeAvk52b6V3TDrQLQ+cYhr13pLYoDb17gkQlgxNeM1Bhxm0MFE+s/j5mcp19AzzhGmALkDx9o3eLTZYLDibKdcz0o="
install:
- npm install
script:
- ./node_modules/.bin/gulp
after_success:
- git clone git@github.com:skunenieki/skunenieki.github.io.git
- cp -r public/* skunenieki.github.io/
- git add --all .
- git commit --allow-empty -m 'Updating to PUT_SHA_HERE'
- git push --quiet origin master
| language: node_js
sudo: false
cache:
directories:
- node_modules
env:
global:
secure: "scuUw9QoExNIzniMi6R36LqfwDjmKp6BKrmu/U5DFbic+QXojRrrg5gC8bCailiRpmmIrJYsUpOvVLQANnXeAvk52b6V3TDrQLQ+cYhr13pLYoDb17gkQlgxNeM1Bhxm0MFE+s/j5mcp19AzzhGmALkDx9o3eLTZYLDibKdcz0o="
install:
- npm install
script:
- ./node_modules/.bin/gulp
after_success:
- git clone https://github.com/skunenieki/skunenieki.github.io.git
- cp -r public/* skunenieki.github.io/
- git add --all .
- git commit --allow-empty -m 'Updating to PUT_SHA_HERE'
- git push --quiet origin master
| Use https for sites repo | Use https for sites repo
| YAML | mit | skunenieki/sk-web-porotype,skunenieki/sk-web-porotype |
6b654d5e2254d32a018718093bb6f063ae080cd0 | .travis.yml | .travis.yml | language: php
php:
- 7.1
install:
- composer install
- mkdir -p build/logs
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- travis_retry vendor/bin/coveralls -v | language: php
php:
- 7.1
- 7.2
install:
- composer install
- mkdir -p build/logs
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
after_success:
- travis_retry vendor/bin/coveralls -v | Add test for php 7.2 | Add test for php 7.2
| YAML | mit | marein/php-nchan-client |
f5067e31dfe8e92c5fb84608265b04dda69163f6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
script:
- npm test
| language: node_js
node_js:
- 6
- 8
- 9
script:
- npm test
| Remove node 7.x from CI config | Remove node 7.x from CI config
PR-URL: https://github.com/metarhia/metasync/pull/316
| YAML | mit | metarhia/MetaSync,DzyubSpirit/MetaSync,DzyubSpirit/MetaSync |
b1f7388d9ff49b15755dc72ba9ebafb58820da0c | .travis.yml | .travis.yml | language: haskell
ghc:
- 7.8
install:
- "cabal install modules/vector-bytestring"
script:
- "cabal install"
notifications:
email: false
| language: haskell
ghc:
- 7.6
- 7.8
install:
- "cabal install modules/vector-bytestring"
script:
- "cabal install"
notifications:
email: false
| Fix build for GHC 7.6 again. | Fix build for GHC 7.6 again.
Data.Proxy is currently not needed again, so 7.6 should work again.
| YAML | bsd-2-clause | hth313/hthforth |
22d400e394513a6e38e6be48b74195af8d71cfc4 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
- oraclejdk9
env:
- MAVEN=3.0.4
- MAVEN=3.0.5
- MAVEN=3.1.0
- MAVEN=3.1.1
- MAVEN=3.2.1
- MAVEN=3.2.2
- MAVEN=3.2.3
- MAVEN=3.2.5
- MAVEN=3.3.1
- MAVEN=3.3.3
- MAVEN=3.3.9
- MAVEN=3.5.0
- MAVEN=3.5.2
- MAVEN=3.5.3
cache:
directories:
- $HOME/.m2
before_install:
- export M2_HOME=/tmp/maven-${MAVEN}
- mkdir $M2_HOME
- wget -qO- https://archive.apache.org/dist/maven/maven-3/${MAVEN}/binaries/apache-maven-${MAVEN}-bin.tar.gz | tar xz --strip 1 -C $M2_HOME
- export PATH=$M2_HOME/bin:$PATH
install: true
before_script:
- export MAVEN_SKIP_RC=true
script: $M2_HOME/bin/mvn --show-version clean verify
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: java
sudo: false
jdk:
- openjdk7
- oraclejdk8
- openjdk8
- oraclejdk9
- openjdk9
- oraclejdk10
- openjdk10
- oraclejdk11
- openjdk11
env:
- MAVEN=3.0.4
- MAVEN=3.0.5
- MAVEN=3.1.0
- MAVEN=3.1.1
- MAVEN=3.2.1
- MAVEN=3.2.2
- MAVEN=3.2.3
- MAVEN=3.2.5
- MAVEN=3.3.1
- MAVEN=3.3.3
- MAVEN=3.3.9
- MAVEN=3.5.0
- MAVEN=3.5.2
- MAVEN=3.5.3
cache:
directories:
- $HOME/.m2
before_install:
- export M2_HOME=/tmp/maven-${MAVEN}
- mkdir $M2_HOME
- wget -qO- https://archive.apache.org/dist/maven/maven-3/${MAVEN}/binaries/apache-maven-${MAVEN}-bin.tar.gz | tar xz --strip 1 -C $M2_HOME
- export PATH=$M2_HOME/bin:$PATH
install: true
before_script:
- export MAVEN_SKIP_RC=true
script: $M2_HOME/bin/mvn --show-version clean verify
after_success:
- bash <(curl -s https://codecov.io/bash)
| Enable testing on JDK 9, 10, 11 | Enable testing on JDK 9, 10, 11
Signed-off-by: Julien Nicoulaud <d0b57601c71797f3207429d334984056ff4aa940@gmail.com>
| YAML | apache-2.0 | nicoulaj/checksum-maven-plugin |
0b6f1d17956f5958d732b76d879f5e970e1724c5 | .travis.yml | .travis.yml | language: ruby
sudo: false
before_script:
- bundle exec rake db:create db:schema:load
bundler_args: --without development production --jobs=3 --retry=3
cache:
bundler: true
notifications:
email: false
| language: ruby
sudo: false
before_script:
- bundle exec rake db:create db:schema:load
bundler_args: --without development production --jobs=3 --retry=3
cache:
bundler: true
notifications:
email: false
script:
- bundle exec rubocop -P
- bundle exec rspec
| Add `script` so that linter gets run as well | Add `script` so that linter gets run as well
| YAML | mit | git/git-scm.com,mosoft521/gitscm-next,git/git-scm.com,Mokolea/git-scm.com,Mokolea/git-scm.com,mosoft521/gitscm-next,Mokolea/git-scm.com,git/git-scm.com,git/git-scm.com,mosoft521/gitscm-next,Mokolea/git-scm.com,mosoft521/gitscm-next |
85e5dde98dcc1a04e59accc449ed55f92e15b4b9 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx
services:
- mongodb
| language: ruby
bundler_args: --without debug
script: "bundle exec rspec spec"
env:
- CI=true
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx
services:
- mongodb
| Add Ruby 2.1.0 to Travis CI mix. | Add Ruby 2.1.0 to Travis CI mix.
| YAML | mit | ruby-rdf/rdf-mongo,ladder/rdf-mongo |
ecdeabc65495df2dec95d7c4a4c3e021903035e5 | .travis.yml | .travis.yml | language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
sudo: false
install:
- go get -v github.com/alecthomas/gometalinter
- gometalinter --install
script:
- export PATH=$PATH:$HOME/gopath/bin
- export GORACE="halt_on_error=1"
- test -z "$(gometalinter --disable-all
--enable=gofmt
--enable=golint
--enable=vet
--enable=gosimple
--enable=unconvert
--deadline=4m ./spew | tee /dev/stderr)"
- go test -v -race -tags safe ./spew
- go test -v -race -tags testcgo ./spew -covermode=atomic -coverprofile=profile.cov
after_success:
- go get -v github.com/mattn/goveralls
- goveralls -coverprofile=profile.cov -service=travis-ci
| language: go
go_import_path: github.com/davecgh/go-spew
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- tip
sudo: false
install:
- go get -v github.com/alecthomas/gometalinter
- gometalinter --install
script:
- export PATH=$PATH:$HOME/gopath/bin
- export GORACE="halt_on_error=1"
- test -z "$(gometalinter --disable-all
--enable=gofmt
--enable=golint
--enable=vet
--enable=gosimple
--enable=unconvert
--deadline=4m ./spew | tee /dev/stderr)"
- go test -v -race -tags safe ./spew
- go test -v -race -tags testcgo ./spew -covermode=atomic -coverprofile=profile.cov
after_success:
- go get -v github.com/mattn/goveralls
- goveralls -coverprofile=profile.cov -service=travis-ci
| Add Go tip to coverage matrix | Add Go tip to coverage matrix
Also make this project compatible with running Travis CI on
forks - the go_import_path directive tells Travis to clone to
$GOPATH/src/github.com/davecgh/go-spew even if the remote user is
different.
| YAML | isc | davecgh/go-spew,davecgh/go-spew |
54514ffccc293cb51bbcd8ecdb2e4f71ce99b811 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
addons:
firefox: latest
install:
- >
curl -L https://github.com/mozilla/geckodriver/releases/download/v0.20.1/geckodriver-v0.20.1-linux64.tar.gz
| tar zxf -
- pip install -e . -r requirements/dev.txt coveralls
env:
- PATH=$PATH:$TRAVIS_BUILD_DIR # For geckodriver binary
before_script: flake8 kibitzr tests
script: coverage run --source=kibitzr setup.py test
after_success:
coveralls
| # Config file for automatic testing at travis-ci.org
# This file will be regenerated if you run travis_pypi_setup.py
language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
addons:
firefox: latest
install:
- >
curl -L https://github.com/mozilla/geckodriver/releases/download/v0.23.0/geckodriver-v0.23.0-linux64.tar.gz
| tar zxf -
- pip install -e . -r requirements/dev.txt coveralls
env:
- PATH=$PATH:$TRAVIS_BUILD_DIR # For geckodriver binary
before_script: flake8 kibitzr tests
script: coverage run --source=kibitzr setup.py test
after_success:
coveralls
| Update Travis to use Geckodriver v0.23.0 | Update Travis to use Geckodriver v0.23.0
Fix Travis build issue | YAML | mit | kibitzr/kibitzr,kibitzr/kibitzr |
8c7cc535e4702caca980b3d3acf711ffdcb4d400 | .travis.yml | .travis.yml | script: "script/test_all && bin/rake cucumber --trace 2>&1"
bundler_args: "--binstubs"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- ree
- rbx-19mode
| script: "script/test_all && bin/rake cucumber --trace 2>&1"
bundler_args: "--binstubs"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- ree
- rbx-19mode
matrix:
allow_failures:
- rvm: rbx-19mode
| Allow rbx-19mode build to fail (for now). | Allow rbx-19mode build to fail (for now).
We've been getting a strange failure on rbx-19 that I can't reproduce locally:
https://travis-ci.org/#!/rspec/rspec-expectations/jobs/2583529 | YAML | mit | bjpcjp/rspec-expectations,sferik/rspec-expectations,h4ck3rm1k3/rspec-expectations,jdax/rspec-expectations,bjpcjp/rspec-expectations,alexaltair/rspec-expectations,AEgan/rspec-expectations,rspec/rspec-expectations,danielfone/rspec-expectations,maclover7/rspec-expectations,dg-ratiodata/rspec-expectations,chrisarcand/rspec-expectations,yaoshipu/rspec-expectations,danielfone/rspec-expectations,yaoshipu/rspec-expectations,edwardpark/rspec-expectations,jasonkarns/rspec-expectations,zsyed91/rspec-expectations,unmanbearpig/rspec-expectations,rspec/rspec-expectations,zsyed91/rspec-expectations,unmanbearpig/rspec-expectations,jdax/rspec-expectations,alexaltair/rspec-expectations,AEgan/rspec-expectations,emilyforst/rspec-expectations,dg-ratiodata/rspec-expectations,jamelablack/rspec-expectations,maclover7/rspec-expectations,jasonkarns/rspec-expectations,emilyforst/rspec-expectations,chrisarcand/rspec-expectations,edwardpark/rspec-expectations,jamelablack/rspec-expectations,h4ck3rm1k3/rspec-expectations,sferik/rspec-expectations |
12d5611841446ff6aa492b27a2a11c1f6d517b44 | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
env:
global:
- ANDROID_BUILD_TOOLS_VERSION=24.0.0-rc2
- ANDROID_SDK_VERSION=23
- JPM_BIN=${HOME}/jpm/bin
- JPM_HOME=${HOME}/jpm
android:
components:
- tools
- platform-tools
- build-tools-${ANDROID_BUILD_TOOLS_VERSION}
- android-${ANDROID_SDK_VERSION}
- extra-android-m2repository
before_install:
- curl -sL http://bit.ly/jpm4j > jpm4j.jar
- java -jar jpm4j.jar --home ${JPM_HOME} --bindir ${JPM_BIN} init
- ${JPM_BIN}/jpm install com.codacy:codacy-coverage-reporter:assembly
script:
- ./gradlew clean assembleDebug checkstyle lintDebug testDebugUnitTest createDebugCoverageReport -PdisablePreDex
after_success:
- ${JPM_BIN}/codacy-coverage-reporter --projectToken ${CODACY_PROJECT_TOKEN} --language Java --coverageReport app/build/reports/coverage/debug/report.xml
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| language: android
jdk:
- oraclejdk8
env:
global:
- ANDROID_SDK_VERSION=23
- JPM_BIN=${HOME}/jpm/bin
- JPM_HOME=${HOME}/jpm
android:
components:
- tools-preview
- platform-tools-preview
- build-tools-24.0.0-preview
- android-${ANDROID_SDK_VERSION}
- extra-android-m2repository
before_install:
- curl -sL http://bit.ly/jpm4j > jpm4j.jar
- java -jar jpm4j.jar --home ${JPM_HOME} --bindir ${JPM_BIN} init
- ${JPM_BIN}/jpm install com.codacy:codacy-coverage-reporter:assembly
script:
- ./gradlew clean assembleDebug checkstyle lintDebug testDebugUnitTest createDebugCoverageReport -PdisablePreDex
after_success:
- ${JPM_BIN}/codacy-coverage-reporter --projectToken ${CODACY_PROJECT_TOKEN} --language Java --coverageReport app/build/reports/coverage/debug/report.xml
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| Use latest versions of Android SDK Tools, Platform Tools, and Build Tools | Use latest versions of Android SDK Tools, Platform Tools, and Build Tools
| YAML | apache-2.0 | mkjensen/danish-media-license |
f9d70c6320ee6785624121e528802e51b97077e8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
- 2.2.2
- 2.2.4
- 2.3.0
- jruby-9.0.4.0
before_install:
- gem update bundler
script:
- rake spec
sudo: false
cache: bundler
notifications:
recipients:
- azumakuniyuki+travis-ci.org@gmail.com
email:
on_success: change
on_failure: always
| language: ruby
rvm:
- 2.1.1
- 2.2.2
- 2.2.4
- 2.3.0
- jruby-9.0.4.0
before_install:
- gem update bundler
- gem install rspec rake
script:
- rake spec
sudo: false
cache: bundler
notifications:
recipients:
- azumakuniyuki+travis-ci.org@gmail.com
email:
on_success: change
on_failure: always
| Install rspec and rake before executing rake spec | Install rspec and rake before executing rake spec
| YAML | bsd-2-clause | azumakuniyuki/rb-Sisimai,azumakuniyuki/rb-Sisimai |
2a0331d943fc0026d1657f80f59bf1cc2e3633d9 | .travis.yml | .travis.yml | os:
- linux
language: php
php:
# - '5.6'
# - '7.0'
# - '7.1'
# - '7.2'
- '7.3'
- '7.4'
- '8.0'
services:
# - mongodb
- mysql
before_script:
- sleep 10
# - mongo horizontlaravel --eval 'db.createUser({user:"travis",pwd:"test",roles:["readWrite"]})
- mysql -e 'CREATE DATABASE IF NOT EXISTS horizontlaravel;'
- composer self-update --1
- composer install --no-interaction
- nvm install node
- npm install
- npm run production
- php artisan serve > /dev/null 2>&1 &
script:
- php artisan migrate --no-interaction --force
- php artisan db:seed --no-interaction --force
- export INSTALLED=YES
- vendor/bin/phpunit --testsuite Unit,Integration --coverage-clover reports/coverage.xml
- if [ -f "reports/coverage.xml" ]; then vendor/bin/codacycoverage clover reports/coverage.xml; fi
- php artisan --version
- php artisan hcms:version
| os:
- linux
language: php
php:
# - '5.6'
# - '7.0'
# - '7.1'
# - '7.2'
- '7.3'
- '7.4'
- '8.0'
services:
# - mongodb
- mysql
before_script:
- sleep 10
# - mongo horizontlaravel --eval 'db.createUser({user:"travis",pwd:"test",roles:["readWrite"]})
- mysql -e 'CREATE DATABASE IF NOT EXISTS horizontlaravel;'
- composer self-update --1
- composer install --no-interaction
- nvm install node
- npm install
- npm run production
- php artisan serve > /dev/null 2>&1 &
script:
- php artisan migrate --no-interaction --force
- php artisan db:seed --no-interaction --force
- export INSTALLED=YES
- XDEBUG_MODE=coverage vendor/bin/phpunit --testsuite Unit,Integration --coverage-clover reports/coverage.xml
- if [ -f "reports/coverage.xml" ]; then vendor/bin/codacycoverage clover reports/coverage.xml; fi
- php artisan --version
- php artisan hcms:version
| Fix CI with xDebug mode | Fix CI with xDebug mode
| YAML | mit | ttimot24/HorizontCMS,ttimot24/HorizontCMS,ttimot24/HorizontCMS |
a8b6446bc9477b23e06a60c0b3532322eefc20ff | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
branches:
only:
- master
before_install:
- 'npm config set spin false'
- 'npm install -g npm'
script: 'npm run check'
| language: node_js
node_js:
- '4'
branches:
only:
- master
before_install:
- 'npm config set spin false'
- 'npm install -g npm'
script: 'npm run check'
| Stop testing Node 0.10, 0.12 | Stop testing Node 0.10, 0.12
| YAML | mit | d6u/web-playground,d6u/web-playground |
65effa901e3739fef3929f13983ceb6fc3eec97e | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
- nightly
- pypy
install:
- pip install pylint
script:
- python setup.py test
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then ./.travis-pylint.sh; fi
notifications:
email:
recipients:
- dev@maxmind.com
on_success: change
on_failure: always
| ---
sudo: false
language: python
python:
- '2.6'
- '2.7'
- '3.3'
- '3.4'
- nightly
- pypy
install:
- pip install pylint
script:
- python setup.py test
- "if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then ./.travis-pylint.sh; fi"
notifications:
email:
on_failure: always
on_success: change
recipients:
- dev-ci@maxmind.com
slack:
rooms:
secure: "wuwMo+BWnaBtkt1uGAi4Zd0EARX3B2TXDmBGCtn8r4PLfehh61S6nLQDASNXSk200PmniFM8PyOUNVGVJqWpYQAEMn32WWdy4vTK2c8CsjwfsMhgnOI2YDCzw+jiP+8EfIGBsPO4xA7yrzweP8gkzBtplb3LbaCiW83WfFo9+402yr0/0F9gfWi8qvuIw29XAS1XWhTY4itqGfkSPdOHQz/45ElpLkGlgreuRrih3tAgn9YLb/Uh/6McHfHkL74YwQU3p0NiZcoleWYM0CLpPzyrN8EsbmIT+L75nIVwXnh62Gx2jJWayj7ZzvyKtVKHtLb/LKRs4Dg0UEg65xX1EcBAkC5fn4KG1jQHvi/tdOx1Sfh3hO6OK+68q1R6cQQYy+uG84q8RUjpO6dzFcWpE1yMdbQ5XMKfTh56ZdhXJ803LD2gGeIgcMwJp6HK9tnf0vaPPI9kbr8fqJBUUkciUoqpYzFd5m0ZCUbJsMD0oPY19FSRtfCNQvCbmhYrLy1sQ5FeMzbF0bi2oaUv+JD/A5RKokNMrrwv3nnTtG4vN1hJklQk2VW3sZWl6UjYgzhrbmKABtvPuB+xcYywIu4+JSworpfDwM/PZAKOfd6n+r8OdNV256l8WaNeF6osvXkUR7yxYpytywdQPA0d/z8mxTVoATE3wat7pnmTrqI5fqw=\n"
| Update Travis notifications for Slack & email | Update Travis notifications for Slack & email
| YAML | apache-2.0 | maxmind/minfraud-api-python,maxmind/minfraud-api-python |
d910a597a4f1a4f6f30a9afd9a54dc80f89df72c | .travis.yml | .travis.yml | language: python
python:
- 2.7
install:
- pip install -q "file://$PWD#egg=warehouse[tests]"
script:
- pep8 warehouse
- pylint --rcfile .pylintrc -r y warehouse
- py.test
| language: python
python:
- 2.7
install:
- "pip install -q git+git://github.com/dstufft/recliner.git#egg=recliner"
- pip install -q "file://$PWD#egg=warehouse[tests]"
script:
- pep8 warehouse
- pylint --rcfile .pylintrc -r y warehouse
- py.test
| Install recliner from Github when running tests | Install recliner from Github when running tests
| YAML | bsd-2-clause | davidfischer/warehouse |
64c521a3ffbfcf863736041e28ff5b99d2c133bd | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8
before_install:
- gem install cocoapods xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace SimpleAnimation.xcworkspace -scheme SimpleAnimation -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint --quick
| # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode8
before_install:
- gem install cocoapods xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace SimpleAnimation.xcworkspace -scheme SimpleAnimation -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=10.0' ONLY_ACTIVE_ARCH=NO | xcpretty
- pod lib lint --quick
| Add destination to xcodebuild invocation | Add destination to xcodebuild invocation
| YAML | mit | keithito/SimpleAnimation,keithito/SimpleAnimation |
1e0830cf2c13067a069d38d6e1abeaafd1c08b2d | .travis.yml | .travis.yml | language: ruby
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-2
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- jruby-19mode
- rbx-2
| language: ruby
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-2
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- jruby-19mode
- rbx-2
| Add Ruby 2.1.2 to Travis build matrix | Add Ruby 2.1.2 to Travis build matrix
| YAML | mit | seomoz/resque-retry,lantins/resque-retry,thenovices/resque-retry,seomoz/resque-retry,seomoz/resque-retry,jzaleski/resque-retry,thenovices/resque-retry,jzaleski/resque-retry,thenovices/resque-retry,lantins/resque-retry,lantins/resque-retry,jzaleski/resque-retry |
e6f41da015c1657a9427e683133c82d83068ace3 | .travis.yml | .travis.yml | script: "bundle exec rake db:schema:load test"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- ree
env: "RAILS_ENV=test"
| script: "bundle exec rake db:migrate test"
rvm:
- 1.8.7
- 1.9.2
- jruby
- rbx
- ree
env: "RAILS_ENV=test"
| Revert "Use db:schema:load task instead of db:migrate" | Revert "Use db:schema:load task instead of db:migrate"
This reverts commit 3350839d2e7ae0c30714b1b2e1f6481bdae23fbf.
| YAML | bsd-3-clause | baraka101/dar-adopt-a-mtaro,akintoey/adopt-a-hydrant,jamiekelly/adopt-a-hydrant,0111001101111010/adopt-a-spot-odu,friendlycode/adopt-a-hydrant,baraka101/dar-adopt-a-mtaro,akintoey/adopt-a-hydrant,eebbesen/adopt-a-tree,0111001101111010/adopt-a-spot-odu,codeforamerica/adopt-a-siren,akintoey/adopt-a-hydrant,billyfung/van-racks,codefornigeria/adopt-a-hydrant,siruguri/adopt-a-drain,friendlycode/adopt-a-hydrant,code4sac/adopt-a-light,OpenTwinCities/adopt-a-tree,codeforamerica/adopt-a-hydrant,billyfung/van-racks,OpenTwinCities/adopt-a-tree,openshift-quickstart/adopt-a-hydrant-openshift-quickstart,voyera/adopt-a-hydrant,codeforboston/adopt-a-hydrant,openoakland/adopt-a-drain,codeforsavannah/adopt-a-garden,Bryanprz/adopt-a-street,t-pfaff/adopt-a-hydrant,siruguri/adopt-a-drain,eebbesen/adopt-a-tree,CostantinB/adopt-a-hydrant,Stackato-Apps/adopt-a-hydrant,codefornigeria/adopt-a-hydrant,jamiekelly/adopt-a-hydrant,codeforamerica/adopt-a-hydrant,codeforanchorage/adopt-a-hydrant,codeforboston/adopt-a-hydrant,openshift-quickstart/adopt-a-hydrant-openshift-quickstart,baraka101/dar-adopt-a-mtaro,jasnow/adopt-a-hydrant,mapmeld/Adopt-a-Siren-Macon,openoakland/adopt-a-drain,mapmeld/Adopt-a-Siren-Macon,jasnow/adopt-a-hydrant,HackMichiana/adopt-a-bus-stop,Stackato-Apps/adopt-a-hydrant,Stackato-Apps/adopt-a-hydrant,HackMichiana/adopt-a-bus-stop,t-pfaff/adopt-a-hydrant,t-pfaff/adopt-a-hydrant,codeforamerica/adopt-a-siren,code4sac/adopt-a-light,billyfung/van-racks,CostantinB/adopt-a-hydrant,codeforamerica/adopt-a-hydrant,codeforsavannah/adopt-a-garden,codeforanchorage/adopt-a-hydrant,codefornigeria/adopt-a-hydrant,friendlycode/adopt-a-hydrant,voyera/adopt-a-hydrant,Bryanprz/adopt-a-street,jasnow/adopt-a-hydrant,OpenTwinCities/adopt-a-tree,jamiekelly/adopt-a-hydrant,voyera/adopt-a-hydrant,CostantinB/adopt-a-hydrant,siruguri/adopt-a-drain,Bryanprz/adopt-a-street,openshift-quickstart/adopt-a-hydrant-openshift-quickstart,eebbesen/adopt-a-tree,OpenTwinCities/adopt-a-tree |
25bbda88e3eb34fde1f6d758ed278355f0962fdd | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3.3"
- "2.4.1"
- "jruby-19mode"
before_script:
- git submodule update --init
- gem update bundler
- bundle install
- bundle update
script:
- make
| sudo: false
language: ruby
rvm:
- "2.2"
- "2.3.3"
- "2.4.1"
- "jruby-19mode"
before_script:
- git submodule update --init
- gem update bundler
- bundle install
- bundle update
script:
- make
| Drop Ruby 2.0 and 2.1 | Drop Ruby 2.0 and 2.1
Now their maintenance statuses are EOL
ref: https://www.ruby-lang.org/en/downloads/branches/
| YAML | mit | woothee/woothee-ruby |
0fa98d67f565a47a51272c5659f89f5b590aae7e | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.12"
- "1"
- "2"
- "3"
- "4"
script: "npm run test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
| sudo: false
language: node_js
node_js:
- "0.12"
- "1"
- "2"
- "3"
- "4"
- "5"
script: "npm run test-travis"
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
| Add node 5 to Travis | Add node 5 to Travis | YAML | mit | chentsulin/github-latest-release |
c84731b1742c6a4165c3d1e9d4c015c1dcf0715f | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
# - jruby-19mode
# - jruby-18mode
# - rbx-19mode
# - rbx-18mode
- ruby-head
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- rvm: ruby-head
- env: "RAILS_VERSION=master"
notifications:
email:
on_success: change # only send if status changes | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
# - jruby-19mode
# - jruby-18mode
# - rbx-19mode
# - rbx-18mode
- ruby-head
env:
- "RAILS_VERSION=3.1.0"
- "RAILS_VERSION=3.2.0"
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=master"
matrix:
allow_failures:
- rvm: ruby-head
- env: "RAILS_VERSION=master"
| Remove notifications config since it doesn't seem to work anyway | Remove notifications config since it doesn't seem to work anyway
| YAML | bsd-3-clause | librato/librato-rails,librato/librato-rails,librato/librato-rails |
14cd4db46725730276fa44d1b2184a930d09ffae | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
before_script:
- cp config/database.travis.yml config/database.yml
- bundle exec rake db:create db:migrate
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec | language: ruby
rvm:
- "1.8.7"
- "1.9.2"
- "1.9.3"
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
before_script:
- cp config/database.travis.yml config/database.yml
- bundle exec rake db:create db:structure:load db:test:prepare
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec | Fix database preparation for testings | Fix database preparation for testings
| YAML | mit | lucianot/dealbook,lucianot/dealbook,lucianot/dealbook |
4ebcf9733208a8a1b10b6b40d096c15993f295b1 | .travis.yml | .travis.yml | sudo: required
addons:
chrome: stable
language: node_js
node_js:
- "8"
cache:
yarn: true
directories:
- node_modules
jobs:
include:
- stage: "ESLint & Tests & Build"
name: "ESLint"
script: yarn lint
- script: yarn unit
name: "Unit tests"
# - script:
# - yarn installer:ci
# - yarn tests:e2e:ci
# name: "E2E tests"
- script: yarn build
name: "Build"
| sudo: required
addons:
chrome: stable
language: node_js
node_js:
- "8"
cache:
yarn: true
directories:
- node_modules
script:
- yarn lint
- yarn unit
# - yarn installer:ci
# - yarn tests:e2e:ci
- yarn build
| Simplify scripts to speed up CI | Simplify scripts to speed up CI
| YAML | mit | DivanteLtd/vue-storefront,DivanteLtd/vue-storefront,pkarw/vue-storefront,DivanteLtd/vue-storefront,pkarw/vue-storefront,DivanteLtd/vue-storefront,pkarw/vue-storefront,pkarw/vue-storefront |
5aaa32935120717e7f503c50969bf2236ae0f145 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install: pip install -U tox tox-travis
script: tox
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install: pip install -U tox tox-travis
script: tox
| Remove 3.4 from Travis also | Remove 3.4 from Travis also
| YAML | mit | yougov/emanate |
f77d7d456e247287371054bc37e93efaa5108c41 | .travis.yml | .travis.yml | os:
- linux
- osx
sudo: false
before_install:
- export BUNDLE_GEMFILE=$PWD/Gemfile
- export TRAVIS_RUBY_VERSION="$(ruby -e 'puts RUBY_VERSION')-travis"
- script/bootstrap
- export PATH=~/bin:"$PATH"
language: go
go:
- 1.4.2
script: script/test
install: bundle install --path "$HOME/build/$TRAVIS_REPO_SLUG/vendor/bundle" --without development --deployment --jobs=3 --retry=3
cache:
directories:
- vendor/bundle
notifications:
email: false
env:
global:
- AMAZON_S3_BUCKET=ci-cache
- AMAZON_ACCESS_KEY_ID=AKIAJQCVTDEWQHRPBPGQ
- secure: "XAZv5xyNjWt7F9hG0MZhDANVJ5h/ajEZvfJOEIZRQlE3X5x6oVgI8blLh/MmlRSF0kIyLckcn6t2ccjSOvwN2hca5bwZSjIqoKbJyNe2cmkxfi2432vEOu3Ve6PT5hZWX4R5RgT+xWyMjIJcdF3gUMP7ErXl64aEncBzeW6OoXM="
| os:
- linux
- osx
sudo: false
before_install:
- export BUNDLE_GEMFILE=$PWD/Gemfile
- export TRAVIS_RUBY_VERSION="$(ruby -e 'puts RUBY_VERSION')-travis"
- script/bootstrap
- export PATH=~/bin:"$PATH"
language: go
go:
- 1.4.2
script: script/test
install: script/cached-bundle install --without development --deployment --jobs=3 --retry=3
notifications:
email: false
env:
global:
- AMAZON_S3_BUCKET=ci-cache
- AMAZON_ACCESS_KEY_ID=AKIAJQCVTDEWQHRPBPGQ
- secure: "XAZv5xyNjWt7F9hG0MZhDANVJ5h/ajEZvfJOEIZRQlE3X5x6oVgI8blLh/MmlRSF0kIyLckcn6t2ccjSOvwN2hca5bwZSjIqoKbJyNe2cmkxfi2432vEOu3Ve6PT5hZWX4R5RgT+xWyMjIJcdF3gUMP7ErXl64aEncBzeW6OoXM="
| Switch back to manual S3 caching strategy to support osx | Switch back to manual S3 caching strategy to support osx
Travis `cache` directive doesn't seem supported on its osx environment.
| YAML | mit | cpick/hub,cpick/hub,cpick/hub |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.