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 |
|---|---|---|---|---|---|---|---|---|---|
5867ff3e5771fca1b10c845ea03aed222e763fb2 | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
script:
- mvn verify
notifications:
hipchat:
rooms:
secure: OcnZTYXPm0YxnEyz0w/8/QsRQpdO0flYOpxae7VxhMxf28Uxai3d7whC7pHDDrKJ25iw4OaVWHpaua3wdU17oLlzpPK2fsNyrUekoJEYhoErYb4YhU2+3/glV3Gk9Zr5New3KMEm/NZ24MP8hrt6e4v38Npk0hYhJPsFh/8hhuk=
slack:
secure: TKZfAB5V7KEuCz/ruHowtsn... | language: java
jdk:
- oraclejdk8
- openjdk11
script:
- mvn verify
notifications:
hipchat:
rooms:
secure: OcnZTYXPm0YxnEyz0w/8/QsRQpdO0flYOpxae7VxhMxf28Uxai3d7whC7pHDDrKJ25iw4OaVWHpaua3wdU17oLlzpPK2fsNyrUekoJEYhoErYb4YhU2+3/glV3Gk9Zr5New3KMEm/NZ24MP8hrt6e4v38Npk0hYhJPsFh/8hhuk=
slack:
secure: TKZfAB5V... | Add openjdk11 to build config | Add openjdk11 to build config
| YAML | apache-2.0 | finn-no/unleash-client-java |
3805962da5055a3f557bd05a105643d28806845a | .travis.yml | .travis.yml | language: groovy
jdk:
- openjdk7
- oraclejdk8
addons:
postgresql: "9.4"
before_script:
- psql -d template1 -c 'create extension hstore;' -U postgres
- psql -c 'create database pg_extensions_test;' -U postgres
- psql -c "create user pg_extensions with password 'pg_extensions';" -U postgres
- psql -c "gra... | language: groovy
jdk:
- openjdk7
- oraclejdk8
addons:
postgresql: "9.4"
sudo: false
before_script:
- psql -d template1 -c 'create extension hstore;' -U postgres
- psql -c 'create database pg_extensions_test;' -U postgres
- psql -c "create user pg_extensions with password 'pg_extensions';" -U postgres
-... | Migrate to new Travis infrastructure | Migrate to new Travis infrastructure
| YAML | apache-2.0 | lmivan/grails-postgresql-extensions,PIWEEK/grails-postgresql-extensions,kaleidos/grails-postgresql-extensions,kaleidos/grails-postgresql-extensions,ilopmar/grails-postgresql-extensions |
7cf433ec448508ff84636d0cbc49a336fb804471 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
# command to install dependencies
# install: "pip install -r requirements.txt"
# command to run tests
script: bash ./test.sh
env:
global:
- TESTMODULE: hellofriend.py
- GH_REPO: github.com/HHS-IntroProgramming/tests.git
| language: python
python:
- "3.7"
# command to install dependencies
# install: "pip install -r requirements.txt"
# command to run tests
script: bash ./test.sh
env:
global:
- TESTMODULE: hellofriend.py
- GH_REPO: github.com/Runpython-IntroProgramming/tests.git
| Update python version, organization name. | Update python version, organization name. | YAML | mit | HHS-IntroProgramming/Hello-friend,HHS-IntroProgramming/Hello-friend |
fc9bb596d5d4bd17b05a04b09d0d0ac8ad4701b4 | .travis.yml | .travis.yml | language: generic
os:
- linux
- osx
dist: bionic
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/maste... | 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... | Use the latest build environment for Linux on Travis CI | Use the latest build environment for Linux on Travis CI
| YAML | mit | matthesjh/autocomplete-curry |
278401917c574f7026ecc317f7e6a1216d6c3184 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- '7'
mysql:
database: activecollab_jobs_queue_test
username: root
encoding: utf8mb4
install: composer install --dev
before_script:
# create the database
- mysql -e 'create database if not exists activecollab_jobs_queue_test;'
script: phpunit -c test/phpunit.xml
| dist: trusty
sudo: required
language: php
php:
- 5.6
- '7'
addons:
apt:
packages:
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
mysql:
database: activecollab_jobs_queue_test
username: root
encoding: utf8mb4
install: composer install --dev
before_script:
# create the databas... | Switch Travis-CI to MySQL 5.6 | Switch Travis-CI to MySQL 5.6
| YAML | mit | activecollab/jobsqueue |
0189ebb5875ca7c7b040edfc19261c6f9f9d4f1a | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.6.1
- 2.5.3
gemfile:
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
before_install: gem install bundler -v 1.17.1
| sudo: false
language: ruby
rvm:
- 2.6.1
- 2.5.3
gemfile:
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
| Use bundled version of bundler | Use bundled version of bundler
| YAML | mit | nowlinuxing/kushojin,nowlinuxing/kushojin |
53b6329f26f83295e552e54f8052578310c2fb5a | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 0.11
| language: node_js
node_js:
- "0.11"
- "0.10"
| Use " to wrap node versions | [FIX] Use " to wrap node versions | YAML | mit | benelsen/spacetrack |
a0f0886f8bcb5a1340de5738e94867b6a7f1be36 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
- jruby-9.1.17.0
- jruby-9.2.0.0
branches:
only:
- master
cache: bundler
| language: ruby
sudo: false
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- jruby-9.1.17.0
- jruby-9.2.0.0
branches:
only:
- master
cache: bundler
| Update Ruby builds to the latest patch versions | Update Ruby builds to the latest patch versions
| YAML | mit | activeadmin/arbre,activeadmin/arbre |
29f91cd776d88acb270d1ae031b57f6927d1bc3c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: rbx-19mode
- rvm: ruby-head
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: rbx-19mode
- rvm: ruby-head
| Test on recent Ruby releases | Test on recent Ruby releases | YAML | mit | adhearsion/matrioska |
7f925fb458a099a2a9f76673daa6c69c4d98dab9 | .travis.yml | .travis.yml | jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
install: mvn install -DskipTests=true
script:
- cd cdm && mvn test -DskipTests=false -DfailIfNoTests=false
- cd ../udunits && mvn test -DskipTests=false -DfailIfNoTests=false
- cd ../waterml && mvn test -DskipTests=false -DfailIfNoTests=false
cache:
direc... | jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
env:
global:
- MAVEN_OPTS="-Djna.library.path=/usr/local/lib -DskipTests=false -DfailIfNoTests=false"
- NCVERSION=4.3.2
before_install:
- sudo apt-get install libhdf5-serial-dev
- wget ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-${NCVERSION}.tar.gz
- ta... | Refactor settings a bit and add more tests. | Refactor settings a bit and add more tests.
This also includes now building NetCDF so we can (at least) do the DAP4
tests.
| YAML | bsd-3-clause | Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java,Unidata/netcdf-java |
492a57c4ccf0188f726ca0a2694c79c5ad299111 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=antfs_cli setup.py test
- python setup.py install
- antfs-cli --help
after_success:
- coveralls
| language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.5-dev # 3.5 development branch
- 3.6-dev # 3.6 development branch
- nightly # currently points to 3.7-dev
- pypy
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=antfs_cli setup.py test
- pytho... | Add test support for pre-release CPython | Add test support for pre-release CPython
Despite allowing failures on these CPython platforms, test each
with continuous integration to surface potential issues.
Based upon https://docs.travis-ci.com/user/languages/python/
| YAML | mit | 1200wd/antfs-cli,Tigge/antfs-cli |
e06c9489d870dedb5b1013bd740e79ee857e3c0c | .travis.yml | .travis.yml | language: python
sudo: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
- "pypy"
install:
- pip install pep8
script:
- pep8
- py.test
notifications:
email: false
| language: python
sudo: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7
- "pypy"
install:
- pip install pep8
script:
# Guard against invalid escapes in strings, like '\s'. If this fails, a
# string or docstring somewhere needs to be a raw string.
- if [ "$TRAVIS_PYTHON_VERSION" = ... | Test for invalid escapes in Travis | Test for invalid escapes in Travis
| YAML | bsd-3-clause | fredrik-johansson/mpmath,JensGrabner/mpmath,JensGrabner/mpmath |
0118b85bf082fe0c2ecb787055c94444bed55fbb | .travis.yml | .travis.yml | sudo: required
language: bash
services:
- docker
install:
- docker pull swipl:stable
script:
- docker run -it --name test --entrypoint=/bin/bash -v ${PWD}:/logtalk3 library/swipl -c "/logtalk3/scripts/install.sh && logtalk_user_setup && cd ~/logtalk/tests/logtalk && logtalk_tester && cd ~/logtalk/tools && logtalk_t... | sudo: required
language: bash
services:
- docker
install:
- docker pull swipl:stable
script:
- docker run -it --name test --entrypoint=/bin/bash -v ${PWD}:/logtalk3 library/swipl -c "/logtalk3/scripts/install.sh && logtalk_user_setup && cd ~/logtalk/tests/logtalk && logtalk_tester && cd ~/logtalk/tools && logtalk_t... | Fix TravisCI integration to also run the library tests | Fix TravisCI integration to also run the library tests
| YAML | apache-2.0 | LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3,LogtalkDotOrg/logtalk3 |
2413dfc18f1cd7fbdb99a6b429e3596371788442 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.8.x
- 1.x
- tip
go_import_path: pack.ag/amqp
matrix:
allow_failures:
- go: tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get -t -v -d -tags "integration gofuzz" ./...
script:
- make coverage
- goveralls -coverprofile=c... | language: go
sudo: false
go:
- 1.9.x
- 1.x
- tip
go_import_path: pack.ag/amqp
matrix:
allow_failures:
- go: tip
before_install:
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get -t -v -d -tags "integration gofuzz" ./...
script:
- make coverage
- goveralls -coverprofile=c... | Test on Go 1.9.x, latest stable, and tip | Test on Go 1.9.x, latest stable, and tip
| YAML | mit | vcabbage/amqp |
90ce7ad3cb0b76808a6a9969e84a5dd3e40be030 | .travis.yml | .travis.yml | language: c
sudo: true
dist: trusty
addons:
apt:
packages:
- luajit
- gcc
- build-essential
- libluajit-5.1-dev
- python
- luarocks
#install:
# - wget http://mirrors.kernel.org/ubuntu/pool/universe/l/luasocket/luasocket_2.0.2-6_all.deb
# - sudo dpkg -i luasocket_2.0.2-6_all.d... | language: c
sudo: true
dist: trusty
addons:
apt:
packages:
- luajit
- gcc
- build-essential
- libluajit-5.1-dev
- python
- luarocks
install:
- wget http://mirrors.kernel.org/ubuntu/pool/universe/l/luasocket/luasocket_2.0.2-6_all.deb
- sudo dpkg -i luasocket_2.0.2-6_all.deb
... | Install luasocket package from ubuntu archives | Install luasocket package from ubuntu archives | YAML | mit | wolfy1339/WolfyBot,wolfy1339/WolfyBot,wolfy1339/WolfyBot |
ae990c7f5eec9f1eca9418a788f44f0370c97dd0 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.1"
- "4.0"
before_script:
- npm install -g gulp
- gulp build
script: gulp spec
services:
- mongodb
sudo: required
| language: node_js
node_js:
- "6.4"
before_script:
- npm install -g gulp
- gulp build
script: gulp spec
services:
- mongodb
sudo: required
| Update Travis to use latest version | Update Travis to use latest version
| YAML | mit | RandomAPI/Randomuser.me-Node |
2bb9c1f74eadd1ee1cafec66815b0a8f4e60db86 | .travis.yml | .travis.yml | language: node_js
dist: trusty
sudo: false
node_js:
- '8.0'
- '7.10'
- '6.10'
- '5.12'
deploy:
- provider: releases
api_key:
secure: >-
BD1yFmcWFvJ1p8K7+CytJOAaOYEQmM2+GjLKKBlrHwwGvIHsqvNtvf05BXUrd2xb/Sy49wBWOdkxV5XOuS0kCWTOGEuQl1AsiktBmkSWFkPoX03axC2xWlmdNlK18B6/I3qnR9jcfxpKBjoVaPcv3g9U1h4E... | language: node_js
dist: trusty
sudo: false
node_js:
- '8.0'
- '7.10'
- '6.10'
deploy:
- provider: releases
api_key:
secure: >-
BD1yFmcWFvJ1p8K7+CytJOAaOYEQmM2+GjLKKBlrHwwGvIHsqvNtvf05BXUrd2xb/Sy49wBWOdkxV5XOuS0kCWTOGEuQl1AsiktBmkSWFkPoX03axC2xWlmdNlK18B6/I3qnR9jcfxpKBjoVaPcv3g9U1h4EFWy5oY6gcno... | Remove 5.x as a testing target | Remove 5.x as a testing target
The latest changes break execution on 5.x. While it would be an easy fix, 5.x was not an LTS release and is past its maintenance period, so dropping instead.
| YAML | mit | any-json/any-json,any-json/any-json,laktak/any-json |
1536185c6119e6bae9ceeb4baa7916f48f5a163b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
- 2.2
- rbx-2
- jruby-9
- jruby-head
before_install: gem install bundler -v 1.10.6
script: bundle exec rspec
| language: ruby
rvm:
- 2.1
- 2.2
- 2.3.0
- rbx-2
- jruby-9
- jruby-head
before_install: gem install bundler -v 1.10.6
script: bundle exec rspec
| Switch on 2.3.0 in Travis tests | Switch on 2.3.0 in Travis tests
| YAML | mit | maetl/calyx |
ac1d41350ae9e3d0124cea4a969aaacdabf6f515 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
script: "python setup.py test"
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
script: "python setup.py test"
before_install:
- pip install --upgrade pytest
| Update Travis-CI config for pytest 2.8.0 | Update Travis-CI config for pytest 2.8.0
| YAML | mit | delph-in/pydelphin,goodmami/pydelphin |
4d5f1066fc2a16e476359646cf01e983d860d69f | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
- chmod +x android-app/gradlew
script:
- ./gradlew build --stacktrace
- ./gradlew codeCoverageReport
- ./gradlew publishToMavenLocal
- cd android-app
- ./gradlew build
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
script:
- ./gradlew build --stacktrace
- ./gradlew codeCoverageReport
after_success:
- bash <(curl -s https://codecov.io/bash)
| Exclude Android build from the Travis script. | Exclude Android build from the Travis script.
| YAML | apache-2.0 | SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list,SpineEventEngine/todo-list |
d0764cb4976608ce8b2364cdd576345ec45cbde0 | .travis.yml | .travis.yml | #
# This build script is provided by: https://github.com/svparijs/TravisCi.Example
# Author: Sebastiaan van Parijs
#
# For any issues of feedback report it at Github
#
# The TYPO3 project - inspiring people to share!
#
# see http://about.travis-ci.org/docs/user/languages/php/ for more hints
language: php
# list any P... | language: php
php:
- 7.2
- 5.4
script:
- chmod +x build-libs/phing-2.4.9/bin/phing
- chmod +x ./build.sh
- "./build.sh"
branches:
only:
- master
deploy:
provider: releases
api_key:
secure: DcY686RvBLGCljgeXw5phlTUFCQUlVNz+8H23OuDJGxVXL0VduVKD4eFBDTNrBn2uwbf4uBt6Me+nGJHZ/CJ2IsIq3nxul6W3T8s5ueHNViG54gdSjLf/+P... | Move generated artifacts to GitHub releases | Move generated artifacts to GitHub releases
| YAML | mit | aparraga/phal,aparraga/phal,aparraga/phal,aparraga/phal,aparraga/phal,aparraga/phal,aparraga/phal |
efcd59e0972e2957d70c23ac3d071d82bfa4d88d | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install: python setup.py build
script: python setup.py test -q
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
install: python setup.py build
script: python setup.py -q test
| Put -q earlier so Travis generates fewer messages. | Put -q earlier so Travis generates fewer messages. | YAML | mit | yuvipanda/mwparserfromhell,kumasento/mwparserfromhell,gencer/mwparserfromhell,SunghanKim/mwparserfromhell,jayvdb/mwparserfromhell,wikimedia/operations-debs-python-mwparserfromhell,kumasento/mwparserfromhell,earwig/mwparserfromhell,wikimedia/operations-debs-python-mwparserfromhell,kumasento/mwparserfromhell,gencer/mwpar... |
bc0fe041a1d62b9f2574e08bc04c7d5ed10233f0 | .travis.yml | .travis.yml | language: android
env:
global:
- ADB_INSTALL_TIMEOUT=8
android:
components:
- platform-tools
- build-tools-23.0.1
- android-23
- extra-android-support
- extra-android-m2repository
- sys-img-armeabi-v7a-android-21
before_script:
- chmod +x gradlew
- echo no | android create avd --forc... | language: android
env:
global:
- ADB_INSTALL_TIMEOUT=8
android:
components:
- platform-tools
- build-tools-23.0.1
- android-23
- extra-android-support
- extra-android-m2repository
- sys-img-armeabi-v7a-android-21
before_script:
- chmod +x gradlew
- echo no | android create avd --forc... | Rearrange Travis script to test espresso lastly | Rearrange Travis script to test espresso lastly
| YAML | apache-2.0 | nectec-wisru/android-ThaiWidget,nectec-opensource/thai-widget |
b0548e33b8e8d447ed5b2c15e847e7af15e13153 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 || $TRAVIS_PYTHON_VERSION == 3.2 || $TRAVIS_PYTHON_VERSION == 3.3 ]]; then
pip install flake8==2.6.0;
else
pip install flake8;
fi
- pip install cover... | language: python
sudo: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 || $TRAVIS_PYTHON_VERSION == 3.2 || $TRAVIS_PYTHON_VERSION == 3.3 ]]; then
pip install flake8==2.6.0;
else
pip install flake8;
fi
- pip install cover... | Change flake8 command to fix errors | Change flake8 command to fix errors
| YAML | bsd-3-clause | Remolten/galena |
9075ab4a92f892cd5a0744b49816c44b00007ac5 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
- "3.6"
- "3.7"
env:
- NODE_VERSION="10.3.0"
- NODE_VERSION="11"
- NODE_VERSION="12"
install:
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION
- npm install
- pip install pytest
script:
- npm test
after_success:
- bash <(curl -s https://codecov.io/bash)
| dist: xenial
language: python
python:
- "3.5"
- "3.6"
- "3.7"
env:
- NODE_VERSION="10.3.0"
- NODE_VERSION="11"
- NODE_VERSION="12"
install:
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION
- npm install
- pip install pytest
script:
- npm test
after_success:
- bash <(curl -s https://codecov.io... | Add dist: xenial to the Travis settings to use Python 3.7 | Add dist: xenial to the Travis settings to use Python 3.7
| YAML | mit | thinkulum/generator-python-cmd,thinkulum/generator-python-cmd |
ee2d55ed748851e3cc18adcf8d3461d0599e0cb4 | .travis.yml | .travis.yml | language: ruby
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
env:
- CODECLIMATE_REPO_TOKEN=a5f82768a217627e46bef3c9ca1b0f35670f74e95decee1cd04ecd8df8249509
| language: ruby
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
env:
- CODECLIMATE_REPO_TOKEN=a5f82768a217627e46bef3c9ca1b0f35670f74e95decee1cd04ecd8df8249509
bundler_args: --without development
| Exclude development gems from Travis CI | Exclude development gems from Travis CI
| YAML | mit | mxhold/essentials,mxhold/essentials |
c135b20e59b0cfb581bed9c58133e091f72d041a | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.4.1
before_install: gem install bundler -v 1.16.0.pre.2
| sudo: false
language: ruby
rvm:
- 2.3.6
- 2.4.3
- 2.5.0
before_install: gem install bundler -v 1.16.0
| Update TravisCI config to run specs on all supported rubies | Update TravisCI config to run specs on all supported rubies
| YAML | mit | buren/metrojobb,buren/metrojobb |
af421966a759a8a263be8264f06c8942b224c6e0 | .travis.yml | .travis.yml | bundler_args: "--without development"
script: "bundle exec rake spec"
rvm:
- 1.8.7-p334
- 1.9.2
- 1.9.3
- ruby-head
- ree
- jruby
gemfile:
- gemfiles/actionpack-3.0.x.gemfile
- gemfiles/actionpack-3.1.x.gemfile
| # bundler_args: "--without development"
script: "bundle exec rake spec"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ruby-head
- ree
- jruby
gemfile:
- gemfiles/actionpack-3.0.x.gemfile
- gemfiles/actionpack-3.1.x.gemfile
| Test to fix Travis with development dependencies | Test to fix Travis with development dependencies
| YAML | mit | ZenCocoon/routing_filter_locale_unless_api |
d6b9977e5fa18a9eae0155a83dd1afccb37f0032 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- pip install .
- pip install -r requirements.txt
script:
- python -m unittest testAll
| language: python
python:
- "2.7"
install:
- pip install codecov
- pip install .
- pip install -r requirements.txt
script:
- python -m unittest testAll
after_success:
codecov
| Add codecov and cached builds | Add codecov and cached builds
| YAML | mit | dancingcactus/python-omniture,dancingcactus/python-omniture,kristofvanmoffaert/python-omniture,kristofvanmoffaert/python-omniture,kristofvanmoffaert/python-omniture,dancingcactus/python-omniture |
842ba0262524f33dfd51fd4e398ed6abea1838fa | .travis.yml | .travis.yml | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
language: "ruby"
script: "bundle exec rake --trace"
rvm:
- 1.9.2
- 1.9.3
- 2.0
- jruby-head
- rbx
notifications:
irc: "irc.freenode.org#savon"
| # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
language: "ruby"
script: "bundle exec rake --trace"
rvm:
- 1.9.2
- 1.9.3
- 2.0
- jruby-head
- rbx
notifications:
irc: "irc.freenode.org#savon"
matrix:
allow_failures:
- rvm: jruby-head
| Mark jruby as an allowed failure | Mark jruby as an allowed failure
Until this actually is passing, I'd like to ignore these jruby failures.
Perhaps a better choice is to drop jruby for the time being?
| YAML | mit | savonrb/sekken,mbrung/sekken,YACFirm/sekken |
ac0b07e690572e2c7bdf7f336f1090f50fc6b959 | .travis.yml | .travis.yml | language: ruby
os:
- osx
osx_image: xcode7.1
rvm:
- 2.3.1
- 2.2.5
- 2.1.9
- 2.0.0-p648
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" && "$TRAVIS_RUBY_VERSION" == "2.0.0-p648" ]]; then rvm reinstall 2.0.0-p643 --disable-binary; fi
script:
- bundle exec rake travis:build
notifications:
slack:
secure: Ksji5MDNO... | language: ruby
os:
- osx
osx_image: xcode8.2
rvm:
- 2.3.1
- 2.2.5
- 2.1.9
- 2.0.0-p648
script:
- bundle exec rake travis:build
notifications:
slack:
secure: Ksji5MDNOWnuzuyu9Hblbxse6kGLdH4kXyYkF98C+wawIGLSONWWkuA65wpdqSLtBN/79RCLMWoBzKAGX4xy9BL6Rxb3rLjAMT+FVur6II2yaApzyJ0dmTVeTXnkchPcrO27FK5taPb0Ghr86DUiG3OViY/q1... | Update RVM on OS X builds | Update RVM on OS X builds
| YAML | apache-2.0 | dazuma/google-cloud-ruby,qingling128/google-cloud-ruby,CloudVLab/google-cloud-ruby,landrito/google-cloud-ruby,swcloud/google-cloud-ruby,swcloud/google-cloud-ruby,swcloud/google-cloud-ruby,hxiong388/google-cloud-ruby,landrito/google-cloud-ruby,dazuma/google-cloud-ruby,dazuma/google-cloud-ruby,quartzmo/google-cloud-ruby,... |
74c6616fee913ddd7929eda275d727b134e11850 | .travis.yml | .travis.yml | language: python
sudo: false
env:
global:
- REQUIREMENTS=requirements.txt
- TEST_REQUIREMENTS=social/tests/requirements.txt
python:
- "2.6"
- "2.7"
- "pypy"
matrix:
include:
- python: "pypy"
env:
- TEST_REQUIREMENTS=social/tests/requirements-pypy.txt
- python: "3.3"
env:
... | language: python
sudo: false
env:
global:
- REQUIREMENTS=requirements.txt
- TEST_REQUIREMENTS=social/tests/requirements.txt
python:
- "2.6"
- "2.7"
matrix:
include:
- python: "pypy"
env:
- TEST_REQUIREMENTS=social/tests/requirements-pypy.txt
- python: "3.3"
env:
- REQ... | Remove duplicated pypy entry, add python 3.5 | Remove duplicated pypy entry, add python 3.5
| YAML | bsd-3-clause | lneoe/python-social-auth,falcon1kr/python-social-auth,cjltsod/python-social-auth,mathspace/python-social-auth,lneoe/python-social-auth,fearlessspider/python-social-auth,python-social-auth/social-core,tkajtoch/python-social-auth,python-social-auth/social-storage-sqlalchemy,muhammad-ammar/python-social-auth,tobias47n9e/s... |
75e0161cd32b012ca63d8475dc27892009db7b45 | .travis.yml | .travis.yml | language: php
matrix:
fast_finish: true
include:
- php: 5.3.3
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
env: CHECK_LINKS=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- if [[ "$CHECK_LINKS" == "true" ]]; then sudo a... | language: php
matrix:
fast_finish: true
include:
- php: 5.3.3
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
env: CHECK_LINKS=true BUILD_DOCS=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- if [[ "$CHECK_LINKS" == "true"... | Build docs on PHP 5.6 only | Enhancement: Build docs on PHP 5.6 only
| YAML | bsd-3-clause | ChrisTitos/json-schema,localheinz/json-schema,erayd/json-schema,richgarrod/json-schema,JustTSK/json-schema,siad007/json-schema,samokspv/json-schema,edisonthk/json-schema,robotdance/json-schema,jojo1981/json-schema,Targoniy/-json-schema-for-trip-api,justinrainbow/json-schema,araines/json-schema,sam002/json-schema |
a95f415c0ccf83cb3b6e5e7b6a6adf6eeb86dd65 | .travis.yml | .travis.yml | dist: trusty
sudo: true
git:
depth: 1
branches:
only:
- master
cache:
directories:
- $HOME/.m2
language: java
jdk: oraclejdk8
# Because Travis-CI is special and invokes gradle assemble by default. WTF.
install:
- true
before_install:
- sudo dpkg --add-architecture i386
- sudo apt-get -qq update
- ... | dist: trusty
sudo: true
git:
depth: 1
branches:
only:
- master
cache:
directories:
- $HOME/.m2
language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-23.0.2
- android-23
- extra-google-m2repository
- extra-android-m2repository
# Because Trav... | Add Android to the mix | Add Android to the mix
| YAML | apache-2.0 | cypherdare/libgdx,libgdx/libgdx,libgdx/libgdx,cypherdare/libgdx,Zomby2D/libgdx,stinsonga/libgdx,Zomby2D/libgdx,alex-dorokhov/libgdx,MikkelTAndersen/libgdx,MikkelTAndersen/libgdx,cypherdare/libgdx,alex-dorokhov/libgdx,bladecoder/libgdx,MikkelTAndersen/libgdx,MikkelTAndersen/libgdx,alex-dorokhov/libgdx,cypherdare/libgdx,... |
c9647f7dc8ecd73177fce61316e1632ea95b973c | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
addons:
apt:
packages:
- cmake
- libboost-dev
- libboost-filesystem-dev
- libboost-program-options-dev
- libboost-regex-dev
- libcrypto++-dev
- libboost-date-time-dev
script: ... | language: cpp
compiler:
- gcc
- clang
addons:
apt:
packages:
- cmake
- libboost-dev
- libboost-filesystem-dev
- libboost-program-options-dev
- libboost-regex-dev
- libcrypto++-dev
- libboost-date-time-dev
script: ... | Update Travis CI build (script) | Update Travis CI build (script)
| YAML | bsd-3-clause | majestrate/kovri,majestrate/kovri,majestrate/kovri,majestrate/kovri |
d65367a82a0fd6d1401107f1c33f5c5266a981e7 | .travis.yml | .travis.yml | language: scala
scala:
- 2.10.4
env:
- SBT_OPTS="-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:PermSize=256M -XX:MaxPermSize=512M"
| language: scala
scala:
- 2.10.4
- 2.11.7
env:
- SBT_OPTS="-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:PermSize=256M -XX:MaxPermSize=512M"
| Add scala 2.11.7 to Travis | Add scala 2.11.7 to Travis
| YAML | apache-2.0 | 0asa/spark-notebook,deanwampler/spark-notebook,0asa/spark-notebook,maasg/spark-notebook,meh-ninja/spark-notebook,andypetrella/spark-notebook,radek1st/spark-notebook,radek1st/spark-notebook,deanwampler/spark-notebook,spark-notebook/spark-notebook,andypetrella/spark-notebook,antonkulaga/spark-notebook,radek1st/spark-note... |
4dbe5cfab0709682874e331e68e46193e51cf785 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
cache: apt
addons:
apt:
packages:
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
... | sudo: false
language: python
python:
- "2.7"
cache: apt
addons:
apt:
packages:
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
before_install:
- wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
... | Use Travis CI environment variable to correctly run test script by full path now that numpy/scipy are functioning. | Use Travis CI environment variable to correctly run test script by full path now that numpy/scipy are functioning.
| YAML | mit | aschlosberg/BNoL,aschlosberg/BNoL |
760d4240bddca652c51352142f4c5a9eb4eeb496 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
before_install:
- npm update npm -g
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.8"
- "0.10"
before_install:
- npm update npm@1.4 -g
before_script:
- npm install -g grunt-cli
| Set test NPM to 1.4 | Set test NPM to 1.4 | YAML | mit | paladox/grunt-contrib-qunit,labertasch/grunt-contrib-qunit,paladox/grunt-contrib-qunit,gruntjs/grunt-contrib-qunit,gruntjs/grunt-contrib-qunit,labertasch/grunt-contrib-qunit |
5bc2616b7fb2a64aa48dbdff8f9098ca7cfa3bb6 | .travis.yml | .travis.yml | language: elixir
otp_release:
- 20.0
elixir:
- 1.6.1
env:
global:
- MIX_ENV=test
cache:
directories:
- _build
- deps
script:
- mix credo --strict
# - mix dialyzer --halt-exit-status
- mix do compile --warnings-as-errors, coveralls.json
after_success:
- bash <(curl -s https://codecov.io/ba... | language: elixir
otp_release:
- 20.0
elixir:
- 1.6.1
env:
global:
- MIX_ENV=test
cache:
directories:
- _build
- deps
script:
- mix credo --strict
# - mix dialyzer --halt-exit-status
- mix do compile --warnings-as-errors, coveralls.json
- mix format --check-formatted
after_success:
- bas... | Check the codes was formatted in CI. | chore(ci): Check the codes was formatted in CI.
| YAML | mit | cedretaber/bibliotheca,cedretaber/bibliotheca |
a1fa612c706fd6c3b1c0bca04fa0adf3622150dd | .travis.yml | .travis.yml | language: java
matrix:
include:
- jdk: oraclejdk8
- jdk: openjdk8
- jdk: oraclejdk9
- jdk: openjdk9
- jdk: oraclejdk10
- jdk: openjdk10
- jdk: oraclejdk11
- jdk: openjdk11
- jdk: oraclejdk12
- jdk: openjdk12
allow_failures:
- jdk: oraclejdk9
- jdk: oraclejdk10
script: mvn clean install
a... | language: java
matrix:
include:
- jdk: oraclejdk8
- jdk: openjdk8
- jdk: oraclejdk9
- jdk: openjdk9
- jdk: oraclejdk10
- jdk: openjdk10
- jdk: oraclejdk11
- jdk: openjdk11
- jdk: oraclejdk12
- jdk: openjdk12
allow_failures:
- jdk: oraclejdk9
- jdk: oraclejdk10
- jdk: oraclejdk12
script:... | Add support for Java 12 | Add support for Java 12
| YAML | mit | CurrencyCloud/currencycloud-java,CurrencyCloud/currencycloud-java |
78f207ce18ec1f40626eeda373bbe3783bcbe3ef | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: "node"
- node_js: "12"
- node_js: "14"
sudo: false
cache:
directories:
- node_modules
dist: trusty
addons:
apt:
packages:
- dpkg
chrome: stable
before_script:
# dump the current versions
- google-chrome-stable --version
# start a fres... | os: linux
language: node_js
jobs:
include:
- node_js: "node"
- node_js: "12"
- node_js: "14"
cache:
directories:
- node_modules
dist: trusty
addons:
apt:
packages:
- dpkg
chrome: stable
before_script:
# dump the current versions
- google-chrome-stable --version
# start a fresh ne... | Address Travis CI warnings and suggestions | Address Travis CI warnings and suggestions
| YAML | mit | cyrus-and/chrome-remote-interface,cyrus-and/chrome-remote-interface |
198da0437286e7017ffe6869861615db42102e5d | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
after_success:
- mvn clean verify coveralls:report
| language: java
jdk:
- openjdk11
after_success:
- mvn clean verify coveralls:report
| Use openjdk11 for Travis CI | Use openjdk11 for Travis CI | YAML | agpl-3.0 | xlate/property-inject,xlate/property-inject |
9d13c2408c677ec17991d109e94eb22092f18de4 | .travis.yml | .travis.yml | sudo: required
language: c
compiler:
- clang
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qqy iputils-arping
script:
- sudo mknod /dev/net/tap c 10 200
- sudo chmod 0666 /dev/net/tap
- sudo setcap cap_net_admin+eip "$(which ip)"
- make test
| sudo: required
language: c
compiler:
- clang
before_install:
- sudo apt-get -qq update
- sudo apt-get install -qqy iputils-arping libcap-dev libcap2-bin
script:
- sudo mknod /dev/net/tap c 10 200
- sudo chmod 0666 /dev/net/tap
- sudo setcap cap_net_admin+eip "$(which ip)"
- make test
| Install libcap for Ubuntu 12.04 CI system | Install libcap for Ubuntu 12.04 CI system
| YAML | mit | saminiir/level-ip,saminiir/level-ip |
9ea4571c1d0dc796591ee505fe2addb33e498dac | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.5
- tip
| language: go
go:
- 1.4
- 1.5
- tip
branches:
only:
- develop
- master
install:
- go get github.com/naoina/toml
- go get github.com/keltia/flightaware-go/config
- go get github.com/keltia/flightaware-go/flightaware
| Add my own package to Travis. | Add my own package to Travis.
| YAML | bsd-2-clause | keltia/fa-tail |
6e20c82ca4ff8a6ff0dc697b62d642f67f5333f7 | .travis.yml | .travis.yml | language: csharp
sudo: required
solution: Snowflake.sln
mono: none
dotnet: 2.0.0
dist: trusty
osx_image: xcode8.3
os:
- linux
- osx
matrix:
fast_finish: true
allow_failures:
- os: osx
install:
- dotnet restore src/Snowflake.sln
script:
- dotnet build src/Snowflake.Framework.Tests
- dotnet test src... | language: csharp
sudo: required
solution: Snowflake.sln
mono: none
dotnet: 2.0.0
dist: trusty
group: deprecated-2017Q4
osx_image: xcode8.3
os:
- linux
- osx
matrix:
fast_finish: true
allow_failures:
- os: osx
install:
- dotnet restore src/Snowflake.sln
script:
- dotnet build src/Snowflake.Framework.... | Build on old trusty image | Travis: Build on old trusty image
[skip appveyor] | YAML | mpl-2.0 | RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,SnowflakePowered/snowflake,RonnChyran/snowflake,SnowflakePowered/snowflake |
04a698f442f78255ff9c1c4d2296dbd5c7d1f679 | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx-18mode
- rbx-19mode
- ree
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx
- rbx-2.0
- ree
| Revert "Test against Rubinius in both Ruby 1.8 and 1.9 mode" | Revert "Test against Rubinius in both Ruby 1.8 and 1.9 mode"
This reverts commit 14e872b4b187341ac9635e60ab97c1e36fc7af99.
| YAML | mit | avdi/faraday,pvdb/faraday,ru-faraon/Faraday-is-an-HTTP-client,engineyard/faraday,prcongithub/faraday,santiagodoldan/faraday,luvtechno/faraday,customink/faraday,apepper/faraday,O-I/faraday,jrafanie/faraday,O-I/faraday,prcongithub/faraday,stayhero/faraday,daviswahl/faraday,jhass/faraday,nevans/faraday,mehulkar/faraday,jh... |
ddaa5693ae25a8bf408735070aa78e65ad8aedfa | .travis.yml | .travis.yml | language: rust
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-4.9-dev
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y apt-transport-https
- wget https://apt.z.cash/pool/main/z/zcash/zcash-1.0.7-1-amd64.deb
- sudo dpkg -i zcash-1.0.7-1-am... | language: rust
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libstdc++-4.9-dev
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y apt-transport-https
- wget https://apt.z.cash/pool/main/z/zcash/zcash-1.0.7-1-amd64.deb
- sudo dpkg -i zcash-1.0.7-1-am... | Add zcash-fetch-params to configure the network | Add zcash-fetch-params to configure the network
| YAML | unlicense | DurgaMa/rust-zcash |
4b02d8cf3b34fe80035732b886975c101b4c8199 | .travis.yml | .travis.yml | language: android
sudo: false
jdk: oraclejdk7
android:
components:
- build-tools-21.1.2
- android-21
- platform-tools
- tools
# Additional components
- extra-google-m2repository
- extra-android-m2repository
- extra-android-support
notifications:
email: false
slack:
secure: ... | language: android
sudo: false
jdk: oraclejdk7
android:
components:
- build-tools-21.1.2
- android-21
- platform-tools
- tools
- extra-google-m2repository
- extra-android-m2repository
- extra-android-support
notifications:
slack:
rooms:
secure: NVkh+VYIPnEfR7oPbjuWlh+bSJvOUUL6WjKdY5MZ5ejyYjuF... | Add correct key for CI reports in Slack | Add correct key for CI reports in Slack
| YAML | mit | elpoisterio/ello-android,ello/ello-android |
44a605669faf7286c86ccf74ba3ebf60af150f46 | .travis.yml | .travis.yml | notifications:
email: false
rvm:
- 2.1.2
- 2.2.4
- 2.3.1
| notifications:
email: false
rvm:
- 2.1.2
- 2.2.4
- 2.3.1
before_install:
- gem install bundler # the default version of bundler for ruby 2.1 is out of date.
| Update bundler before running the build. | Update bundler before running the build. | YAML | mit | sul-dlss/druid-tools |
7e5e6ad08d2b5cfc4d86bbfdc5c0459521f22183 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
env:
global:
- CC_TEST_REPORTER_ID=ca17436bff753caad1e0ae63a5985c74fcb90ad03ee162e93d7098582af75aed
cache:
bundler: true
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporte... | language: ruby
rvm:
- 2.2
env:
global:
- CODECLIMATE_REPO_TOKEN=ca17436bff753caad1e0ae63a5985c74fcb90ad03ee162e93d7098582af75aed
cache:
bundler: true
script:
- bundle exec rubocop -D
- bundle exec rspec
- bundle exec brakeman -zA
- bundle exec codeclimate-test-reporter
| Use gem to notify status | Use gem to notify status
| YAML | apache-2.0 | smartbox-io/brain,smartbox-io/brain |
b4fc8d524a1d44d690c5d3a5187e8b8746694178 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
sudo: false
addons:
code_climate:
repo_token: 48aeb1397404fe6079c14bbca8911959d29b44065e305a70b1bc6604d3effe46
deploy:
provider: ninefold
app_id: '8650'
auth_token:
secure: AR1iRoszLrZnrQd/h5zP1tAEmXtLt3KndZA4GoCc/I//k07MpUmcDkorgkE7QYE3o6F/1Rh2p3feCYr1S1D9cDMuG+DV9+Z+7Ga+U... | language: ruby
rvm:
- 2.2.2
sudo: false
addons:
code_climate:
repo_token: 48aeb1397404fe6079c14bbca8911959d29b44065e305a70b1bc6604d3effe46
| Remove Ninefold deploy info from Travis config | Remove Ninefold deploy info from Travis config
| YAML | mit | ruby-rcade/RubyGameDev.com,ruby-rcade/RubyGameDev.com,RailsGEnthusiasts/RubyGameDev.com,RailsGEnthusiasts/RubyGameDev.com,PowerCodeGirls/RubyGameDev.com,RailsGEnthusiasts/RubyGameDev.com,PowerCodeGirls/RubyGameDev.com,ruby-rcade/RubyGameDev.com,PowerCodeGirls/RubyGameDev.com |
f8cf7a96246594d645a0472e54f5f1067cdda1b2 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
env:
- SET="-m logic"
- SET="-m live"
- SET="-m destructive"
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
before_script:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
script:
- cove... | language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
env:
- SET="-m logic"
- SET="-m live"
- SET="-m destructive"
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
before_script:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
script:
- cove... | Use job number for gist names instead of build number | Use job number for gist names instead of build number
| YAML | mit | Artanicus/python-cozify,Artanicus/python-cozify |
a42f3aab4bb00edb8090524b945763c841a99d90 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- "sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable"
- "sudo add-apt-repository -y ppa:v-launchpad-jochen-sprickerhof-de/pcl"
- "sudo apt-get update"
- "pip install -U -q cython"
- "export DEBIAN_FRONTEND=noninteractive"
- "sudo apt-get -qq install libpcl-al... | language: python
python:
- "2.7"
before_install:
- "sudo add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable"
- "sudo add-apt-repository -y ppa:v-launchpad-jochen-sprickerhof-de/pcl"
- "sudo apt-get update"
- "pip install -U -q cython"
- "export DEBIAN_FRONTEND=noninteractive"
- "sudo apt-get -qq install libpcl-al... | Update PYTHONPATH to find liblas | Update PYTHONPATH to find liblas
| YAML | apache-2.0 | NLeSC/PattyAnalytics |
494a4cd55fa2faa4fbad19935028e81c165910d1 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
env:
- RAILS_VERSION="~> 3.2.0"
- RAILS_VERSION="~> 4.0.0"
- RAILS_VERSION="~> 4.1.0.rc1"
before_script:
- travis_retry gem install rails --version "$RAILS_VERSION"
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
env:
- RAILS_VERSION="~> 3.2.0"
- RAILS_VERSION="~> 4.0.0"
- RAILS_VERSION="~> 4.1.0"
before_script:
- travis_retry gem install rails --version "$RAILS_VERSION"
| Test against rails 4.1 final | Test against rails 4.1 final
| YAML | mit | pigoz/spring,rails/spring,ypresto/spring,smathy/spring,maclover7/spring,grosser/spring,universsky/spring-1,slobodankovacevic/spring,mariusbutuc/spring,y-yagi/spring |
648d2ef7541b875b3cf8e62a17306c28145c8704 | .travis.yml | .travis.yml | dist: bionic
language: ruby
rvm: 2.6
gemfile:
- Gemfile
services:
- postgresql
- redis-server
addons:
postgresql: 10
script: bundle exec rake test
before_install:
- createdb searchkick_test || true
- ./test/ci/install_elasticsearch.sh
cache:
directories:
- $HOME/elasticsearch
env:
- ELASTICSEARCH_VE... | dist: bionic
language: ruby
rvm: 2.6
gemfile:
- Gemfile
services:
- postgresql
- redis-server
addons:
postgresql: 10
script: bundle exec rake test
before_install:
- createdb searchkick_test || true
- ./test/ci/install_elasticsearch.sh
cache:
directories:
- $HOME/elasticsearch
env:
- ELASTICSEARCH_VE... | Test against latest ES versions | Test against latest ES versions
| YAML | mit | johan--/searchkick,ankane/searchkick,johan--/searchkick |
39f6ee9ff6eaa62c9f34504749f513acd2eda775 | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
before_script:
- composer update --prefer-source
script:
- ./vendor/bin/phpunit
- ./vendor/bin/phpcs --standard=PSR2 ./src ./tests
notifications:
irc: "irc.freenode.org#zftalk.modules"
| language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer update --prefer-source
script:
- ./vendor/bin/phpunit
notifications:
irc: "irc.freenode.org#zftalk.modules"
| Update Travis config to allow builds to pass | Update Travis config to allow builds to pass
| YAML | mit | Ocramius/OcraServiceManager,Ocramius/OcraServiceManager |
1d85bc3047842efaceb2e2abab1dc6b64486cf97 | .travis.yml | .travis.yml | language: rust
sudo: false
matrix:
include:
- rust: 1.29.0
- rust: stable
- rust: beta
- rust: nightly
- rust: nightly
env:
- FEATURES='nightly'
branches:
only:
- staging
- trying
- master
script:
- cargo build --verbose --features "$FEATURES"
- cargo test --verbo... | language: rust
sudo: false
matrix:
include:
- rust: 1.29.0
- rust: stable
- rust: beta
- rust: nightly
- rust: nightly
env:
- FEATURES='nightly'
branches:
only:
- staging
- trying
- master
script:
- cargo build --verbose --features "$FEATURES"
- cargo test --verbo... | Test Serde support on CI | Test Serde support on CI
| YAML | apache-2.0 | rust-lang/hashbrown,rust-lang/hashbrown |
0e12f8b75023ed95c1af286e2928e8575c619521 | .travis.yml | .travis.yml | language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "6"
- "7"
- "8"
- "9"
sudo: false
dist: trusty
addons:
chrome: stable
cache:
directories:
- $HOME/.npm
env:
global:
# See https://git... | language: node_js
node_js:
# we recommend testing addons with the same minimum supported node version as Ember CLI
# so that your addon works for all apps
- "6"
- "7"
- "8"
- "9"
addons:
chrome: stable
cache:
directories:
- $HOME/.npm
env:
global:
# See https://git.io/vdao3 for details.
... | Remove deprecated `sudo: false` option | TravisCI: Remove deprecated `sudo: false` option
see https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration
| YAML | mit | billybonks/ember-cli-stylelint,billybonks/ember-cli-stylelint |
13400837650575765b3e82345760d40e63ba8bae | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="/home/travis/miniconda/bin:$PATH"
- conda update --yes conda
- conda install --yes py... | language: python
python:
- "2.7"
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="/home/travis/miniconda/bin:$PATH"
- conda update --yes conda
- conda install --yes py... | Add jsonschema to Travis script | Add jsonschema to Travis script
| YAML | bsd-2-clause | bgyori/indra,johnbachman/indra,sorgerlab/indra,pvtodorov/indra,bgyori/indra,pvtodorov/indra,jmuhlich/indra,johnbachman/belpy,johnbachman/indra,jmuhlich/indra,pvtodorov/indra,bgyori/indra,sorgerlab/indra,sorgerlab/belpy,sorgerlab/belpy,jmuhlich/indra,johnbachman/indra,sorgerlab/belpy,johnbachman/belpy,pvtodorov/indra,jo... |
71163b3f2e7e0fc6363292b94541d5a720aea114 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: vendor/bin/phpspec run
| language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: vendor/bin/phpspec run
| Remove PHP 5.4 from CI tests | Remove PHP 5.4 from CI tests
| YAML | mit | codezero-be/mailer |
b3b7c331875edc32f5dc44eee7278fe5b8b7e89d | .travis.yml | .travis.yml | # After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
python:
- 3.3
virtualenv:
system_site_packages: false
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda3-3.0.0-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
... | # After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
python:
- 3.3
virtualenv:
system_site_packages: false
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda3-3.0.0-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
... | Add build doc in Travis conf | Add build doc in Travis conf
| YAML | bsd-3-clause | bnoi/scikit-tracker,bnoi/scikit-tracker,bnoi/scikit-tracker |
0aa4a348f0bde17c53d912c943f39ce7cfaa2b65 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3
- 2.4
- 2.5
before_install:
- gem update --system
- gem install bundler
script:
bundle exec rake test
notifications:
email:
recipients:
- fhir-testing-list@lists.mitre.org
on_failure: change
| language: ruby
rvm:
- 2.4
- 2.5
- 2.6
before_install:
- gem update --system
- gem install bundler
script:
bundle exec rake test
notifications:
email:
recipients:
- fhir-testing-list@lists.mitre.org
on_failure: change
| Remove v2.3 support because EOL. | Remove v2.3 support because EOL.
| YAML | apache-2.0 | fhir-crucible/plan_executor,fhir-crucible/plan_executor |
e817ee9ac97f08ebe633eadf2d11ac0b5d1dd1b9 | .travis.yml | .travis.yml | language: go
go:
- master
before_install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- cd static && npm rebuild node-sass --force
script:
- make
| language: go
go:
- master
before_install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
install:
- cd static && npm rebuild node-sass --force && cd ..
script:
- make
| Change the current directory after rebuilding node-sass | Change the current directory after rebuilding node-sass
| YAML | apache-2.0 | decaf-emu/huehuetenango,decaf-emu/huehuetenango,decaf-emu/huehuetenango |
2f3c0fe9bd9b2352c7ebab8cbcceb351ecc708e7 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- 1.4
- 1.5
- tip
script:
- go vet github.com/echlebek/strictjson
- go test -coverprofile=coverprofile github.com/echlebek/strictjson
after_success:
- bash <(curl -s https://codecov.io/bash) -f coverprofile
| language: go
go:
- 1.3
- 1.4
- 1.5
- 1.6
- tip
script:
- go vet github.com/echlebek/strictjson
- go test -coverprofile=coverprofile github.com/echlebek/strictjson
| Add Go 1.6, remove codecov | Add Go 1.6, remove codecov
| YAML | mit | echlebek/strictjson |
586e0b014ad587289b0b4dde22332601bd4c55bc | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "4.0"
- "4.1"
- "5.0"
- "5.1"
after_script:
- npm run coveralls
| sudo: false
language: node_js
node_js:
- 4.0
- 5.0
- stable
after_script:
- npm run coveralls
| Test against the latest stable node | Test against the latest stable node
| YAML | mit | chriso/validator.js |
c31b0b0218c19db4ba8ef0aaed2b1eca0c70596a | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
branches:
only:
- master
install:
- pip install flake8 --use-mirrors
script:
- flake8 --ignore=E501,E265,E266,E402 .
| language: python
python:
- "2.6"
- "2.7"
branches:
only:
- master
- develop
install:
- pip install flake8 --use-mirrors
script:
- flake8 --ignore=E501,E265,E266,E402 .
| Add branch develop to TravisCI | Add branch develop to TravisCI
| YAML | mit | SpunkyBot/spunkybot,SpunkyBot/spunkybot |
70af3a761259df1196092bfd8267a0f27feb1c36 | tasks/Gentoo.yml | tasks/Gentoo.yml | - name: install basic packages
portage: name={{ item }} state=present
with_items:
- curl
- hdparm
# - heirloom-mailx
- iftop
- iotop
- lsof
- ncdu
- netcat
- openssl
- app-misc/screen
- smartmontools
- sysstat
- net-misc/telnet-bsd
-... | - name: install basic packages
portage: name={{ item }} state=present
with_items:
- curl
- hdparm
# - heirloom-mailx
- iftop
- iotop
- lsof
- ncdu
- netcat6
- openssl
- app-misc/screen
- smartmontools
- sysstat
- net-misc/telnet-bsd
... | Add netcat6 instead of netcat | Add netcat6 instead of netcat
| YAML | mit | gitinsky/ansible-role-common-utils |
8ee2867b6a288021635f555edf13eae064e03f33 | tasks/ubuntu.yml | tasks/ubuntu.yml | ---
- name: Add Zulu.org JDK repository key
apt_key: keyserver=keyserver.ubuntu.com key=0x219BD9C9
when: corda_java == "openjdk"
- name: Add Zulu.org JDK repository
apt_repository:
repo: http://repos.azulsystems.com/ubuntu stable main
state: present
when: corda_java == "openjdk"
- name: Update APT cac... | ---
- name: Add Zulu.org JDK repository key
apt_key: keyserver=keyserver.ubuntu.com id=0x219BD9C9
when: corda_java == "openjdk"
- name: Add Zulu.org JDK repository
apt_repository:
repo: deb http://repos.azulsystems.com/ubuntu stable main
state: present
when: corda_java == "openjdk"
- name: Update APT ... | Fix Ubuntu zulu OpenJDK installation | Fix Ubuntu zulu OpenJDK installation
| YAML | apache-2.0 | corda/corda-ansible |
5ac3900463bee0003c3f99c53a3666fc679bb48a | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
services:
- mysql
before_script:
- cp travis.properties config.properties
- mysql -e 'create database movies_db;'
script:
- mvn clean verify
| language: java
jdk:
- oraclejdk8
services:
- mysql
before_script:
- cp travis.properties config.properties
- mysql -e 'create database movies_db;'
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
script:
- mvn test -B
| Add maven command to install dependencies. | Add maven command to install dependencies.
| YAML | mit | MontealegreLuis/movies,MontealegreLuis/movies |
2fcf6a201f3d9bf5cc37f7a170ad9836919b7f6f | .travis.yml | .travis.yml | language: go
go:
- 1.0
- 1.1
script:
- make test
| language: go
go:
- 1.0
- 1.1
- 1.2
before_script:
- go get
script:
- make test
| Add go get before run tests and use of version 1.2 | Add go get before run tests and use of version 1.2
| YAML | mit | cloudson/gitql,loveluther/gitql,senthilnayagam/gitql,cloudson/gitql |
da40d7c2e4260fbea8fbc934cca8d5229e001800 | .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 "add before_install""""" | Revert "Revert "Revert "Revert "Revert "add before_install"""""
This reverts commit 3c97f50f3dfe48aa3609e016973f5776e78f1759.
| YAML | mit | wikimedia/apps-ios-wikipedia,montehurd/apps-ios-wikipedia,anirudh24seven/wikipedia-ios,josve05a/wikipedia-ios,wikimedia/wikipedia-ios,wikimedia/apps-ios-wikipedia,wikimedia/wikipedia-ios,wikimedia/wikipedia-ios,julienbodet/wikipedia-ios,anirudh24seven/wikipedia-ios,wikimedia/apps-ios-wikipedia,julienbodet/wikipedia-ios... |
63efb1d0626909bbfa04b92021617d95e66ac03b | .travis.yml | .travis.yml | language: perl
perl:
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
before_install:
- git submodule update --init --recursive
- git clone git://github.com/maxmind/libmaxminddb
- cd libmaxminddb
- ./bootstrap
- ./configure
- make
- sudo make install
- sudo ldconfig
- cd ..
- sudo apt-get inst... | language: perl
perl:
- "5.18"
- "5.16"
- "5.14"
- "5.12"
- "5.10"
before_install:
- git submodule update --init --recursive
- git clone git://github.com/maxmind/libmaxminddb
- cd libmaxminddb
- ./bootstrap
- ./configure
- make
- sudo make install
- sudo ldconfig
- cd ..
- sudo apt-get inst... | Use a more verbose cpanm command. | Use a more verbose cpanm command.
| YAML | apache-2.0 | maxmind/mod_maxminddb,maxmind/mod_maxminddb,maxmind/mod_maxminddb |
c01c4c17b9c47c29c01f3c52d73e966333d6b3dd | .travis.yml | .travis.yml | before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake test_app"
env:
- DB=sqlite
- DB=mysql
- DB=postgres
script: "DISPLAY=:99.0 bundle exec rake"
notifications:
email:
- ryan@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- 1-0-stable
- master
rvm:
- 1.8.7
... | before_script:
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake test_app"
env:
- DB=sqlite
- DB=mysql
- DB=postgres
script: "DISPLAY=:99.0 bundle exec rake"
notifications:
email:
- ryan@spreecommerce.com
irc: "irc.freenode.org#spree"
branches:
only:
- 1-0-stable
- master
rvm:
- 1.8.7
... | Remove ree testing, given that it's the same as 1.8.7p352 | Remove ree testing, given that it's the same as 1.8.7p352
| YAML | bsd-3-clause | woboinc/spree,keatonrow/spree,kitwalker12/spree,thogg4/spree,ramkumar-kr/spree,wolfieorama/spree,quentinuys/spree,azranel/spree,DarkoP/spree,edgward/spree,jordan-brough/solidus,jparr/spree,vinsol/spree,adaddeo/spree,trigrass2/spree,cutefrank/spree,pjmj777/spree,pulkit21/spree,welitonfreitas/spree,LBRapid/spree,alejandr... |
b0cdca520927b2f56e8be789500cfff1d2189ce7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
- rbx-head
env:
- COVERALLS=true
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-head
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- rbx-2.2.1
- rbx-2.1.1
- rbx-head
env:
- COVERALLS=true
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-head
- rvm: rbx-2.1.1
- rvm: rbx-2.2.1
| Update Ruby versions for Travis. | Update Ruby versions for Travis.
| YAML | mit | cupakromer/emoji-rspec |
6840098dfd6953b72b35a2fa14e3d051944a2953 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake ci SPEC_OPTS='--format documentation'"
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
matrix:
fast_finish: t... | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake ci SPEC_OPTS='--format documentation'"
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
- PUPPET_GEM_VERSION="... | Add support for Puppet v3.4.0 | Add support for Puppet v3.4.0
| YAML | apache-2.0 | puppetlabs/puppetlabs-firewall,jaakkosipari/puppetlabs-firewall,ianand0204/puppetlabs-firewall |
ed5595d7d1c8deae49ebef2ec3a3b7b44a8e69c2 | .travis.yml | .travis.yml | language: android
android:
components:
- build-tools-23.0.0
- android-23
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
before_install:
- chmod +x gradlew
script: ./gradlew build assembl... | language: android
android:
components:
- build-tools-23.0.0
- android-23
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
before_install:
- chmod +x gradlew
script:
- ./gradlew testReleas... | Add script to Travis .yml for running unit tests | Add script to Travis .yml for running unit tests
| YAML | apache-2.0 | brave-warrior/TravisClient_Android,dkhmelenko/Varis-Android,DreierF/TravisClient-Android,dkhmelenko/Varis-Android,brave-warrior/TravisClient_Android,dkhmelenko/TravisClient-Android,brave-warrior/TravisClient-Android,dkhmelenko/Varis-Android,brave-warrior/TravisClient-Android,dkhmelenko/TravisClient-Android,DreierF/Trav... |
2188ce7f80d75e8591bd952132c2d0478afa787f | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
install: "pip install -r requirements.txt"
script: "python -m unittest discover"
after_success: "coveralls"
| language: python
python:
- "2.7"
- "3.5"
install: "pip install -r requirements.txt"
script: "coverage run -m unittest discover"
after_success: "coveralls"
| Add correct coverage test command | Add correct coverage test command
| YAML | mit | mgrijalva/nose2-html-report,mgrijalva/nose2-html-report |
e8f2b923cbb2dd43d8a6bceb0f167b7fced67b12 | .travis.yml | .travis.yml | matrix:
include:
- language: node_js
node_js:
- "12"
before_script:
- cd website
- npm install --ignore-scripts
script:
- npm run lint
- language: python
python: 3.6
before_script:
- cd website
- pip install -r requirements-dev.txt... | matrix:
include:
- language: node_js
node_js:
- "12"
before_script:
- cd website
- npm install --ignore-scripts
script:
- npm run lint
- language: python
python: 3.6
before_script:
- cd website
- pip install -r requirements-dev.txt... | Change linter to exit with 0 | Change linter to exit with 0
| YAML | mit | michmech/lexonomy,michmech/lexonomy |
60a6242b2df8ce828c84323c45f744835bb9dafc | .travis.yml | .travis.yml | sudo: false
language: generic
env:
global:
- BUILDER=catkin
- NO_SUDO=true
- NOT_TEST_INSTALL=true
- USE_DEB=true
- ROS_PARALLEL_JOBS="-j8"
- ROSWS=wstool
matrix:
- ROS_DISTRO=indigo
- ROS_DISTRO=jade
matrix:
allow_failures:
- env: ROS_DISTRO=jade
script: source .travis/tra... | sudo: false
language: generic
env:
global:
- BUILDER=catkin
- NO_SUDO=true
- NOT_TEST_INSTALL=true
- USE_DEB=true
- ROS_PARALLEL_JOBS="-j8"
- ROSWS=wstool
matrix:
- ROS_DISTRO=indigo
script: source .travis/travis.sh
notifications:
email:
on_success: always
on_failure: alway... | Stop testing jade because it is not supported | Stop testing jade because it is not supported
| YAML | bsd-3-clause | pazeshun/jsk_apc,pazeshun/jsk_apc,pazeshun/jsk_apc,pazeshun/jsk_apc,pazeshun/jsk_apc |
b373f85311b81a4aaf2104ac26f15f77bf2d42ba | .travis.yml | .travis.yml | language: python
python:
- '3.6'
- '3.7'
- '3.8'
- '3.9'
before_install: sudo apt-get install unzip
before_script:
- export TFVER=0.13.4
- export TFURL=https://releases.hashicorp.com/terraform/
- TFURL+=$TFVER
- TFURL+="/terraform_"
- TFURL+=$TFVER
- TFURL+="_linux_amd64.zip"
- wget $TFURL -O terraform_bi... | language: python
python:
- '3.6'
- '3.7'
- '3.8'
before_install: sudo apt-get install unzip
before_script:
- export TFVER=0.13.4
- export TFURL=https://releases.hashicorp.com/terraform/
- TFURL+=$TFVER
- TFURL+="/terraform_"
- TFURL+=$TFVER
- TFURL+="_linux_amd64.zip"
- wget $TFURL -O terraform_bin.zip
... | Remove Python 3.9 as it is not yet available on Travis | Remove Python 3.9 as it is not yet available on Travis
| YAML | mit | beelit94/python-terraform |
a2a7c16ef56ace6a612ccffb411b170c89149f20 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
script: 'rake spec'
before_install:
- sudo add-apt-repository -y ppa:raphink/augeas
- sudo apt-get update -qq
- sudo apt-get install -qq libaugeas0 libaugeas-dev
- sudo chmod -r /usr/share/augeas/lenses/dist/splunk.aug
env:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET... | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
script: 'rake spec'
env:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.6.0"
- PUPPET_VERSION="~> 3"
gemfile: .gemfile
matrix:
fast_finish: true
allow_failures:
- rvm: 1.9.3
- rvm: 2.0.0
exclude:
- rvm: 2.0.0
env: ... | Normalize Travis-CI config w/my other Puppet projects | Normalize Travis-CI config w/my other Puppet projects
Including:
* Move sections to be the same order.
* Move varying sections to end for easier diffing.
* Test against Ruby 1.8.7, 1.9.3 and 2.0.0.
* Test against Puppet 2.7.x, 3.6.x and 3.x.x.
* Add test matrix, setting fast_finish, allowing failures for all Rubies bu... | YAML | apache-2.0 | wcooley/puppet-splunk_conf |
e31850da51a30e13ffd7edec6ea28710715d1e62 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
node_js:
- "6"
python:
- "3.4"
before_install:
- hash -r
- rvm install 2.4.1
- sudo apt-get -y install python3-pip python-dev
cache:
directories:
- node_modules
install:
- bundle install
- npm install
- pip3 install -r demo/requirements.txt
befor... | sudo: required
dist: trusty
language: node_js
node_js:
- "6"
python:
- "3.4"
before_install:
- sudo apt-get install curl -y
- rvm install 2.4.1
- sudo apt-get -y install python3-pip python-dev
cache:
directories:
- node_modules
install:
- bundle install
- npm install
- pip3 install -r demo/re... | Install curl for rvm (again) | Install curl for rvm (again)
| YAML | mit | LandRegistry/land-registry-elements,LandRegistry/land-registry-elements,LandRegistry/land-registry-elements,LandRegistry/land-registry-elements,LandRegistry/land-registry-elements |
c3b8a62e2cb40c21e472414716cfb29adfec0797 | .travis.yml | .travis.yml | sudo: False
language: python
cache: pip
python:
- "2.7.14"
- "3.3.6"
- "3.4.6"
- "3.5.4"
- "3.6.4"
- "nightly"
install:
- pip install -r requirements.txt
- pip install coverage codacy-coverage
script:
- touch userdb.json
- echo '{}' > userdb.json
- coverage run test.py --source="test.py,plugins/*.... | sudo: False
language: python
cache: pip
python:
- "2.7.14"
- "3.3.6"
- "3.4.6"
- "3.5.4"
- "3.6.4"
- "nightly"
install:
- pip install -r requirements.txt
- pip install coverage codacy-coverage
script:
- touch userdb.json
- echo '{"##wolfy1339":{},"#zirc":{}}' > userdb.json
- coverage run test.py -... | Add the inner JSON content | Add the inner JSON content | YAML | mit | wolfy1339/Python-IRC-Bot |
208540c5101d04d632361bc769a1f23df8547ff9 | .travis.yml | .travis.yml | before_install:
- gem update
- gem --version
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
script:
- bundle exec rake
rvm:
- 2.0.0-p648
- 2.1.0
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
gemfile:
- Gemfile
| language: ruby
before_install:
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
script:
- bundle exec rake
rvm:
- 2.0.0-p648
- 2.1.0
- 2.2.10
- 2.3.8
- 2.4.5
- 2.5.3
- 2.6.1
gemfile:
- Gemfile
| Revert gem update from before_install | Revert gem update from before_install
| YAML | mit | MindscapeHQ/raygun4ruby,MindscapeHQ/raygun4ruby,MindscapeHQ/raygun4ruby |
021e1ed57d1d32b067be4ae2e11973517bbf10d5 | .travis.yml | .travis.yml | language: ruby
sudo: false
before_install:
- gem update --system 3.1.3
- gem install bundler:2.1.4
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
- jruby-9.2.11.1
branches:
only:
- master
cache: bundler
| language: ruby
sudo: false
before_install:
- gem update --system 3.2.0.rc.1
- gem install bundler:2.1.4
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
- jruby-9.2.11.1
branches:
only:
- master
cache: bundler
| Fix a jruby warning about unrelated default gemspec with deprecated attributes | Fix a jruby warning about unrelated default gemspec with deprecated attributes
Newer rubygems no longer reads all gemspecs on startup and thus no
longer warns.
| YAML | mit | activeadmin/arbre,activeadmin/arbre |
e3f04a42c9a5e0f4d0d19aa936caff0c4ffe2512 | .travis.yml | .travis.yml | language: "node_js"
node_js:
- 0.8
- 0.10
services:
- rabbitmq # will start rabbitmq-server
- mongodb # will start mongodb
branches:
only:
- v1.1
before_install:
- npm install
- sudo mkdir -p /var/log/push_server/ # To store log files
- sudo chmod 777 /var/log/push_server/
- cd scripts/
- aw... | language: "node_js"
node_js:
- 0.8
- 0.10
services:
- rabbitmq # will start rabbitmq-server
- mongodb # will start mongodb
branches:
only:
- v1.1
before_install:
- npm install
- sudo mkdir -p /var/log/push_server/ # To store log files
- sudo chmod 777 /var/log/push_server/
- cd scripts/
- aw... | Call make to create the version.info file | Call make to create the version.info file
| YAML | agpl-3.0 | telefonicaid/notification_server,telefonicaid/notification_server,frsela/notification_server,frsela/notification_server,telefonicaid/notification_server,frsela/notification_server,frsela/notification_server,telefonicaid/notification_server,telefonicaid/notification_server,frsela/notification_server |
4757fb4442dfb1b1b4444a281fc3b246b0952cb7 | .travis.yml | .travis.yml | sudo: true
language: cpp
os:
- osx
compiler:
- gcc
cache:
directories:
- "$HOME/Library/Caches/Homebrew"
script:
- curl -L https://rawgit.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/macpython-download-cache-and-build-module-wheels.sh -O
- chmod u+x macpython-download-cache-and-build-module-wheel... | sudo: true
language: cpp
os:
- osx
compiler:
- gcc
cache:
directories:
- "$HOME/Library/Caches/Homebrew"
script:
- curl -L https://rawgit.com/InsightSoftwareConsortium/ITKPythonPackage/master/scripts/macpython-download-cache-and-build-module-wheels.sh -O
- chmod u+x macpython-download-cache-and-build-module-wheel... | Use transfer.sh for macOS package upload. | ENH: Use transfer.sh for macOS package upload.
Prefer transfer.sh over file.io for macOS package upload.
| YAML | apache-2.0 | jhlegarreta/ITKIsotropicWavelets,phcerdan/ITKIsotropicWavelets,jhlegarreta/ITKIsotropicWavelets,phcerdan/ITKIsotropicWavelets |
1abc155d2f32ac0128febfb34d7f27987204a6e3 | .travis.yml | .travis.yml | # R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# Header
language: r
sudo: required
warnings_are_errors: false
r_check_args: --no-vignettes
#env
env:
global:
- CRAN: http://cran.rstudio.com
- NOT_CRAN: true
#notifications
notifications:
email:
on_success: change
on_... | # R for travis: see documentation at https://docs.travis-ci.com/user/languages/r
# Header
language: r
sudo: required
warnings_are_errors: false
r_check_args: --no-vignettes
#env
env:
global:
- CRAN: http://cran.rstudio.com
- NOT_CRAN: true
#notifications
notifications:
email:
on_success: change
on_... | Update Travis Config for Naive Bayes Package | Update Travis Config for Naive Bayes Package
| YAML | apache-2.0 | opendatagroup/hadrian,opendatagroup/hadrian,opendatagroup/hadrian,opendatagroup/hadrian |
0b51b87e646b7fa4f8902eb1fc554b6a0f3eb8d5 | .travis.yml | .travis.yml | language: go
go:
- 1.5.1
install:
- make deps
script:
- make install
| language: go
go:
- 1.5.1
script:
- make install
| Remove make deps for TravisCI | Remove make deps for TravisCI
The client and model code is already included. We dont' want to
regenerate it. At least not until
https://github.com/emccode/gorackhd/issues/19 is resolved.
| YAML | mit | emccode/gorackhd |
286669839ab0c48751a991946fcb95eb51d185d1 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.4
- 0.6 | language: node_js
node_js:
- 0.4
- 0.6
- 0.7
| Add node v0.7.x to Travis. | Add node v0.7.x to Travis.
| YAML | mit | cliffano/ae86 |
4adfb2e15481f1032786809bc63c1efb26fa9ff0 | .travis.yml | .travis.yml | language: php
php: 7.1
sudo: false
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
- yarn install
- yarn production
script:
- vendor/bin/phpspec run --verbose
- vendor/bin/parallel-lint --exclude vendor .
- vendor/bin/phpunit --verbose --coverage-clover ... | language: php
php: 7.1
sudo: false
cache:
yarn: true
directories:
- node_modules
- vendor
before_install:
# Repo for newer Node.js versions
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
# Repo for Yarn
- sudo apt-key adv --keyserver pgp.mit.edu --recv D101F7899D41F3C3
- echo... | Add cache and install Yarn | Add cache and install Yarn
| YAML | mit | laravelio/portal,laravelio/portal,LaravelIO/laravel.io,laravelio/portal,LaravelIO/laravel.io,LaravelIO/laravel.io |
e4da7a22dc8d503298fae9efc174ce4c11059b4f | .travis.yml | .travis.yml | ---
before_install: gem update --system 2.1.11
script: "./script/tests"
gemfile: "this/does/not/exist"
rvm:
- 2.0
- 2.1
- 2.2
- 2.3
| ---
before_install: gem update --system 2.5.2
script: "./script/tests"
gemfile: "this/does/not/exist"
rvm:
- 2.3
| Use latest versions from OS X 10.13 | Use latest versions from OS X 10.13
| YAML | mit | n0ts/boxen,boxen/boxen,boxen/boxen,n0ts/boxen,n0ts/boxen,boxen/boxen |
602013a3d00961726b05dbdbb1d1f01027e34ad5 | .travis.yml | .travis.yml | language: ruby
before_install:
- gem install bundler
before_script:
- rake db:migrate
script:
- rake ci
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
gemfile:
- test/gemfiles/Gemfile.rails.4.0
- test/gemfiles/Gemfile.rails.4.1
- test/gemfiles/Gemfile.rails.4.2
- test/gemfiles/Gemfile.rails.5.0
branches:
... | language: ruby
before_install:
- gem install bundler
before_script:
- rake db:migrate
script:
- rake ci
rvm:
- 2.2.4
- 2.3.0
gemfile:
- test/gemfiles/Gemfile.rails.4.0
- test/gemfiles/Gemfile.rails.4.1
- test/gemfiles/Gemfile.rails.4.2
- test/gemfiles/Gemfile.rails.5.0
branches:
only:
- master
m... | Drop older verisons of ruby at EOL | Drop older verisons of ruby at EOL
| YAML | mit | 2rk/comfortable-mexican-sofa,comfy/comfortable-mexican-sofa,nasmorn/comfortable-mexican-sofa,movingfox/comfortable-mexican-sofa,simple-and-powerful/comfortable-mexican-sofa,comfy/comfortable-mexican-sofa,simple-and-powerful/comfortable-mexican-sofa,comfy/comfortable-mexican-sofa,elyalvarado/comfortable-mexican-sofa,sim... |
5259a718ccf2a3e54b390c350e93d67357784a46 | .travis.yml | .travis.yml | # Not using to test compilation of go component of project because it requires
# xcodebuild which is not available in the ubuntu environment travis-ci
# provides.
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
gemfile: rubygem/Gemfile
script: make rubygem/lib/zeus/version.rb && cd rubygem && bundle exec rspec spec
| # Not using to test compilation of go component of project because it requires
# xcodebuild which is not available in the ubuntu environment travis-ci
# provides.
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.1.3
gemfile: rubygem/Gemfile
script: make rubygem/lib/zeus/version.rb && cd rubygem && bundle exec rs... | Add Ruby 2.1.3 to Travis support | Add Ruby 2.1.3 to Travis support | YAML | mit | Lexxville/zeus,pelletencate/zeus,stripe/zeus,latortuga/zeus,kgrz/zeus,latortuga/zeus,burke/zeus,matrinox/zeus,burke/zeus,latortuga/zeus,matrinox/zeus,matrinox/zeus,Lexxville/zeus,Lexxville/zeus,kgrz/zeus,stripe/zeus,ylansegal/zeus,ylansegal/zeus,ylansegal/zeus,pelletencate/zeus,stripe/zeus,pelletencate/zeus,kgrz/zeus,b... |
7627171580ebbff16f876bca86692d10e1055930 | .travis.yml | .travis.yml | # Based on the settings found in https://github.com/thoughtbot/carnival
# Copyright (C) 2014 thoughtbot <hello@thoughtbot.com>, released under the MIT License
language: sh
notifications:
email: false
slack:
secure: dNE7nOHDxyrwcgPfcDJB6WZeoYCYx/ZGI4rOJsSxbxK//0uUjZ1ECwUW4wN0+sQkYUqm0xKku9ZUHFCVDr8R572srM+7cJ8... | # Based on the settings found in https://github.com/thoughtbot/carnival
# Copyright (C) 2014 thoughtbot <hello@thoughtbot.com>, released under the MIT License
language: sh
notifications:
email: false
slack:
secure: dNE7nOHDxyrwcgPfcDJB6WZeoYCYx/ZGI4rOJsSxbxK//0uUjZ1ECwUW4wN0+sQkYUqm0xKku9ZUHFCVDr8R572srM+7cJ8... | Install yesod-bin as an extra app too | Install yesod-bin as an extra app too
| YAML | mit | jspahrsummers/ScrumBut |
056419628314bdd8a8bdd8fd2b37babc18d364d0 | .travis.yml | .travis.yml | language: python
sudo: required
dist: xenial
python:
- "2.7"
- "3.6"
- "3.7"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.10
- DJANGO_VERSION=1.11
- DJANGO_VERSION=2.0
- DJANGO_VERSION=2.1
- DJANGO_VERSION=2.2
- DJANGO_VERSION=3.0
matrix:
exclude:
- python: "2.7"
env: DJANGO_VERSION=2... | language: python
sudo: required
dist: xenial
python:
- "2.7"
- "3.6"
- "3.7"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.10
- DJANGO_VERSION=1.11
- DJANGO_VERSION=2.0
- DJANGO_VERSION=2.1
- DJANGO_VERSION=2.2
- DJANGO_VERSION=3.0
matrix:
exclude:
- python: "2.7"
env: DJANGO_VERSION=2... | Exclude run tests for Python 3.7 and Django 1.11 due to incompatible syntax error | Exclude run tests for Python 3.7 and Django 1.11 due to incompatible syntax error
| YAML | mit | catcombo/django-speedinfo,catcombo/django-speedinfo,catcombo/django-speedinfo |
fad7a7b456b21a4009795efba7def59987afe708 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g npm@~1.4.6'
matrix:
fast_fini... | language: node_js
node_js:
- "iojs-v1.8"
- "iojs-v1.7"
- "iojs-v1.6"
- "iojs-v1.5"
- "iojs-v1.4"
- "iojs-v1.3"
- "iojs-v1.2"
- "iojs-v1.1"
- "iojs-v1.0"
- "0.12"
- "0.11"
- "0.10"
- "0.9"
- "0.8"
- "0.6"
- "0.4"
before_install:
- '[ "${TRAVIS_NODE_VERSION}" == "0.6" ] || npm install -g... | Test on `io.js` `v1.7` and `v1.8` | Test on `io.js` `v1.7` and `v1.8` | YAML | mit | tomekwi/array-includes,reggi/array-includes,ljharb/array-includes,es-shims/array-includes |
247a89367b6f691206d2c5fae91ba4182f2c8483 | .travis.yml | .travis.yml | sudo: required
services:
- docker
before_install:
- docker build -t wakumaku/jitterbit_test .
- docker run -d --name jitterbit_test -t jitterbit_test
- wait 20
script: ./.travis.sh | sudo: required
services:
- docker
before_install:
- docker build -t wakumaku/jitterbit_test .
- docker run -d --name jitterbit_test -t wakumaku/jitterbit_test
- wait 20
script: ./.travis.sh | Fix docker image name to tag | Fix docker image name to tag
| YAML | mit | wakumaku/docker-jitterbit |
455c4ac49c5eef4ae1949338faa615bcd451c51e | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Example
script:... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
language: objective-c
osx_image: xcode7.2
# cache: cocoapods
# podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-direc... | Add osx_image to yml file | Add osx_image to yml file
| YAML | mit | pixeldock/PXDToolkit,pixeldock/PXDToolkit |
6e7733a1170e434f8cfc84baf294716cfd458c9c | .github/workflows/Publish-Website.yml | .github/workflows/Publish-Website.yml | name: Publish the mkdocs to gh-pages
on:
push:
branches:
- master
jobs:
deploy-website:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Prep mkdocs
run: .github/workflows/prepare_mkdocs.sh
- name: Deploy to GitHub Pag... | name: Publish the mkdocs to gh-pages
on:
release:
types: [published]
jobs:
deploy-website:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
... | Use this other plugin that has more stars | Use this other plugin that has more stars
| YAML | apache-2.0 | square/sqldelight,cashapp/sqldelight,cashapp/sqldelight,cashapp/sqldelight,square/sqldelight,cashapp/sqldelight,square/sqldelight,square/sqldelight |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.