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 |
|---|---|---|---|---|---|---|---|---|---|
9a81bf027cb3dbd55bd2dca75b2906f0b70d898f | .travis.yml | .travis.yml | osx_image: xcode8.2
language: objective-c
xcode_project: HelloWorld.xcodeproj
xcode_scheme: HelloWorld
| osx_image: xcode8.2
language: objective-c
xcode_project: HelloWorld.xcodeproj
xcode_scheme: HelloWorld
before_install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
brew update;
brew outdated xctool || brew upgrade xctool;
fi
| Update xctool before attempting to build | Update xctool before attempting to build
| YAML | apache-2.0 | graemer957/helloworld-swift-framework,graemer957/helloworld-swift-framework |
416581e43f8de5bc19a4d9044223ec56275f44a7 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
notifications:
email: false
| language: ruby
rvm:
- 2.2.4
- 2.3.0
notifications:
email: false
| Drop support of eol ruby | Drop support of eol ruby
All support of the Ruby 2.1 series has ended
| YAML | mit | ksss/tori |
f2614eb1aa1bd8991c39dec1dce49986f198529e | .travis.yml | .travis.yml | language: csharp
solution: AsyncAnalyzers.sln
before_install:
- gem install albacore -v 2.6.1
install:
- nuget restore AsyncAnalyzers.sln
script:
- xbuild /p:Configuration=Release solution-name.sln
- mono ./packages/xunit.runner.console.2.2.0/tools/xunit.console.exe ./AsyncAnalyzers.Test/bin/Release/AsyncAnalyz... | language: csharp
solution: AsyncAnalyzers.sln
before_install:
- gem install albacore -v 2.6.1
install:
- nuget restore AsyncAnalyzers.sln
script:
- xbuild /p:Configuration=Release AsyncAnalyzers.sln
- mono ./packages/xunit.runner.console.2.2.0/tools/xunit.console.exe ./AsyncAnalyzers.Test/bin/Release/AsyncAnaly... | Fix solution name in Travis CI config | Fix solution name in Travis CI config
| YAML | mit | holthe/AsyncAnalyzers,holthe/AsyncAnalyzers |
ca7094578dc56202b768b911e23c9dc1852956f0 | .travis.yml | .travis.yml | sudo: required
language: perl6
os:
- linux
- osx
perl6:
- 2016.02
- latest
install:
- echo $TRAVIS_OS_NAME
- rakudobrew build panda
- panda installdeps .
script: prove -v -e perl6 t/
| sudo: required
language: perl6
os:
- linux
- osx
perl6:
- 2016.02
- latest
install:
- echo $TRAVIS_OS_NAME
- rakudobrew build panda
- panda installdeps .
script: prove -v -e perl6 -Ilib t/
| Fix Travis CI build failures | Fix Travis CI build failures
| YAML | mit | azawawi/perl6-memoize |
3ce3aceea30bc16fc0fdd0d16b4e626a983a1f53 | .travis.yml | .travis.yml | # Travis CI Configuration
language: python
python:
- "3.6"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run -m nose
- pycodestyle toac/*.py
after_success:
- coveralls
| # Travis CI Configuration
language: python
python:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run -m nose
- pycodestyle toac/*.py
after_success:
- coveralls
| Test through Python 3.9 in CI pipeline | Test through Python 3.9 in CI pipeline
| YAML | mit | caleb531/three-of-a-crime |
e9e9d64f3887df7fc5d29bd2e4421e139c24d52c | .travis.yml | .travis.yml | sudo: required
language: go
go:
- 1.6
services:
- docker
install:
- wget https://github.com/Masterminds/glide/releases/download/0.9.1/glide-0.9.1-linux-amd64.tar.gz
- tar xvzf glide-0.9.1-linux-amd64.tar.gz
- sudo cp linux-amd64/glide /usr/bin/glide
- cd "$GOPATH/src/github.com/ibrt/go-oauto/oauto" && gl... | sudo: required
language: go
go:
- 1.6
services:
- docker
install:
- wget https://github.com/Masterminds/glide/releases/download/0.9.1/glide-0.9.1-linux-amd64.tar.gz
- tar xvzf glide-0.9.1-linux-amd64.tar.gz
- sudo cp linux-amd64/glide /usr/bin/glide
- cd "$GOPATH/src/github.com/ibrt/go-oauto/oauto" && gl... | Update TravisCI configuration: fix typo. | Update TravisCI configuration: fix typo.
| YAML | mit | ibrt/go-oauto,ibrt/go-oauto |
d71a541a7582729104094b4d43502154fb2e9238 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
gemfile:
- gemfiles/rails_4.2.8.gemfile
- gemfiles/rails_5.0.3.gemfile
- gemfiles/rails_5.1.1.gemfile
after_success:
- bundle exec codeclimate-test-reporter
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.5.3
- 2.4.5
- 2.3.8
- 2.2.10
gemfile:
- gemfiles/rails_4.2.8.gemfile
- gemfiles/rails_5.0.3.gemfile
- gemfiles/rails_5.1.1.gemfile
after_success:
- bundle exec codeclimate-test-reporter
| Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | jbox-web/active_use_case |
f581792443c52bc3d3672f317359b10053e8cdff | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install: "apt-get install ppp"
install: "pip install ."
| language: python
python:
- "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y ppp
install: "pip install ."
| Fix apt-get failed on Travis CI | Fix apt-get failed on Travis CI
| YAML | mit | sorz/sstp-server,sorz/sstp-server |
9d0aea244a03591909adede3aa7ab27a9af78978 | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
install:
- travis_retry composer install --no-interaction --prefer-source
- if [[ "$TRAVIS_PHP_VERSION" == hhvm* ]]; then echo -e '\nhhvm.libxml.ext_entity_whitelist = "file"' | sudo t... | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
install:
- travis_retry composer install --no-interaction --prefer-source
- if [[ "$TRAVIS_PHP_VERSION" == hhvm* ]]; then echo -e '\nhhvm.libxml.ext_entity_whit... | Allow build hhvm-nightly build failures | Allow build hhvm-nightly build failures
| YAML | bsd-3-clause | simohammedhttp/phpunit,Firehed/phpunit,duncan3dc/phpunit,DonaldKellett/phpunit,kyale/phpunit,asgrim/phpunit,FireWalkerX/phpunit,abachi/phpunit,ezzatron/phpunit,eelf/phpunit,serbanghita/phpunit,nonconforme/phpunit,potherca-contrib/phpunit,matheusgomes17/phpunit,Shaked/phpunit,tronsha/phpunit,lcp0578/phpunit,s001dxp/phpu... |
ae21041845cc1f6dac7a8d2c892b69df4662049b | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
branches:
only:
- master
bundler_args: --without development system_tests
script:
- bundle exec rake $CHECK
env:
- CHECK=ci
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
matrix:
include:
- rvm: 2.4.1
env: CHECK=rubocop
| ---
language: ruby
dist: trusty
sudo: false
branches:
only:
- master
bundler_args: --without development system_tests
script:
- bundle exec rake $CHECK
env:
- CHECK=ci
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
matrix:
include:
- rvm: 2.4.1
env: CHECK... | Update TravisCI config to use trusty image | Update TravisCI config to use trusty image | YAML | mit | rodjek/puppet-lint |
be34a87a04cb36c86cd8327a83c7682f6c9fc911 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
env: DNSIMPLE_TEST_CONFIG=spec/ci/.dnsimple.test COVERALL=1
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.0
env: DNSIMPLE_TEST_CONFIG=spec/ci/.dnsimple.test COVERALL=1
matrix:
allow_failures:
- rvm: 1.8.7
| Test dependency issue with 1.8.7 | Test dependency issue with 1.8.7
1.8.7 support will eventually go away.
| YAML | mit | aetrion/dnsimple-ruby |
f5c0a9cb223cee8a1e0baa3f175b29da10899d5d | .cirrus.yml | .cirrus.yml | test_task:
container:
matrix:
- image: erlang:21
- image: erlang:20
- image: erlang:19
- image: erlang:18
- image: erlang:17
test_script: |
./bootstrap
./rebar3 ct
osx_test_task:
osx_instance:
image: mojave-base
install_script: brew install erlang
test_script: |
... | test_task:
container:
matrix:
- image: erlang:21
- image: erlang:20
- image: erlang:19
- image: erlang:18
- image: erlang:17
test_script: |
./bootstrap
./rebar3 ct
osx_test_task:
osx_instance:
image: mojave-base
install_script: brew install erlang
test_script: |
... | Disable windows on Cirrus CI | Disable windows on Cirrus CI
This never passes even if it works on Windows 10 machines and on Circle
CI's runs.
| YAML | apache-2.0 | lrascao/rebar3,rebar/rebar3,djnym/rebar3,saleyn/rebar3,erlang/rebar3,tsloughter/rebar3,ferd/rebar3,rebar/rebar3,vladdu/rebar3 |
58e8ff0d7374ebf283d16aa1037898be06bddf42 | .travis.yml | .travis.yml | ### Project specific config ###
language: generic
env:
global:
- APM_TEST_PACKAGES=""
- ATOM_LINT_WITH_BUNDLED_NODE="true"
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
os:
- linux
## - osx
dist: trusty
### Generic setup follows ###
script:
- curl -s -O https://raw.githubusercontent.c... | ### Project specific config ###
language: generic
env:
global:
- APM_TEST_PACKAGES=""
- ATOM_LINT_WITH_BUNDLED_NODE="true"
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
os:
- linux
## - osx
dist: trusty
### Generic setup follows ###
script:
- curl -s -O https://raw.githubusercontent.c... | Update to match github template, remove package | Update to match github template, remove package
| YAML | mit | alflanagan/atom-pkg-groups,alflanagan/atom-pkg-groups |
a3df7270c0d1f0da59ba3e0098d169bb72ad799c | .travis.yml | .travis.yml | language: c # Not really, but Travis doesn't do OCaml.
env:
- PPA="avsm/ocaml40+opam11" OPAMYES="1"
- PPA="avsm/ocaml41+opam11" OPAMYES="1"
before_install:
- "echo 'yes' | sudo add-apt-repository ppa:$PPA"
- "sudo apt-get update -qq"
- "sudo apt-get install -qq ocaml ocaml-native-compilers camlp4-extra opa... | language: c # Not really, but Travis doesn't do OCaml.
env:
# - PPA="avsm/ocaml40+opam11" OPAMYES="1"
- PPA="avsm/ocaml41+opam11" OPAMYES="1"
before_install:
- "echo 'yes' | sudo add-apt-repository ppa:$PPA"
- "sudo apt-get update -qq"
- "sudo apt-get install -qq ocaml ocaml-native-compilers camlp4-extra o... | Disable older OCaml build for now. | Disable older OCaml build for now.
| YAML | mit | jerith/ypotryll |
2152022c105d98346eb3e9a0e957ae5e7840205d | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
gemfile:
- gemfiles/ar_4.2.gemfile
- gemfiles/ar_5.2.gemfile
- gemfiles/ar_6.0.gemfile
matrix:
allow_failures:
# Rails 6 requires Ruby 2.5 or newer. ref: https://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#ruby-versions
- rvm: 2... | language: ruby
sudo: false
rvm:
- 2.5
- 2.6
- 2.7
gemfile:
- gemfiles/ar_4.2.gemfile
- gemfiles/ar_5.2.gemfile
- gemfiles/ar_6.0.gemfile
matrix:
allow_failures:
# BigDecimal 2.0 does not support `BigDecimal.new`. ref: https://github.com/ruby/bigdecimal#which-version-should-you-select
- rvm: 2.7
... | Remove ruby 2.4 because of EOL | Remove ruby 2.4 because of EOL
| YAML | mit | cookpad/arproxy |
3d020d8b2a9479699891b5d5892dfde04bd3ee9f | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
env:
global:
- secure: gokQ7xIWwmAuEUW3IyS5B/pbZxdFSSDBto5beJ+4ACGcRMDqJ/eCPf1ekSVXME4TWM46uUCjxcdUjYhIhQ6sG4zfWck4u45qRJ5JbIoTvR+ykxhN1j3Zi5x9ptP3ALDbHn2i3v6t9xohORfQpz3dVND5c7thbYDyKP2ZR1sez5c=
- FEATURES: default
matrix:
include:
- rust: nightly
... | language: rust
rust:
- stable
- beta
- nightly
env:
global:
- secure: gokQ7xIWwmAuEUW3IyS5B/pbZxdFSSDBto5beJ+4ACGcRMDqJ/eCPf1ekSVXME4TWM46uUCjxcdUjYhIhQ6sG4zfWck4u45qRJ5JbIoTvR+ykxhN1j3Zi5x9ptP3ALDbHn2i3v6t9xohORfQpz3dVND5c7thbYDyKP2ZR1sez5c=
- FEATURES: default
matrix:
include:
- rust: nightly
... | Test ipv6 methods in CI | Test ipv6 methods in CI
| YAML | apache-2.0 | faern/ipnetwork,achanda/ipnetwork |
179f86912106da3531ab2bb1c209680430f5e56f | .travis.yml | .travis.yml | language: java
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/
jdk:
- oraclejdk8
#TODO:Needed in production template I cant remember if we need it here
#before_sc... | language: java
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/
jdk:
- oraclejdk8
env:
- MONGODB=3.4.7
install:
- wget http://fastd1.mongodb.org/linux/m... | Change Travis to use newer version of Mongo | Change Travis to use newer version of Mongo
| YAML | mit | UMM-CSci-3601/3601-lab4_mongo,UMM-CSci-3601/3601-lab4_mongo,UMM-CSci-3601/3601-lab4_mongo,UMM-CSci-3601/3601-lab4_mongo |
3cf621c3ac42b12bc40a7adc7a992c4e141ed79f | .travis.yml | .travis.yml | language: objective-c
os: osx
osx_image: xcode8
xcode_project: Progress.swift/Progress.swift.xcodeproj
xcode_scheme: Progress.swift
script:
- set -o pipefail && xcodebuild -project Progress.swift/Progress.swift.xcodeproj -scheme Progress.swift -enableCodeCoverage YES clean build test | xcpretty
after_success:
- bas... | language: objective-c
os: osx
osx_image: xcode9
xcode_project: Progress.swift/Progress.swift.xcodeproj
xcode_scheme: Progress.swift
script:
- set -o pipefail && xcodebuild -project Progress.swift/Progress.swift.xcodeproj -scheme Progress.swift -enableCodeCoverage YES clean build test | xcpretty
after_success:
- bas... | Update osx_image to xcode9 for passing CI check | Update osx_image to xcode9 for passing CI check
| YAML | mit | jkandzi/Progress.swift,jkandzi/Progress.swift |
cd1f9ea6a57cae0558e57419a4187c24450b59da | .travis.yml | .travis.yml | os: windows
language: go
go:
#- 1.0
#- 1.1
#- 1.2
#- 1.3
- 1.4
- 1.5
- 1.6
- tip
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/akavel/rsrc/binutil
- go get github.com/akavel/rsrc/coff
- go ... | os: windows
language: go
go:
#- 1.0
#- 1.1
#- 1.2
#- 1.3
- 1.4
- 1.5
- 1.6
- tip
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/akavel/rsrc/binutil
- go get github.com/akavel/rsrc/coff
- go ... | Change back to other commands | Change back to other commands
| YAML | mit | josephspurrier/goversioninfo |
a4cea61f44b6aac3d9b93d09e2b3f264cbe7e5e4 | .travis.yml | .travis.yml | sudo: required
dist: xenial
before_install:
- ./bin/ci/install_chef_dk.sh
- gem update bundler
- bundle update --bundler
cache: bundler
services: docker
# kitchen list -b | xargs -I {} echo "- INSTANCE={}"
env:
matrix:
- INSTANCE=default-deb-debian-9
- INSTANCE=default-deb-ubuntu-1804
- INSTANCE=defau... | sudo: required
dist: xenial
before_install:
- gem update bundler
- bundle update --bundler
install: ./bin/ci/install_chef_dk.sh
cache: bundler
services: docker
# kitchen list -b | xargs -I {} echo "- INSTANCE={}"
env:
matrix:
- INSTANCE=default-deb-debian-9
- INSTANCE=default-deb-ubuntu-1804
- INSTANCE... | Install Chef DK in the install step | Install Chef DK in the install step
| YAML | apache-2.0 | jjasghar/rabbitmq,jjasghar/rabbitmq |
af7c6cdfbb1e5881aa88b31be47a90a8538650b7 | .travis.yml | .travis.yml | language: go
go:
- "1.x"
branches:
only:
- master
matrix:
include:
- env: GOTEST_PKGS="./api"
- env: GOTEST_PKGS="./agent"
- env: GOTEST_PKGS="./agent/consul"
- env: GOTEST_PKGS_EXCLUDE="./api|./agent|./agent/consul"
script:
- make test-ci
sudo: false
| language: go
go:
- "1.x"
branches:
only:
- master
- f-envoy
matrix:
include:
- env: GOTEST_PKGS="./api"
- env: GOTEST_PKGS="./agent"
- env: GOTEST_PKGS="./agent/consul"
- env: GOTEST_PKGS_EXCLUDE="./api|./agent|./agent/consul"
script:
- make test-ci
sudo: false
| Enable CI on f-envoy feature branch | Enable CI on f-envoy feature branch | YAML | mpl-2.0 | scalp42/consul,42wim/consul,kingland/consul,42wim/consul,scalp42/consul,kingland/consul,kingland/consul,youhong316/consul,kingland/consul,kingland/consul,hashicorp/consul,42wim/consul,scalp42/consul,hashicorp/consul,youhong316/consul,hashicorp/consul,vamage/consul,scalp42/consul,42wim/consul,youhong316/consul,vamage/co... |
e4ab31fed8c1699ae06331e8a8742f9abbe572f5 | .travis.yml | .travis.yml | language: go
sudo: required
notifications:
email: false
env:
global:
- H2O_VERSION=1.6.3
- PROJECT_ROOT=$HOME/gopath/src/github.com/kayac/Gunfish
go:
- 1.8
- 1.9
- tip
addons:
apt:
sources:
- kalakris-cmake
packages:
- cmake
- curl
install:
- cd $PROJECT_ROOT && ./t... | language: go
sudo: required
notifications:
email: false
env:
global:
- H2O_VERSION=1.6.3
- PROJECT_ROOT=$HOME/gopath/src/github.com/kayac/Gunfish
go:
- 1.9.x
- 1.10.3
- tip
addons:
apt:
sources:
- kalakris-cmake
packages:
- cmake
- curl
install:
- cd $PROJECT_ROOT &... | Drop Go 1.8 support. Add 1.10.3. | Drop Go 1.8 support. Add 1.10.3.
| YAML | mit | kayac/Gunfish,kayac/Gunfish |
3e7709e1de385b162abeb7ae1f720613f1c2f20c | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
install: "pip install -r requirements.txt --use-mirrors"
script: "python script/test"
| language: python
python:
- 2.6
- 2.7
install:
- "pip install -r requirements.txt --use-mirrors"
- "pip install -e ."
script: "python script/test"
| Add Jig to the pip install | Add Jig to the pip install
| YAML | bsd-2-clause | robmadole/jig,robmadole/jig |
efacfbf41e22bea8cc990ae2ebfc4a5a334964cd | .travis.yml | .travis.yml | language: php
before_script:
- composer self-update
- composer install
- php app/console doctrine:database:create --env=test
- php app/console doctrine:schema:create --env=test
- php app/console doctrine:fixtures:load -n --env=test
script:
- phpunit -c app
notifications:
email:
- llopez@sopinet.co... | language: php
before_script:
- composer self-update
- composer install
- mysql -e 'drop database if exists symfony;'
- mysql -e 'create database symfony;'
- php app/console doctrine:database:create --env=test
- php app/console doctrine:schema:create --env=test
- php app/console doctrine:fixtures:load -n ... | Remove and create database symfony | Remove and create database symfony
| YAML | mit | CochicerrosDev/monigotes,molinan2/BasicSymfony,CochicerrosDev/monigotes,s1yamuza/BasicSymfony,sopinet/BasicSymfony,s1yamuza/BasicSymfony,molinan2/BasicSymfony,sopinet/BasicSymfony,s1yamuza/BasicSymfony,CochicerrosDev/monigotes,CochicerrosDev/monigotes,sopinet/BasicSymfony,molinan2/BasicSymfony |
4f67a53b9262632693e2d0419ad67339540ca28a | .travis.yml | .travis.yml | os:
- linux
- osx
- windows
dist: xenial
language: rust
cache: cargo
rust:
- stable
- nightly
script:
- cargo build --verbose
- cargo test --verbose
| language: rust
cache: cargo
os:
- linux
- osx
- windows
dist: xenial
rust:
- stable
- nightly
script:
- cargo build --verbose
- cargo test --verbose
| Reorder entries in the Travis CI configuration. | Reorder entries in the Travis CI configuration.
| YAML | mit | google/fleetspeak-rs |
8e943b82fa162d77eb8acafdd8b22e50da7abd0f | .travis.yml | .travis.yml | language: python
sudo: false
python:
- 2.7
# The apt packages below are needed for sphinx builds. A full list of packages
# that can be included can be found here:
#
# https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
addons:
apt:
packages:
- graphviz
... | language: python
sudo: false
python:
- 2.7
# The apt packages below are needed for sphinx builds. A full list of packages
# that can be included can be found here:
#
# https://github.com/travis-ci/apt-package-whitelist/blob/master/ubuntu-precise
addons:
apt:
packages:
- graphviz
... | Install mock for sphinx build | Install mock for sphinx build
| YAML | mit | e-koch/FilFinder |
ed84e6e2f2a7336f8766998b23bbb4359cf9ed7f | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
install:
- pip install flake8==2.1.0 pep8==1.5.6
- python setup.py install
- pip list
- flake8 --version
script:
- python setup.py test -q
- flake8 pyflakes setup.py
matrix:
allow_failures:
- python: pypy
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
install:
- pip install flake8==2.1.0 pep8==1.5.6
- python setup.py install
- pip list
- flake8 --version
script:
- python setup.py test -q
- flake8 pyflakes setup.py
matrix:
allow_failures:
- python: pypy
| Test Python 3.4 on Travis CI | Test Python 3.4 on Travis CI | YAML | mit | epsy/pyflakes,PyCQA/pyflakes,jayvdb/pyflakes,nikolas/pyflakes,asmeurer/pyflakes,pyflakes/pyflakes,bitglue/pyflakes |
4ecaafae366f6aa09d5404b9e4c9e7427aac912c | .travis.yml | .travis.yml | language: python
python:
- nightly
- 3.6
- 3.5
- 3.4
- 3.3
- 2.7
install:
- pip install .
- pip install -r requirements.txt
- pip install nose
# command to run tests
script: nosetests
| language: python
python:
- nightly
- 3.6
- 3.5
- 3.4
- 3.3
- 2.7
install:
- pip install .
- pip install -r requirements.txt
- pip install nose coveralls
script: coverage run --source=nbmerge setup.py nosetests
after_success: coveralls
| Add code coverage via coveralls | Add code coverage via coveralls
| YAML | mit | jbn/nbmerge,jbn/nbmerge |
07437b808eab8cf5f14bdba33f847bbf4ef9906b | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "3.5"
addons:
apt:
packages:
- git
install:
- pip install -r requirements-py35-linux64.txt
- python setup.py develop
- if [ "$(git ls-remote --heads git@github.com:gem/oq-hazardlib.git ${TRAVIS_BRANCH})" != "" ]; then BRANCH=$TRAVIS_BRANCH; else BRANCH='master... | sudo: false
language: python
python:
- "3.5"
addons:
apt:
packages:
- git
install:
- pip install -r requirements-py35-linux64.txt
- python setup.py develop
- if [ "$(git ls-remote --heads https://github.com/gem/oq-hazardlib.git ${TRAVIS_BRANCH})" != "" ]; then BRANCH=$TRAVIS_BRANCH; else BRANCH='ma... | Replace git@ with https in git ls-remote | Replace git@ with https in git ls-remote
| YAML | agpl-3.0 | gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine,gem/oq-engine |
fddacd6cba52037287c85e6fde67d4399a21cad0 | .travis.yml | .travis.yml | language: rust
sudo: false
language: rust
addons:
apt:
#sources:
#- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libsnappy-dev
- zlib1g-dev
- libbz2-dev
rust:
- stable
- beta
- nightly
cache:
directories:
- $HOME/.cargo
- target
install:
- git clone https://github.com/faceb... | language: rust
sudo: false
language: rust
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libsnappy-dev
- zlib1g-dev
- libbz2-dev
rust:
- stable
- beta
- nightly
cache:
directories:
- $HOME/.cargo
- target
install:
- git clone https://github.com/faceboo... | Use up to date versions of GCC. | Use up to date versions of GCC.
| YAML | mit | cstorey/chain-replication-experiment,cstorey/chain-replication-experiment |
bd5980030986185c5f4d65cfd46f123ab9b59606 | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- 1.7
- master
node_js:
- "6"
before_script:
- npm install eslint eslint-config-strict eslint-plugin-filenames
script:
- go test -v ./...
- ./node_modules/eslint/bin/eslint.js js/main.js
| language: go
go:
- 1.5
- 1.6
- 1.7
- master
install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
- npm install eslint eslint-config-strict eslint-plugin-filenames
script:
- go test -v ./...
- ./node_modules/eslint/bin/eslint.js js/main.js
| Copy black magic from the internet to fix eslint by upgrading node | Copy black magic from the internet to fix eslint by upgrading node
| YAML | mit | DiscoViking/blog,DiscoViking/blog,DiscoViking/blog |
66eaf3bcf3054463463f25b9fc66c3c885b3954f | .travis.yml | .travis.yml | language: python
python:
- "3.4"
install:
- python setup.py
script:
- python common/shapp.py
- python common/sheventhandler.py
- python common/shutil.py
- python common/shregistry.py
- python engine/restinterface.py
- python engine/memorymanager.py
| language: python
python:
- "3.4"
install:
- python setup.py
script:
- python common/shapp.py
- python common/sheventhandler.py
- python common/shutil.py
- python common/shregistry.py
- python engine/restinterface.py
- python engine/memorymanager.py
- python feed/feed.home.tracer.py --help
- python f... | Add tracer and apcups to Travis CI | Add tracer and apcups to Travis CI
Add new Cement based tracer and apcups feeders to Travis CI to perform
basic syntax checking
| YAML | apache-2.0 | fxstein/SentientHome |
9d08ea385262fb778b87e7c63c5cf8ccaee668a1 | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 2.0.0
- 1.9.3
- jruby-19mode
before_install:
- gem install bundler --version '>= 1.2.2'
before_script: 'bundle exec rake appraisal:install'
script: 'bundle exec rake appraisal test'
| ---
language: ruby
rvm:
- 2.1
- 2.0.0
- 1.9.3
- jruby-19mode
before_install:
- gem install bundler --version '>= 1.2.2'
before_script: 'bundle exec rake appraisal:install'
script: 'bundle exec rake appraisal test'
| Test against Ruby 2.1 on Travis CI | Test against Ruby 2.1 on Travis CI
| YAML | apache-2.0 | Heyzap/react-rails,Widdershin/react-rails,yakovenkodenis/react-rails,michaelachrisco/react-rails,Bunlong/react-rails,eins78/react-rails,agileurbanite/react-rails,stevestmartin/react-rails,pthrasher/react-rails,samwgoldman/react-rails,justin808/react-rails,smd686s/react-rails,catprintlabs/react-rails,michaelachrisco/rea... |
3cb6b59b722381f230c910c32f657375d9216bb4 | .travis.yml | .travis.yml | # Sample .travis.yml for R projects.
#
# See README.md for instructions, or for more configuration options,
# see the wiki:
# https://github.com/craigcitro/r-travis/wiki
#
# Hack for 'error on warning' except when the warning is about vignette pdfs/html
# Thanks to csgillespie for https://github.com/csgillespie/trav... | # Sample .travis.yml for R projects.
#
# See README.md for instructions, or for more configuration options,
# see the wiki:
# https://github.com/craigcitro/r-travis/wiki
#
# Hack for 'error on warning' except when the warning is about vignette pdfs/html
# Thanks to csgillespie for https://github.com/csgillespie/trav... | Add 'caret' package for tests. | Add 'caret' package for tests.
| YAML | mpl-2.0 | Rdatatable/data.table,vlulla/data.table,jangorecki/data.table,jangorecki/data.table,Rdatatable/data.table,Rdatatable/data.table,vlulla/data.table,jangorecki/data.table,vlulla/data.table,Rdatatable/data.table,vlulla/data.table,jangorecki/data.table |
4c8096999b7fc703bdcb35744ad73f112a5e3fe1 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install:
- pip install invoke
- pip install https://github.com/django/django/archive/${DJANGO}.zip#egg=django
- pip install coveralls
- pip install -e .
script:
- invoke travis
env:
- DJANGO=1.5.1
- DJANGO=master
after_success: coverall... | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
install:
- pip install invoke
- pip install https://github.com/django/django/archive/${DJANGO}.zip#egg=django
- pip install coveralls
- pip install -e .
script:
- invoke travis
env:
- DJANGO=1.5.1
- DJANGO=stable/1.6.x
after_success: co... | Test on 1.6.x only, not master. | Test on 1.6.x only, not master.
| YAML | bsd-3-clause | rsalmaso/django-localflavor,django/django-localflavor,M157q/django-localflavor,infoxchange/django-localflavor,agustin380/django-localflavor,maisim/django-localflavor,thor/django-localflavor,yakky/django-localflavor,zarelit/django-localflavor,yakky/django-localflavor,jieter/django-localflavor |
c88cc623d2a283840fdfacbf31e36733e43f4af5 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '0.12'
- '4'
- '5'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| language: node_js
sudo: false
node_js:
- '0.12'
- '4'
- '5'
env:
global:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| Install g++ 4.8 so that native compilation works in Node >= 4 | Travis: Install g++ 4.8 so that native compilation works in Node >= 4
| YAML | mit | EE/gitignore-to-glob |
2599c53bf22886d830aba192a7b57ea942c0a1d0 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.3
- 5.5
before_script:
- if [[ $TRAVIS_PHP_VERSION = '5.5' ]]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; else PHPUNIT_FLAGS=""; fi
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
script:
- phpunit -v $PHPUNIT_FLAGS
af... | language: php
sudo: false
php:
- 5.3
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- if [[ $TRAVIS_PHP_VERSION = '5.6' ]]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; else PHPUNIT_FLAGS=""; fi
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
script:
- phpun... | Add later PHP versions to Travis CI build | Add later PHP versions to Travis CI build
| YAML | apache-2.0 | facile-it/paginator-bundle,facile-it/paginator-bundle |
802046908ae2b39c25fa11a056a02fecb0f20a38 | .travis.yml | .travis.yml | language: c
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
matrix:
exclude:
- compiler: clang
env: BUILD_TYPE=Release
before_script:
- sudo apt-get install cmake libglib2.0-dev
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=$BUILD_T... | language: c
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
matrix:
exclude:
- compiler: clang
env: BUILD_TYPE=Release
before_script:
- sudo apt-get install cmake libglib2.0-dev libtiff4-dev
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_... | Install libtiff4-dev to build file camera | Install libtiff4-dev to build file camera
| YAML | lgpl-2.1 | ufo-kit/libuca,miq/libuca,miq/libuca,ufo-kit/libuca,miq/libuca,ufo-kit/libuca |
36580962c4e7238a0a5525fc9c6d952ea03e2f63 | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs"
- "0.12"
- "0.10"
| language: node_js
node_js:
- "5"
- "4"
- "iojs"
- "0.12"
- "0.10"
| Test against Node.js v4 and v5 | Test against Node.js v4 and v5
| YAML | mit | bripkens/connect-history-api-fallback |
be46757be2583dbe81b9bf23fb083b0c94a08128 | .travis.yml | .travis.yml | language: ruby
services:
- docker
addons:
apt:
update: true
env:
- VERSION=2.2.4
install:
- sudo apt install -y curl ca-certificates
- curl -o /tmp/vagrant.deb -L https://releases.hashicorp.com/vagrant/${VERSION}/vagrant_${VERSION}_x86_64.deb
- sudo dpkg -i /tmp/vagrant.deb
script:
- vagrant up
a... | language: ruby
services:
- docker
addons:
apt:
update: true
env:
- VERSION=2.2.4
install:
- sudo apt update -qq
- sudo apt install -y curl ca-certificates
- curl -o /tmp/vagrant.deb -L https://releases.hashicorp.com/vagrant/${VERSION}/vagrant_${VERSION}_x86_64.deb
- sudo dpkg -i /tmp/vagrant.deb
... | Update the repositories before installing packages | Update the repositories before installing packages
| YAML | mit | moritzheiber/laptop-provisioning,moritzheiber/laptop-provisioning |
3e48b33c295a007832b924f1ca19dce15bf51d42 | .swiftlint.yml | .swiftlint.yml | disabled_rules:
- function_body_length
- closing_brace
- statement_position
- force_cast
- force_try
- variable_name_min_length
included:
- Amethyst
line_length: 200
file_length: 500
type_body_length: 400
cyclomatic_complexity: 15
| disabled_rules:
- function_body_length
- closing_brace
- statement_position
- force_cast
- force_try
- variable_name_min_length
included:
- Amethyst
line_length: 200
file_length: 500
type_body_length: 400
cyclomatic_complexity: 15
identifier_name:
excluded:
- id
| Allow `id` as a variable name | Allow `id` as a variable name
| YAML | mit | ianyh/Amethyst,ianyh/Amethyst,ianyh/Amethyst,ianyh/Amethyst,ianyh/Amethyst |
b9edffd8762dfcf1f975fb945e215387e2211083 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode11.2
install:
- brew update
- brew outdated carthage || brew upgrade carthage
- carthage update --platform mac,ios
branches:
only:
- master
script:
- ci/script
xcode_project: ReactiveBeaver.xcodeproj
matrix:
include:
- xcode_scheme: ReactiveBeaverOSX
env:... | language: objective-c
osx_image: xcode11.2
install:
- brew update
- brew outdated carthage || brew upgrade carthage
- carthage update --platform mac
branches:
only:
- master
script:
- ci/script
xcode_project: ReactiveBeaver.xcodeproj
matrix:
include:
- xcode_scheme: ReactiveBeaverOSX
env:
... | Remove iOS pplatform from carthage setup for Travis CI | Remove iOS pplatform from carthage setup for Travis CI
| YAML | mit | skyylex/ReactiveBeaver,skyylex/SKEPParser,skyylex/ReactiveBeaver |
e57ee8be423d47d7303efc8b240c1e4a345128cb | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.5.0
- 2.5.1
- ruby-head
gemfile: "gems.rb"
before_install:
- gem update --system # Due to: https://github.com/travis-ci/travis-ci/issues/8978
before_script:
- "ruby lib/initial_setup.rb ../.travis_setup"
- "psql -c 'create database slice_test;' -U postgres"
- "rails db:... | sudo: false
language: ruby
rvm:
- 2.5.0
- 2.5.1
- ruby-head
gemfile: "gems.rb"
before_script:
- "ruby lib/initial_setup.rb ../.travis_setup"
- "psql -c 'create database slice_test;' -U postgres"
- "rails db:migrate"
matrix:
allow_failures:
- rvm: 2.5.1
- rvm: ruby-head
| Revert attempted fix for Travis-CI | Revert attempted fix for Travis-CI
| YAML | mit | remomueller/slice,remomueller/slice,remomueller/slice |
ca95c3aac8988fa626fc395aa3d840e211139028 | .travis.yml | .travis.yml | sudo: false
language: ruby
install: gem install minitest timecop coveralls
rvm:
- 2.0.0
- 2.1.9
- 2.2.8
- 2.3.5
- 2.4.2
- 2.5.0
script: rake test
| sudo: false
language: ruby
install: gem install minitest timecop coveralls
rvm:
- 2.3.5
- 2.4.2
- 2.5.1
script: rake test
| Drop ruby < 2.3 support | Drop ruby < 2.3 support
in order to create mutable strings with String#+@
| YAML | mit | rathrio/punch,rathrio/punch |
350abab082face86d08c708f2a068ade3fe313cc | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.5
gemfile:
- Gemfile
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| language: ruby
rvm:
- 2.1
gemfile:
- Gemfile
sudo: false
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| Use the new build env on Travis | Use the new build env on Travis
more ram, dedicated cpu cores, awesome network perf, fantastic vm boot times
also use mri 2.1 as this uses the latest 2.1.x | YAML | mit | Eric-Guo/refile,y-yagi/refile,fabn/refile,manfe/refile,acrogenesis-lab/refile,refile/refile,grosser/refile,costis/refile,JasOXIII/refile,monkbroc/refile,darkleaf/refile,darkleaf/refile,Eric-Guo/refile,TimLang/refile,grosser/refile,jabbawookiees/refile,costis/refile,carl/refile,janko-m/refile,fabn/refile,div/refile,supe... |
ef3027a030795b5b0008a8e835b1a915c5480057 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- ruby-head-clang
- jruby-9.0
- jruby-head
- rbx-3.18
matrix:
allow_failures:
- rvm: jruby-9.0
- rvm: jruby-head
- rvm: ruby-head
- rvm: ruby-head-clang
install:
- bundle install --retry=3
b... | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
- ruby-head-clang
- jruby-9.0
- jruby-head
- rbx-3
matrix:
allow_failures:
- rvm: jruby-9.0
- rvm: jruby-head
- rvm: ruby-head
- rvm: ruby-head-clang
- rvm: rbx-3
install:
- bundle insta... | Use latest Rubinius 3 and allow build failures | Use latest Rubinius 3 and allow build failures
| YAML | lgpl-2.1 | mvz/gir_ffi,mvz/gir_ffi,mvz/gir_ffi |
ac73ebc4704666ba727687728dd2ec17da0f7989 | .travis.yml | .travis.yml | sudo: required
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.11.2
language: python
python:
- '3.6'
install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L "https://github.com/docker/compose/releases/download/${DOC... | sudo: required
services:
- docker
env:
- DOCKER_COMPOSE_VERSION=1.11.2
language: python
python:
- '3.6'
install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
- sudo rm /usr/local/bin/docker-compose
- curl -L "https://github.com/docker/compose/releases/download/${DOC... | Switch deployment to develop branch | Switch deployment to develop branch
| YAML | mit | uccser/cs-unplugged,uccser/cs-unplugged,uccser/cs-unplugged,uccser/cs-unplugged |
0734b6cfee33f87aae299f8279e0a82f3553ff09 | .travis.yml | .travis.yml | # http://docs.travis-ci.com
language: node_js
node_js:
- "0.10"
before_install:
- bundle install
| # http://docs.travis-ci.com
language: node_js
node_js:
- "0.12"
before_install:
- bundle install
sudo: false
| Use Travis CI’s container-based infrastructure | Use Travis CI’s container-based infrastructure
| YAML | mit | philwareham/hive-framework,philwareham/hive-framework |
ada6f53c527b3b266e72deadb664f5c3e60aed43 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 1.9.3
# temporarily test on these 2.1.x patch releases to see when the pid file
# cleanup started breaking
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
- jruby-19mode
- rbx
env:
global:
- RESQUE_SCHEDULER_DISABLE_TEST_REDIS_SERVER=1
- JRUBY_OPTS='-Xcext.enabled=true'
matrix:
... | language: ruby
sudo: false
rvm:
- 1.9.3
- 2.1.2
- 2.1.5
- jruby-19mode
- rbx
env:
global:
- RESQUE_SCHEDULER_DISABLE_TEST_REDIS_SERVER=1
- JRUBY_OPTS='-Xcext.enabled=true'
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx
services:
- redis-server
notifications:
email:
recipients:
- daniel.buc... | Reduce ruby version matrix a touch | Reduce ruby version matrix a touch
| YAML | mit | kangkot/resque-scheduler,carsonreinke/resque-scheduler,xldenis/resque-scheduler,xldenis/resque-scheduler,guizmaii/resque-scheduler,guizmaii/resque-scheduler,adaptiv-io/resque-scheduler,mfo/resque-scheduler,resque/resque-scheduler,StitchedCode/resque-scheduler,xldenis/resque-scheduler,kangkot/resque-scheduler,mfo/resque... |
970d0615067436d7fc3531543306df3c4c08f939 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "3.4"
- "3.5"
env:
# - REQ='Django>=1.10,<1.11'
- REQ='Django>=1.11,<2.0'
matrix:
install:
- pip install -q $REQ flake8
- python setup.py install
# command to run tests, e.g. python setup.py test
script: "cd tests && ./manage.py test testapp && cd .. && flake8 ."
| language: python
sudo: false
cache: pip
python:
- "3.4"
- "3.5"
env:
# - REQ='Django>=1.10,<1.11'
- REQ='Django>=1.11,<2.0'
matrix:
install:
- pip install $REQ django-versatileimagefield flake8
- python setup.py install
# command to run tests, e.g. python setup.py test
script: "cd tests && ./manage.py test ... | Add versatileimagefield to Travis cfg | Add versatileimagefield to Travis cfg
| YAML | bsd-3-clause | matthiask/django-cabinet,matthiask/django-cabinet,matthiask/django-cabinet |
4b7d518f05f782d9e2d9c5589b9929eb0b16094a | .travis.yml | .travis.yml | sudo: false
language: go
go:
- release
- tip
env:
global:
- secure: "aq8rblr2+Ga10psfUJAKBCVtSIv/Uca7Ga1eTzRnRuGPsCHhC691jPmNAd8P7UhmhZ6ZHNN6yC+yYsS+lzCm62gisyIMA3+NmOM4Y2qf3wTSVEvnjAdVonge8aB3zWk5XimhdwiXWoBtW4+cVrNYWv+uNw7gNzGhND0pWFFU//c="
before_install:
- if ! go get code.google.com/p/go.tools/cmd/cove... | sudo: false
language: go
go:
- release
- tip
- 1.3.3
env:
global:
- secure: "aq8rblr2+Ga10psfUJAKBCVtSIv/Uca7Ga1eTzRnRuGPsCHhC691jPmNAd8P7UhmhZ6ZHNN6yC+yYsS+lzCm62gisyIMA3+NmOM4Y2qf3wTSVEvnjAdVonge8aB3zWk5XimhdwiXWoBtW4+cVrNYWv+uNw7gNzGhND0pWFFU//c="
before_install:
- if ! go get code.google.com/p/go.tools... | Add explicit go version 1.3.3 to build matrix | Add explicit go version 1.3.3 to build matrix
The build matrix represents the versions of go we are officially supporting. | YAML | bsd-3-clause | gonum/gonum,gonum/gonum,gonum/gonum |
5e0448332e0b914b42b448ae18571e01b9554010 | .travis.yml | .travis.yml | language: go
go:
- 1.5.3
- 1.6
- tip
before_script:
- go vet ./...
script:
- go test -v ./...
| language: go
go:
- 1.5.3
- 1.6
- release
- tip
before_script:
- go vet ./...
script:
- go test -v ./...
| Add release to the tested go branches | Add release to the tested go branches
| YAML | mit | NDari/gocrunch,NDari/numgo |
c2bcdf08f36d394f1b98df5ded10bdeb32e81d5c | .travis.yml | .travis.yml | language: rust
rust:
- nightly
- beta
- stable
matrix:
include:
- rust: 1.15.0
script:
- cargo build
| language: rust
rust:
- nightly
- beta
- stable
matrix:
include:
- rust: 1.15.0
script:
- cargo build
- cargo build --features small
| Test "small" feature in CI | Test "small" feature in CI
| YAML | apache-2.0 | dtolnay/ryu |
06d8408172e37a2e951f7d6251c04ea95c721eab | .travis.yml | .travis.yml | language: objective-c
cache: cocoapods
#before_install:
#- pod repo --silent update
xcode_workspace: Swindler.xcworkspace
xcode_scheme: Swindler
script: xcodebuild -workspace Swindler.xcworkspace -scheme Swindler build test
| language: objective-c
cache: cocoapods
install: pod install || pod install --repo-update
xcode_workspace: Swindler.xcworkspace
xcode_scheme: Swindler
script: xcodebuild -workspace Swindler.xcworkspace -scheme Swindler build test
| Update repo if initial pod install fails | Travis: Update repo if initial pod install fails
| YAML | mit | tmandry/Swindler,tmandry/Swindler,tmandry/Swindler |
7db1cecfe1a35d18f92354fe1a29fbcbe15d4198 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 5.4
install:
- composer install
before_script:
- mysql -u root -e 'create database lhm_php_test;'
script:
- vendor/bin/phpunit
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 5.4
install:
- composer install
before_script:
- mysql -u root -e 'create database lhm_php_test;'
script:
- vendor/bin/phpunit
sudo: false
| Allow Travis builds to execute on the container infrastructure. | Allow Travis builds to execute on the container infrastructure. | YAML | bsd-3-clause | masom/lhm_php |
c6ba6abf227ac2f31c4948e91d27c031a05164e1 | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- 2.0.0
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sudo apt-get install wkhtmltopdf"
| rvm:
- 1.9.2
- 1.9.3
- 2.0
- 2.1
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sudo apt-get install wkhtmltopdf"
| Test on 2.1 as well | Test on 2.1 as well
| YAML | mit | pdfkit/pdfkit,cdwort/pdfkit,christhekeele/pdfkit,christhekeele/pdfkit,dimko/pdfkit,ContinuityControl/pdfkit,asomanescu/pdfkit,asomanescu/pdfkit |
201b76bf5772428c574a3d6f81ce8fc935c8f92c | .travis.yml | .travis.yml | language: php
cache:
directories:
- $HOME/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 5.5
- php: 5.6
- php: 7.0
allow_failures:
- php: 7.0
install:
- composer install
before_script:
- sudo redis-server /etc/redis/redis.conf --port 6379
script:
- phpunit -c app
| language: php
cache:
directories:
- $HOME/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 5.5
- php: 5.6
- php: 7.0
allow_failures:
- php: 7.0
services:
- redis-server
- elasticsearch
install:
- composer install
script:
- phpunit -c app
| Update Travis CI config file | Update Travis CI config file
| YAML | mit | alfonsomga/symfony.demo.on.roids,alfonsomga/symfony-demo-on-roids,alfonsomga/symfony-demo-on-roids,alfonsomga/symfony-demo-on-roids,alfonsomga/symfony-demo-on-roids,alfonsomga/symfony-demo-on-roids,alfonsomga/symfony.demo.on.roids,alfonsomga/symfony.demo.on.roids,alfonsomga/symfony.demo.on.roids,alfonsomga/symfony.demo... |
edfb0df63be6bb450d26a6d35b78a69fce1ab98c | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: ruby
before_install: gem install bundler -v 1.14.6
rvm:
- "2.6.1"
- "2.5.3"
- "2.4.4"
- "2.3.8"
- "2.2.9"
- "2.1.10"
- "2.0.0"
- "1.9.3"
- "ruby-head"
- "jruby"
- "jruby-19mode"
- "jruby-head"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-hea... | dist: trusty
sudo: false
language: ruby
before_install:
- gem install bundler -v "< 2" # Bundler 2.x does not work with older Rubies
rvm:
- "2.6.1"
- "2.5.3"
- "2.4.4"
- "2.3.8"
- "2.2.9"
- "2.1.10"
- "2.0.0"
- "1.9.3"
- "ruby-head"
- "jruby"
- "jruby-19mode"
- "jruby-head"
matrix:
allow_... | Use the latest 1.x version of Bundler in Travis CI | Use the latest 1.x version of Bundler in Travis CI
Bundler 2.x does not work with some of Rubies this gem is tested
against.
| YAML | mit | skalee/well_read_faker,skalee/well_read_faker |
58ef52d2642ec53f4daec5310be31b66680bedc1 | .travis.yml | .travis.yml | language: go
go:
- 1.7
- 1.8
before_install:
# https://github.com/travis-ci/travis-ci/issues/1053
- sudo sh -c "echo 'JVM_OPTS=\"\${JVM_OPTS} -Djava.net.preferIPv4Stack=false\"' >> /usr/local/cassandra/conf/cassandra-env.sh"
services:
- cassandra
before_script:
# peg
- go get -u github.com/pointlander/... | language: go
go:
- 1.7
- 1.8
sudo: required
services:
- cassandra
before_script:
# peg
- go get -u github.com/pointlander/peg
- go get -u golang.org/x/tools/cmd/goimports
- cqlsh -f metric_metadata/cassandra/schema/schema_test.cql
script:
- ./testing_support/script/verify-build
- go test -v -timeo... | Use recommended Travis-CI config for Cassandra | Use recommended Travis-CI config for Cassandra
As suggested in the Travis-CI documentation.
| YAML | apache-2.0 | square/metrics,square/metrics,square/metrics,square/metrics,square/metrics |
ef6c93c4a88ac8f42fa9e71081855e66ca38f5d1 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
script: ./gradlew :plugin:jpi
after_success: if [ "$TRAVIS_SECURE_ENV_VARS" -eq "true" ]; then ./gradlew :pl:bintrayUpload -PbinTrayKey=$BINTRAY_KEY -Pversion=0.1.$TRAVIS_BUILD_NUMBER -x jar -x javadoc -x sourcesJar -x publishMavenJpiPublicationToMavenLocal; fi
env:
global:
secure... | language: java
jdk:
- oraclejdk7
script: ./gradlew :plugin:jpi
after_success: if [ $TRAVIS_SECURE_ENV_VARS ]; then ./gradlew :pl:bintrayUpload -PbinTrayKey=$BINTRAY_KEY -Pversion=0.1.$TRAVIS_BUILD_NUMBER -x jar -x javadoc -x sourcesJar -x publishMavenJpiPublicationToMavenLocal; fi
env:
global:
secure: blEUjsU8dIo... | Fix failed build due to Travis syntax error | Fix failed build due to Travis syntax error
| YAML | apache-2.0 | rkovalenko/deployment-sphere-plugin,webdizz/deployment-sphere-plugin,jenkinsci/deployment-sphere-plugin,jenkinsci/deployment-sphere-plugin,webdizz/deployment-sphere-plugin,webdizz/deployment-sphere-plugin,jenkinsci/deployment-sphere-plugin,rkovalenko/deployment-sphere-plugin |
2073137fa6f09f5379e2841b7310a656fb75dd2c | .travis.yml | .travis.yml | sudo: false
language: python
python:
- 2.7
- 3.4
- 3.5
addons:
apt:
sources:
# Debian sid currently holds OpenSSL 1.0.2
- debian-sid
packages:
- libssl-dev
cache:
pip: true
directories:
- env
install:
- pip install coveralls
before_script:
- openssl version -a
- pyth... | sudo: false
language: python
python:
- 2.7
- 3.4
- 3.5
addons:
apt:
sources:
# Debian sid currently holds OpenSSL 1.0.2
- debian-sid
packages:
- libssl-dev
cache:
pip: true
directories:
- env
install:
- pip install coveralls
before_script:
- openssl version -a
- pyth... | Print stdlib SSL ALPN/NPN capabilities | Print stdlib SSL ALPN/NPN capabilities
| YAML | mit | joshfriend/apns3,joshfriend/apns3 |
dbca15aaa6dc39df77553837d4e8988d4c6245a7 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
script: vendor/bin/phpunit
| language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
script: vendor/bin/phpunit
| Remove nightly and add 7.2 | Remove nightly and add 7.2
| YAML | mit | yadakhov/insert-on-duplicate-key |
408b7f46c013a7b28770310bf900c9bf23c24dd5 | .travis.yml | .travis.yml | language: ruby
before_install:
- git clone https://github.com/rejeep/evm.git $HOME/.evm
- export PATH=$HOME/.evm/bin:$PATH
- evm config path /tmp
- evm install $EVM_EMACS --use --skip
env:
- EVM_EMACS=emacs-23.4-travis
- EVM_EMACS=emacs-24.1-travis
- EVM_EMACS=emacs-24.2-travis
- EVM_EMACS=emacs-24.3... | language: ruby
before_install:
- git clone https://github.com/rejeep/evm.git $HOME/.evm
- export PATH=$HOME/.evm/bin:$PATH
- evm config path /tmp
- evm install $EVM_EMACS --use --skip
env:
- EVM_EMACS=emacs-23.4-travis
- EVM_EMACS=emacs-24.1-travis
- EVM_EMACS=emacs-24.2-travis
- EVM_EMACS=emacs-24.3... | Allow emacs 24.2 build to fail: there are SSL issues there | Allow emacs 24.2 build to fail: there are SSL issues there
The spurious "closed" line at the end of files fetched over SSL by
url-http breaks all sorts of things, but isn't the fault of this config
in any way I can easily determine.
| YAML | bsd-2-clause | cjqw/emacs.d,Enzo-Liu/emacs.d,me020523/emacs.d,jhpx/emacs.d,purcell/emacs.d,blueabysm/emacs.d,lust4life/emacs.d,krzysz00/emacs.d,zenith-john/emacs.d,emuio/emacs.d,gsmlg/emacs.d,kongfy/emacs.d,braveoyster/emacs.d,blueseason/emacs.d,qianwan/emacs.d,svenyurgensson/emacs.d,benkha/emacs.d,wegatron/emacs.d,kindoblue/emacs.d,... |
85963d94f525d5a943bd05b33f253c348f97570a | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9.1
branches:
only:
- master
script: script/cibuild "$TRAVIS_XCODE_WORKSPACE" "$TRAVIS_XCODE_SCHEME" "$XCODE_ACTION"
xcode_workspace: Tentacle.xcworkspace
matrix:
include:
- xcode_scheme: Tentacle-OSX
env: XCODE_ACTION="build-for-testing test-without-building"
... | language: objective-c
osx_image: xcode9.3
branches:
only:
- master
script: script/cibuild "$TRAVIS_XCODE_WORKSPACE" "$TRAVIS_XCODE_SCHEME" "$XCODE_ACTION"
xcode_workspace: Tentacle.xcworkspace
matrix:
include:
- xcode_scheme: Tentacle-OSX
env: XCODE_ACTION="build-for-testing test-without-building"
... | Use Xcode 9.3 image on Travis | Use Xcode 9.3 image on Travis
| YAML | mit | mdiep/Tentacle,mdiep/Tentacle |
0d77884b15368ba8e9f16dd3d1bc5e85dcd5fa5b | .travis.yml | .travis.yml | language: python
branches:
only:
- master
- /^\d\.\d+$/
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
install:
- pip install -U pip tox codecov setuptools
s... | language: python
branches:
only:
- master
- /^\d\.\d+$/
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TOXENV=py36
install:
- pip install -U pip tox codecov
script: tox
... | Revert "Try to update setuptools to fix py34 build" | Revert "Try to update setuptools to fix py34 build"
This reverts commit 723162cb6521b954140bef01c102a7fe25a441a7.
| YAML | mit | TeamHG-Memex/scrapy-cdr |
e2a30f6196fb980655fdbf0de8f1beefa1f4d412 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
| Remove older versions of NodeJS | Remove older versions of NodeJS
| YAML | mit | davazp/lineflux |
be78bf52eb2afc3682e37ebe34d9e9bf32c4bf6b | .travis.yml | .travis.yml | dist: xenial
sudo: required
# Not technically required but suppresses 'Ruby' in Job status message.
language: java
os:
- linux
- osx
before_install:
- |
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
OS=darwin
else
sysctl kernel.unprivileged_userns_clone=1
OS=linux
fi
BAZEL=$(cat ".... | dist: xenial
sudo: required
language: python3
os:
- linux
- osx
before_install:
- |
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
OS=darwin
else
sysctl kernel.unprivileged_userns_clone=1
OS=linux
fi
BAZELISK_VERSION=v1.5.0
if [ ! -d "${HOME}/bin" ]; then
mkdir "${HOME}/b... | Use Bazelisk to select and download Bazel version | Use Bazelisk to select and download Bazel version
Closes https://github.com/google/j2cl/pull/69
PiperOrigin-RevId: 318006301
| YAML | apache-2.0 | google/elemental2,google/elemental2 |
50b40f28b86d48f371aed215d666312ad2f2cf74 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
before_install:
- gem install bundler
- gem update bundler
- gem install ruby_dep
- gem update ruby_dep
rvm:
- 2.2.4
- jruby-head
- rbx-2
- jruby-9.0.5.0
matrix:
allow_failures:
- rvm: jruby-head
- rvm: rbx-2
exclude:
- rvm: jruby-head
... | language: ruby
bundler_args: --without development
before_install:
- gem install bundler
- gem update bundler
- gem install ruby_dep
- gem update ruby_dep
rvm:
- 2.2.5
- jruby-head
- rbx-2
- jruby-9.0.5.0
matrix:
allow_failures:
- rvm: jruby-head
- rvm: rbx-2
exclude:
- rvm: jruby-head
... | Update matrix to use Ruby 2.2.5 | Update matrix to use Ruby 2.2.5 | YAML | mit | guard/listen |
7337a48d7b4433fce8983505fd1939411c682d9b | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
before_script:
- npm install -g gulp
- npm install -g bower
- npm install -g codeclimate-test-reporter
- npm install codacy-coverage
- bower install
script: gulp
after_script:
- cat ./.tmp/js/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js
- codecli... | language: node_js
node_js:
- "0.12"
- "0.11"
before_script:
- npm install -g gulp
- npm install -g bower
- npm install -g codeclimate-test-reporter
- npm install codacy-coverage
- bower install
script: gulp
after_script:
- codecov < .tmp/js/lcov.info
- codeclimate-test-reporter < ./.tmp/js/lcov.info
... | Use input streams instead of pipes after_script | Use input streams instead of pipes after_script
| YAML | mit | dmgress/cloudgrapher,dmgress/cloudgrapher |
43643eea4800485a3e69d51068bc6fa724dde023 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5.0b3"
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install coveralls
# command to run tests
script:
- python -m coverage run -m unittest discover
after_success:
- coverall... | language: python
sudo: false
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install coveralls
# command to run tests
script:
- python -m coverage run -m unittest discover
after_success:
- coveralls
| Use 3.5 instead of the beta one | Use 3.5 instead of the beta one | YAML | mit | pfouque/deezer-python,browniebroke/deezer-python,browniebroke/deezer-python,browniebroke/deezer-python |
7656fe445707f06450bd6c6d4f820736afe98e2e | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
services: mysql
env:
- DJANGO="django==1.8.2" DB="mysql"
- DJANGO="django==1.7.8" DB="mysql"
- DJANGO="django==1.6.10" DB="mysql"
install:
- pip install $DJANGO
- pip install celery==3.1.18
- pip install django-celery==3.1.16
- pip install coveral... | language: python
python:
- "2.7"
- "3.3"
- "3.4"
services: mysql
env:
- DJANGO="django==1.8.2" DB="mysql"
- DJANGO="django==1.7.8" DB="mysql"
- DJANGO="django==1.6.10" DB="mysql"
install:
- pip install $DJANGO
- pip install celery==3.1.18
- pip install django-celery==3.1.16
- pip install coveral... | Fix MySQL package for Python 3 on Travis !minor | Fix MySQL package for Python 3 on Travis !minor
| YAML | bsd-2-clause | fellowshipofone/django-celery-transactions,stored/django-celery-transactions |
97157bb0f73370e18312ca2d1e89145463837c27 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
- 2.1.10
- 2.0.0
notifications:
email:
- travisci@dennmart.com
| sudo: false
language: ruby
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
- 2.1.10
- 2.0.0
notifications:
email:
- travisci@dennmart.com
| Test against Ruby 2.4.1 in Travis CI | Test against Ruby 2.4.1 in Travis CI
| YAML | mit | dennmart/wanikani-gem |
1596a5efe806c3c6551f4f1540c0f50fe94975d9 | .travis.yml | .travis.yml | sudo: false
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
matrix:
fast_finish: true
allow_failures:
- rust: nightly
# run builds for all the trains (and more)
rust:
- nightly
- beta
# check ... | sudo: false
language: rust
# necessary for `travis-cargo coveralls --no-sudo`
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
matrix:
fast_finish: true
allow_failures:
- rust: nightly
# run builds for all the trains (and more)
rust:
- nightly
- beta
# check ... | Disable coveralls due to segfault | Disable coveralls due to segfault
| YAML | bsd-3-clause | some-username/radeco-lib,some-username/radeco-lib,radare/radeco-lib,radare/radeco-lib,radare/radeco,radare/radeco,radare/radeco,some-username/radeco-lib,radare/radeco-lib |
3a3999debec626e19fbd5b7634acd976ee489990 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.6
- 0.8
- 0.9
| language: node_js
node_js:
- 0.10
- 0.11
| Test only on node 0.10 and 0.11 | [test] Test only on node 0.10 and 0.11
| YAML | mit | mmalecki/json-stream |
87377220f3f03c2154c4fed467fcab440565dfc5 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements/development.txt
- gem install coveralls-lcov
before_script:
- npm install jshint mocha blanket mocha-lcov-reporter
script:
- coverage run manage.py test --settings=eggtimer.settings.development
- flake8
- NO... | language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements/development.txt
- gem install coveralls-lcov
before_script:
- npm install jshint mocha blanket mocha-lcov-reporter moment
script:
- coverage run manage.py test --settings=eggtimer.settings.development
- flake8
... | Add moment to npm dependencies | Add moment to npm dependencies
| YAML | mit | jessamynsmith/eggtimer-server,jessamynsmith/eggtimer-server,jessamynsmith/eggtimer-server,jessamynsmith/eggtimer-server |
300bb8deeb93885f3cb717a39371841a98bf5f19 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
addons:
code_climate:
repo_token: 97556cc0507864cd70cb0d710a278a9e5748292c38b8b080e730756e3fa458f0
before_script:
- sed -i '/phpdoc/d' composer.json
- composer install
script:
- phpunit --configuration test/phpunit.xml test
- ./vendor/bin/phpcs --ignore=*/vendor/... | language: php
php:
- 5.5
- 5.6
- 7.0
addons:
code_climate:
repo_token: 97556cc0507864cd70cb0d710a278a9e5748292c38b8b080e730756e3fa458f0
before_script:
- sed -i '/phpdoc/d' composer.json
- composer install
script:
- phpunit --configuration test/phpunit.xml test
- ./vendor/bin/phpcs --ignore=*/vendor/... | Extend PSR2 tests to /test. | Extend PSR2 tests to /test.
| YAML | mit | AthensFramework/core,AthensFramework/core,AthensFramework/core,AthensFramework/core |
a618cee013a1a213f505db37137b919c685d4d4e | .travis.yml | .travis.yml | gemfile: Gemfile.travis
language: ruby
rvm:
- 2.1.0
services:
- redis-server
| gemfile: Gemfile.travis
language: ruby
rvm:
- 2.1.0
services:
- redis-server
notifications:
slack: straight-payments:ovM1xPrG9BmKTHGkM0k42gkP
| Add TravisCI - Slack integration | Add TravisCI - Slack integration
| YAML | mit | snitko/straight-server,snitko/straight-server,snitko/straight-server,MyceliumGear/straight-server,ychaim/straight-server,snitko/straight-server |
615bcd2aee20773fc7f1e219a0f348b0f1e5b7a3 | .travis.yml | .travis.yml | language: [ ruby, node_js ]
rvm: [ 2.2.0 ]
node_js: [ 0.12 ]
cache:
bundler: true
directories:
- bower_components
sudo: false
before_script:
- npm install -g bower grunt
- npm install
- grunt uglify
- grunt imagemin
before_install:
- 'echo ''gem: --no-document'' > ~/.gemrc'
script: bundle exec rake... | language: [ ruby, node_js ]
rvm: [ 2.2.0 ]
node_js: [ 0.12 ]
cache:
bundler: true
directories:
- bower_components
sudo: false
before_script:
- npm install -g bower grunt
- npm install
- grunt uglify
- grunt imagemin
before_install:
- 'echo ''gem: --no-document'' > ~/.gemrc'
script: bundle exec rake... | Add slack notifications for builds | Add slack notifications for builds
| YAML | mit | rclanan/rclanan.github.io,rclanan/rclanan.github.io,rclanan/rclanan.github.io |
48e69651083b2240b725b6b62c3d8446c9cde335 | .travis.yml | .travis.yml | # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed un... | # Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed un... | Update Travis config; drop Java 7 builds | Update Travis config; drop Java 7 builds
| YAML | apache-2.0 | revelc/apilyzer-maven-plugin |
1412ac506ea9d85d31eee5f175cff8f614986d14 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
script: bundle exec rspec spec
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode # JRuby in 1.9 mode
script: bundle exec rspec spec
| Remove 1.8 from the Ruby Travis builds | Remove 1.8 from the Ruby Travis builds
| YAML | mit | pctj101/ruby-progressbar,jfelchner/ruby-progressbar,pctj101/ruby-progressbar,jfelchner/ruby-progressbar |
029aab621e1d215af92de4e8271957b0d95a9418 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
before_install:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.10"
before_install:
- npm install -g grunt-cli
| Stop testing node 0.8 in Travis-CI | Stop testing node 0.8 in Travis-CI
- npm refuses to install some dependencies in node 0.8.
| YAML | mit | melonjs/melonJS,TukekeSoft/melonJS,rlugojr/melonJS,melonjs/melonJS,gopalindians/melonJS,srbala/melonJS,srbala/melonJS,gopalindians/melonJS,srbala/melonJS,rlugojr/melonJS,MarkoIvanetic/melonJS,TukekeSoft/melonJS,MarkoIvanetic/melonJS,gopalindians/melonJS,rlugojr/melonJS,TukekeSoft/melonJS |
8d0e307835fc40cf4ce232a2f511e92492262207 | .travis.yml | .travis.yml | os:
- osx
- linux
language: generic
osx_image: xcode7.1
sudo: required
dist: trusty
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./script/travis-install-osx; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./script/travis-install-linux; fi
script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./s... | os:
- osx
- linux
language: generic
osx_image: xcode7.2
sudo: required
dist: trusty
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./script/travis-install-osx; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./script/travis-install-linux; fi
script:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./s... | Put Travis build image back to Xcode 7.2 | Put Travis build image back to Xcode 7.2
| YAML | apache-2.0 | jeffh/Quick,mokagio/Quick,phatblat/Quick,dgdosen/Quick,DanielAsher/Quick,dgdosen/Quick,ikesyo/Quick,dgdosen/Quick,Quick/Quick,Quick/Quick,jeffh/Quick,mokagio/Quick,jeffh/Quick,marciok/Quick,marciok/Quick,phatblat/Quick,marciok/Quick,Quick/Quick,phatblat/Quick,ikesyo/Quick,ashfurrow/Quick,Quick/Quick,ikesyo/Quick,ashfur... |
7efa0153b0371cbf0b456bd6660161a2aeab74a2 | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- 1.10.0
- 1.11.0
- stable
- beta
- nightly
before_script:
- pip install 'travis-cargo<0.2' --user
- export PATH=$HOME/.local/bin:$PATH
script:
- (cd serde && travis-cargo build)
- (cd serde && travis-cargo --skip nightly test)
- (cd serde && travis-cargo --only nightly test -- --featur... | sudo: false
language: rust
rust:
- 1.11.0
- 1.12.0
- stable
- beta
- nightly
before_script:
- pip install 'travis-cargo<0.2' --user
- export PATH=$HOME/.local/bin:$PATH
script:
- (cd serde && travis-cargo build)
- (cd serde && travis-cargo --skip nightly test)
- (cd serde && travis-cargo --only nightly test -- --featur... | Drop testing on rust 1.10 | Drop testing on rust 1.10
| YAML | apache-2.0 | serde-rs/serde,erickt/serde,oli-obk/rust-serde |
04b9315ab7a61886b4e51dba37a9c7cc14885fae | .travis.yml | .travis.yml | language: go
matrix:
include:
- go: 1.4.3
env: GOVET=false
- go: 1.5.4
env: GOVET=true
- go: 1.6.4
env: GOVET=true
- go: 1.7.6
env: GOVET=true
- go: 1.8.5
env: GOVET=true
- go: 1.9.2
env: GOVET=true
install:
- # Do nothing.
script:
- go get -t -v ./... github.com/mattn/gover... | language: go
matrix:
include:
- go: 1.6.4
- go: 1.7.6
- go: 1.8.5
- go: 1.9.2
install:
- # Do nothing.
script:
- go get -t -v ./... github.com/mattn/goveralls
- go test -v -short -race ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go vet ./...
after_success:
- for dir in . ./twotier; do go tes... | Remove support for Go 1.4 and 1.5. | Remove support for Go 1.4 and 1.5.
| YAML | apache-2.0 | die-net/lrucache |
906e30941fdf63d2acd38c1a59d27d7b3cd789e0 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 6
- 8
branches:
only:
- master
- /^greenkeeper/.*$/
cache:
yarn: true
directories:
- node_modules
before_install:
- yarn global add greenkeeper-lockfile@1
before_script:
- greenkeeper-lockfile-update
after_script:
- greenkeeper-lockfile-upload
after_s... | sudo: false
language: node_js
node_js:
- 8
branches:
only:
- master
- /^greenkeeper/.*$/
cache:
yarn: true
directories:
- node_modules
before_install:
- yarn global add greenkeeper-lockfile@1
before_script:
- greenkeeper-lockfile-update
after_script:
- greenkeeper-lockfile-upload
after_success... | Drop node 6 support from tests | feat(tools): Drop node 6 support from tests
| YAML | mit | ctavan/jupp |
d07cd1ce275a39c188e823231b8d2dfbef4fc6ec | .travis.yml | .travis.yml | language: java
sudo: required
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2/repository
| language: java
sudo: required
jdk:
- oraclejdk8
- oraclejdk9
cache:
directories:
- $HOME/.m2/repository
| Add Travis config for Java 9 | Add Travis config for Java 9
| YAML | apache-2.0 | airlift/parameternames |
2d68b02bca63b02c02324e06f5d3db2242c410e0 | .travis.yml | .travis.yml | language: python
# Replace "python" with java if appropriate
python:
- "2.7"
sudo: required
services:
- docker
notifications:
# email:
# recipients:
# - username@email.dom
# on_success: never # default: change
# on_failure: always # default: always
env:
global:
# Please see https://docs.tra... | language: python
# Replace "python" with java if appropriate
python:
- "2.7"
sudo: required
services:
- docker
notifications:
# email:
# recipients:
# - username@email.dom
# on_success: never # default: change
# on_failure: always # default: always
env:
global:
# Please see https://docs.tra... | Add basic init and validate steps | Add basic init and validate steps
| YAML | mit | kbase/kb_sdk,kbase/kb_sdk,kbase/kb_sdk,kbase/kb_sdk,kbaseIncubator/kb_sdk,kbase/kb_sdk,kbaseIncubator/kb_sdk,kbaseIncubator/kb_sdk,kbaseIncubator/kb_sdk,kbase/kb_sdk,kbaseIncubator/kb_sdk,kbase/kb_sdk |
088f47bf014cff29813502788bbab265287da29b | .travis.yml | .travis.yml | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
branches:
... | language: csharp
sudo: false
dist: trusty
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
osx_image: xcode8.2
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == ... | Update Travis to macOS Sierra | Update Travis to macOS Sierra
[skip appveyor]
| YAML | apache-2.0 | aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore,aspnet/AspNetCore |
802b117a1e742f0e526d7ba27f6159a00441a3de | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.2
- 2.2.0
- 2.3.0
before_install:
- gem install bundler
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rspec spec
gemfile:
- gemfiles/activesupport_3.gemfile
- gemfiles/activesupport_4.gemfileset
| language: ruby
rvm:
- 2.0.0
- 2.1.2
- 2.2.0
- 2.3.0
before_install:
- 'echo ''gem: --no-ri --no-rdoc'' > ~/.gemrc'
- gem install bundler bundle_cache
- bundle_cache_install
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rspec spec
gemfile:
- gemfi... | Tweak bundler setup to make Travis happy | Tweak bundler setup to make Travis happy
| YAML | mit | adomokos/light-service,adomokos/light-service |
65a9131d09561d1a11d8f441d4c7b724a898ca7f | .travis.yml | .travis.yml | os: linux
language: generic
dist: bionic
jobs:
include:
- name: "Python 3.6"
before_install:
- pyenv global 3.6.9
- name: "Python 3.7"
before_install:
- pyenv global 3.7.5
- name: "Python 3.8"
before_install:
- pyenv global 3.8.0
cache:
directories:
- $HOME/... | os: linux
language: generic
dist: bionic
jobs:
include:
- name: "Python 3.6"
before_install:
- pyenv global 3.6.10
- name: "Python 3.7"
before_install:
- pyenv global 3.7.6
- name: "Python 3.8"
before_install:
- pyenv global 3.8.2
cache:
directories:
- $HOME... | Update Python versions for Travis | Update Python versions for Travis
https://docs.travis-ci.com/user/reference/bionic/#python-support
| YAML | bsd-2-clause | cdubz/babybuddy,cdubz/babybuddy,cdubz/babybuddy |
e172e3cb2637e7066f68d4221aad526b23da2784 | .travis.yml | .travis.yml | language: go
go:
- 1.9
os:
- linux
- osx
install:
- echo "skipping travis default"
script:
- make test-all
| language: go
go:
- 1.9.x
os:
- linux
- osx
install:
- echo "skipping travis default"
script:
- make test-all
| Use latest go 1.9.x in TravisCI | Use latest go 1.9.x in TravisCI
See also http://astj.hatenablog.com/entry/2017/11/02/111407
| YAML | mit | masutaka/github-nippou |
8d39167ca64c9f6a6c8eac874637079a3d009a65 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.4
- 0.6
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| language: node_js
node_js:
- 0.4
- 0.6
- 0.7
before_install: "npm install -g bob"
script: "bob clean lint test coverage"
| Add CI w/ node v0.7.x | Add CI w/ node v0.7.x
| YAML | mit | cliffano/bob |
8b0af561ef4f25ac1578fde13efdbaf3858773bf | .travis.yml | .travis.yml | language: node_js
node_js:
- "10"
- "12"
- "node"
script: "npm run-script test:travis"
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
| language: node_js
node_js:
- "10"
- "12"
- "14"
- "node"
script: "npm run-script test:travis"
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
| Add Node 14 to testing matrix | Add Node 14 to testing matrix
| YAML | mit | andreogle/eslint-teamcity,andreogle/eslint-teamcity |
1423fc06d74f59a078274e452707c423e990c169 | .travis.yml | .travis.yml | sudo: required
dist: trusty
# install the pre-release chef-dk.
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=def... | sudo: required
dist: trusty
# install the pre-release chef-dk.
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=def... | Simplify Travis config and fix ChefDK 2.0 failures | Simplify Travis config and fix ChefDK 2.0 failures
| YAML | apache-2.0 | opscode-cookbooks/dynect,chef-cookbooks/dynect |
5ba01829124d73b980e8b3e001b65c6e460909dd | .travis.yml | .travis.yml | language: php
stages:
- test
- name: deploy
if: branch = master
php:
- 7.1
- 7.2
- 7.3
sudo: false
addons:
apt:
packages:
- ca-certificates
cache:
directories:
- $HOME/.composer/cache
install:
- composer global require phpstan/phpstan
- composer install
before_script:
- expo... | language: php
stages:
- test
- name: deploy
if: branch = master
php:
- 7.1
- 7.2
- 7.3
- 7.4
sudo: false
addons:
apt:
packages:
- ca-certificates
cache:
directories:
- $HOME/.composer/cache
install:
- composer global require phpstan/phpstan
- composer install
before_script:
... | Add PHP 7.4 to Travis | Add PHP 7.4 to Travis | YAML | mit | baethon/phln,baethon/phln,baethon/phln |
65148f2508bb7b55e2d1053570a4917efae2c47a | .travis.yml | .travis.yml | # This file is part of the Kreta package.
#
# (c) Beñat Espiña <benatespina@gmail.com>
# (c) Gorka Laucirica <gorka.lauzirika@gmail.com>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
addons:
hosts:
- kreta.test
language: php
... | # This file is part of the Kreta package.
#
# (c) Beñat Espiña <benatespina@gmail.com>
# (c) Gorka Laucirica <gorka.lauzirika@gmail.com>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
addons:
hosts:
- kreta.test
language: php
... | Replace composer update command with composer install | Replace composer update command with composer install
| YAML | mit | kreta/kreta,kreta-io/kreta,kreta-io/kreta,kreta-io/kreta,kreta/kreta,kreta-io/kreta,kreta/kreta,kreta/kreta |
f6f309ddcdac214ca935f6a2958fd9363e14ae64 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
notifications:
email: false
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
before_install:
- gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true
- gem install bundler -v '< 2'
notifications:
email: false
| Use Bundler 1.x on Travis CI | Use Bundler 1.x on Travis CI
It is required by the gem, at least for the time being.
| YAML | mit | bigcartel/dugway,bigcartel/dugway,bigcartel/dugway |
33aed1b84a0405ed2a8316a8828e6c545ae5439a | .travis.yml | .travis.yml |
language: cpp
compiler:
- clang
- gcc
script: mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=${BUILD_TYPE} && make && cd build/tests && { [[ ${BUILD_TYPE} != "Debug" ]] || ctest --output-on-failure -j4; }
branches:
only:
- master
env:
- BUILD_TYPE=Release CXXFLAGS=-Werror
- BUILD_TYPE=Debug ... |
language: cpp
compiler:
- clang
- gcc
# These install GCC 4.8 and set that as the GCC version to use.
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -qq gcc-4.8 g++-4.8
- sudo update-alternatives --install /usr/bin/g++ g... | Change Travis CI config to use GCC 4.8. | Change Travis CI config to use GCC 4.8.
| YAML | apache-2.0 | d/fruit,google/fruit,d/fruit,d/fruit,google/fruit,google/fruit |
4affb339ecf44980094a10ea3c1ceb4d755a461e | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4
- 2.5
- 2.6
before_install:
- gem update --system
- gem install bundler
deploy:
provider: rubygems
api_key:
secure: h4iDtFsWqBJQgkQ9kjCba5cDvdtzW56c40cEU1r8kUY0316Akip5ujHO0s/n3QPJcaVuv7nSIU/4Dy8Xh3YvoCuQE/FesZUpm9gmeCJdIfGIJHHPaqLG5ni2f5x+wg4fOdDVdOjHK7yxi3nOyRimluLzInsn2/zwKM... | language: ruby
rvm:
- 2.5
- 2.6
- 2.7
before_install:
- gem update --system
- gem install bundler
deploy:
provider: rubygems
api_key:
secure: h4iDtFsWqBJQgkQ9kjCba5cDvdtzW56c40cEU1r8kUY0316Akip5ujHO0s/n3QPJcaVuv7nSIU/4Dy8Xh3YvoCuQE/FesZUpm9gmeCJdIfGIJHHPaqLG5ni2f5x+wg4fOdDVdOjHK7yxi3nOyRimluLzInsn2/zwKM... | Drop Ruby 2.4 due to EOL | Drop Ruby 2.4 due to EOL | YAML | apache-2.0 | jabbrwcky/prawn-qrcode |
4396cba83136357bb0eca57dff21356ba5f106e1 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '2.5'
- '0.12'
- '0.10'
services:
- redis-server
- cassandra
addons:
postgresql: '9.3'
notifications:
hipchat:
rooms:
secure: cwunRMkBq13vx1AOgbyqVzgRyWoFIGcH4+kKcEtWL754EZd3T/qC4bpa7V2BGibD/YhY0d4+mB9kbMm9SQoJX7E5BGGRsEhw1OcBdCkHiInbdES5CCt4N2QCQFOmdd2Vt/NlSLXmYNX... | language: node_js
sudo: false
node_js:
- '5.3.0'
- '4.2.4'
services:
- redis-server
- cassandra
addons:
postgresql: '9.3'
notifications:
hipchat:
rooms:
secure: cwunRMkBq13vx1AOgbyqVzgRyWoFIGcH4+kKcEtWL754EZd3T/qC4bpa7V2BGibD/YhY0d4+mB9kbMm9SQoJX7E5BGGRsEhw1OcBdCkHiInbdES5CCt4N2QCQFOmdd2Vt/NlSLXmYNXIJa55S... | Update node versions to stable and LTS | Update node versions to stable and LTS | YAML | mit | tes/seguir,cliftonc/seguir |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.