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 |
|---|---|---|---|---|---|---|---|---|---|
c28c202be06e21deea8793eb93e76efcd5eb9a4a | .travis.yml | .travis.yml | #
#
# travis ci settings
#
#
language: java
jdk:
- openjdk8
- openjdk7
| #
#
# travis ci settings
#
#
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
| Test 03 - Constructing jUnit and traivis ci | Test 03 - Constructing jUnit and traivis ci
| YAML | mit | RealTwo-Space/Neumann,RealTwo-Space/Neumann |
4c282aa7d5c8927469d1a13e873e548570fa810c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby
before_install:
- sudo apt-get -y install openssh-server
- ssh-keygen -q -t rsa -N "" -f ~/.ssh/id_rsa
- cp $HOME/.ssh/id_rsa.pub $HOME/.ssh/authorized_keys | language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby
before_install:
- gem install bundler
- sudo apt-get -y install openssh-server
- ssh-keygen -q -t rsa -N "" -f ~/.ssh/id_rsa
- cp $HOME/.ssh/id_rsa.pub $HOME/.ssh/authorized_keys
| Install bundler in Travis CI | Install bundler in Travis CI | YAML | mit | gabynaiman/datacenter |
d5186fa5405c9e64fd3c261ae195625a96d444a2 | .travis.yml | .travis.yml | language: python
sudo: false
dist: trusty
python:
- "2.7"
addons:
postgresql: "9.6"
services:
- postgresql
- docker
before_install:
- sudo apt-get update
- sudo apt-get install docker-engine
install:
- pip install tox==2.3.2
before_script:
- psql -c 'create database filmfest;' -U postgres
script:
- tox -e "py27-{sqlite,pg}"
deploy:
- provider: script
script: ./scripts/push_image.sh
on:
branch: deploy
- provider: script
script: ./scripts/deploy.sh
on:
branch: deploy
| language: python
sudo: false
dist: trusty
python:
- "2.7"
addons:
postgresql: "9.6"
services:
- postgresql
- docker
before_install:
- sudo apt-get update
- sudo apt-get install docker-engine
install:
- pip install tox==2.3.2
before_script:
- psql -c 'create database filmfest;' -U postgres
script:
- tox -e "py27-{sqlite,pg}"
deploy:
- provider: script
script: ./scripts/push_image.sh
on:
branch: master
- provider: script
script: ./scripts/deploy.sh
on:
branch: master
| Deploy only from master branch | Deploy only from master branch
We used `deploy` for testing that everything works. Now we are close to
merging this into master, so let's switch from deploy to master.
| YAML | unlicense | nott/next.filmfest.by,nott/next.filmfest.by,nott/next.filmfest.by,nott/next.filmfest.by,kinaklub/next.filmfest.by,kinaklub/next.filmfest.by,kinaklub/next.filmfest.by,kinaklub/next.filmfest.by |
e681405b970f815e31d6a350a435c8e609b4ac5a | .travis.yml | .travis.yml | # back to language cpp to try to bypass osx node failure
language: cpp
sudo: false
env:
- export NODE_VERSION="0.10"
- export NODE_VERSION="0.12"
- export NODE_VERSION="iojs-v1.0"
- export NODE_VERSION="iojs-v1"
- export NODE_VERSION="iojs-v2"
- export NODE_VERSION="iojs-v3"
- export NODE_VERSION="4"
- export NODE_VERSION="5"
os:
- linux
- osx
# pre-install to bring in the correct version of node via nvm
before_install:
- git submodule update --init --recursive
- git clone https://github.com/creationix/nvm.git ./.nvm
- source ./.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION
- npm config set python `which python`
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CC="gcc-4.8";
export CXX="g++-4.8";
export LINK="gcc-4.8";
export LINKXX="g++-4.8";
fi
- gcc --version
- g++ --version
# node 4 depends on gcc 4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- gcc-4.8
# script needed to test, because defaults don't work on osx
script:
- npm install
- npm run lint
| # back to language cpp to try to bypass osx node failure
language: cpp
sudo: false
env:
- export NODE_VERSION="0.10"
- export NODE_VERSION="0.12"
- export NODE_VERSION="4"
- export NODE_VERSION="5"
os:
- linux
- osx
# pre-install to bring in the correct version of node via nvm
before_install:
- git submodule update --init --recursive
- git clone https://github.com/creationix/nvm.git ./.nvm
- source ./.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION
- npm config set python `which python`
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CC="gcc-4.8";
export CXX="g++-4.8";
export LINK="gcc-4.8";
export LINKXX="g++-4.8";
fi
- gcc --version
- g++ --version
# node 4 depends on gcc 4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- gcc-4.8
# script needed to test, because defaults don't work on osx
script:
- npm install
- npm run lint
| Stop testing iojs versions of node | Stop testing iojs versions of node
Relatively unlikely anyone is using those anymore.
| YAML | mit | Khaledgarbaya/gatsby,ChristopherBiscardi/gatsby,okcoker/gatsby,okcoker/gatsby,fk/gatsby,chiedo/gatsby,0x80/gatsby,mingaldrichgan/gatsby,ChristopherBiscardi/gatsby,gatsbyjs/gatsby,mingaldrichgan/gatsby,mickeyreiss/gatsby,Khaledgarbaya/gatsby,Khaledgarbaya/gatsby,fk/gatsby,0x80/gatsby,danielfarrell/gatsby,fabrictech/gatsby,gatsbyjs/gatsby,mingaldrichgan/gatsby,okcoker/gatsby,mickeyreiss/gatsby,gatsbyjs/gatsby,mickeyreiss/gatsby,chiedo/gatsby,ChristopherBiscardi/gatsby,fabrictech/gatsby,gatsbyjs/gatsby,gatsbyjs/gatsby,ChristopherBiscardi/gatsby,rothfels/gatsby,fk/gatsby,danielfarrell/gatsby,0x80/gatsby,chiedo/gatsby,rothfels/gatsby,fabrictech/gatsby,gatsbyjs/gatsby,danielfarrell/gatsby |
3681830363dcf7db568d7b530c3b30e32e2606ac | .travis.yml | .travis.yml | sudo: false
rvm:
- 2.3.0
- ruby-head
- rbx-2
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
- rvm: jruby-head
fast_finish: true
branches:
only:
- master
before_install:
- gem update bundler
| sudo: false
rvm:
- 2.3.3
- ruby-head
- rbx-2
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
- rvm: jruby-head
fast_finish: true
branches:
only:
- master
before_install:
- gem update bundler
| Update Travis from Ruby 2.3.0 to 2.3.3 | Update Travis from Ruby 2.3.0 to 2.3.3
| YAML | mit | kaize/valle |
66e88adbf119283b44c6d11121b806d879efcb32 | .travis.yml | .travis.yml | language: scala
scala:
- 2.10.3
before_script:
- npm install bower
- npm install grunt-cli
- gem install sass
- cd public
- npm install
- bower install
- cd ..
script:
- sbt test
- cd public
- grunt test
deploy:
provider: heroku
api_key: "mgc+E/IvRsGjPfLNDJjXwTmuG+Rbptin3vU7M8ebYzd0QuMF+Jakj72GhRTiFVxcaNB80FJ6Su4jft4ytr33czM+26VOBOHruFccxs4iLELGUvv5UYrzeeB3A3DxKKD/CfxFipZYcxrPXpN6ZG0FodL2xmuq0vf8hTUGge7lK6k="
app:
develop: bridge-development
| language: scala
scala:
- 2.10.3
before_script:
- npm install bower
- npm install grunt-cli
- gem install sass
- cd public
- npm install
- bower install
- cd ..
script:
- sbt test
- cd public
- grunt test
deploy:
provider: heroku
api_key: "mgc+E/IvRsGjPfLNDJjXwTmuG+Rbptin3vU7M8ebYzd0QuMF+Jakj72GhRTiFVxcaNB80FJ6Su4jft4ytr33czM+26VOBOHruFccxs4iLELGUvv5UYrzeeB3A3DxKKD/CfxFipZYcxrPXpN6ZG0FodL2xmuq0vf8hTUGge7lK6k="
skip_cleanup: true
app:
develop: bridge-development
| Add skip_cleanup to keep the artifacts. | Add skip_cleanup to keep the artifacts.
| YAML | apache-2.0 | alxdarksage/BridgePF,DwayneJengSage/BridgePF,alxdarksage/BridgePF,DwayneJengSage/BridgePF,DwayneJengSage/BridgePF,alxdarksage/BridgePF,Sage-Bionetworks/BridgePF,Sage-Bionetworks/BridgePF,Sage-Bionetworks/BridgePF |
74787ca1abec1dc5b50901656a4c4d76080f25a1 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 5.3.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: hhvm
- php: hhvm-nightly
- php: 7.0
allow_failures:
- php: hhvm-nightly
- php: 7.0
fast_finish: true
before_install:
- composer selfupdate
install:
- composer update --prefer-dist
script:
- php bin/grumphp git:pre-commit
| language: php
matrix:
include:
- php: 5.3.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: hhvm
- php: hhvm-nightly
- php: 7.0
allow_failures:
- php: hhvm-nightly
- php: 7.0
fast_finish: true
before_install:
- composer selfupdate
install:
- composer update --prefer-dist --no-scripts
script:
- php bin/grumphp git:pre-commit
| Make sure no composer scripts are executed | Make sure no composer scripts are executed
| YAML | mit | bvanderstee/grumphp,veewee/grumphp,tombevers/grumphp,Bilge/grumphp,phpro/grumphp,tombevers/grumphp,mbrzuchalski/grumphp,mikechernev/grumphp,mbrzuchalski/grumphp,ecentinela/grumphp,lykciv/grumphp,talib570/grumphp,tifabien/grumphp,veewee/grumphp,tifabien/grumphp,janvernieuwe/grumphp,aderuwe/grumphp,aderuwe/grumphp,lykciv/grumphp,NoUseFreak/grumphp,Big-Shark/grumphp,janvernieuwe/grumphp,igormukhingmailcom/grumphp,ecentinela/grumphp,igormukhingmailcom/grumphp,mikechernev/grumphp,jyggen/grumphp,bvanderstee/grumphp,Big-Shark/grumphp,NoUseFreak/grumphp,Bilge/grumphp,phpro/grumphp,jyggen/grumphp,talib570/grumphp |
827e9dbe862edaa3c2501ae46f281f8538d4404a | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- DJANGO_VERSION=1.6.2
install:
- pip install -q -r requirements/test.txt
script:
- pwd
- python manage.py test
| language: python
python:
- "2.7"
env:
- DJANGO_VERSION=1.6.2
install:
- pip install -q -r requirements/test.txt
script:
- sh -c 'cd django_slack && python manage.py test'
| Change the way to chdir in Travis :bicyclist: | Change the way to chdir in Travis :bicyclist:
| YAML | mit | spacebra/django-slack,prontodev/django-slack,prontodev/django-slack,alexphelps/django-slack,prontodev/django-slack,alexphelps/django-slack,spacebra/django-slack,alexphelps/django-slack,spacebra/django-slack |
7232534babbaa6fc178b7ea54d0dcd73a849978a | .travis.yml | .travis.yml | dist: trusty
language: python
sudo: true
addons:
apt:
packages:
- libatlas3gf-base
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
- python-scipy
python:
- 3.6
env:
matrix:
# This environment tests for python 3 packages with conda
- DISTRIB="conda" PYTHON_VERSION="3.6"
NUMPY_VERSION="1.13.3" XLWT_VERSION="1.3.0" XLRD_VERSION="1.1.0"
COVERAGE="true"
# This environment tests for python 3.9 packages with conda
- DISTRIB="conda_min" PYTHON_VERSION="3.9"
NUMPY_VERSION="1.13.3" XLWT_VERSION="1.3.0" XLRD_VERSION="1.1.0"
COVERAGE="true"
# basic Ubuntu build environment
- DISTRIB="ubuntu" PYTHON_VERSION="3.6" INSTALL_ATLAS="true"
NUMPY_VERSION="1.13.3" XLWT_VERSION="1.3.0" XLRD_VERSION="1.1.0"
COVERAGE="true"
install: source continuous_integration/install.sh
script: bash continuous_integration/test_script.sh
after_success:
- if [[ "$COVERAGE" == "true" ]]; then coveralls || echo "failed"; fi
cache: apt
| dist: trusty
language: python
sudo: true
addons:
apt:
packages:
- libatlas3gf-base
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
- python-scipy
python:
- 3.6
env:
matrix:
# This environment tests for python 3 packages with conda
- DISTRIB="conda" PYTHON_VERSION="3.6"
NUMPY_VERSION="1.13.3" XLWT_VERSION="1.3.0" XLRD_VERSION="1.1.0"
COVERAGE="true"
# # This environment tests for python 3.9 packages with conda
# - DISTRIB="conda_min" PYTHON_VERSION="3.9"
# NUMPY_VERSION="1.13.3" XLWT_VERSION="1.3.0" XLRD_VERSION="1.1.0"
# COVERAGE="true"
# basic Ubuntu build environment
- DISTRIB="ubuntu" PYTHON_VERSION="3.6" INSTALL_ATLAS="true"
NUMPY_VERSION="1.13.3" XLWT_VERSION="1.3.0" XLRD_VERSION="1.1.0"
COVERAGE="true"
install: source continuous_integration/install.sh
script: bash continuous_integration/test_script.sh
after_success:
- if [[ "$COVERAGE" == "true" ]]; then coveralls || echo "failed"; fi
cache: apt
| Disable tests for Python 3.9 due to version conflicts | Disable tests for Python 3.9 due to version conflicts
| YAML | bsd-3-clause | INM-6/python-odmltables,INM-6/python-odmltables |
a6aad1d3beabe81fd89bf225d53c08d60cf95766 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist -vvv
script:
- composer test
- composer lint
| language: php
php:
- 7.1
- 7.2
- 7.3
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist -vvv
script:
- composer test
- composer lint
| Add test support for PHP 7.3 | Add test support for PHP 7.3 | YAML | mit | eXolnet/laravel-closure-table |
e781b6d67141c69d563240df2e72217061b4b06d | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=PluginSkeleton
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.4
- DB=mysql CAKE_VERSION=2.5
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COVERALLS=1
- php: 5.4
env:
- PHPCS=1
before_script:
- git clone -b master https://github.com/FriendsOfCake/travis.git --depth 1 ../travis
- ../travis/before_script.sh
script:
- ../travis/script.sh
after_success:
- ../travis/after_success.sh
notifications:
email: false
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=FakeSeeder
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.4
- DB=mysql CAKE_VERSION=2.5
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COVERALLS=1
- php: 5.4
env:
- PHPCS=1
before_script:
- git clone -b master https://github.com/FriendsOfCake/travis.git --depth 1 ../travis
- ../travis/before_script.sh
script:
- ../travis/script.sh
after_success:
- ../travis/after_success.sh
notifications:
email: false
| Fix plugin name in Travis config | Fix plugin name in Travis config
| YAML | mit | ravage84/cakephp-fake-seeder |
49930e2d8c16ee453d70c6b9d1311f81417deeae | .travis.yml | .travis.yml | dist: xenial
sudo: required
language: python
python:
- "3.6"
- "3.7"
- "3.8"
before_install:
- which python
- which pip
- pip install -U setuptools
install:
- pip install .
- pip install -r requirements-dev.txt
- pip install keyrings.alt>=3.1
script:
- set -e
- coverage run --source pgcli -m py.test
# TODO: fix failing tests and uncomment.
# commented out on 9/8/2020 by j-bennet
# - cd tests
# - behave --no-capture
# - cd ..
# check for changelog ReST compliance
- rst2html.py --halt=warning changelog.rst >/dev/null
# check for black code compliance, 3.6 only
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then pip install black && black --check . ; else echo "Skipping black for $TRAVIS_PYTHON_VERSION"; fi
- set +e
after_success:
- coverage combine
- codecov
notifications:
webhooks:
urls:
- YOUR_WEBHOOK_URL
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
services:
- postgresql
addons:
postgresql: "9.6"
| dist: xenial
sudo: required
language: python
python:
- "3.6"
- "3.7"
- "3.8"
before_install:
- which python
- which pip
- pip install -U setuptools
install:
- pip install .
- pip install -r requirements-dev.txt
- pip install keyrings.alt>=3.1
script:
- set -e
- coverage run --source pgcli -m py.test
- cd tests
- behave --no-capture
- cd ..
# check for changelog ReST compliance
- rst2html.py --halt=warning changelog.rst >/dev/null
# check for black code compliance, 3.6 only
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then pip install black && black --check . ; else echo "Skipping black for $TRAVIS_PYTHON_VERSION"; fi
- set +e
after_success:
- coverage combine
- codecov
notifications:
webhooks:
urls:
- YOUR_WEBHOOK_URL
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
services:
- postgresql
addons:
postgresql: "9.6"
| Revert "Temporarily comment out behave tests." | Revert "Temporarily comment out behave tests."
This reverts commit 59ae65cbbf698d1608e7fd3d55b507f3599ac117.
| YAML | bsd-3-clause | dbcli/pgcli,dbcli/pgcli |
03db9a3e73e93c8f8925e67b53dc562f46e7ed4a | .travis.yml | .travis.yml | os:
- linux
language: go
dist: trusty
group: deprecated-2017Q4
go:
- 1.9
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y build-essential rpm
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
- gem install fpm
script:
- go test github.com/honeycombio/rdslogs/... -bench=.
- go vet ./...
after_success:
- rm $GOPATH/bin/rdslogs
- go install -ldflags "-X main.BuildID=1.${TRAVIS_BUILD_NUMBER}" github.com/honeycombio/rdslogs/...
- $GOPATH/bin/rdslogs --write_default_config > ./rdslogs.conf
- ./build-pkg.sh -v "1.${TRAVIS_BUILD_NUMBER}" -t deb
- ./build-pkg.sh -v "1.${TRAVIS_BUILD_NUMBER}" -t rpm
- docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
- docker build -t "honeycombio/rdslogs:1.${TRAVIS_BUILD_NUMBER}" .
- docker push "honeycombio/rdslogs:1.${TRAVIS_BUILD_NUMBER}"
addons:
artifacts:
debug: true
paths:
- $GOPATH/bin
| os:
- linux
language: go
dist: trusty
group: deprecated-2017Q4
go:
- 1.9
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y build-essential rpm
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
- gem install fpm
script:
- go test github.com/honeycombio/rdslogs/... -bench=.
- go vet ./...
after_success:
- rm $GOPATH/bin/rdslogs
- go install -ldflags "-X main.BuildID=1.${TRAVIS_BUILD_NUMBER}" github.com/honeycombio/rdslogs/...
- $GOPATH/bin/rdslogs --write_default_config > ./rdslogs.conf
- ./build-pkg.sh -v "1.${TRAVIS_BUILD_NUMBER}" -t deb
- ./build-pkg.sh -v "1.${TRAVIS_BUILD_NUMBER}" -t rpm
- docker login -u "$DOCKER_USERNAME" -p "$DOCKER_PASSWORD"
- docker build -t "honeycombio/rdslogs:1.${TRAVIS_BUILD_NUMBER}" .
- docker tag "honeycombio/rdslogs:1.${TRAVIS_BUILD_NUMBER}" honeycomb.io/rdslogs:latest
- docker push honeycombio/rdslogs
addons:
artifacts:
debug: true
paths:
- $GOPATH/bin
| Tag newly built docker image with latest too | Tag newly built docker image with latest too
By adding and pushing a latest tag, users will be able to just pull the
container from docker hub without having to pin to a specific version.
| YAML | apache-2.0 | honeycombio/rdslogs,honeycombio/rdslogs |
cc0d8aa1828182e15963188f580d889ffb0c5d14 | .travis.yml | .travis.yml | language: python
matrix:
include:
- python: 2.7
- python: 3.6
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
bash miniconda.sh -b -p $HOME/miniconda;
export PATH="$HOME/miniconda/bin:$PATH";
hash -r;
conda config --set always_yes yes --set changeps1 no;
conda update -q conda;
conda info -a;
conda create -y -q -n compas_3x -c conda-forge python=3.6;
source ~/miniconda/bin/activate compas_3x;
pip install -r requirements-dev.txt;
else
sudo apt-get update -qq;
pip install -r requirements-dev.txt;
fi
install:
- python setup.py install;
script:
- invoke test
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
cd temp && git clone https://github.com/compas-dev/sphinx_compas_theme && cd ..;
invoke docs;
fi
deploy:
provider: pages
skip_cleanup: true
keep-history: true
github_token: $GITHUB_TOKEN
repo: compas-dev/main
name: COMPAS doc bot
target-branch: master
local_dir: dist/docs
on:
branch: master
condition: $TRAVIS_PYTHON_VERSION = 2.7
| language: python
matrix:
include:
- python: 2.7
- python: 3.6
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
bash miniconda.sh -b -p $HOME/miniconda;
export PATH="$HOME/miniconda/bin:$PATH";
hash -r;
conda config --set always_yes yes --set changeps1 no;
conda update -q conda;
conda info -a;
conda create -y -q -n compas_3x -c conda-forge python=3.6;
source ~/miniconda/bin/activate compas_3x;
pip install -r requirements-dev.txt;
else
sudo apt-get update -qq;
pip install -r requirements-dev.txt;
fi
install:
- python setup.py install;
script:
- invoke test
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
cd temp && git clone https://github.com/compas-dev/sphinx_compas_theme && cd ..;
invoke docs;
fi
deploy:
provider: pages
skip_cleanup: true
keep-history: true
github_token: $GITHUB_TOKEN
repo: compas-dev/main
name: COMPAS doc bot
target-branch: master
local_dir: dist/docs
on:
branch: master
condition: $TRAVIS_PYTHON_VERSION = 3.6
| Switch to build docs with Python 3.6 | Switch to build docs with Python 3.6 | YAML | mit | compas-dev/compas |
5a0b12bab6e67c04ea7e2af08c1048d2dcb71ae6 | .travis.yml | .travis.yml | language: python
dist: trusty
sudo: false
python:
- "2.7.13"
env:
DATABASE_URL=mysql://travis@127.0.0.1/mozillians
BASKET_URL=http://127.0.0.1
BASKET_API_KEY=basket_api_key
COMPRESS_ENABLED=False
COMPRESS_OFFLINE=False
SECRET_KEY='supersecretkey'
ALLOWED_HOSTS=localhost
DEBUG=True
CELERY_TASK_ALWAYS_EAGER=True
services:
- elasticsearch
- mysql
before_install:
# Hack to fix error `ImportError: No module named google_compute_engine`
# during boto install.
# https://github.com/travis-ci/travis-ci/issues/7940
- sudo rm -f /etc/boto.cfg
- pip install flake8
- flake8 mozillians
- mysql -e 'create database mozillians character set utf8; SET @@GLOBAL.wait_timeout=28800;'
cache:
- pip
install:
- npm install -g less
- pip install coverage
- pip install --require-hashes --no-deps -r requirements/dev.txt
script:
- coverage run --source=mozillians manage.py test --noinput
after_success:
- pip install coveralls
- coveralls
| language: python
dist: trusty
sudo: false
python:
- "2.7"
env:
DATABASE_URL=mysql://travis@127.0.0.1/mozillians
BASKET_URL=http://127.0.0.1
BASKET_API_KEY=basket_api_key
COMPRESS_ENABLED=False
COMPRESS_OFFLINE=False
SECRET_KEY='supersecretkey'
ALLOWED_HOSTS=localhost
DEBUG=True
CELERY_TASK_ALWAYS_EAGER=True
services:
- elasticsearch
- mysql
before_install:
- pip install flake8
- flake8 mozillians
- mysql -e 'create database mozillians character set utf8; SET @@GLOBAL.wait_timeout=28800;'
cache:
- pip
install:
- npm install -g less
- pip install coverage
- pip install --require-hashes --no-deps -r requirements/dev.txt
script:
- coverage run --source=mozillians manage.py test --noinput
after_success:
- pip install coveralls
- coveralls
| Use the latest 2.7 python version. | Use the latest 2.7 python version.
| YAML | bsd-3-clause | johngian/mozillians,akatsoulas/mozillians,mozilla/mozillians,akatsoulas/mozillians,johngian/mozillians,akatsoulas/mozillians,johngian/mozillians,mozilla/mozillians,johngian/mozillians,akatsoulas/mozillians,mozilla/mozillians,mozilla/mozillians |
a75db0f955701ddc9f0e11cc4246cde2b2c440df | .travis.yml | .travis.yml | language: node_js
node_js:
- 6.12.0
- lts/*
- node
| language: node_js
node_js:
- 6.12.1
- lts/*
- node
| Add node 6.12.1 to build matrix | Add node 6.12.1 to build matrix
| YAML | mit | mpalourdio/ng-http-loader,mpalourdio/ng-http-loader,mpalourdio/ng-http-loader |
3c5e004c17f051f925b8b80c7fb74e2dd7c73872 | .travis.yml | .travis.yml | #
# Travis CI configuration for testing codeception-module-drupal-user-registry
#
language: php
php:
- 5.4
# Whitelist branches to build.
branches:
only:
- feature/add-tests
# Test preparation.
before_script:
# Update Composer, install dependencies and generate Codeception classes.
- composer self-update
- composer install
- vendor/bin/codecept build
# Run tests.
script:
- vendor/bin/codecept run unit --debug --coverage
| #
# Travis CI configuration for testing codeception-module-drupal-user-registry
#
language: php
php:
- 5.4
# Whitelist branches to build.
branches:
only:
- master
# Test preparation.
before_script:
# Update Composer, install dependencies and generate Codeception classes.
- composer self-update
- composer install
- vendor/bin/codecept build
# Run tests.
script:
- vendor/bin/codecept run unit --debug --coverage
| Test master branch (only) with Travis. | Test master branch (only) with Travis.
| YAML | mit | chriscohen/codeception-module-drupal-user-registry,pfaocle/codeception-module-drupal-user-registry,ixis/codeception-module-drupal-user-registry |
bd506c8e6cb58055f2e736595cbfda854b5b1936 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "2.7"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: python setup.py install
# command to run tests, e.g. python setup.py test
script: python setup.py test
| matrix:
include:
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
sudo: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install "setuptools>=40"
- python setup.py install
# command to run tests, e.g. python setup.py test
script: python setup.py test
| Use a matrix build to get xenial support for 3.7. | Use a matrix build to get xenial support for 3.7.
| YAML | bsd-3-clause | freakboy3742/pyxero,jarekwg/pyxero,direvus/pyxero,schinckel/pyxero |
a064a8c6f7729b42c916f294374140e245f9df9f | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
- jruby
- rbx-19mode
matrix:
allow_failures:
- rvm: 2.1.1
- rvm: 2.0.0
- rvm: jruby
- rvm: rbx-19mode
before_install:
- gem update --system 2.1.11
- gem --version
| rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
- jruby
- rbx-19mode
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-19mode
before_install:
- gem update --system 2.1.11
- gem --version
| Mark 2.0.0 and 2.1.1 as both expecting to pass. | Mark 2.0.0 and 2.1.1 as both expecting to pass.
| YAML | mit | fakefs/fakefs,bquorning/fakefs,marxarelli/fakefs,vhl/fakefs,anthonyryan1/fakefs,deployable/fakefs,dekz/fakefs,defunkt/fakefs,1234-/fakefs |
22ce65b15999a93f58489a87fedb0fab4bcbbe0a | .travis.yml | .travis.yml | language: node_js
node_js:
- '5'
- '4'
before_install:
- npm install -g npm@latest
after_success:
- npm run codecov
| language: node_js
node_js:
- '6'
- '5'
- '4'
before_install:
- npm install -g npm@latest
after_success:
- npm run codecov
| Add Node 6 to Travis | Add Node 6 to Travis
| YAML | mit | wyze/atom-flexicons |
6377a3dde9a41d3a13763a1f2da6d6ae2f47dbd8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- make travisci-install
script:
- make travisci-test
after_success:
- coveralls
| sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- make travisci-install
script:
- make travisci-test
after_success:
- coveralls
| Disable sudo in Travis builds. | Disable sudo in Travis builds.
| YAML | mit | dgilland/ladder |
fb02a29b4bed14497cc8ed9265ee8270fd493404 | .travis.yml | .travis.yml | language: php
php:
- 7.0
sudo: false
install:
- composer install
before_script:
- phpenv rehash
script:
- phpunit
notifications:
- email: false
| language: php
php:
- 7.0
sudo: false
install:
- composer install
before_script:
- phpenv rehash
script:
- ./vendor/bin/phpunit
notifications:
- email: false
| Build configuration using vendor phpunit binary | Build configuration using vendor phpunit binary
| YAML | mit | brunitto/cakephp-new-relic |
bb8c83e4bdfe2d7e7360fb80aadc3ce2462cc53a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-9.1.8.0
script: bundle exec rake spec
| language: ruby
rvm:
- 2.2.8
- 2.3.5
- 2.4.2
- jruby-9.1.13.0
script: bundle exec rake spec
| Update Ruby versions for Travis CI | Update Ruby versions for Travis CI
This includes the latest minor/patch releases for all versions
(particularly MRI due to its recent security releases).
| YAML | mit | ahamlinman/peribot |
5e823bcbd35582f439f8f0f0381711ff9dde0762 | .travis.yml | .travis.yml | language: python
python:
- 2.7
services:
- mongodb
before_install:
- sudo /usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-analysis-icu/2.0.0
- sudo service elasticsearch start
install:
- pip install -r requirements/travis.pip
- pip install --no-deps -e .
script:
- nosetests --with-coverage udata
after_success:
- coveralls --rcfile=coverage.rc
| language: python
python:
- 2.7
services:
- mongodb
before_install:
- sudo /usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-analysis-icu/2.3.0
- sudo service elasticsearch start
install:
- pip install -r requirements/travis.pip
- pip install --no-deps -e .
script:
- nosetests --with-coverage udata
after_success:
- coveralls --rcfile=coverage.rc
| Use the right ElasticSearch ICU plugin version on Travis-CI | Use the right ElasticSearch ICU plugin version on Travis-CI
| YAML | agpl-3.0 | grouan/udata,grouan/udata,jphnoel/udata,etalab/udata,opendatateam/udata,grouan/udata,opendatateam/udata,jphnoel/udata,etalab/udata,davidbgk/udata,davidbgk/udata,jphnoel/udata,davidbgk/udata,opendatateam/udata,etalab/udata |
e94ec57db84aa3497ad51fcff6aa2a74ce19156e | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
install:
- pip install tox
script:
- tox --skip-missing-interpreters
| language: python
python:
- "3.6"
install:
- pip install tox
script:
- tox --skip-missing-interpreters
| Drop Python 3.4 and 3.5 from Travis | Drop Python 3.4 and 3.5 from Travis
| YAML | isc | crgwbr/asymmetric_jwt_auth,crgwbr/asymmetric_jwt_auth |
26bbcb683b613bea9144fe9c2d2343648a2803f8 | .travis.yml | .travis.yml | language: ruby
before_script:
- rake setup
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
env:
- USE_RUBYGEMS="1.8.25"
- USE_RUBYGEMS="2.0.3"
- USE_RUBYGEMS="2.2.2"
matrix:
exclude:
- rvm: 2.0.0
env: USE_RUBYGEMS="1.8.25"
| language: ruby
before_script:
- rake setup
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
env:
- USE_RUBYGEMS="1.8.25"
- USE_RUBYGEMS="2.0.3"
- USE_RUBYGEMS="2.2.2"
matrix:
exclude:
- rvm: 2.0.0
env: USE_RUBYGEMS="1.8.25"
- rvm: 2.1.1
env: USE_RUBYGEMS="1.8.25"
- rvm: ruby-head
env: USE_RUBYGEMS="1.8.25"
| Exclude test against RubyGems 1.8.x for Ruby 2.0 or greater | Exclude test against RubyGems 1.8.x for Ruby 2.0 or greater
| YAML | mit | luislavena/gem-compiler |
5f7579878799c14e15527b350dec9f5ccc64df78 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
# command to install dependencies
install:
- pip install coverage python-coveralls pyparsers #grammpy
- pip install -e git+https://github.com/PatrikValkovic/grammpy@dev#egg=grammpy
# command to run tests with coverage
script:
- coverage run --source=grammpy_transforms -m unittest discover -s tests -p "*Test.py" -q
# report coverage
after_script:
- coverage report -m
- coveralls
# disable email notifications
notifications:
email: false
| language: python
python:
- "3.5"
# command to install dependencies
install:
- pip install coverage python-coveralls pyparsers #grammpy
# command to run tests with coverage
script:
- coverage run --source=grammpy_transforms -m unittest discover -s tests -p "*Test.py" -q
# report coverage
after_script:
- coverage report -m
- coveralls
# disable email notifications
notifications:
email: false
| Remove dependency on dev version of grammpy | Remove dependency on dev version of grammpy
| YAML | mit | PatrikValkovic/grammpy |
defe74b77bf96a88ec334afd1871ff0058bf4464 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
script: make test
before_install:
- git submodule update --init
- sudo apt-get update -qq
- sudo apt-get install check
notifications:
hipchat:
- secure: "ZO/hEAoOTZ4FJytMW0m4LZrsdFVM1/V0Hu13zfj8mdcHkf2MyfxthPDecnn5\naZVn4P8mSSwpp39EnAfa9fBcWcDESnKM1YQKPPGkoxZZHIOd2rYhRv34XfpE\n5qNLkQ/lEPQCBEmvIQ5ZJxsiZjGhO7KxWvdNdruH6cdVCYSh4Xo="
| language: c
compiler:
- gcc
script: make test
before_install:
- git submodule update --init
- sudo apt-get update -qq
- sudo apt-get install check
| Remove old hipchat token from Travis CI config. | Remove old hipchat token from Travis CI config.
| YAML | bsd-3-clause | openxc/uds-c,openxc/uds-c |
3796e13ccb95b94dc97fbb0aac43bfaeff765d56 | .travis.yml | .travis.yml | rvm:
- 2.0.0
- 2.1.1
- 2.2.2
- ruby-head
- jruby
- jruby-head
- rbx-2
env:
- NIO4R_PURE=false
- NIO4R_PURE=true
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
- rvm: jruby
env: NIO4R_PURE=true
notifications:
irc: "irc.freenode.org#celluloid"
| language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.1
- 2.2.2
- ruby-head
- jruby
- jruby-head
- rbx-2
env:
- NIO4R_PURE=false
- NIO4R_PURE=true
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
- rvm: jruby
env: NIO4R_PURE=true
notifications:
irc: "irc.freenode.org#celluloid"
| Add sudo: false to Travis config | Add sudo: false to Travis config
| YAML | mit | celluloid/nio4r,celluloid/nio4r,celluloid/nio4r |
9d19a03ac82551fd5eec85af24b704bd1255a175 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
| language: node_js
node_js:
- "0.11"
install:
- npm install
- bower install
| Add bower to installs for Travis. | Add bower to installs for Travis.
| YAML | mit | egilkh/angular-capitalize |
4b31ce263dad040dc83a9273f7b3a7b11c8d5429 | .travis.yml | .travis.yml | language: julia
julia:
- 0.6
- nightly
sudo: required
dist: trusty
before_install:
- sudo apt-add-repository -y "deb http://packages.ros.org/ros/ubuntu trusty main"
- wget https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -O - | sudo apt-key add -
- sudo apt-get update
- sudo apt-get -y install ros-indigo-ros-base ros-indigo-common-msgs
- sudo rosdep init
- rosdep update
before_script:
- export PATH=/usr/bin:$PATH
- source /opt/ros/indigo/setup.sh
- roscore &
- sleep 5
- python test/echonode.py &
- sleep 5
after_success:
- julia -e 'cd(Pkg.dir("RobotOS")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'Pkg.add("Documenter");'
- julia -e 'cd(Pkg.dir("RobotOS")); ENV["DOCUMENTER_DEBUG"]="true"; include(joinpath("docs", "make.jl"))'
after_script:
- killall roscore
- killall python
- sleep 5
| language: julia
julia:
- 0.7
- nightly
sudo: required
dist: trusty
before_install:
- sudo apt-add-repository -y "deb http://packages.ros.org/ros/ubuntu trusty main"
- wget https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -O - | sudo apt-key add -
- sudo apt-get update
- sudo apt-get -y install ros-indigo-ros-base ros-indigo-common-msgs
- sudo rosdep init
- rosdep update
before_script:
- export PATH=/usr/bin:$PATH
- source /opt/ros/indigo/setup.sh
- roscore &
- sleep 5
- python test/echonode.py &
- sleep 5
after_success:
- julia -e 'cd(Pkg.dir("RobotOS")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
- julia -e 'Pkg.add("Documenter");'
- julia -e 'cd(Pkg.dir("RobotOS")); ENV["DOCUMENTER_DEBUG"]="true"; include(joinpath("docs", "make.jl"))'
after_script:
- killall roscore
- killall python
- sleep 5
| Drop Travis testing for 0.6 | Drop Travis testing for 0.6
| YAML | mit | phobon/RobotOS.jl |
57bc8945a4c2db75672997186e57b7aaff882972 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
python:
- "2.7"
services:
- docker
env:
global:
- PATH="/usr/bin:$PATH"
before_install:
# Ansible doesn't play well with virtualenv
- deactivate
- sudo apt-get update -qq
- sudo apt-get install -y -o Dpkg::Options::="--force-confnew" docker-engine
install:
- sudo pip install docker-py
# software-properties-common for ubuntu 14.04
# python-software-properties for ubuntu 12.04
- sudo apt-get install -y sshpass software-properties-common python-software-properties
- sudo apt-add-repository -y ppa:ansible/ansible
- sudo apt-get update -qq
- sudo apt-get install -y ansible
- sudo rm /usr/bin/python && sudo ln -s /usr/bin/python2.7 /usr/bin/python
- ansible --version
- ansible-galaxy install chrismeyersfsu.provision_docker
script:
- ansible-playbook -i test/inventory test/main.yml --syntax-check
#- cd test && make
#notifications:
# webhooks: https://galaxy.ansible.com/api/v1/notifications/ | sudo: required
dist: trusty
language: python
python:
- "2.7"
services:
- docker
env:
global:
- PATH="/usr/bin:$PATH"
before_install:
# Ansible doesn't play well with virtualenv
- deactivate
- sudo apt-get update -qq
- sudo apt-get install -y -o Dpkg::Options::="--force-confnew" docker-engine
install:
- sudo pip install docker-py
# software-properties-common for ubuntu 14.04
# python-software-properties for ubuntu 12.04
- sudo apt-get install -y sshpass software-properties-common python-software-properties
- sudo apt-add-repository -y ppa:ansible/ansible
- sudo apt-get update -qq
- sudo apt-get install -y ansible
- sudo rm /usr/bin/python && sudo ln -s /usr/bin/python2.7 /usr/bin/python
- ansible --version
- ansible-galaxy install chrismeyersfsu.provision_docker
script:
- ansible-playbook -i test/inventory test/main.yml
#- cd test && make
#notifications:
# webhooks: https://galaxy.ansible.com/api/v1/notifications/ | Update where to install role dependencies | Update where to install role dependencies
| YAML | mit | laupow/deploy,ngpestelos/deploy,mblaschke/deploy,dgsuarez/deploy |
cdbf071056f94cd1dbc34f9930bac105bf96a389 | .travis.yml | .travis.yml | language: php
sudo: false
env:
- COMPOSER_OPTIONS="
matrix:
include:
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-lowest"
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-stable"
- php: nightly
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- composer self-update
install:
- composer update -n "$COMPOSER_OPTIONS"
script:
- vendor/bin/phpunit
| language: php
sudo: false
env:
- COMPOSER_OPTIONS="
matrix:
include:
- php: 7.1
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-lowest"
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-stable"
- php: nightly
fast_finish: true
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- composer self-update
install:
- composer update -n "$COMPOSER_OPTIONS"
script:
- vendor/bin/phpunit
| Add default PHP 7.1 and add fast_finish to Travis config | Add default PHP 7.1 and add fast_finish to Travis config
| YAML | mit | SolidWorx/FormHandlerBundle |
7fb587134ee291ee9fc71e0cc02d25f93812b83e | .travis.yml | .travis.yml | # http://about.travis-ci.org/docs/user/languages/python/
language: python
python:
- 2.7
- 3.5
- 3.6
- 3.7
install:
- python setup.py install
- pip install coveralls flake8
script:
- python setup.py test
- flake8 mwclient
after_success:
- coveralls
| language: python
python:
- 2.7
- 3.5
- 3.6
- 3.7
install:
- python setup.py install
- pip install coveralls flake8
script:
- python setup.py test
- flake8 mwclient
after_success:
- coveralls
deploy:
provider: pypi
user: danmichaelo
password:
secure: iRaoF9UNIIzwNR2SP60zL7Ub33lgCTYddk4JkpfNNjz/olZaUEGTbrpttq1wQ9thzwYBgp6PbwspgEdIQWOgDLlT75XowkeLpp7UzRNwKjf7gUVaMJuAYtmhbofaWZFGft3zSbsDEt19z8mqepQXSUUN7dcfH4QVUvishElQT5k=
distributions: "sdist bdist_wheel"
on:
tags: true
repo: mwclient/mwclient
python: '3.7'
| Add deploy to PyPI from Travis | Add deploy to PyPI from Travis
| YAML | mit | mwclient/mwclient |
f57811e24921fbc2eb987acff4ea77756e1cb45e | .travis.yml | .travis.yml | language: ruby
sudo: required
dist: trusty
group: edge # https://github.com/travis-ci/travis-ci/issues/5448
services:
- docker
before_install:
- gem update --system --no-doc # https://github.com/sickill/rainbow/issues/49
install:
- gem install --no-doc test-kitchen kitchen-docker
script:
- kitchen test
matrix:
include:
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=2.3
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=2.4
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=2.5
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=2.6
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=stable
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=2.3
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=2.4
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=2.5
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=2.6
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=stable
| language: ruby
sudo: required
dist: trusty
group: edge # https://github.com/travis-ci/travis-ci/issues/5448
services:
- docker
before_install:
- gem update --system --no-doc # https://github.com/sickill/rainbow/issues/49
install:
- gem install --no-doc test-kitchen kitchen-docker
script:
- kitchen test
matrix:
include:
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=2.3
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=2.4
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=2.5
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=2.6
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=stable
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=2.3
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=2.4
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=2.5
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=2.6
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=stable
allow_failures:
- env: KITCHEN_PLATFORM=debian KITCHEN_SCRIPT=2.3
- env: KITCHEN_PLATFORM=centos KITCHEN_SCRIPT=2.3
| ALlow failures for Ruby 2.3 since it's EOL | ALlow failures for Ruby 2.3 since it's EOL
| YAML | mit | infertux/ruby-bootstrap |
0cfc2e60ea94e27298e40756877ea29832abce8e | .travis.yml | .travis.yml | language: go
go:
- "1.12beta1"
env:
- GO111MODULE=on
install:
- go get -v github.com/codeclimate/test-reporter
before_script:
- test-reporter before-build
script:
- go test -coverprofile c.out ./...
after_script:
- test-reporter after-build --exit-code $TRAVIS_TEST_RESULT | language: go
go:
- "1.12beta1"
env:
- GO111MODULE=on
install:
- mkdir -p $GOPATH/src/github.com/codeclimate && cd $GOPATH/src/github.com/codeclimate && git clone https://github.com/codeclimate/test-reporter.git && cd $GOPATH/src/github.com/codeclimate/test-reporter && go install
before_script:
- test-reporter before-build
script:
- go test -coverprofile c.out ./...
after_script:
- test-reporter after-build --exit-code $TRAVIS_TEST_RESULT | Install test-reporter Outside Path to Avoid Adding go Module | Install test-reporter Outside Path to Avoid Adding go Module
| YAML | mit | alexandre-normand/slackscot |
7d6bce0d2e2ddfd3312ad39afbd1d391c8f8e95f | .travis.yml | .travis.yml | dist: trusty
services:
- docker
addons:
ssh_known_hosts: 'abstimmen.bewegung.jetzt'
script:
- docker build .
before_deploy:
- openssl aes-256-cbc -K $encrypted_5ba0802f0861_key -iv $encrypted_5ba0802f0861_iv
-in scripts/deploy_rsa.enc -out /tmp/deploy_rsa -d
- eval "$(ssh-agent -s)"
- chmod 600 /tmp/deploy_rsa
- ssh-add /tmp/deploy_rsa
deploy:
- provider: script
script: ssh root@abstimmen.bewegung.jetzt "cd ~/voty-beta && git fetch && git checkout $TRAVIS_BRANCH && git pull && bash scripts/deploy.sh"
on:
branch: develop
condition: "$TRAVIS_PULL_REQUEST = false"
- provider: script
script: ssh root@abstimmen.bewegung.jetzt "cd ~/abstimmungstool && git fetch && git checkout $TRAVIS_BRANCH && git pull && bash scripts/deploy.sh"
on:
branch: master
condition: "$TRAVIS_PULL_REQUEST = false"
| dist: trusty
services:
- docker
addons:
ssh_known_hosts: 'abstimmen.bewegung.jetzt'
script:
- docker build .
before_deploy:
- openssl aes-256-cbc -K $encrypted_5ba0802f0861_key -iv $encrypted_5ba0802f0861_iv
-in scripts/deploy_rsa.enc -out /tmp/deploy_rsa -d
- eval "$(ssh-agent -s)"
- chmod 600 /tmp/deploy_rsa
- ssh-add /tmp/deploy_rsa
deploy:
- provider: script
script: ssh root@abstimmen.bewegung.jetzt "cd /var/dib/voty-beta && git fetch && git checkout $TRAVIS_BRANCH && git pull && bash scripts/deploy.sh"
on:
branch: develop
condition: "$TRAVIS_PULL_REQUEST = false"
- provider: script
script: ssh root@abstimmen.bewegung.jetzt "cd /var/dib/abstimmungstool && git fetch && git checkout $TRAVIS_BRANCH && git pull && bash scripts/deploy.sh"
on:
branch: master
condition: "$TRAVIS_PULL_REQUEST = false"
| Fix path for deployment to new systems | Fix path for deployment to new systems
| YAML | agpl-3.0 | DemokratieInBewegung/abstimmungstool,DemokratieInBewegung/abstimmungstool,DemokratieInBewegung/abstimmungstool,DemokratieInBewegung/abstimmungstool |
fc21073883587bbd2499d78ecdc1a3466af0aa38 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- '1.12'
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make vendor
before_script:
- make clean
script:
- make test
after_success:
- make coverage
| sudo: false
language: go
go:
- '1.12'
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make vendor
before_script:
- make clean
script:
- make test
after_success:
- make coverage
| Remove testing against Go tip in Travis CI. | Remove testing against Go tip in Travis CI.
Signed-off-by: Krzysztof Wilczynski <5f1c0be89013f8fde969a8dcb2fa1d522e94ee00@linux.com>
| YAML | apache-2.0 | kwilczynski/packer-provisioner-itamae-local |
3e4cb4ea1dbffe2092a6045dd7b8dbb7af28fe11 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
before_install:
- npm install -g npm@~1.4.28
before_script:
- npm install -g istanbul grunt-cli
- npm install coveralls
#- npm install git+https://github.com/node-red/node-red.git
- npm install node-red
- export NODE_RED_HOME=`pwd`/node_modules/node-red
- (cd $NODE_RED_HOME ; npm install nock@~0.48.0)
script:
- istanbul cover grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true ) && rm -rf coverage
| language: node_js
node_js:
- "0.10"
- "0.12"
before_install:
- npm install -g npm@~1.4.28
before_script:
- npm install -g istanbul grunt-cli
- npm install coveralls
- npm install git+https://github.com/node-red/node-red.git
- export NODE_RED_HOME=`pwd`/node_modules/node-red
- (cd $NODE_RED_HOME ; npm install nock@~0.48.0)
script:
- istanbul cover grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true ) && rm -rf coverage
| Install the git repo of NR, not npm package | Install the git repo of NR, not npm package
| YAML | apache-2.0 | perja12/node-red-nodes,xively/node-red-nodes,seniot/node-red-nodes,xively/node-red-nodes,soc1/node-red-nodes,perja12/node-red-nodes,seniot/node-red-nodes,seniot/node-red-nodes,soc1/node-red-nodes,xively/node-red-nodes,soc1/node-red-nodes,soc1/node-red-nodes,perja12/node-red-nodes,perja12/node-red-nodes,seniot/node-red-nodes,xively/node-red-nodes |
ebfe44d71989da31cf8e46d0399e5a416d8933b8 | .travis.yml | .travis.yml | language: cpp
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
- sudo apt-get -qq install libconfig++-dev libgtest-dev-1.4.9
- "cd /usr/src/gtest && sudo cmake . && sudo cmake --build . && sudo mv libg* /usr/local/lib/ ; cd -"
before_script:
- cmake . -Dbuild_tests=BOOL:ON
script: make
after_success:
- ./bin/test-stringutils
- ./bin/test-restclient
- ./bin/test-json
- ./bin/test-jippi
| language: cpp
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
- sudo apt-get -qq install libconfig++-dev libgtest-dev
- "cd /usr/src/gtest && sudo cmake . && sudo cmake --build . && sudo mv libg* /usr/local/lib/ ; cd -"
before_script:
- cmake . -Dbuild_tests=BOOL:ON
script: make
after_success:
- ./bin/test-stringutils
- ./bin/test-restclient
- ./bin/test-json
- ./bin/test-jippi
| Remove version of GTest library form Travis configuration | Remove version of GTest library form Travis configuration
| YAML | apache-2.0 | kmichalak/jippi |
35786af3235a2ea0176f014807cfaaa947696188 | .travis.yml | .travis.yml | language: ruby
before_script:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
script: "bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
- PUPPET_GEM_VERSION="~> 3.3.0"
- PUPPET_GEM_VERSION="~> 3.4.0"
branches:
only:
- master
matrix:
exclude:
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.1.0"
notifications:
email: false
| language: ruby
before_script:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
script: "bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
- PUPPET_GEM_VERSION="~> 3.3.0"
- PUPPET_GEM_VERSION="~> 3.4.0"
branches:
only:
- master
matrix:
allow_failures:
- env: PUPPET_GEM_VERSION="~> 3.4.0"
exclude:
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.1.0"
notifications:
email: false
| Allow failures for 3.4.x as it is a known bug with module_data | Allow failures for 3.4.x as it is a known bug with module_data
| YAML | apache-2.0 | cyberious/puppet-windows_java |
8d570617dda98a27c332ab55a3f8c38829b610af | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "iojs"
- "iojs-v1.0.4"
| language: node_js
node_js:
- "0.12"
- "0.11"
- "iojs"
- "iojs-v1.0.4"
cache:
directories:
- node_modules
| Enable caching of node_modules in Travis CI | CI: Enable caching of node_modules in Travis CI
Perhaps enables faster continuous integration tests, as modules don't
need to be fetched from npm as much.
To my understanding, eslisp builds are on the new container-based
architecture, so the explicit "sudo: false" option shouldn't be
necessary.
| YAML | isc | anko/eslisp,whacked/eslisp,martindale/eslisp,jabbrass/eslisp |
5a15eb1fc25b4c70067150574bad142255315b20 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
before_script:
- composer install --dev
script: ./bin/robo test
| language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
before_script:
- cp .env.example .env
- composer install --dev
script: ./bin/robo test
| Copy a new .env before running Travis tests | Copy a new .env before running Travis tests
| YAML | mit | purplapp/purplapp,purplapp/purplapp |
17d6e704deda031317e15d5cacf09c13cc824de4 | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.2
language: objective-c
podfile: Example/Podfile
#before_install:
#- gem install cocoapods # Since Travis is not always on latest version
#- pod install --project-directory=Example
#install:
#- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace Example/AmazonS3RequestManager.xcworkspace -scheme iOS -sdk iphonesimulator9.2 ONLY_ACTIVE_ARCH=NO | xcpretty -c
- set -o pipefail && xcodebuild test -workspace Example/AmazonS3RequestManager.xcworkspace -scheme OSX -sdk macosx10.11 ONLY_ACTIVE_ARCH=NO | xcpretty -c
- pod lib lint
| # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.2
language: objective-c
podfile: Example/Podfile
#before_install:
#- gem install cocoapods # Since Travis is not always on latest version
#- pod install --project-directory=Example
#install:
#- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail && xcodebuild test -workspace Example/AmazonS3RequestManager.xcworkspace -scheme iOS -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c
- set -o pipefail && xcodebuild test -workspace Example/AmazonS3RequestManager.xcworkspace -scheme OSX -sdk macosx ONLY_ACTIVE_ARCH=NO | xcpretty -c
- pod lib lint --quick --allow-warnings
| Allow warnings on lint for Travis CT | Allow warnings on lint for Travis CT
| YAML | mit | AnthonyMDev/AmazonS3RequestManager,AnthonyMDev/AmazonS3RequestManager,mz2/AmazonS3RequestManager,u10int/AmazonS3RequestManager,u10int/AmazonS3RequestManager,u10int/AmazonS3RequestManager,u10int/AmazonS3RequestManager,mz2/AmazonS3RequestManager,mz2/AmazonS3RequestManager,AnthonyMDev/AmazonS3RequestManager |
eb830e8b0d9b9fb6deb590e6763d30ee4446ebc1 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.1.10
- ruby-head
- jruby-9
- jruby-head
- rbx-2
script: "bundle exec rake"
| language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.1.10
- ruby-head
- jruby-9
- jruby-head
- rbx-2
matrix:
allow_failures:
- jruby-9
- jruby-head
script: "bundle exec rake"
| Allow CI failures on JRuby (for now) | Allow CI failures on JRuby (for now)
* This is a temporary measure until I can make time to resolve the compatibility issues with JRuby.
* On jruby-9, the issue seems to be the exit code returned by the script when running the acceptance tests. Everything seems to work fine otherwise.
* On jruby-head, Travis doesn't seem to have the bundler gem installed.
| YAML | mit | randycoulman/jujube |
842e10d003cd976942dd2b5ef7ef9642f57bb0a4 | .travis.yml | .travis.yml | language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
script:
- go get -d -t ./...
- go vet ./...
- go test ./...
- >
go_version=$(go version);
if [ ${go_version:13:4} = "1.12" ]; then
go get -u golang.org/x/tools/cmd/goimports;
goimports -d -e ./ | grep '.*' && { echo; echo "Aborting due to non-empty goimports output."; exit 1; } || :;
fi
| language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
script:
- go get -d -t ./...
- go vet ./...
- go test ./...
- >
go_version=$(go version);
if [ ${go_version:13:4} = "1.12" ]; then
go get -u golang.org/x/tools/cmd/goimports;
goimports -d -e ./ | grep '.*' && { echo; echo "Aborting due to non-empty goimports output."; exit 1; } || :;
fi
| Add Go 1.14 to ci | Add Go 1.14 to ci
| YAML | mit | go-chi/chi,pressly/chi |
89f9fc551f4c05eda9c1581af547373e31dfdf62 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7
before_install:
- brew update
- brew reinstall xctool
- gem install cocoapods -v 0.38.2
- gem install slather
- xcrun simctl list
install: echo "<3"
env:
- MODE=tests
- MODE=examples
- MODE=life-without-cocoapods
- MODE=framework
script: ./build.sh $MODE
after_success:
- slather
# whitelist
branches:
only:
- master
| language: objective-c
osx_image: xcode7.2
before_install:
- brew update
- brew reinstall xctool
- gem install cocoapods -v 0.38.2
- gem install slather
- xcrun simctl list
install: echo "<3"
env:
- MODE=tests
- MODE=examples
- MODE=life-without-cocoapods
- MODE=framework
script: ./build.sh $MODE
after_success:
- slather
# whitelist
branches:
only:
- master
| Update Travis build server to use Xcode 7.2. | Update Travis build server to use Xcode 7.2.
| YAML | bsd-3-clause | bimawa/AsyncDisplayKit,george-gw/AsyncDisplayKit,eanagel/AsyncDisplayKit,eanagel/AsyncDisplayKit,chrisdanford/AsyncDisplayKit,marmelroy/AsyncDisplayKit,garrettmoon/AsyncDisplayKit,garrettmoon/AsyncDisplayKit,levi/AsyncDisplayKit,Xinchi/AsyncDisplayKit,samhsiung/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,tomizimobile/AsyncDisplayKit,levi/AsyncDisplayKit,JetZou/AsyncDisplayKit,bimawa/AsyncDisplayKit,marmelroy/AsyncDisplayKit,levi/AsyncDisplayKit,yufenglv/AsyncDisplayKit,rcancro/AsyncDisplayKit,Adlai-Holler/AsyncDisplayKit,lappp9/AsyncDisplayKit,garrettmoon/AsyncDisplayKit,hannahmbanana/AsyncDisplayKit,samhsiung/AsyncDisplayKit,Adlai-Holler/AsyncDisplayKit,rahul-malik/AsyncDisplayKit,maicki/AsyncDisplayKit,rahul-malik/AsyncDisplayKit,romyilano/AsyncDisplayKit,JetZou/AsyncDisplayKit,samhsiung/AsyncDisplayKit,Adlai-Holler/AsyncDisplayKit,JetZou/AsyncDisplayKit,tomizimobile/AsyncDisplayKit,hannahmbanana/AsyncDisplayKit,lappp9/AsyncDisplayKit,levi/AsyncDisplayKit,harryworld/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,flovouin/AsyncDisplayKit,maicki/AsyncDisplayKit,gazreese/AsyncDisplayKit,rcancro/AsyncDisplayKit,marmelroy/AsyncDisplayKit,tomizimobile/AsyncDisplayKit,flovouin/AsyncDisplayKit,rmls/AsyncDisplayKit,eanagel/AsyncDisplayKit,facebook/AsyncDisplayKit,gazreese/AsyncDisplayKit,romyilano/AsyncDisplayKit,maicki/AsyncDisplayKit,JetZou/AsyncDisplayKit,rcancro/AsyncDisplayKit,bimawa/AsyncDisplayKit,rcancro/AsyncDisplayKit,garrettmoon/AsyncDisplayKit,george-gw/AsyncDisplayKit,george-gw/AsyncDisplayKit,Xinchi/AsyncDisplayKit,flovouin/AsyncDisplayKit,lappp9/AsyncDisplayKit,rmls/AsyncDisplayKit,aaronschubert0/AsyncDisplayKit,aaronschubert0/AsyncDisplayKit,yufenglv/AsyncDisplayKit,Xinchi/AsyncDisplayKit,eanagel/AsyncDisplayKit,tomizimobile/AsyncDisplayKit,gazreese/AsyncDisplayKit,jellenbogen/AsyncDisplayKit,rahul-malik/AsyncDisplayKit,garrettmoon/AsyncDisplayKit,flovouin/AsyncDisplayKit,eanagel/AsyncDisplayKit,chrisdanford/AsyncDisplayKit,hannahmbanana/AsyncDisplayKit,hannahmbanana/AsyncDisplayKit,rahul-malik/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,harryworld/AsyncDisplayKit,romyilano/AsyncDisplayKit,aaronschubert0/AsyncDisplayKit,rmls/AsyncDisplayKit,facebook/AsyncDisplayKit,maicki/AsyncDisplayKit,bimawa/AsyncDisplayKit,Adlai-Holler/AsyncDisplayKit,chrisdanford/AsyncDisplayKit,yufenglv/AsyncDisplayKit,aaronschubert0/AsyncDisplayKit,hannahmbanana/AsyncDisplayKit,lappp9/AsyncDisplayKit,samhsiung/AsyncDisplayKit,jellenbogen/AsyncDisplayKit,rmls/AsyncDisplayKit,smyrgl/AsyncDisplayKit,rmls/AsyncDisplayKit,harryworld/AsyncDisplayKit,flovouin/AsyncDisplayKit,Adlai-Holler/AsyncDisplayKit,tomizimobile/AsyncDisplayKit,Xinchi/AsyncDisplayKit,JetZou/AsyncDisplayKit,rcancro/AsyncDisplayKit,jellenbogen/AsyncDisplayKit,harryworld/AsyncDisplayKit,jellenbogen/AsyncDisplayKit,facebook/AsyncDisplayKit,yufenglv/AsyncDisplayKit,romyilano/AsyncDisplayKit,aaronschubert0/AsyncDisplayKit,smyrgl/AsyncDisplayKit,facebook/AsyncDisplayKit,levi/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,jellenbogen/AsyncDisplayKit,smyrgl/AsyncDisplayKit,harryworld/AsyncDisplayKit,smyrgl/AsyncDisplayKit,gazreese/AsyncDisplayKit,chrisdanford/AsyncDisplayKit,Xinchi/AsyncDisplayKit,maicki/AsyncDisplayKit,marmelroy/AsyncDisplayKit,yufenglv/AsyncDisplayKit,george-gw/AsyncDisplayKit |
930a0e2110e31917203910b58a23bcd0d156cb5f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
script: ./node_modules/mocha/bin/mocha --invert --grep particulates test/integration
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
script: ./node_modules/mocha/bin/mocha --invert --grep particulates test/integration
notifications:
slack:
secure: BWKjmGdVcK55tR5wxLr1GFuWjyqlevL4dSzmHHE4/dyjN8Q6fKDDvdWHEvOAw7jphODVvSxHA3F4gYVM0LiS+CkYwucy9rrqYlTnW7t7L/smr9cpyt8IoOOE+hwvQ1JMAFUbsQOTSk1f8lNHRUUJYG/SKpiO4H4teDjRHsldFTI=
| Add Travis CI slack notifications. | Add Travis CI slack notifications.
| YAML | mit | apis-is/apis |
b386c01c8acc8de39e671418f56d7f35dc799420 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "2.7"
- "2.6"
install:
- sudo apt-get install zlib1g-dev
- sudo ln -s /usr/lib/i386-linux-gnu/libz.so /usr/lib
- pip install coveralls
script:
- coverage run --source=glue setup.py test
after_success:
coveralls
| language: python
python:
- "3.4"
- "3.3"
- "2.7"
- "2.6"
install:
- sudo apt-get install zlib1g-dev
- sudo ln -s /usr/lib/i386-linux-gnu/libz.so /usr/lib
- pip install coveralls
script:
- coverage run --source=glue setup.py test
after_success:
coveralls
| Enable automated testing on Python 3.4 | Enable automated testing on Python 3.4 | YAML | bsd-3-clause | jorgebastida/glue,jorgebastida/glue,beni55/glue,zhiqinyigu/glue,zhiqinyigu/glue,dext0r/glue,dext0r/glue,beni55/glue |
ab30d65b8e4bb5019d19784ad274fafd70a34591 | .travis.yml | .travis.yml |
sudo: false
language: ruby
env:
- ES_IMAGE=elasticsearch:1
- ES_IMAGE=plainpicture/elasticsearch:2.4.1_delete-by-query
- ES_IMAGE=elasticsearch:5.4
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:6.7.0
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:7.0.0
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:7.3.0
rvm:
- ruby-2.6.2
before_install:
- docker-compose up -d
- sleep 10
install:
- travis_retry bundle install
script: rspec
|
sudo: false
language: ruby
env:
- ES_IMAGE=elasticsearch:1
- ES_IMAGE=plainpicture/elasticsearch:2.4.1_delete-by-query
- ES_IMAGE=elasticsearch:5.4
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:6.7.0
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:7.0.0
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:7.4.0
rvm:
- ruby-2.6.2
before_install:
- docker-compose up -d
- sleep 10
install:
- travis_retry bundle install
script: rspec
| Add elasticsearch 7.4.0 to ci | Add elasticsearch 7.4.0 to ci
| YAML | mit | mrkamel/elastic_search |
3cc71db8f0cdf3661dfbcb3f7015ca21188423d6 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '8'
- '7'
- '6'
- '5'
- '4'
- '4.2'
env:
- MAIN_RUN=true
- MAIN_RUN=false && REACT_VERSION=0.14
before_install:
- npm install -g npm@2
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- if [[ $MAIN_RUN == false ]]; then npm install react-dom@^$REACT_VERSION react@^$REACT_VERSION; fi
| language: node_js
sudo: false
node_js:
- '8'
- '7'
- '6'
- '4'
- '4.2'
env:
- MAIN_RUN=true
- MAIN_RUN=false && REACT_VERSION=0.14
before_install:
- npm install -g npm@2
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- if [[ $MAIN_RUN == false ]]; then npm install react-dom@^$REACT_VERSION react@^$REACT_VERSION; fi
| Remove Node 5 from Travis matrix | Remove Node 5 from Travis matrix | YAML | mit | brigade/react-waypoint,brigade/react-waypoint |
eff20635432ec03a3748749b45c878d7f766b0b2 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without development
before_install: rm Gemfile.lock || true
rvm:
- 2.0.0
- 2.1.0
script: bundle exec rake test
env:
- PUPPET_VERSION="~> 3.6.0" STRICT_VARIABLES=yes
- PUPPET_VERSION="~> 3.8.3" STRICT_VARIABLES=yes
sudo: false
| ---
language: ruby
bundler_args: --without development
before_install: rm Gemfile.lock || true
rvm:
- 2.0.0
- 2.1.0
script: bundle exec rake test
env:
- PUPPET_VERSION="~> 3.6.0" STRICT_VARIABLES=yes
- PUPPET_VERSION="~> 3.8.3" STRICT_VARIABLES=yes
- PUPPET_VERSION=4.0
sudo: false
| Add puppet4 to the test matrix | Add puppet4 to the test matrix
| YAML | apache-2.0 | buzzdeee/puppet-bsd,xaque208/puppet-bsd,xaque208/puppet-bsd,buzzdeee/puppet-bsd |
9b6d9831614d47ea14825eb9b806d91f577b7dfe | .travis.yml | .travis.yml | language: go
go:
- "1.10.3"
sudo: required
services:
- docker
env:
- "PATH=/home/travis/gopath/bin:$PATH"
before_install:
- go get github.com/tcnksm/ghr
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
script:
- diff -u <(echo -n) <(gofmt -d -s $(find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./pb/*"))
- cd $TRAVIS_BUILD_DIR && go test -coverprofile=coverage.out ./...
- goveralls -coverprofile=coverage.out -service travis-ci
after_success:
# Build the snap.
- docker run -v $(pwd):/cwd snapcore/snapcraft sh -c 'cd /cwd && sudo apt update && snapcraft'
- ./deploy.sh
| language: go
go:
- "1.10.3"
sudo: required
services:
- docker
env:
- "PATH=/home/travis/gopath/bin:$PATH"
before_install:
- go get github.com/tcnksm/ghr
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
script:
- diff -u <(echo -n) <(gofmt -d -s $(find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./pb/*"))
- cd $TRAVIS_BUILD_DIR && go test -i && go test -coverprofile=coverage.out ./...
- goveralls -coverprofile=coverage.out -service travis-ci
after_success:
# Build the snap.
- docker run -v $(pwd):/cwd snapcore/snapcraft sh -c 'cd /cwd && sudo apt update && snapcraft'
- ./deploy.sh
| Install test dependencies before running tests to potentially save time. | BUILD: Install test dependencies before running tests to potentially save time.
| YAML | mit | gubatron/openbazaar-go,hoffmabc/openbazaar-go,OpenBazaar/openbazaar-go,hoffmabc/openbazaar-go,gubatron/openbazaar-go,OpenBazaar/openbazaar-go,hoffmabc/openbazaar-go,gubatron/openbazaar-go,OpenBazaar/openbazaar-go |
805c5d9f4c3bce6a7bd4ca8b3d4ad41853822310 | .travis.yml | .travis.yml | language: c
compiler: clang
os:
- linux
- osx
addons:
apt:
packages:
- valgrind
- libevent-dev
coverity_scan:
project:
name: "DavyLandman/l7knockknock"
description: "l7 knock knock hidden proxy"
notification_email: davy.landman@gmail.com
build_command: make
branch_pattern: coverity-scan
before_install:
- echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install libevent valgrind go; fi
install:
- go version
- go get github.com/gosuri/uiprogress
- go get github.com/cespare/xxhash
script:
- make clean test COVERAGE=1 DEBUG=1
after_success:
- bash <(curl -s https://codecov.io/bash) -x "llvm-cov gcov"
| language: c
compiler: clang
env:
- NOLIBEVENT=1
- USELIBEVENT=1
addons:
apt:
packages:
- valgrind
- libevent-dev
coverity_scan:
project:
name: "DavyLandman/l7knockknock"
description: "l7 knock knock hidden proxy"
notification_email: davy.landman@gmail.com
build_command: make
branch_pattern: coverity-scan
before_install:
- echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
install:
- go version
- go get github.com/gosuri/uiprogress
- go get github.com/cespare/xxhash
script:
- make clean test COVERAGE=1 DEBUG=1
after_success:
- bash <(curl -s https://codecov.io/bash) -x "llvm-cov gcov"
| Use build matrix to switch between libevent and splice code | Use build matrix to switch between libevent and splice code
| YAML | bsd-3-clause | DavyLandman/knock-ssh,DavyLandman/knock-ssh,DavyLandman/knock-ssh |
5c42ab9da9d21d2fcf4b802cf42f53102d0cec39 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
# Note that Chef 12.0 shipped for Ruby 2.0 for Windows and 2.1 for Linux/mac
- 2.3.0
before_install:
- gem update --system
- gem --version
# Use the latest bundler
- gem install bundler
bundler_args: --without=localdev
gemfile:
- gemfiles/chef_12.gemfile
- gemfiles/chef_12.7.gemfile
- gemfiles/chef_13.gemfile
- gemfiles/chef_14.gemfile
env:
- API_KEY=somefakeapikey APPLICATION_KEY=somefakeapplicationkey
| language: ruby
cache: bundler
sudo: false
rvm:
# Note that Chef 12.0 shipped for Ruby 2.0 for Windows and 2.1 for Linux/mac
- 2.1.0
# Chef 13.0 shipped with Ruby 2.4.1
- 2.4.1
before_install:
- gem update --system
- gem --version
# Use the latest bundler
- gem install bundler
bundler_args: --without=localdev
gemfile:
- gemfiles/chef_12.gemfile
- gemfiles/chef_12.7.gemfile
- gemfiles/chef_13.gemfile
- gemfiles/chef_14.gemfile
env:
- API_KEY=somefakeapikey APPLICATION_KEY=somefakeapplicationkey
matrix:
exclude:
# Chef 13.0 mini ruby 2.3.1
- rvm: 2.1.0
gemfile:
- gemfiles/chef_13.gemfile
- gemfiles/chef_14.gemfile
allow_failures:
| Use more recent versions of Ruby for more recent versions of Chef. | Use more recent versions of Ruby for more recent versions of Chef.
| YAML | mit | DataDog/chef-handler-datadog,DataDog/chef-handler-datadog |
b85f97ba3069c6239d496f0c39e8fac6efc8da1b | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm-nightly
install:
- composer install
script: phpunit -c phpunit.xml.dist
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: hhvm-nightly
install:
- composer install
script: phpunit -c phpunit.xml.dist --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover | Add coverage gathering to the unit tests. | Add coverage gathering to the unit tests. | YAML | mit | vanilla/garden-cli |
d2e96695f9bd87a0bec7c04baa274cb9fe491f7f | .travis.yml | .travis.yml | cache: bundler
rvm:
- 2.2
- 2.3.0
- 2.4.1
- 2.5
script: bundle exec rake
notifications:
email: false
sudo: false
git:
depth: 10
| cache: bundler
rvm:
- 2.2
- 2.3.0
- 2.4.1
- 2.5
- 2.6
script: bundle exec rake
notifications:
email: false
sudo: false
git:
depth: 10
| Add Ruby 2.6 to the build matrix | Add Ruby 2.6 to the build matrix
Ruby 2.6 has been released recently so add it to the build matrix.
| YAML | mit | brandur/json_schema |
aa17b0935f61f72694db9ec83a5b74aaf680cec6 | .travis.yml | .travis.yml | language: ruby
rvm:
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- ruby-head
| Support CRuby 1.9.3 and 2.0.0 only | Support CRuby 1.9.3 and 2.0.0 only
| YAML | mit | Shinpeim/ruby_php_session |
92d43dcefe87199e3c7b541b81565ad4164039dd | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- 0.10
before_script:
- npm install -g grunt-cli
notifications:
email: false
irc:
channels:
- "irc.freenode.org#gittip"
on_success: change
on_failure: always
template:
- "%{repository} (%{branch}:%{commit} by %{author}): %{message} (%{build_url})"
skip_join: true
| Make Travis behave similarly to how it behaves on the www.gittip.com repository. | Make Travis behave similarly to how it behaves on the www.gittip.com repository.
| YAML | mit | gratipay/grtp.co,gratipay/grtp.co,gratipay/grtp.co |
a78102cd51a238741b88c58b17310bfa651d560f | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.5.4
- 1.6.1
- tip
matrix:
allow_failures:
- go: tip
before_script:
- go get -u github.com/golang/lint/golint
script:
- go test -v --race ./...
after_script:
- test -z "$(gofmt -s -l -w . | tee /dev/stderr)"
- test -z "$(golint ./... | tee /dev/stderr)"
- go vet ./...
os:
- linux
- osx
notifications:
email: false
| sudo: false
language: go
go:
- 1.5.4
- 1.6.2
- tip
matrix:
allow_failures:
- go: tip
before_script:
- go get -u github.com/golang/lint/golint
script:
- go test -v --race ./...
after_script:
- test -z "$(gofmt -s -l -w . | tee /dev/stderr)"
- test -z "$(golint ./... | tee /dev/stderr)"
- go vet ./...
os:
- linux
- osx
notifications:
email: false
| Update Travis config to Go 1.6.2 | Update Travis config to Go 1.6.2
| YAML | mit | bep/debounce |
0eb7bf4ee09071400669b185e6ce25f19c27664b | .travis.yml | .travis.yml | language: java
script: "mvn clean verify"
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
- openjdk6
| language: java
script: "mvn clean verify"
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
| Remove OpenJDK 6 from Travis config. | Remove OpenJDK 6 from Travis config.
| YAML | apache-2.0 | gertjanal/metal,ccreeten/metal,parsingdata/metal |
ef495ecaefab890a52abf911c5be40b2d753b03d | .travis.yml | .travis.yml | language: erlang
install: true
before_script:
- wget https://s3.amazonaws.com/rebar3/rebar3
- chmod +x rebar3
env: PATH=$PATH:.:./bin
script: make travis
notifications:
disabled: true
otp_release:
- 18.2
- 18.0
- 17.5
- 17.1
- R16B03-1
- R15B03
- R14B04
| language: erlang
install: true
before_script:
- wget https://s3.amazonaws.com/rebar3/rebar3
- chmod +x rebar3
env: PATH=$PATH:.:./bin
script: make travis
notifications:
disabled: true
otp_release:
- 18.2
- 18.0
- 17.5
- 17.1
- R16B03-1
- R15B03
# - R14B04
| Disable R14B04 build for now | Disable R14B04 build for now [ci skip]
| YAML | apache-2.0 | lfe/lfe,lfe/lfe,jjhoo/lfe,rvirding/lfe,rvirding/lfe,jjhoo/lfe |
95d23b681e908da5baba176a1aaae8f3d352934d | .travis.yml | .travis.yml | sudo: true
language: python
install:
- sudo apt-get install swig
- pip install --upgrade pip setuptools
- pip install tox
script:
- tox
after_success:
- source .tox/${TOXENV}/bin/activate && pip install codecov && codecov --env TRAVIS_OS_NAME,TOXENV
notifications:
email: false
irc:
- "irc.freenode.net#fedora-apps"
on_success: change
on_failure: change
env:
global:
- PYTHONWARNINGS=always::DeprecationWarning
matrix:
include:
- python: "2.6"
env: TOXENV=py26
- python: "2.7"
env: TOXENV=py27
- python: "2.7"
env: TOXENV=m2crypto
- python: "3.4"
env: TOXENV=py34
- python: "3.5"
env: TOXENV=py35
- python: "3.6"
env: TOXENV=py36
- python: "2.7"
env: TOXENV=lint
allow_failures:
- python: "3.4"
- python: "3.5"
- python: "3.6"
| sudo: true
language: python
install:
- sudo apt-get install swig
- pip install --upgrade pip setuptools
- pip install tox
script:
- tox
after_success:
- source .tox/${TOXENV}/bin/activate && pip install codecov && codecov --env TRAVIS_OS_NAME,TOXENV
notifications:
email: false
irc:
- "irc.freenode.net#fedora-apps"
on_success: change
on_failure: change
env:
global:
- PYTHONWARNINGS=always::DeprecationWarning
matrix:
include:
- python: "2.6"
env: TOXENV=py26
- python: "2.7"
env: TOXENV=py27
- python: "2.7"
env: TOXENV=m2crypto
- python: "3.4"
env: TOXENV=py34
- python: "3.5"
env: TOXENV=py35
- python: "3.6"
env: TOXENV=py36
- python: "2.7"
env: TOXENV=lint
| Remove Python 3 tests from allowed failures in TravisCI | Remove Python 3 tests from allowed failures in TravisCI
Signed-off-by: Jeremy Cline <b3f594e10a9edcf5413cf1190121d45078c62290@jcline.org>
| YAML | lgpl-2.1 | fedora-infra/fedmsg,chaiku/fedmsg,chaiku/fedmsg,chaiku/fedmsg,fedora-infra/fedmsg,fedora-infra/fedmsg |
dc9ee6e82fba71c27dd3dfeda788917c0b3a696d | .travis.yml | .travis.yml | language: php
php:
- 5.4
before_script:
- bin/travis_build_before
script:
- phpunit -c app
- php -d memory_limit=2048M bin/behat @MyProjectWebsiteBundle --verbose
notifications:
email:
- travis@kunstmaan.be
| language: php
cache:
apt: true
bundler: true
directories:
- vendor
php:
- 5.4
- 5.5
before_script:
- bin/travis_build_before
script:
- phpunit -c app
- php -d memory_limit=2048M bin/behat @MyProjectWebsiteBundle --verbose
notifications:
email:
- travis@kunstmaan.be
| Add caching and PHP 5.5 | Add caching and PHP 5.5
| YAML | mit | jockri/KunstmaanBundlesStandardEdition,roderik/KunstmaanBundlesStandardEdition,zizooboats/KunstmaanBundlesStandardEdition,zizooboats/KunstmaanBundlesStandardEdition,Kunstmaan/KunstmaanBundlesStandardEdition,krispypen/KunstmaanBundlesStandardEdition,wimvds/KunstmaanBundlesStandardEdition,roderik/KunstmaanBundlesStandardEdition,jockri/KunstmaanBundlesStandardEdition,krispypen/KunstmaanBundlesStandardEdition,markocafuta/KunstmaanBundlesStandardEdition,Kunstmaan/KunstmaanBundlesStandardEdition,roderik/KunstmaanBundlesStandardEdition,markocafuta/KunstmaanBundlesStandardEdition,zizooboats/KunstmaanBundlesStandardEdition,zizooboats/KunstmaanBundlesStandardEdition,markocafuta/KunstmaanBundlesStandardEdition,zizooboats/KunstmaanBundlesStandardEdition,markocafuta/KunstmaanBundlesStandardEdition,Kunstmaan/KunstmaanBundlesStandardEdition,krispypen/KunstmaanBundlesStandardEdition,wimvds/KunstmaanBundlesStandardEdition,markocafuta/KunstmaanBundlesStandardEdition |
d0f5d5c6f5195432324a2f4d7a8a5747876f0c71 | .travis.yml | .travis.yml | os:
- linux
language: java
jdk:
- oraclejdk8
- oraclejdk11
# whitelist
branches:
only:
- master
after_success:
- mvn jacoco:report coveralls:report -pl jctools-core
| os:
- linux
language: java
jdk:
- openjdk8
- oraclejdk11
- oraclejdk17
# whitelist
branches:
only:
- master
after_success:
- mvn jacoco:report coveralls:report -pl jctools-core
| Increase test matrix to cover 17 | Increase test matrix to cover 17
| YAML | apache-2.0 | JCTools/JCTools |
1747ee57b59802833cf9ec6aefdfc422f339a0b5 | .travis.yml | .travis.yml | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
env:
- EXECUTE_CS_CHECK=true
- php: 5.6
env:
- EXECUTE_DEPLOYMENT=true
- php: 7
- php: hhvm
allow_failures:
- php: hhvm
before_install:
- openssl aes-256-cbc -K $encrypted_bdfd67bd0d47_key -iv $encrypted_bdfd67bd0d47_iv -in .travis/secrets.tar.enc -out .travis/secrets.tar -d
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then phpenv config-rm xdebug.ini ||
return 0 ; fi
- composer self-update
install:
- travis_retry composer install --no-interaction
- composer info -i
script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer test-coverage ; fi
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then composer test ; fi
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then composer cs ; fi
after_script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer coveralls ; fi
after_success:
- if [[ $EXECUTE_DEPLOYMENT == 'true' ]]; then ./bin/deploy.sh ; fi
notifications:
email: true
| sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
env:
- EXECUTE_CS_CHECK=true
- php: 5.6
env:
- EXECUTE_DEPLOYMENT=true
- php: 7
- php: hhvm
allow_failures:
- php: hhvm
before_install:
- openssl aes-256-cbc -K $encrypted_bdfd67bd0d47_key -iv $encrypted_bdfd67bd0d47_iv -in .travis/secrets.tar.enc -out .travis/secrets.tar -d
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then phpenv config-rm xdebug.ini ||
return 0 ; fi
- composer self-update
install:
- travis_retry composer install --no-interaction
- composer info -i
script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer test-coverage ; fi
- if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then composer test ; fi
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then composer cs ; fi
after_script:
- if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then composer coveralls ; fi
after_success:
- if [[ $EXECUTE_DEPLOYMENT == 'true' ]]; then composer update --no-dev ; fi
- if [[ $EXECUTE_DEPLOYMENT == 'true' ]]; then ./bin/deploy.sh ; fi
notifications:
email: true
| Remove dev dependencies before building phar | Remove dev dependencies before building phar
| YAML | bsd-3-clause | zendframework/zend-component-installer,weierophinney/component-installer,weierophinney/component-installer |
bf3d042da6525ec030af5c2c9d220b219c39e5b1 | .travis.yml | .travis.yml | language: go
go:
- 1.12.x
- 1.13.x
- tip
os:
- linux
- osx
- windows
arch:
- amd64
- arm64
matrix:
fast_finish: true
allow_failures:
- go: tip
exclude:
- os: windows
go: tip
- os: windows
arch: arm64
- os: osx
arch: arm64
install:
- go get -d -v -t ./...
script:
- go test -v -race ./...
| language: go
go:
- 1.12.x
- 1.13.x
- master
os:
- linux
- osx
- windows
arch:
- amd64
- arm64
matrix:
fast_finish: true
allow_failures:
- go: master
exclude:
- os: windows
go: master
- os: windows
arch: arm64
- os: osx
arch: arm64
install:
- go get -d -v -t ./...
script:
- go test -v -race ./...
| Use master instead of tip | Use master instead of tip
| YAML | mit | moorereason/webhook,adnanh/webhook |
aaee734a215e9656b31aee5cf24fbfc86dd9d157 | .travis.yml | .travis.yml | language: php
php:
- 7.3
services:
- mysql
addons:
chrome: stable
before_script:
- mysql -e 'create database budget_testing;'
- cp .env.travis .env
- composer install --no-interaction
- php artisan key:generate
- php artisan migrate --database=testing
- php artisan dusk:chrome-driver
jobs:
include:
- stage: test
name: "PHPUnit"
script: vendor/bin/phpunit --coverage-clover=coverage.xml
after_success: bash <(curl -s https://codecov.io/bash)
- stage: test
name: "Dusk"
script: google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost & php artisan serve & php artisan dusk
- stage: test
name: "PHPCS"
script: vendor/bin/phpcs
| language: php
php:
- 7.3
services:
- mysql
addons:
chrome: stable
before_script:
- phpenv config-rm xdebug.ini
- pecl install pcov
- mysql -e 'create database budget_testing;'
- cp .env.travis .env
- composer install --no-interaction
- php artisan key:generate
- php artisan migrate --database=testing
- php artisan dusk:chrome-driver
jobs:
include:
- stage: test
name: "PHPUnit"
script: vendor/bin/phpunit --coverage-clover=coverage.xml
after_success: bash <(curl -s https://codecov.io/bash)
- stage: test
name: "Dusk"
script: google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost & php artisan serve & php artisan dusk
- stage: test
name: "PHPCS"
script: vendor/bin/phpcs
| Use PCOV instead of Xdebug | Use PCOV instead of Xdebug
| YAML | mit | pix3ly/budget,pix3ly/budget |
9e00b48f8d0802627af34aa27c43685ac27fd174 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- rbx
branches:
only:
- master
- notifications
env:
- GUARD_SLEEP=1
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard"
| rvm:
- 1.8.7
- 1.9.2
- ree
- jruby
- rbx
branches:
only:
- master
- dev
- notifications
env:
- GUARD_SLEEP=1
notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard"
| Add new development branch to Travis. | Add new development branch to Travis.
| YAML | mit | ginkel/guard,baberthal/guard,sideci-sample/sideci-sample-guard,garettarrowood/guard,guard/guard,yujinakayama/guard,100star/guard,sdgdsffdsfff/guard,pjump/guard |
76d4f6662bf4c49f247cb126864906333158d09a | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.3.1
addons:
apt:
packages:
- vim-gtk
- unrar
- p7zip
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "vim --version"
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.3.1
addons:
apt:
packages:
- vim-gtk
- unrar
- p7zip-full
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "vim --version"
| Use the right p7zip package | Use the right p7zip package
| YAML | mit | AndrewRadev/archivitor.vim,AndrewRadev/edit_archive.vim |
9eafa9841ecb50f3bb681c8397f8b458bac0bc53 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
bundler_args: --without tools
script:
- bundle exec rake spec
rvm:
- 2.1
- 2.2
- 2.3.0
- rbx
- jruby-9000
- ruby-head
- jruby-head
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| language: ruby
sudo: false
cache: bundler
bundler_args: --without tools
script:
- bundle exec rake spec
rvm:
- 2.1
- 2.2
- 2.3.0
- rbx
- jruby-9000
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
allow_failures:
- rvm: rbx
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| Remove -head ruby versions and allow rbx failures on Travis | Remove -head ruby versions and allow rbx failures on Travis | YAML | mit | dry-rb/dry-web-roda,dry-rb/dry-web-roda,dry-rb/dry-web-roda |
57fe095af9032497dc22678520a22c39655afef7 | .travis.yml | .travis.yml | language: python
sudo: false
os:
- linux
- osx
python:
- "2.7"
- "3.4"
- "3.5"
# - "pypy"
- "pypy3"
install:
- "pip install -r requirements.txt"
- "pip install -r tests/requirements.txt"
- "python setup.py install"
script:
- "py.test tests/unit/ --cov pad --cov scripts --cov-report term-missing"
- "py.test tests/functional/"
after_success:
- coveralls
| language: python
sudo: false
os:
- linux
# - osx # Travis-CI doesn't work well with OSX + python yet
python:
- "2.7"
- "3.4"
- "3.5"
# - "pypy"
- "pypy3"
install:
- "pip install -r requirements.txt"
- "pip install -r tests/requirements.txt"
- "python setup.py install"
script:
- "py.test tests/unit/ --cov pad --cov scripts --cov-report term-missing"
- "py.test tests/functional/"
after_success:
- coveralls
| Disable running on OSX for now. | Disable running on OSX for now. | YAML | apache-2.0 | SpamExperts/OrangeAssassin |
7f4e90c4c2e0e57807106be4e514350a92374836 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- python setup.py develop
- pip install -r test-requirements.txt
- npm install karma karma-coverage karma-jasmine@0.1.5 karma-firefox-launcher
- gem install rake
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- opal test
notifications:
slack: ohcuk:6spaME3CB7f2PGrMAcklYWqp
| language: python
python:
- "2.7"
install:
- python setup.py develop
- pip install -r test-requirements.txt
- npm install karma karma-coverage karma-jasmine@0.1.5 karma-firefox-launcher
- npm install https://github.com/davidmiller/karma-jasmine/tarball/opal
- gem install rake
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- opal test
notifications:
slack: ohcuk:6spaME3CB7f2PGrMAcklYWqp
| Install karma runner from our fork for now | Install karma runner from our fork for now
| YAML | agpl-3.0 | khchine5/opal,khchine5/opal,khchine5/opal |
d328bd5b0d6c9a916d8e623b2b5553c57057013f | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.0
- 2.5.0
before_install: gem install bundler -v 1.10.6
| language: ruby
rvm:
- 2.3.0
- 2.5.0
before_install: gem install bundler -v 1.16.1
| Update bundler version defined in TravisCI config | Update bundler version defined in TravisCI config
| YAML | mit | buren/honey_format,buren/honey_format |
975f690a37afddb05453b2a47ea8e91ef4f1e540 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "pypy"
script: nosetests
| language: python
python:
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "pypy"
script: pytest
| Change test driver to pytest. | Change test driver to pytest.
| YAML | bsd-3-clause | agoragames/chai |
6abbb45ee9ddf57b456af98abd5e26ad52ab7ecd | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
script:
- git clone https://github.com/jminusminus/jmmtravis.git ~/.jmmtravis
- ~/.jmmtravis/stage
os:
- linux
- osx
| language: java
jdk: oraclejdk8
script:
- git clone https://github.com/jminusminus/jmmtravis.git ~/.jmmtravis
- ~/.jmmtravis/stage
os:
- linux
| Test to run Java8 on OSX | Test to run Java8 on OSX
| YAML | bsd-3-clause | jminusminus/markdown,jminusminus/markdown |
037fceb40196f17e7c1102a9357376a6daa9bddd | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install: npm i npm@latest -g
script: npm run travis
| language: node_js
node_js:
- "0.10"
- "4"
before_install: npm i npm@latest -g
script: npm run travis
| Add Node.js 4 to CI | Add Node.js 4 to CI
| YAML | mit | uber/thriftrw-node,uber/thriftrw-node,thriftrw/thriftrw-node,thriftrw/thriftrw-node |
c979581849886abcad95b99d3e40863887c7f572 | .travis.yml | .travis.yml | language: swift
osx_image: xcode8.3
branches:
only:
- master
env:
global:
- SDK="iphonesimulator"
matrix:
- DESTINATION="OS=10.3,name=iPhone 7" MODE="test" CONFIGURATION="Debug" SCHEME="Tests"
- DESTINATION="OS=10.3,name=iPhone 7 Plus" MODE="build" CONFIGURATION="Release" SCHEME="Resource"
- DESTINATION="OS=10.3,name=iPad Pro (9.7 inch)" MODE="test" CONFIGURATION="Debug" SCHEME="Tests"
- DESTINATION="OS=10.3,name=iPad Pro (12.9 inch)" MODE="build" CONFIGURATION="Release" SCHEME="Resource"
script:
- set -o pipefail
- xcodebuild "$MODE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration "$CONFIGURATION" | xcpretty
| language: swift
osx_image: xcode8.3
branches:
only:
- master
env:
global:
- SDK="iphonesimulator"
matrix:
- DESTINATION="OS=10.3,name=iPhone 7" MODE="test" CONFIGURATION="Debug" SCHEME="Tests"
- DESTINATION="OS=10.3,name=iPhone 7 Plus" MODE="build" CONFIGURATION="Release" SCHEME="Resource"
- DESTINATION="OS=10.3,name=iPad Pro (9.7-inch)" MODE="test" CONFIGURATION="Debug" SCHEME="Tests"
- DESTINATION="OS=10.3,name=iPad Pro (12.9-inch)" MODE="build" CONFIGURATION="Release" SCHEME="Resource"
script:
- set -o pipefail
- xcodebuild "$MODE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration "$CONFIGURATION" | xcpretty
| Fix invalid Travis target name | Fix invalid Travis target name
| YAML | mit | TintPoint/Resource,TintPoint/Resource |
e2f11a39e347b36d3160c5bfff838d6cfd298a83 | .travis.yml | .travis.yml | language: Java
jdk:
- oraclejdk8
script: mvn verify -DskipTests
| language: Java
jdk:
- oraclejdk8
install: mvn -Pbootstrap verify
script: mvn verify -DskipTests
| Use bootstrap profile for Travis install | Use bootstrap profile for Travis install
| YAML | apache-2.0 | jfallows/nuklei,jfallows/nuklei,jessefugitt/nuklei,cmebarrow/nuklei |
96895d1a45fda932c60295d251a2960914c89fd7 | .travis.yml | .travis.yml | language: go
go:
- 1.3.3
- 1.4.2
- 1.5.1
- release
- tip
script:
- go test -v ./...
| language: go
go:
- 1.4.2
- 1.5.1
script:
- go test -v ./...
| Remove some versions of go from CI | Remove some versions of go from CI | YAML | mit | juanchel/rhymer |
b08d6da8185b2f9b48727bb2842143142b68de17 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
sudo: false
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: java
jdk:
- openjdk8
sudo: false
after_success:
- bash <(curl -s https://codecov.io/bash)
| Move Travis CI to OpenJDK (fingers crossed) | Move Travis CI to OpenJDK (fingers crossed)
| YAML | mit | voostindie/sprox-json |
19dfcc30a82356ffdff6ccb95b821256210f2675 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
include:
- php: 5.5
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer self-update
- travis_retry composer install ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- composer test
#after_script:
# - if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
| language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
include:
- php: 5.5
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- composer test
#after_script:
# - if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
| Switch back to composer update | Switch back to composer update
| YAML | mit | hochstrasserio/wirecard-bundle |
51476952e7ef6e637b8e4f8131209c720ec3e77b | .travis.yml | .travis.yml | language: python
install:
- "wget -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -"
- "sudo wget -O /etc/apt/sources.list.d/mopidy.list http://apt.mopidy.com/mopidy.list"
- "sudo apt-get update || true"
- "sudo apt-get install mopidy"
- "pip install coveralls flake8 mopidy==dev python-dateutil"
before_script:
- "rm $VIRTUAL_ENV/lib/python$TRAVIS_PYTHON_VERSION/no-global-site-packages.txt"
script:
- "flake8 $(find . -iname '*.py')"
- "nosetests --with-coverage --cover-package=mopidy_radio_de"
after_success:
- "coveralls"
notifications:
email:
recipients:
- ronald.hecht@gmx.de
on_success: change
on_failure: change
use_notice: true
skip_join: true
| language: python
install:
- "wget -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -"
- "sudo wget -O /etc/apt/sources.list.d/mopidy.list http://apt.mopidy.com/mopidy.list"
- "sudo apt-get update || true"
- "sudo apt-get install mopidy"
- "pip install --allow-unverified=mopidy coveralls flake8 mopidy==dev python-dateutil"
before_script:
- "rm $VIRTUAL_ENV/lib/python$TRAVIS_PYTHON_VERSION/no-global-site-packages.txt"
script:
- "flake8 $(find . -iname '*.py')"
- "nosetests --with-coverage --cover-package=mopidy_radio_de"
after_success:
- "coveralls"
notifications:
email:
recipients:
- ronald.hecht@gmx.de
on_success: change
on_failure: change
use_notice: true
skip_join: true
| Fix Travis CI build error caused by an updated pip on their servers. | Fix Travis CI build error caused by an updated pip on their servers.
| YAML | apache-2.0 | paulhandy/mopidy-radio-de,kurtjcu/mopidy-radio-de,hechtus/mopidy-radio-de |
d7d329d44cd9e466fcde7c4b177f00e9995c0501 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
env:
- CXX=g++-4.8
install:
- npm install -g npm@latest
- npm cache clean
- npm install --dev
- npm install -g mocha
services:
- mongodb
- redis-server
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| language: node_js
node_js:
- "6"
env:
- CXX=g++-4.8
install:
- npm install -g npm@latest
- npm cache clean
- npm install --dev
- npm install -g mocha
services:
- mongodb
- redis-server
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| Change CI node version to 6 | Change CI node version to 6
| YAML | mit | micromaomao/maowtm.org,micromaomao/maowtm.org |
3c65642be64bb3c9be90b1da38f07b974713d24a | .fixtures.yml | .fixtures.yml | ---
fixtures:
symlinks:
sensu_handlers: "#{source_dir}"
repositories:
monitoring_check: "https://github.com/Yelp/puppet-monitoring_check"
sensu: "https://github.com/sensu/sensu-puppet"
stdlib: "https://github.com/puppetlabs/puppetlabs-stdlib"
apt: "https://github.com/puppetlabs/puppetlabs-apt"
| ---
fixtures:
symlinks:
sensu_handlers: "#{source_dir}"
repositories:
monitoring_check: "https://github.com/Yelp/puppet-monitoring_check"
sensu: "https://github.com/sensu/sensu-puppet"
stdlib: "https://github.com/puppetlabs/puppetlabs-stdlib"
apt:
repo: "https://github.com/puppetlabs/puppetlabs-apt"
ref: "1.8.0"
| Fix the tests by fixing this dependency version | Fix the tests by fixing this dependency version
| YAML | apache-2.0 | somic/sensu_handlers |
cc2b0a97dce08d5e0dba60f64d093d28332992f3 | tasks/Debian.yml | tasks/Debian.yml | ---
# tasks file for python-requirements(On Debian family)
- name: Install requirement for Ansible apt module
# Playbook using this role should remove cache like:
# rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/cache/apt/archives/*
#
# The tasks of this role may be failed if Python executable isn't on
# /usr/bin/python. (Even if use ansible_python_interpreter)
# At least, I found that it is failed on container python:2.
shell: apt-get update -qq && apt-get install -y python-apt --no-install-recommends -q
become: yes
register: result
changed_when: "'0 upgraded, 0 newly installed' not in result.stdout"
- name: Install requirements for python-requirements from apt
apt: name={{ item }} update_cache=yes cache_valid_time=3600 install_recommends=no
with_items:
- build-essential
- python-dev
become: yes
- name: Install latest OpenSSL
apt: name=openssl state=latest update_cache=yes cache_valid_time=3600 install_recommends=no
become: yes
| ---
# tasks file for python-requirements(On Debian family)
- name: Install requirement for Ansible apt module
# Playbook using this role should remove cache like:
# rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/cache/apt/archives/*
#
# The tasks of this role may be failed if Python executable isn't on
# /usr/bin/python. (Even if use ansible_python_interpreter)
# At least, I found that it is failed on container python:2.
shell: apt-get update -qq && apt-get install -y python-apt --no-install-recommends -q
become: yes
register: result
changed_when: "'0 upgraded, 0 newly installed' not in result.stdout"
- name: Install requirements for python-requirements from apt
apt: name={{ item }} update_cache=yes cache_valid_time=3600 install_recommends=no
with_items:
- build-essential
- python-dev
- unzip
become: yes
- name: Install latest OpenSSL
apt: name=openssl state=latest update_cache=yes cache_valid_time=3600 install_recommends=no
become: yes
| Install unzip as a basic package. | Install unzip as a basic package.
| YAML | mit | FGtatsuro/ansible-python-requirements |
ea164d304b9c1af8f136ee6359be694f1801183d | tests/docker.yml | tests/docker.yml | ---
# This file configures the integration test suite with RSpec
# with Docker containers.
# Do NOT remove keys here. This might lead to unhandled
# exceptions.
# Only {{ ssh_port }} variable is evaluated. Other variables
# will not work.
#
# If you don't change anything, everything SHOULD work :)
env_name: ansiblejavatest
ssh_user: root
ssh_keys: tests/silpion-insecure-private-key
ssh_host: localhost
docker_img: silpion/ubuntu-upstart-sshkey
docker_tag: 0.0.1
docker_run: "--detach --name ansiblejavatest --hostname ansiblejavatest --net=bridge --publish {{ ssh_port }}:22"
docker_cmd: "/sbin/init"
| ---
# This file configures the integration test suite with RSpec
# with Docker containers.
# Do NOT remove keys here. This might lead to unhandled
# exceptions.
# Only {{ ssh_port }} variable is evaluated. Other variables
# will not work.
#
# If you don't change anything, everything SHOULD work :)
env_name: ansiblejavatest
ssh_user: root
ssh_keys: tests/silpion-insecure-private-key
ssh_host: localhost
docker_img: silpion/ubuntu-upstart-sshkey
docker_tag: 1.0.0
docker_run: "--detach --name ansiblejavatest --hostname ansiblejavatest --net=bridge --publish {{ ssh_port }}:22"
docker_cmd: "/sbin/init"
| Update ubuntu-upstart-sshkey container to version 1.0.0 | Update ubuntu-upstart-sshkey container to version 1.0.0
| YAML | apache-2.0 | silpion/ansible-java,hakamadare/ansible-java,hakamadare/ansible-java,ludovicc/ansible-java,ludovicc/ansible-java,hakamadare/ansible-java,silpion/ansible-java,ludovicc/ansible-java,silpion/ansible-java |
a6d574b82c59195bca5afdfc04a0e78a7843e413 | .istanbul.yml | .istanbul.yml | verbose: false
instrumentation:
root: 'lib'
extensions:
- .js
default-excludes: true
excludes: ['tests/helpers']
include-all-sources: true
| verbose: false
instrumentation:
root: 'lib'
extensions:
- .js
default-excludes: true
excludes: []
include-all-sources: true
| Remove unnecessary exclude from coverage | Remove unnecessary exclude from coverage
| YAML | mit | qimingfang/react-fastclick,JakeSidSmith/react-fastclick |
f2225f18294e9a9001f78b67270a6561c3c3e8cd | tasks/RedHat.yaml | tasks/RedHat.yaml | ---
- name: create epel.repo
template: src=utils/templates/epel-es.repo dest=/etc/yum.repos.d/epel.repo
- name: Yum install SGE in REL system
yum: name=gridengine,gridengine-execd,openssh-clients,gridengine-qmaster,gridengine-qmon
- name: Set RedHat facts
set_fact:
SGE_ROOT: /usr/share/gridengine
EXEC_SERVICE: sge_execd
- name: Add SGE variables to /etc/sudoers
lineinfile:
dest: /etc/sudoers
line: 'Defaults env_keep += "SGE_CELL SGE_ARCH SGE_EXECD_PORT SGE_QMASTER_PORT SGE_ROOT"'
state: present
| ---
- name: create epel.repo
template: src=utils/templates/epel-es.repo dest=/etc/yum.repos.d/epel.repo
- name: Yum install SGE in REL system
yum: name=gridengine,gridengine-execd,openssh-clients,gridengine-qmaster,gridengine-qmon
when: {{sge_type_of_node}} == 'front'
- name: Yum install SGE in REL system
yum: name=gridengine-execd,openssh-clients
when: {{sge_type_of_node}} == 'wn'
- name: Set RedHat facts
set_fact:
SGE_ROOT: /usr/share/gridengine
EXEC_SERVICE: sge_execd
- name: Add SGE variables to /etc/sudoers
lineinfile:
dest: /etc/sudoers
line: 'Defaults env_keep += "SGE_CELL SGE_ARCH SGE_EXECD_PORT SGE_QMASTER_PORT SGE_ROOT"'
state: present
| Install only required packages in WNs | Install only required packages in WNs | YAML | apache-2.0 | grycap/ansible-role-sge |
9ea28ec5291647aa4b5d0f0e4464af08fcba0e7f | tasks/openvpn.yml | tasks/openvpn.yml | ---
- name: Include OS-specific variables.
include_vars: "{{item}}"
with_first_found:
- "{{ ansible_os_family }}-{{ ansible_lsb.codename }}.yml"
- "{{ ansible_os_family }}.yml"
- "Common-default.yml"
- include: install.deb.yml
when: ansible_os_family == 'Debian'
- include: install.yum.yml
when: ansible_os_family == 'RedHat'
- include: configure.yml
- include: setup-bridge.yml
- name: Ensure OpenVPN is started
service: name={{openvpn_service}} state=started enabled=yes
| ---
- name: Include OS-specific variables.
include_vars: "{{item}}"
with_first_found:
- files:
- "{{ ansible_distribution }}.{{ ansible_lsb.codename }}.yml"
- "{{ ansible_distribution }}.yml"
- "{{ ansible_os_family }}.yml"
- "Common-default.yml"
paths: vars
- include: install.deb.yml
when: ansible_os_family == 'Debian'
- include: install.yum.yml
when: ansible_os_family == 'RedHat'
- include: configure.yml
- include: setup-bridge.yml
- name: Ensure OpenVPN is started
service: name={{openvpn_service}} state=started enabled=yes
| Fix OS-specific vars files naming | Fix OS-specific vars files naming
`ansible_os_family` is Debian even in Ubuntu. It's necessary to use
`ansible_distribution` instead.
The task was also including the files with a dash separator, while it is
actually a dot.
| YAML | mit | teadur/Stouts.openvpn,Cobliteam/Stouts.openvpn,Stouts/Stouts.openvpn,Stouts/Stouts.openvpn |
2f9b84b4ce8ec362778ad3579290ec073227cd20 | config_common.yaml | config_common.yaml | # Options:
# clean: Remove dead symbolic links that point to the dotfiles directory. Unless
# the force option is set to true.
# relink: remove existing target but only if it's a symbolic link
# force: remove existing target even if it's an actual file or directory
- defaults:
link:
relink: true
- clean: ['~']
- link:
~/.zshrc: zshrc
~/.bashrc: bashrc
~/.hyper.js: hyper.js
~/.vimrc: vim/vimrc
~/.config/nvim/init.vim:
create: true
path: vim/vimrc
~/.tmux.conf: tmux.conf
~/.gitconfig: gitconfig
~/.ctags: ctags
~/.colordiffrc: colordiffrc
~/.tldrrc: tldrrc
~/.pandoc:
create: true
path: pandoc
~/.condarc: condarc
~/.dotfiles: ''
~/.jupyter/jupyter_notebook_config.py:
create: true
path: jupyter_notebook_config.py
- shell:
- [curl -L git.io/antigen > antigen.zsh, Installing Antigen]
- ["curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim", Installing vim-plug]
| # Options:
# clean: Remove dead symbolic links that point to the dotfiles directory. Unless
# the force option is set to true.
# relink: remove existing target but only if it's a symbolic link
# force: remove existing target even if it's an actual file or directory
- defaults:
link:
relink: true
- clean: ['~']
- link:
~/.zshrc: zshrc
~/.bashrc: bashrc
~/.hyper.js: hyper.js
~/.vimrc: vim/vimrc
~/.config/nvim/init.vim:
create: true
path: vim/vimrc
~/.tmux.conf: tmux.conf
~/.gitconfig: gitconfig
~/.ctags: ctags
~/.colordiffrc: colordiffrc
~/.tldrrc: tldrrc
~/.pandoc:
create: true
path: pandoc
~/.condarc: condarc
~/.dotfiles: ''
~/.jupyter/jupyter_notebook_config.py:
create: true
path: jupyter_notebook_config.py
- shell:
- [curl -L git.io/antigen > antigen.zsh, Installing Antigen]
- ["curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim", Installing vim-plug]
- ["curl -fLo ~/.local/share/nvim/site/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim", Installing vim-plug for NeoVim]
| Install VimPlug for NeoVim too | Install VimPlug for NeoVim too
| YAML | mit | mi-lad/dotfiles,mi-lad/dotfiles,mi-lad/dotfiles |
fdc621cd68d36f5ddda980e0549a0be561490642 | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
relative_permalinks: true
# Setup
title: oonlab
tagline: 'Lab of ariestiyansyah'
description: 'oonlab is crafted with <3 by ariestiyansyah, life is not about code.'
url: http://oonlab.com
baseurl: /
paginate: 7
locale: en_us
disqus: oonlab
# About/contact
author:
name: Rizky Ariestiyansyah
url: https://twitter.com/ariestiyansyah
email: ariestiyansyah.rizky@gmail.com
gwebmaster: t_k6KYgKg1o-jSCcUI-6B4e_MGY7Lv9p7oWkF1JleQk
# Custom vars
version: 2.0
# Social Media
github: http://github.com/ariestiyansyah
twitter: http://twitter.com/ariestiyansyah
twitter_username: ariestiyansyah
fb_admins: http://facebook.com/Liyan.Hdr
fb_appid: 984598984935671
sdk: oonlab
avatar: images/logo.png
# Gems on github Pages
gems:
- jekyll-sitemap
- jekyll-feed
| # Dependencies
markdown: redcarpet
highlighter: pygments
# Permalinks
#
# Use of `relative_permalinks` ensures post links from the index work properly.
permalink: pretty
# Setup
title: oonlab
tagline: 'Lab of ariestiyansyah'
description: 'oonlab is crafted with <3 by ariestiyansyah, life is not about code.'
url: http://oonlab.com
baseurl: /
paginate: 7
locale: en_us
disqus: oonlab
# About/contact
author:
name: Rizky Ariestiyansyah
url: https://twitter.com/ariestiyansyah
email: ariestiyansyah.rizky@gmail.com
gwebmaster: t_k6KYgKg1o-jSCcUI-6B4e_MGY7Lv9p7oWkF1JleQk
# Custom vars
version: 2.0
# Social Media
github: http://github.com/ariestiyansyah
twitter: http://twitter.com/ariestiyansyah
twitter_username: ariestiyansyah
fb_admins: http://facebook.com/Liyan.Hdr
fb_appid: 984598984935671
sdk: oonlab
avatar: images/logo.png
# Gems on github Pages
gems:
- jekyll-sitemap
- jekyll-feed
| Remove relative_permalinks for new @github pages | Remove relative_permalinks for new @github pages
| YAML | mit | ariestiyansyah/ariestiyansyah.github.io,ariestiyansyah/ariestiyansyah.github.io |
4a7be25b089e54b347d7e68cbfb3e0b6a4206d54 | _config.yml | _config.yml | name: Esteban Herrera
url: http://eherrera.net
description: Personal site of Esteban Herrera
permalink: /:title/
| name: Esteban Herrera
url: https://eherrera.net
description: Personal site of Esteban Herrera
permalink: /:title/
| Change site url to https | Change site url to https
| YAML | mit | eh3rrera/eh3rrera.github.io |
4137fc53e4ab248e4c46cf3de445c7802d338a85 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Emmanuel Corrales
email: contact@emmanuelcorrales.com
description: "Software Engineer"
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://blog.emmanuelcorrales.com" # the base hostname & protocol for your site
twitter_username: emcorrales22
github_username: EmmanuelCorrales
google_analytics: UA-80537045-2
disqus:
shortname: emmanuel-corrales
# Build settings
markdown: kramdown
theme: jekyll-theme-hyde
permalink: /posts/:title
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Emmanuel Corrales
email: contact@emmanuelcorrales.com
description: "Software Engineer"
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://blog.emmanuelcorrales.com" # the base hostname & protocol for your site
twitter_username: emcorrales22
github_username: EmmanuelCorrales
google_analytics: UA-80537045-2
disqus:
shortname: emmanuel-corrales
# Build settings
markdown: kramdown
theme: jekyll-theme-hyde
permalink: /blog/:title
| Change permalink from 'post' to 'blog'. | Change permalink from 'post' to 'blog'.
| YAML | mit | EmmanuelCorrales/EmmanuelCorrales.github.io,EmmanuelCorrales/blog.emmanuelcorrales.com,EmmanuelCorrales/blog.emmanuelcorrales.com |
b92a36b3e0df62f35e7eec191e4d16b3bb02de03 | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Stefan Hoth
email: no-reply@example.org
description: > # this means to ignore newlines until "baseurl:"
An experienced developer gone servant leader whocares deeply about people, processes & values.
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://stefanhoth.com" # the base hostname & protocol for your site
# Social media profiles - feel free to add more here
twitter_username: stefanhoth
github_username: stefanhoth
#facebook_username: StartBootstrap
instagram_username: stefanhoth
stackoverflow_url: https://stackoverflow.com/users/409349/stefan-hoth
#googleplus_username: StefanHoth
#skype_username: echo123
linkedin_url: http://de.linkedin.com/in/stefanhoth
# Build settings
markdown: kramdown
include:
- _redirects
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely need to edit after that.
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
title: Stefan Hoth
email: no-reply@example.org
description: > # this means to ignore newlines until "baseurl:"
An experienced developer gone servant leader whocares deeply about people, processes & values.
baseurl: "" # the subpath of your site, e.g. /blog
url: "https://stefanhoth.com" # the base hostname & protocol for your site
# Social media profiles - feel free to add more here
twitter_username: stefanhoth
github_username: stefanhoth
#facebook_username: StartBootstrap
instagram_username: stefanhoth
stackoverflow_url: https://stackoverflow.com/users/409349/stefan-hoth
#googleplus_username: StefanHoth
#skype_username: echo123
linkedin_url: https://www.linkedin.com/in/stefanhoth
# Build settings
markdown: kramdown
include:
- _redirects
| Update LinkedIn url to be https | Update LinkedIn url to be https
| YAML | mit | stefanhoth/stefanhoth.github.io,stefanhoth/stefanhoth.github.io |
3da1aecc41f12911de3049c1c3a871e8ca5a967e | _config.yml | _config.yml | pygments: true
permalink: pretty
markdown: kramdown
title: Josh Davis
name: Josh Davis's Personal Site
url: https://joshldavis.com
feed: /atom.xml
author: Josh Davis
contact:
email: hello@joshldavis.com
css:
- /css/base.css
- /lib/font-awesome/css/font-awesome.min.css
- http://fonts.googleapis.com/css?family=Droid+Sans:400,700
exclude:
- README.md
- TODO.md
- LICENSE
| pygments: true
permalink: pretty
markdown: kramdown
title: Josh Davis
name: Josh Davis's Personal Site
url: https://joshldavis.com
feed: /atom.xml
author: Josh Davis
contact:
email: hello@joshldavis.com
css:
- /css/base.css
- /lib/font-awesome/css/font-awesome.min.css
- http://fonts.googleapis.com/css?family=Droid+Sans:400,700
gems:
- jekyll-redirect-from
- jekyll-mentions
exclude:
- README.md
- TODO.md
- LICENSE
| Add redirct from Jekyll gem | Add redirct from Jekyll gem
| YAML | mit | jdavis/jdavis.github.com,jdavis/jdavis.github.com,jdavis/jdavis.github.com |
69cc6e6a03f5929c90c4183cffc966053dd098f5 | members/N000181.yaml | members/N000181.yaml | bioguide: N000181
contact_form:
method: post
action: ""
steps:
- visit: "http://ngpvan-contact-jane-casey.herokuapp.com/forms/N000181"
- fill_in:
- name: recaptcha_response_field
selector: "#recaptcha_response_field"
captcha_selector: "img#recaptcha_challenge_image"
captcha_id_selector: "#recaptcha_challenge_field"
value: $CAPTCHA_SOLUTION
required: true
- fill_in:
- name: email
selector: "#nevergonnagiveyouup"
value: $EMAIL
required: true
- name: phonenumber
selector: "#nevergonnaletyoudown"
value: $PHONE
required: true
- click_on:
- value: Submit
selector: "#nevergonnaturnaroundand"
success:
headers:
status: 200
body:
contains: "desert you!"
| bioguide: N000181
contact_form:
method: post
action: ""
steps:
- visit: "http://ngpvan-contact-jane-casey.herokuapp.com/forms/N000181"
- fill_in:
- name: recaptcha_response_field
selector: "#recaptcha_response_field"
captcha_selector: "img#recaptcha_challenge_image"
captcha_id_selector: "#recaptcha_challenge_field"
value: $CAPTCHA_SOLUTION
required: true
- fill_in:
- name: email
selector: "#email"
value: $EMAIL
required: true
- name: phonenumber
selector: "#phonenumber"
value: $PHONE
required: true
- click_on:
- value: Submit
selector: "#submitcaptcha"
success:
headers:
status: 200
body:
contains: "Success!"
| Revert "casually rickrolling this yaml" | Revert "casually rickrolling this yaml"
This reverts commit 3bfff1004319aa805b947890c5f8f3b7acaeced5.
| YAML | mit | NGPVAN/jane-caseys-congress-form |
a9d65c14f950ea4d3f6c51c2e15899ceea58541c | docker-compose.yml | docker-compose.yml | redis:
image: redis:3.0.0
command: redis-server --appendonly yes
volumes_from:
- redis-data
ports:
- "6379:6379"
container_name: py-word-suggest-redis
redis-data:
image: "busybox"
volumes:
- ./redis/data:/data
container_name: py-word-suggest-redis-data
| redis:
image: redis:3.0.0
command: redis-server --appendonly no
volumes_from:
- redis-data
ports:
- "6379:6379"
container_name: py-word-suggest-redis
redis-data:
image: "busybox"
volumes:
- ./redis/data:/data
container_name: py-word-suggest-redis-data
| Switch appendonly redis server option to no. | Switch appendonly redis server option to no.
| YAML | mit | eronde/py_word_suggest,eronde/py_word_suggest,eronde/vim_suggest,eronde/vim_suggest |
99bc53f4fe839d8dbcc03dd9b7577ca710410e75 | packages/co/conf-json.yaml | packages/co/conf-json.yaml | homepage: https://github.com/ciez/conf-json
changelog-type: markdown
hash: 76c0fa2d929d8050076a6f773e61aacb0b48b6d5d24db6ea95beada1ffa38de5
test-bench-deps:
bytestring: -any
base: ! '>=4.8'
hspec: ! '>=2.1.7'
conf-json: -any
binary: -any
QuickCheck: ! '>=2.8.1'
aeson: -any
directory: -any
maintainer: Imants Cekusins
synopsis: read, parse json config
changelog: ! "##### 1.1\n include test-conf.json\n\n##### 1.0\n initial
version\n \n test pass \n "
basic-deps:
bytestring: ! '>=0.10.0.0 && <0.11'
base: ! '>=4.8 && <5.0'
aeson: ! '>=1.0.0.0 && <1.1'
directory: ! '>=1.2.6 && <1.3'
all-versions:
- '1.0'
- '1.1'
author: Imants Cekusins
latest: '1.1'
description-type: haddock
description: read, parse json config to a Haskell type
license-name: PublicDomain
| homepage: https://github.com/ciez/conf-json
changelog-type: markdown
hash: 8e300dbe34fc4677039940c6d91fb746a086097b276356b43019fecf24fadbb7
test-bench-deps:
bytestring: -any
base: ! '>=4.8'
hspec: ! '>=2.1.7'
conf-json: -any
binary: -any
QuickCheck: ! '>=2.8.1'
aeson: -any
directory: -any
maintainer: Imants Cekusins
synopsis: read, parse json config
changelog: ! "##### 1.1\n include test-conf.json\n\n##### 1.0\n initial
version\n \n test pass \n "
basic-deps:
bytestring: -any
base: ! '>=4.8 && <5.0'
aeson: -any
directory: -any
all-versions:
- '1.0'
- '1.1'
author: Imants Cekusins
latest: '1.1'
description-type: haddock
description: read, parse json config to a Haskell type
license-name: PublicDomain
| Update from Hackage at 2016-12-11T12:37:33Z | Update from Hackage at 2016-12-11T12:37:33Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
766d2a04d8f13495e23814c67df2ddd161608ebc | packages/ha/hashable-time.yaml | packages/ha/hashable-time.yaml | homepage: ''
changelog-type: ''
hash: b925aba56f1b9a5a1952fae307eaf8ee653293b68651d3807c3852dc4c771d35
test-bench-deps: {}
maintainer: Alexey Karakulov <ankarakulov@gmail.com>
synopsis: Hashable instances for Data.Time
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.10'
time: ! '>=1.5'
hashable: ! '>=1.2.3.3 && <=1.3'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.2'
author: Alexey Karakulov <ankarakulov@gmail.com>
latest: '0.2'
description-type: markdown
description: ! '# hashable-time
'
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 1af4987c0a40924c3e48db2c7f9be01bd5c2677a5ef0370a4a9f7d2d4ba83a45
test-bench-deps: {}
maintainer: Alexey Karakulov <ankarakulov@gmail.com>
synopsis: Hashable instances for Data.Time
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.11'
time: ! '>=1.5'
hashable: ! '>=1.2.3.3 && <=1.3'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.2'
- '0.2.0.1'
author: Alexey Karakulov <ankarakulov@gmail.com>
latest: '0.2.0.1'
description-type: markdown
description: ! '# hashable-time
'
license-name: BSD3
| Update from Hackage at 2017-04-06T09:47:35Z | Update from Hackage at 2017-04-06T09:47:35Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.