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 |
|---|---|---|---|---|---|---|---|---|---|
93dac7f77b4b84966d4faf6db1aa3d70c904b4dc | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.5.0
script:
- bundle exec rake
- bundle exec rake web:generate
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash
website/deploy.sh
env:
global:
secure: DInIDj4kbZojS7oTomH5JpuJ7/czBXiYsrFygVz/K/40M+fjVbEzfd03cpPnfUx2vh1vjU/6p5/FpxNEr/ugnv3C+... | language: ruby
rvm:
- 2.5.1
script:
- bundle exec rake
- bundle exec rake web:generate
after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash
website/deploy.sh
env:
global:
secure: DInIDj4kbZojS7oTomH5JpuJ7/czBXiYsrFygVz/K/40M+fjVbEzfd03cpPnfUx2vh1vjU/6p5/FpxNEr/ugnv3C+... | Use the right Ruby version in Travis | Use the right Ruby version in Travis
| YAML | mit | nerab/dropcaster,nerab/dropcaster,nerab/dropcaster |
9fd744ba3c73745ce8b82db41746a63ff4f4d69a | .travis.yml | .travis.yml | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- $HOME/protobuf
php:
- 5.6
- 7.0
- 7.1
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
env:
- PROTOBUF_VERSION=3.0.0
before_install:
- bash .travis/install.sh
install:
- ... | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- $HOME/protobuf
php:
- 5.6
- 7.0
- 7.1
- hhvm
- nightly
matrix:
allow_failures:
- php: nightly
env:
- PROTOBUF_VERSION=3.0.0
before_install:
- bash .travis/install.sh
install:
- ... | Switch to regular composer install | Switch to regular composer install
| YAML | mit | partikus/php-protobuf-encoder,partikus/php-protobuf-encoder |
95bbc1a0d47f17f319888995bcc545bb8bab4fb9 | .travis.yml | .travis.yml | sudo: true
dist: trusty
cache: false
env:
- URL=https://developer.salesforce.com/media/salesforce-cli/sfdx-linux-amd64.tar.xz
before_install:
- openssl aes-256-cbc -K $encrypted_bc21448d0b37_key -iv $encrypted_bc21448d0b37_iv
-in assets/server.key.enc -out assets/server.key -d
- export SFDX_AUTOUPDATE_DISABLE=true
- ... | sudo: true
dist: trusty
cache: false
env:
- URL=https://developer.salesforce.com/media/salesforce-cli/sfdx-linux-amd64.tar.xz
before_install:
- openssl aes-256-cbc -K $encrypted_bc21448d0b37_key -iv $encrypted_bc21448d0b37_iv
-in assets/server.key.enc -out assets/server.key -d
- export SFDX_AUTOUPDATE_DISABLE=true
- ... | Fix Travis CI/SFDX - One more time, with feeling | Fix Travis CI/SFDX - One more time, with feeling
| YAML | mit | madmax983/lightning-redux |
4a2fe5c7d8a88385f91d794182fb67bbb5019c64 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "3.5"
virtualenv:
system_site_packages: false
install:
- export CONDA=$HOME/miniconda
- export PATH="$CONDA/bin:$PATH"
# install conda, but only if it doesn't already exist
- command -v conda > /dev/null || {
wget http://repo.continuum.io/miniconda/Miniconda3-l... | language: python
sudo: false
python:
- "3.5"
virtualenv:
system_site_packages: false
install:
- export CONDA=$HOME/miniconda
- export PATH="$CONDA/bin:$PATH"
# install conda, but only if it doesn't already exist
- command -v conda > /dev/null || {
wget http://repo.continuum.io/miniconda/Miniconda3-l... | Disable JIT for coverage testing | Disable JIT for coverage testing
| YAML | bsd-3-clause | jni/skan |
065ed3a0c24993549e7631f3b0a8be72eccdea80 | .travis.yml | .travis.yml | branches:
only:
- master
- peewee-3.5
language: python
python:
- "3.4"
- "3.5"
- "3.6"
# TODO: aiopg is not compatible now with python 3.7 (syntax error)
# Uncomment line bellow when issue fixed: https://github.com/aio-libs/aiopg/issues/436
# - "nightly" # currently points to 3.7-dev
addons:
pos... | branches:
only:
- master
- peewee-3.5
language: python
python:
- "3.5"
- "3.6"
# TODO: aiopg is not compatible now with python 3.7 (syntax error)
# Uncomment line bellow when issue fixed: https://github.com/aio-libs/aiopg/issues/436
# - "nightly" # currently points to 3.7-dev
addons:
postgresql: "... | Drop Travis CI tests for Python 3.4 | Drop Travis CI tests for Python 3.4
| YAML | mit | 05bit/peewee-async |
46b35fdfbadd3695db52128fb7c4f519cf977267 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
install:
- pip install pytest coveralls pytest-cov
- python setup.py develop
script:
py.test --cov skosprovider --cov-report term-missing tests
after_success:
coveralls
| sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
install:
- pip install pytest coveralls pytest-cov
- python setup.py develop
script:
py.test --cov skosprovider --cov-report term-missing tests
after_success:
coveralls
| Move to containers for Travis. | Move to containers for Travis.
| YAML | mit | koenedaele/skosprovider |
522a9755d23934297ba146b8bb58255b8adb2d16 | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- nightly
- 1.0.0-beta
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_RUST_VERSION = nightly ] &&
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=... | sudo: false
language: rust
rust:
- nightly
- beta
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc --verbose
after_success: |
[ $TRAVIS_RUST_VERSION = nightly ] &&
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=csspar... | Test on whatever is the latest beta. | Test on whatever is the latest beta.
| YAML | mpl-2.0 | servo/rust-cssparser,tempbottle/rust-cssparser,servo/rust-cssparser,tempbottle/rust-cssparser,disjukr/rust-cssparser,disjukr/rust-cssparser,notriddle/rust-cssparser,notriddle/rust-cssparser |
914d945e94cbdef611f1587ebd546eec0ccf67a7 | .travis.yml | .travis.yml | language: php
dist: trusty
sudo: false
cache:
directories:
- vendor
- $HOME/.composer/cache/files
env:
global:
- SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1
- SYMFONY_PHPUNIT_DISABLE_RESULT_CACHE=1
before_install:
- phpenv config-rm xdebug.ini || return 0
install:
- tr... | language: php
dist: trusty
sudo: false
cache:
directories:
- vendor
- $HOME/.composer/cache/files
env:
global:
- SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1
- SYMFONY_PHPUNIT_DISABLE_RESULT_CACHE=1
before_install:
- phpenv config-rm xdebug.ini || return 0
install:
- tr... | Add PHP 8 / nightly in Travis matrix | Add PHP 8 / nightly in Travis matrix
| YAML | bsd-3-clause | twigphp/Twig,twigphp/Twig,twigphp/Twig |
0a50489e18b7e48ec37147616f74c63d05965d53 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.4
- jruby
before_install: gem install bundler -v 1.14.6
| sudo: false
language: ruby
rvm:
- 2.4.1
- jruby
before_install: gem install bundler -v 1.14.6
| Use 2.4.1 instead of 2.4 alias | Use 2.4.1 instead of 2.4 alias
| YAML | mit | codingstones/action_dispatcher,codingstones/action_dispatcher |
bf2f9d1f275e2a939a8fd91a6636de51c14c9216 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
before_install: npm install -g npm@'>=2.13.5'
deploy:
provider: npm
email: dasrick@gmail.com
api_key:
secure: IHGizjoV0EBAcZ6NtB87C7iANfXqB0Rf+T5LASPlVJkHARP3YK34ATWM5l2E/4Q8fqsiyEMACkvmUu9f/Jtb+YRD32Q2ZjmILrAXfQPKz6gHFJdJuYXVU3H7swSFzTubrXzd5nebjQne7oGAZVH1sYK+aBD6Vb5cC5S8... | language: node_js
node_js:
- '0.10'
before_install: npm install -g npm@'>=2.13.5'
deploy:
provider: npm
email: admin@movingimage24.com
api_key:
secure: $NPM_TOKEN
on:
tags: true
repo: MovingImage24/mi-angular-bootstrap-ultron
| Replace token with a placeholder! | Replace token with a placeholder! | YAML | mit | MovingImage24/mi-angular-bootstrap-ultron |
efbd0e1885ca1f89304d8c1509879b1494bb7a23 | .travis.yml | .travis.yml | dist: xenial
language: go
go: "1.13.x"
env:
- GO111MODULE=on
cache:
directories:
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
install: true
before_script:
- GO111MODULE=off go get -u github.com/golangci/golangci-lint/cmd/golangci-lint
script:
- golangci-lint run
- go test -race ./...
deploy:
- provider: script... | dist: xenial
language: go
go: "1.13.x"
env:
- GO111MODULE=on
cache:
directories:
- $GOPATH/pkg/mod
- $HOME/.cache/go-build
install: true
before_script:
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.17.1
script:
- golangci-lint run
- go ... | Revert "install golangci-lint from source for go 1.13" | Revert "install golangci-lint from source for go 1.13"
This reverts commit d4a2971b6cbce4a538646230c986770c2238e66b.
| YAML | mit | cenkalti/rain |
9a36f9037b09bfe70f2a8f201ab876542d630cee | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
services:
- mongodb
- redis-server
install:
- sudo apt-get install -y beanstalkd
- sudo beanstalkd -d -l 127.0.0.1 -p 11300
- sh -c 'if [[ $T... | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: hhvm
- php: hhvm-nightly
services:
- mongodb
- redis-server
install:
- sudo apt-get install -y beanstalkd
- sudo beanstalkd -d -l 127.0.0.1 -p 11300
- sh -c 'if [[ $T... | Install "mongofill/mongofill" package for hhvm* environment | Install "mongofill/mongofill" package for hhvm* environment
| YAML | mit | rybakit/phive-queue,andreyors/phive-queue |
845b654e21095834227aaaf382970209eed2ae17 | .travis.yml | .travis.yml | sudo: false
language: node_js
os:
- linux
- osx
node_js:
# Node 11 is turned off because it blocks building until a security issue with node-sass is fixed.
- "node"
- "12"
- "10"
- "8"
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
... | sudo: false
language: node_js
os:
- linux
- osx
node_js:
- "node"
- "12"
- "10"
- "8"
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
script:
- npm install
- npm test
- npm r... | Remove out of date comment | Remove out of date comment
| YAML | mit | Jason-Rev/vscode-spell-checker,Jason-Rev/vscode-spell-checker,Jason-Rev/vscode-spell-checker,Jason-Rev/vscode-spell-checker,Jason-Rev/vscode-spell-checker |
9cda3ea1e7c0ef3b787aea7885e9eaa0a96fa0f4 | .travis.yml | .travis.yml | language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
before_script:
- python py-version/main.py &
- SERVER_PYTHON_PID=$!
- echo $SERVER_PYTHON_PID
script:
- python client.py localhost:8000 -v
- kill $SERVER_PYTHON_PID
| language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
before_script:
- python py-version/main.py &
- SERVER_PYTHON_PID=$!
- echo $SERVER_PYTHON_PID
script:
- python client.py localhost:8000
- kill $SERVER_PYTHON_PID
| Fix console pass arguments to unit test bug. | Fix console pass arguments to unit test bug.
| YAML | bsd-3-clause | starnight/MicroHttpServer,starnight/MicroHttpServer,starnight/MicroHttpServer,starnight/MicroHttpServer |
23f2b84b57492e083749c20fdf0f3c2bc7dfa210 | .travis.yml | .travis.yml | language: ruby
rvm: 1.8.7
env:
- PUPPET_VERSION=3.3.0
script:
- bundle exec rake validate
- bundle exec rake lint
before_install:
- gem update --system 2.1.11 # todo: workaround for https://github.com/rubygems/rubygems/pull/763
| language: ruby
rvm: 1.9.3
env:
- PUPPET_VERSION=3.3.0
script:
- bundle exec rake validate
- bundle exec rake lint
| Use ruby 1.9.3, remove rubygems workaround | Use ruby 1.9.3, remove rubygems workaround
| YAML | mit | vrenetic/puppet-packages,zazabe/puppet-packages,zazabe/puppet-packages,cargomedia/puppet-packages,tomaszdurka/puppet-packages,ppp0/puppet-packages,vrenetic/puppet-packages,zazabe/puppet-packages,vrenetic/puppet-packages,cargomedia/puppet-packages,ppp0/puppet-packages,feedlabs/puppet-packages,cargomedia/puppet-packages,... |
de584cb99d853c34e31614c0af0e607bd043dd0a | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2.4
- 2.3.0
gemfile:
- Gemfile.4.0
- Gemfile.4.1
- Gemfile.4.2
- Gemfile.5.0
| language: ruby
cache: bundler
rvm:
- 2.2.4
- 2.3.2
gemfile:
- Gemfile.4.0
- Gemfile.4.1
- Gemfile.4.2
- Gemfile.5.0
- Gemfile.5.1
| Update Travis config file to test with Rails 5.1 | Update Travis config file to test with Rails 5.1
| YAML | mit | dabit/acts_as_shopping_cart,dabit/acts_as_shopping_cart |
a357c9b0f9553bb66bbfad5d2323777c12466daf | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
env:
global:
- GH_REF: github.com/dbeyer/java-smt.git
install:
- ant resolve-dependencies -Divy.repo.url=http://www.sosy-lab.org/ivy
addons:
apt:
packages:
- oracle-java8-installer
matrix:
include:
- script:
- ant run-findbugs -Dfindbugs.output=text && ... | language: java
jdk:
- oraclejdk8
env:
global:
- GH_REF: github.com/dbeyer/java-smt.git
install:
- ant resolve-dependencies -Divy.repo.url=http://www.sosy-lab.org/ivy
addons:
apt:
packages:
- oracle-java8-installer
matrix:
include:
- script:
- ant run-findbugs -Dfindbugs.output=text && ... | Move Javadoc into the main task. | Move Javadoc into the main task. | YAML | apache-2.0 | sosy-lab/java-smt,sosy-lab/java-smt,sosy-lab/java-smt,sosy-lab/java-smt,sosy-lab/java-smt |
2fa41746b0037d1a7c4cd5fc31820fecc938e3af | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
gemfile:
- Gemfile
notifications:
email:
- RoUS@redhat.com
before_install:
- sudo apt-get update -qq
- gem install versionomy
script:
- bundle exec rake features
| ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.0
gemfile:
- Gemfile
notifications:
email:
- RoUS@redhat.com
before_install:
- sudo apt-get update -qq
- gem install versionomy
script:
- bundle exec rake features
- bundle exec rake yard
| Add yardoc build to the Travis sequence | Add yardoc build to the Travis sequence
| YAML | apache-2.0 | RoUS/rubygem-fibonaccia,RoUS/rubygem-fibonaccia |
fdfc561a32909d8b380f4b455ff760848b47afee | .travis.yml | .travis.yml | language: rust
matrix:
include:
- rust: 1.6.0
- rust: stable
- rust: stable
os: osx
- rust: beta
- rust: nightly
script:
- cargo test
| language: rust
matrix:
include:
- rust: 1.13.0
- rust: stable
- rust: stable
os: osx
- rust: beta
- rust: nightly
script:
- cargo test
| Change Rust 1.6.0 to 1.13.0 | [Travis] Change Rust 1.6.0 to 1.13.0
The 'unused_unsafe' attribute was stabilized in 1.13.0.
| YAML | apache-2.0 | nvzqz/static-assertions-rs |
8d89c5f4e88c37dfa5d18e46247094912f3baa9f | .travis.yml | .travis.yml | language: rust
rust:
- 1.23.0
- stable
- beta
- nightly
os:
- linux
- osx
script:
- ./ci/test.sh
cache:
cargo: true
directories:
- kcov-install
before_cache:
- rm -rf target/cov
matrix:
# Clear the whole matrix
exclude:
- os: linux
- os: osx
# Add each target manually
include... | language: rust
rust:
- 1.23.0
- stable
- beta
- nightly
os:
- linux
- osx
script:
- ./ci/test.sh
cache:
cargo: true
directories:
- kcov-install
before_cache:
- rm -rf target/cov
matrix:
# Clear the whole matrix
exclude:
- os: linux
- os: osx
# Add each target manually
include... | Disable alloc_system in CI tests | Disable alloc_system in CI tests
Latest nightly breaks this
| YAML | mit | richo/capstone-rs |
4c5a8fe90f4038566bcf0c125b17548df6f174d6 | .travis.yml | .travis.yml | ---
sudo: false
language: ruby
gemfile: .gemfile
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRI... | ---
sudo: false
language: ruby
gemfile: .gemfile
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0" FACTER_GEM_VERSION="~> 1.7.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FACTER_GEM_VERSION="~> 1.7.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FACTER_GEM_VERSI... | Check different versions of facter in tests | Check different versions of facter in tests
| YAML | bsd-2-clause | smoeding/puppet-sendmail |
11ebbcc4522b135616621b75578c06904eb3b175 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- ruby-head
- rbx-2
- jruby
gemfile:
- Gemfile
- Gemfile.ActiveSupport
env:
- ""
- "activesupport=3.2.22"
- "activesupport=4.1.12"
- "activesupport=4.2.3"
- "activesupport=master"
matrix:
fast_finish: true
allow_failures:
- rvm: jruby
- r... | language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1
- 2.2
- ruby-head
- rbx-2
- jruby
gemfile:
- Gemfile
- Gemfile.ActiveSupport
env:
- ""
- "activesupport=3.2.22"
- "activesupport=4.1.12"
- "activesupport=4.2.3"
- "activesupport=master"
matrix:
fast_finish: true
allow_failures:
- rvm: ... | Use new Travis container infrastructure. | Use new Travis container infrastructure.
| YAML | mit | christhekeele/inquisitive,christhekeele/inquisitive |
0173993599d7182942b841864d5e1247f3ca7cf4 | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
stages:
- name: test
if: not branch =~ ^release/.*$ AND not branch =~ ^tmp/.*$
- name: publish
if: branch =~ ^release/.*$ AND not branch =~ ^tmp/.*$
before_cache:
# No sense in caching current build artifacts
rm -rf $HOME/.m2/repository/org/postgresql
be... | sudo: false
language: java
dist: trusty
jdk:
- oraclejdk8
stages:
- name: test
if: not branch =~ ^release/.*$ AND not branch =~ ^tmp/.*$
- name: publish
if: branch =~ ^release/.*$ AND not branch =~ ^tmp/.*$
before_cache:
# No sense in caching current build artifacts
rm -rf $HOME/.m2/repository/org/p... | Use dist: trusty for Java 8 | Use dist: trusty for Java 8
| YAML | bsd-3-clause | vlsi/pgjdbc-parent-poms |
234c835e4560a8623eb371b649b275e62004de32 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- "wget -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -"
- "sudo wget -O /etc/apt/sources.list.d/mopidy.list http://apt.mopidy.com/mopidy.list"
- "sudo apt-get update"
- "sudo apt-get install python-all-dev libffi-dev libspotify-dev"
- "pip install -r req... | language: python
python:
- "2.7"
install:
- "wget -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -"
- "sudo wget -O /etc/apt/sources.list.d/mopidy.list http://apt.mopidy.com/mopidy.list"
- "sudo apt-get update"
- "sudo apt-get install python-all-dev libffi-dev libspotify-dev"
- "pip install -r req... | Add to only deploy to pypi from master branch | Add to only deploy to pypi from master branch
| YAML | apache-2.0 | rckclmbr/pyportify,rckclmbr/pyportify,rckclmbr/pyportify,rckclmbr/pyportify |
e8a423d62773dbbfbc9e66eafbc939dfe8063067 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.3
- pypy
env:
- DJANGO="Django<1.5"
- DJANGO="Django<1.6"
- DJANGO="Django<1.6" LOCALFLAVOR=django-localflavor SQLALCHEMY="SQLAlchemy<0.8"
- DJANGO="Django<1.7" LOCALFLAVOR=django-localflavor SQLALCHEMY="SQLAlchemy<0.9"
matrix:
exclude:
- python: 3.3
... | language: python
python:
- 2.6
- 2.7
- 3.3
- pypy
env:
- DJANGO="Django<1.5"
- DJANGO="Django<1.6" SQLALCHEMY="SQLAlchemy<0.10"
- DJANGO="Django<1.6" LOCALFLAVOR=django-localflavor SQLALCHEMY="SQLAlchemy<0.8"
- DJANGO="Django<1.7" LOCALFLAVOR=django-localflavor SQLALCHEMY="SQLAlchemy<0.9"
matrix:
e... | Add testing for SQLAlchemy 0.9.x | Add testing for SQLAlchemy 0.9.x
| YAML | bsd-3-clause | wtforms/wtforms,Aaron1992/wtforms,cklein/wtforms,crast/wtforms,subyraman/wtforms,pawl/wtforms,pawl/wtforms,hsum/wtforms,Aaron1992/wtforms,jmagnusson/wtforms,Xender/wtforms,skytreader/wtforms |
df6382ff5d0e6033e3d88478649c2206d586e3b3 | .travis.yml | .travis.yml | language: go
os:
- linux
- osx
go:
# 1.12 is no longer supported by apimachinery; we recommend 1.13
- "1.13"
- "1.14"
go_import_path: k8s.io/kops
script:
- GOPROXY=https://proxy.golang.org make nodeup examples test
jobs:
# To exclude a known-bad configuration:
#exclude:
# - os: osx
# go: "1.1... | language: go
os:
- linux
- osx
go:
# 1.12 is no longer supported by apimachinery; we recommend 1.13
- "1.13"
- "1.14"
go_import_path: k8s.io/kops
script:
- GOPROXY=https://proxy.golang.org make nodeup examples test
jobs:
# Exclude GO 1.14 for OSX until it becomes the default because of limited availabi... | Exclude GO 1.14 for OSX | Exclude GO 1.14 for OSX
| YAML | apache-2.0 | kubernetes/kops,justinsb/kops,kubernetes/kops,kubernetes/kops,justinsb/kops,justinsb/kops |
92c85215a2aa4f24baa1bcf25bb76900682f2fbb | .travis.yml | .travis.yml | language: node_js
node_js:
- "iojs"
services:
- redis-server
after_success:
- cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js
| language: node_js
node_js:
- "iojs"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
services:
- redis-server
after_success:
- cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js
| Add hiredis Travis-CI build requirements | Add hiredis Travis-CI build requirements
| YAML | unlicense | albertorestifo/redis-superpowers,albertorestifo/node-redis-promise |
8b9879942fa74c82b5a71060945755b763e97bf5 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'core' ]; then cd .. && eval "mv $currentfolder core" && cd core; fi
- npm install -g grunt-cli
| language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'core' ]; then cd .. && eval "mv $currentfolder core" && cd core; fi
- npm install -g grunt-cli
notifications:
email:
- dave@famo.us
- fetterman@famo.us
- myles@famo.us
| Update Travis with explicit emails | Update Travis with explicit emails
| YAML | mpl-2.0 | Bizboard/famous,wgester/famous,Famous/famous,Faiz7412/famous,Famous/widgets,chinakids/famous,Lkraljevic/famous,SuPenguin/famous,Faiz7412/famous,FamousArchives/widgets,trusktr/famous,ziteboard/famous,holmesal/famous-global-build,Famous/famous,Offirmo/famous,SeanOceanHu/famous,gdi2290/famous,ziteboard/famous |
b46271d1b05b5de4f3a6afd9bd1efb39502b8ae9 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
install: "pip install -r requirements.txt"
script:
- python message.py
- python message_checker.py
- python telegram.py
| language: python
python:
- "2.7"
- "3.5"
install: "pip install -r requirements.txt"
script:
- python message.py
- python message_checker.py
- python telegram.py
- python data_updater.py
| Enable tests for data_updater.py in CI | Enable tests for data_updater.py in CI
| YAML | mit | amaslenn/AMWorkoutAssist |
b8918f901b16022396543578891898249f9b0bcd | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
before_install:
- if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
- mv .env.example .env
- travis_retry composer self-update
install:
- composer install
script:
- php artisan canvas:publish:assets -y
- php artisan canvas:publish:confi... | language: php
php:
- 5.6
- 7.0
- 7.1
before_install:
- if [[ $TRAVIS_PHP_VERSION != 7.1 ]] ; then phpenv config-rm xdebug.ini; fi
- mv .env.example .env
- travis_retry composer self-update
install:
- composer install
before_script:
- php artisan canvas:publish:assets -y
- php artisan canvas:publis... | Create the installed lock file | :lock: Create the installed lock file
| YAML | mit | cnvs/canvas,cnvs/canvas,talvbansal/Canvas,cnvs/canvas,lukio3/theduckone,foxted/canvas |
27fad1530cc9f600c84b0846717da04bcc573ad5 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- pip install -r dev-requirements.txt
- pip install -e .
# command to run tests
script: py.test --cov=neoalchemy
after_success: codecov
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install -r dev-requirements.txt
- pip install -e .
# command to run tests
script: py.test --cov=neoalchemy
after_success: codecov
| Add Python 3.6 to Travis CI tests | Add Python 3.6 to Travis CI tests
| YAML | mit | TwoBitAlchemist/NeoAlchemy |
7c86f9648f68f5fd892329a49c0a5ecb7d39f458 | .travis.yml | .travis.yml | language: generic
os: osx
osx_image: xcode7.3
rvm:
- 2.0.0
before_install:
- export XCODEBUILD_PATH=$(which xcodebuild)
- export PATH=$PATH:$XCODEBUILD_PATH
install:
- git submodule init
- git submodule update
- gem
script:
- go run Testing/tests.go
| language: generic
os: osx
osx_image: xcode7.3
before_install:
- export XCODEBUILD_PATH=$(which xcodebuild)
- export PATH=$PATH:$XCODEBUILD_PATH
- export PATH=$PATH:~/bin
install:
- git submodule init
- git submodule update
- gem install xcpretty --user-install -n~/bin
script:
- go run Testing/tests.go
| Install xcpretty before running tests | Install xcpretty before running tests
[#128293477]
| YAML | apache-2.0 | jwfriese/Fleet,jwfriese/Fleet,jwfriese/Fleet,jwfriese/Fleet,farshadtx/Fleet,farshadtx/Fleet,farshadtx/Fleet,farshadtx/Fleet |
8dc594f0cf97aa647d775c79d615039443135b44 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.3
- 2.2.6
- 2.1.9
sudo: false
services: mongodb
before_install:
- gem update --system
- gem install bundler
branches:
only:
- "master"
before_script:
- mysql -e 'CREATE DATABASE statesman_test;'
- psql -c 'CREATE DATABASE statesman_test;' -U postgres
script:
- bundle... | language: ruby
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
- 2.1.9
sudo: false
services: mongodb
before_install:
- gem update --system
- gem install bundler
branches:
only:
- "master"
before_script:
- mysql -e 'CREATE DATABASE statesman_test;'
- psql -c 'CREATE DATABASE statesman_test;' -U postgres
script:
... | Support ruby 2.4: add test case for ruby 2.4 in CI | Support ruby 2.4: add test case for ruby 2.4 in CI
- rails 4.2.8 or higher supports ruby 2.4
| YAML | mit | timothyp/statesman,gocardless/statesman,timothyp/statesman,gocardless/statesman |
69aec526762c56ec1de9560fffa11e17190bdb5d | .travis.yml | .travis.yml | language: java
sudo: false
matrix:
include:
- jdk: openjdk8
- jdk: oraclejdk8
- jdk: openjdk9
- jdk: oraclejdk9
- jdk: openjdk10
- jdk: oraclejdk10
- jdk: openjdk11
- os: osx
osx_image: xcode9.2
env: JAVA_HOME=$(/usr/libexec/java_home)
| language: java
sudo: false
matrix:
include:
- jdk: openjdk8
- jdk: oraclejdk8
- jdk: openjdk9
- jdk: oraclejdk9
- jdk: openjdk10
- jdk: oraclejdk10
- jdk: openjdk11
- os: osx
osx_image: xcode9.2
env: JAVA_HOME=$(/usr/libexec/java_home)
cache:
directories:
- $HOME/.m2 | Add Cache to Travis CI | Add Cache to Travis CI
| YAML | bsd-3-clause | adamretter/j8fu |
c9041785327d6bd96fe218d779e6824aaf2dadbd | .travis.yml | .travis.yml | language: go
sudo: required
services:
- docker
go:
- 1.7
- 1.8
- tip
script:
- go get github.com/frozzare/go-assert
- go test -race $(go list ./... | grep -v /vendor/)
| language: go
sudo: required
services:
- docker
go:
- 1.7
- 1.8
- tip
install:
- go get github.com/frozzare/go-assert
script:
- go test -race $(go list ./... | grep -v /vendor/)
| Move installation of assert to install instead of script | Move installation of assert to install instead of script
| YAML | mit | frozzare/alfred |
c598b43ad798fe0e8c5f9800073e5a2cff51f957 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- "pip install -r requirements.txt"
- "pip install -r requirements-dev.txt"
- "pip install coveralls"
script: "py.test --cov pre_commit_hook tests/"
after_success:
- coveralls
| language: python
python:
- "2.7"
install:
- "pip install -r requirements.txt"
- "pip install -r requirements-dev.txt"
- "pip install coveralls"
before_script:
- "mkdir -p /home/travis/pre-commit-python-sorter/tests/resources"
script: "py.test --cov pre_commit_hook tests/"
after_success:
- coveralls
| Fix IOErrors in Travis, create the dir before running tests | Fix IOErrors in Travis, create the dir before running tests
| YAML | mit | FalconSocial/pre-commit-python-sorter |
4fd426e6fc643cd0e4c1b8b5c7543ba570f1be75 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
script:
- phpunit tests/
install:
- composer install | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
script:
- phpunit tests/
install:
- composer install
| Drop PHP 5.3 and 5.4 support | Change: Drop PHP 5.3 and 5.4 support
| YAML | mit | checkdomain/Holiday |
2075c5f212fba7b5ac5b2e3368bc519b5cc6b08d | .travis.yml | .travis.yml | language: ruby
sudo: false
script: "bundle exec rake"
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
| language: ruby
sudo: false
script: "bundle exec rake"
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
| Update to latest rubies on CI | Update to latest rubies on CI
| YAML | mit | kyuden/banken |
0c0bbda848d17f62a97ca5a9d14cbd9a6a16092e | .travis.yml | .travis.yml | language: java
sudo: false
matrix:
fast_finish: true
include:
- os: linux
dist: trusty
jdk: oraclejdk8
- os: linux
dist: trusty
jdk: openjdk7
- os: osx
osx_image: xcode8.3
addons:
chrome: stable
before_install:
- nvm install node
- npm install
script:
- mvn pack... | language: java
sudo: false
matrix:
fast_finish: true
include:
- os: linux
dist: trusty
jdk: oraclejdk8
- os: linux
dist: trusty
jdk: openjdk7
- os: osx
osx_image: xcode8.3
addons:
chrome: stable
before_install:
- nvm install node
- npm install
- npm install -g gr... | Update Travis CI script so greenkeeper works with the lockfile | fix(ci): Update Travis CI script so greenkeeper works with the lockfile
| YAML | apache-2.0 | davidmsibley/angularjs-portal,davidmsibley/angularjs-portal,davidmsibley/angularjs-portal,davidmsibley/angularjs-portal,UW-Madison-DoIT/angularjs-portal,UW-Madison-DoIT/angularjs-portal,UW-Madison-DoIT/angularjs-portal,UW-Madison-DoIT/angularjs-portal |
725f35803d90d34bc2a5f4f7352215d0f7980efe | .travis.yml | .travis.yml | language: python
sudo: false
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=flake8
install:
- pip install tox codecov
after_success:
codecov
script:
- tox -e $TOX_ENV
| language: python
sudo: false
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
- python: 3.5
env: TOXENV=flake8
install:
- pip install tox codecov
after_success:
codecov
scr... | Add python 3.5 and 3.6 | Add python 3.5 and 3.6
| YAML | bsd-2-clause | migonzalvar/dj-email-url |
62618ab460f77a93ee4777c85cabc4b0b556207f | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.5
- tip
matrix:
allow_failures:
- go: tip
script:
- test -z $(gofmt -l .)
| language: go
go:
- 1.10
- 1.11
- tip
matrix:
allow_failures:
- go: tip
script:
- test -z $(gofmt -l .)
| Drop support for Golang < 1.10 | Drop support for Golang < 1.10
This is because they are not supported by the release policy.
| YAML | mpl-2.0 | hooklift/gowsdl |
0423c2696d168cb1468d326ee30fb374a0d7a7d0 | .travis.yml | .travis.yml | language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '6'
env:
global:
- ENCRYPTION_LABEL: "a8c5e363dc84"
- COMMIT_AUTHOR_EMAIL: "patternfly-build@redhat.com"
- TRIGGER_REPO_SLUG: "patternfly/patternfly-ng"
- TRIGGER_REPO_BRANCH: "master"
before_inst... | language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- '6'
env:
global:
- ENCRYPTION_LABEL: "a8c5e363dc84"
- COMMIT_AUTHOR_EMAIL: "patternfly-build@redhat.com"
- TRIGGER_REPO_SLUG: "patternfly/patternfly-ng"
- TRIGGER_REPO_BRANCH: "master"
before_inst... | Fix npm publish with login. | fix(release): Fix npm publish with login.
| YAML | mit | patternfly/patternfly-ng,catrobson/patternfly-ng2,dlabrecq/patternfly-ng,patternfly/patternfly-ng,catrobson/patternfly-ng2,dlabrecq/patternfly-ng,patternfly/patternfly-ng,dlabrecq/patternfly-ng,dlabrecq/patternfly-ng,patternfly/patternfly-ng,catrobson/patternfly-ng2 |
f034ace2354ab0b817afc32903e052a3bb907882 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "pypy"
- "pypy3"
- "3.5"
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "2.6"
install:
- pip install -U pytest
- pip install coveralls
- pip install pytest-cov
script:
py.test -v --cov tinydb
after_success:
coveralls
| language: python
sudo: false
python:
- "pypy"
- "pypy3"
- "3.5"
- "3.4"
- "3.3"
- "3.2"
- "2.7"
- "2.6"
install:
- pip install -U pytest
# Coveralls 4.0 doesn't support Python 3.2
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
- if [ "$TRAVIS_PYTHON... | Fix Travis-CI tests on Python 2.3 | Fix Travis-CI tests on Python 2.3
| YAML | mit | msiemens/tinydb |
9ff2c45d3cb3cf1c071e9a5e40d9fdcccd7229e7 | .travis.yml | .travis.yml | language: php
sudo: required
dist: trusty
php:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "master"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- php: "8.0"
- php: "master"
- php: "nightly"
install:
- pecl install sodium
- travis_retry composer install --... | language: php
sudo: required
dist: trusty
php:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "master"
- "nightly"
matrix:
fast_finish: true
allow_failures:
- php: "8.0"
- php: "master"
- php: "nightly"
install:
- travis_retry composer install --no-interaction
- wget ... | Remove ext/sodium from build instructions | Remove ext/sodium from build instructions
| YAML | mpl-2.0 | paragonie/halite,paragonie/halite |
f3afcc03bfd05a793d923f0672394d2be6e9d52c | .travis.yml | .travis.yml | language: php
php:
- '7.1'
services:
- mysql
before_install:
# disable xdebug, because it affects performance
- phpenv config-rm xdebug.ini
# create our test database
- mysql -e "CREATE DATABASE IF NOT EXISTS skyscrapers_dev;"
- mysql -e "CREATE USER 'skyscrapers_dev'@'localhost' IDENTIFIED BY 'kwJM2H... | language: php
php:
- '7.1'
- '5.5'
services:
- mysql
before_install:
# disable xdebug, because it affects performance
- phpenv config-rm xdebug.ini
# create our test database
- mysql -e "CREATE DATABASE IF NOT EXISTS skyscrapers_dev;"
- mysql -e "CREATE USER 'skyscrapers_dev'@'localhost' IDENTIFIED ... | Include php 5.5 in Travis-CI settings. | Include php 5.5 in Travis-CI settings.
| YAML | mit | dadish/ProcessGraphQL,dadish/ProcessGraphQL |
ff6bfcedee4bf0c71492e3f7bc0c3a6c740ae8db | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.9"
install:
- npm install -g grunt-cli
- npm install
| language: node_js
node_js:
- "0.11"
- "0.10"
install:
- npm install -g grunt-cli
- npm install
| Remove Node.js 0.9 from test suite | Remove Node.js 0.9 from test suite
This version is no longer available to the test suite.
| YAML | mit | jGleitz/mustache-render,5thWall/mustache-render,jGleitz/mustache-render,5thWall/mustache-render |
313e3f100d9fdc75a4b3e137fb78428529b639a5 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.12'
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm instal... | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- ... | Test with Node.js 4.2 on Travis CI. | Test with Node.js 4.2 on Travis CI.
| YAML | mit | bigeasy/riffle,bigeasy/riffle |
cb71bbb7a0b88cdb472807ed0edd78c3c1015a01 | .travis.yml | .travis.yml | ---
language: ruby
before_install:
- rvm get head
- gem install bundler
rvm:
- 2.2.4
- 2.3.1
- ruby-head
- rbx-2
- jruby-9.1.0.0
- jruby-head
sudo: false
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
notifications:
recipients:
- mail@zzak.io
slack: si... | ---
language: ruby
dist: trusty
group: edge
before_install:
- rvm get head
- gem install bundler
rvm:
- 2.2.4
- 2.3.1
- ruby-head
- rbx-2
- jruby-9.1.0.0
- jruby-head
sudo: false
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
notifications:
recipients:
... | Use trusty image and edge to use the latest available image | Use trusty image and edge to use the latest available image
Thanks @SamSaffron for the tip! :cake:
| YAML | mit | ryanshaw/sinatra,sinatra/sinatra,burningTyger/sinatra,jkowens/sinatra,sinatra/sinatra,JonMidhir/sinatra,ryanshaw/sinatra,burningTyger/sinatra,burningTyger/sinatra,JonMidhir/sinatra,jkowens/sinatra,jkowens/sinatra,mwpastore/sinatra,JonMidhir/sinatra,mwpastore/sinatra,mwpastore/sinatra |
ac910336df4d8066782effb44ea433cc9bddd366 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
sudo: false
script: "npm run test-ci"
after_success: "npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/71b86a81f31bbfba21a1
on_success: always # options: [alway... | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
services:
- redis-server
sudo: false
script: "npm run test-ci"
after_success: "npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/71b86a81f31bbfba21a1
on_success... | Add redis setting for Travis | Add redis setting for Travis
| YAML | mit | hunt/spinal,monmacx/spinal,jitta/spinal,wiennat/spinal,monmacx/spinal,jitta/spinal,wiennat/spinal,hunt/spinal |
50590a033aec7b62193f389049585d13190d4898 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.2
env:
- "RAILS_VERSION=5.0.7"
- "RAILS_VERSION=5.1.7"
- "RAILS_VERSION=5.2.4"
- "RAILS_VERSION=6.0.2"
matrix:
exclude:
- rvm: 2.4.10
env: "RAILS_VERSION=6.0.2"
addons:
code_climate:
repo_token: 9b174f785a3f1ad8986730da28c2756320f04... | language: ruby
rvm:
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.2
- 3.0.0
env:
- "RAILS_VERSION=5.0.7"
- "RAILS_VERSION=5.1.7"
- "RAILS_VERSION=5.2.4"
- "RAILS_VERSION=6.0.2"
matrix:
exclude:
- rvm: 2.4.10
env: "RAILS_VERSION=6.0.2"
addons:
code_climate:
repo_token: 9b174f785a3f1ad8986730da28c... | Add Ruby 3 to the build matrix | Add Ruby 3 to the build matrix
| YAML | mit | substancelab/route_downcaser,substancelab/route_downcaser,substancelab/route_downcaser,carstengehling/route_downcaser,carstengehling/route_downcaser,carstengehling/route_downcaser |
efc15ed61c50eaa44ae631e5abfb25d2ac704be0 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0-p598
- 2.1.0
- 2.2.0
sudo: false
bundler_args: --deployment --without development
cache:
- bundler
- directories:
- bower_components
- node_modules
before_script:
- cp config/database.ci.yml config/database.yml
- cp .env.example .env
- psql -c 'create database orienta... | language: ruby
rvm:
- 2.0.0
- 2.1.6
- 2.2.2
matrix:
fast_finish: true
allow_failures:
- rvm: 2.0.0
env: ISOLATED=true
- rvm: 2.1.6
env: ISOLATED=true
sudo: false
bundler_args: --deployment --without development
cache:
- bundler
- directories:
- bower_components
- node_modules... | Allow Ruby 2.0 and 2.1 to fail fast on Travis. | Allow Ruby 2.0 and 2.1 to fail fast on Travis.
Orientation is focused on 2.2 and forward.
| YAML | mit | codio/orientation,ferdinandrosario/orientation,cmckni3/orientation,jefmathiot/orientation,splicers/orientation,splicers/orientation,ferdinandrosario/orientation,cmckni3/orientation,IZEA/orientation,robomc/orientation,LogicalBricks/orientation,codeschool/orientation,cmckni3/orientation,jefmathiot/orientation,orientation... |
e6d8c4bbd157ea1e6bf37970564c96c2f366d5ab | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
- 2.2
env:
- CHEF_VERSION=11.18.2
- CHEF_VERSION=12.6.0
- CHEF_VERSION=12.7.2
before_script:
- chef-client --version
notifications:
email: false
sudo: false
| language: ruby
rvm:
- 2.1
- 2.2
env:
- CHEF_VERSION=12.6.0
- CHEF_VERSION=12.7.2
before_script:
- chef-client --version
notifications:
email: false
sudo: false
| Drop Chef 11 from the Travis build matrix | Drop Chef 11 from the Travis build matrix
| YAML | mit | bmarini/knife-inspect |
fadc5fe47ef3fbcbaca473f6d42745c8f6294955 | .forestry/front_matter/templates/project.yml | .forestry/front_matter/templates/project.yml | ---
label: Project
hide_body: false
fields:
- type: datetime
name: date
label: date
- type: text
name: title
label: title
- type: text
name: slogan
label: slogan
- type: text
name: source
label: source
- type: text
name: demo
label: demo
- type: list
name: techs
label: techs
- type: list
name:... | ---
label: project
hide_body: false
fields:
- type: datetime
name: date
label: date
- type: text
name: title
label: title
- type: text
name: slogan
label: slogan
- type: text
name: source
label: source
- type: text
name: demo
label: demo
- type: list
name: techs
label: techs
- type: list
name:... | Update from Forestry.io - Updated Forestry configuration | Update from Forestry.io - Updated Forestry configuration
| YAML | mit | dannyphillips/dannyphillips.github.io,dannyphillips/dannyphillips.github.io,dannyphillips/dannyphillips.github.io,dannyphillips/dannyphillips.github.io |
f90381910b20b63774614c3c8184b923a3f43480 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.3.3
- 1.4.3
- 1.5.3
- tip
os:
- linux
- osx
matrix:
allow_failures:
- go: tip
os: linux
- go: tip
os: osx
notifications:
irc:
channels:
- "chat.freenode.net#restic"
on_success: change
on_failure: change
skip_join: true
insta... | language: go
sudo: false
go:
- 1.3.3
- 1.4.3
- 1.5.3
- 1.6beta2
os:
- linux
- osx
notifications:
irc:
channels:
- "chat.freenode.net#restic"
on_success: change
on_failure: change
skip_join: true
install:
- go version
- export GOBIN="$GOPATH/bin"
- export PATH="$PATH:$GOBIN"... | Remove Go tip, add 1.6beta2 | Remove Go tip, add 1.6beta2
| YAML | bsd-2-clause | byo/restic,middelink/restic,restic/restic,ar-jan/restic,stuertz/restic,middelink/restic,restic/restic,jayme-github/restic,arithmetric/restic,stuertz/restic,bchapuis/restic,byo/restic,ar-jan/restic,kurin/restic,mappu/restic,ckemper67/restic,kurin/restic,fawick/restic,jayme-github/restic,fawick/restic |
7fd0227c465ebd8c5a1d652e7786334c2cf532f4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.1
env:
global:
# Branch you want to deploy:
- JTS_DBRANCH="master"
# Server IP:
- JTS_SERV_IP="123.123.123.123"
# Server deploy path:
- JTS_SERV_DP="/var/www/SITE-FOLDER"
# Username for Travis deploy:
- JTS_TRV_USR="deploy"
# Filename of Travis key:
- JTS_KEYNAM... | language: ruby
rvm:
- 2.3.3
env:
global:
# Branch you want to deploy:
- JTS_DBRANCH="master"
# Server IP:
- JTS_SERV_IP="123.123.123.123"
# Server deploy path:
- JTS_SERV_DP="/var/www/SITE-FOLDER"
# Username for Travis deploy:
- JTS_TRV_USR="deploy"
# Filename of Travis key:
- JTS_KEYNAM... | Update TravisCI Ruby version to 2.3.3 | Update TravisCI Ruby version to 2.3.3
| YAML | agpl-3.0 | ckreon/ww-jekyll-travis-skeleton,ckreon/ww-jekyll-travis-skeleton,ckreon/ww-jekyll-travis-skeleton,ckreon/ww-jekyll-travis-skeleton |
e260121987a85b1c675f92830c3917637fc47912 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "2.6"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- 'pip install -e ".[test]"'
- 'pip install coveralls'
- 'pip install workalendar'
script:
- "python ./setup.py nosetests"
after_success:
- coveralls
| language: python
python:
- "2.7"
- "2.6"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- 'pip install -e ".[test]"'
- 'pip install coveralls'
- 'pip install git+https://github.com/sayoun/workalendar'
script:
- "python ./setup.py nosetests"
after_succe... | Update test dependency for workalendar | Update test dependency for workalendar
| YAML | bsd-3-clause | sayoun/pyvac,doyousoft/pyvac,sayoun/pyvac,doyousoft/pyvac,doyousoft/pyvac,sayoun/pyvac |
05a37d045dea0c46e93739a79286e09c30f9f035 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
- pypy
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run "--include=LowVoltage/*" setup.py test
- if [ "v$TRAVIS_PYTHON_VERSION" == "v2.7" ]; then python setup.py build_sphinx --builder=doctest; fi
after_success:
- coveralls
deploy:
provider... | language: python
python:
- 2.7
- 3.4
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run "--include=LowVoltage/*" setup.py test
- if [ "v$TRAVIS_PYTHON_VERSION" == "v2.7" ]; then python setup.py build_sphinx --builder=doctest; fi
after_success:
- coveralls
deploy:
provider: pypi
... | Stop pretending we support PyPy | Stop pretending we support PyPy
| YAML | mit | jacquev6/LowVoltage,jacquev6/LowVoltage |
97243584dda2a1b72851d3a4f817bb00520d3ef4 | .travis.yml | .travis.yml | # Configuration options are documented at:
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
sudo: false
language: node_js
node_js:
- '0.12'
- '4.0'
- '4.1'
- '5.0'
script: npm test && npm run-script report-coverage
| # Configuration options are documented at:
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
sudo: false
language: node_js
node_js:
- '0.12'
- '4.0'
- '4.1'
- '4.2'
- '5.0'
- '5.1'
- '5.2'
- '5.3'
- '5.4'
script: npm test && npm run-script report-coverage
| Add updated node.js versions to Travis testing. | Add updated node.js versions to Travis testing.
| YAML | mit | RobLoach/kss-node,RobLoach/kss-node,RobLoach/kss-node |
8d3783849b53c2d6db5f402147063200b516566b | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- ruby-head
env:
- "RAILS_VERSION=4.0"
- "RAILS_VERSION=4.1"
- "RAILS_VERSION=4.2"
- "RAILS_VERSION=5.0"
matrix:
allow_failures:
- rvm: ruby-head
exclude:
- rvm: 2.0.0
env: "RAILS_VERSION=5.0"
- rvm: 2.1.9
env:... | sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.9
- 2.2.5
- 2.3.1
- ruby-head
env:
- "RAILS_VERSION=4.0.0"
- "RAILS_VERSION=4.1.0"
- "RAILS_VERSION=4.2.0"
- "RAILS_VERSION=5.0.0"
matrix:
allow_failures:
- rvm: ruby-head
exclude:
- rvm: 2.0.0
env: "RAILS_VERSION=5.0.0"
- rvm: 2.1.9
... | Fix Rails build matrix version constraints | Fix Rails build matrix version constraints
We use the ~> operator, so one more version component needs to be specified. Otherwise, all the 4.0, 4.1, and 4.2 constraints all resolve to the latest Rails 4 release.
| YAML | mit | jparr/activerecord-userstamp,jparr/activerecord-userstamp,lowjoel/activerecord-userstamp,lowjoel/activerecord-userstamp,jparr/activerecord-userstamp,lowjoel/activerecord-userstamp |
ac407e641091e33fbb26cd4b82fd52d30320059d | .travis.yml | .travis.yml | language: rust
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
echo '<meta http-equiv=refresh content=0;url=pkg_config/index.html>' > target/doc/index.html &&
pip install ghp-import --user $U... | language: rust
rust:
- 1.0.0
- beta
- nightly
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION = nightly ] &&
echo '<meta http-equiv=refresh content=0;url=pkg_conf... | Test on rust 1.0.0, nightly, and beta | Test on rust 1.0.0, nightly, and beta
| YAML | apache-2.0 | achanda/pkg-config-rs |
9febbe336fd02c5242ba7377c64a41d05c646f5d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
| sudo: false
language: node_js
node_js:
- iojs
- "0.12"
- "0.10"
| Add node.js 0.12 and iojs to Travis CI | Add node.js 0.12 and iojs to Travis CI
| YAML | mit | bendtherules/postcss-simple-vars,ashelley/postcss-simple-vars,yksht/postcss-simple-vars,rtsao/postcss-simple-vars,jedmao/postcss-simple-vars,postcss/postcss-simple-vars,lamo2k123/postcss-less-vars |
1d1ace801b9d47db470f339234904641efbf07ad | .travis.yml | .travis.yml | language: elixir
elixir:
- 1.3.4
otp_release:
- 19.0
before_script:
- mix deps.compile
- mix deps.compile # second build for bug in `serial`
script: mix test
env:
- SECRET_KEY_BASE=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
| language: elixir
elixir:
- 1.3.4
otp_release:
- 19.0
services:
- postgresql
before_script:
- psql -c 'create database gatekeeper_test;' -U postgres
- mix local.rebar --force # for Elixir 1.3.0 and up
- mix local.hex --force
- mix deps.get
- mix deps.compile
- mix deps.compile # second build for bug in... | Make PostgreSQL available to tests on Travis | Make PostgreSQL available to tests on Travis | YAML | mit | alkaloid/gatekeeper,alkaloid/gatekeeper,alkaloid/gatekeeper |
88739a33130a576b342ad2d37c738d5c5fdc5364 | .travis.yml | .travis.yml | language: c
install:
- sudo add-apt-repository ppa:directhex/monoxide && sudo apt-get update
- sudo apt-get install mono-devel mono-gmcs nunit-console
- mozroots --import --sync
script:
- xbuild build.proj
- nunit-console ./src/Tests/AppConfigFacility.Azure/bin/Release/AppConfigFacility.Tests.dll ./src/Te... | language: c
install:
- sudo add-apt-repository ppa:directhex/monoxide -y && sudo apt-get update
- sudo apt-get install mono-devel mono-gmcs nunit-console
- mozroots --import --sync
script:
- xbuild build.proj
- nunit-console ./src/Tests/AppConfigFacility.Azure/bin/Release/AppConfigFacility.Tests.dll ./src... | Add -y flag to add-apt-repository | Add -y flag to add-apt-repository
| YAML | mit | adamconnelly/WindsorAppConfigFacility |
d88989e8c711fec8263125f04ef60ef44d9f5128 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "stable"
- "4.2"
- "0.12"
- "0.10"
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.10" ]; then npm install -g npm@2 ; fi'
notifications:
irc: "irc.mibbit.net#heartless"
irc: "irc.GameSurge.Net#tennudev"
| sudo: false
language: node_js
node_js:
- "stable"
- "4.2"
notifications:
irc: "irc.mibbit.net#heartless"
irc: "irc.GameSurge.Net#tennudev"
| Remove support for Node.js < v4.2 | Remove support for Node.js < v4.2
| YAML | isc | Tennu/tennu |
36d899be12da04ed7ab2e12f4580493962cbd06e | .travis.yml | .travis.yml | language: node_js
sudo: false
git:
depth: 10
node_js:
- "0.12"
env:
matrix:
- RUBY_VERSION=2.0
before_install:
- rvm install $RUBY_VERSION
- rvm use $RUBY_VERSION --fuzzy
- export GEMDIR=$(rvm gemdir)
install:
- travis_retry npm install -g grunt-cli
- travis_retry npm install
- travis_retry ... | language: node_js
sudo: false
git:
depth: 10
node_js:
- "4"
- "5"
env:
matrix:
- RUBY_VERSION=2.2
before_install:
- rvm install $RUBY_VERSION
- rvm use $RUBY_VERSION --fuzzy
- export GEMDIR=$(rvm gemdir)
install:
- travis_retry npm install -g grunt-cli
- travis_retry npm install
- travis_r... | Test against node.js 4 and 5 and Ruby 2.2. | Travis: Test against node.js 4 and 5 and Ruby 2.2.
| YAML | mit | twbs/ratchet,twbs/ratchet |
b185ea6e0f218ebf1d623fd24291a752608e5f82 | .travis.yml | .travis.yml | #
# This is the default Travis CI configuration.
#
# It uses a GitHub OAuth token when fetching composer dependencies
# to avoid IP-based API throttling.
#
# It also allows publication of artifacts via an additional build.
#
language: php
php: ["5.3", "5.4", "5.5", "hhvm"]
env:
global:
- ARCHER_PUBLISH_VERSION=... | #
# This is the default Travis CI configuration.
#
# It uses a GitHub OAuth token when fetching composer dependencies
# to avoid IP-based API throttling.
#
# It also allows publication of artifacts via an additional build.
#
language: php
php: ["5.3", "5.4", "5.5"]
env:
global:
- ARCHER_PUBLISH_VERSION=5.5
... | Revert "Trying HHVM build on Travis CI, for science." | Revert "Trying HHVM build on Travis CI, for science."
This reverts commit af2a5766ed3cecd704c5e70841b0f3bb3bf802dc.
Archer would need explicit support for HHVM as it does not support the same
command line options as PHP.
| YAML | mit | IcecaveStudios/duct |
cb43851bfd96c1f0a37ea6ed5c383334853ab97a | .travis.yml | .travis.yml | language: node_js
env:
- TARGET=test
node_js:
- '6'
- '7'
- '8.10.0'
- '10'
matrix:
include:
- name: Lint
node_js: '8.10.0'
env:
- TARGET=lint
- name: Coverage
node_js: '8.10.0'
env:
- TARGET=coverage
- name: Chrome headless
node_js: '8.10.0'
... | language: node_js
env:
- TARGET=test
node_js:
- '8.10.0'
- '10'
- '12'
- 'node'
matrix:
include:
- name: Lint
node_js: '8.10.0'
env:
- TARGET=lint
- name: Coverage
env:
node_js: '8.10.0'
- TARGET=coverage
- name: Chrome headless
node_js: '8.10.0'
... | Drop node.js 6 and 7 support, add 12 + 13 (semver-major) | Drop node.js 6 and 7 support, add 12 + 13 (semver-major)
| YAML | mit | unexpectedjs/unexpected-sinon,unexpectedjs/unexpected-sinon |
548cbc0452a05a9f26570b7703129dd62b615b86 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6.11.3"
before_script:
- git clean -fdx
- npm install -g grunt-cli
| language: node_js
node_js:
- "6.11.3"
before_script:
- npm install -g grunt-cli
| Revert "clean the working tree before Travis", that wasn’t helpful… | Revert "clean the working tree before Travis", that wasn’t helpful…
This reverts commit fb167e2a02e596ee3416f74a5074cc9e69efe7d6.
| YAML | mit | fyneworks/multifile,fyneworks/multifile,fyneworks/multifile |
9cdf8a453788e0c4257a48974aa2aca1baf310f8 | .travis.yml | .travis.yml | language: rust
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libgtk-3-dev
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
sudo: true
env:
global:
- LD_LIBRARY_PATH=/usr/local/lib
before_install:
- yes | sudo add-apt-repository ppa:ricotz/testing
- sudo apt-get update
install:
- sudo apt-get install libgtk-3-dev
| Add custom repo for latest versions | Add custom repo for latest versions
| YAML | mit | MoritzKn/ralculator,MoritzKn/ralculator |
6e5289955329ad95125deb761d4119f9c7b1dd93 | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-8
- INSTANCE=default-fedora-latest
- INSTANCE=default-ubuntu-1404
- INSTANCE=d... | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
services: docker
env:
matrix:
- INSTANCE=default-centos-6
- INSTANCE=default-centos-7
- INSTANCE=default-debian-8
- INSTANCE=default-fedora-latest
- INSTANCE=default-ubuntu-1404
- INSTANCE=d... | Switch Travis CI to dokken | Switch Travis CI to dokken
Signed-off-by: Stanislav Voroniy <bef361c46d3d1fa291296f6d65d7f2ef6cbcf237@voroniy.com>
| YAML | apache-2.0 | voroniys/puppet_compat |
d178ecd057a31f897289bf5d22cfbaf26af17f37 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
before_script:
- npm install -g gulp
| language: node_js
node_js:
- "6"
before_script:
- npm install -g gulp
| Use Node v6 for Travis. | Use Node v6 for Travis.
| YAML | mit | arendjr/selectivity,arendjr/selectivity |
3efff8d92eadda94a19e61c4bc32fa126a8c90fb | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.2.0
- 2.1.2
- 2.1.0
- 2.0.0
- 1.9.3
script: 'bundle exec rake'
notifications:
email:
on_failure: change
on_success: never
slack:
secure: j0pMnM5JiBxiNsFf1n4DtsNSSkmaSW6w8KRy9D5V0ArxPEr7GdlAVfmsgqFIsOCEnm7CvREvUDGEQqx2Y9oIUxjxtnKYhQgru+DG+dONZQIEtOyRGL4... | language: ruby
cache: bundler
rvm:
- 2.2.0
- 2.1.2
- 2.1.0
- 2.0.0
script: 'bundle exec rake'
notifications:
email:
on_failure: change
on_success: never
slack:
secure: j0pMnM5JiBxiNsFf1n4DtsNSSkmaSW6w8KRy9D5V0ArxPEr7GdlAVfmsgqFIsOCEnm7CvREvUDGEQqx2Y9oIUxjxtnKYhQgru+DG+dONZQIEtOyRGL4UQKYDms/84... | Drop testing support for Ruby 1.9.3 | Drop testing support for Ruby 1.9.3
| YAML | mit | usmanbashir/haikunator |
5c3c208bd4c1d5b56e0e2f973773925612b1c394 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
before_script: npm install -g npm@latest
install:
- ./tests/travis-install.sh
- npm install
script: make test
| language: node_js
node_js:
- "6"
install:
- ./tests/travis-install.sh
- npm install
script: make test
| Remove redundant line from Travis configuration | Remove redundant line from Travis configuration
| YAML | mit | smallstoneapps/bitmap-loader,smallstoneapps/bitmap-loader,smallstoneapps/bitmap-loader |
2a1edd32b70eb4e14828f86b8556d274b7e683a6 | .travis.yml | .travis.yml | sudo: required
language: java
jdk: oraclejdk8
dist: trusty
branches: master
cache:
directories:
- $HOME/.m2
- $HOME/chrome-archive
before_install:
- sudo apt-get install libxss1 libappindicator1 libindicator7
- mkdir -p chrome-archive
- wget -qnc https://dl.google.com/linux/direct/google-chrome-stable... | sudo: required
language: java
jdk: oraclejdk8
dist: trusty
branches: master
cache:
directories:
- $HOME/.m2
before_install:
- sudo apt-get install libxss1 libappindicator1 libindicator7
- mkdir -p chrome-archive
- wget -qnc https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O chr... | Disable cache directory for Chrome | Disable cache directory for Chrome
| YAML | mit | paine1690/cdp4j,paine1690/cdp4j,paine1690/cdp4j |
3efc46865def693a56ad4ff63739f03a37216278 | .travis.yml | .travis.yml | language: go
go:
- 1.8
install:
- mkdir -p $HOME/gopath/src/k8s.io
- mv $TRAVIS_BUILD_DIR $HOME/gopath/src/k8s.io/kube-state-metrics
jobs:
include:
- stage: Unit Test
script: make test-unit
- stage: Build
script: make
| language: go
go:
- 1.8
install:
- mkdir -p $HOME/gopath/src/k8s.io
- mv $TRAVIS_BUILD_DIR $HOME/gopath/src/k8s.io/kube-state-metrics
jobs:
include:
- stage: Go fmt
script: make gofmtcheck
- stage: Unit Test
script: make test-unit
- stage: Build
script: make
| Add gofmt Stage in Travis.yml | Add gofmt Stage in Travis.yml | YAML | apache-2.0 | kubernetes/kube-state-metrics,kubernetes/kube-state-metrics |
a144d4ee5c5516a6e300bb19ff874190fa7d9508 | .travis.yml | .travis.yml | # Travis CI Configuration
language: node_js
node_js:
- "7"
- "6"
- "5"
- "4"
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- ./node_modules/brunch/bin/brunch build
script:
- npm run lint
- npm test
| # Travis CI Configuration
language: node_js
node_js:
- "7"
- "6"
- "5"
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
before_script:
- ./node_modules/brunch/bin/brunch build
script:
- npm run lint
- npm test
| Remove Node 4 testing from Travis config | Remove Node 4 testing from Travis config
| YAML | mit | caleb531/connect-four |
e7826c9cc436dc800db557cfb83a15945bd180bb | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0
- 2.1
- 2.2
script: bundle exec rspec
matrix:
include:
- rvm: jruby-19mode # JRuby in 1.9 mode
env: JRUBY_OPTS="--1.9 -Xcext.enabled=true"
allow_failures:
- rvm: jruby-19mode
| language: ruby
rvm:
- 2.0
- 2.1
- 2.2
script: bundle exec rspec
| Drop Jruby support that we never really had anyway | Drop Jruby support that we never really had anyway
| YAML | mit | sportngin/opsicle |
40d18da4f722a2b0749863be39ba92d4e439e4c4 | .travis.yml | .travis.yml | dist: bionic
language:
- generic
before_install:
- docker-compose up -d
- docker ps
- docker images
script:
- CHTSH_URL=http://localhost:8002 bash tests/run-tests.sh
| dist: bionic
language:
- generic
before_install:
- docker-compose up -d
- docker ps
- docker images
script:
- curl http://localhost:8002
- CHTSH_URL=http://localhost:8002 bash tests/run-tests.sh
| Test server is up with `curl` before running tests | Test server is up with `curl` before running tests
| YAML | mit | chubin/cheat.sh,chubin/cheat.sh,chubin/cheat.sh,chubin/cheat.sh |
a70f412225f87f9dbc16db7267b29dd0b8a76121 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "pypy"
install:
- pip install -r testing_requirements.txt
- travis_retry pip install coverage
script:
- virtualenv --version
- coverage --version
- cram --version
- python setup.py install
- cram t... | language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "pypy3"
install:
- pip install -r testing_requirements.txt
- travis_retry pip install coverage
script:
- virtualenv --version
- coverage --version
- cram --version
- python setup.py install
- cram tests/bin/te... | Update Python versions in Travis yml file | Update Python versions in Travis yml file
| YAML | mit | MisanthropicBit/bibpy,MisanthropicBit/bibpy |
95421fc99c7771bfa0dcd7a76fa23cb0f8b43b11 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
install:
- pip install .
- pip install coveralls
script:
- coverage run --source=quantiphy setup.py test
deploy:
provider: pypi
user: messenger
on:
tags: true
after_success:
coveralls
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "nightly"
install:
- pip install .
- pip install coveralls
script:
- coverage run --source=quantiphy setup.py test
deploy:
provider: pypi
user: messenger
on:
tags: true
after_success:
coveralls
| Add python3.6 to test list. | Add python3.6 to test list.
| YAML | mit | KenKundert/quantiphy,KenKundert/quantiphy |
72435c3e705cce083ada1fde788806749152c38b | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
install:
# Build iPST core
- git clone https://github.com/itesla/ipst-core itesla/ipst-core
- cd itesla/ipst-core && mvn install
script:
- mvn clean test jacoco:report coveralls:report
| language: java
jdk:
- oraclejdk8
install:
# Build iPST core
- git clone https://github.com/itesla/ipst-core itesla/ipst-core
- cd itesla/ipst-core && mvn install
script:
- cd ${TRAVIS_BUILD_DIR}
- mvn clean test jacoco:report coveralls:report
| Change directory to TRAVIS_BUILD_DIR before commit | Change directory to TRAVIS_BUILD_DIR before commit
| YAML | mpl-2.0 | itesla/ipst,itesla/ipst-entsoe,itesla/ipst,itesla/ipst,itesla/ipst,itesla/ipst,itesla/ipst,itesla/ipst,itesla/ipst,itesla/ipst-entsoe |
711ea80c89128ce67af306dd0728da38f5332eb7 | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: node_js
node_js:
- "8"
cache:
bundler: true
pip: true
yarn: true
directories:
- "$HOME/.npm"
- "$HOME/.cache"
install:
- travis_retry gem install s3_website -v 3.4.0
- travis_retry pip install awscli --upgrade --user
- travis_retry yarn install --frozen-lockfile
scri... | dist: trusty
sudo: false
language: node_js
node_js:
- "10"
cache:
bundler: true
pip: true
yarn: true
directories:
- "$HOME/.npm"
- "$HOME/.cache"
install:
- travis_retry gem install s3_website -v 3.4.0
- travis_retry pip install awscli --upgrade --user
- travis_retry yarn install --frozen-lockfile
scr... | Update to node.js version 10 | Update to node.js version 10
| YAML | mit | concord-consortium/cloud-file-manager,concord-consortium/cloud-file-manager,concord-consortium/cloud-file-manager,concord-consortium/cloud-file-manager |
02ed8ed4a737e3d6d2de1b2b47d190d6bb4cc80e | .travis.yml | .travis.yml | language: objective-c
cache: cocoapods
before_install:
- pod repo --silent update
xcode_workspace: Swindler.xcworkspace
xcode_scheme: Swindler
osx_image: xcode8.3
xcode_sdk: macosx10.12
script: xcodebuild -workspace Swindler.xcworkspace -scheme Swindler -sdk macosx10.12 build test
| language: objective-c
cache: cocoapods
#before_install:
#- pod repo --silent update
xcode_workspace: Swindler.xcworkspace
xcode_scheme: Swindler
osx_image: xcode8.3
xcode_sdk: macosx10.12
script: xcodebuild -workspace Swindler.xcworkspace -scheme Swindler -sdk macosx10.12 build test
| Disable pod repo update (not needed after caching) | Travis: Disable pod repo update (not needed after caching)
| YAML | mit | tmandry/Swindler,tmandry/Swindler,tmandry/Swindler |
7e23e7c36226a7b9a3097402701d656bf0f8ddf1 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 || $TRAVIS_PYTHON_VERSION == 3.2 || $TRAVIS_PYTHON_VERSION == 3.3 ]]; then
pip install flake8==2.6.0;
else
pip install flake8;
fi
- if [[ $TRAVIS_PYT... | language: python
sudo: false
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- 3.5
- 3.6
install:
- if [[ $TRAVIS_PYTHON_VERSION == 2.6 || $TRAVIS_PYTHON_VERSION == 3.2 || $TRAVIS_PYTHON_VERSION == 3.3 ]]; then
pip install flake8==2.6.0;
else
pip install flake8;
fi
- if [[ $TRAVIS_PYT... | Add all test files to flake8 | Add all test files to flake8
| YAML | bsd-3-clause | Remolten/galena |
50af3b2496c63e09501f2c8134515cf29a729291 | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
notifications:
email: me@lukevella.com
| language: node_js
node_js:
- "8"
branches:
only:
- gh-pages
- /.*/
notifications:
email: me@lukevella.com
| Build gh-pages branch in Travis | Build gh-pages branch in Travis
| YAML | mit | lukevella/react-activity,lukevella/react-activity,lukevella/react-activity |
21b7014809ea53cd8f2c6fb00b4f93ac831707e3 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- nightly
dist: trusty
sudo: false
matrix:
include:
- language: generic
python: 2.7
os: osx
- language: generic
python: 3.3
os: osx
- language: generic
python: 3.4
os: osx
- language: generic
... | language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- nightly
dist: trusty
sudo: false
matrix:
include:
- language: generic
python: 2.7
os: osx
- language: generic
python: 3.4
os: osx
- language: generic
python: 3.5
os: osx
- language: generic
python:... | Update Travis CI config: add Python 3.7, remove 3.3 | Update Travis CI config: add Python 3.7, remove 3.3
| YAML | apache-2.0 | kislyuk/rehash |
dd4701fa96c6cf319fe7a69e819d961c8e0eb3d3 | .travis.yml | .travis.yml | language: php
php:
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
- composer install --no-interaction
- cp config/app_travis.php config/app.php
- cp config/oauth_example.php config/oauth.php
- mysql -e 'create database pmaerr;'
- wget https://scrutinizer-ci.com/ocular.phar
script:
- bin/cake ... | language: php
php:
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
# Set the GitHub OAuth token to make use of the 6000 per hour rate limit
- echo "{\"config\": { \"github-oauth\": { \"github.com\": \"$COMPOSER_GITHUB_API\" } } }" > ~/.composer/config.json
- composer install --no-interaction
- cp... | Set the GitHub OAuth token to make use of the 6000 per hour rate limit | Set the GitHub OAuth token to make use of the 6000 per hour rate limit
Signed-off-by: Michal Čihař <a2df1e659c9fd2578de0a26565357cb273292eeb@cihar.com>
| YAML | mit | devenbansod/error-reporting-server,ujjwalwahi/error-reporting-server,madhuracj/error-reporting-server,ujjwalwahi/error-reporting-server,phpmyadmin/error-reporting-server,phpmyadmin/error-reporting-server,devenbansod/error-reporting-server,phpmyadmin/error-reporting-server,ujjwalwahi/error-reporting-server,madhuracj/err... |
cbd83e6de2d38b39387f9cf7c8fc591b4305bbea | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4.1
cache: bundler
script:
- bundle exec rake
| language: ruby
rvm:
- 2.4.1
cache: bundler
script:
- bundle exec rake
notifications:
slack:
secure: "AMximRC5Ot0LC3wFSsjohxfhpcLrt/MESwf6tdVZ31jPlTXSv0yOna2w12Cc1Npdo1N/zGSnA0Y/9px0eV1ip6lBlOURuS8P6ySRJAldLpqzxnmeN8A/Q53QGhNgrXDxrlOl8V1CUXyzNyMeDrFkeHgAR+fbjbep1JtDBaM0x3pNpRmZiCZF0DP2bibsc6jifMOHElLqFXg7sQoyO... | Add Travis integration for Slack | Add Travis integration for Slack
This will allow to receive notifications in Slack when Travis is
finished running
| YAML | mit | survival/donation-system,survival/donation-system |
e2d7b701b69e4d795e732cf37fca0f1945aebafa | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.1
- 2.2
- 2.1
- 2.0
| language: ruby
rvm:
- 2.4
- 2.3
- 2.2
- 2.1
| Update Travis for supported Ruby versions. | Update Travis for supported Ruby versions.
| YAML | mit | chadrem/market_bot,chadrem/market_bot |
5498735de5dbc5750bcf8e3638be3513da151211 | .travis.yml | .travis.yml | language: go
go:
- 1.1
- tip
env:
global:
- secure: "wF08rryl1Fo5H8WSB2Dwp9In2kqL1yiGNH7OlMDZ4aG0LmBeQRF0c4RJIZBkgLAROSnc77bizpGzhVdvio0u7mXQW3+EV7QOwBhcD1FV5KzGCy9dbha8X9dtl09PkxSRap2V/EiwR3/JuFdlbs3R2TSHyeCfIxZLA13Vj3MfRnw="
install:
- make prepare
script: /home/travis/gopath/bin/goveralls -service t... | language: go
go:
- 1.1
- tip
env:
global:
- secure: "wF08rryl1Fo5H8WSB2Dwp9In2kqL1yiGNH7OlMDZ4aG0LmBeQRF0c4RJIZBkgLAROSnc77bizpGzhVdvio0u7mXQW3+EV7QOwBhcD1FV5KzGCy9dbha8X9dtl09PkxSRap2V/EiwR3/JuFdlbs3R2TSHyeCfIxZLA13Vj3MfRnw="
install:
- sudo apt-get install libzmq3-dev
- make prepare
script: /home/t... | Install zmq dev package in Travis. | Install zmq dev package in Travis.
| YAML | mit | smira/czar |
b3ae7e5216f0b84828d5ac22eba5b37f414dc9f1 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
| Test on `stable` instead of `iojs` | Test on `stable` instead of `iojs`
| YAML | mit | imagemin/gifsicle-bin,jihchi/giflossy-bin |
27f6f914f58ff9a2216e7d005a4f0ba50e542d38 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
before_script:
- 'npm install -g bower grunt-cli'
- 'bower install'
| sudo: false
language: node_js
node_js:
- "5.3"
- "5"
- "5.1"
- "4"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "iojs"
before_script:
- 'npm install -g bower grunt-cli'
- 'bower install'
| Add more NodeJS versions to test with Travis | Add more NodeJS versions to test with Travis
| YAML | mit | jglouis/HexMapJS,jglouis/HexMapJS |
6e9e659689cdb184d809afefb9ce3f45e54aa071 | .travis.yml | .travis.yml | env:
- CABALVER=1.16 GHCVER=7.4.2
- CABALVER=1.16 GHCVER=7.6.3
- CABALVER=1.20 GHCVER=7.8.4
- CABALVER=1.22 GHCVER=7.10.1
- CABALVER=head GHCVER=head
matrix:
allow_failures:
- env: CABALVER=head GHCVER=head
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update -qq
install:
- sud... | env:
- CABALVER=1.16 GHCVER=7.4.2
- CABALVER=1.16 GHCVER=7.6.3
- CABALVER=1.20 GHCVER=7.8.4
- CABALVER=1.22 GHCVER=7.10.1
- CABALVER=head GHCVER=head
matrix:
allow_failures:
- env: CABALVER=head GHCVER=head
before_install:
- sudo add-apt-repository -y ppa:hvr/ghc
- sudo apt-get update -qq
install:
- sud... | Install xmonad-710 after cabal update | Install xmonad-710 after cabal update
| YAML | bsd-3-clause | markus1189/xmonad-contrib-710,markus1189/xmonad-contrib-710 |
f5e47030f3b0a6d33e2176e47adeab7f6140098e | .travis.yml | .travis.yml | # Cf. http://docs.travis-ci.com/user/getting-started/
# Cf. http://docs.travis-ci.com/user/languages/go/
language: go
go:
- 1.4.2
- tip
| # Cf. http://docs.travis-ci.com/user/getting-started/
# Cf. http://docs.travis-ci.com/user/languages/go/
language: go
go: 1.5
| Use Go 1.5 for Travis instead of 1.4.2 and tip. | Use Go 1.5 for Travis instead of 1.4.2 and tip.
| YAML | apache-2.0 | jacobsa/ratelimit |
03e353783c01b8542a2364dcc865ec7cb9d7e408 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- pip install -r requirements.txt
- npm install
script:
- npm run apidocs
after_success:
- npm run apidocs-deploy
| language: python
python:
- "2.7"
install:
- pip install -r requirements.txt
- npm install
script:
- npm run apidocs
deploy:
provider: script
script: npm run apidocs-deploy
on:
branch: master
| Set up conditional deploys on Travis | Set up conditional deploys on Travis
| YAML | unlicense | dbader/apidoc-example |
c4549c717895964f9ab0f7e6a70b06d9844a8d18 | .travis.yml | .travis.yml | language: python
dist: precise
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
install:
- pip install -r requirements.txt
# Coveralls 4.0 doesn't support Python 3.2
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
- if [ "$... | language: python
dist: precise
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
install:
- pip install -r testing_requirements.txt
# Coveralls 4.0 doesn't support Python 3.2
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then travis_retry pip install coverage==3.7.1; fi
-... | Use testing requirements file on Travis | Use testing requirements file on Travis
| YAML | mit | MisanthropicBit/bibpy,MisanthropicBit/bibpy |
de07c4b885bb027de1141b90882382d95a4edc5b | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '6'
- '5'
| sudo: false
language: node_js
node_js:
- '6'
- '5'
deploy:
provider: npm
email: npm@riviello.net
api_key:
secure: CLGrCAqcCcTDnVgqyR5F4giizaQskzTuc2VXV2c0d5CGhh1VflekcA7PYpRVS5DDUiGJ/T0nTR/EuxKIo8geiQoMnWBtIWo6IYtBTiEA0G4utIXiaCapfN9KQwYbRkhJKBSUnFaBGmEnl9THgwy6CfDEh4EuFpU6q3dXwF2lvcaEkmpfMPC7/ChkBVH362MEKCtR... | Use Travis CI for NPM releases | Use Travis CI for NPM releases
| YAML | mit | JohnRiv/gulp-polymer-css-build,JohnRiv/gulp-polymer-css-build |
bb58044f0df0cbc19c0137c636b5c652b06cb949 | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
rvm:
- '2.3.0'
- '2.2'
- '2.1'
- '2.0'
- jruby
- rbx-2
gemfile:
- gemfiles/Gemfile.rails-head
- gemfiles/Gemfile.rails-4-2
- gemfiles/Gemfile.rails-4-1
- gemfiles/Gemfile.rails-4-0
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-2
- gemfile: gemfiles/Gemf... | language: ruby
bundler_args: --without development
rvm:
- '2.3.0'
- '2.2'
- '2.1'
gemfile:
- gemfiles/Gemfile.rails-head
- gemfiles/Gemfile.rails-4-2
- gemfiles/Gemfile.rails-4-1
- gemfiles/Gemfile.rails-4-0
matrix:
exclude:
- rvm: '2.2'
gemfile: gemfiles/Gemfile.rails-head
- rvm: '2.1'
gemfile: g... | Drop Jruby and Rbx; taking ages, Drop 2.0 (old), Exclude <2.3 fo Rails Head (5+) | Drop Jruby and Rbx; taking ages, Drop 2.0 (old), Exclude <2.3 fo Rails Head (5+)
| YAML | mit | jgraichen/rails-rfc6570,jgraichen/rails-rfc6570 |
6abecd06af87bde45aabb04a20a54de45e16dbeb | .travis.yml | .travis.yml | language: python
python:
- "3.6"
install:
- pip install cython
- python setup.py install
# functionality is tested in the pyranges package
script: cd ~/; python -c 'import pyrle; print(pyrle.__version__)'
| language: python
python:
- "3.6"
install:
- pip install cython
- sudo apt-get install R
- echo 'source("https://bioconductor.org/biocLite.R"); biocLite("S4Vectors"); biocLite("GenomicRanges")' > install.R
- python setup.py install
# functionality is tested in the pyranges package
script: cd ~/; python -c 'im... | Install R for remote tests | Install R for remote tests
| YAML | mit | pyranges/pyrle,pyranges/pyrle |
99efde54184c77ef51099b47a590c259d0efbcf3 | .travis.yml | .travis.yml | language: objective-c
xcode_workspace: Tests/NSString-HYPFormula.xcworkspace
xcode_scheme: NSString-HYPFormulaTests
| language: objective-c
xcode_workspace: Tests/NSString-HYPFormula.xcworkspace
xcode_scheme: NSString-HYPFormulaTests
-sdk iphonesimulator
| Add sdk to Travis configuration | Add sdk to Travis configuration
| YAML | mit | hyperoslo/NSString-HYPFormula |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.