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 |
|---|---|---|---|---|---|---|---|---|---|
f296767438766a99c2132fc65048aa80d6f4fbab | .travis.yml | .travis.yml | language: groovy
groovy:
- 2.4.5
jdk:
- oraclejdk7
script: ./gradlew clean build
branches:
except:
- gh-pages
notifications:
email: false
| language: groovy
groovy:
- 2.4.5
jdk:
- oraclejdk8
- oraclejdk7
script: ./gradlew clean build
branches:
except:
- gh-pages
notifications:
email: false
| Test again JDK 7 + 8 | Test again JDK 7 + 8 | YAML | apache-2.0 | thomaspaulmann/Documentor |
197c0719dca18542870e992d538fc1c50930fe40 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
compiler:
- clang
install:
- "python setup.py install"
- "pip install coveralls"
script:
- "nosetests --with-coverage --cover-package=shellinford"
after_success:
- coveralls
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
compiler:
- clang
install:
- "python setup.py install"
- "pip install coveralls"
script:
- "nosetests --with-coverage --cover-package=shellinford"
after_success:
- coveralls
| Remove Python 3.7 test temporary | Remove Python 3.7 test temporary
| YAML | bsd-3-clause | ikegami-yukino/shellinford-python,ikegami-yukino/shellinford-python |
69ec7c3495036415f133c5fec34628c873cf93b6 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
node_js:
- "8"
- "9"
- "10"
- "11"
- "12"
notifications:
email:
- yakov@therocketsurgeon.com
- tallpsmith@gmail.com
| sudo: required
dist: trusty
language: node_js
node_js:
- "10"
- "11"
- "12"
notifications:
email:
- yakov@therocketsurgeon.com
- tallpsmith@gmail.com
| Remove Node.js versions 8 & 9 now that these are long end of life | Remove Node.js versions 8 & 9 now that these are long end of life
| YAML | mit | Aconex/drakov,Aconex/drakov |
22bb1b933702dfd2f0a3932aef2963ff00ecb745 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.1.6
- 2.2.2
| language: ruby
rvm:
- 1.9.3
- 2.1.6
- 2.2.3
- jruby-head
| Add JRuby as test target on Travis CI | Add JRuby as test target on Travis CI
| YAML | unlicense | bhuga/promising-future,philipmw/promising-future |
17cd4f7d0c6f6f06350be2fea7f21259f50bb2b2 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "4"
- "5"
- "6"
- "7"
- "8"
- "9"
notifications:
email: false
| language: node_js
sudo: false
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
notifications:
email: false
| Remove Node 4, 5 and add 10 | tests: Remove Node 4, 5 and add 10
| YAML | mit | RobLoach/metalsmith-jstransformer |
65fbc00aec117d6c3dfda3be2f56293e076aa1ec | .travis.yml | .travis.yml | language: cpp
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libboost-all-dev
before_script:
- cd ../..
- git clone https://github.com/czipperz/vick czipperz/vick
- cd czipperz/vick
- mkdir -p plugins
- cd plugins
# customize me!
- git clon... | language: cpp
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libboost-all-dev
before_script:
- cd ../..
- git clone https://github.com/czipperz/vick czipperz/vick
- cd czipperz/vick
- mkdir -p plugins
- cd plugins
# customize me!
- git clon... | Call normal make in plugins | Call normal make in plugins
| YAML | unlicense | czipperz/vick-makefile,czipperz/vick-page,czipperz/vick-find,czipperz/vick-compile,czipperz/vick-open-line,czipperz/vick-shell-command,czipperz/vick-insert-mode,czipperz/vick-linear-change-manager,czipperz/vick-join |
e2687b2d7694a212114c70aa52aa0497a90f31cc | .travis.yml | .travis.yml | language: node_js
node_js:
- 4
install:
- npm install
script:
- npm run check
| language: node_js
node_js:
- 4
install:
- npm install npm
- npm install
script:
- npm run check
| Install on Travis with latest npm. | Install on Travis with latest npm.
| YAML | mit | cloverfield-tools/universal-react-boilerplate,ericelliott/universal-react-boilerplate,ericelliott/universal-react-boilerplate,gacosta89/knightsTour,gacosta89/knightsTour,cloverfield-tools/universal-react-boilerplate |
a0ce0fa75bb82620e7dbd36891ed04a2975e9a6c | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer selfupdate
install:
- composer install
before_script:
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
after_script:
- test -e... | language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- composer selfupdate
install:
- composer install
before_script:
- mkdir -p build/logs
script:
- phpunit --coverage-clover build/logs/clover.xml
after_script:
... | Test on PHP 7.0 and 7.1 | Test on PHP 7.0 and 7.1
| YAML | mit | clippings/phantom-pdf,clippings/phantom-pdf,clippings/phantom-pdf |
bff0fa21b7cc1fdff0825ee746d13f0c89b21316 | .travis.yml | .travis.yml | # https://travis-ci.org/diyan/assimilator
language: go
dist: trusty
# Define 'sudo: false' to run on container-based workers
sudo: false
go:
- 1.5.x
- 1.6.x
- 1.7.x
- master
env:
- GOOS=linux GOARCH=amd64
# - GOOS=linux GOARCH=386
# - GOOS=linux GOARCH=arm
# - GOOS=darwin GOARCH=amd64
# - GOOS=darwin GOAR... | # https://travis-ci.org/diyan/assimilator
language: go
dist: trusty
# Define 'sudo: false' to run on container-based workers
sudo: false
go:
- 1.5.x
- 1.6.x
- 1.7.x
- master
env:
- GOOS=linux GOARCH=amd64
# - GOOS=linux GOARCH=386
# - GOOS=linux GOARCH=arm
# - GOOS=darwin GOARCH=amd64
# - GOOS=darwin GOAR... | Set GO15VENDOREXPERIMENT for Go 1.5 on Travis | Set GO15VENDOREXPERIMENT for Go 1.5 on Travis
| YAML | mit | diyan/assimilator,diyan/assimilator,diyan/assimilator |
abb79390d9c8ef0aad994499d2c9b7797e6253b2 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
env:
global:
secure: "2RoFj0l11RstXSJZKtTCGksMRVy2b1ecA0Kp96PM7hbGZ6W3sslvemSD6YWN\nLEbKLZlHrbld98x1z0vXGqMTU6FCaXdYNjym59yOgD8caGBgEzmrs3RmgW5l\n3Q/ZVwB6Ld17tlOrGa6igyJ+P8kWvZP0AcriVZJDW5pH49XEAjU="
install:
- ./.travis.install... | language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
env:
global:
secure: "2RoFj0l11RstXSJZKtTCGksMRVy2b1ecA0Kp96PM7hbGZ6W3sslvemSD6YWN\nLEbKLZlHrbld98x1z0vXGqMTU6FCaXdYNjym59yOgD8caGBgEzmrs3RmgW5l\n3Q/ZVwB6Ld17tlOrGa6igyJ+P8kWvZP0AcriVZJDW5pH49XEAjU="
before_install:
- composer s... | Configure Travis to update composer before install | Configure Travis to update composer before install
| YAML | mit | rchouinard/rych-random |
82b57eab8277531023d1ffe3a073539460bf32db | .travis.yml | .travis.yml | language: c
compiler:
- clang
script: PLATFORM=TESTING make test_long
install:
- gem install coveralls-lcov
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq -y libgd2-xpm ia32-libs
ia32-libs-multiarch; fi
- script/bootstrap.sh
- cd src
after_success:
- PLATFORM=TES... | language: c
compiler:
- clang
script: PLATFORM=TESTING make test_long
install:
- gem install coveralls-lcov
before_install:
- sudo apt-get update -qq
- if [ `uname -m` = x86_64 ]; then sudo apt-get install -qq -y libgd2-xpm ia32-libs
ia32-libs-multiarch; fi
- script/bootstrap.sh
- cd src
after_success:
- PLATFORM=TES... | Fix before_deploy config for CI. | Fix before_deploy config for CI.
| YAML | bsd-3-clause | ene-ilies/vi-firmware,openxc/vi-firmware,ene-ilies/vi-firmware,ene-ilies/vi-firmware,ene-ilies/vi-firmware,openxc/vi-firmware,openxc/vi-firmware,openxc/vi-firmware |
5d5d51c98b308ba044e432d95ccfc0b98472626e | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
addons:
postgresql: 9.4
apt:
packages:
- oracle-java8-installer
before_script:
- mvn versions:display-dependency-updates versions:display-plugin-updates
- psql -c 'create database mtsar;' -U postgres
- java -jar target/mtsar-*.jar db migrate environment... | sudo: false
language: java
jdk:
- oraclejdk8
addons:
postgresql: 9.5
apt:
packages:
- oracle-java8-installer
before_script:
- mvn versions:display-dependency-updates versions:display-plugin-updates
- psql -c 'create database mtsar;' -U postgres
- java -jar target/mtsar-*.jar db migrate environment... | Switch to PostgreSQL on Travis CI | Switch to PostgreSQL on Travis CI [ci skip]
| YAML | apache-2.0 | mtsar/mtsar,dustalov/mtsar,dustalov/mtsar,mtsar/mtsar,dustalov/mtsar,mtsar/mtsar |
68cfb1bd7d1f6e9958c23a6615339815187cf011 | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- 1.7
- master
gobuild_args: -race
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/69b57e988266b7fa9abe
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
... | language: go
go:
- 1.5
- 1.6
- 1.7
gobuild_args: -race
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/69b57e988266b7fa9abe
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: n... | Remove master branch for git -- its broken on Travis. | Remove master branch for git -- its broken on Travis.
| YAML | apache-2.0 | gdamore/mangos,abelfrye/mangos,go-mangos/mangos,go-mangos/mangos |
544c356191946023de4f668f73463255e4829582 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "5"
before_install:
- npm install -g npm@latest
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "5"
before_install:
- npm set progress=false
- npm install -g npm@latest
| Disable progress bar for npm install | Disable progress bar for npm install
| YAML | mit | jupl/eslint-config |
72c5d1327d57a199d485a6f8163f6461c9bd2a7a | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.8.7-p374"
- "1.9.2"
- "1.9.3"
before_install:
- sudo apt-get update
- sudo apt-get install expect
script:
bundle exec cucumber -f progress
| language: ruby
rvm:
- "1.8.7-p374"
- "1.9.2"
- "1.9.3"
- "2.0.0"
- "2.1.5"
before_install:
- sudo apt-get update
- sudo apt-get install expect
script:
bundle exec cucumber -f progress
| Add new versions of Ruby to Travis matrix | Add new versions of Ruby to Travis matrix
| YAML | mit | charneykaye/hiera-eyaml,gdubicki/hiera-eyaml,mkulke/hiera-eyaml,TomPoulton/hiera-eyaml,charneykaye/hiera-eyaml,kyledecot/hiera-eyaml,elyscape/hiera-eyaml,gdubicki/hiera-eyaml,TomPoulton/hiera-eyaml,mkulke/hiera-eyaml,elyscape/hiera-eyaml,kyledecot/hiera-eyaml |
733139c78b64ff04dfbbe450715235a7e16dc18d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- '0.12'
| Build only on Node v0.12. | Build only on Node v0.12.
| YAML | mit | rishabhsrao/generator-ironhide-webapp,rishabhsrao/generator-ironhide-webapp,rishabhsrao/generator-ironhide-webapp |
f1229800c7b54cc39caeb8c4c6bfe59555853143 | .travis.yml | .travis.yml | sudo: false
language: java
addons:
sonarqube:
organization: "jcgay-github"
token:
secure: "LzgaDK3Jw49v8jDdR6bnb+F9m7mscSaS5KiZEs7pxAzWRgPYVjc3eBipDaMzHYQvUMprTnh1gPL3k45m7CdH5gUN1JeGQxaD4F/0oIVHOlUDDACUSlzpmXdcEcFmtQjo9DXNWWr4e0dNeHC/zk+4edu+dRQtVSDBk5zWXSmrEoQ"
before_install:
- jdk_switcher use ope... | sudo: false
language: java
addons:
sonarcloud:
organization: "jcgay-github"
token:
secure: "LzgaDK3Jw49v8jDdR6bnb+F9m7mscSaS5KiZEs7pxAzWRgPYVjc3eBipDaMzHYQvUMprTnh1gPL3k45m7CdH5gUN1JeGQxaD4F/0oIVHOlUDDACUSlzpmXdcEcFmtQjo9DXNWWr4e0dNeHC/zk+4edu+dRQtVSDBk5zWXSmrEoQ"
before_install:
- jdk_switcher use op... | Use new sonarcloud addon name on Travis CI | Use new sonarcloud addon name on Travis CI
| YAML | mit | jcgay/maven-color |
88a16b73ab07d3bdf303b2f1d93da8f85ff1f90e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
deploy:
provider: rubygems
api_key:
secure: kwPTUQGR25urq/yKIFLcV2TjBalTGU5uWI+jK36I1fatvtbk6geL3BbpPuyiIQOvu2Kge6c5bEQpnOFNNeRW08G7vojhn1aFp7MtKLuE47jazbA1ekGh7Cvyt/actu9wensNAuew87IpJW9Fjxu+5B/RHz678nJqIA4zxFwL1TU=
gem: metasploit-runner
on:
tags: true
repo: amngibson/m... | language: ruby
rvm:
- 2.1.2
- 2.1.5
- 2.2.0
deploy:
provider: rubygems
api_key:
secure: kwPTUQGR25urq/yKIFLcV2TjBalTGU5uWI+jK36I1fatvtbk6geL3BbpPuyiIQOvu2Kge6c5bEQpnOFNNeRW08G7vojhn1aFp7MtKLuE47jazbA1ekGh7Cvyt/actu9wensNAuew87IpJW9Fjxu+5B/RHz678nJqIA4zxFwL1TU=
gem: metasploit-runner
on:
tags: true
r... | Add some more Ruby versions to the TravisCI verify | Add some more Ruby versions to the TravisCI verify
| YAML | mit | amngibson/metasploit-runner |
5a215f2efcc8a186db97c748bc73e8c132ef56b9 | .travis.yml | .travis.yml | language: node_js
node_js:
- '8'
- '9'
script: 'npm run ci'
| language: node_js
node_js:
- '8'
- '10'
- '12'
script: 'npm run ci'
| Drop node.js 9, add 10 and 12 | Drop node.js 9, add 10 and 12
| YAML | bsd-3-clause | unexpectedjs/unexpected-stream |
282785a07e954bd96c6a624ba83d9932fcf4a4de | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2
- 2.1
cache: bundler
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
| language: ruby
rvm:
- 2.2
- 2.1
cache: bundler
before_install: gem install bundler
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
| Update bundler to avoid crashing | Update bundler to avoid crashing
| YAML | mit | gtd/validation_scopes |
184e8e8ecb08860dd9090a9ec696f0bfca6405ea | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "nightly" # currently points to 3.6-dev
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: python nordicsemi -h
| language: python
python:
- "2.7"
#- "3.4"
#- "3.5"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # currently points to 3.6-dev
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: python nordicsemi -h
| Edit CI until pynrfjprog is fixed | Edit CI until pynrfjprog is fixed
TODO: pynrfjprog is broken for Python 3. | YAML | bsd-3-clause | mjdietzx/nrfjprog |
2ecedd9a2b399c09694e3c61f0444aeeed368633 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install -g npm
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Use the NPM on tap. | Use the NPM on tap.
| YAML | mit | bigeasy/vestibule,bigeasy/signal,bigeasy/vestibule |
5cee4a53c19b500144063c1122e3d9fc873ca58b | .travis.yml | .travis.yml | language: node_js
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
- provider: npm
email: tituswormer@gmail.com
api_key:
secure: Mv/7/oYjB9H9G/WL2lTaCZ3+qq2NXBdNtKTeZsrw8qDI4taGqYkq91CCbwRdBe+rH+pyQL++aKEBPlb3yx8liAklXWpPMlav/VYzcNMb3DsaJg9YN/q0qdrmhNQ2nj0NFlFoTR7/H... | language: node_js
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
provider: releases
api_key:
secure: VCUx8OF+mGbR3bWqlaSXWOq2zsLjnfYowCgRPxfX0sOPWtzVmVW+8hKz323Qx8/yfkebulJzQ1p1Up3iZoqTwoxH3va0FUz2EnFwUZx2Mu93CHS4soF7b2vLEpCXlB8TCkq+Ywdp2I3oFJP+2vrxEpAv0oQddeWEqx086hvoRvk... | Remove npm deployment from Travis | Remove npm deployment from Travis
| YAML | mit | wooorm/trigram-utils |
d2bd1707a3afcb0b377389381809b50ec0f966f3 | .travis.yml | .travis.yml | language: go
go:
- "1.7"
- "1.8"
- "1.9"
- "1.10"
- "1.11"
before_script:
- go get -u golang.org/x/lint/golint
- go get github.com/mattn/goveralls
script:
- test -z $(gofmt -s -l ./*.go)
- go test -v -covermode=count -coverprofile=profile.cov ./...
- go vet ./...
- goveralls -coverprofile=profi... | language: go
go:
- "1.9"
- "1.10"
- "1.11"
before_script:
- go get -u golang.org/x/lint/golint
- go get github.com/mattn/goveralls
script:
- test -z $(gofmt -s -l ./*.go)
- go test -v -covermode=count -coverprofile=profile.cov ./...
- go vet ./...
- goveralls -coverprofile=profile.cov -service=trav... | Drop Travis for Go v1.7 and v1.8 | Drop Travis for Go v1.7 and v1.8
| YAML | mit | stevenroose/gonfig |
e6b7b78bd967eac66c24605d22ec8252bc859ada | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
env:
- CHEF_VERSION="= 11.4.0"
- CHEF_VERSION="~> 11.0"
- CHEF_VERSION="= 12.0.0"
- CHEF_VERSION="~> 12.0"
matrix:
exclude:
- rvm: 1.9.2
env: CHEF_VERSION="= 12.0.0"
- rvm: 1.9.2
env: CHEF_VERSION="~> 12.0"
- rvm: 1.9.3
... | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1
sudo: false
env:
- CHEF_VERSION="= 11.4.0"
- CHEF_VERSION="~> 11.0"
- CHEF_VERSION="= 12.0.0"
- CHEF_VERSION="~> 12.0"
matrix:
exclude:
- rvm: 1.9.2
env: CHEF_VERSION="= 12.0.0"
- rvm: 1.9.2
env: CHEF_VERSION="~> 12.0"
- rvm... | Use the new build env on Travis | Use the new build env on Travis
more ram, dedicated cpus, better networking, more capacity | YAML | apache-2.0 | zuazo/chef-encrypted-attributes,onddo/chef-encrypted-attributes |
302b666372329a4a3470f768f3e7b603e464540d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6.3'
after_install:
- npm dedupe
- npm shrinkwrap --dev
- cat npm-shrinkwrap.json
script:
- gulp build --type=prod
after_success:
- 'curl -L https://github.com/netlify/netlifyctl/releases/download/v0.1.0/netlifyctl-linux-amd64-v0.1.0.tar.gz | tar zx'
- '[ $TRAVIS_BRANCH == mast... | sudo: false
language: node_js
node_js:
- '6.3'
after_install:
- npm dedupe
- npm shrinkwrap --dev
- cat npm-shrinkwrap.json
script:
- NODE_ENV=production gulp build --type=prod
after_success:
- 'curl -L https://github.com/netlify/netlifyctl/releases/download/v0.1.0/netlifyctl-linux-amd64-v0.1.0.tar.gz | tar zx'
- '[ $T... | Update config to minify only in production | Update config to minify only in production
| YAML | mpl-2.0 | byte-foundry/prototypo,byte-foundry/prototypo,byte-foundry/prototypo |
1c0c803802e51173e1f37fea8529586c5743ff80 | .travis.yml | .travis.yml | language: ruby
before_script:
- "export RAILS_ENV=development"
- "export PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST}"
script:
- "bundle exec pronto run -f github_pr -c origin/develop"
- "bundle exec rake test"
rvm:
- 2.0.0
- 1.9.3
| language: ruby
before_script:
- export RAILS_ENV=development
- export PULL_REQUEST_ID=${TRAVIS_PULL_REQUEST}
script:
- bundle exec pronto run -f github_pr -c origin/develop
- bundle exec rake test
rvm:
- 2.0.0
- 1.9.3
env:
secure: EGZMq7mUTRi3YrWoczfYos8oJtC7g6Nvm/ludTOZzpFAKNU1UiubCy37L7qV4OfO8ACewQrvFMIOB1Jtj8q/UAQ... | Add api key for pronto | Add api key for pronto
| YAML | mit | diaspora/vines,diaspora/vines |
0a76f6eb7fb96d863b7075d2f3c6919d4bb8171c | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
matrix:
include:
- php: 5.6
env: PHPUNIT_OPTIONS="--coverage-clover build/logs/clover.xml"
install:
- composer install
script:
- phpunit $PHPUNIT_OPTIONS
after_script:
- "if [[ ! -f build/logs/clover.xml ]] ; then php vendor/bin/coveralls -v; fi"
... | language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
include:
- php: 5.6
env: PHPUNIT_OPTIONS="--coverage-clover build/logs/clover.xml"
install:
- composer install
script:
- phpunit $PHPUNIT_OPTIONS
after_script:
- "if [[ ! -f build/logs/clover.xml ]] ; then php vendor/bin/coveralls -v; fi"
- "if [[... | Remove PHP 5.3.3, there is a separate issue for this. | Remove PHP 5.3.3, there is a separate issue for this.
| YAML | mit | elliotchance/concise,elliotchance/concise |
ae34c930a0c195f82f9cb740cbbdd9344c81158f | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.7.1
DEBIAN_FRONTEND: noninteractive
before_install:
- sudo apt-get update
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine
- sudo service docker restart
- sudo rm /usr/local/bin/docker-compose
- curl -L https://... | env:
- _SHIBBOLETH_VERSION=2.5.6
- _SHIBBOLETH_VERSION=2.6.0
- _SHIBBOLETH_VERSION=
sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.7.1
DEBIAN_FRONTEND: noninteractive
before_install:
- sudo apt-get update
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine
- ... | Test on various versions of Shibboleth | Test on various versions of Shibboleth
| YAML | mit | nginx-shib/shibboleth-fastcgi |
cdca429eba9e9b3a995fe92301dd6a498214cba7 | .travis.yml | .travis.yml | language: csharp
solution: Nerdle.AutoConfig.sln
install:
- nuget restore Nerdle.AutoConfig.sln
- nuget install NUnit.Runners -Version 2.6.4 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release Nerdle.AutoConfig.sln
- mono ./testrunner/NUnit.Runners.2.6.4/tools/nunit-console.exe ./Nerdle.AutoCo... | language: csharp
solution: Nerdle.AutoConfig.sln
install:
- nuget restore Nerdle.AutoConfig.sln
- nuget install NUnit.Runners -Version 2.7.0 -OutputDirectory testrunner
script:
- xbuild /p:Configuration=Release Nerdle.AutoConfig.sln
- mono ./testrunner/NUnit.Runners.2.7.0/tools/nunit-console.exe ./Nerdle.AutoCo... | Update NUnit.Runners to version 2.7.0 on Travis | Update NUnit.Runners to version 2.7.0 on Travis
| YAML | mit | edpollitt/Nerdle.AutoConfig |
b8c112241a5c321782207df63355b997e304422e | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
sudo: false
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
# also test against HHVM, but require "trusty" and ignore errors
matrix:
include:
- php: hhvm
dist: trusty
allow_failures:
- php: hhvm
sudo: false
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text... | Fix HHVM build for now again and ignore future HHVM build errors | Fix HHVM build for now again and ignore future HHVM build errors
| YAML | mit | clue/php-soap-react |
c323cd07c15dd41d3658eb448f7f667c5e7e0e4a | .travis.yml | .travis.yml | language: php
install: composer install
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
script:
- php bench.php
- make test
| language: php
install: composer install
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
script:
- php bench.php
- make test
| Add PHP 7.2 on Travis CI | Add PHP 7.2 on Travis CI
Not sure it exists on Travis
| YAML | mit | maciejczyzewski/bottomline,maciejczyzewski/bottomline |
cdddc0b06dae241995b6a8274ce60e2e488816d5 | .travis.yml | .travis.yml | language: java
dist: trusty
os: linux
install:
- jdk_switcher use openjdk7
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true
jdk:
- openjdk7
- openjdk8
- openjdk9
script:
- jdk_switcher use $TRAVIS_JDK_VERSION
- ./mvnw test -Dmaven.javadoc.skip=true
| language: java
dist: trusty
os: linux
install:
- jdk_switcher use openjdk8
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true
jdk:
- openjdk7
- openjdk8
- openjdk9
script:
- jdk_switcher use $TRAVIS_JDK_VERSION
- ./mvnw test -Dmaven.javadoc.skip=true
| Use Java 8 for initial build | Use Java 8 for initial build | YAML | apache-2.0 | zeroturnaround/zt-zip,zeroturnaround/zt-zip |
e425da2a0f9583c8e43302fe07e28f37c41e17cf | .travis.yml | .travis.yml | language: python
cache: pip
matrix:
include:
- os: linux
dist: xenial
sudo: false
python: '2.6'
- os: linux
dist: xenial
sudo: false
python: '2.7'
- os: linux
dist: xenial
sudo: false
python: '3.2'
- os: linux
dist: xenial
sudo: false
python: '3.3'
- os: linux... | language: python
cache: pip
matrix:
include:
- os: linux
dist: xenial
sudo: false
python: '2.7'
- os: linux
dist: xenial
sudo: false
python: '3.4'
- os: linux
dist: xenial
sudo: false
python: '3.5'
- os: linux
dist: xenial
sudo: false
python: '3.6'
- os: linux... | Disable Travis builds for py 2.6, 3.2 & 3.3 | Disable Travis builds for py 2.6, 3.2 & 3.3
Seems like they discontinued those.
| YAML | bsd-2-clause | etingof/pysnmp,etingof/pysnmp |
3ab479a9ac378d9f0de72a616d136ea487424eb5 | .travis.yml | .travis.yml | sudo: false
language: go
before_install:
- git config --global user.email "user@example.com"
- git fetch --unshallow
- git fetch origin +refs/notes/devtools/*:refs/notes/devtools/*
- git fetch origin +refs/heads/master:refs/heads/master
before_script:
- grep "os/exec" `find ./ -name '*.go'` && echo "Use the e... | sudo: false
language: go
before_install:
- git config --global user.email "user@example.com"
- git fetch --unshallow
- git fetch origin +refs/notes/devtools/*:refs/notes/devtools/*
- git fetch origin +refs/heads/master:refs/heads/master
before_script:
- if grep "os/exec" `find ./ -name '*.go'`; then echo "Use... | Fix Travis CI check for the use of the os/exec package | Fix Travis CI check for the use of the os/exec package
| YAML | apache-2.0 | google/git-appraise |
343e008335f272f2832e793f9e98cb5aef192a47 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 4
- 6
- 8
| language: node_js
node_js:
- 4
- 6
- 8
| Drop support for Node 0.10 | Drop support for Node 0.10
| YAML | mit | auth0/node-wsfed,auth0/node-wsfed |
82d79e4e455092914987e1b0d6b90ab6e8248e37 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
branches:
only:
- master
- dev
- /^stable\d+(\.\d+)?$/
#before_install:
# - cd ..
# - git clone https://github.com/owncloud/core.git
# - mv galleryplus core/apps/
# - cd core
# - git submodule init
# - git submodule update
# - cd apps/galleryplus
script: ant te... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
branches:
only:
- master
- dev
- /^stable\d+(\.\d+)?$/
#before_install:
# - cd ..
# - git clone https://github.com/owncloud/core.git
# - mv galleryplus core/apps/
# - cd core
# - git submodule init
# - git submodule update
# - cd apps/galleryplus
... | Add PHP 5.6 and PHP 7 to test matrix | Add PHP 5.6 and PHP 7 to test matrix | YAML | agpl-3.0 | desaintmartin/gallery,interfasys/galleryplus,owncloud/gallery,setnes/gallery,owncloud/gallery,viraj96/gallery,setnes/galleryplus,owncloud/galleryplus,owncloud/gallery,viraj96/gallery,interfasys/galleryplus,setnes/galleryplus,imjalpreet/gallery,tahaalibra/gallery,setnes/gallery,viraj96/gallery,interfasys/galleryplus,set... |
d9c6f30954bc6199d3f7ae303f181413a5bf9213 | .travis.yml | .travis.yml |
language: generic
env:
global:
- CMAKE_GENERATOR="Unix Makefiles" CMAKE_OPTIONS=" "
matrix:
include:
- os: linux
dist: trusty
sudo: required
env: BUILD_PLATFORM="Linux-x64"
- os: osx
osx_image: xcode7.3
env: BUILD_PLATFORM="Darwin-x64"
install:
- buildscripts/1-instal... |
language: generic
env:
global:
- CMAKE_GENERATOR="Unix Makefiles" CMAKE_OPTIONS=" "
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
matrix:
include:
- os: linux
dist: trusty
sudo: required
env: BUILD_PLATFORM="Linux-x64"
- os: osx... | Update Travis file to request GCC 4.9 | Update Travis file to request GCC 4.9
The JSON library requires at least GCC 4.9
| YAML | mit | graphicsfuzz/get-image-egl,graphicsfuzz/get-image-egl,graphicsfuzz/get-image-egl |
767d1bbe430fc7aa7a9d7d9724d52e8b9b9d85f4 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
- oraclejdk8
before_script:
sudo keytool -importcert -keystore $JAVA_HOME/jre/lib/security/cacerts -file betamax.pem -storepass changeit -noprompt
sudo: required
| language: java
jdk:
- oraclejdk7
- oraclejdk8
before_script:
sudo keytool -importcert -keystore $JAVA_HOME/jre/lib/security/cacerts -file betamax.pem -storepass changeit -noprompt
sudo: required
notifications:
email: false
hipchat:
on_success: never
on_failure: change
template:
- '%{repository... | Configure notifications from Travis CI | Configure notifications from Travis CI
| YAML | bsd-3-clause | twingly/twingly-analytics-api-java,twingly/twingly-search-api-java |
e7601d7edd1513cc4eee14de828c74272289477d | .travis.yml | .travis.yml | language: csharp
sudo: false
mono:
- latest
- 4.2.4
os:
- linux
- osx
script:
- ./build.sh
notifications:
email: false | language: csharp
sudo: false
mono:
- latest
os:
- linux
- osx
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; ln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/; ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/; fiopenssl; fi... | Add brew OpenSSL for Mac | Add brew OpenSSL for Mac
| YAML | mit | syedhassaanahmed/aspnet-core-crud-demo,syedhassaanahmed/aspnet-core-crud-demo,syedhassaanahmed/aspnet-core-crud-demo |
0123c0ed1a1f55a28d9aa661a6dcf95e0085bcd6 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.2
- hhvm
install:
- composer self-update
- composer install --prefer-dist --dev
- composer info --installed
before_script:
- mysql -e 'create database amqp_helper_test;'
script: phpunit -c phpunit.xml | language: php
php:
- 5.6
- 7.2
- hhvm
install:
- composer self-update
- composer update
#- composer install --prefer-dist --dev
- composer info --installed
before_script:
- mysql -e 'create database amqp_helper_test;'
script: phpunit -c phpunit.xml | Update test's bootstrap.php for backward compatibility | Update test's bootstrap.php for backward compatibility
| YAML | apache-2.0 | fproject/amqp-helper |
6e8355d1d6a957b254bbd40e35ec52a8137a8618 | .travis.yml | .travis.yml | language: php
env:
global:
- COMPOSER_ROOT_VERSION=2.0.x-dev
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=PGSQL PHPUNIT_COVERAGE_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1
before_sc... | language: php
dist: trusty
env:
global:
- COMPOSER_ROOT_VERSION=2.0.x-dev
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=PGSQL PHPUNIT_COVERAGE_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TES... | Use trusty dist for Travis builds | Use trusty dist for Travis builds
| YAML | bsd-3-clause | silverstripe-labs/silverstripe-registry |
3edd6f07dd231713f2bf992909a3ee94f8dba5b9 | .travis.yml | .travis.yml | language: go
go:
- 1.6.x
- 1.8.x
- 1.9.x
- tip
go_import_path: go.mercari.io/go-httpdoc
os:
- linux
- osx
sudo: false
install:
- go get -v ./...
script:
- go vet
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- 1.8.x
- 1.9.x
- tip
go_import_path: go.mercari.io/go-httpdoc
os:
- linux
- osx
sudo: false
install:
- go get -v ./...
script:
- go vet
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| Remove 1.6.x in CI testing | Remove 1.6.x in CI testing
| YAML | mit | mercari/go-httpdoc |
b4d197d343459cc06af4670b3996028dd01b792c | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
deploy:
- provider: npm
email: tituswormer@gmail.com
api_key:
secure: HmCBkFxRhMNttuoXAXxsuQh+YXBuFI2FebWY9MJxstETr2He1EB4b7eY8lNulVevclALxEot+yBg2dZbZSIAIXp5YidAg5QuBIv4p/4a9UF6szR5v9gbVCcrK3Knw... | language: node_js
sudo: false
node_js:
- '4.0'
- '8.0'
after_script: bash <(curl -s https://codecov.io/bash)
| Remove npm deployment from Travis | Remove npm deployment from Travis
| YAML | mit | wooorm/udhr,wooorm/udhr |
cdd1adb5b6a77fef59392de631f1c9ea88f0b5a5 | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
cache: bundler
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- ruby-head
- jruby-9.1.1.0
- jruby-head
env:
global:
- JRUBY_OPTS=''
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only:... | ---
language: ruby
sudo: false
cache: bundler
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.0
- ruby-head
- jruby-9.1.1.0
- jruby-head
env:
global:
- JRUBY_OPTS=''
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.1.0
fast_finis... | Change to allow for jrbuy failure. | Change to allow for jrbuy failure.
| YAML | mit | piotrmurach/tty-command,piotrmurach/tty-command |
f21bbeefe5c1703a12ff6555f51f8a46d4e87bce | .travis.yml | .travis.yml | language: c
install:
- wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script:
- bash -ex .travis-opam.sh
sudo: required
env:
global:
- OCAML_VERSION=4.06
- PACKAGE=message-switch
- PINS="message-switch-async:. message-switch-cli:. message-switch-core:. message-... | language: c
sudo: required
service: docker
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-docker.sh
script: bash -ex .travis-docker.sh
env:
global:
- PACKAGE=message-switch
- PINS="message-switch-async:. message-switch-cli:. message-switch-core:. message-switch:. messa... | Use a container that has 4.06 in it already | Use a container that has 4.06 in it already
Signed-off-by: Edwin Török <c8d178016cbaf8a6ef23c2cbc9db96123c48b7dc@citrix.com>
| YAML | isc | xapi-project/message-switch,xapi-project/message-switch,xapi-project/message-switch |
ea49bf96a30d257203284e55f3df0caca5408e38 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
before_install:
- pip install codecov
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt
before_script:
- pip install -r test_requirements.txt
... | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt -r test_requirements.txt codecov coveralls
# command to run tests, e.g. python setup.py test
scri... | Install all dependencies in a single command | Install all dependencies in a single command
This should speed up builds a little bit
| YAML | mit | jcollado/esis |
28c685b32c1a4656d30cac23c51e6ba9e9f23e11 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
- jruby-18mode
- jruby-19mode
- jruby-head
- ree
- ruby-head
| sudo: false
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
- jruby-18mode
- jruby-19mode
- ree
- ruby-head
| Remove broken jruby-head from Travis | Remove broken jruby-head from Travis
A bundler bug prevents this from installing anything.
| YAML | mit | customerio/customerio-ruby |
15f4ab9aaf3ffddbe801b2422dd52cee15549f64 | .travis.yml | .travis.yml | language: go
| language: go
matrix:
include:
- go: "tip"
- go: "1.x"
- go: "1.10"
- go: "1.9"
- go: "1.8"
allow_failures:
- go: tip
| Update Travis CI config to test against multiple Go versions | Update Travis CI config to test against multiple Go versions
| YAML | mit | jordic/goics |
0fbd4572013525ec8fc4f2bc4f7d82482d4bcfe2 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.8.18
- DJANGO_VERSION=1.9.13
- DJANGO_VERSION=1.10.7
- DJANGO_VERSION=1.11
matrix:
exclude:
- python: "3.6"
env: DJANGO_VERSION=1.8.18
- python: "3.3"
env: DJANGO_VERSION=1.... | language: python
python:
- "3.6"
- "3.5"
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.8.18
- DJANGO_VERSION=1.9.13
- DJANGO_VERSION=1.10.7
- DJANGO_VERSION=1.11
matrix:
exclude:
- python: "3.6"
env: DJANGO_VERSION=1.8.18
- python: "3.3"
env: DJANGO_VERSION=1.... | Fix incorrect version of setuptools | Fix incorrect version of setuptools
| YAML | bsd-3-clause | richardcornish/django-applepodcast,richardcornish/django-applepodcast,richardcornish/django-itunespodcast,richardcornish/django-itunespodcast |
2d8f20acc9f65f0b23e5687758834c5b5b299a5a | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
befo... | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-25.0.2
- android-25
- extra-android-support
- extra-google-google_play_services
- extra-android-m2repository
- extra-google-m2repository
- addon-google_apis-google-21
befo... | Delete Codecov and Jacoco jobs | Delete Codecov and Jacoco jobs
| YAML | apache-2.0 | dkhmelenko/TravisClient-Android,dkhmelenko/Varis-Android,dkhmelenko/Varis-Android,dkhmelenko/TravisClient-Android,dkhmelenko/Varis-Android,brave-warrior/TravisClient-Android,brave-warrior/TravisClient-Android,brave-warrior/TravisClient_Android,DreierF/TravisClient-Android,DreierF/TravisClient-Android,brave-warrior/Trav... |
ea404226e3c44c60aebb12927ddf327aad1f6566 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g grunt-cli
- npm install
- wget -P test/lib/angular/ http://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js
script:
- grunt travis-ci
| language: node_js
node_js:
- 0.8
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g grunt-cli
- npm install
- wget -P test/lib/angular/ http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js
script:
- grunt travis-ci
| Update angular.js to 1.2.13 for CI | Update angular.js to 1.2.13 for CI
| YAML | mit | cvn/angular-shims-placeholder,akkunchoi/angular-shims-placeholder,akkunchoi/angular-shims-placeholder,radotzki/angular-shims-placeholder,cvn/angular-shims-placeholder,radotzki/angular-shims-placeholder |
abe91918a8c4bd152770106cf739c7677afc10f2 | .travis.yml | .travis.yml | language: node_js
node_js:
- 7.10
- 7
sudo: required
env:
- GREMLINSERVER_VERSION="3.2.4"
install:
# install Oracle JDK8
- sh -c ./build/jdk8-install.sh
# install gremlin-server
- sh -c ./build/gremlin-server/install.sh
# install dependencies
- npm install
before_script:
- npm run build
script... | language: node_js
node_js:
- 7.10
- 7
sudo: required
env:
- GREMLINSERVER_VERSION="3.2.4"
cache:
yarn: true
install:
# install Oracle JDK8
- sh -c ./build/jdk8-install.sh
# install gremlin-server
- sh -c ./build/gremlin-server/install.sh
# install dependencies
- yarn
before_script:
- yarn bu... | Use yarn instead of npm | Use yarn instead of npm
| YAML | mit | jbmusso/gremlin-javascript,jbmusso/gremlin-client,jbmusso/gremlin-javascript |
361055138e32da8aaf30fd9cfbe7ddbcaa5fc6c3 | .travis.yml | .travis.yml | language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
env:
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
install:
- pip install tox
script:
- tox
notifications:
slack:
secure: bGN/7RcHM9oHzKRW/NSDna95Syf0Kq/ZvaC4hf7k20Jc0U49uyvCIV58RQQgu/e21yNnthMGAXfbcHL9ovFTdKD3sdAmFg29... | language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
- python: 2.7 # these are just to make travis's UI a bit prettier
env: TOXENV=py27
- python: 3.3
env: TOXENV=py33
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python:... | Set python and toxenv vars | Set python and toxenv vars
We were sort of abusing the fact that all Travis containers had python
interpreters for Python2.7, 3.3, and 3.4. They don't have Python 3.5
installed at the moment, so hopefully this more explicit matrix will
solve it.
| YAML | mit | zoidbergwill/teamsupport-python,yola/teamsupport-python |
68f5eba41d312d9f91bddcc9517f90e64b01d7ae | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
notifications:
irc:
channels:
- "irc.mozilla.org#talkilla"
use_notice: false
skip_join: false
email:
- talkilla-travis-results@mozilla.com
before_install:
- export DISPLAY=:99.0
- export PATH=$PATH:$HOME/.local/bin
- sh -e /etc/init.d/xvfb start
... | language: node_js
node_js:
- "0.8"
notifications:
irc:
channels:
- "irc.mozilla.org#talkilla"
use_notice: false
skip_join: true
on_success: change
on_failure: always
template:
- "%{repository} (%{branch} - %{commit}: %{author}): %{message} %{build_url}
email:
- talkilla-t... | Adjust Travis reporting settings now that Travis reports to irc as well. rs=Florian | Adjust Travis reporting settings now that Travis reports to irc as well. rs=Florian
| YAML | mpl-2.0 | mozilla/talkilla,mozilla/talkilla,mozilla/talkilla |
50c4203f67b98575c2968452e30dad5035eb9390 | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.0.0"
- "2.1.1"
script: RUBY=$(which ruby) && bundle exec rspec
| language: ruby
rvm:
- "2.0.0"
- "2.1.1"
script: RUBY=$(which ruby) && bundle exec rspec
sudo: false
| Use the new beta build env on Travis | Use the new beta build env on Travis
* faster vm boot times
* more cpus
* more ram
* better network
| YAML | mit | mrageh/duolingo,Adam89/duolingo,Diego5529/duolingo |
9f5112bc5b868349e9913321f7a524b00bf194c0 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- nightly
- hhvm
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
| Add PHP 7.0 on Travis | Add PHP 7.0 on Travis
| YAML | mit | timoh6/GenPhrase |
3b1a215ab646006f7870d0c96dcfc6efa4e8f346 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
env:
- DJANGO="django>=1.4,<1.5"
- DJANGO="django>=1.5,<1.6"
- DJANGO="django>=1.6,<1.7"
- DJANGO="https://github.com/django/django/archive/master.tar.gz"
matrix:
exclude:
- python: 2.6
env: DJANGO="https://github.com/django/django/archive/master.tar.gz"... | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
env:
- DJANGO="django>=1.4,<1.5"
- DJANGO="django>=1.5,<1.6"
- DJANGO="django>=1.6,<1.7"
- DJANGO="django>=1.7,<1.8"
matrix:
exclude:
- python: 2.6
env: DJANGO="django>=1.7,<1.8"
allow_failures:
- python: 3.2
- python: 3.3... | Test against Django 1.7 and Python3. | Test against Django 1.7 and Python3.
| YAML | mit | charettes/django-admin-enhancer,DjangoAdminHackers/django-admin-enhancer,charettes/django-admin-enhancer,DjangoAdminHackers/django-admin-enhancer,charettes/django-admin-enhancer,DjangoAdminHackers/django-admin-enhancer |
3be821e9caccc73f612f5610c85571675d1cd715 | .travis.yml | .travis.yml | language: python
python:
- '2.7'
install:
- pip install --upgrade setuptools --use-mirrors
- pip install nose
- pip install django==1.5.5
before_script:
- npm install
script:
- python setup.py test
- grunt travis --verbose
notifications:
hipchat:
rooms:
secure: A7SQlgtz1wTbt5wSpP5inxXAB7Gxmss6KIjnV0RdcU1jzK... | language: python
python:
- '2.7'
env:
- DJANGO_SETTINGS_MODULE='bluebottle.settings.testing'
install:
- pip install --upgrade setuptools --use-mirrors
- pip install -q nose
- pip install -q django==1.5.5
before_script:
- npm install
script:
- python setup.py test
- grunt travis --verbose
notifications:
hipchat:
r... | Add django env setting for use by parse_templates py script in grunt | Add django env setting for use by parse_templates py script in grunt | YAML | bsd-3-clause | onepercentclub/bluebottle,onepercentclub/bluebottle,onepercentclub/bluebottle,jfterpstra/bluebottle,jfterpstra/bluebottle,onepercentclub/bluebottle,jfterpstra/bluebottle,onepercentclub/bluebottle,jfterpstra/bluebottle |
99c9fd45fd81329c924fc03bfebd10df34ab6403 | .travis.yml | .travis.yml | os:
- linux
language: perl6
perl6:
- latest
install:
- rakudobrew build-zef
- zef --debug --depsonly --/test install .
script:
- zef build .
- PERL6LIB=$PWD/lib prove -e perl6 -vr t/
sudo: false
| os:
- linux
language: perl6
perl6:
- latest
install:
- rakudobrew build-zef
- zef --debug --depsonly --/test install .
script:
- PERL6LIB=$PWD/lib zef build .
- PERL6LIB=$PWD/lib prove -e perl6 -vr t/
sudo: false
| Enable zef to search lib dir | Enable zef to search lib dir | YAML | mit | titsuki/p6-Algorithm-LibSVM,titsuki/p6-Algorithm-LibSVM,titsuki/p6-Algorithm-LibSVM |
265b6d5e2a2be5fee7ffd062b012dd05f3de2b8d | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
install:
- travis_wait mvn install -Pdistribution -DskipTests=true -B -V -q
script:
- mvn test -B
- mvn -file testsuite/integration-arquillian test -B
sudo: false
| language: java
jdk:
- oraclejdk8
install:
- travis_wait mvn install -Pdistribution -DskipTests=true -B -V -q
script:
- mvn test -B
- mvn -file testsuite/integration-arquillian test -B -Pno-console
sudo: false
| Exclude admin console tests from Travis due to stability issues | Exclude admin console tests from Travis due to stability issues
| YAML | apache-2.0 | ahus1/keycloak,thomasdarimont/keycloak,jean-merelis/keycloak,mbaluch/keycloak,srose/keycloak,keycloak/keycloak,hmlnarik/keycloak,keycloak/keycloak,manuel-palacio/keycloak,ahus1/keycloak,manuel-palacio/keycloak,wildfly-security-incubator/keycloak,chameleon82/keycloak,dbarentine/keycloak,pedroigor/keycloak,brat000012001/... |
9291e3f6ce4b110f7a37735038a203bf55e18886 | .travis.yml | .travis.yml | script: rake ci
rvm:
- 1.9.3
- ruby-head
- jruby-19mode
- rbx-19mode
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
irc: "irc.freenode.org#celluloid"
| script: rake ci
rvm:
- 1.9.3
- ruby-head
- jruby-19mode
- rbx-19mode
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-19mode
notifications:
irc: "irc.freenode.org#celluloid"
| Build is erroring on rbx | Build is erroring on rbx
| YAML | mit | celluloid/celluloid-io,marshall-lee/celluloid-io,dilumn/celluloid-io,ioquatix/celluloid-io,kenichi/celluloid-io |
b2c691157c508c6a5c929993f35509d5155c80fc | .travis.yml | .travis.yml | language: go
go:
- 1.3
before_install:
- sudo apt-get -qq remove -y libmemcached-dev
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ utopic main"
- sudo apt-get -qq update
- sudo apt-get install -y libmemcached-dev
install:
- make
script:
- make simplepush
before_deploy:
- mkdir -p build/server
- gz... | language: go
go:
- 1.3
before_install:
- sudo apt-get -qq remove -y libmemcached-dev
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ utopic main"
- sudo apt-get -qq update
- sudo apt-get install -y libmemcached-dev
install:
- make
script:
- make simplepush
before_deploy:
- mkdir -p build/server
- gz... | Reduce which branches are uploaded. | Reduce which branches are uploaded.
| YAML | mpl-2.0 | jrconlin/pushgo,mozilla-services/pushgo,jrconlin/pushgo,mozilla-services/pushgo |
ec9a7cdd832bc19dbff3e3001cd42dc4e14d5b14 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install
script:
- vendor/bin/atoum
| language: php
php:
- 5.3
- 5.4
before_script:
- echo "extension = memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- wget http://getcomposer.org/composer.phar
- php composer.phar install
script:
- vendor/bin/atoum
| Add memcache module to Travis config | Add memcache module to Travis config | YAML | mit | KuiKui/MemcacheServiceProvider |
8b1124c53700c443a4c455d6095724db54e1a836 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
notifications:
irc: "irc.freenode.org#molajo"
email:
- amystephen@gmail.com
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install --dev
script:
- phpunit -c .dev/php... | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: hhvm
notifications:
irc: "irc.freenode.org#molajo"
email:
- amystephen@gmail.com
before_script:
- composer self-update
- composer install
script:
- phpunit -c .dev/phpunit.xml --coverage-clover=coverage.clover
... | Remove 5.3, change Composer to not fail w hhvm | Remove 5.3, change Composer to not fail w hhvm
| YAML | mit | Molajo/Molajito,Molajo/Molajito |
1644bba66e6fd81eb817a053cd7b974a1c45ee9e | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install:
- npm install -g bower
before_script:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
| Remove bower install for Travis script. | Remove bower install for Travis script.
| YAML | apache-2.0 | mozilla/vtt.js,mozilla/vtt.js,gkatsev/vtt.js,gkatsev/vtt.js |
a572eb0a2e0e2fa63871f77993748b0a81d9d6c0 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
- clang
before_install:
- sudo apt-get -qq update
- cd ..
- git clone http://git.sv.gnu.org/r/autoconf.git
- cd autoconf
- ls
- aclocal -I m4
- automake
- autoconf
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone https://github.com/Imag... | language: c
compiler:
- gcc
- clang
before_install:
- sudo apt-get -qq update
- cd ..
- git clone http://git.sv.gnu.org/r/autoconf.git
- cd autoconf
- ls
- aclocal -I m4
- automake -a
- autoconf
- ./configure --prefix=/usr
- make
- sudo make install
- cd ..
- git clone https://github.com/I... | Fix install own autoconf on Travis-CI | Fix install own autoconf on Travis-CI
| YAML | mit | kjunichi/mruby-mrmagick,kjunichi/mruby-mrmagick,kjunichi/mruby-mrmagick |
75795e81e3b2d49a465a27c078377e5333d67c53 | .travis.yml | .travis.yml | language: go
go:
- tip
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- tip
sudo: required
install:
sudo apt-get install libpcap-dev
github.com/google/gopacket
go get github.com/go-ini/ini
script:
- go test -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| Update yml file for build | Update yml file for build
| YAML | mit | logzer0/godash |
d923c85417ddaa8bd50a55f6f2e99cdd4d3dd56c | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
services:
- elasticsearch
- postgresql
env:
global:
- DJANGO_DEBUG=1
- UPLOADCARE_DISABLED=1
- ROLLBAR_DISABLED=1
- DJANGO_SECRET_KEY=foo
- DATABASE_URL=postgres://travis@127.0.0.1/travis_ci_test
- HOSTNAMES=localhost
install:
- pip install -r... | language: python
python:
- "2.7"
services:
- elasticsearch
- postgresql
env:
global:
- DJANGO_DEBUG=1
- UPLOADCARE_DISABLED=1
- ROLLBAR_DISABLED=1
- DJANGO_SECRET_KEY=foo
- DATABASE_URL=postgres://travis@127.0.0.1/travis_ci_test
- HOSTNAMES=localhost
install:
- pip install -r requireme... | Stop testing with Python 2.6 | Stop testing with Python 2.6
| YAML | mit | michaelmior/pylinks,michaelmior/pylinks,michaelmior/pylinks |
511089677e221813f628902fb5033c0f661a2f08 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
before_install:
- gem update bundler
rvm:
- "1.9"
- "2.0"
- "2.1"
- "2.2"
- "2.3.3"
- "2.4.0"
- "jruby-19mode"
- "rbx"
script: bundle exec rspec
| language: ruby
bundler_args: --without development
before_install:
- gem update bundler
rvm:
- 2.4.1
- jruby-9.1.8.0
- 2.3.4
- 2.2.7
- 2.1.9
- 2.0.0
- 1.9.3
- jruby-9.0.5.0
- jruby-1.7.26
- ruby-head
- jruby-head
- rbx
jdk:
- oraclejdk8
matrix:
allow_failures:
- rvm: ruby-head
- rv... | Test on same ruby versions as concurrent-ruby | Test on same ruby versions as concurrent-ruby
| YAML | mit | sheerun/dataloader |
fdb023de959ba71525a2a272df640b3d310f40e5 | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
bundler_args: --without guard metrics
script: "bundle exec rake spec"
rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
- ruby-head
notifications:
email:
- piotr.solnica@gmail.com
- dan... | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake spec"
rvm:
- 1.8.7
- ree
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
- ruby-head
notifications:
email:
- piotr.solnica@gmail.com
... | Add yard group to the list of Gemfile groups bundler should skip | Add yard group to the list of Gemfile groups bundler should skip
| YAML | mit | XescuGC/virtus,macressler/virtus,baojjeu/virtus,mallikarjunayaddala/virtus,hapiben/virtus,reevoo/virtus,faucct/virtus,dslh/virtus,artemeff/virtus,JustMikey/virtus,solnic/virtus |
f46fd48ef2f04ab8910f2a67c47514291cdcfca4 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2.2
branches:
only:
- master
script:
- bundle exec rake travis:script
after_success:
- bundle exec rake travis:after_success
| language: ruby
cache: bundler
rvm:
- 2.2.2
branches:
only:
- master
script:
- bundle exec rake travis:script
after_success:
- bundle exec rake travis:after_success
notifications:
email: false
| Disable email notifications from Travis | Disable email notifications from Travis
| YAML | mit | unboxed/ubxd_web_refresh,unboxed/unboxed.co,unboxed/ubxd_web_refresh,unboxed/unboxed.co,unboxed/ubxd_web_refresh,unboxed/unboxed.co |
16d93808376fedde9bed04166498e0770b551d00 | .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: jruby-19mode
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| 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: jruby-19mode
- rvm: ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| Test on recent Ruby releases | Test on recent Ruby releases | YAML | mit | 1st8/blather,1st8/blather |
3659be81a3fa665042a6e16594ecfb5d980d7078 | .travis.yml | .travis.yml | before_install:
- sudo apt-get update > /dev/null
- sudo apt-get -y install lighttpd libfcgi-dev libmemcache-dev memcached
install:
- gem env version | grep '^\(2\|1.\(8\|9\|[0-9][0-9]\)\)' || gem update --system
- bundle install --jobs=3 --retry=3
script: bundle exec rake ci
rvm:
- 2.2.3
- 2.3.0
- ruby-h... | before_install:
- sudo apt-get update > /dev/null
- sudo apt-get -y install lighttpd libfcgi-dev libmemcache-dev memcached
install:
- gem env version | grep '^\(2\|1.\(8\|9\|[0-9][0-9]\)\)' || gem update --system
- bundle install --jobs=3 --retry=3
script: bundle exec rake ci
rvm:
- 2.2.4
- 2.3.0
- ruby-h... | Test against Ruby 2.2.4 on Travis. | Test against Ruby 2.2.4 on Travis.
| YAML | mit | Eric-Guo/rack,rwz/rack,ngpestelos/rack,imtayadeway/rack,Eric-Guo/rack,wjordan/rack,gfvcastro/rack,ngpestelos/rack,rwz/rack,imtayadeway/rack,ngpestelos/rack,rwz/rack,gfvcastro/rack,gioele/rack,Eric-Guo/rack,imtayadeway/rack,gioele/rack,gioele/rack,gfvcastro/rack,wjordan/rack,wjordan/rack |
1ba89ae7f9d0ac1f470acefaa965a20f384bb4ad | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
before_install:
- curl -sL https://github.com/jpm4j/jpm4j.installers/raw/master/dist/biz.aQute.jpm.run.jar >jpm4j.jar
- java -jar jpm4j.jar -u init
- ~/jpm/bin/jpm install com.codacy:codacy-coverage-reporter:assembly
android:
components:
- tools
- platform-tools
... | language: android
jdk:
- oraclejdk8
before_install:
- curl -sL https://github.com/jpm4j/jpm4j.installers/raw/master/dist/biz.aQute.jpm.run.jar >jpm4j.jar
- java -jar jpm4j.jar -u init
- ~/jpm/bin/jpm install com.codacy:codacy-coverage-reporter:assembly
android:
components:
- tools
- platform-tools
... | Make Travis script generate coverage reports. | Make Travis script generate coverage reports.
| YAML | mit | akiraspeirs/Cinder |
b84b75568b51f312fe38c875398a3edc857e0c87 | .travis.yml | .travis.yml | language: node_js
deploy:
provider: openshift
user: umiiro.hacker@gmail.com
password:
secure: g6qrrgnsEfl3wEZRwLHgOLwWg6foIaeMRXRYxhGUOd2gptoCFTd4LAcCTTibV8sOz1drcVYUKDrDYzSR/D/d09chQsSloUOjJp2u6vjWgRM/tmqhAa8/y93DdCALtuIt8m67VpkJBRVgfhPk/boSwREHtVCiHx8uMBoeLomsJUs=
app: client-collab
domain: clientcollab... | language: node_js
deploy:
provider: openshift
user: umiiro.hacker@gmail.com
password:
secure: g6qrrgnsEfl3wEZRwLHgOLwWg6foIaeMRXRYxhGUOd2gptoCFTd4LAcCTTibV8sOz1drcVYUKDrDYzSR/D/d09chQsSloUOjJp2u6vjWgRM/tmqhAa8/y93DdCALtuIt8m67VpkJBRVgfhPk/boSwREHtVCiHx8uMBoeLomsJUs=
app: client-collab
domain: umireon
on... | Change the domain to the namespace. | Change the domain to the namespace.
| YAML | mit | umireon/client-collab,umireon/client-collab |
20f519eebdc0126b206f7a25a2c6beda353a7a16 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
sudo: false
install:
- cp phpunit.xml.dist phpunit.xml
- cp config/autoload/local.php.travis config/autoload/local.php
- mysql -u root -e 'create database things;'
- composer self-update
- composer install --no-interaction
- ./vendor/bin/doctrine-module orm:sche... | language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
sudo: false
install:
- cp phpunit.xml.dist phpunit.xml
- cp config/autoload/local.php.travis config/autoload/local.php
- mysql -u root -e 'create database things;'
- composer self-update
- composer install --no-interaction
- ./vendor/bin/doctrine-mod... | Add nightly build of php in versions | Add nightly build of php in versions
| YAML | mit | aiolos/sodaq-one-tracker-mapping,aiolos/sodaq-one-tracker-mapping |
ae9346082ca3146737fc247c6452b667227ed974 | .travis.yml | .travis.yml | # Travis-CI configuration for Bioconductor packages
#
# See also:
# - https://docs.travis-ci.com/user/languages/r
# - https://docs.travis-ci.com/user/environment-variables/
# - https://github.com/travis-ci/travis-build/blob/master/lib/travis/build/script/r.rb
# - https://jef.works/blog/2019/02/17/automate-testing-of-yo... | # Travis-CI configuration for Bioconductor packages
#
# See also:
# - https://docs.travis-ci.com/user/languages/r
# - https://docs.travis-ci.com/user/environment-variables/
# - https://github.com/travis-ci/travis-build/blob/master/lib/travis/build/script/r.rb
# - https://jef.works/blog/2019/02/17/automate-testing-of-yo... | Improve Travis config [skip appveyor] | Improve Travis config [skip appveyor] | YAML | mit | steinbaugh/basejump,seqcloud/seqcloudR,steinbaugh/seqcloudr |
b948e1893834e3e38b8e3de0b3dffc3df263bedc | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- hhvm
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist --no-suggest;
script: vendor/bin/phpunit | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
fast_finish: true
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist --no-suggest;
script: ... | Allow for HHVM to fail, its just to see if this works anyway | :construction_worker: Allow for HHVM to fail, its just to see if this works anyway
| YAML | mit | tapestry-cloud/tapestry,carbontwelve/tapestry,carbontwelve/tapestry,carbontwelve/tapestry,tapestry-cloud/tapestry,tapestry-cloud/tapestry,tapestry-cloud/tapestry,carbontwelve/tapestry |
cc322b3bb4055ef79224f91bc9b3dd8b44876668 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-multilib libavcodec-dev:i386 libavutil-dev:i386 libavformat-dev:i386 libswscale-dev:i386
install: rustup target add i686-unknown-linux-gnu
scrip... | language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
env:
- RUST_BACKTRACE=1
- PKG_CONFIG_PATH=/usr/lib32/pkgconfig
- PKG_CONFIG_ALLOW_CROSS=1
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq gcc-multilib libavcodec-dev:i386 libavutil-dev:i386 ... | Set a custom pkg-config path | Set a custom pkg-config path
| YAML | mit | YaLTeR/hl-capture,YaLTeR/hl-capture,YaLTeR/hl-capture,YaLTeR/hl-capture |
38f24ad7dac5baaca67e3c13d9940d79a90068b3 | .travis.yml | .travis.yml | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7
- php: hhvm
before_install:
- composer self-update
- composer require --no-update squizlabs/php_codesniffer:dev-master
install:
- t... | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
matrix:
fast_finish: true
include:
- php: 5.5
- php: 5.6
- php: 7
- php: hhvm
before_install:
- composer self-update
- composer require --no-update squizlabs/php_codesniffer:dev-master
install:
- travis_retry com... | Remove tests on PHP5.4 (dependency on 5.5 because of Zend libs | Remove tests on PHP5.4 (dependency on 5.5 because of Zend libs
| YAML | mit | engineor/bsb-flysystem-runabove |
38e3c8282ac9c9c23760fb9dc45a21d5f6b0329f | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
before_script:
- npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev
- mysql -u root -e "CREATE DATABASE rhymix"
- mysql -u root -e "SET PASSWORD FOR 'travis'@'localhost' = PASSWORD('travis')"
- if [[ $TRAVIS_PHP_V... | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
matrix:
allow_failures:
- php: hhvm
sudo: false
before_script:
- npm install grunt grunt-cli grunt-contrib-jshint grunt-contrib-csslint grunt-phplint --save-dev
- mysql -u root -e "CREATE DATABASE rhymix"
- mysql -u root -e "SET PASSWORD FOR 'travis'@'localhost' = P... | Allow HHVM errors in Travis configuration | Allow HHVM errors in Travis configuration
| YAML | lgpl-2.1 | xetown/xe-core,xetown/xe-core,xetown/xe-core |
e435b3c46afd529aa9df0293fdf42b835a6ac2b7 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
before_install:
- git fetch --unshallow
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/
| language: java
jdk:
- openjdk8
before_install:
- git fetch --unshallow
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/
| Use openjdk8 to build on jenkins. Maybe this is caused by oracle licensing? | Use openjdk8 to build on jenkins.
Maybe this is caused by oracle licensing?
| YAML | apache-2.0 | killjoy1221/TabbyChat-2 |
7201625e4c4bb5c2fc3d5f6da653e2c1b01b02af | .travis.yml | .travis.yml | ---
dist: trusty
sudo: required
language: ruby
install:
# Install Ansible
- sudo apt-get install -y python-pip
- pip install ansible
# Install Test Kitchen
- gem install test-kitchen kitchen-docker kitchen-ansible
# install testinfra
- pip install testinfra
# Check Test Kitchen version
- kitchen -... | ---
dist: trusty
sudo: required
language: ruby
install:
# Install Ansible
- sudo apt-get install -y python-pip
- pip install ansible
# Install Test Kitchen
- gem install test-kitchen kitchen-docker kitchen-ansible
# install testinfra
- pip install testinfra
# Check versions
- kitchen --version
-... | Print versions of ansible, test kitchen and testinfra | CI: Print versions of ansible, test kitchen and testinfra
Signed-off-by: Tomas Hozza <2152b765a3a51268598a4503265cd77ce732fa8c@gmail.com>
| YAML | mit | thozza/ansible-gitlab-runner |
e94e11f0891cd23eb48b99b0259ed9acc3bf58fa | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: python
cache:
pip: true
directories:
- node_modules
python:
- 3.5
- 3.6
env:
- DJANGO_SETTINGS_MODULE="babybuddy.settings.travis"
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git descr... | sudo: false
dist: xenial
language: python
cache:
pip: true
directories:
- node_modules
python:
- 3.5
- 3.6
env:
- DJANGO_SETTINGS_MODULE="babybuddy.settings.travis"
install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git descr... | Update Travis CI dist to support SQLite > 3.8.2. | Update Travis CI dist to support SQLite > 3.8.2.
| YAML | bsd-2-clause | cdubz/babybuddy,cdubz/babybuddy,cdubz/babybuddy |
f340a959555928e17c040d3e189f5e6abe31dd87 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: hhvm
dist: trusty
allow_failures:
- php: hhvm
install: travis_retry composer update --no-interaction
script: vendor/bin/phpunit
before_deploy: bin/package -v... | language: php
sudo: false
matrix:
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: hhvm
dist: trusty
allow_failures:
- php: hhvm
install: travis_retry composer update --no-interaction
script: vendor/bin/phpunit --verbose
before_deploy: bin/... | Enable verbose mode on phpunit on travos | Enable verbose mode on phpunit on travos | YAML | mit | bobthecow/psysh,bobthecow/psysh |
737d7c3281cec29e3773d237b2fb6f59d7bb1f68 | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
script:
- npm run build
deploy:
provider: pages
skip_cleanup: true
local_dir: public
github-token:
secure: "Mqf24XwTwIVm61Fz5MkKRH0C1XrUbadpNGc3+Zyxzp/IiC7wJ3bDaPBSu7H7SbkJWatcyP7aBZ2Z10wdnEIPHXh4CuVRJfkHAA2miOQ/TfkJcsWWkW3NXdo0Tl6063wPLQXUEUBCEL4VrkZS0m0GU8RA53LV/KygQUZ... | language: node_js
node_js:
- "7"
script:
- npm run build
deploy:
provider: surge
skip_cleanup: true
project: ./public/
on:
branch: master
| Deploy to surge.sh instead of github pages | Deploy to surge.sh instead of github pages
| YAML | mit | CodeForPhilly/philly-ward-leaders,CodeForPhilly/philly-ward-leaders,CodeForPhilly/philly-ward-leaders,CodeForPhilly/philly-ward-leaders |
b670f198e16efc1a7b3bdfebef9f605ab6fe3840 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
- ruby-head
notifications:
irc: "irc.freenode.org#adhearsion"
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: jruby-19mode
notifications:
irc: "irc.freenode.org#adhearsion"
| Allow CI failure on Rubinius and JRuby while dependencies are fixed on those platforms | [CS] Allow CI failure on Rubinius and JRuby while dependencies are fixed on those platforms | YAML | mit | adhearsion/punchblock,kares/punchblock,cloudvox/punchblock,system123/punchblock |
73aa54d7c40c4cd6fd9f162989ab770b0c0f1947 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk7
- oraclejdk7
- openjdk8
services:
- redis-server
after_success:
- mvn cobertura:cobertura coveralls:cobertura
| language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
services:
- redis-server
after_success:
- mvn cobertura:cobertura coveralls:cobertura
| Fix the JDK 8 string | Fix the JDK 8 string | YAML | apache-2.0 | gresrun/jesque,shrayasr/jesque,lerencao/jesque,argvk/jesque,pencilkill/jesque |
2634e15510b06ace2a241244494cad99b8cf3cf0 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
addons:
firefox: "latest"
before_install:
- sudo apt-get install lcov
- nvm install $(python -c "import json; print(json.loads(open('./assets/package.json').read())['engines']['node'])")
install:
- make env
- gem install coveralls-lcov
before_script:
- export DISPLAY=... | language: python
python:
- "3.6"
addons:
firefox: "latest"
before_install:
- sudo apt-get install lcov
- nvm install $(python -c "import json; print(json.loads(open('./assets/package.json').read())['engines']['node'])")
install:
- make env
- gem install coveralls-lcov
before_script:
- export DISPLAY=... | Use Python 3.6 on TravisCI | Use Python 3.6 on TravisCI
| YAML | unlicense | mbucknell/PubsWarehouse_UI,USGS-CIDA/PubsWarehouse_UI,ayan-usgs/PubsWarehouse_UI,USGS-CIDA/PubsWarehouse_UI,ayan-usgs/PubsWarehouse_UI,jkreft-usgs/PubsWarehouse_UI,ayan-usgs/PubsWarehouse_UI,USGS-CIDA/PubsWarehouse_UI,mbucknell/PubsWarehouse_UI,USGS-CIDA/PubsWarehouse_UI,jkreft-usgs/PubsWarehouse_UI,ayan-usgs/PubsWareh... |
8b5a1a954fb37f5ee60f9aea60f4af3fbf27855b | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
- "10"
- "11"
- "12"
install:
- yarn install
script:
- yarn run lint
- yarn run compile
- yarn run test
jobs:
include:
- stage: after_success
script:
- yarn install
- yarn run test-coverage
- yarn run send-coveralls
- yarn add -D codacy-coverage
... | language: node_js
node_js:
- "8"
- "10"
- "11"
- "12"
install:
- yarn install
script:
- yarn run lint
- yarn run compile
- yarn run test
jobs:
include:
- stage: after_success
script:
- yarn install
- yarn run test-coverage
# - yarn run send-coveralls
- yarn add -D codacy-coverag... | Disable sending coverage to coveralls, coveralls is down | Disable sending coverage to coveralls, coveralls is down
| YAML | mit | Borewit/music-metadata,Borewit/music-metadata |
66fe4c269e2e79fd8a33a473ca5e6dda29df8016 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "2.6"
# - "pypy"
install:
- pip install cython
- python setup.py install
script:
- ./update_c.sh
- py.test
| language: python
python:
- "3.5"
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "2.6"
# - "pypy"
install:
- pip install cython
- python setup.py install
script:
- ./update_c.sh
- py.test
| Add Python 3.5 to Travis-CI | Add Python 3.5 to Travis-CI
| YAML | mit | kmike/hat-trie,kmike/hat-trie,kmike/hat-trie,kmike/hat-trie |
0f4631f2e174b19069afd181a5d0104a7e810e57 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
env:
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=2.8.*
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION=3.1.*@dev
- php: 7.0
env: SYMFONY_VERSION=3.1.*@dev
- p... | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
env:
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=2.8.*
matrix:
include:
- php: 5.6
env: SYMFONY_VERSION=3.1.*@dev
- php: 7.0
env: SYMFONY_VERSION=3.1.*@dev
- p... | Fix composer validation to take place before installation. | Fix composer validation to take place before installation.
| YAML | mit | lennerd/vipx-bot-detect |
d467da4093cd1be7dc56b06bd26262663f4cf284 | .travis.yml | .travis.yml | language: scala
services:
- rabbitmq
scala:
- 2.11.4
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
| language: scala
services:
- rabbitmq
scala:
- 2.10.4
- 2.11.4
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
| Add Scala 2.10.4 to Travis configuration | Add Scala 2.10.4 to Travis configuration
| YAML | apache-2.0 | ScalaConsultants/reactive-rabbit,davidwrpayne/reactive-rabbit |
5b96fc806a2b07cc30b56587731fda26edf9e524 | .travis.yml | .travis.yml | sudo: required
language: java
services:
- docker
env:
global:
- APP=iou
- REPO=staticvoiduk/$APP
- COMMIT=${TRAVIS_COMMIT::8}
after_success:
- docker build -t $REPO:$COMMIT . --build-arg JAR_FILE=./build/libs/$APP-0.0.1-SNAPSHOT.jar
- scripts/push-to-repo.sh
| sudo: required
language: java
services:
- docker
env:
global:
- APP=iou
- REPO=staticvoiduk/$APP
- COMMIT=${TRAVIS_COMMIT::8}
after_success:
- docker build -t $REPO:$COMMIT . --build-arg JAR_FILE=./build/libs/$APP-0.0.1-SNAPSHOT.jar
- scripts/push-to-repo.sh
notifications:
slack:
rooms:
secure: nrMq... | Add Travis-CI notifications on build | Add Travis-CI notifications on build
| YAML | mit | nathancashmore/iou,nathancashmore/iou |
af07c3bd687ddcde8e3f67c1d3c2a379f137e13c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0
- jruby-18mode
- jruby-19mode
- rbx-2
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby-18mode
- jruby-19mode
- rbx-2
before_install:
- gem install bundler
| Upgrade Travis to newer bundler. | Upgrade Travis to newer bundler.
Necessary because of https://github.com/bundler/bundler/issues/3558.
| YAML | mit | whitequark/ast |
caa47fd56af1f8ff88017c88ad607415db1ef69e | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
- travis_retry phpenv rehash
script:
- ./vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
| language: php
php:
- 5.6
- 7.0
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
- travis_retry phpenv rehash
script:
- ./vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
| Drop support for PHP 5.5 & HHVM | Drop support for PHP 5.5 & HHVM
| YAML | mit | WiderFunnel-Labs/OAuth2-Optimizely |
88ab951febda0ba35531b16cbf3534d09a851d25 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
before_install:
- gem update --system
- gem install --pre sass
| language: node_js
node_js:
- '0.10'
before_install:
- gem update --system
- gem install sass
| Use the stable version of Sass for testing | Use the stable version of Sass for testing
Sourcemaps and all the other new good stuff is in Sass 3.3.8, so no need to use
an unstable prerease anymore.
| YAML | mit | mathiasbynens/gulp-ruby-sass,froucher/gulp-ruby-sass,sindresorhus/gulp-ruby-sass |
7319a8a088461b2424d95bd622e969015096fd55 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
after_success:
["git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-releng", ".forge-releng/publish"]
env:
global:
- PUBLIS... | ---
language: ruby
bundler_args: --without development
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
after_success:
["git clone -q git://github.com/puppetlabs/ghpublisher.git .forge-releng", ".forge-releng/publish"]
env:
global:
- PUBLIS... | Use modulesync to manage meta files | Use modulesync to manage meta files
| YAML | apache-2.0 | camptocamp/puppet-buildenv |
9171e3e01288b3a18cd3602d27f7f9bf366ea095 | .travis.yml | .travis.yml | sudo: false
language: node_js
notifications:
email: false
node_js:
- '4.2'
- 'stable'
before_script:
- npm install -g istanbul
- npm run-script pretest
script:
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --recursive
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/covera... | sudo: false
language: node_js
notifications:
email: false
node_js:
- '4.2'
- 'stable'
before_script:
- npm install -g istanbul
- npm run-script pretest
script:
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly --
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/cove... | Move coverage reporting to after_script | Move coverage reporting to after_script
| YAML | mit | jmversteeg/nectar |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.