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 |
|---|---|---|---|---|---|---|---|---|---|
ad594cf1b2251157f3a3715666d1b2caba030097 | .travis.yml | .travis.yml | sudo: required
services: [ docker ]
language: perl
perl: "5.18"
env:
matrix:
- TARGET_PLATFORM=centos,8
- TARGET_PLATFORM=centos,7
- TARGET_PLATFORM=centos,6
- TARGET_PLATFORM=debian,buster
- TARGET_PLATFORM=debian,jessie
- TARGET_PLATFORM=debian,stretch
- TARGET_PLATFORM=oraclelinux,7
- TARGET_PLATFORM=oraclelinux,6
- TARGET_PLATFORM=ubuntu,bionic
- TARGET_PLATFORM=ubuntu,xenial
- TARGET_PLATFORM=pgxn
before_install:
- echo $TARGET_PLATFORM > os-list.csv
install: true
script:
- ./update_dockerfiles && git diff --exit-code dockerfiles
- git checkout -- dockerfiles && ./update_images
| sudo: required
services: [ docker ]
language: perl
perl: "5.18"
env:
matrix:
- TARGET_PLATFORM=centos,8
- TARGET_PLATFORM=centos,7
- TARGET_PLATFORM=centos,6
- TARGET_PLATFORM=debian,buster
- TARGET_PLATFORM=debian,jessie
- TARGET_PLATFORM=debian,stretch
- TARGET_PLATFORM=oraclelinux,7
- TARGET_PLATFORM=oraclelinux,6
- TARGET_PLATFORM=ubuntu,bionic
- TARGET_PLATFORM=ubuntu,xenial
- TARGET_PLATFORM=pgxn
before_install:
- echo $TARGET_PLATFORM > os-list.csv
install: true
script:
#- ./update_dockerfiles && git diff --exit-code dockerfiles
- git checkout -- dockerfiles && ./update_images
| Comment out update_dockerfiles test for now | Comment out update_dockerfiles test for now
| YAML | apache-2.0 | citusdata/packaging |
95b185c95bfe042dca8d95abf0b0be0cc9f7e6d1 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.12'
addons:
code_climate:
repo_token: e55c7b21ecb92332a55e3c8fe98821a8feaa3dc2ca9cb4f64f146e451762202c
before_script:
- npm run lint
deploy:
provider: npm
email: pavlov.valerii@gmail.com
api_key:
secure: FFnSd17dPqUMbG2azmubkOpjRbnlmfes7LINE7M9stBG1fAqSZAyuukvQaKiWjLf/x4N6hYcbO6TRkBayhcHQVW5g+qT8I5eQu8IAYIaGfsAUWNwXwZv+TyvC1P2TVdZrrACxyZU2woFxOpVr6hewweETXLlBQ+fagPwpfRse4A=
on:
tags: true
| language: node_js
node_js:
- '0.12'
- '0.10'
addons:
code_climate:
repo_token: e55c7b21ecb92332a55e3c8fe98821a8feaa3dc2ca9cb4f64f146e451762202c
before_script:
- npm run lint
deploy:
provider: npm
email: pavlov.valerii@gmail.com
api_key:
secure: FFnSd17dPqUMbG2azmubkOpjRbnlmfes7LINE7M9stBG1fAqSZAyuukvQaKiWjLf/x4N6hYcbO6TRkBayhcHQVW5g+qT8I5eQu8IAYIaGfsAUWNwXwZv+TyvC1P2TVdZrrACxyZU2woFxOpVr6hewweETXLlBQ+fagPwpfRse4A=
on:
tags: true
| Add node version to test | Add node version to test
| YAML | mit | greyd/di |
f2233bc017ea4822f89ade69f2559b36eb844036 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
env:
- LARAVEL_VERSION=5.0
- LARAVEL_VERSION=5.2
- LARAVEL_VERSION=5.3
- LARAVEL_VERSION=5.4
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
before_script:
- chmod +x scripts/change-laravel-version.sh && bash scripts/change-laravel-version.sh
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: vendor/bin/phpspec run --format=pretty
notifications:
slack:
secure: MT5eWBoLLafyRTdFVyig9A/kw68UuKxSiFwFfsd7RaJwJlnR31rfw3oTS6/74Fkr7UQNOclUGSxbX10iIkR9I0ktMayMSDrnDZXNLs3Zn5ciGRjo9zIQ+gw0eqmU1hHyVXvG7pSwoLjqihlkO9J6K/1bUhTaHT+OXvKXZOqJ3Os=
| language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
env:
- LARAVEL_VERSION=5.2
- LARAVEL_VERSION=5.3
- LARAVEL_VERSION=5.4
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
before_script:
- chmod +x scripts/change-laravel-version.sh && bash scripts/change-laravel-version.sh
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: vendor/bin/phpspec run --format=pretty
notifications:
slack:
secure: MT5eWBoLLafyRTdFVyig9A/kw68UuKxSiFwFfsd7RaJwJlnR31rfw3oTS6/74Fkr7UQNOclUGSxbX10iIkR9I0ktMayMSDrnDZXNLs3Zn5ciGRjo9zIQ+gw0eqmU1hHyVXvG7pSwoLjqihlkO9J6K/1bUhTaHT+OXvKXZOqJ3Os=
| Remove Laravel 5.0 as test target | Remove Laravel 5.0 as test target
Since Laravel 5.0 doesn’t support array validation, we drop support for
it with this change.
| YAML | mit | felixkiss/uniquewith-validator |
9d298d6467d1ffa09a5f43a02d9fc58275901ffa | .travis.yml | .travis.yml | language: python
env:
global:
- PACKAGE="phpunitkit"
matrix:
- SUBLIME_TEXT_VERSION="3"
matrix:
allow_failures:
- python: "3.6"
fast_finish: true
include:
- os: linux
python: 3.3
- os: linux
python: 3.6
- os: osx
language: generic
before_install:
- curl -OL https://raw.githubusercontent.com/SublimeText/UnitTesting/master/sbin/travis.sh
# Enable GUI. See https://docs.travis-ci.com/user/gui-and-headless-browsers.
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
export DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
fi
install:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
pip install flake8;
pip install flake8-docstrings;
pip install python-coveralls;
elif [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update;
brew install python3;
pip3 install flake8;
pip3 install flake8-docstrings;
pip3 install python-coveralls;
fi
- sh travis.sh bootstrap
script:
- sh travis.sh run_tests --coverage
- sh travis.sh run_syntax_tests
- flake8
after_success:
- coveralls
notifications:
email: false
| language: python
env:
global:
- PACKAGE="phpunitkit"
matrix:
- SUBLIME_TEXT_VERSION="3"
matrix:
allow_failures:
- python: "3.6"
fast_finish: true
include:
- os: linux
python: 3.3
- os: linux
python: 3.6
- os: osx
language: generic
before_install:
- curl -OL https://raw.githubusercontent.com/SublimeText/UnitTesting/master/sbin/travis.sh
# Enable GUI. See https://docs.travis-ci.com/user/gui-and-headless-browsers.
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
export DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
fi
install:
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
pip install flake8;
pip install flake8-docstrings;
pip install python-coveralls;
elif [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update;
brew upgrade python;
pip3 install flake8;
pip3 install flake8-docstrings;
pip3 install python-coveralls;
fi
- sh travis.sh bootstrap
- python --version
- flake8 --version
script:
- sh travis.sh run_tests --coverage
- sh travis.sh run_syntax_tests
- flake8
after_success:
- coveralls
notifications:
email: false
| Fix Travis OSX error updating python | Fix Travis OSX error updating python
```
Error: python 2.7.14 is already installed
To upgrade to 3.6.4_3, run `brew upgrade python`
/Users/travis/.travis/job_stages: line 57: pip3: command not found
/Users/travis/.travis/job_stages: line 57: pip3: command not found
/Users/travis/.travis/job_stages: line 57: pip3: command not found
The command "if [ "$TRAVIS_OS_NAME" == "linux" ]; then pip install
flake8; pip install flake8-docstrings; pip install python-coveralls;
elif [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; brew install
python3; pip3 install flake8; pip3 install flake8-docstrings; pip3
install python-coveralls; fi" failed and exited with 127 during .
```
| YAML | bsd-3-clause | gerardroche/sublime-phpunit |
3bc4fd09806cd3af7d9c8f4e7b8ea9e67776df68 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO=1.5
- DJANGO=1.6
- DJANGO=master
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//[.]/}-$DJANGO
after_success: coveralls
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO=1.6
- DJANGO=1.7
- DJANGO=master
install:
- pip install tox coveralls
script:
- tox -e py${TRAVIS_PYTHON_VERSION//[.]/}-$DJANGO
after_success: coveralls
| Change test matrix for Django 1.7 release | Change test matrix for Django 1.7 release
Dropping 1.5 and adding 1.8 (master) | YAML | mit | pinax/metron,pinax/pinax-webanalytics,pinax/pinax-webanalytics,pinax/metron |
0c94da3f50556b2d9c0b2cbe79698abd56051a7f | .travis.yml | .travis.yml | sudo: false
dist: trusty
cache:
bundler: false
branch: no-symlink
directories:
- /home/travis/.rbenv
- /opt/python
env:
- RBENV_VERSION="2.1.10"
- RBENV_VERSION="2.2.7"
- RBENV_VERSION="2.3.4"
- RBENV_VERSION="2.4.2"
- PYENV_VERSION="2.7"
- PYENV_VERSION="2.7-dev"
- PYENV_VERSION="3.4.6"
- PYENV_VERSION="3.4-dev"
- PYENV_VERSION="3.5.3"
- PYENV_VERSION="3.5-dev"
- PYENV_VERSION="3.6.2"
- PYENV_VERSION="3.6-dev"
- PYENV_VERSION="3.7-dev"
install: bin/setup
script: bin/test
| sudo: false
dist: trusty
cache:
bundler: false
directories:
- /home/travis/.rbenv
- /opt/python
env:
- RBENV_VERSION="2.1.10"
- RBENV_VERSION="2.2.7"
- RBENV_VERSION="2.3.4"
- RBENV_VERSION="2.4.2"
- PYENV_VERSION="2.7"
- PYENV_VERSION="2.7-dev"
- PYENV_VERSION="3.4.6"
- PYENV_VERSION="3.4-dev"
- PYENV_VERSION="3.5.3"
- PYENV_VERSION="3.5-dev"
- PYENV_VERSION="3.6.2"
- PYENV_VERSION="3.6-dev"
- PYENV_VERSION="3.7-dev"
install: bin/setup
script: bin/test
| Stop using the no-symlink branch when caching since it's gone now | Stop using the no-symlink branch when caching since it's gone now
| YAML | mit | zincmade/informed,zincmade/informed |
b61b3abe288f993c3688ce75f05143a47191f01b | .travis.yml | .travis.yml | language: python
python:
- "3.6"
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- nvm install node
install:
- pip install -r requirements.txt
- cd web
- nvm use node
- npm install
- cd ..
script:
- mypy --ignore-missing-imports api.py
- python3 api.py &
- cd web
- ng build
- ng lint
- ng serve &
- sleep 5 # In the odd case starting server takes longer than Chrome.
- ng e2e | sudo: required
dist: trusty
language: python
python:
- "3.6"
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- nvm install node
install:
- pip install -r requirements.txt
- cd web
- nvm use node
- npm install
- cd ..
script:
- mypy --ignore-missing-imports api.py
- python3 api.py &
- cd web
- ng build
- ng lint
- ng serve &
- sleep 5 # In the odd case starting server takes longer than Chrome.
- ng e2e | Use newer Ubuntu in Travis. | Use newer Ubuntu in Travis.
| YAML | mit | lrem/ladders,lrem/ladders,lrem/ladders,lrem/ladders,lrem/ladders |
27e8016cf24d8d8f5e0653e94bbd8b95fb0239c5 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- "echo `phantomjs -v`"
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_script:
- cp config/database.yml.example config/database.yml
- cp config/config.yml.example config/config.yml
- cp config/secrets.yml.example config/secrets.yml
- RAILS_ENV=test bundle exec rake db:migrate --trace
script:
- 'bundle exec rspec --color --format documentation'
- 'bundle exec rubocop -Dc .rubocop.yml'
addons:
artifacts: true
s3_region: "us-east-1"
| language: ruby
rvm:
- 2.1.1
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- "echo `phantomjs -v`"
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
irc:
channels:
- "chat.freenode.net#osem"
on_success: change
on_failure: change
before_script:
- cp config/database.yml.example config/database.yml
- cp config/config.yml.example config/config.yml
- cp config/secrets.yml.example config/secrets.yml
- RAILS_ENV=test bundle exec rake db:migrate --trace
script:
- 'bundle exec rspec --color --format documentation'
- 'bundle exec rubocop -Dc .rubocop.yml'
| Enable IRC notification, disable addons | Travis: Enable IRC notification, disable addons
| YAML | mit | rishabhptr/osem,differentreality/osem,Shriyanshagro/osem,BelieveC/osem,openSUSE/osem,bear454/osem,Shriyanshagro/osem,kormoc/osem,SeaGL/osem,rishabhptr/osem,AndrewKvalheim/osem,sonalkr132/osem,namangupta01/osem,sonalkr132/osem,Shriyanshagro/osem,openSUSE/osem,rishabhptr/osem,bear454/osem,kormoc/osem,kormoc/osem,kormoc/osem,hennevogel/osem,namangupta01/osem,sonalkr132/osem,AndrewKvalheim/osem,differentreality/osem,bear454/osem,rishabhptr/osem,openSUSE/osem,SeaGL/osem,BelieveC/osem,namangupta01/osem,ChrisBr/osem,ChrisBr/osem,BelieveC/osem,namangupta01/osem,hennevogel/osem,SeaGL/osem,AndrewKvalheim/osem,hennevogel/osem,hennevogel/osem,sonalkr132/osem,differentreality/osem,BelieveC/osem,ChrisBr/osem,Shriyanshagro/osem,bear454/osem,ChrisBr/osem,differentreality/osem |
e1429621323597001edd4c3b84230d2ce12887ac | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.2.5
- 2.3.1
before_script: bundle install
script: bundle exec rake
| language: ruby
rvm:
- 2.2.5
- 2.3.1
before_script: bundle install
script: bundle exec rake
| Remove test support for Ruby versions no longer supported | Remove test support for Ruby versions no longer supported
Support ended in April, 2017
https://www.ruby-lang.org/en/news/2017/04/01/support-of-ruby-2-1-has-ended/
| YAML | mit | nationbuilder/nationbuilder-rb,nationbuilder/nationbuilder-rb |
ca46712047bf0b95919838732bc85748999c4e28 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "iojs"
| language: node_js
node_js:
- "4.1"
| Cut down the number of versions | Cut down the number of versions
| YAML | apache-2.0 | joelea/bacon-dom,joelea/bacon-dom |
8d57ed8489640773bb0c0a59c053ee9be778d5ef | .travis.yml | .travis.yml | language: go
go:
- 1.4
env:
- LIBWEBP_VERSION="0.4.1"
- LIBWEBP_VERSION="0.4.2"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libjpeg-dev libpng-dev libtiff-dev libgif-dev
- >
cd /tmp
&& wget http://downloads.webmproject.org/releases/webp/libwebp-${LIBWEBP_VERSION}.tar.gz
&& tar xf libwebp-${LIBWEBP_VERSION}.tar.gz
&& cd libwebp-${LIBWEBP_VERSION}
&& ./configure
&& make
&& sudo make install
- cd $HOME/gopath/src/github.com/harukasan/go-libwebp
- export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
| language: go
go:
- 1.4
- 1.5
- 1.6
- tip
env:
- LIBWEBP_VERSION="0.4.1"
- LIBWEBP_VERSION="0.4.2"
- LIBWEBP_VERSION="0.4.3"
- LIBWEBP_VERSION="0.5.0"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libjpeg-dev libpng-dev libtiff-dev libgif-dev
- >
cd /tmp
&& wget http://downloads.webmproject.org/releases/webp/libwebp-${LIBWEBP_VERSION}.tar.gz
&& tar xf libwebp-${LIBWEBP_VERSION}.tar.gz
&& cd libwebp-${LIBWEBP_VERSION}
&& ./configure
&& make
&& sudo make install
- cd $HOME/gopath/src/github.com/harukasan/go-libwebp
- export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
| Add test for Go 1.5 - tip and libwebp 4.3 - 5.0 | Add test for Go 1.5 - tip and libwebp 4.3 - 5.0
| YAML | bsd-2-clause | harukasan/go-libwebp |
a59c60ca10c842dbd6a6cadaab7611d01e916a54 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without development
before_install: rm Gemfile.lock || true
sudo: false
rvm:
- 2.0.0
- 2.1.0
- 2.2
script: bundle exec rake metadata
env:
- PUPPET_GEM_VERSION="~> 3.8.0"
- PUPPET_GEM_VERSION="~> 4.0.0"
- PUPPET_GEM_VERSION="~> 4.1.0"
matrix:
- rvm: 2.2
env: PUPPET_GEM_VERSION="~> 3.8.0"
| ---
language: ruby
bundler_args: --without development
before_install: rm Gemfile.lock || true
sudo: false
rvm:
- 2.0.0
- 2.1.0
- 2.2
script: bundle exec rake metadata
env:
- PUPPET_GEM_VERSION="~> 3.8.0"
- PUPPET_GEM_VERSION="~> 4.0.0"
- PUPPET_GEM_VERSION="~> 4.1.0"
matrix:
exclude:
- rvm: 2.2
env: PUPPET_GEM_VERSION="~> 3.8.0"
| Correct bug in Travis configuration for exclude | Correct bug in Travis configuration for exclude
| YAML | apache-2.0 | garethr/garethr-kubernetes,modax/garethr-kubernetes |
72ae66ce71a9729f1c550165c0b657ecb2a7ab20 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
install:
- "pip install -r requirements.txt"
- "pip install coveralls"
- "python3 setup.py install"
script:
- "./runtests.sh"
after_success:
- "cd tests"
- "coveralls"
| language: python
python:
- "3.4"
- "3.5"
install:
- "pip install -r requirements.txt"
- "pip install coveralls"
- "python3 setup.py install"
script:
- "./runtests.sh"
# Make sure the python code can at least compile
- "python -m compileall"
after_success:
- "cd tests"
- "coveralls"
| Add compileall as a test | Add compileall as a test
| YAML | isc | DanielOaks/girc,DanielOaks/girc |
e6b683f3ec4febe30eb069f911d95fdc2ceb3646 | .travis.yml | .travis.yml | language: generic
os:
- linux
- osx
dist: focal
env:
global:
- APM_TEST_PACKAGES=""
- ATOM_LINT_WITH_BUNDLED_NODE="true"
jobs:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
addons:
apt:
packages:
- libgconf-2-4
script:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
- ./build-package.sh
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- master
git:
depth: 10 | language: generic
os:
- linux
- osx
dist: focal
osx_image: xcode11.7
env:
global:
- APM_TEST_PACKAGES=""
- ATOM_LINT_WITH_BUNDLED_NODE="true"
jobs:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
addons:
apt:
packages:
- libgconf-2-4
script:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
- ./build-package.sh
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- master
git:
depth: 10 | Use Xcode 11.7 on Travis CI | Use Xcode 11.7 on Travis CI
| YAML | mit | matthesjh/autocomplete-curry |
3c468f2860ee05276c64e55aa47a0ad5b2332025 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- nightly
before_script: composer install
| language: php
php:
- 5.5
- 5.6
- 7.0
- nightly
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
script: phpunit
| Allow Travis to retry composer installation. | Allow Travis to retry composer installation.
| YAML | mit | olssonm/l5-very-basic-auth |
05b30a41646a79fe4e77978b3e50d1987ff54a5d | .travis.yml | .travis.yml | # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
jdk:
- oraclejdk8
| # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: java
jdk:
- openjdk8
| Update Travis to use openjdk8 | Update Travis to use openjdk8
| YAML | apache-2.0 | revelc/zookeeper-maven-plugin,ctubbsii/zookeeper-maven-plugin |
bc73e10b5caaf6a3f0c3b25ab46602e76e4e7703 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
script:
- npm run jshint
- npm test
after_success: npm run coveralls
| language: node_js
node_js:
- "0.11"
- "0.10"
script:
- npm run jshint
- npm test
after_success: npm run coveralls
| Drop support for old versions of node | Drop support for old versions of node
| YAML | mit | digitalsadhu/envoodoo,digitalsadhu/envoodoo |
bf17e153c9e7fd263313eefdc98012c3c1e63a28 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc mocha
script:
- nyc npm test
| Install Mocha at Travis CI. | Install Mocha at Travis CI.
| YAML | mit | bigeasy/reconfigure,bigeasy/reconfigure |
6d0199bcc0f5f6b046ac9f289e0c6c08c80b50c9 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
script: phpunit --bootstrap tests/bootstrap.php tests
| language: php
php:
- 5.3
- 5.4
- 5.5
before_script: composer install
script: phpunit --bootstrap tests/bootstrap.php tests
| Install dependencies using composer before tests | Install dependencies using composer before tests
| YAML | bsd-3-clause | Muppet1856/steam-condenser-php,koraktor/steam-condenser-php,GoeGaming/steam-condenser-php,pingers/steam-condenser-php |
9b6d5d9fd78cc9ec30035b395a394d08ed2b8f05 | .travis.yml | .travis.yml | language: node_js
node_js: 6
script:
- npm test
- npm run coverage
- npm run codecov
before_deploy:
- git.config --global user.email "travis@travis-ci.org"
- git.config --global user.name "Travis CI"
- npm version $VERSION_INCREMENT
after_deploy:
- git push --tags
deploy:
- provider: pages
skip_cleanup: true
github_token: $GITHUB_API_KEY
on:
branch: master
- provider: npm
skip_cleanup: true
email: $NPM_EMAIL
api_key: $NPM_API_KEY
on:
branch: master | language: node_js
node_js: 6
script:
- npm test
- npm run coverage
- npm run codecov
before_deploy:
- git config --global user.email "travis@travis-ci.org"
- git config --global user.name "Travis CI"
- npm version $VERSION_INCREMENT
after_deploy:
- git push --tags
deploy:
- provider: pages
skip_cleanup: true
github_token: $GITHUB_API_KEY
on:
branch: master
- provider: npm
skip_cleanup: true
email: $NPM_EMAIL
api_key: $NPM_API_KEY
on:
branch: master | Update git config before deployment | Update git config before deployment
| YAML | mit | ifrost/starterkit,ifrost/starterkit,ifrost/starterkit |
3a4561389be4afa9c69e022c23df35d35e4d61ac | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
before_install:
- gem update bundler
script: "bundle exec rake spec"
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.1
| language: ruby
sudo: false
cache: bundler
before_install:
- gem update bundler
script: "bundle exec rake spec"
rvm:
- 2.2.2
- 2.3.1
| Drop support ruby versions less than 2.2.2 | Drop support ruby versions less than 2.2.2
| YAML | mit | kenchan0130/weak_headers |
7f81f5067634957684decb7abbdef1ad001ad649 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: node_js
node_js: 8.0
cache:
directories:
- node_modules
addons:
firefox: latest
google-chrome: latest
install:
- npm install
- bower install
before_script:
- gulp lint version:check
- xvfb-run -s '-screen 0 1024x768x24' wct
script:
- if [[ "$TRAVIS_EVENT_TYPE" != "pull_request" && "$TRAVIS_BRANCH" != quick/* ]]; then
wct --env saucelabs;
fi
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then
wct --env saucelabs-cron;
fi
| sudo: false
dist: trusty
language: node_js
node_js: 8.0
cache:
directories:
- node_modules
addons:
firefox: latest
google-chrome: latest
install:
- npm install
- bower install
before_script:
- gulp lint version:check
- polymer lint ./src/*.html ./theme/*.html --rules polymer-2
- xvfb-run -s '-screen 0 1024x768x24' wct
script:
- if [[ "$TRAVIS_EVENT_TYPE" != "pull_request" && "$TRAVIS_BRANCH" != quick/* ]]; then
wct --env saucelabs;
fi
- if [ "$TRAVIS_EVENT_TYPE" = "cron" ]; then
wct --env saucelabs-cron;
fi
| Enable polymer-linter in CI for ./src and ./theme | Enable polymer-linter in CI for ./src and ./theme
| YAML | apache-2.0 | vaadin/vaadin-combo-box,vaadin/vaadin-combo-box |
143ddd2d5da2b1ea51110e751824fa2051df1c7b | .travis.yml | .travis.yml | # Language setup
language: python
python:
- '2.7'
- '3.2'
- '3.3'
- '3.4'
- '3.5'
# Install pyinfra + dev/test deps
install: 'pip install -e .[dev]'
# Run the tests
script: nosetests
| # Language setup
language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
# Install pyinfra + dev/test deps
install: 'pip install -e .[dev]'
# Run the tests
script: nosetests
| Remove python3.2 as jinja2 doesn't work. | Remove python3.2 as jinja2 doesn't work.
| YAML | mit | Fizzadar/pyinfra,Fizzadar/pyinfra |
4833066e98923fb83066845b49d21598d042cbde | .travis.yml | .travis.yml | sudo: required
language: python
python:
- "2.7"
before_install:
- /bin/bash -c "cd /Nomad; cp shared/secrets.example.py shared/secrets.py; cp shared/jobmine.example.py shared/jobmine.py; cp shared/ratemycoopjob.example.py shared/ratemycoopjob.py;"
install:
- pip install -r requirements.txt
before_script:
- which python
- sudo python -m nltk.downloader -d /usr/local/share/nltk_data conll2000 conll2002 maxent_ne_chunker punkt averaged_perceptron_tagger
script:
- python -m unittest discover --pattern=*test.py -v | sudo: required
language: python
python:
- "2.7"
before_install:
- /bin/bash -c "cd /Nomad; cp shared/secrets.example.py shared/secrets.py; cp shared/jobmine.example.py shared/jobmine.py; cp shared/ratemycoopjob.example.py shared/ratemycoopjob.py;"
before_script:
- pip install -r requirements.txt
- sudo python -m nltk.downloader -d /usr/local/share/nltk_data conll2000 conll2002 maxent_ne_chunker punkt averaged_perceptron_tagger
script:
- python -m unittest discover --pattern=*test.py -v | Move installing nltk data to before_script | Move installing nltk data to before_script
| YAML | mit | Mo-Talha/Nomad,Mo-Talha/Nomad,Mo-Talha/Nomad,Mo-Talha/Nomad |
837dd9e50ca59ddaf4dda41c271bb9354855559e | .travis.yml | .travis.yml | language: "node_js"
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
- "3" # io.js
- "2" # io.js
- "1" # io.js
- "0.12"
- "0.10"
- "0.8"
- "0.6"
before_install:
- "npm install make-node@0.3.x -g"
- "preinstall-compat"
script:
- "make test-cov"
after_success:
- "make report-cov"
sudo: false
| language: "node_js"
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
- "3" # io.js
- "2" # io.js
- "1" # io.js
- "0.12"
- "0.10"
before_install:
- "npm install make-node@0.3.x -g"
- "preinstall-compat"
script:
- "make test-cov"
after_success:
- "make report-cov"
sudo: false
| Drop support for node 0.6 and 0.8. | Drop support for node 0.6 and 0.8.
| YAML | mit | jaredhanson/kerouac |
c07700d036abad182ee5d4f8dffe5e7b6e2cba73 | .travis.yml | .travis.yml |
# Build matrix
language: node_js
matrix:
include:
# Run linter once
- node_js: '0.12'
env: LINT=true
# Run tests
- node_js: '0.10'
- node_js: '0.12'
- node_js: '4'
- node_js: '5'
# Restrict builds on branches
branches:
only:
- master
- /^\d+\.\d+\.\d+$/
# Before install
before_install:
#- npm install coveralls
# Build script
script:
- 'if [ $LINT ]; then make lint; fi'
- 'if [ ! $LINT ]; then make test; fi'
#- 'if [ ! $LINT ]; then cat ./coverage/lcov.info | ./node_modules/.bin/coveralls; fi'
|
# Build matrix
language: node_js
matrix:
include:
# Run linter once
- node_js: '0.12'
env: LINT=true
# Run tests
- node_js: '0.10'
- node_js: '0.12'
- node_js: '4'
- node_js: '5'
- node_js: '6'
# Restrict builds on branches
branches:
only:
- master
- /^\d+\.\d+\.\d+$/
# Before install
before_install:
#- npm install coveralls
# Build script
script:
- 'if [ $LINT ]; then make lint; fi'
- 'if [ ! $LINT ]; then make test; fi'
#- 'if [ ! $LINT ]; then cat ./coverage/lcov.info | ./node_modules/.bin/coveralls; fi'
| Add node 6 to the test matrix | Add node 6 to the test matrix
| YAML | mit | nature/bandiera-client-node,springernature/bandiera-client-node |
43fc14730425c5c76939d6d65e2634d06d9d662c | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
env:
- TEST_SUITE=test
- TEST_SUITE=testDeterministic
script: "gradle --stacktrace $TEST_SUITE"
sudo: false
| language: java
jdk: oraclejdk8
env:
- TEST_SUITE=test
- TEST_SUITE=testDeterministic
script: "gradle --stacktrace $TEST_SUITE --info"
sudo: false
| Add info-level logging to Travis build | Add info-level logging to Travis build
| YAML | mit | nusco/narjillos |
639d14f29bd159bde328b069174234d71dff867d | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer install -n --dev --prefer-source
script: vendor/bin/phpunit --coverage-text
| language: php
php:
- 5.6
- 7.0
- hhvm
before_script:
- composer install -n --dev --prefer-source
script: vendor/bin/phpunit --coverage-text
| Exclude PHP 5.5 for lack of hash_equals() | Exclude PHP 5.5 for lack of hash_equals()
| YAML | mit | delatbabel/elocryptfive,delatbabel/elocryptfive |
a28a8d9b3a7491189b7e067c138fce296a3a0e9d | .travis.yml | .travis.yml | language: objective-c
xcode_project: Franz.xcodeproj
xcode_scheme: franz-Package
osx_image: xcode9.3beta
sudo: required
services:
- docker
script:
- set -o pipefail
- xcodebuild test -scheme Franz -skip-testing:DockerTests | xcpretty
| language: objective-c
xcode_project: Franz.xcodeproj
xcode_scheme: franz-Package
osx_image: xcode9
sudo: required
services:
- docker
script:
- set -o pipefail
- xcodebuild test -scheme Franz -skip-testing:DockerTests | xcpretty
| Update to xcode9.3 image on Travis | Update to xcode9.3 image on Travis
| YAML | mit | kellanburket/franz,kellanburket/franz |
b1672c9d470b89c52880324d2a8abefb266b4289 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
env:
- "SOLVEBIO_API_KEY=0cedb161d845e6a58ec6781478b8314c536e632f"
script:
- python ./setup.py test && flake8 solvebio
install: pip install flake8
notifications:
slack:
secure: WvTImIlFKtCSTrcpk11RB467ybQBmZatk1k9CEEb5qkRRX0IUhmmNzV4xKIJR40Hf1u84uW6j5AeD/OChHycU+1C/OmMgyFAIYMAkE8db+dGtpdlQO5a5Jj9xzK8nfUKrw6Y3JzDTn+mQkeFyRP6D8fj3WPWOV5G9EOTY62sLiQ=
| language: python
python:
- '2.6'
- '2.7'
env:
- "SOLVEBIO_API_KEY=0cedb161d845e6a58ec6781478b8314c536e632f"
script:
- python ./setup.py test
- flake8 solvebio
install: pip install flake8
notifications:
slack:
secure: WvTImIlFKtCSTrcpk11RB467ybQBmZatk1k9CEEb5qkRRX0IUhmmNzV4xKIJR40Hf1u84uW6j5AeD/OChHycU+1C/OmMgyFAIYMAkE8db+dGtpdlQO5a5Jj9xzK8nfUKrw6Y3JzDTn+mQkeFyRP6D8fj3WPWOV5G9EOTY62sLiQ=
| Test using python 2.6. Give flake8 results independent of test results. | Test using python 2.6. Give flake8 results independent of test results.
| YAML | mit | solvebio/solvebio-python,solvebio/solvebio-python,solvebio/solvebio-python |
143ab28a820ac5aa4a312a3d90c2a8e9743dff42 | .travis.yml | .travis.yml | language: python
python:
- pypy
- pypy3
- 2.7
- 3.4
- 3.5
- 3.6
install:
- pip install -rrequirements-dev.txt coveralls
script:
- COVERAGE_PROCESS_START=$PWD/.coveragerc py.test sasstests.py
- coverage combine
- coverage report
- flake8 .
after_success:
- coveralls
cache:
directories:
- $HOME/.cache/pip
| language: python
dist: trusty
python:
- pypy-5.4.1
- 2.7
- 3.4
- 3.5
- 3.6
install:
- pip install -rrequirements-dev.txt coveralls
script:
- COVERAGE_PROCESS_START=$PWD/.coveragerc py.test sasstests.py
- coverage combine
- coverage report
- flake8 .
after_success:
- coveralls
cache:
directories:
- $HOME/.cache/pip
| Drop pypy3, use new trusty dist | Drop pypy3, use new trusty dist
| YAML | mit | dahlia/libsass-python,dahlia/libsass-python |
73896a2c6cfcfe9f980ab68bad11bda67499965a | .travis.yml | .travis.yml | language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
before_install:
- sudo rm -f /etc/mavenrc
install:
- mvn install -DskipTests
script:
- mvn test -DskipCompileDictionary
| language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
before_install:
- sudo rm -f /etc/mavenrc
install:
- mvn install -DskipTests -pl kuromoji-ipadic -pl kuromoji-unidic -am
script:
- mvn test -DskipCompileDictionary -pl kuromoji-ipadic -pl kuromoji-unidic -am
| Enable kuromoji-common, kuromoji-ipadic and kuromoji-unidic | Enable kuromoji-common, kuromoji-ipadic and kuromoji-unidic
| YAML | apache-2.0 | sevenno7/kuromoji,yodasantu/kuromoji,makigumo/kuromoji,atilika/kuromoji,ikawaha/kuromoji,cmoen/kuromoji,gerryhocks/kuromoji |
91b3daae9b9f76203f5b3c0650b2028e9356fde2 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- jruby-9.1.13.0
- jruby-1.7.27
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
fast_finish: true
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/bc3a12e425e557a6ca23
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
rvm:
- jruby-9.2.0.0
- jruby-9.1.17.0
- jruby-1.7.27
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
fast_finish: true
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/bc3a12e425e557a6ca23
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| Test for latest JRuby versions | CI: Test for latest JRuby versions
| YAML | mit | neopoly/rubyfox-sfsobject |
24961b28807b3abf575338fee43842427147ae90 | .travis.yml | .travis.yml | language: java
sudo: false
cache:
directories:
- $HOME/.m2
jdk:
- openjdk6
- openjdk7
- openjdk8
#install: mvn install -DskipTests=true -q
# Run build and push build to https://scan.coverity.com/
addons:
coverity_scan:
project:
name: "tracee/tracee"
description: "Build submitted via Travis CI"
notification_email: sven.bunge@nnga.de
build_command_prepend: "mvn clean"
build_command: "mvn install -DskipTests=true -q"
branch_pattern: coverity_scan
# Run unit and integration tests
script: mvn verify -B -q
after_success: ! '[[ $TRAVIS_BRANCH == "master" && $TRAVIS_REPO_SLUG == "tracee/tracee"
&& $TRAVIS_PULL_REQUEST == "false" ]] && { curl https://raw.githubusercontent.com/holisticon/travis-configuration/master/settings.xml --location
--create-dirs -o target/travis/settings.xml; } && { mvn cobertura:cobertura coveralls:report deploy -q --settings target/travis/settings.xml
-Dgpg.skip=true; }'
notifications:
webhooks:
urls:
- $GITTER_WEBHOOK
on_success: change
on_failure: always
on_start: false
| language: java
sudo: false
cache:
directories:
- $HOME/.m2
jdk:
- openjdk6
- openjdk7
- oraclejdk8
#install: mvn install -DskipTests=true -q
# Run build and push build to https://scan.coverity.com/
addons:
coverity_scan:
project:
name: "tracee/tracee"
description: "Build submitted via Travis CI"
notification_email: sven.bunge@nnga.de
build_command_prepend: "mvn clean"
build_command: "mvn install -DskipTests=true -q"
branch_pattern: coverity_scan
# Run unit and integration tests
script: mvn verify -B -q
after_success: ! '[[ $TRAVIS_BRANCH == "master" && $TRAVIS_REPO_SLUG == "tracee/tracee"
&& $TRAVIS_PULL_REQUEST == "false" ]] && { curl https://raw.githubusercontent.com/holisticon/travis-configuration/master/settings.xml --location
--create-dirs -o target/travis/settings.xml; } && { mvn cobertura:cobertura coveralls:report deploy -q --settings target/travis/settings.xml
-Dgpg.skip=true; }'
notifications:
webhooks:
urls:
- $GITTER_WEBHOOK
on_success: change
on_failure: always
on_start: false
| Switch to oraclejdk8 instead of not existing openjdk8 | Switch to oraclejdk8 instead of not existing openjdk8
| YAML | bsd-3-clause | SvenBunge/tracee,tracee/tracee,Hippoom/tracee |
68316ce8aa788c8175d4444704747522f684b2fe | .travis.yml | .travis.yml | language: android
sudo: required
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-25.0.3
# The SDK version used to compile your project
- android-25
licenses:
- android-sdk-preview-license-.+
- android-sdk-license-.+
before_install:
- mkdir "$ANDROID_HOME/licenses" || true
- echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55" > "$ANDROID_HOME/licenses/android-sdk-license"
- echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_HOME/licenses/android-sdk-preview-license"
script:
- "./gradlew clean build -PdisablePreDex --stacktrace"
before_deploy:
- cd Application/build/outputs/apk/
deploy:
provider: testfairy
api-key: "02273d28cdd18638d5f7cebe52460b6c67143c9f"
app-file: Application-debug.apk
keystore-file: debug.keystore
storepass: android
alias: android
| language: android
sudo: required
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- tools
# The BuildTools version used by your project
- build-tools-25.0.3
# The SDK version used to compile your project
- android-25
licenses:
- android-sdk-preview-license-.+
- android-sdk-license-.+
before_install:
- mkdir "$ANDROID_HOME/licenses" || true
- echo -e "\n8933bad161af4178b1185d1a37fbf41ea5269c55" > "$ANDROID_HOME/licenses/android-sdk-license"
- echo -e "\n84831b9409646a918e30573bab4c9c91346d8abd" > "$ANDROID_HOME/licenses/android-sdk-preview-license"
script:
- "./gradlew clean build -PdisablePreDex --stacktrace"
deploy:
provider: testfairy
api-key: "02273d28cdd18638d5f7cebe52460b6c67143c9f"
app-file: $TRAVIS_BUILD_DIR/Application/build/outputs/apk/Application-debug.apk
keystore-file: debug.keystore
storepass: android
alias: android
| Use $TRAVIS_BUILD_DIR to fix build error | Use $TRAVIS_BUILD_DIR to fix build error
| YAML | apache-2.0 | balarayen/ActionBarStyled |
45dedec387198121cbe69b4256ee8488649f4c3a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.6
- 2.2.3
- 2.3.0
matrix:
fast_finish: true
allow_failures:
- env: CUSTOM_RUBY_VERSION=2.1.6 ISOLATED=true
rvm: 2.1.6
sudo: false
bundler_args: --deployment --without development
cache:
- bundler
- directories:
- bower_components
- node_modules
before_script:
- ruby --version
- cp config/database.ci.yml config/database.yml
- cp .env.example .env
- psql -c 'create database orientation_test;' -U postgres
- npm install -g bower
- bower install
- bundle exec rake db:migrate
script:
- bundle exec rspec spec/
branches:
only:
- master
notifications:
email: false
addons:
postgresql: "9.3"
code_climate:
repo_token: 75408d377a0b3c1ab512bf3fb634617bccf2a1065f8c513e352139427ec8e1fb
| language: ruby
matrix:
include:
- rvm: 2.3.0
- rvm: 2.2.3
env: CUSTOM_RUBY_VERSION=2.2.3 ISOLATED=true
- rvm: 2.1.6
env: CUSTOM_RUBY_VERSION=2.1.6 ISOLATED=true
fast_finish: true
allow_failures:
- 2.2.3
- 2.1.6
sudo: false
bundler_args: --deployment --without development
cache:
- bundler
- directories:
- bower_components
- node_modules
before_script:
- ruby --version
- cp config/database.ci.yml config/database.yml
- cp .env.example .env
- psql -c 'create database orientation_test;' -U postgres
- npm install -g bower
- bower install
- bundle exec rake db:migrate
script:
- bundle exec rspec spec/
branches:
only:
- master
notifications:
email: false
addons:
postgresql: "9.3"
code_climate:
repo_token: 75408d377a0b3c1ab512bf3fb634617bccf2a1065f8c513e352139427ec8e1fb
| Update Travis config to allow failures except for 2.3 | Update Travis config to allow failures except for 2.3
| YAML | mit | codeschool/orientation,orientation/orientation,splicers/orientation,orientation/orientation,codeschool/orientation,splicers/orientation,splicers/orientation,cmckni3/orientation,codeschool/orientation,orientation/orientation,cmckni3/orientation,orientation/orientation,cmckni3/orientation |
cec968c90c05ef3ed91f02bb83d52e96ab22c41a | .travis.yml | .travis.yml | language: go
go:
- 1.2
- 1.3
- tip
install:
- make updatedeps
- go build -o winrm-cli
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get code.google.com/p/go.tools/cmd/cover
- go get github.com/modocache/gover
- go get gopkg.in/check.v1
script:
- make ci
after_script:
- $HOME/gopath/bin/goveralls -service="travis-ci" -coverprofile=profile.cov -repotoken $COVERALLS_TOKEN
matrix:
allow_failures:
- go: tip
env:
global:
secure: "GTrEtbp3sq14Jjz34pgIO0/Zv19YaDOOUJay4qnzGxs527HkW7YdsWENz0/yGHet+0jMOPatfP3uLaQHVFCNFZLfMYVmD5apMl7hPFrCaDZVvI9+ZwngIZ8gHzcf2Q+L6LxUT523ypjmRR+T1qYfbOy4UXlfGCyHFBbRB7AbMDk="
| language: go
go:
- 1.2
- 1.3
- 1.4
- tip
install:
- make updatedeps
- go build -o winrm-cli
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get code.google.com/p/go.tools/cmd/cover
- go get github.com/modocache/gover
- go get gopkg.in/check.v1
script:
- make ci
after_script:
- $HOME/gopath/bin/goveralls -service="travis-ci" -coverprofile=profile.cov -repotoken $COVERALLS_TOKEN
matrix:
allow_failures:
- go: tip
env:
global:
secure: "GTrEtbp3sq14Jjz34pgIO0/Zv19YaDOOUJay4qnzGxs527HkW7YdsWENz0/yGHet+0jMOPatfP3uLaQHVFCNFZLfMYVmD5apMl7hPFrCaDZVvI9+ZwngIZ8gHzcf2Q+L6LxUT523ypjmRR+T1qYfbOy4UXlfGCyHFBbRB7AbMDk="
| Make sure we also test on Go 1.4 | Make sure we also test on Go 1.4
| YAML | apache-2.0 | gonkulator/winrm,gonkulator/winrm,sneal/winrm,masterzen/winrm,sneal/winrm,alistairpialek/wingo,alistairpialek/wingo,sneal/winrm,bogdanteleaga/winrm,masterzen/winrm,alistairpialek/wingo,bogdanteleaga/winrm,bogdanteleaga/winrm,pecigonzalo/winrm,pecigonzalo/winrm,gonkulator/winrm |
543c0b87836e63b4052e2a51a6a0dce1748e1362 | .travis.yml | .travis.yml | # vim ft=yaml
language: python
env:
global:
- DEPENDS="requirements.txt"
- COVERAGE=1
python:
- 3.4
- 2.7
install:
- source tools/travis_tools.sh
- virtualenv --python=python venv
- source venv/bin/activate
- python --version # just to check
- retry pip install nose # always
- sudo apt-get install libblas-dev liblapack-dev libatlas3gf-base
- wheelhouse_pip_install ${DEPENDS}
- if [ "${COVERAGE}" == "1" ]; then
pip install coverage;
pip install coveralls;
fi
script:
- make coverage
after_success:
- if [ "${COVERAGE}" == "1" ]; then coveralls; fi
| # vim ft=yaml
language: python
env:
global:
- DEPENDS="requirements.txt"
- COVERAGE=1
python:
- 3.4
- 2.7
install:
- source tools/travis_tools.sh
- virtualenv --python=python venv
- source venv/bin/activate
- python --version # just to check
- retry pip install nose # always
- make test-data
- sudo apt-get install libblas-dev liblapack-dev libatlas3gf-base
- wheelhouse_pip_install ${DEPENDS}
- if [ "${COVERAGE}" == "1" ]; then
pip install coverage;
pip install coveralls;
fi
script:
- make coverage
after_success:
- if [ "${COVERAGE}" == "1" ]; then coveralls; fi
| Add `make test-data` to Travis | Add `make test-data` to Travis | YAML | bsd-3-clause | berkeley-stat159/project-delta |
4b5aa779d8d7bf34f5545b25965daa5cf33d186f | .travis.yml | .travis.yml | ########################################################################
# Copyright (c) 2016 Rogue Wave Software Inc. and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Rogue Wave Software Inc. - initial implementation
########################################################################
language: java
jdk: oraclejdk8
cache:
directories:
- $HOME/.m2
- $HOME/.composer/cache
before-install:
- sudo apt-get -qq update
- sudo apt-get install curl php5-cli git
- curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
| ########################################################################
# Copyright (c) 2016 Rogue Wave Software Inc. and others.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Rogue Wave Software Inc. - initial implementation
########################################################################
language: java
jdk: oraclejdk8
cache:
directories:
- $HOME/.m2
- $HOME/.composer/cache
before_install:
- sudo apt-get -qq update
- sudo apt-get install curl php5-cli git
- curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
| Fix type for before_install phase | Fix type for before_install phase | YAML | epl-1.0 | eclipselabs/lsp4e-php |
6276e2f98737d4e2ed56d84a7432919790a4e38a | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.6
- DJANGO_VERSION=1.7
- DJANGO_VERSION=1.8
install:
- pip install -q Django==$DJANGO_VERSION --use-mirrors
script: python tests/runtests.py
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
env:
- DJANGO_VERSION=1.8
install:
- pip install -q Django==$DJANGO_VERSION --use-mirrors
script: python tests/runtests.py
| Remove Django < 1.8 compatibility | Remove Django < 1.8 compatibility
| YAML | mit | geelweb/django-editos,geelweb/django-editos |
ee96aa3602c17c31de5df3a37cd528c9964e551c | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.4"
- "4.2"
- "0.12"
- "0.10"
after_script:
- codeclimate < coverage/lcov.info
| language: node_js
node_js:
- "5.10"
- "4.4"
- "0.12"
- "0.10"
after_script:
- codeclimate < coverage/lcov.info
| Update node versions for Travis | Update node versions for Travis
| YAML | mit | lumeet/barbarian-ombudsman |
0c44b60c401c2df18baafdd92ba1c420f8f59088 | .travis.yml | .travis.yml | # After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
python:
- 3.4
- 3.5
- 3.5-dev
- nightly
before_install:
- uname -a
- free -m
- df -h
- ulimit -a
- pip install -U 'virtualenv==14.0.6'
- virtualenv --python=python venv
- source venv/bin/activate
- python -V
- python -c "import datetime;print('fold' in dir(datetime.datetime))"
- pip install -r requirements-dev.txt
- pip install codecov
- pip install pytest-cov
script:
- paver test_all
- paver coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
| # After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
python:
- 3.4
- 3.5
- 3.5-dev
- nightly
before_install:
- uname -a
- free -m
- df -h
- ulimit -a
install:
- pip install -U 'virtualenv==14.0.6'
- virtualenv --python=python venv
- source venv/bin/activate
- python -V
- python -c "import datetime;print('fold' in dir(datetime.datetime))"
- pip install -r requirements-dev.txt
- pip install codecov
- pip install pytest-cov
- pip install codecov
- pip install coveralls
script:
- paver test_all
- paver coverage
after_success:
- bash <(curl -s https://codecov.io/bash)
- coveralls
| Add coveralls run to Travis CI. | Add coveralls run to Travis CI.
| YAML | mit | abalkin/tz |
865a9529901a33968b2e85313b8ab7e72e519fa3 | .travis.yml | .travis.yml | sudo: true
language: php
env:
global:
- CHECK_PHP_SYNTAX="no"
matrix:
fast_finish: true
include:
- php: 7.0
env: CHECK_PHP_SYNTAX="yes"
- php: 5.6
- php: hhvm
allow_failures:
- php: hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- sudo add-apt-repository -y ppa:git-core/ppa
- sudo apt-get update && sudo apt-get install git-man && sudo apt-get install -y git
- git --version
- phpenv config-rm xdebug.ini || true
install: composer update --prefer-dist --no-interaction --optimize-autoloader
script:
- phpunit --exclude-group infra
- if [[ "$CHECK_PHP_SYNTAX" == "yes" ]]; then vendor/bin/php-cs-fixer fix --config-file=.php_cs --dry-run --no-interaction --diff; fi;
| sudo: true
language: php
env:
global:
- CHECK_PHP_SYNTAX="no"
matrix:
fast_finish: true
include:
- php: 7.0
env: CHECK_PHP_SYNTAX="yes"
- php: 5.6
cache:
directories:
- $HOME/.composer/cache
before_install:
- sudo add-apt-repository -y ppa:git-core/ppa
- sudo apt-get update && sudo apt-get install git-man && sudo apt-get install -y git
- git --version
- phpenv config-rm xdebug.ini || true
install: composer update --prefer-dist --no-interaction --optimize-autoloader
script:
- phpunit --exclude-group infra
- if [[ "$CHECK_PHP_SYNTAX" == "yes" ]]; then vendor/bin/php-cs-fixer fix --config-file=.php_cs --dry-run --no-interaction --diff; fi;
| Remove HHVM from Travis matrix | Remove HHVM from Travis matrix
| YAML | mit | manala/manalize,manala/manalize |
9decaef0e34958ccd7c239f0a96e078935b390a2 | .travis.yml | .travis.yml | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install icu4c; fi
env:
- MONO_THREADS_PER_CPU=2000
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.1
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
script:
- ./build.sh --quiet verify | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install icu4c; brew install openssl; brew link --force openssl; fi
env:
- MONO_THREADS_PER_CPU=2000
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.1
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
script:
- ./build.sh --quiet verify | Fix OSX build on Travis. | Fix OSX build on Travis.
| YAML | apache-2.0 | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore |
324217f15f9bb5e753d060df175e6be2dd710a0f | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- ree
- 1.9.3
env:
- RAILS_VERSION=2.x
- RAILS_VERSION=3.0.17
- RAILS_VERSION=3.1.8
- RAILS_VERSION=3.2.3
- RAILS_VERSION=3.2.12
- RAILS_VERSION=3.2.12 DB_CHARMER_GEM=1.8.3
notifications:
recipients:
- alexey@kovyrin.net
script: ./ci_build
# Whitelist branches to test
branches:
only:
- master
# Build matrix configuration
matrix:
exclude:
# Do not run Rails 2.x tests on ruby 1.9
- rvm: 1.9.3
env: RAILS_VERSION=2.x
| language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
- RAILS_VERSION=2.x
- RAILS_VERSION=3.0.17
- RAILS_VERSION=3.1.8
- RAILS_VERSION=3.2.3
- RAILS_VERSION=3.2.12
- RAILS_VERSION=3.2.12 DB_CHARMER_GEM=1.8.3
notifications:
recipients:
- alexey@kovyrin.net
script: ./ci_build
# Whitelist branches to test
branches:
only:
- master
# Build matrix configuration
matrix:
exclude:
# Do not run Rails 2.x tests on ruby 1.9
- rvm: 1.9.3
env: RAILS_VERSION=2.x
# Do not run Rails 2.x tests on ruby 2.0
- rvm: 2.0.0
env: RAILS_VERSION=2.x
# Do not run Rails 3.0 tests on ruby 2.0
- rvm: 2.0.0
env: RAILS_VERSION=3.0.17
# Do not run Rails 3.1 tests on ruby 2.0
- rvm: 2.0.0
env: RAILS_VERSION=3.1.8
# Do not run early Rails 3.2 tests on ruby 2.0
- rvm: 2.0.0
env: RAILS_VERSION=3.2.3
| Add ruby 2.0.0 testing to CI, rmeove ree | Add ruby 2.0.0 testing to CI, rmeove ree
| YAML | mit | kovyrin/db-charmer,shtzr840329/db-charmer,shtzr840329/db-charmer,shtzr840329/db-charmer,kovyrin/db-charmer |
8bc2963de68555914600e05cab4a3d34cf32f4c0 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "stable"
- "0.12"
- "0.10"
before_install:
- npm install -g bower grunt-cli
| language: node_js
sudo: false
node_js:
- "5"
- "4"
- "0.12"
- "0.10"
before_install:
- npm install -g bower
| Test on Node 4 and 5 | Test on Node 4 and 5
| YAML | mit | rakuten-frontend/grunt-bower-browser |
121ded933b7dd328f5612e03b83ef18825373857 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
install:
- pip install tox-travis
script: tox
| sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install tox-travis
script: tox
| Add Python 3 version to Travis config. | Add Python 3 version to Travis config.
| YAML | mit | wamonite/envassume |
a3f687da216b1c99c50921f1138a4b3e53921fcf | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.1
sudo: false
## Cache composer bits
cache:
directories:
- $HOME/.composer/cache
install: travis_wait composer install --prefer-source --no-interaction --dev
addons:
code_climate:
repo_token: 0a10962bbc66ee91d96b0e74a9597c2b15548d2155b7df777083e435214e24d3
script: vendor/bin/phpunit --verbose
| language: php
php:
- 5.6
- 7.1
- hhvm
sudo: false
## Cache composer bits
cache:
directories:
- $HOME/.composer/cache
install: travis_wait composer install --prefer-source --no-interaction --dev
addons:
code_climate:
repo_token: 0a10962bbc66ee91d96b0e74a9597c2b15548d2155b7df777083e435214e24d3
script: vendor/bin/phpunit --verbose
| Add test to hhvm engine | Add test to hhvm engine
| YAML | mit | juniorb2ss/laravel-route-extends-macros,juniorb2ss/laravel-route-extends-macros |
cacc9a0a376fe9f9ab9e1a5954b704fba7163a21 | .travis.yml | .travis.yml | sudo: required
language: c
branches:
except:
- packaging
before_install:
- sudo apt-get update
install:
- sudo apt-get install gcc-avr binutils-avr avr-libc valgrind pastebinit
- pip install --user cpp-coveralls
script:
- make -f makefile-avr MCU=atmega328p
- make -f makefile-avr clean
- make all
- make -f makefile-coverage all
after_success:
- coveralls --verbose --exclude test/test.c
- pastebinit -i valgrind.xml
- pastebinit -i massif.out
- pastebinit -i coverage-test.log
| sudo: required
language: c
branches:
except:
- packaging
before_install:
- sudo apt-get update
install:
- sudo apt-get install gcc-avr binutils-avr avr-libc valgrind pastebinit cppcheck
- pip install --user cpp-coveralls
script:
- make -f makefile-avr MCU=atmega328p
- make -f makefile-avr clean
- make all
- make -f makefile-coverage all
after_success:
- coveralls --verbose --exclude test/test.c
- find . -name "*.c" | xargs cppcheck > cppcheck.log
- pastebinit -i cppcheck.log
- pastebinit -i valgrind.xml
- pastebinit -i massif.out
- pastebinit -i coverage-test.log
| Add cppcheck to Travis file | Add cppcheck to Travis file
| YAML | mit | Jacajack/modlib |
eb4cba9869faf95e4872097d8c1829ef991ee7fd | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
include:
- php: 7.0
env: WITH_COVERAGE=true
- php: 5.6
env: WITH_CS=true
- php: 5.5
env:
global:
- TRAVIS_DB=cfp_travis
- CODECLIMATE_REPO_TOKEN=9deb249b01a414d979959cfd05a4c351b19a5959858653b20276454d4189edc3
# cache composer downloads so installing is quicker
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
- composer validate --no-check-publish
install:
- composer install
before_script:
- sh tools/travis/setup-mail.sh
- mysql -e "CREATE DATABASE $TRAVIS_DB" -uroot
- vendor/bin/phinx --configuration=phinx.yml.dist migrate -e testing
script:
- if [[ "$WITH_COVERAGE" == "true" ]]; then vendor/bin/phpunit --coverage-clover build/logs/clover.xml; else vendor/bin/phpunit; fi
- if [[ "$WITH_CS" == "true" ]]; then vendor/bin/php-cs-fixer fix --verbose; fi
after_success:
- if [[ "$WITH_COVERAGE" == "true" ]]; then vendor/bin/test-reporter --coverage-report build/logs/clover.xml; fi
| language: php
sudo: false
matrix:
fast_finish: true
include:
- php: 7.0
env: WITH_COVERAGE=true
- php: 5.6
env: WITH_CS=true
- php: 5.5
env:
global:
- TRAVIS_DB=cfp_travis
- CODECLIMATE_REPO_TOKEN=9deb249b01a414d979959cfd05a4c351b19a5959858653b20276454d4189edc3
# cache composer downloads so installing is quicker
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer self-update
- composer validate --no-check-publish
install:
- composer install
before_script:
- sh tools/travis/setup-mail.sh
- mysql -e "CREATE DATABASE $TRAVIS_DB" -uroot
- vendor/bin/phinx --configuration=phinx.yml.dist migrate -e testing
script:
- if [[ "$WITH_COVERAGE" == "true" ]]; then vendor/bin/phpunit --coverage-clover build/logs/clover.xml; else vendor/bin/phpunit; fi
- if [[ "$WITH_CS" == "true" ]]; then vendor/bin/php-cs-fixer fix --verbose; fi
after_success:
- if [[ "$WITH_COVERAGE" == "true" ]]; then vendor/bin/test-reporter --coverage-report build/logs/clover.xml; fi
| Allow builds to finish early | Fix: Allow builds to finish early
| YAML | mit | pmeth/opencfp,DevOpsDaysChicago/opencfp,jugisahunk/200OK_CFP,localheinz/opencfp,DallasPHP/opencfp,GrUSP/opencfp,opencfp/opencfp,OpenWestConference/opencfp,DallasPHP/opencfp,OpenWestConference/opencfp,monoku/opencfp,mdwheele/opencfp,mdwheele/opencfp,PHPBenelux/opencfp,PHPBenelux/opencfp,PHPBenelux/opencfp,OpenWestConference/opencfp,DevOpsDaysChicago/opencfp,monoku/opencfp,monoku/opencfp,GrUSP/opencfp,DevOpsDaysChicago/opencfp,jugisahunk/200OK_CFP,MidwestPHP/opencfp_mwphp15,opencfp/opencfp,localheinz/opencfp,phphants/opencfp,DallasPHP/opencfp,phphants/opencfp,monoku/opencfp,localheinz/opencfp,jugisahunk/200OK_CFP,MidwestPHP/opencfp_mwphp15,localheinz/opencfp,GrUSP/opencfp,phphants/opencfp,PHPBenelux/opencfp,GrUSP/opencfp,phphants/opencfp,mdwheele/opencfp,OpenWestConference/opencfp,pmeth/opencfp,mdwheele/opencfp,MidwestPHP/opencfp_mwphp15,opencfp/opencfp,MidwestPHP/opencfp_mwphp15,pmeth/opencfp |
ec31ab6450601f527e4909591d80ae0f5d0cc617 | .travis.yml | .travis.yml | language: php
services:
- memcached
env:
global:
- MEMCACHE_HOST=127.0.0.1
- MEMCACHE_PORT=11211
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
# Can't test against 5.2; openssl is not available:
# http://docs.travis-ci.com/user/languages/php/#PHP-installation
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
install:
- composer install
before_script:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- phpenv version-name | grep ^5.[34] && echo "extension=apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini ; true
- phpenv version-name | grep ^5.[34] && echo "apc.enable_cli=1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini ; true
script:
- vendor/bin/phpunit
| language: php
services:
- memcached
env:
global:
- MEMCACHE_HOST=127.0.0.1
- MEMCACHE_PORT=11211
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
# Can't test against 5.2; openssl is not available:
# http://docs.travis-ci.com/user/languages/php/#PHP-installation
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_install:
- composer self-update
install:
- composer install
before_script:
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "extension=memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
- phpenv version-name | grep ^5.[34] && echo "extension=apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini ; true
- phpenv version-name | grep ^5.[34] && echo "apc.enable_cli=1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini ; true
script:
- vendor/bin/phpunit
| Update Composer itself in before_install section | Fix: Update Composer itself in before_install section
| YAML | apache-2.0 | kenichiii/google-api-php-client,ankush1990/google-analytic,bshaffer/google-api-php-client,justindn/google-api-php-client,eboominathan/google-api-php-client,Martialdelastic/google-api-php-client,tofaruk/google-api-php-client,dfredriksen/dnadatascience_experiment1,ricardorivera/repo,linds14sr20det/google-api-php-client,michabbb-backup/google-api-php-client,michabbb-backup/google-api-php-client,yticketfly/google-api-php-client,Nayjest/google-api-php-client,lendormi/ez-google-api-php-client,RobertJGabriel/google-api-php-client,unikent/google-api-php-client,maury91/google-api-php-client,googleapis/google-api-php-client,allain/google-api-php-client,rogerxaic/google-api-php-client,Gataro/google-api-php-client,zahoorkhan/google-api-php-client,techvein/google-api-php-client,eRadical/google-api-php-client,vinod1988/google-api-php-client,chrismoulton/google-api-php-client,philby61/ezisched,lendormi/ez-google-api-php-client,itsazzad/google-api-php-client,dtdpro/google-api-php-client,lendormi/ez-google-api-php-client,tillz/google-api-php-client,masterweb121/google-api-php-client,jayendra03/google-api-php-client,RHermant/google,Jyo1/google_api_php,venogabriel/google-api-php-client,developer-itew/google,lendormi/ez-google-api-php-client,s-chizhik/google-api-php-client,JurreK/ga-test,webmancer/google-api-php-client,crishoj/google-api-php-client,dmitrydymarchuk/google-api-php-client,nickzhuyb/google-api-php-client |
93de7eba6d178caeee4fd8f01254b003c00d3d2f | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
install: composer install
script: "./vendor/bin/phpunit && ./vendor/bin/phpcs --standard=PSR2 -n src/"
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install: composer install
script: "./vendor/bin/phpunit && ./vendor/bin/phpcs --standard=PSR2 -n src/"
| Add PHP7 to build matrix | Add PHP7 to build matrix
| YAML | mit | JustBlackBird/handlebars.php-helpers |
f28552968b21353f3c1269d943bb6a9c1c3d202e | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
script:
- bundle exec rake spec
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.5
matrix:
fast_finish: true
deploy:
provider: rubygems
api_key:
secure: H7huqPGNv8bnpHl9IMiBCXOXod+LOGIpZWhABNHssw2do2c9vC1rO79Df/aLk09EITt7L2Xbs4AGfz5T70gL6iZZtQyWF1/NApSxSKUM7QZIW1p5VT7gMdfxR9Jk18XTJGHt7da1hoMPhLLOIrtF62lJyEDBjCTN+nBeZYhu6c8=
on:
rvm: 2.1.5
tags: true
all_branches: true
notifications:
email: false
| language: ruby
sudo: false
cache: bundler
script:
- bundle exec rake spec
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.5
matrix:
fast_finish: true
deploy:
provider: rubygems
api_key:
secure: "H7huqPGNv8bnpHl9IMiBCXOXod+LOGIpZWhABNHssw2do2c9vC1rO79Df/aLk09EITt7L2Xbs4AGfz5T70gL6iZZtQyWF1/NApSxSKUM7QZIW1p5VT7gMdfxR9Jk18XTJGHt7da1hoMPhLLOIrtF62lJyEDBjCTN+nBeZYhu6c8="
on:
rvm: 2.1.5
tags: true
all_branches: true
notifications:
email: false
| Use quotes for rubygems api key | Use quotes for rubygems api key
| YAML | apache-2.0 | voxpupuli/puppet-lint-file_ensure-check,puppet-community/puppet-lint-file_ensure-check,camptocamp/puppet-lint-file_ensure-check |
25be21cf955051176e3b1a22a3729d27ef83b180 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- ruby-head
before_script:
- gem install --no-rdoc --no-ri --version '~> 2.5.2' test-unit
- gem install --no-rdoc --no-ri --version '~> 0.7.1' rake-compiler
script: rake test
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- ruby-head
branches:
only:
- master
before_script:
- gem install --no-rdoc --no-ri --version '~> 2.5.2' test-unit
- gem install --no-rdoc --no-ri --version '~> 0.7.1' rake-compiler
script: rake test
| Update Travis CI configuration -- select only master branch. | Update Travis CI configuration -- select only master branch.
Signed-off-by: Krzysztof Wilczynski <9bf091559fc98493329f7d619638c79e91ccf029@linux.com>
| YAML | apache-2.0 | kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz,kwilczynski/ruby-fizzbuzz |
8d629d1a9a469f7a5edcdbf2225e03345633de35 | .travis.yml | .travis.yml | language: ruby
sudo: false
matrix:
include:
- rvm: jruby-9.2.8.0
- rvm: 2.4.6
- rvm: 2.5.5
- rvm: 2.6.3
- rvm: jruby-head
- rvm: ruby-head
- rvm: 2.6.3
install: true # This skips 'bundle install'
script: gem build *.gemspec && gem install *.gem
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
fast_finish: true
before_install:
- gem install bundler
cache: bundler
notifications:
email: false
| language: ruby
sudo: false
matrix:
include:
- rvm: jruby-9.2.9.0
- rvm: 2.4.9
- rvm: 2.5.7
- rvm: 2.6.5
- rvm: jruby-head
- rvm: ruby-head
- rvm: 2.6.5
install: true # This skips 'bundle install'
script: gem build *.gemspec && gem install *.gem
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
fast_finish: true
before_install:
- gem install bundler
cache: bundler
notifications:
email: false
| Test with latest Ruby versions on Travis | Test with latest Ruby versions on Travis
| YAML | mit | twingly/twingly-url |
217bb66d1d7403b317f9933840e5644d2c884a52 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
after_success:
- mvn cobertura:cobertura coveralls:report
| language: java
after_success:
- mvn cobertura:cobertura coveralls:report
| Remove java version specification entirely | Remove java version specification entirely | YAML | apache-2.0 | physikerwelt/WikidataListGenerator |
fa8977ebc45e27ca9ef4c72dfc4560bd218afdde | .travis.yml | .travis.yml | language: rust
cache: cargo
services: docker
rust:
- stable
- beta
- nightly
install:
- cargo install cross || true
- source ~/.cargo/env || true
script:
- cross build --target $TARGET
- cross build --target $TARGET --release
env:
- TARGET=armv7-unknown-linux-musleabihf
- TARGET=armv7-unknown-linux-gnueabihf
matrix:
allow_failures:
- rust: nightly
| language: rust
cache: cargo
services: docker
rust:
- stable
- beta
- nightly
install:
- cargo install cross || true
- source ~/.cargo/env || true
script:
- cross build --target $TARGET
- cross build --target $TARGET --release
env:
- TARGET=armv7-unknown-linux-musleabihf
- TARGET=armv7-unknown-linux-gnueabihf
matrix:
allow_failures:
- rust: beta
- rust: nightly
| Allow beta builds to fail | Allow beta builds to fail
| YAML | mit | golemparts/blinkt |
05e33ed814a7dd93d8328f4746593e6709bd334f | .travis.yml | .travis.yml | rvm:
- ree
- 1.9.2
bundler_args: --without development
| rvm:
- ree
- 1.9.2
- 1.9.3
bundler_args: --without development
| Add 1.9.3 to Travis CI | Add 1.9.3 to Travis CI
| YAML | mit | fiverr/active_attr,estum/active_attr,cgriego/active_attr,lloydk/active_attr,HaiTo/active_attr |
26add4ea4e41ed78f56891a3aecc0a0d88f8e2be | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
script:
- npm test
| ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install
script:
- npm test
| Remove bower install from Travis config | Remove bower install from Travis config
| YAML | mit | alisdair/ember-deploy-tagging-git,greyhwndz/ember-deploy-tagging-git |
a3c034ab672b14329ed465dc39d944a6ec42872f | .travis.yml | .travis.yml | dist: xenial
language: python
virtualenv:
system_site_packages: true
services:
- mysql
- xvfb
cache:
directories:
- /usr/share/dragonfire
before_install:
- mysql -u root -e "CREATE DATABASE dragonfire;"
install:
- sudo ./install-dev.sh --no-model
- sudo pip3 install pytest-faulthandler
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
- python3 -m pytest --capture=sys
notifications:
on_success: change
on_failure: change # `always` will be the setting once code changes slow down
| dist: bionic
language: python
virtualenv:
system_site_packages: true
services:
- mysql
- xvfb
cache:
directories:
- /usr/share/dragonfire
before_install:
- mysql -u root -e "CREATE DATABASE dragonfire;"
install:
- sudo ./install-dev.sh --no-model
- sudo pip3 install pytest-faulthandler
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
- python3 -m pytest --capture=sys
notifications:
on_success: change
on_failure: change # `always` will be the setting once code changes slow down
| Upgrade Travis CI distro to Ubuntu Bionic 18.04 | :green_heart: Upgrade Travis CI distro to Ubuntu Bionic 18.04
| YAML | mit | DragonComputer/Dragonfire,DragonComputer/Dragonfire,DragonComputer/Dragonfire,mertyildiran/Dragonfire,mertyildiran/Dragonfire |
8445a067ae4b8158c108145cc9715b4ae6e5a88c | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: cpp
services:
- docker
branches:
only:
- master
- develop
before_install:
- docker build -t travis-build -f infrastructure/tools/Dockerfile .
script:
# Common style check
- docker run --rm travis-build infrastructure/tools/checkstyle.sh $TRAVIS_COMMIT_RANGE
# Run tests
- docker run --rm travis-build /bin/bash -c "fab test_all"
| sudo: required
dist: trusty
language: cpp
services:
- docker
branches:
only:
- master
- develop
before_install:
- docker build -t travis-build -f infrastructure/tools/Dockerfile .
script:
# Common style check
- docker run --rm travis-build infrastructure/tools/checkstyle.sh $TRAVIS_COMMIT_RANGE
# Test whole project with pylint (can find issues in multiple files)
- docker run --rm travis-build /bin/bash -c "pylint --rcfile=.pylintrc ./pylua"
# Run tests
- docker run --rm travis-build /bin/bash -c "fab test_all"
| Check whole project with pylint on CI | Check whole project with pylint on CI
| YAML | mit | malirod/pylua,malirod/pylua |
f03ed49ab743c230717418fdb6e97c0e59f48960 | .travis.yml | .travis.yml | sudo: false
language: go
# https://github.com/golang/go/wiki/Go-Release-Cycle#release-maintenance
go:
- 1.7
- 1.8
- 1.x
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script:
- go get -v github.com/mattn/goveralls
- go get -v github.com/go-playground/overalls
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- overalls -project github.com/nochso/bytesort -covermode count -- -race -v
- $HOME/gopath/bin/goveralls -coverprofile=overalls.coverprofile -service=travis-ci
| sudo: false
language: go
# https://github.com/golang/go/wiki/Go-Release-Cycle#release-maintenance
go:
- 1.7
- 1.8
- 1.x
- tip
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
matrix:
allow_failures:
- go: tip
fast_finish: true
script:
- go get -v github.com/mattn/goveralls
- go get -v github.com/go-playground/overalls
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- overalls -project github.com/nochso/bytesort -covermode count -- -race -v
- $HOME/gopath/bin/goveralls -coverprofile=overalls.coverprofile -service=travis-ci
| Test Go tip but allow failure | Test Go tip but allow failure
| YAML | mit | nochso/bytesort |
97429bbf6fe45dda3b9cd06bdb4c3d03a6f63847 | .travis.yml | .travis.yml | # don't build tags, it's redundant
if: tag IS blank
git:
depth: 3
language: node_js
node_js:
- "10"
- "8"
- "6"
os:
- linux
- windows
env:
global:
- NO_UPDATE_NOTIFIER=1
- NODE_NO_WARNINGS=1
matrix:
fast_finish: true
cache:
directories:
- $HOME/.npm
# - '%APPDATA%\npm-cache'
before_install:
- npm config set loglevel warn
- npm install --global npm@latest
# - set PATH=%APPDATA%\npm;"C:\Program Files\Git\mingw64\bin";%PATH%
install: npm ci
before_script:
- git config --global user.email test@example.com
- git config --global user.name "Tester McPerson"
script:
- npm run ci
notifications:
slack: lernajs:qHyrojRoqBBu7OhDyX1OMiHQ
| # don't build tags, it's redundant
if: tag IS blank
git:
depth: 3
language: node_js
node_js:
- "10"
- "8"
os:
- linux
- windows
env:
global:
- NO_UPDATE_NOTIFIER=1
- NODE_NO_WARNINGS=1
matrix:
fast_finish: true
cache:
directories:
- $HOME/.npm
# - '%APPDATA%\npm-cache'
before_install:
- npm config set loglevel warn
# - set PATH=%APPDATA%\npm;"C:\Program Files\Git\mingw64\bin";%PATH%
install: npm ci
before_script:
- git config --global user.email test@example.com
- git config --global user.name "Tester McPerson"
script:
- npm run ci
notifications:
slack: lernajs:qHyrojRoqBBu7OhDyX1OMiHQ
| Drop node v6, stop re-installing latest npm | build: Drop node v6, stop re-installing latest npm
| YAML | mit | kittens/lerna,evocateur/lerna,evocateur/lerna,lerna/lerna,lerna/lerna,lerna/lerna,sebmck/lerna |
42c138c052dc61966c019597b532c26f0e896b2f | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
before_script:
- composer self-update
- composer install --dev --no-interaction
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
before_script:
- composer self-update
- composer install --dev --no-interaction
| Add PHP 7.3 in Travis builds | Add PHP 7.3 in Travis builds
| YAML | mit | RiskioFr/oauth2-auth0 |
d70f019da406c672653a5edbe09712210dcd4450 | .travis.yml | .travis.yml | script: "gem install foodcritic -v 1.7.0 && foodcritic -f any ."
rvm:
- 1.9.3
| script: "gem install foodcritic -v 2.0.0 && foodcritic -f any ."
rvm:
- 1.9.3
| Update to the latest TravisCI | Update to the latest TravisCI
| YAML | apache-2.0 | realityforge/chef-logstash |
3ae6381f78d8b71e5d33bc93bb3102e2aac15dd6 | .travis.yml | .travis.yml | language: java
before_install:
- sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev libglew-dev libpng-dev
- make clean -C C-Genetics/libs/AntTweakBar/src
- make -C C-Genetics/libs/AntTweakBar/src
- make clean -C C-Genetics
- make -C C-Genetics
script: ant test | language: java
before_install:
- sudo apt-get install libglu1-mesa-dev freeglut3-dev mesa-common-dev libglew-dev libpng-dev
- make clean -C C-Genetics/libs/AntTweakBar/src
- make -C C-Genetics/libs/AntTweakBar/src
- make clean -C C-Genetics
- make -C C-Genetics
script: mvn test | Use Maven in the Travis CI configuration | Use Maven in the Travis CI configuration
| YAML | mit | Tyler-Yates/AestheticFractals |
7d2a3bf80b95c19fe3b2e101d619e3091bd06d4f | .travis.yml | .travis.yml | # This file enables the Travis continuous integration system, which
# automatically builds and tests joda-time for each GitHub commit or
# pull request on three separate JDKs.
#
# For more information, see https://travis-ci.org
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
| # This file enables the Travis continuous integration system, which
# automatically builds and tests joda-time for each GitHub commit or
# pull request on three separate JDKs.
#
# For more information, see https://travis-ci.org
sudo: false
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
| Update Travis to new infrastructure | Update Travis to new infrastructure
| YAML | apache-2.0 | Shais14/joda-time,JodaOrg/joda-time,flightstats/joda-time,flightstats/joda-time,tingting703/mp3_maven,Alexey-N-Chernyshov/IU_AST_Mutation_Score,Shais14/joda-time,tingting703/mp3_maven,Alexey-N-Chernyshov/IU_AST_Mutation_Score,mosoft521/joda-time,JodaOrg/joda-time,mosoft521/joda-time |
451c60ad4c8bb231a921fbb99fae9cc03a24e6db | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
env:
- CHEF_VERSION=10.30.2
- CHEF_VERSION=11.8.2
before_script:
- chef-client --version
| language: ruby
rvm:
- 1.9.3
- 2.1.1
env:
- CHEF_VERSION=10.32.2
- CHEF_VERSION=11.12.0
before_script:
- chef-client --version
| Update Chef to the latest 10 and 11 releases | Update Chef to the latest 10 and 11 releases
Also run tests using Ruby 2.1.1
| YAML | mit | bmarini/knife-inspect |
61288ce83386505d4bfcb031e3570ef88d60c1a4 | .travis.yml | .travis.yml | language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
- "pypy3"
install: pip install -r test-requirements.txt
script: py.test tests --cov=./reobject
| language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
- "pypy3"
install: pip install -r test-requirements.txt
script: py.test tests --cov=./reobject
| Drop support for Python 3.2 | Drop support for Python 3.2
| YAML | apache-2.0 | onyb/reobject,onyb/reobject |
a89c9b9f36de52ad9fe8796ee5d58d1e8e0414c2 | .travis.yml | .travis.yml | # Travis-CI Build
# see travis-ci.org for details
language: c
# Make sure mono is installed
install:
- sudo apt-get install mono-devel mono-gmcs
- mozroots --import --sync
# Run the Build script
script:
- git submodule update --init
# Run Tests
after_script:
- xbuild CI-build.msbuild /t:Test
# Notify development list when needed
notifications:
recipients:
- exkazuu@gmail.com
email:
on_success: change
on_failure: always
| # Travis-CI Build
# see travis-ci.org for details
language: c
# Make sure mono is installed
install:
- sudo apt-get install mono-devel mono-gmcs python python3
- mozroots --import --sync
# Run the Build script
script:
- git submodule update --init
# Run Tests
after_script:
- xbuild CI-build.msbuild /t:Test
# Notify development list when needed
notifications:
recipients:
- exkazuu@gmail.com
email:
on_success: change
on_failure: always
| Fix Travis-CI script to install Python | Fix Travis-CI script to install Python
| YAML | apache-2.0 | exKAZUu/Code2Xml,exKAZUu/Code2Xml,exKAZUu/Code2Xml,exKAZUu/Code2Xml |
6035604a46ed526a72c1b592c2893de8198b9b27 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- 2.6
- 2.7
- 3.3
- 3.4
before_script:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then 2to3 -n -w --no-diffs ec2ansible tests; fi
script:
- python setup.py test
| language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
before_script:
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then 2to3 -n -w --no-diffs ec2ansible tests; fi
script:
- python setup.py test
| Remove support of Python 2.6 | Remove support of Python 2.6
| YAML | mit | hehachris/ec2ansible |
7f1fb8ebc310e8df58f44e5dfa7cd62c3556f7b0 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
before_script:
- "npm run dts"
| language: node_js
node_js:
- "4.1"
before_script:
- "npm run dts"
| Use Node.js 4.1.x for Travis CI | Use Node.js 4.1.x for Travis CI
| YAML | mit | sirotama/misskey-api,misskey-delta/Misskey-API,MissKernel/Misskey-API,sirotama/misskey-api,misskey-delta/Misskey-API |
91df048ad2f30e09bec7a3cc7e09587aa5c35e52 | .travis.yml | .travis.yml | language: r
cache: packages
matrix:
include:
- os: linux
r: bioc-release
- os: linux
r: bioc-devel
- os: osx
r: bioc-release
allow_failures:
- os: osx
- r: bioc-devel
fast_finish: true
branches:
only:
- master
env:
global:
- LINTR_COMMENT_BOT=true
r_packages:
- covr
bioc_packages:
- BiocCheck
- GenomeInfoDbData
r_github_packages:
- acidgenomics/lintr
after_success:
- Rscript -e 'lintr::lint_package()'
- Rscript -e 'covr::codecov()'
- R CMD BiocCheck .
notifications:
email:
recipients:
- mike@steinbaugh.com
on_success: change
on_failure: change
| language: r
cache: packages
matrix:
include:
- os: linux
r: bioc-release
- os: linux
r: bioc-devel
- os: osx
r: bioc-release
allow_failures:
- os: osx
- r: bioc-devel
fast_finish: true
branches:
only:
- master
env:
global:
- LINTR_COMMENT_BOT=true
r_packages:
- covr
bioc_packages:
- BiocCheck
- GenomeInfoDbData
r_github_packages:
- acidgenomics/lintr
after_success:
- R CMD BiocCheck .
- Rscript -e 'lintr::lint_package()'
- Rscript -e 'covr::codecov()'
notifications:
email:
recipients:
- mike@steinbaugh.com
on_success: change
on_failure: change
| Improve Travis CI config | Improve Travis CI config [ci skip] | YAML | mit | steinbaugh/worminfo,mjsteinbaugh/metadata-elegans,seqcloud/worminfo |
34de7a17477578b66e559368d82be97cf2c3dd01 | .travis.yml | .travis.yml | language: python
before_install: >
travis_retry sudo apt-get install python python-setuptools
python-virtualenv python-dev gcc swig dialog libaugeas0 libssl-dev
install:
- travis_retry python setup.py dev # installs tox
- travis_retry pip install coveralls
script: travis_retry tox
after_success: coveralls
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=lint
- TOXENV=cover
notifications:
email: false
irc: "chat.freenode.net#letsencrypt"
| language: python
before_install: >
travis_retry sudo apt-get install python python-setuptools
python-virtualenv python-dev gcc swig dialog libaugeas0 libssl-dev
install:
- travis_retry python setup.py dev # installs tox
- travis_retry pip install coveralls
script: travis_retry tox
after_success: '[ "$TOXENV" == "cover" ] && coveralls'
env:
- TOXENV=py26
- TOXENV=py27
- TOXENV=lint
- TOXENV=cover
notifications:
email: false
irc: "chat.freenode.net#letsencrypt"
| Make coveralls dependent on the TOXENV variable being "cover" | Make coveralls dependent on the TOXENV variable being "cover"
| YAML | apache-2.0 | mrb/letsencrypt,sjerdo/letsencrypt,lbeltrame/letsencrypt,DavidGarciaCat/letsencrypt,jmaurice/letsencrypt,fmarier/letsencrypt,BKreisel/letsencrypt,luorenjin/letsencrypt,vcavallo/letsencrypt,kuba/letsencrypt,goofwear/letsencrypt,mrb/letsencrypt,BillKeenan/lets-encrypt-preview,g1franc/lets-encrypt-preview,skynet/letsencrypt,ghyde/letsencrypt,rugk/letsencrypt,BKreisel/letsencrypt,Bachmann1234/letsencrypt,letsencrypt/letsencrypt,rlustin/letsencrypt,skynet/letsencrypt,Sveder/letsencrypt,riseofthetigers/letsencrypt,rugk/letsencrypt,piru/letsencrypt,jtl999/certbot,bsmr-misc-forks/letsencrypt,stewnorriss/letsencrypt,modulexcite/letsencrypt,solidgoldbomb/letsencrypt,ahojjati/letsencrypt,jmaurice/letsencrypt,fmarier/letsencrypt,tyagi-prashant/letsencrypt,PeterMosmans/letsencrypt,brentdax/letsencrypt,twstrike/le_for_patching,twstrike/le_for_patching,VladimirTyrin/letsencrypt,lbeltrame/letsencrypt,hsduk/lets-encrypt-preview,kuba/letsencrypt,martindale/letsencrypt,beermix/letsencrypt,wteiken/letsencrypt,brentdax/letsencrypt,digideskio/lets-encrypt-preview,sjerdo/letsencrypt,deserted/letsencrypt,lmcro/letsencrypt,xgin/letsencrypt,tdfischer/lets-encrypt-preview,dietsche/letsencrypt,riseofthetigers/letsencrypt,armersong/letsencrypt,hlieberman/letsencrypt,bestwpw/letsencrypt,diracdeltas/lets-encrypt-preview,bsmr-misc-forks/letsencrypt,modulexcite/letsencrypt,Jonadabe/letsencrypt,dietsche/letsencrypt,rutsky/letsencrypt,Hasimir/letsencrypt,hsduk/lets-encrypt-preview,Jonadabe/letsencrypt,g1franc/lets-encrypt-preview,stweil/letsencrypt,ruo91/letsencrypt,sapics/letsencrypt,stewnorriss/letsencrypt,beermix/letsencrypt,bestwpw/letsencrypt,rlustin/letsencrypt,BillKeenan/lets-encrypt-preview,ruo91/letsencrypt,jsha/letsencrypt,Bachmann1234/letsencrypt,jmhodges/letsencrypt,deserted/letsencrypt,Sveder/letsencrypt,jtl999/certbot,vcavallo/letsencrypt,digideskio/lets-encrypt-preview,mitnk/letsencrypt,ahojjati/letsencrypt,letsencrypt/letsencrypt,Jadaw1n/letsencrypt,piru/letsencrypt,tyagi-prashant/letsencrypt,wteiken/letsencrypt,rutsky/letsencrypt,jmhodges/letsencrypt,jsha/letsencrypt,kevinlondon/letsencrypt,tdfischer/lets-encrypt-preview,martindale/letsencrypt,DavidGarciaCat/letsencrypt,solidgoldbomb/letsencrypt,stweil/letsencrypt,TheBoegl/letsencrypt,goofwear/letsencrypt,mitnk/letsencrypt,ghyde/letsencrypt,PeterMosmans/letsencrypt,diracdeltas/lets-encrypt-preview,kevinlondon/letsencrypt,thanatos/lets-encrypt-preview,VladimirTyrin/letsencrypt,Hasimir/letsencrypt,sapics/letsencrypt,lmcro/letsencrypt,Jadaw1n/letsencrypt,luorenjin/letsencrypt,armersong/letsencrypt,hlieberman/letsencrypt,thanatos/lets-encrypt-preview,xgin/letsencrypt,TheBoegl/letsencrypt |
14c73bb584358838339ad9a7b50065279437be77 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
services:
- mongodb
env:
- MONGOID_VERSION=3
- MONGOID_VERSION=4
| language: ruby
env:
- MONGOID_VERSION=3
- MONGOID_VERSION=4
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-2
env: MONGOID_VERSION=4
services:
- mongodb
| Allow failure of mongoid 4 on Rubinius | Allow failure of mongoid 4 on Rubinius
| YAML | mit | kierangraham/delayed_job_mongoid,davidrv/delayed_job_mongoid,collectiveidea/delayed_job_mongoid,matekb/delayed_job_mongoid,dblock/delayed_job_mongoid,amw/delayed_job_mongoid |
452c40ee32af415bc1c11bb37bb8d3f6be77b08a | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
- "6"
before_script:
- export TZ=Europe/Madrid
script: npm run travis
after_success:
- 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls'
cache:
yarn: true
| language: node_js
node_js:
- "10"
- "8"
- "6"
before_script:
- export TZ=Europe/Madrid
script: npm run travis
after_success:
- 'cat ./coverage/lcov.info | ./node_modules/.bin/coveralls'
cache:
yarn: true
| Add Node v10 to Travis CI | Add Node v10 to Travis CI
| YAML | mit | guigrpa/jest-html,guigrpa/jest-html |
e8455a5292586e1d3b74d29a55c8430ac925b651 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
install: pip install .
script: py.test tests/
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
install: pip install .
script: py.test tests/
| Add Python 3.5/3.6 to Travis builds | Add Python 3.5/3.6 to Travis builds
| YAML | mit | rev112/pyope |
8cd179867929754a3d1b04f7251696845bd1cf9d | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.4
branches:
only:
- master
script: make deps test
| sudo: false
language: go
# Ensure cloned file modes match test cases
before_install: umask 0022
go:
- 1.4
branches:
only:
- master
script: make deps test
| Set umask for Travis to fix tests | Set umask for Travis to fix tests
| YAML | mpl-2.0 | hashicorp/atlas-go,hashicorp/atlas-go |
c0f11930fe789716c85e7dd48451fc18cce15c6d | .travis.yml | .travis.yml | language: node_js
cache:
yarn: true
directories:
- node_modules
node_js:
- "4"
- "6"
- "node"
after_success:
- "nyc report --reporter=text-lcov | coveralls"
| language: node_js
cache:
yarn: true
directories:
- node_modules
node_js:
- "4"
- "6"
- "node"
script:
- yarn lint
- yarn test
after_success:
- "nyc report --reporter=text-lcov | coveralls"
| Add linting back to Travis CI config | Add linting back to Travis CI config
| YAML | mit | wKovacs64/hibp,wKovacs64/hibp,wKovacs64/hibp |
184902a5ad86bd53c267a5a341a49b2853a78409 | .travis.yml | .travis.yml |
language: python
python:
- 3.2
- 3.3
- 3.4
- pypy3
install:
- sudo add-apt-repository ppa:webupd8team/java -y
- sudo apt-get update
- sudo apt-get install oracle-java8-installer
- sudo update-java-alternatives -s jdk-8-oracle-x64
- pip install scrutinizer-ocular coverage webtest httmock requests ppp_datamodel ppp_core jsonrpclib-pelix nltk
- echo "y
y
y
" | python -m nltk.downloader wordnet
before_script:
- ./dependencies.sh
- ./setup.py install
script:
- rm ppp_questionparsing_grammatical* -rf
- coverage3 run run_tests.py
after_script:
- ocular --data-file ".coverage"
|
language: python
python:
- 3.2
- 3.3
- 3.4
- pypy3
install:
- sudo add-apt-repository ppa:webupd8team/java -y
- sudo apt-get update
- sudo apt-get install oracle-java8-installer
- pip install scrutinizer-ocular coverage webtest httmock requests ppp_datamodel ppp_core jsonrpclib-pelix nltk
- echo "y
y
y
" | python -m nltk.downloader wordnet
before_script:
- ./dependencies.sh
- ./setup.py install
script:
- rm ppp_questionparsing_grammatical* -rf
- coverage3 run run_tests.py
after_script:
- ocular --data-file ".coverage"
| Revert "Fix java on Travis?" | Revert "Fix java on Travis?"
This reverts commit 88065fa4e37d72e8cf7f22c91b58b5d4b8beec3d.
| YAML | agpl-3.0 | ProjetPP/PPP-QuestionParsing-Grammatical,ProjetPP/PPP-QuestionParsing-Grammatical |
a7a513658003a3c6055cf06c1e9150a801dfaed0 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- "7.4.0"
before_script:
- npm install -g grunt-cli
| Update build to node version that support ecma6 | Update build to node version that support ecma6
| YAML | mit | imdone/imdone-core,imdone/imdone-core |
68ad901a3aabf856754b4f7f868be872a2426490 | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
- ruby-head
- rbx
- jruby
- jruby-head
script:
- rake spec
matrix:
allow_failures:
- rvm: 2.1.0
- rvm: ruby-head
- rvm: jruby-head
notifications:
irc: "irc.freenode.org#pry"
recipients:
- jrmair@gmail.com
branches:
only:
- master
| rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
- ruby-head
- rbx
- jruby
- jruby-head
script:
- rake spec
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
irc: "irc.freenode.org#pry"
recipients:
- jrmair@gmail.com
branches:
only:
- master
| Remove allowed failure, switch to testing newest 2.1 | Remove allowed failure, switch to testing newest 2.1
Because of Ruby's new versioning scheme, testing 2.1.0 and 2.1.1
separately is overkill (like testing multiple patch levels of earlier
Ruby versions).
| YAML | mit | 85x14/pry,ooohiroyukiooo/pry,icebreaker/pry,gfvcastro/pry,jasonm23/pry,jasnow/pry,josue804/debunker,bronzdoc/pry,ooohiroyukiooo/pry,printercu/pry,tdg5/pry,pvdb/pry,caporta/pry,nju520/pry,geoffreylitt/pry,caporta/pry,printercu/pry,shockone/pry,josue804/debunker,tdg5/pry,icebreaker/pry,raeno/pry,jasnow/pry,85x14/pry,scalixte-mdsol/pry,shockone/pry,geoffreylitt/pry,raeno/pry,ooohiroyukiooo/pry,scalixte-mdsol/pry,85x14/pry,caporta/pry,scalixte-mdsol/pry,nju520/pry,sferik/pry,bronzdoc/pry,pvdb/pry,sferik/pry,jasnow/pry,jasonm23/pry,jasonm23/pry,tdg5/pry,nju520/pry,raeno/pry,ngpestelos/pry,shockone/pry,gfvcastro/pry,ngpestelos/pry |
f2270a1681006a0da25a1bb3049b078c8162fe89 | .travis.yml | .travis.yml | language: ruby
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler
- bundle --version
# Install pahantomjs
- mkdir travis-phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2
- tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs
- export PATH=$PWD/travis-phantomjs:$PATH
install: bundle install --without development
rvm:
- 2.4
- 2.5
- 2.6
matrix:
fast_finish: true
include:
-
rvm: 2.4
env: SUITE="rubocop"
gemfile: Gemfile
gemfile:
- gemfiles/sidekiq_5.0.gemfile
- gemfiles/sidekiq_5.1.gemfile
- gemfiles/sidekiq_5.2.gemfile
- gemfiles/sidekiq_6.0.gemfile
| language: ruby
services:
- redis-server
cache: bundler
before_install:
- gem update --system
- gem --version
- gem install bundler
- bundle --version
# Install pahantomjs
- mkdir travis-phantomjs
- wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2
- tar -xvf $PWD/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.tar.bz2 -C $PWD/travis-phantomjs
- export PATH=$PWD/travis-phantomjs:$PATH
install: bundle install --without development
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
matrix:
fast_finish: true
include:
-
rvm: 2.4
env: SUITE="rubocop"
gemfile: Gemfile
gemfile:
- gemfiles/sidekiq_5.0.gemfile
- gemfiles/sidekiq_5.1.gemfile
- gemfiles/sidekiq_5.2.gemfile
- gemfiles/sidekiq_6.0.gemfile
| Add Ruby 2.7 in the build matrix | CI: Add Ruby 2.7 in the build matrix
| YAML | mit | sensortower/sidekiq-throttled,sensortower/sidekiq-throttled,sensortower/sidekiq-throttled |
32ac546542b94404293c3ee474078c07c5f38470 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: node_js
node_js:
- "8"
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- npm install npm@5 -g
- npm install -g @angular/cli@latest
- npm install -g karma
install:
- npm install | sudo: false
dist: trusty
language: node_js
node_js:
- "8"
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
before_install:
- npm install npm@5 -g
- npm install -g @angular/cli@latest
- npm install -g karma
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install
script: karma start config/karma.conf.js --single-run | Add karma cmd directly and add some option to start chrome | Add karma cmd directly and add some option to start chrome
| YAML | mit | cmalaboeuf/mean-docker-compose,cmalaboeuf/angular2-blog,cmalaboeuf/mean-docker-compose,cmalaboeuf/angular2-blog,cmalaboeuf/angular2-blog,cmalaboeuf/mean-docker-compose,cmalaboeuf/angular2-blog,cmalaboeuf/mean-docker-compose |
8d404ddb9682a6d14033329837dcac92f217dec2 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- hhvm
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
before_script:
- composer self-update
- composer update --no-interaction $COMPOSER_OPTS
script:
- mkdir -p build/logs
- vendor/bin/phpunit -c phpunit.xml.dist --coverage-text
after_script:
- php vendor/bin/coveralls
| language: php
php:
- 5.6
- 7.0
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
before_script:
- composer self-update
- composer update --no-interaction $COMPOSER_OPTS
script:
- mkdir -p build/logs
- vendor/bin/phpunit -c phpunit.xml.dist --coverage-text
after_script:
- php vendor/bin/coveralls
| Remove HHVM from Travis build | Remove HHVM from Travis build
| YAML | mit | neeckeloo/NewRelic |
94dd31b179d3431cfbbc3aab11fa5e249076dabc | .travis.yml | .travis.yml | ---
language: php
sudo: false
php:
- 7
- 7.1
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache
notifications:
email: false
slack:
secure: QDE52Y7qq+PEEy6xagZ/eIJ2pd/BCCq0quN41pl+iwKXO72dlNlLINuro0Mis/dNlzMrmdwKLDBsl+r0Kkqq6L7TpnnpziVX88fBvMl4PXxkfJJwSV0fiBcXBz1hJi9E/n22gOVvO1orUBMSVTx5IDzVAEssnzABrPshoReEejw=
addons:
firefox: "31.0"
install: composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
before_script:
- mkdir -p build/logs
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "nohup java -jar vendor/se/selenium-server-standalone/composer/bin/selenium-server-standalone.jar > /dev/null 2> /dev/null &"
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
| ---
language: php
sudo: false
php:
- 7.0
- 7.1
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache
notifications:
email: false
slack:
secure: QDE52Y7qq+PEEy6xagZ/eIJ2pd/BCCq0quN41pl+iwKXO72dlNlLINuro0Mis/dNlzMrmdwKLDBsl+r0Kkqq6L7TpnnpziVX88fBvMl4PXxkfJJwSV0fiBcXBz1hJi9E/n22gOVvO1orUBMSVTx5IDzVAEssnzABrPshoReEejw=
addons:
firefox: "31.0"
install: composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
before_script:
- mkdir -p build/logs
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "nohup java -jar vendor/se/selenium-server-standalone/composer/bin/selenium-server-standalone.jar > /dev/null 2> /dev/null &"
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
| Test on 7.0 and 7.1 separately | Test on 7.0 and 7.1 separately
| YAML | bsd-3-clause | OpenBuildings/phpunit-spiderling,OpenBuildings/phpunit-spiderling |
326c3528a9516aad172b3db935ea29abb120b4b0 | .travis.yml | .travis.yml | dist: xenial
language: python
cache: pip
service:
- postgresql
- mysql
python:
- "3.7"
env:
- TESTING_DB=sqlite3
- TESTING_DB=postgresql
- TESTING_DB=mysql
before_install:
- psql -c "CREATE USER evennia WITH PASSWORD 'password'; CREATE DATABASE evennia; GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;'"
- mysql -e "CREATE USER 'evennia'@'localhost' IDENTIFIED BY 'password'; CREATE DATABASE evennia; ALTER DATABASE `evennia` CHARACTER SET utf8; GRANT ALL PRIVILEGES ON evennia.* TO 'evennia'@'localost'; FLUSH PRIVILEGES;" -U postgres
install:
- pip install psycopg2-binary
- pip install mysqlclient
- pip install -e .
- pip install coveralls
before_script:
- python -VV
- evennia --init testing_mygame
- cp .travis/testing_settings.py testing_mygame/server/conf/settings.py
- cd testing_mygame
- evennia migrate
script:
- coverage run --source=../evennia --omit=*/migrations/*,*/urls.py,*/test*.py,*.sh,*.txt,*.md,*.pyc,*.service ../bin/unix/evennia test evennia
after_success:
- coveralls
| dist: xenial
language: python
cache: pip
service:
- postgresql
- mysql
python:
- "3.7"
env:
- TESTING_DB=sqlite3
- TESTING_DB=postgresql
- TESTING_DB=mysql
install:
- pip install psycopg2-binary
- pip install mysqlclient
- pip install -e .
- pip install coveralls
before_script:
- psql -U postgres -c "CREATE USER evennia WITH PASSWORD 'password'; CREATE DATABASE evennia; GRANT ALL PRIVILEGES ON DATABASE evennia TO evennia;'"
- mysql -u root -e "CREATE USER 'evennia'@'localhost' IDENTIFIED BY 'password'; CREATE DATABASE evennia; ALTER DATABASE `evennia` CHARACTER SET utf8; GRANT ALL PRIVILEGES ON evennia.* TO 'evennia'@'localost'; FLUSH PRIVILEGES;" -U postgres
- python -VV
- evennia --init testing_mygame
- cp .travis/testing_settings.py testing_mygame/server/conf/settings.py
- cd testing_mygame
- evennia migrate
script:
- coverage run --source=../evennia --omit=*/migrations/*,*/urls.py,*/test*.py,*.sh,*.txt,*.md,*.pyc,*.service ../bin/unix/evennia test evennia
after_success:
- coveralls
| Move db install to later | Move db install to later
| YAML | bsd-3-clause | jamesbeebop/evennia,jamesbeebop/evennia,jamesbeebop/evennia |
9cf300a9bf22effa1baeb5369f6430a0bd9081c5 | .travis.yml | .travis.yml |
language: objective-c
matrix:
include:
- osx_image: xcode7.2
env:
global:
- LC_CTYPE=en_US.UTF-8
git:
submodules: false
before_install:
- git submodule update --init --recursive
script:
- pod lib lint
- set -o pipefail
- xcodebuild test -workspace ESNotification.xcworkspace -scheme ESNotification_OSX -configuration Debug | xcpretty -c
- xcodebuild test -workspace ESNotification.xcworkspace -scheme ESNotification_iOS -configuration Debug -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 6s" | xcpretty -c
notifications:
email: false
|
language: objective-c
matrix:
include:
- osx_image: xcode7.2
env:
global:
- LC_CTYPE=en_US.UTF-8
git:
submodules: false
branches:
only:
- master
cache: bundler
bundler_args: --without production --deployment
before_install:
- git submodule update --init --recursive
script:
- pod lib lint
- set -o pipefail
- xcodebuild test -workspace ESNotification.xcworkspace -scheme ESNotification_OSX -configuration Debug | xcpretty -c
- xcodebuild test -workspace ESNotification.xcworkspace -scheme ESNotification_iOS -configuration Debug -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 6s" | xcpretty -c
notifications:
email: false
| Use cache for bundle install in CI. | Use cache for bundle install in CI.
| YAML | mit | EZ-NET/ESNotification,EZ-NET/ESNotification |
20c2ff344344be18168ef66398eb6c894cb4a69f | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
addons:
code_climate:
repo_token: 26489f9e854fcdf7e7660ba29c1455694685465b1f90329a79f7d2bf448acb61
install:
- rm composer.lock
- composer install
- php artisan env
- mv -v .env.testing .env
script:
- phpunit
after_script:
- php vendor/bin/coveralls
| language: php
php:
- 5.5
- 5.6
addons:
code_climate:
repo_token: 26489f9e854fcdf7e7660ba29c1455694685465b1f90329a79f7d2bf448acb61
install:
- rm composer.lock
- composer install
- php artisan env
- mv -v .env.testing .env
script:
- phpunit --debug
after_script:
- php vendor/bin/coveralls
| Add debug output to phpunit. | Add debug output to phpunit.
| YAML | agpl-3.0 | tonicospinelli/firefly-iii,JC5/firefly-iii,firefly-iii/firefly-iii,tonicospinelli/firefly-iii,firefly-iii/firefly-iii,tonicospinelli/firefly-iii,firefly-iii/firefly-iii,tonicospinelli/firefly-iii,JC5/firefly-iii,firefly-iii/firefly-iii |
3af42f80ceeb89ebc9acf01ed4296067e2d53e7b | .travis.yml | .travis.yml | language: java
script:
- javac -version
jdk:
- oraclejdk8
notifications:
email:
on_success: never
on_failure: never
| before_install:
- echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | /usr/bin/debconf-set-selections
- sudo add-apt-repository ppa:webupd8team/java
- sudo apt-get update
- sudo apt-get install oracle-java8-installer
script:
- echo $JAVA_HOME
- javac -version
notifications:
email:
on_success: never
on_failure: never
| Use Java 8 from webupd8 team. | Use Java 8 from webupd8 team.
| YAML | apache-2.0 | schleichardt/travis-ci-playground,schleichardt/travis-ci-playground |
dfda906a0843ed10c822622a3e22c7930ee8eff2 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
env:
matrix:
- DJANGO="Django>=1.8,<1.9" # 1.8
- DJANGO="Django>=1.9,<1.10" # 1.9
- DJANGO="Django>=1.10,<1.11" # 1.10
- DJANGO="Django>=1.11,<1.12" # 1.11
- DJANGO="Django>=2.0,<2.1" # 2.0
- DJANGO="Django>=2.1,<2.2" # 2.0
cache: pip
install:
- pip install "$DJANGO" pipenv
- pipenv lock -r > requirements.txt
- pip install -r requirements.txt
- pip install coveralls
matrix:
exclude:
- python: "2.7"
env: DJANGO="Django>=2.0,<2.1" # 2.0
- python: "3.4"
env: DJANGO="Django>=1.9,<1.10"
script:
- coverage run --source=easy manage.py test
after_success:
coveralls
| language: python
python:
- "3.4"
- "3.5"
- "3.6"
env:
matrix:
- DJANGO="Django>=1.8,<1.9" # 1.8
- DJANGO="Django>=1.9,<1.10" # 1.9
- DJANGO="Django>=1.10,<1.11" # 1.10
- DJANGO="Django>=1.11,<1.12" # 1.11
- DJANGO="Django>=2.0,<2.1" # 2.0
- DJANGO="Django>=2.1,<2.2" # 2.1
cache: pip
install:
- pip install "$DJANGO" pipenv
- pipenv lock -r > requirements.txt
- pip install -r requirements.txt
- pip install coveralls
matrix:
exclude:
- python: "3.4"
env: DJANGO="Django>=2.1,<2.2" # 2.1
- python: "3.4"
env: DJANGO="Django>=1.9,<1.10" # 1.8
script:
- coverage run --source=easy manage.py test
after_success:
coveralls
| Remove support to Python 2.7 and Django < 1.8, add suport do Django 2.1 | Remove support to Python 2.7 and Django < 1.8, add suport do Django 2.1
| YAML | mit | ebertti/django-admin-easy,ebertti/django-admin-easy |
2f0ec5f2158afaeb4a377861d625712897c357bf | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "5.2.0"
- "io.js"
- "0.12"
- "0.10"
| sudo: false
language: node_js
node_js:
- "6.5.0"
- "4.5.0"
- "0.12"
- "0.10"
| Test on latest node version | Test on latest node version
| YAML | mit | almost/string-replace-stream |
ace8c137909b647b20ec6d62d8f5d6180621a137 | .travis.yml | .travis.yml | language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- tip
gobuild_args: -tags no_pkg_config
dist: xenial
sudo: required
before_install:
- sudo apt-get update
- sudo apt-get install bison flex automake autoconf libtool make gcc
- wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v3.6.3.tar.gz | tar -C ${TRAVIS_BUILD_DIR} -xzf -
- ( cd ${TRAVIS_BUILD_DIR}/yara-3.6.3 && ./bootstrap.sh && ./configure && make )
- export CGO_CFLAGS=-I${TRAVIS_BUILD_DIR}/yara-3.6.3/libyara/include
- export CGO_LDFLAGS=-L${TRAVIS_BUILD_DIR}/yara-3.6.3/libyara/.libs
- export LD_LIBRARY_PATH=${TRAVIS_BUILD_DIR}/yara-3.6.3/libyara/.libs
| language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- tip
gobuild_args: -tags no_pkg_config
dist: xenial
sudo: required
before_install:
- sudo apt-get update
- sudo apt-get install bison flex automake autoconf libtool make gcc
- wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v3.6.3.tar.gz | tar -C ${TRAVIS_BUILD_DIR} -xzf -
- ( cd ${TRAVIS_BUILD_DIR}/yara-3.6.3 && ./bootstrap.sh && ./configure && make )
- export CGO_CFLAGS=-I${TRAVIS_BUILD_DIR}/yara-3.6.3/libyara/include
- export CGO_LDFLAGS=-L${TRAVIS_BUILD_DIR}/yara-3.6.3/libyara/.libs
- export LD_LIBRARY_PATH=${TRAVIS_BUILD_DIR}/yara-3.6.3/libyara/.libs
| Add go 1.9.x to Travis configuration | Add go 1.9.x to Travis configuration
| YAML | bsd-2-clause | hillu/go-yara,hillu/go-yara,VirusTotal/go-yara |
8187d9f6996bffd06d5359725fc65f9c528e62e3 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
| language: ruby
cache: bundler
rvm:
- 2.4.2
- 2.3.5
- 2.2.8
| Update Ruby versions in Travis | Update Ruby versions in Travis
| YAML | mit | Yleisradio/yle_tf,Yleisradio/yle_tf |
907360691c56a164fa4479779d4abc57d6685dd9 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- hhvm
env:
- DB=mysql
before_script:
- if [[ "$DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS hris;" -uroot; fi
- composer self-update
- composer install --prefer-source --no-interaction
- chmod -R 777 storage
- chmod -R 777 bootstrap/cache
- cp .env.testing .env
- php artisan migrate --env=testing --no-interaction -vvv
- php artisan db:seed --env=testing --no-interaction -vvv
script: vendor/bin/phpunit
before_install:
- pip install --user codecov
after_success:
- codecov
| language: php
php:
- 5.5
- 5.6
- hhvm
- 7.0
env:
- DB=mysql
before_script:
- if [[ "$DB" == "mysql" ]]; then mysql -e "create database IF NOT EXISTS hris;" -uroot; fi
- composer self-update
- composer install --prefer-source --no-interaction
- chmod -R 777 storage
- chmod -R 777 bootstrap/cache
- cp .env.testing .env
- php artisan migrate --env=testing --no-interaction -vvv
- php artisan db:seed --env=testing --no-interaction -vvv
script: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
before_install:
- pip install --user codecov
after_success:
- codecov
| Use Clover Coverage in PHPUnit | Use Clover Coverage in PHPUnit
| YAML | bsd-3-clause | bkintanar/HRis,bkintanar/HRis |
f44eb511ea6f08a6d4fd84511875ddd5d5246413 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install: travis_retry composer install --no-interaction --prefer-source
| language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
install: travis_retry composer install --no-interaction --prefer-source
| Remove support for PHP 5.4. | Remove support for PHP 5.4.
| YAML | mit | srph/qp |
6a23c3e06196dc3b00882b1c643b1fa095aa5c89 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.11'
- '0.10'
env:
global:
- secure: uIW4rSQhjUw/FEQbETsldAFo55Olan4xW9EWcpTAyznpssmvLl+dF1lonTNETF5FCd5SAaiuhm7Tf9C4LgEJHENbou6TttPeGfaaXG7ZLVPKqyMQr/2o2pLIr8BzGQfefqtQqtn84Mz1LT7DxtMjJ2IVFC0ZUHSqK6L+4dukquU=
- secure: KXq1aLFdE3jxVz7P13kqzI66vzlrEUxPXBuzPXafzPXoyyofLsJlB+x28npZPHB/VKKBCxREIe3ahQlhDxEbXdYhf558k9Z5bVy0uaU/370yM8CL+IwQNRV5IAePwcqcmhWX1OmVD1gp4UXO4mkpNn7fEuiDLkTRKFzDwRYAtSs=
notifications:
email: false
before_script: npm install -g karma-cli
addons:
sauce_connect: true
| language: node_js
node_js:
- '0.11'
- '0.10'
env:
global:
- secure: uIW4rSQhjUw/FEQbETsldAFo55Olan4xW9EWcpTAyznpssmvLl+dF1lonTNETF5FCd5SAaiuhm7Tf9C4LgEJHENbou6TttPeGfaaXG7ZLVPKqyMQr/2o2pLIr8BzGQfefqtQqtn84Mz1LT7DxtMjJ2IVFC0ZUHSqK6L+4dukquU=
- secure: KXq1aLFdE3jxVz7P13kqzI66vzlrEUxPXBuzPXafzPXoyyofLsJlB+x28npZPHB/VKKBCxREIe3ahQlhDxEbXdYhf558k9Z5bVy0uaU/370yM8CL+IwQNRV5IAePwcqcmhWX1OmVD1gp4UXO4mkpNn7fEuiDLkTRKFzDwRYAtSs=
notifications:
email: false
before_script: npm install -g karma-cli
| Test if sauce_connect is not necessary | Test if sauce_connect is not necessary
| YAML | mit | ceesgeene/polyformfill |
e84fb249831fec787dee20031b20c28c3bf5a60e | .travis.yml | .travis.yml | sudo: false
language: generic
os:
- osx
- linux
osx_image: xcode9
git:
depth: 200
env:
global:
- BINSTAR_USER: menpo
matrix:
- PYTHON_VERSION: 3.6
- PYTHON_VERSION: 3.7
install:
- wget https://raw.githubusercontent.com/menpo/condaci/v0.4.x/condaci.py -O condaci.py
- python condaci.py setup --channels conda-forge
script:
- ~/miniconda/bin/python condaci.py build ./conda
notifications:
slack:
rooms:
- menpo:19gyWImMkOfCj0iDAgTbDlDA
on_success: :change
on_failure: :change
email: false
| sudo: false
language: generic
git:
depth: 200
env:
global:
- BINSTAR_USER=menpo
matrix:
include:
- os: osx
osx_image: xcode9
env: PYTHON_VERSION=3.6
- os: osx
osx_image: xcode9
env: PYTHON_VERSION=3.7
- os: linux
env: PYTHON_VERSION=3.6
- os: linux
env: PYTHON_VERSION=3.7
install:
- wget https://raw.githubusercontent.com/menpo/condaci/v0.4.x/condaci.py -O condaci.py
- python condaci.py setup --channels conda-forge
script:
- ~/miniconda/bin/python condaci.py build ./conda
notifications:
slack:
rooms:
- menpo:19gyWImMkOfCj0iDAgTbDlDA
on_success: change
on_failure: change
email: false
| Make the Travis build matrix more explicit | Make the Travis build matrix more explicit
| YAML | bsd-3-clause | menpo/menpo,patricksnape/menpo,patricksnape/menpo,menpo/menpo,patricksnape/menpo,menpo/menpo |
00d36bb8a6f0bf1da35a79b327d1b14f25d41b7e | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
# Don't CI feature branches, but note that this *does* CI PR merge commits --
# including before they're made.
branches:
only:
- master
notifications:
webhooks:
urls:
- 'https://webhooks.gitter.im/e/5b83f4ce9cca865c832c'
on_success: change # options: [always|never|change] default: change
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
| language: node_js
node_js:
- '0.10'
# Don't CI feature branches, but note that this *does* CI PR merge commits --
# including before they're made.
branches:
only:
- master
notifications:
webhooks:
urls:
- 'https://webhooks.gitter.im/e/5b83f4ce9cca865c832c'
on_success: change # options: [always|never|change] default: change
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
env:
global:
- secure: "L6vgB5AL91xvQSwsxefY4YXghIzO3ztM3S/A2BCrrGVGCf5NnIYgTZIXOKSNlr2S+UYQMpPhJbvEp2DwTl68hZAquRpS7wB1ad+zQvtFTRgsjeWWIWpLEpOvOHuXROLeEofKQ962aOsPWU91S+3JC8xlpmlo7qjreO8+/ghZfOk="
| Add `RACKSPACE_API_KEY` as encrypted Travis environment variable | Add `RACKSPACE_API_KEY` as encrypted Travis environment variable
| YAML | mit | zoomhub/zoomhub,zoomhub/zoomhub,zoomhub/zoomhub,zoomhub/zoomhub |
44ab8e0dc1d89f43dad0ebfca9c1a025798e3af9 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
notifications:
email: false
| language: go
sudo: false
go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
notifications:
email: false
| Add Go 1.7 and latest | Add Go 1.7 and latest
Go 1.7 was released recently and it seems useful to test against the Go tip as
well, for people that run release candidates.
| YAML | mit | DramaFever/go.uuid,nanjj/uuid,satori/go.uuid,eurie-inc/go.uuid,gofrs/uuid |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.