commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
bbd25e1724386130436b37a8550aa33f023f2088 | .travis.yml | .travis.yml | language: node_js
before_install: 'npm i auto-package@^0.2.0 mightyiam@^1.1.5 policystat@^1.0.2 && node package.js'
env:
global:
- secure: SnpYBD6/J+Uct2LMvDWyGiUqyANrdT8cMxaocNIQenpkc2SVuK5A5PbUYRd2AkIYomjZffzdB/ljabUdXhofUZqdkHDDYDUg5/I9jUv/qO7HtMiKIgdmhKKHignvUII4G9tEm6rtpuZPZqi9XsH/lx+yMB1fGSlJfKwOpwrs3js=
- ... | language: node_js
before_install: 'npm i auto-package@^0.2.0 mightyiam@^1.1.5 policystat@^1.0.2 && node package.js'
# temporarily disable unit testing in browsers until we get it running properly
script: 'npm run license && npm run docs && npm run lint'
env:
global:
- secure: SnpYBD6/J+Uct2LMvDWyGiUqyANrdT8cMxaocNI... | Disable browser testing in CI | Disable browser testing in CI
| YAML | bsd-3-clause | PolicyStat/edited |
4496e94e663cdd2e800ed88d5b91c5da4cc5c848 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
script: bundle exec rake test
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- rbx-19mode
- jruby-19mode
matrix:
allow_failures:
- rvm: 1.8.7
- rvm: rbx-18mode
- rvm: jruby-18mode
script: bundle exec rake test
| Add additional Rubies to test against | Add additional Rubies to test against
| YAML | mit | timkurvers/waddup |
627c2a21a42c474cee8fa3b7b4b1e3b979940538 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
script: 'bundle exec rake test:coverage --trace'
rvm:
- 2.2
- 2.3
- jruby-9000
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9000 # See https://github.com/department-of-veterans-affairs/connect_vbms/iss... | language: ruby
sudo: false
cache: bundler
script: 'bundle exec rake test:coverage --trace'
rvm:
- 2.2.4
- 2.3.0
- jruby-9000
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9000 # See https://github.com/department-of-veterans-affairs/connect_vbms... | Fix supported versions for Travis CI | Fix supported versions for Travis CI
| YAML | mit | hanami/utils,vyper/utils,pascalbetz/hanami-utils,artofhuman/utils,hanami/utils,artofhuman/utils,lotus/utils,pascalbetz/hanami-utils |
c57bfc14aff7f2bdc494443ed2b743d26bf3182b | .travis.yml | .travis.yml | language: java
sudo: false
dist: trusty
before_install:
- unset _JAVA_OPTIONS
install: echo "The default Travis install script is being skipped!"
matrix:
include:
# Java 9
- jdk: oraclejdk9
env: TARGET='-Pjava9'
# Java 10
- env: TARGET='-Pjava10'
jdk: oraclejdk10
# Java 11
- ... | language: java
sudo: false
dist: trusty
before_install:
- unset _JAVA_OPTIONS
install: echo "The default Travis install script is being skipped!"
matrix:
include:
# Java 9
- jdk: oraclejdk9
env: TARGET='-Pjava9'
# Java 10
- env: TARGET='-Pjava10'
jdk: oraclejdk10
# Java 11
- ... | Use Java 10 target due to error in previous Byte Buddy version that is used by build plugin. | Use Java 10 target due to error in previous Byte Buddy version that is used by build plugin.
| YAML | apache-2.0 | raphw/byte-buddy,raphw/byte-buddy,DALDEI/byte-buddy,raphw/byte-buddy |
660aed300378c83c473c0ed9fc05e49d5795d7ff | .travis.yml | .travis.yml | language: ruby
before_install:
- "VBoxManage -v"
rvm:
- 1.9.3
- 2.0
- 2.1
notifications:
irc: "chat.freenode.net#veewee"
| language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
notifications:
irc: "chat.freenode.net#veewee"
| Revert "check vbox version before doing anything" | Revert "check vbox version before doing anything"
This reverts commit 920eec4db3432008927d3156fa7799c4fd0a151e.
| YAML | mit | mcnster/veewee,courtney-miles/veewee,cliffrowley/veewee,fxposter/veewee,cgvarela/veewee,cgvarela/veewee,nitrocode/veewee,Falkor/veewee,caphrim007/veewee,cgvarela/veewee,cliffrowley/veewee,fxposter/veewee,nettucu/veewee,swiftstack/veewee,cgvarela/veewee,jordant/veewee,jedi4ever/veewee,mcnster/veewee,mcnster/veewee,ngpes... |
f57e10beb9fb312facbcf9f35b375c8abebf7f57 | .travis.yml | .travis.yml | language: c
# On Ubuntu, run in Travis Container
sudo: false
# Use Ubuntu 16.04 Xenial (for Clang 7)
dist: xenial
# helps to use actual GCC on OSX (not Clang!) and Clang version 6
osx_image: xcode10
# build matrix with both OSes and Compilers
os:
- linux
- osx
compiler:
- clang
- gcc
cache:
- ccache
addons:
... | language: c
# On Ubuntu, run in Travis Container
sudo: false
# Use Ubuntu 16.04 Xenial (for Clang 7)
dist: xenial
# helps to use actual GCC on OSX (not Clang!) and Clang version 6
osx_image: xcode10
# build matrix with both OSes and Compilers
os:
- linux
- osx
compiler:
- clang
- gcc
cache:
- ccache
addons:
... | Change OSX package installation to use addons feature | Change OSX package installation to use addons feature
| YAML | agpl-3.0 | saxbophone/libsaxbospiral |
a31ec709d325cedffb83d7a3b27153269ec4e6ee | .travis.yml | .travis.yml | language: node_js
node_js: "10"
cache:
yarn: true
branches:
except:
- /^v\d/
install:
- yarn install
jobs:
include:
- stage: lint & test
script:
- yarn run lint
- yarn run test
- stage: lighthouse test
script:
- yarn global add firebase-tools
- yarn run... | language: node_js
node_js: "10"
cache:
yarn: true
branches:
except:
- /^v\d/
before_install:
- npm install -g yarn
install:
- yarn install
jobs:
include:
- stage: lint & test
script:
- yarn run lint
- yarn run test
- stage: lighthouse test
script:
- yarn glo... | Install yarn with npm to have the last version | Install yarn with npm to have the last version
| YAML | mit | abdonrd/abdonrd.com,abdonrd/abdonrd.com |
6b7bc80d537c5b870e040491aca272f06291b977 | .travis.yml | .travis.yml | language: python
sudo: false
cache: pip
python:
- "3.6.2"
script:
- make test
- make lint
- make isort
| language: python
sudo: false
cache: pip
python:
- "3.6.2"
script:
- make setup
- make test
- make lint
- make isort
| Add setup to the ci | Add setup to the ci
| YAML | mit | arturfelipe/condobus,arturfelipe/condobus,arturfelipe/condobus,arturfelipe/condobus |
a29b1c4ed640d6d01e8552c192ee2a24f20ad7c0 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- jruby-1.7.26
- jruby-9.1.7.0
| dist: trusty
language: ruby
sudo: false
cache: bundler
rvm:
- jruby-1.7.26
- jruby-9.1.14.0
| Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | jbox-web/jenkins-plugin-base |
9af723a970505eb076737d5363f47cfb165fca20 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 0.12
- iojs
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "iojs"
- "iojs-v1"
- "iojs-v2"
| Update Travis for Node v4 | Update Travis for Node v4 | YAML | mit | continuationlabs/hapi-scope-start |
6891aa386a3cebb8a7dfebdbc71a21cc9a2d8670 | .travis.yml | .travis.yml | language: python
python:
- "3.2"
env:
- QT_API=PyQt4
- QT_API=PyQt5
- PEP8=1
- COV=1
matrix:
allow_failures:
- env: COV=1
- env: PEP8=1
- env: QT_API=PyQt5
virtualenv:
system_site_packages: true
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
... | language: python
python:
- "3.2"
env:
- QT_API=PyQt4
- QT_API=PyQt5
- PEP8=1
- COV=1
matrix:
allow_failures:
- env: COV=1
- env: PEP8=1
- env: QT_API=PyQt5
virtualenv:
system_site_packages: true
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
... | Reset pyqode.core branch to develop | Travis: Reset pyqode.core branch to develop
| YAML | mit | mmolero/pyqode.python,pyQode/pyqode.python,zwadar/pyqode.python,pyQode/pyqode.python |
35d172bb69495469059c8b3aac57ee6be20b3c7e | src/Surfnet/StepupMiddleware/CommandHandlingBundle/Resources/config/processors.yml | src/Surfnet/StepupMiddleware/CommandHandlingBundle/Resources/config/processors.yml | services:
surfnet_stepup_middleware_command_handling.processor.email:
class: Surfnet\StepupMiddleware\CommandHandlingBundle\Processor\EmailProcessor
arguments:
- "@surfnet_stepup_middleware_command_handling.service.second_factor_mail"
- "@surfnet_stepup_middleware_api.service... | services:
surfnet_stepup_middleware_command_handling.processor.email:
class: Surfnet\StepupMiddleware\CommandHandlingBundle\Processor\EmailProcessor
arguments:
- "@surfnet_stepup_middleware_command_handling.service.second_factor_mail"
- "@surfnet_stepup_middleware_api.service... | Add comments for overwritten service arguments | Add comments for overwritten service arguments
| YAML | apache-2.0 | SURFnet/Stepup-Middleware,SURFnet/Stepup-Middleware,OpenConext/Stepup-Middleware,OpenConext/Stepup-Middleware |
e3aba60199f0acdeb8ba6aba4862163a66f8af27 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- make
| language: node_js
node_js:
- 0.6
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
| Remove `make` from Travis CI build. | Remove `make` from Travis CI build.
First successful build on Travis CI unlocked.
Closes #6.
| YAML | mit | bigeasy/stencil,bigeasy/stencil,bigeasy/stencil |
f1f29c9a8503514a1e4fea18742629165670f6f8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- make prepare
- make develop # NOTE: no extras yet. Let's keep this simple
script:
- python -m pytest src
| language: python
python:
- "2.7"
install:
- make prepare
- make develop # NOTE: no extras yet. Let's keep this simple
script:
- make test
| Use test target instead of pytest directly | Use test target instead of pytest directly
This is better because there are some things that aught to be taken care
of before anyway. Also for some reason collecting the batchSystemTest.py
tests caused a segfault on mac and was causing Travis to hang. Didn't
investigate further...
| YAML | apache-2.0 | BD2KGenomics/slugflow,BD2KGenomics/slugflow |
d5be8bc034ba0fab519cac6b448c1a39f5ba6038 | .travis.yml | .travis.yml |
language: python
python:
- "3.5"
- "3.6"
install:
- pip install sympy sphinx
script:
- cd docs && make travis
|
language: python
python:
#- "3.5" # with this version we have some broken doctests
- "3.6"
install:
- pip install sympy sphinx
script:
- cd docs && make travis
| Remove Python 3.5 from Travis CI. | Remove Python 3.5 from Travis CI.
| YAML | mit | massimo-nocentini/simulation-methods,massimo-nocentini/simulation-methods |
5851dc3cacd691ebc08c237cd21d637d18c566ef | .travis.yml | .travis.yml | notifications:
email:
recipients:
- tim.beadle@gmail.com
language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
before_script:
- npm install -g grunt-cli
| notifications:
email:
recipients:
- tim.beadle@gmail.com
language: node_js
node_js:
- "8"
- "7"
- "6"
- "5"
- "4"
before_script:
- npm install -g grunt-cli
| Add node_js 8 support in readiness for release 8 later in the month | Add node_js 8 support in readiness for release 8 later in the month
| YAML | mit | Bartvds/grunt-tv4,timbeadle/grunt-tv4 |
d3916bc26d3360bb1c3e3fbee70bca71b14c030a | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- echo 'date.timezone = "UTC"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --dev -o -n
- vendor/bin/phpunit --version
- mkdir -p build/logs
script:
# - vendor/... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
before_script:
- echo 'date.timezone = "UTC"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- curl -sS https://getcomposer.org/installer | php
- php composer.phar install --dev -o -n
- vendor/bin/phpunit --version
- mkdir -p build/logs
scrip... | Add PHP 5.6 and 7.0 to test matrix | Add PHP 5.6 and 7.0 to test matrix
| YAML | mit | scriptotek/php-alma-client |
b4fde2ae23514f9771af44f6db35e2aa452b454f | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode11
before_install:
- bundle update
jobs:
include:
- script: bundle exec fastlane test
name: UnitTests
- script: bundle exec fastlane screenshots_limited
name: UITests
| language: objective-c
osx_image: xcode11.2
before_install:
- bundle update
jobs:
include:
- script: bundle exec fastlane test
name: UnitTests
- script: bundle exec fastlane screenshots_limited
name: UITests
| Use Xcode 10.2 as Environment | Use Xcode 10.2 as Environment
| YAML | mit | criticalmaps/criticalmaps-ios,headione/criticalmaps-ios,criticalmaps/criticalmaps-ios,criticalmaps/criticalmaps-ios |
7fe32c6fe13d078a072a50af1a3b4f7f34356d45 | .travis.yml | .travis.yml | sudo: false
language: python
dist: xenial
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install pipenv
- pipenv install --dev
script:
- pipenv run python -m pytest --cov-report term-missing --cov=pytac
- pipenv run flake8
after_success:
- coveralls
| sudo: false
language: python
dist: xenial
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
install:
- pip install pipenv
- pipenv install --dev
script:
- pipenv run python -m pytest --cov-report term-missing --cov=pytac
- pipenv run flake8
after_success:
- coveralls
| Drop Python 3.4 support on Travis. | Drop Python 3.4 support on Travis.
| YAML | apache-2.0 | willrogers/pytac,willrogers/pytac |
0baeebec4f989c28f15561c3fa6d1a94004bb7ae | .travis.yml | .travis.yml | language: csharp
matrix:
include:
- os: osx
osx_image: xcode9
sudo: required
dotnet: 2.0.0
before_install:
- brew update
install:
- ulimit -n4096
script:
- dotnet test src/Dotnet.Script.Tests/Dotnet.Script.Tests.csproj | language: csharp
matrix:
include:
- os: osx
osx_image: xcode9
sudo: required
before_install:
- brew update
- curl https://dot.net/v1/dotnet-install.sh -o dotnet-install.sh
- chmod +x dotnet-install.sh
- ./dotnet-install.sh --channel 2.0
install:
- ulimit -n4096
script:
- ... | Use install script for dotnet sdk | Use install script for dotnet sdk
| YAML | mit | filipw/dotnet-script,filipw/dotnet-script |
b704529270decbcaa266768c22de161098fa1d78 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
sudo: false
install:
- "pip install -U pip 'setuptools!=26.*'"
- "pip install ."
- "pip install -r test_requirements.txt"
- "pip install flake8"
before_script: "flake8 --max-complexity 10 src/brotli test"
script:
- >
if [[ $TRAVIS_PYTHON... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
cache:
pip: true
directories:
- $HOME/.ccache
env:
global:
- PATH="/usr/lib/ccache:$PATH"
sudo: false
install:
- "pip install -U pip 'setuptools!=26.*'"
- "pip install ."
- "pip install -r test_requirements.txt"
- "pi... | Enable ccache and pip cache in Travis. | Enable ccache and pip cache in Travis. | YAML | mit | python-hyper/brotlipy |
e1e2b67bdaf10d442877cb293425e40ee5272400 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
| Test on node version 4 and 5 | Test on node version 4 and 5
| YAML | mit | gillstrom/thx |
aab3550083bc258f61bb7dbc4089f090a734a1c1 | .travis.yml | .travis.yml | language: node_js
sudo: false
notifications:
email:
recipients:
- tristan.wright@kitware.com
- sebastien.jourdain@kitware.com
on_success: change
on_failure: always
cache:
directories:
- node_modules
node_js:
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolch... | language: node_js
sudo: false
notifications:
email:
recipients:
- tristan.wright@kitware.com
- sebastien.jourdain@kitware.com
on_success: change
on_failure: always
cache:
directories:
- node_modules
node_js:
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolch... | Fix documentation publication for branch master | chore(Travis): Fix documentation publication for branch master
| YAML | bsd-3-clause | Kitware/paraviewweb,Kitware/paraviewweb,Kitware/paraviewweb,Kitware/paraviewweb |
49c389592df80e596aa58884e6c1cb52357443bf | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- 'nodejs'
matrix:
fast_finish: true
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
scrip... | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- 'node'
matrix:
fast_finish: true
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:... | Test properly against latest Node version | Test properly against latest Node version
| YAML | mit | timkurvers/byte-buffer |
41cb664f7ba335b294836bdd53eda3d11998f914 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
- "nightly"
install:
- pip install -r requirements/development python-coveralls
script:
- make testlocal
after_success:
- coveralls
| language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
- "nightly"
install:
- pip install -U -r requirements/development python-coveralls
# inspect.getargspec is removed with Python 3.6 onwards, not all libraries like this yet.
- env | grep TRAVIS_PYTHON_VERSION
-... | Fix coverage and pep8 on py36 | Fix coverage and pep8 on py36
| YAML | mit | zoni/docker-image-updater |
2761c1a64c50956809f193fa845942492e1c7c0f | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v 1.17.3"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- jruby-9.1.5.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-... | ---
language: ruby
sudo: false
cache: bundler
before_install: "gem install bundler -v '< 2.0'"
bundler_args: --without tools
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.0
- ruby-head
- jruby-9.1.5.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby... | Change to be more flexible with bundler version | Change to be more flexible with bundler version
| YAML | mit | piotrmurach/tty-prompt,peter-murach/tty-prompt |
5dd8b2164b7abb8377bb2364df31fe5386104309 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
services:
- docker
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- wget -O- http://neuro.debian.net/lists/trusty.us-nh.full | sudo tee /etc/apt/sources.list.d/neurodebian.sources.list
- sudo apt-key adv --recv-keys --keyserver hkp://pool.sks-keyserver... | sudo: required
dist: xenial
language: python
services:
- docker
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
before_install:
- wget -O- http://neuro.debian.net/lists/trusty.us-nh.full | sudo tee /etc/apt/sources.list.d/neurodebian.sources.list
- sudo apt-key adv --recv-keys --keyserver hkp://pool.sks-keyserver... | Move to 16.064 on TravisCI | Move to 16.064 on TravisCI
| YAML | bsd-3-clause | dctrud/clair-singularity,dctrud/clair-singularity |
19b72191017a50703b76a39dbceb52de01419a6c | .travis.yml | .travis.yml | os:
- linux
- osx
- windows
language: node_js
node_js:
- node
- 10
cache:
directories:
- node_modules
| os:
- linux
- osx
# - windows
language: node_js
node_js:
- node
- 10
cache:
directories:
- node_modules
| Disable CI on windows due to hanging Travis setup | Disable CI on windows due to hanging Travis setup
Lets not block the CI. Will be sorted as part of #195 | YAML | mit | adambom/parallel.js,parallel-js/parallel.js,adambom/parallel.js,parallel-js/parallel.js |
e8f6e1d6df81bf761acdf4e9b040a87598312388 | .travis.yml | .travis.yml | addons:
apt:
packages:
- libgmp-dev
env: RAKE_TASK=spec
cache: bundler
language: ruby
matrix:
include:
- env: RAKE_TASK=rubocop
rvm: '2.3'
rvm:
- '2.3'
- '2.2'
- '2.1'
- '2.0'
- 'jruby-9'
- 'rbx-2'
script: bundle exec rake $RAKE_TASK
sudo: false
| addons:
apt:
packages:
- libgmp-dev
env: JRUBY_OPTS=--debug RAKE_TASK=spec
cache: bundler
language: ruby
matrix:
include:
- env: RAKE_TASK=rubocop
rvm: '2.3'
rvm:
- '2.3'
- '2.2'
- '2.1'
- '2.0'
- 'jruby-9'
- 'rbx-2'
script: bundle exec rake $RAKE_TASK
sudo: false
| Fix JRuby coverage by setting debug flag | Fix JRuby coverage by setting debug flag
jruby/jruby#3256
| YAML | mit | orgsync/stoplight,bolshakov/stoplight |
e30fc7c0ab9fd04c5d26ab80d394f10dc76e5956 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install... | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- '6'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before... | Build with latest Node.js 6 on Travis CI. | Build with latest Node.js 6 on Travis CI.
| YAML | mit | bigeasy/timezone,bigeasy/timezone,bigeasy/timezone |
e73137134ca2ed7c4b42abdab02328c5418ff08d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0-preview2
- rbx-19mode
branches:
only:
- master
services:
- redis-server
notifications:
email: false
script:
- bundle exec rake test
before_script:
- psql -c 'create database ontohub_test;' -U postgres
- sudo apt-add-repository ppa:hets/hets
- sudo apt-ad... | language: ruby
rvm:
- 1.9.3
- ruby-2.0.0-preview2
- rbx-19mode
branches:
only:
- master
services:
- redis-server
notifications:
email: false
script:
- bundle exec rake test
before_script:
- psql -c 'create database ontohub_test;' -U postgres
- sudo apt-add-repository ppa:hets/hets
- sudo a... | Work around bug in old rvm regarding ruby-2.0.0-preview1. | Work around bug in old rvm regarding ruby-2.0.0-preview1.
| YAML | agpl-3.0 | ontohub/ontohub,ontohub/ontohub,ontohub/ontohub,ontohub/ontohub,ontohub/ontohub,ontohub/ontohub |
8d41604fb30b02e9b92ac4a9acc9fb324885f658 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4.4"
- "6.3"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info ... | sudo: false
language: node_js
node_js:
- "4"
- "6"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
after_success:
- cat .bob/coverage/buster-istanbul... | Update Travis config to latest. Update Travis config to use latest v4 and latest v6 . | Update Travis config to latest. Update Travis config to use latest v4 and latest v6 .
| YAML | mit | cliffano/nestor-ninjablocks |
b2d54c83c6b1a76b4922cc786ef0aa3a60b1787a | .travis.yml | .travis.yml | dist: trusty
language: node_js
node_js:
- "10.16.0"
script:
# this is a condensed version of the default PATH that puts ./node_modules/.bin at the end
#- export PATH=/usr/bin:/home/travis/.nvm/versions/node/v6.5.0/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/phantomjs/bin:/usr/local/clang-3.4/bin:/usr/... | dist: trusty
language: node_js
node_js:
- "lts/*"
script:
# this is a condensed version of the default PATH that puts ./node_modules/.bin at the end
#- export PATH=/usr/bin:/home/travis/.nvm/versions/node/v6.5.0/bin:/home/travis/bin:/home/travis/.local/bin:/usr/local/phantomjs/bin:/usr/local/clang-3.4/bin:/usr/lo... | Upgrade Travis CI to use Node's LTS release. | Upgrade Travis CI to use Node's LTS release.
| YAML | isc | ajvincent/es7-membrane,ajvincent/es7-membrane |
9cab755360a108720f2ff71d7cc44158651c0916 | .travis.yml | .travis.yml | language: haskell
install:
- cabal install hsc2hs cabal-dev
# - cd engine && cabal install --only-dependencies --enable-tests
script:
# - cabal configure && cabal build && ./dist/build/shakefile/shakefile test
- ./stir update && ./stir test
env: CC=clang TOOLCHAIN_VARIANT=clang
| language: haskell
install:
# - cabal install hsc2hs cabal-dev
# - cd engine && cabal install --only-dependencies --enable-tests
script:
# - cabal configure && cabal build && ./dist/build/shakefile/shakefile test
- ./stir update && ./stir test
env: CC=clang TOOLCHAIN_VARIANT=clang
| Use cabal sandbox instead of cabal-dev | Travis: Use cabal sandbox instead of cabal-dev
| YAML | apache-2.0 | samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla,samplecount/methcla |
d18cbe169940a30f9575ed4c0477d5010c1adb50 | .travis.yml | .travis.yml | language: java
script:
- cd scripts
- ./build-linux32.sh
- ./build-linux64.sh
- ./build-macosx.sh
- cd ..
before_deploy:
- cd bin
- tar czf linux32.tar.gz linux-i586/
- tar czf linux64.tar.gz linux-amd64/
- tar czf macosx.tar.gz macosx/
deploy:
provider: releases
api_key:
secure: En83qH7a/C... | language: java
script:
- cd scripts
- ./build-linux32.sh
- ./build-linux64.sh
- ./build-macosx.sh
- cd ..
before_deploy:
- cd bin
- tar czf linux32.tar.gz linux-i586/
- tar czf linux64.tar.gz linux-amd64/
- tar czf macosx.tar.gz macosx/
deploy:
provider: releases
api_key:
secure: Q9VNV+QOi3... | Update the Travis API key | Update the Travis API key
| YAML | apache-2.0 | magmaOffenburg/RoboViz,pmacalpine/RoboViz,magmaOffenburg/RoboViz,pmacalpine/RoboViz,magmaOffenburg/RoboViz,magmaOffenburg/RoboViz,pmacalpine/RoboViz |
197a8c3f4d6316c2edfe49bd26db2a78e4db65ea | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script: nosetests
| language: python
python:
- "2.6"
- "2.7"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script: nosetests
| Add Python 2.6 to Travis | Add Python 2.6 to Travis
| YAML | bsd-2-clause | python-constraint/python-constraint |
e6bf025bc0a0cc2a8ad3dad3a4ecd964e45fde9b | .travis.yml | .travis.yml | language: go
go:
- 1.1
- tip
| language: go
env: GOBIN=~/bin PATH=$PATH:$GOBIN
go:
- 1.1
- tip
| Set GOBIN and PATH to include GOBIN | Set GOBIN and PATH to include GOBIN
| YAML | bsd-3-clause | sourcegraph/apiproxy |
4702917bd9c6e80835899266c3adb85398391a66 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
- '11'
| language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
- '11'
matrix:
fast_finish: true
allow_failures:
- node_js: '4'
| Allow failures on node 4 | Travis: Allow failures on node 4
| YAML | mit | sanity-io/get-it,sanity-io/get-it |
f7f0fde2278ed74029aa6f95ccce0e780812aa2b | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: cpp
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
env: MATRIX_ENV="CC=gcc-6 && CXX=g++-6"
before_install:
- eval $MATRIX_ENV
script:
- mkdir build
... | sudo: required
dist: xenial
language: cpp
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-8
env: MATRIX_EVAL="CC=gcc-8 && CXX=g++-8"
before_install:
- eval "${MATRIX_EVAL}"
script:
- mkdir build... | Update Travis to GCC 8 | Update Travis to GCC 8
| YAML | mit | SemaiCZE/inicpp,SemaiCZE/inicpp |
7b0dcad0007ba02c8c28257b334d98709227b3c4 | .travis.yml | .travis.yml | language: node_js
node_js:
- '12'
- '10'
- '8'
after_success:
- './node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov'
| language: node_js
node_js:
- '14'
- '12'
- '10'
- '8'
after_success:
- './node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && ./node_modules/.bin/codecov'
| Add Node.js 14 as test target | Add Node.js 14 as test target
| YAML | mit | SamVerschueren/dynongo |
28f772e7983a1174988617ffb3af26a8c34dfedf | .travis.yml | .travis.yml | branches:
only:
- master
language: python
cache:
directories:
- "$HOME/.cache/pip"
sudo: false
dist: trusty
matrix:
include:
- env: PYTHON_VERSION=pypy-5.7.1
- env: PYTHON_VERSION=2.7.13
install:
- |
git clone https://github.com/yyuu/pyenv.git $HOME/fusion-pyenv
export PYENV_ROOT="$HOME/fusion-pyenv"
... | branches:
only:
- master
language: python
cache:
directories:
- "$HOME/.cache/pip"
- "$HOME/fusion-pyenv-cache"
sudo: false
dist: trusty
matrix:
include:
- env: PYTHON_VERSION=pypy-5.7.1
- env: PYTHON_VERSION=2.7.13
install:
- |
git clone https://github.com/yyuu/pyenv.git $HOME/fusion-pyenv
export P... | Set up pyenv build cache. | Set up pyenv build cache.
| YAML | mit | fusionapp/documint,fusionapp/documint,fusionapp/documint |
a14feac64ecf61bdb4711e00b54d3e76a57f80d7 | .travis.yml | .travis.yml | language: node_js
script:
make prepush
node_js:
- "4"
- "6"
after_success:
- make report-coverage
- make nsp
| language: node_js
script:
make prepush
node_js:
- "4"
- "6"
- "7"
- "8"
- "stable"
after_success:
- make report-coverage
- make nsp
| Add node 7-8 support to Travis | Add node 7-8 support to Travis
| YAML | mit | restify/clients,restify/clients |
2f048c5992b715dc116ca77a4d1b25d7be9ce502 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
cache: pip
# install libjpeg-dev for Pillow to handle JPEGs
dist: trusty
sudo: false
addons:
apt:
packages:
- libjpeg-dev
# command to install dependencies
install:
- pip install -U tox-travis setuptools codecov
# command to run te... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
cache: pip
# install libjpeg-dev for Pillow to handle JPEGs
dist: trusty
sudo: false
addons:
apt:
packages:
- libjpeg-dev
# command to install dependencies
install:
- pip install -U tox-travis setuptools codecov
# command to run tests
script... | Drop Python 3.3, since py.test doesn't support it anymore. | Drop Python 3.3, since py.test doesn't support it anymore.
| YAML | mit | webcomics/dosage,peterjanes/dosage,webcomics/dosage,peterjanes/dosage |
b05b2c0b70dbd3c62c788b67b352ab991049fb18 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls uglify-js@1.3.x
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls uglify-js@1.3.x
| Build with Node.js 8 on Travis CI. | Build with Node.js 8 on Travis CI.
| YAML | mit | bigeasy/sequester |
7c3af08ce730096528369a6159025bf9f76cd9f4 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- VERSION="8.0" LINT_CHECK="1"
- VERSION="8.0" LINT_CHECK="0"
virtualenv:
system_site_packages: true
install:
- pip install requests
- pip install unicodecsv
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- expor... | language: python
python:
- "2.7"
env:
- VERSION="8.0" LINT_CHECK="1"
- VERSION="8.0" LINT_CHECK="0"
virtualenv:
system_site_packages: true
install:
- pip install requests
- pip install unicodecsv
- git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools
- expor... | Remove VERSION from args as taken from env | Remove VERSION from args as taken from env
| YAML | agpl-3.0 | Endika/partner-contact,raycarnes/partner-contact,charbeljc/partner-contact,Therp/partner-contact,guewen/partner-contact,BT-jmichaud/partner-contact,QANSEE/partner-contact,Antiun/partner-contact,BT-fgarbely/partner-contact,Ehtaga/partner-contact,idncom/partner-contact,VitalPet/partner-contact,open-synergy/partner-contac... |
6a5a667da4b5ee7df3cbe10fa6ab3c71b6586585 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
before_script:
- npm install
- npm install -g gulp-cli
- gulp build | language: node_js
node_js:
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
before_script:
- npm install
- npm install -g gulp-cli
- gulp build
| Remove support for node versions < 4 for Travis | Remove support for node versions < 4 for Travis | YAML | apache-2.0 | JonathonRichardson/SimpleFilter,JonathonRichardson/SimpleFilter |
a64e3a740b998a6d4ea559b22b69bb338464460d | .travis.yml | .travis.yml | rvm:
- 2.2.0
- 2.1.0
- 2.0.0
gemfile:
- Gemfile
install: "bundle install"
script: "ruby -Itest test/test_textfile.rb"
notifications:
email:
- piers@varyonic.com
| rvm:
- 2.3.0
- 2.2.0
- 2.1.0
- 2.0.0
gemfile:
- Gemfile
install: "bundle install"
script: "ruby -Itest test/test_textfile.rb"
notifications:
email:
- piers@varyonic.com
| Add Ruby 2.3 to Travis CI. | Add Ruby 2.3 to Travis CI.
| YAML | mit | varyonic/textfile |
6f3c1d2d8e865f3faf3dd9d270187d382f8ac86c | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7
- 7.1
- 7.2
install:
- composer self-update
- composer install --prefer-dist --no-interaction
script: ./vendor/bin/phpunit
| dist: trusty
language: php
php:
- 5.5
- 5.6
- 7
- 7.1
- 7.2
install:
- composer self-update
- composer install --prefer-dist --no-interaction
script: ./vendor/bin/phpunit
| Switch Travis config to Trusty for PHP 5.* support | Switch Travis config to Trusty for PHP 5.* support
| YAML | mit | picqer/moneybird-php-client |
45823465ac6ab6c765c06656d8c71dda461df5a1 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
matrix:
allow_failures:
before_script:
- wget -c https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
- composer self-update
- composer install --prefer-source
script:
- mkdir -p build/logs
- composer run-script phpcs
- cd tests && ../vendor/... | language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
matrix:
allow_failures:
- php: 7.4
before_script:
- wget -c https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
- composer self-update
- composer install --prefer-source
script:
- mkdir -p build/logs
- composer run-script phpcs
- cd ... | Allow php 7.4 to fail | Allow php 7.4 to fail
| YAML | mit | siriusphp/validation |
ff129369b90f2aea90f2140794bde5103733eac7 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.1
before_script:
- git config --local user.email "travis@travis.ci"
- git config --local user.name "Travis CI"
script:
- bundle exec overcommit --sign
- bundle exec overcommit --run
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.1
- 2.2
- 2.3.1
before_script:
- git config --local user.email "travis@travis.ci"
- git config --local user.name "Travis CI"
script:
- bundle exec overcommit --sign
- bundle exec overcommit --run
| Remove Ruby 2.0.0 from Travis matrix | Remove Ruby 2.0.0 from Travis matrix
We don't support Ruby before 2.1 since we use required keyword
arguments.
| YAML | mit | sds/gerrit |
674eb40ab57a154e6ee1c874e8077e70c4ccaeba | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "4"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=ember-1.13
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failu... | ---
language: node_js
node_js:
- "4"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=ember-1.13
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failu... | Deploy tags automatically to NPM | CI: Deploy tags automatically to NPM
| YAML | apache-2.0 | ember-cli/ember-cli-mocha,switchfly/ember-cli-mocha,ember-cli/ember-cli-mocha,switchfly/ember-cli-mocha |
d41e4f2a5d9c070d6dd3905d2539d15de59cab35 | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
install : travis_wait npm install
| language: node_js
node_js:
- "6"
after_success:
- npm run coverage
- npm run report-coverage | Change node version and add coverage reporting | Change node version and add coverage reporting
| YAML | mit | amarachukwu-agbo/hello-books,amarachukwu-agbo/hello-books |
1e4e4070607e66dcec49f593479a81366e27700b | .travis.yml | .travis.yml | language: python
cache: pip
sudo: false
# Supported CPython versions:
# https://en.wikipedia.org/wiki/CPython#Version_history
python:
- pypy3
- 3.7-dev
- 3.6
- 3.5
- 3.4
install:
- pip install -U coverage
- pip install -U flake8
- pip install -U pillow
- if [[ $TRAVIS_PYTHON_VERSION == 3.6 ]]; then pip insta... | language: python
cache: pip
sudo: false
# Supported CPython versions:
# https://en.wikipedia.org/wiki/CPython#Version_history
matrix:
fast_finish: true
include:
- python: "pypy3"
- python: '3.7'
dist: xenial
sudo: required
- python: '3.6'
- python: '3.5'
- python: '3.4'
install:
-... | Replace Python 3.7-dev with 3.7 final | Replace Python 3.7-dev with 3.7 final
| YAML | mit | hugovk/osmviz,hugovk/osmviz |
e41e91dccf04304d894f1c4f586547c0f07fd279 | .github/workflows/automerge.yml | .github/workflows/automerge.yml | name: Merge me test dependencies!
on:
workflow_run:
types:
- completed
workflows:
# List all required workflow names here.
- 'Run tests'
- 'Test build package'
- 'Run linters'
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is often a de... | name: Merge me test dependencies!
on:
workflow_run:
types:
- completed
workflows:
# List all required workflow names here.
- 'Run tests'
- 'Test build package'
- 'Run linters'
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- # It is often a de... | Bump ridedott/merge-me-action from 2.10.17 to 2.10.18 | Bump ridedott/merge-me-action from 2.10.17 to 2.10.18
| YAML | mit | fizyk/pyramid_localize |
c03da3cac36da4bcf93f7e8b3f0f7656c7492986 | .github/workflows/demo_site.yml | .github/workflows/demo_site.yml | name: Build and Publish Demo Site
on:
pull_request:
types: closed
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.300
- name: dotnet publish
run: |
cd de... | name: Build and Publish Demo Site
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.300
- name: dotnet publish
run: |
cd d... | Build demo on master commit | Build demo on master commit | YAML | mit | bradyholt/cron-expression-descriptor,bradyholt/cron-expression-descriptor |
52317c3b7773192a97a9da69a1fa8f0c555781da | .github/workflows/merge-bot.yml | .github/workflows/merge-bot.yml | name: Merge me!
on:
check_suite:
types:
- completed
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- name: Merge me!
uses: ridedott/merge-me-action@v2.8.20
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_T... | name: Merge me!
on:
check_suite:
types:
- completed
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- name: Merge me!
uses: ridedott/merge-me-action@v2.8.21
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_T... | Bump ridedott/merge-me-action from 2.8.20 to 2.8.21 | Bump ridedott/merge-me-action from 2.8.20 to 2.8.21
| YAML | bsd-3-clause | lcobucci/di-builder |
27a53ffae470b1d03021d605eb88a30277f94a00 | .github/workflows/run-tests.yml | .github/workflows/run-tests.yml | # This workflow will install Python dependencies, run tests and converage with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Run tests
on:
[push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
... | # This workflow will install Python dependencies, run tests and converage with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Run tests
on:
[push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
... | Add final step, and mark unit test steps as parallel | Add final step, and mark unit test steps as parallel
| YAML | mit | amoffat/sh,amoffat/sh |
638dc0f9e1824f523d2091dc313d54e57ffa659b | .github/workflows/run-tests.yml | .github/workflows/run-tests.yml | name: Tests
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
java: [ 8, 9, 10, 11 ]
name: Java v${{ matrix.java }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Java
... | name: Tests
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
os: [ ubuntu-latest ]
java: [ 8, 9, 10, 11 ]
name: Java v${{ matrix.java }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Java
... | Make gradlew executable during tests | Make gradlew executable during tests
| YAML | mit | AvaIre/AvaIre,AvaIre/AvaIre |
085f98e869f4d5ce4e633900fb20790d75439441 | .github/workflows/run-tests.yml | .github/workflows/run-tests.yml | name: Run tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
mongodb-version: [4.0.18]
java-version: [1.8]
steps:
- uses: actions/checkout@v2
- name: Setup Java JDK
uses: actions/setup-java@v1.4.3
# The Java version to ... | name: Run tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
mongodb-version: [4.0.18]
java-version: [1.8]
steps:
- uses: actions/checkout@v2
- name: Setup Java JDK
uses: actions/setup-java@v1.4.3
# The Java version to ... | Correct path for maven settings XML file | Correct path for maven settings XML file
| YAML | apache-2.0 | EBIvariation/eva-ws,EBIvariation/eva-ws |
aab7f27c837965496c0a981e1231a921cf9a4c74 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- travis_retry composer install --no-interaction --prefer-source
script:
- vendor/bin/phpunit
matrix:
fast_finish: true
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/0c7cfb83f9925542003e
on_success: c... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- travis_retry composer install --no-interaction --prefer-source
- '[ -z "$MIN_VERSIONS" ] || composer require --no-interaction --prefer-source $MIN_VERSIONS'
script:
- vendor/bin/phpunit
matrix:
fast_finish: true
include:
- ... | Add minimum dependency versions to build matrix. | Add minimum dependency versions to build matrix.
Allow them to fail (for now).
Fixes #273 | YAML | mit | damiankloip/psysh,bobthecow/psysh,damiankloip/psysh,damiankloip/psysh,bobthecow/psysh |
384078fe52438355de7b3a7238e1aeb2b09a997f | .travis.yml | .travis.yml | addons:
postgresql: "9.1"
language: python
python:
- "2.7"
env:
- DJANGO=Django==1.6.8
install:
- pip install -q $DJANGO --use-mirrors
- pip install -r post/tests/requirements.txt --use-mirrors
before_script:
- psql -U postgres -c "create database jmbo encoding 'UTF8'"
script: python setup.py test... | language: python
env:
- TOXENV=django19
install:
- pip install tox
before_script:
- psql -U postgres -c "create database jmbo encoding 'UTF8'"
script: tox
| Update Travis to use postgres | Update Travis to use postgres
| YAML | bsd-3-clause | praekelt/jmbo-post,praekelt/jmbo-post |
a91d36e039f6bb23952a908d47ddc3151aa3aeae | .github/workflows/windowsci.yml | .github/workflows/windowsci.yml | name: CI on Windows
on: [push]
jobs:
Build-And-Test-Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.100
- name: Build
run: dotnet build --configuration Release
- name... | name: CI on Windows
on: [push, pull_request]
jobs:
Build-And-Test-Windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.100
- name: Build
run: dotnet build --configuration Rele... | Revert "no need to run things on a pull-request" | Revert "no need to run things on a pull-request"
This reverts commit a4b652ab01938a1439404057e07c00ecc335ab54.
| YAML | mit | p-org/P,p-org/P,p-org/P,p-org/P,p-org/P |
38fc24d478a4e9905878d0f211439662f4e321ed | .travis.yml | .travis.yml | language: ruby
services:
- mongodb
before_install: gem install bundler -v 1.15.3
before_script: rake empty_dest
rvm:
- 2.2.6
- 2.3.3
- 2.4.1 | language: ruby
services:
- mongodb
before_install: gem install bundler -v 1.15.3
before_script: rake empty_dest
rvm:
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
| Test against Ruby 2.5 and patched | [CI] Test against Ruby 2.5 and patched | YAML | mit | sunitparekh/data-anonymization,sunitparekh/data-anonymization |
0c6dbed487583587e92cbe920dfcb29fe9f92731 | .travis.yml | .travis.yml | language: python
python:
- "2.7" # Default
install:
- pip install -r requirements.txt # Default
script:
- python manage.py test
- flake8 .
| language: python
python:
- "2.7" # Default
install:
- pip install -r requirements.txt # Default
script:
- cp .env.example .env
- python manage.py test
- flake8 .
| Update Travis script - copy .env.example | Update Travis script - copy .env.example
| YAML | mit | mriddle/brainiac |
ab6be98b09eb85154fefc4fe4ba1a0aecaf31471 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
| rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-1.7.9
- rbx-2.1.1
| Test on some newer Rubies, and drop support for older ones | Test on some newer Rubies, and drop support for older ones
| YAML | mit | kty1965/weather-api,stewart/weather-api |
b49be7deeabbaad0b3bbe8c5ce98d190af342898 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
- '2.6'
env:
global:
- secure: CNMxMTOQQ9MPjDiovmwBgNVugdglzU9WaZ6N/rNE0qyby892YmZuhdmWrm08zH07peIdTtvbX4RHXTY36PcU6tyfRwcYGKCowkJnxzfczXuYwQC5ItLGl79BvQe+0k0N7+3hmNUCe895tKhvCJZwl8nrhnFCDh4hKg69F5qIleE=
- secure: CHvcWYrSd/0WVQSeVSYQ/73j5RJi7uQiknofFonHisU5YxjuDA1Jpsi1yzuk+U1hQG... | language: python
python:
- '2.7'
- '2.6'
env:
global:
- secure: TVFg6VDgzyE8VjPQVepE2JTXNbjpCBiiB3tF+rtjwzinnyPaesJ/a1P4XazzdP98Yjx1BPUxvB5kR0uDhseoUOGnZ0F5oeAr44sXZ1itGyANmFsF+cTK/zU2Ov7j+8deDypBxvgOad/LzAE0wihgNFpFopCPs0OdaBn7pfBiv40=
- secure: dAgkutD1GS4VhlRF6tmC0MoKUTakIaFcaQ8vKBQzW9Z5Q+Knjmuwx4iArc73kByg5T... | Update secret keys for this repo | Update secret keys for this repo
| YAML | unlicense | rdegges/django-twilio,aditweb/django-twilio |
d66e992475fecdde62a40f8d603a07d557948ddf | .travis.yml | .travis.yml | dist: trusty
language: java
jdk:
- oraclejdk8
after_success:
- mvn -pl :valdr-bean-validation clean test jacoco:report coveralls:jacoco
env:
secure: LAJs6O7Nyc3+8u5IhjEjZ5Jh1GBK91XQ1f/NMNhjQEH9hdo91YJKqPq07QAIqjERIZDiFg2z4yoBmEVlg3AAeiX8SRt+JZ81wgf3OZ2ZP4SJ6OBtDpe4Inv670fCLn167ktWZUI03oypCOck5B0MHafrg1ty9okbO2Br84UzY... | language: java
jdk:
- openjdk8
after_success:
- mvn -pl :valdr-bean-validation clean test jacoco:report coveralls:jacoco
env:
secure: LAJs6O7Nyc3+8u5IhjEjZ5Jh1GBK91XQ1f/NMNhjQEH9hdo91YJKqPq07QAIqjERIZDiFg2z4yoBmEVlg3AAeiX8SRt+JZ81wgf3OZ2ZP4SJ6OBtDpe4Inv670fCLn167ktWZUI03oypCOck5B0MHafrg1ty9okbO2Br84UzYvc=
| Use the default build distribution on Travis CI | build: Use the default build distribution on Travis CI
| YAML | mit | netceteragroup/valdr-bean-validation,netceteragroup/valdr-bean-validation |
8a2fca1d14d4bb2bfad502afed52af318d76305a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.3
before_install:
- gem update --system
- gem install bundler
- bundle install
- rake install
# Tests use real git commands
- git config --global user.email "danger@example.com"
- git config --global user.name "Danger McShane"
script:
- bundle exec rake spec
- danger
| language: ruby
cache: bundler
rvm:
- 2.1.3
before_install:
- gem install bundler
- bundle install
- rake install
# Tests use real git commands
- git config --global user.email "danger@example.com"
- git config --global user.name "Danger McShane"
script:
- bundle exec rake spec
- danger
| Use bundler caching in CI | Use bundler caching in CI
| YAML | mit | danger/danger,orta/danger,danger/danger,beubi/danger,orta/danger,danger/danger,beubi/danger,beubi/danger,KrauseFx/danger,KrauseFx/danger |
42809a5b6d7b1798608efcd635e5eee166786c4e | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
install:
- pip install flake8 tox coverage==3.7.1 coveralls
before_script:
- flake8
- mkdir -p shippable/{codecoverage,testresults}
script:
- tox -e py${TRAVIS_PYTHON_VERSION/\./}
after_success:
- coverage report
- coverage xml
- mv -v coverage.xml sh... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
install:
- pip install flake8 tox coverage==3.7.1 coveralls
before_script:
- flake8
- mkdir -p shippable/{codecoverage,testresults}
script:
- tox -e py${TRAVIS_PYTHON_VERSION/\./}
after_success:
- coverage report
- coverage xml
- mv -v coverage.xml sh... | Remove `pip freeze` from CI config (already listed by tox) | Remove `pip freeze` from CI config (already listed by tox)
| YAML | apache-2.0 | Organice/django-organice,Organice/django-organice |
bdc1cc25b10d4d6196b8f13bc7468d6a6d19c60e | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
node_js:
- "4.0"
- "4.1"
- "4.2"
- "4.3"
- "4.4"
- "5.0"
- "5.1"
- "5.2"
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "5.7"
- "5.8"
- "5.9"
- "5.10"
- "5.11"
- "6.0"
- "6.1"
- "6.2"
before_install: sudo apt-get update && sudo apt-get install lco... | sudo: required
dist: trusty
language: node_js
node_js:
- "4.0"
- "4.1"
- "4.2"
- "4.3"
- "4.4"
- "5.0"
- "5.1"
- "5.2"
- "5.3"
- "5.4"
- "5.5"
- "5.6"
- "5.7"
- "5.8"
- "5.9"
- "5.10"
- "5.11"
- "6.0"
- "6.1"
- "6.2"
- "6.3"
before_install: sudo apt-get update && sudo apt-get i... | Update node versions to test | Update node versions to test | YAML | mit | ranisalt/node-argon2,markfejes/node-argon2,markfejes/node-argon2,ranisalt/node-argon2,ranisalt/node-argon2,markfejes/node-argon2 |
f0bddc8ac8837032716e0cf1791df8fd77456c40 | .travis.yml | .travis.yml | language: haskell
ghc: 7.8
script:
- cabal configure --enable-tests --enable-library-coverage -v2 && cabal build && cabal test
after_script:
- cabal install hpc-coveralls
- hpc-coveralls --exclude-dir=tests tests
notifications:
email: true
deploy:
provider: releases
api_key: $RELEASE_KEY
file:
- dist/... | language: haskell
ghc: 7.8
script:
- cabal configure --enable-tests --enable-library-coverage -v2 && cabal build && cabal test
after_script:
- cabal install hpc-coveralls
- hpc-coveralls --exclude-dir=tests tests
notifications:
email: true
before_deploy: "./bundle/build.sh"
deploy:
provider: releases
api_ke... | Update Travis build to create bundle. | Update Travis build to create bundle.
| YAML | mit | michaelficarra/purescript,michaelficarra/purescript |
c8cbedea9913a327f4e2a042dc3ad92239b304e4 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8
env:
- IOS_VER="10.0" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120
# - IOS_VER="9.3" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120
# - IOS_VER="9.2" FL_ARGS="analyze"
# - IOS_VER="9.2" FL_ARGS="verify scheme:WikipediaRTL"
# - IOS_VER="8.4" FL_ARGS="v... | language: objective-c
osx_image: xcode8
env:
- IOS_VER="10.0" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120
# - IOS_VER="9.3" FL_ARGS="verify" FASTLANE_XCODE_LIST_TIMEOUT=120
# - IOS_VER="9.2" FL_ARGS="analyze"
# - IOS_VER="9.2" FL_ARGS="verify scheme:WikipediaRTL"
# - IOS_VER="8.4" FL_ARGS="v... | Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "add before_install""""""""" | Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "Revert "add before_install"""""""""
This reverts commit 3a20980fe981cb9450c96ae88958c64355c46294.
| YAML | mit | josve05a/wikipedia-ios,montehurd/apps-ios-wikipedia,wikimedia/wikipedia-ios,josve05a/wikipedia-ios,julienbodet/wikipedia-ios,josve05a/wikipedia-ios,anirudh24seven/wikipedia-ios,wikimedia/apps-ios-wikipedia,wikimedia/apps-ios-wikipedia,wikimedia/wikipedia-ios,julienbodet/wikipedia-ios,anirudh24seven/wikipedia-ios,julien... |
eaeca1ba9db320733f31fe07b588d82360a51fa4 | .travis.yml | .travis.yml | language: c
sudo: required
services:
- docker
env:
matrix:
- python=3.4 CONDA_PY=34 CONDA_NPY=18
install:
- docker pull bioconda/bioconda-builder
script:
- docker run -v `pwd`:/tmp/conda-recipes bioconda/bioconda-builder /bin/build-packages.sh
| language: c
sudo: required
services:
- docker
env:
global:
- CONDA_NPY=18
matrix:
- CONDA_PY=34
- CONDA_PY=27
install:
- docker pull bioconda/bioconda-builder
script:
- docker run -v `pwd`:/tmp/conda-recipes bioconda/bioconda-builder /bin/build-packages.sh
| Build for python 2.7 and 3.4 | Build for python 2.7 and 3.4
| YAML | mit | chapmanb/bioconda-recipes,jfallmann/bioconda-recipes,rob-p/bioconda-recipes,colinbrislawn/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,oena/bioconda-recipes,mdehollander/bioconda-recipes,JenCabral/bioconda-recipes,rob-p/bioconda-recipes,xguse/bioconda-recipes,ivirshup/bioconda-recipes,ThomasWollmann... |
f192d1bf54e8c62a567bd5af21b2bedbb3e8c6d7 | .travis.yml | .travis.yml | language: go
sudo: required
go:
- 1.9.x
- 1.10.x
- 1.11.x
- tip
go_import_path: github.com/containerd/continuity
env:
# NOTE: we cannot set GOOS directly (because gimme overrides the value)
- TRAVIS_GOOS=windows
- TRAVIS_GOOS=linux
- TRAVIS_GOOS=darwin
script:
- export GOOS=${TRAVIS_GOOS}
- make b... | language: go
sudo: required
go:
- 1.9.x
- 1.10.x
- 1.11.x
- tip
go_import_path: github.com/containerd/continuity
env:
# NOTE: we cannot set GOOS directly (because gimme overrides the value)
- TRAVIS_GOOS=windows
- TRAVIS_GOOS=linux
- TRAVIS_GOOS=darwin
install:
- go get -u github.com/vbatts/git-vali... | Add common project validation scripts | Add common project validation scripts
Test using common validation scripts/templates from containerd/project
and add them to continuity's travis config.
Signed-off-by: Phil Estes <dbac1f450dc8326caa7ba104b384a0eca642250c@linux.vnet.ibm.com>
| YAML | apache-2.0 | containerd/continuity,stevvooe/continuity,stevvooe/continuity |
91c1378f1a9ef1cbec772d9937206d5929faa710 | .travis.yml | .travis.yml | env:
global:
- LC_CTYPE=en_US.UTF-8
matrix:
include:
- os: osx
language: objective-c
osx_image: xcode8
script:
- set -o pipefail
- xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release ENABLE_TESTABILITY=YES ... | env:
global:
- LC_CTYPE=en_US.UTF-8
matrix:
include:
- os: osx
language: objective-c
osx_image: xcode8.1
script:
- set -o pipefail
- xcodebuild build-for-testing test-without-building -workspace APIKit.xcworkspace -scheme APIKit -configuration Release ENABLE_TESTABILITY=YE... | Use Xcode 8.1 image on Travis CI | Use Xcode 8.1 image on Travis CI
| YAML | mit | ishkawa/APIKit,ishkawa/APIKit |
6a95e9b8ded5918c61bbf7b45974976b77bf4e59 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.6.5
before_install:
- sudo apt-get update
- sudo apt-get --yes remove postgresql\*
- sudo apt-get install -y postgresql-12 postgresql-client-12
- sudo cp /etc/postgresql/{9.6,12}/main/pg_hba.conf
- sudo service postgresql restart 12
gemfile:
- gemfiles/activerecord_4.gemfile
- ge... | language: ruby
rvm:
- 2.6.5
before_install:
- sudo apt-get update
- sudo apt-get --yes remove postgresql\*
- sudo apt-get install -y postgresql-12 postgresql-client-12
- sudo cp /etc/postgresql/{9.6,12}/main/pg_hba.conf
- sudo service postgresql restart 12
gemfile:
- gemfiles/activerecord_4.gemfile
- ge... | Create prices table on CI as well. | Create prices table on CI as well. | YAML | mit | afair/postgresql_cursor,afair/postgresql_cursor |
5e791b7424bd340d3a26a9f63a3035b30a98038c | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
# command to install dependencies
install: "pip install -r dev_requirements.txt"
# command to run tests
script:
- 'nosetests'
| language: python
python:
- "2.7"
# command to install dependencies
install: "pip install -r dev_requirements.txt"
# command to run tests
script:
- 'nosetests'
| Drop py 3.3 for now | Drop py 3.3 for now
| YAML | mit | mohabusama/pyguacamole |
d813fbff3f82745360b44a099b3afd789beb5b0d | .travis.yml | .travis.yml | language: node_js
install:
- npm install koa
- npm install
node_js:
- "4"
- "6"
- "8"
| language: node_js
install:
- npm install koa
- npm install
node_js:
- "8"
| Test only on node 8 (need async/await) | Test only on node 8 (need async/await)
| YAML | mit | simonratner/koa-acme |
3a42383e50882be234188a782e7f956bfb642652 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
install:
- sudo apt-get install gcc-multilib g++-multilib cmake
before_script:
- cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32
script:
- make
- make test
- make package
| language: cpp
compiler:
- gcc
install:
- sudo apt-get install gcc-multilib g++-multilib cmake python
- git clone --depth=1 https://github.com/Zeex/samp-server-cli.git cli
before_script:
- cmake . -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32
env:
- PATH=cli/bin:$PATH
script:
- make
- make test
- make pack... | Install samp-server-cli prior to running make test on Travis | Install samp-server-cli prior to running make test on Travis
| YAML | bsd-2-clause | Zeex/samp-plugin-crashdetect,Zeex/samp-plugin-crashdetect,Zeex/samp-plugin-crashdetect |
7f044f6177a354a117c00e32134a808438984286 | .travis.yml | .travis.yml | language: node_js
node_js:
- 10.12
# every second counts
git:
depth: 5
env:
- NODE_ENV=production ESLINT_BEFORE_BUILD=false
jobs:
include:
- stage: test
name: "eslint"
cache:
directories:
- node_modules
install:
- npm install --dev
script:
- npm run ... | language: node_js
node_js:
- 10.12
# every second counts
git:
depth: 5
env:
- NODE_ENV=production ESLINT_BEFORE_BUILD=false
jobs:
include:
- stage: test
name: "eslint"
cache:
directories:
- node_modules
install:
- npm install --dev
script:
- npm run ... | Disable cache in production build | Disable cache in production build
| YAML | agpl-3.0 | anom0ly/WoWAnalyzer,ronaldpereira/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,anom0ly/WoWAnalyzer,sMteX/WoWAnalyzer,ronaldpereira/WoWAnalyzer,Juko8/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,yajinni/WoWAnalyzer,fyruna/WoWAnalyzer,anom0ly/WoWAnalyzer,anom0ly/WoWAnalyzer,WoWAnalyzer/WoWAnalyzer,fyruna/WoWAnalyzer,fyruna/WoWAnalyzer,yaj... |
49934057c5ff39f30b3d8c2bdbf94dd12daa2c08 | .travis.yml | .travis.yml | language: python
python:
# https://github.com/travis-ci/travis-ci/issues/2219#issuecomment-41804942
# https://snarky.ca/how-to-use-your-project-travis-to-help-test-python-itself/
- "2.7"
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "3.7"
- "3.7-dev"
- "3.8"
- "3.8-dev"
- "nightly"
before_install:
... | language: python
os: linux
cache: pip
matrix:
include:
- name: "Python 2.7 on Linux"
python: 2.7
- name: "Python 3.5 on Linux"
python: 3.5
- name: "Python 3.6 on Linux"
python: 3.6
- name: "Python 3.7 on Linux"
python: 3.7
- name: "Python 3.8 on Linux"
dist: xenial
... | Add testing matrix for TravisCI | Add testing matrix for TravisCI
| YAML | apache-2.0 | miso-belica/sumy,miso-belica/sumy |
25f5c639012be445d9e807329af31e5eb8908617 | .travis.yml | .travis.yml | # See the following URLs for further details on Travis CI
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/docker/
# https://docs.travis-ci.com/user/multi-os/
# whitelist (branches that should be built)
branches:
only:
- master
- /^issue.*$/
matrix:
include:
-... | # See the following URLs for further details on Travis CI
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/docker/
# https://docs.travis-ci.com/user/multi-os/
# whitelist (branches that should be built)
branches:
only:
- master
- /^issue.*$/
matrix:
include:
-... | Update Swift 4 snapshot version | Update Swift 4 snapshot version
| YAML | apache-2.0 | sandmman/Configuration |
bcfc5ae9f3346d85c23c1d50a18993df85c623fa | .travis.yml | .travis.yml | os:
- linux
- osx
dist: trusty
sudo: required
language: bash
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail
script:
- ./t/t.sh
| os:
- linux
- osx
dist: trusty
sudo: required
language: bash
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ... | Use brew on Travis CI Mac OS X | Use brew on Travis CI Mac OS X
| YAML | unlicense | weisslj/muttjump |
529db8da6449aff6e4e581f422c54a851feef109 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
# Cache our Gcloud SDK and pip-installed libraries between commands
cache:
directories:
- "$HOME/google-cloud-sdk/"
- "$HOME/lib"
env:
# Set the App engine install location and add the SDK to our Python path
- GOOGLE_APP_ENGINE_SDK=${HOME}/google-cloud-sdk PYTHONPATH=${P... | language: python
python:
- "3.6"
# Cache our Gcloud SDK and pip-installed libraries between commands
cache:
directories:
- "$HOME/google-cloud-sdk/"
- "$HOME/lib"
env:
# Set the App engine install location and add the SDK to our Python path
- GOOGLE_APP_ENGINE_SDK=${HOME}/google-cloud-sdk PYTHONPATH=${P... | Add slack integration for Travis | Add slack integration for Travis | YAML | mit | boulder-python/boulderpython.org,boulder-python/boulderpython.org,boulder-python/boulderpython.org,boulder-python/boulderpython.org |
aa5a340a3de7dfc1995f086e7a1267005df24ed0 | .travis.yml | .travis.yml | language: CSharp
mono:
- latest
install:
- curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh
- dnvm upgrade
- dnu restore
env:
- DNX_BUILD_VERSION=$TRAVIS_BRANCH-$TRAVIS_BUILD_NUMBER
script:
- dnu pack --configuration Re... | language: CSharp
mono:
- latest
install:
- curl -sSL https://raw.githubusercontent.com/aspnet/Home/dev/dnvminstall.sh | DNX_BRANCH=dev sh && source ~/.dnx/dnvm/dnvm.sh
- dnvm upgrade
- dnu restore
env:
- DNX_BUILD_VERSION=$TRAVIS_BRANCH-$TRAVIS_BUILD_NUMBER
script:
- dnu pack --configuration Re... | Add command to delete symbols package for now as publishing this is returning an error from SymbolSource.org | Add command to delete symbols package for now as publishing this is returning an error from SymbolSource.org
| YAML | mit | Choc13/SharpEqualsTester |
067f6638f95bd000b0a92cfb45b668bca5b0efe3 | .travis.yml | .travis.yml | bundler_args: --without development
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.2
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-18mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JR... | bundler_args: --without development
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.2
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-18mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JR... | Add Ruby 1.9.2 to allowed failures (for now) | Add Ruby 1.9.2 to allowed failures (for now)
| YAML | mit | flyinbutrs/thor,b-dean/thor,b-dean/thor,linkodehub/thor,sideci-sample/sideci-sample-thor,fhernandez173/thor,fancyremarker/thor,segiddins/thor,fancyremarker/thor,erikhuda/thor,flyinbutrs/thor,fhernandez173/thor,doudou/thor,linkodehub/thor,segiddins/thor,sideci-sample/sideci-sample-thor |
90488edb9de2fcca6b1656d9562259214d50baec | .travis.yml | .travis.yml | sudo: false
branches:
only:
- master
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
before_install:
- pip install --upgrade pip
- pip --version
install: python build.py deps
script: python build.py analyse
notifications:
email: false
irc:
channels:
- "irc.freenode.org#aspen"
... | sudo: false
branches:
only:
- master
language: python
python:
- 2.6
- 2.7
before_install:
- pip install --upgrade pip
- pip --version
install: python build.py deps
script: python build.py analyse
notifications:
email: false
irc:
channels:
- "irc.freenode.org#aspen"
on_success: change
... | Revert "Test Python 3.* at Travis" | Revert "Test Python 3.* at Travis"
This reverts commit 0f65508a0fdca2c67e1d47c204507d83a960e594.
Conflicts:
.travis.yml
| YAML | mit | gratipay/aspen.py,gratipay/aspen.py |
3989560f7ed433a4e965000cbaf1b49569cb6acc | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
before_install:
- gem install scss-lint --no-ri --version '=0.22.0'
- scss-lint app/assets/stylesheets/ --config .scss-lint.yml
script:
- psql -c 'create database factlink_test;' -U postgres
- bundle exec rake db:setup
- bundle exec rspec spec --profile
- bundle exec rake konacha:load_polter... | language: ruby
rvm:
- 2.1.2
before_install:
- gem install scss-lint --no-ri --version '=0.25.1'
- scss-lint app/assets/stylesheets/ --config .scss-lint.yml
script:
- psql -c 'create database factlink_test;' -U postgres
- bundle exec rake db:setup
- bundle exec rspec spec --profile
- bundle exec rake konacha:load_polter... | Use last version of the gem | Use last version of the gem
| YAML | mit | Factlink/factlink-core,daukantas/factlink-core,Factlink/factlink-core,daukantas/factlink-core,Factlink/factlink-core,Factlink/factlink-core,daukantas/factlink-core,daukantas/factlink-core |
05a4f3b3bb17e104faf3ec3a71379c16a925497a | .travis.yml | .travis.yml | language: java
sudo: false
notifications:
email: false
script:
- ./gradlew check --info --stacktrace
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- asm/
| language: java
sudo: false
notifications:
email: false
script:
- ./gradlew check --info --stacktrace
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
- asm/
jd... | Use Java 1.8 on Travis | Use Java 1.8 on Travis
Permgen has gone here so that shouldn't break it
| YAML | mit | SquidDev-CC/CCTweaks-Lua |
e41e575a0509ef5cef16487286383ec636bb84b9 | .travis.yml | .travis.yml | language: swift
osx_image: xcode8.3
xcode_project: Bourne.xcodeproj
xcode_scheme:
- Bourne-iOS Tests
- Bourne-tvOS Tests
- Bourne-macOS Tests
| language: swift
osx_image: xcode8.3
xcode_project: Bourne.xcodeproj
matrix:
include:
- xcode_scheme: Bourne-iOS Tests
xcode_sdk: iphonesimulator10.3
- xcode_scheme: Bourne-macOS Tests
xcode_sdk: macosx10.12
- xcode_scheme: Bourne-tvOS Tests
xcode_sdk: appletvsimulator10.2
| Include a matrix for the different builds | [ci] Include a matrix for the different builds
| YAML | mit | nanoxd/Bourne,nanoxd/Bourne |
04e2e9267c89d7195f9dcbc0713cf2066e1dc736 | .travis.yml | .travis.yml | language: objective-c
before_script:
- brew update
- brew upgrade xctool || true
script:
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release -sdk iphonesimulator build-tests
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Rele... | language: objective-c
before_script:
- brew update
- brew upgrade xctool || true
script:
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Release -sdk iphonesimulator build-tests
- xctool -project RMStore.xcodeproj -scheme 'RMStoreExcludeKeychainTests' -configuration Rele... | Remove 7.0 from Travis config | Remove 7.0 from Travis config
| YAML | apache-2.0 | rodericj/RMStore,Serjip/RMStore,xxkkk/RMStore,catlan/RMStore,Serjip/RMStore,Pocket-Prep/RMStore,mluisbrown/RMStore,mluisbrown/RMStore,rodericj/RMStore,s-alexander/RMStore,mluisbrown/RMStore,catlan/RMStore,Pocket-Prep/RMStore,robotmedia/RMStore,Pocket-Prep/RMStore,rodericj/RMStore,catlan/RMStore,xxkkk/RMStore,robotmedia... |
2393c2cb3cd39fd510d491d226a87257e7d3de95 | .travis.yml | .travis.yml | language: rust
sudo: false
rust:
- stable
- beta
- nightly
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
os:
- linux
cache:
directories:
- $HOME/.cargo
before_script:
- pip install 'travis-cargo<0.2'... | language: rust
sudo: false
rust:
- stable
- beta
- nightly
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
os:
- linux
cache:
directories:
- $HOME/.cargo
matrix:
allow_failures:
- rust: nightly
be... | Allow failures on nightly channel | Allow failures on nightly channel
| YAML | mit | mbrt/ruplicity,mbrt/ruplicity |
65c45f5633ac74998c753091fdd74854ab273d69 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install:
- pip install pep8
- pip install --upgrade pyflakes
- pip install unittest2
- pip install coveralls
before_script:
- pep8 *.py */*.py
script:
- coverage run -m unittest2.__main__ discover --start-directory=didyoumean --patt... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "nightly"
install:
- pip install pep8
- pip install --upgrade pyflakes
- pip install unittest2
- pip install coveralls
before_script:
- pep8 *.py */*.py
script:
- coverage run -m unittest2.__main__ discover --start-directory=did... | Add nightly Python version in Travis | Add nightly Python version in Travis
| YAML | mit | SylvainDe/DidYouMean-Python |
eee58c14ee7e39c6a568663a22f62eb80be5520e | .travis.yml | .travis.yml | language: node_js
node_js:
- 4.2
addons:
firefox: latest
env:
- WEBPACK_SUFFIX=
- WEBPACK_SUFFIX=@beta
install:
- npm install --ignore-scripts
- npm rm webpack
- npm rm extract-text-webpack-plugin
- npm install "webpack""$WEBPACK_SUFFIX" --ignore-scripts || true
- npm install "extract-text-webpack-plu... | language: node_js
node_js:
- 6.9
addons:
firefox: latest
env:
- WEBPACK_SUFFIX=
- WEBPACK_SUFFIX=@beta
install:
- npm install --ignore-scripts
- npm rm webpack
- npm rm extract-text-webpack-plugin
- npm install "webpack""$WEBPACK_SUFFIX" --ignore-scripts || true
- npm install "extract-text-webpack-plu... | Align Travis and Appveyor Node versions | Align Travis and Appveyor Node versions
| YAML | mit | waysact/webpack-subresource-integrity,waysact/webpack-subresource-integrity |
883ef5b4fff2106f66ce920d797b52e5aa696e62 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
deploy:
provider: rubygems
api_key:
secure: LAM8qxTQa6oxzKiQpWrqRlcE1czmGFj16NSj1FVgZYJLZIfXKdvSpth+DfuCk8mxG1tvDXa3ckfERrzexG3lYGNPGyZH2sjnyt900Evd3Bn8vhv0LXE7cEZb3x/uJ3RHRvKpEDnMsy4gqoVByDLWXWnI9Q/8B4AtzFeTVsTr48g=
gem: knife-changelog
on:
tags: true
repo: kamaradclim... | language: ruby
rvm:
- 2.4
deploy:
provider: rubygems
api_key:
secure: LAM8qxTQa6oxzKiQpWrqRlcE1czmGFj16NSj1FVgZYJLZIfXKdvSpth+DfuCk8mxG1tvDXa3ckfERrzexG3lYGNPGyZH2sjnyt900Evd3Bn8vhv0LXE7cEZb3x/uJ3RHRvKpEDnMsy4gqoVByDLWXWnI9Q/8B4AtzFeTVsTr48g=
gem: knife-changelog
on:
tags: true
repo: kamaradclimbe... | Use ruby 2.[Travis] Use ruby 2.4 | [Travis] Use ruby 2.[Travis] Use ruby 2.4
Change-Id: I6d45a7cf7e49a263bc3d44e1dc8403eb67acf4d1
| YAML | mit | kamaradclimber/knife-changelog |
21690dd9a300843efaa65b0da7b01cdddf04b43d | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
rvm:
- 2.1
- 2.2
- 2.3.0
- 2.3.1
- ruby-head
script: bundle exec rails test
matrix:
allow_failures:
- rvm: ruby-head
| sudo: false
language: ruby
cache:
bundler: true
before_install:
- "rm ${BUNDLE_GEMFILE}.lock"
- "gem update bundler"
before_script:
- bundle update
- RAILS_ENV=test bundle exec rails db:create db:migrate
rvm:
- 2.1
- 2.2
- 2.3.0
- 2.3.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
| Add Continuous Integration with Travis CI | Add Continuous Integration with Travis CI
| YAML | mit | casi/flatshare_app,casi/flatshare_app,casi/flatshare_app,casi/flatshare_app |
4a90575636fe9f2fe38e503ef7981f3440e8ba4b | .travis.yml | .travis.yml | language: go
go:
- 1.2
- 1.3
- 1.4.4
- 1.5
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- $HOME/gopath/bin/goveralls -service=travis-ci
| language: go
go:
- 1.2
- 1.3
- 1.4.4
- 1.5
- tip
| Revert "retry to add coveralls support" | Revert "retry to add coveralls support"
This reverts commit 40616a155fb109f166d7ba7b438c3baf16c1fbec.
| YAML | mit | fern4lvarez/piladb,fern4lvarez/piladb |
0a49468e3413f06dd68264efbbd86012bf3d4b04 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- pip install -e .
- pip install pytest
script:
- python setup.py test
| language: python
sudo: false
python:
- 2.6
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- pip install -e .
- pip install pytest
script:
- py.test -v
| Test with py.test command directly | Test with py.test command directly
| YAML | mit | Parkayun/base65536 |
00a1835faeb10b3436309ea3f82158963bd7fe8c | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install: script/travis-install
script:
- pwd
- env
- sekexe/run "`pwd`/script/travis $TRAVIS_PYTHON_VERSION"
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
matrix:
allow_failures:
- python: "3.2"
- python: "3.3"
install: script/travis-install
script:
- pwd
- env
- sekexe/run "`pwd`/script/travis $TRAVIS_PYTHON_VERSION"
| Allow Python 3 to fail | Allow Python 3 to fail
docker-py is broken
| YAML | apache-2.0 | ph-One/compose,talolard/compose,tpounds/compose,ouziel-slama/compose,mark-adams/compose,bdwill/docker.github.io,shubheksha/docker.github.io,heroku/fig,amitsaha/compose,rstacruz/compose,aduermael/docker.github.io,JimGalasyn/docker.github.io,denverdino/denverdino.github.io,jeanpralo/compose,tiry/compose,dnephin/compose,j... |
b110fd3b0a8e92c0da6624547d3b84adde891970 | .travis.yml | .travis.yml | # Use container based environment, slightly faster than standard
sudo: true
dist: precise
language: java
jdk:
- oraclejdk8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
#- gcc-4.8
#- g++-4.8
- wget
# Package list from http://bazel.io/docs/install.html
- pkg... | # Use container based environment, slightly faster than standard
sudo: true
dist: precise
language: java
jdk:
- oraclejdk8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
#- gcc-4.8
#- g++-4.8
- wget
# Package list from http://bazel.io/docs/install.html
- pkg... | Disable tools/jdk/*.jar copying because they are now embedded inside bazel binary. | Disable tools/jdk/*.jar copying because they are now embedded inside bazel binary.
| YAML | apache-2.0 | duanguoxue/trunk,mzhaom/trunk,duanguoxue/trunk,mzhaom/trunk,bazelment/trunk,mzhaom/trunk,bazelment/trunk,bazelment/trunk,bazelment/trunk,duanguoxue/trunk |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.