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 |
|---|---|---|---|---|---|---|---|---|---|
fb4b8063d6695e5c4f34bff61ce2967354f7f505 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
| Drop support for Node.js 8 early. | Drop support for Node.js 8 early.
| YAML | mit | bigeasy/turnstile |
ea47278b02931cea78e2f90fdb5efd294366e210 | .travis.yml | .travis.yml | ---
os: linux
dist: xenial
language: ruby
cache: bundler
rvm:
- 2.7.0
- 2.6.5
- 2.5.7
- ruby-head
- jruby-9.2.9.0
matrix:
allow_failures:
- rvm: jruby-9.2.9.0
| ---
os: linux
dist: xenial
language: ruby
cache: bundler
rvm:
- 2.7.1
- 2.6.6
- 2.5.8
- ruby-head
- jruby-9.2.11.0
matrix:
allow_failures:
- rvm: jruby-9.2.9.0
| Test with latest Ruby versions | Test with latest Ruby versions
| YAML | mit | pitluga/keepassx |
dcb1184db12ccdc6f143a1338049afb021ae0d9a | .travis.yml | .travis.yml | # Travis CI Configuration
language: python
python:
- "3.4"
- "3.5"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run -m nose
- pycodestyle cachesimulator/*.py
after_success:
- coveralls
| # Travis CI Configuration
language: python
python:
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run -m nose
- pycodestyle cachesimulator/*.py
after_success:
- coveralls
| Add Python 3.6 to CI pipeline | Add Python 3.6 to CI pipeline
| YAML | mit | caleb531/cache-simulator |
2ed8f9866aa096e1d410529511e7dd333fc8408d | .travis.yml | .travis.yml | language: objective-c
script:
- xctool test -project FBTweak.xcodeproj -scheme FBTweak -sdk iphonesimulator8.1 -destination "platform=iOS Simulator,OS=8.1,name=iPhone 6"
- xctool archive -workspace FBTweakExample.xcworkspace -scheme FBTweakExample CODE_SIGN_IDENTITY="-"
| language: objective-c
script:
- xctool test -project FBTweak.xcodeproj -scheme FBTweak -sdk iphonesimulator8.1 -destination "platform=iOS Simulator,OS=8.1,name=iPhone 6"
- xctool archive -workspace FBTweakExample.xcworkspace -scheme FBTweakExample CODE_SIGNING_REQUIRED=NO
| Use `CODE_SIGNING_REQUIRED=NO` to disable code signing, instead of ad-hoc signing | Use `CODE_SIGNING_REQUIRED=NO` to disable code signing, instead of ad-hoc signing
| YAML | bsd-3-clause | Uberchord/Tweaks,Uberchord/Tweaks,flovilmart/Tweaks,flovilmart/Tweaks |
4929dad102c49834c29764bfd3b715d824dde695 | .travis.yml | .travis.yml | language: d
sudo: false
matrix:
include:
- d: dmd-nightly
- d: dmd-2.094.2
- d: dmd-2.093.0
- d: dmd-2.092.1
- d: ldc-1.24.0
allow_failures:
- d: dmd-nightly
script:
- build/ci.sh
# - dub build -b ddox
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: d
sudo: false
matrix:
include:
- d: dmd-nightly
- d: dmd-2.094.2
- d: dmd-2.093.0
- d: dmd-2.092.1
allow_failures:
- d: dmd-nightly
script:
- build/ci.sh
# - dub build -b ddox
after_success:
- bash <(curl -s https://codecov.io/bash)
| Remove ldc from Travis CI configuration | Remove ldc from Travis CI configuration
| YAML | bsd-3-clause | atilaneves/unit-threaded,atilaneves/unit-threaded |
ed0148bfee59c091972ca5da0626ce5bec6d1405 | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
script: mvn clean install -DskipTests
notifications:
slack:
rooms:
- secure: H82Q57T5nRNDfVnxzlWZ2WoeGt71oq2eJGHbqJ4wP2tIc8b02UO9bztPKFxbm9slMu0JjxZdJfnHSgNZKfPVXrTqwPYRVjKqm7m9TynIlkQabV+yCI/oRvy4Xi/Xj7/aPvZat4s/bxjrtw9KwVdpmqWvRNNSgiTqQ4teBJ1uQGs=
on_success: change
... | language: java
jdk: oraclejdk8
notifications:
slack:
rooms:
- secure: H82Q57T5nRNDfVnxzlWZ2WoeGt71oq2eJGHbqJ4wP2tIc8b02UO9bztPKFxbm9slMu0JjxZdJfnHSgNZKfPVXrTqwPYRVjKqm7m9TynIlkQabV+yCI/oRvy4Xi/Xj7/aPvZat4s/bxjrtw9KwVdpmqWvRNNSgiTqQ4teBJ1uQGs=
on_success: change
on_failure: always
| Enable running tests in Travis CI | Enable running tests in Travis CI
This change removes the custom `script` command, falling back to Travis
CI's default Maven script command, which, per [1] is:
mvn test -B
The effect is that tests should now be run, which is particularly useful
for incoming pull requests.
See https://github.com/bisq-network/exc... | YAML | agpl-3.0 | bitsquare/bitsquare,bisq-network/exchange,bisq-network/exchange,bitsquare/bitsquare |
287fcf935377a96d9520722e8691d9b9149a26b9 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
- clang
matrix:
include:
- compiler: gcc
env: ANDROID_NDK=/tmp/android-ndk
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libexpat1-dev libssl-dev libev-dev
- wget http://dl.google.com/android/ndk/android-ndk-r8b-linux-x86.tar.b... | language: c
compiler:
- gcc
- clang
matrix:
include:
- compiler: gcc
env: ANDROID_NDK=/tmp/android-ndk
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libexpat1-dev libssl-dev libev-dev
- wget http://dl.google.com/android/ndk/android-ndk-r8b-linux-x86.tar.b... | Fix path in Travis CI Android build. | Fix path in Travis CI Android build.
| YAML | mit | BellerophonMobile/xmp3,BellerophonMobile/xmp3,BellerophonMobile/xmp3 |
bc674058614d284a06c47f70791373965ddcff0a | .travis.yml | .travis.yml | language: python
python: "3.5"
addons:
apt:
packages:
- oracle-java8-set-default
script: ./test/python/travisci.sh
| language: python
python: "3.5"
addons:
apt:
packages:
- oracle-java8-set-default
install:
- pip install flake8 # pytest # add another testing frameworks later
before_script:
# stop the build if there are Python syntax errors or undefined names
- time flake8 . --count --select=E901,E999,F821,F8... | Add flake8 linter to the testing | Add flake8 linter to the testing
http://flake8.readthedocs.io | YAML | apache-2.0 | wmarshall484/streamsx.topology,IBMStreams/streamsx.topology,IBMStreams/streamsx.topology,IBMStreams/streamsx.topology,wmarshall484/streamsx.topology,ddebrunner/streamsx.topology,wmarshall484/streamsx.topology,ddebrunner/streamsx.topology,IBMStreams/streamsx.topology,wmarshall484/streamsx.topology,ddebrunner/streamsx.to... |
5fe31efd60a5f6ee09df63eeec829afca8bcf827 | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | Add oraclejdk7 to Travis CI builds. | Add oraclejdk7 to Travis CI builds. | YAML | apache-2.0 | apache/commons-compress,apache/commons-compress,apache/commons-compress |
c5b68eb7f694507498ad6eb3cae91d1946417ad7 | .travis.yml | .travis.yml | sudo: required
services: docker
language: go
install: true
#Update to last docker engine
before_install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
before_script:
- if [ "$TRAVIS_BRANCH" = "master" -a "$TRAVIS_PULL_REQUEST" = "false" ]; then docker login... | language: go
sudo: true
services:
- docker
before_install:
- curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
- sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable"
- sudo apt-get update
- sudo apt-get -y install docker-ce
... | Update docker version new method | Update docker version new method | YAML | mit | sapk/dockerfiles |
250c136b003eaea64eba3ad8339a78f7d2695f81 | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.1.5"
- "2.2.0"
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
addons:
code_climate:
repo_token:
secure: "OiAufYEMH27BpR1G5Yy7il8ZVkzQ/9327ex9Jo0MljXJLeuakhm6oe/sLmR0GOhOQypKWOmCQ+CNEd9Nn3G8lOlSocxlQCpn0kAsfu8FUz6m... | language: ruby
rvm:
- "2.1.5"
- "2.2.0"
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
addons:
code_climate:
repo_token:
secure: "TDtg1SY+50yvYL8nRhf3YG2xtyS4b7wdJddGL7BRvYHkn5jhmGAXRU9F9+IRyPLPlwwd/VX2zxClmU4hr3DAbb7C/JUscNmVUcDeiwlMOIEU... | Add code climate repo token | Add code climate repo token
| YAML | mit | dmandalinic/pragmatic_segmenter,diasks2/pragmatic_segmenter |
08090628ba891effb7491bcf6888180284fe8c37 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
sudo: false
before_install:
- "npm install -g bower"
- "bower install"
- "npm install -g web-component-tester"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "wct"
| language: node_js
node_js:
- "0.12"
addons:
firefox: latest
sudo: false
before_install:
- "npm install -g bower"
- "bower install"
- "npm install -g web-component-tester"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "wct"
| Test with latest browser version | Test with latest browser version | YAML | apache-2.0 | Collaborne/paper-bottom-sheet |
be5a7caa5b601aba74ce692f18794e66703bf693 | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
env:
- PUPPET_GEM_VERSION="~> 3.0"
- PUPPET_GEM_VERSION="~> 3.5.0"
- PUPPET_GEM_VERSION="~> 4.1.0"
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0"
- rv... | ---
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
env:
- PUPPET_GEM_VERSION="~> 3.0"
- PUPPET_GEM_VERSION="~> 4.0"
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION... | Check latest major Puppet releas on Travis CI | Check latest major Puppet releas on Travis CI
| YAML | bsd-2-clause | smoeding/puppet-sendmail |
68dbdec20a446cc9608c1dcbc81ab8ae7f466d66 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
allow_failures:
- php: 7
- php: hhvm
before_install:
- wget http://get.sensiolabs.org/php-cs-fixer.phar
before_script:
- composer self-update
- composer install --dev
- mkdir -p build/cov
- mkdir -p build/logs
script:
- ./vendo... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm
matrix:
allow_failures:
- php: 7
- php: hhvm
before_install:
- wget http://get.sensiolabs.org/php-cs-fixer.phar
before_script:
- composer self-update
- composer install --dev
- mkdir -p build/cov
- mkdir -p build/logs
script:
- ./vendo... | Revert "tweak command logic for checking for php-cs-fixer output. If more than 2 lines, exit with non 0 status code." | Revert "tweak command logic for checking for php-cs-fixer output. If more than 2 lines, exit with non 0 status code."
This reverts commit 6b0398667391c9234aaad794a003a1c93a7ba9af.
| YAML | bsd-2-clause | phergie/phergie-irc-bot-react |
dcef06678dc8c4c6a588d4be81584d1ad127bf9a | .travis.yml | .travis.yml | ---
notifications:
email:
on_success: never
language: node_js
node_js:
- '0.10'
cache:
directories:
- node_modules
env:
global:
- REPORTER=Dot
matrix:
- BUNDLE="ember=1.2.2&jQuery=1.10.2"
- BUNDLE="ember=1.2.2&jQuery=2.0.3"
- BUNDLE="ember=1.3.2&jQuery=1.10.2"
- BUNDLE="ember=1.3.2... | language: node_js
node_js:
- '0.10'
sudo: false
cache:
directories:
- node_modules
env:
global:
- REPORTER=Dot
matrix:
- BUNDLE="ember=1.2.2&jQuery=1.10.2"
- BUNDLE="ember=1.2.2&jQuery=2.0.3"
- BUNDLE="ember=1.3.2&jQuery=1.10.2"
- BUNDLE="ember=1.3.2&jQuery=2.0.3"
- BUNDLE="ember... | Use the new build env on Travis | Use the new build env on Travis
faster vms, more ram, more cpu, better boot times
docs coming soon | YAML | mit | ronnix/ember-simple-auth,simplabs/ember-simple-auth,jeffcressman/ember-simple-auth,parassaini/ember-simple-auth,jaswilli/ember-simple-auth,irnc/ember-simple-auth,stevenwu/ember-simple-auth,rmachielse/ember-simple-auth,bttf/ember-simple-auth,duggiefresh/ember-simple-auth,csantero/ember-simple-auth,quaertym/ember-simple-... |
8fc554751b4680bce6b4d0f4a732886093c218ee | .travis.yml | .travis.yml | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache/files
matrix:
allow_failures:
- php: 7
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- 7
before_install:
- composer config -g github-oauth.github.com 8a184177873281ce443912bd9f8fc4a959f7e7bb
- if [ "$... | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache/files
matrix:
allow_failures:
- php: 7
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- 7
before_install:
- composer config -g github-oauth.github.com 8a184177873281ce443912bd9f8fc4a959f7e7bb
- if [ "$... | Fix Travis CI build for PHP 5.4- | Fix Travis CI build for PHP 5.4-
| YAML | bsd-3-clause | console-helpers/svn-buddy |
20c4958e8a15bffeed8ec70c891180e89dc62fed | .travis.yml | .travis.yml |
language: python
python:
- "2.7"
- "3.6"
dist: trusty
sudo: required
branches:
only:
before_install:
- sudo apt-get install gfortran
- sudo apt-get install libopenmpi-dev
- sudo apt-get install openmpi-bin
- sudo apt-get install imagemagick
- pip install scipy
- pip install future
- pip install... |
language: python
python:
- "2.7"
- "3.6"
dist: trusty
sudo: required
branches:
only:
before_install:
- sudo apt-get install gfortran
- sudo apt-get install libopenmpi-dev
- sudo apt-get install openmpi-bin
- sudo apt-get install imagemagick
- pip install scipy
- pip install numpy
- pip install ... | Add new dependencies to Travis | Add new dependencies to Travis
| YAML | mit | edoddridge/MIM,edoddridge/aronnax |
f0d414dedea70dfd0150dbb7e696ac0de5d248e6 | .travis.yml | .travis.yml | language: csharp
solution: ReportUnit.sln
branches:
only:
- master
install:
- nuget restore ReportUnit.sln
- nuget install NUnit.Runners -Version 3.6.0 -OutputDirectory NUnitRunner
script:
- xbuild /p:Configuration=Release ReportUnit.sln
- mono ./NUnitRunner/NUnit.Runners.3.6.0/tools/nunit-console.e... | language: csharp
solution: ReportUnit.sln
branches:
only:
- master
install:
- nuget restore ReportUnit.sln
- nuget install NUnit.Runners -Version 3.6.0 -OutputDirectory NUnitRunner
script:
- xbuild /p:Configuration=Release ReportUnit.sln
- mono ./NUnitRunner/NUnit.ConsoleRunner.3.6.0/tools/nunit3-co... | Correct path to NUnit 3.6.0 runner | Correct path to NUnit 3.6.0 runner
| YAML | mit | ekirmayer/reportunit,ekirmayer/reportunit,reportunit/reportunit,reportunit/reportunit,reportunit/reportunit,ekirmayer/reportunit |
cb114587a9a238dbccf7570653f69a039f264b01 | .travis.yml | .travis.yml | language: go
env:
- GIMME_OS=linux GIMME_ARCH=amd64
- GIMME_OS=linux GIMME_ARCH=arm
- GIMME_OS=linux GIMME_ARCH=arm64
- GIMME_OS=darwin GIMME_ARCH=amd64
install:
- go get -d -v ./...
script:
- go build -v ./...
- zip git-get-${GIMME_OS}-${GIMME_ARCH}.zip git-get
- tar czvf git-get-${GIMME_OS}-${GIMME... | language: go
env:
- GIMME_OS=linux GIMME_ARCH=amd64
- GIMME_OS=linux GIMME_ARCH=arm
- GIMME_OS=linux GIMME_ARCH=arm64
- GIMME_OS=darwin GIMME_ARCH=amd64
install:
- go get -d -v ./...
script:
- go build -v ./...
- zip git-get-${GIMME_OS}-${GIMME_ARCH}.zip git-get
- tar czvf git-get-${GIMME_OS}-${GIMME... | Add tag to packaged output name | Add tag to packaged output name
| YAML | mit | homburg/git-get,homburg/git-get |
3fe12d957e79b372cd7c0b6af2d56c7ba514a955 | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not ... | Add oraclejdk7 to Travis CI. | Add oraclejdk7 to Travis CI.
git-svn-id: fd52ae19693b7be904def34076a5ebbd6e132215@1790594 13f79535-47bb-0310-9956-ffa450edef68
| YAML | apache-2.0 | apache/commons-jcs,apache/commons-jcs,apache/commons-jcs |
16ad6202378448042a969422ddc3f049f6bb00c5 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
| sudo: required
before_install: gem update --system
dist: trusty
language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.0
| Use latest Rubygems in Travis | Use latest Rubygems in Travis
A bug in Rubgems < 2.6.9 prevents the rainbow gem from being installed.
See: sickill/rainbow#44
| YAML | mit | mmozuras/pronto-eslint |
817e926dfba052ea6960ee806c7fee10dbd7ea52 | .travis.yml | .travis.yml | language: ruby
script: bundle exec rspec spec
sudo: false
cache: bundler
env:
- DB=sqlite3
- DB=sqlite3mem
- DB=postgresql
- DB=mysql
rvm:
- 2.7.0-preview1
- 2.6.3
- 2.5.5
addons:
postgresql: 9.4
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- ge... | language: ruby
script: bundle exec rspec spec
sudo: false
cache: bundler
env:
- DB=sqlite3
- DB=sqlite3mem
- DB=postgresql
- DB=mysql
rvm:
- 2.7.1
- 2.6.6
- 2.5.8
addons:
postgresql: 9.4
gemfile:
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/ra... | Use latest Ruby versions in CI | Use latest Ruby versions in CI | YAML | mit | collectiveidea/awesome_nested_set |
f1296ed0bc150e9359b50f0ac671b4f98acca959 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.6.5
- 2.5.7
- 2.4.9
- jruby-9.2.9.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
| ---
os: linux
dist: xenial
language: ruby
cache: bundler
rvm:
- 2.6.5
- 2.5.7
- 2.4.9
- jruby-9.2.13.0
env:
global:
- JRUBY_OPTS="--debug"
after_success:
- bundle exec codeclimate-test-reporter
| Update Travis config, test with latest JRuby | Update Travis config, test with latest JRuby
| YAML | mit | jbox-web/job-database-manager |
679795399a81c10aa733f9f7f1b44cec204d6377 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
env:
global:
- CORE_BRANCH=master
matrix:
- DB=sqlite
branches:
only:
- master
- /^stable\d+(\.\d+)?$/
before_install:
# - composer install
- wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh
- bash ./before... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7
env:
global:
- CORE_BRANCH=master
matrix:
- DB=sqlite
branches:
only:
- master
- /^stable\d+(\.\d+)?$/
before_install:
# - composer install
- wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh
-... | Add PHP 5.6 and PHP 7 to test matrix | Add PHP 5.6 and PHP 7 to test matrix | YAML | agpl-3.0 | owncloud/search_lucene,owncloud/search_lucene,owncloud/search_lucene,owncloud/search_lucene |
7d0a777a39c5572e7de2d9149d07378b06e89991 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
install:
- pip install -r requirements.txt
script:
- coverage run tests/run_tests.py
after_success:
- codecov | os:
- linux
- osx
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
install:
- pip install -r requirements.txt
script:
- coverage run tests/run_tests.py
after_success:
- codecov | Test on both linux and Mac on Travis CI | Test on both linux and Mac on Travis CI
| YAML | mit | gatkin/declxml |
316c2d7e546ab961f425652971c4d2a46482986f | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
matrix:
- DJANGO_VERSION=">=1.5,<1.6"
- DJANGO_VERSION=">=1.6,<1.7"
- DJANGO_VERSION=">=1.7,<1.8"
- DJANGO_VERSION=">=1.8,<1.9"
install: pip install -r requirements_test.txt Django$DJANGO_VERSION python-binary-memcached --use-mirrors
script:... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
matrix:
- DJANGO_VERSION=">=1.5,<1.6"
- DJANGO_VERSION=">=1.6,<1.7"
- DJANGO_VERSION=">=1.7,<1.8"
- DJANGO_VERSION=">=1.8,<1.9"
install: pip install -r requirements_test.txt Django$DJANGO_VERSION python-binary-memcached
script: ./.travis-run... | Remove use mirrors from pip | Remove use mirrors from pip
| YAML | mit | jaysonsantos/django-bmemcached,jaysonsantos/django-bmemcached |
3e50ed8fdec2c4e836d6ec2b49b1ce3a5f5fb079 | .travis.yml | .travis.yml | language: node_js
node_js:
- "lts/*"
cache: yarn
| language: node_js
node_js:
- "lts/*"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$PATH"
cache: yarn
| Use latest Yarn on CI | :construction_worker: Use latest Yarn on CI
| YAML | mit | gluons/vue-thailand-address |
207ff1d06d0aeecff6e10e047781d84752176b34 | .travis.yml | .travis.yml | language: go
go:
- 1.7
- tip
matrix:
allow_failures:
- go: tip
env:
- DBNAME=kallax_test
- DBUSER=postgres
- DBPASS=''
services:
- postgresql
before_script:
- psql -c 'create database kallax_test;' -U postgres
install:
- go get -t -v .
- go get -t -v ./generator/...
script:
- make... | language: go
go:
- 1.7
- tip
matrix:
allow_failures:
- go: tip
env:
- DBNAME=kallax_test DBUSER=postgres DBPASS=''
services:
- postgresql
before_script:
- psql -c 'create database kallax_test;' -U postgres
install:
- go get -t -v .
- go get -t -v ./generator/...
script:
- make test
a... | Put all env vars in one line to avoid build matrix | Put all env vars in one line to avoid build matrix
| YAML | mit | src-d/go-kallax |
44f6e0499f8b455fe78646aead27a432c50e8f0d | .travis.yml | .travis.yml | language: node_js
node_js:
- '14'
- '12'
- '10'
- '8'
env:
global:
- AEROSPIKE_HOSTS=127.0.0.1:3000,127.0.0.1:3100
- OPTIONS="--timeout 2000"
sudo: false
os: linux
dist: xenial
before_script:
- .travis/start_cluster.sh 2
install:
- npm install
script:
- npm run coverage
after_script:
- npm run codecov
notific... | language: node_js
node_js:
- '15'
- '14'
- '12'
- '10'
- '8'
env:
global:
- AEROSPIKE_HOSTS=127.0.0.1:3000,127.0.0.1:3100
- OPTIONS="--timeout 2000"
sudo: false
os: linux
dist: xenial
before_script:
- .travis/start_cluster.sh 2
install:
- npm install
script:
- npm run coverage
after_script:
- npm run codecov
... | Add Node.js 15 to test matrix | Add Node.js 15 to test matrix
| YAML | apache-2.0 | aerospike/aerospike-client-nodejs,aerospike/aerospike-client-nodejs,aerospike/aerospike-client-nodejs,aerospike/aerospike-client-nodejs,aerospike/aerospike-client-nodejs |
b768adaa98ea9d9bf0e3b790223c07c0dfc31958 | .travis.yml | .travis.yml | language: php
dist: bionic
php:
- "5.6"
- "7.0"
- "7.1"
- "7.2"
- "7.3"
- "7.4"
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
install: travis_retry composer install --no-interaction --prefer-source
script:
- vendor/bin/phpuni... | language: php
dist: bionic
php:
- "7.1"
- "7.2"
- "7.3"
- "7.4"
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
- php: 5.6
dist: xenial
- php: 7.0
dist: xenial
install: travis_retry composer install --no-interactio... | Fix PHP 5.6 and 7.0 tests | Fix PHP 5.6 and 7.0 tests
| YAML | mit | thephpleague/html-to-markdown,nickcernis/html-to-markdown,thephpleague/html-to-markdown,nickcernis/html-to-markdown |
fc9cd8d582d732330017e614b495de26bfab7435 | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- rbx
- jruby
- ruby-head
env: "JRUBY_OPTS=--1.9"
| rvm:
- 1.9.2
- 1.9.3
# - rbx crashing :(
- jruby
- ruby-head
env: "JRUBY_OPTS=--1.9"
| Disable rbx until it gets upgraded to a version that doesn't crash all the time | Disable rbx until it gets upgraded to a version that doesn't crash all the time
| YAML | mit | kenichi/celluloid,marshall-lee/celluloid,TiagoCardoso1983/celluloid,mehta/celluloid,jstoja/celluloid,dilumn/celluloid,davydovanton/celluloid,olleolleolle/celluloid,sideci-sample/sideci-sample-celluloid,celluloid/celluloid,tarcieri/celluloid,seuros/celluloid,jasonm23/celluloid |
dba3d9b316c4f2e3f2fa48ea804b922a0a38a55a | docker/docker-compose.yml | docker/docker-compose.yml | # Note that mongo container is started before Orion, as Orion needs it
# as dependency and reserve the order has been found problematic in some
# low resource hosts
# Uncomment the --smallfiles line if you host doesn't have too much free space
mongo:
image: mongo:2.6
#command: --smallfiles
orion:
build: .
lin... | # Note that mongo container is started before Orion, as Orion needs it
# as dependency and reserve the order has been found problematic in some
# low resource hosts
mongo:
image: mongo:2.6
command: --smallfiles --nojournal
orion:
image: fiware/orion
links:
- mongo
ports:
- "1026:1026"
command: -dbh... | FIX Remove comment in smallfiles and build. | FIX Remove comment in smallfiles and build.
| YAML | agpl-3.0 | Fiware/context.Orion,telefonicaid/fiware-orion,fiwareulpgcmirror/fiware-orion,Fiware/data.Orion,McMutton/fiware-orion,telefonicaid/fiware-orion,Fiware/context.Orion,fiwareulpgcmirror/fiware-orion,telefonicaid/fiware-orion,Fiware/context.Orion,Fiware/data.Orion,jmcanterafonseca/fiware-orion,fortizc/fiware-orion,Fiware/c... |
41d34e49d1244595592c514318aa046ca1a97ae9 | .travis.yml | .travis.yml | language: node_js
node_js:
- '6' # Latest "current" version
script:
- npm run lint
- npm run test | language: node_js
node_js:
- '6' # First supported version (implements the ES6 features we need)
- 'nodejs' # Latest stable release
script:
- npm run lint
- npm run test | Add latest stable to Travis build configs | Add latest stable to Travis build configs
| YAML | mit | CapacitorSet/box-js,CapacitorSet/box-js |
b9aaa63d5abf1cbc3eb7dccd3fd22e8eebea5032 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.3.0
before_install: gem install bundler -v 1.12.5
install:
- bundle install --jobs=3 --retry=3
- bundle exec rake compile
| sudo: false
language: ruby
rvm:
- 2.3.0
before_install:
- sudo apt-get update -qq
- sudo apt-get install librsync-dev -y
- gem install bundler -v 1.12.5
install:
- bundle install --jobs=3 --retry=3
- bundle exec rake compile
| Add librsync-dev to before_install script | Add librsync-dev to before_install script
| YAML | mit | daveallie/lib_ruby_diff,daveallie/lib_ruby_diff,daveallie/lib_ruby_diff |
d65f75c8b79480d9b3a0c5ae92bdcd67b66fa7cf | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- mkdir ~/.shout
- cp defaults/config.js ~/.shout
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4.0"
- "4.1"
before_script:
- mkdir ~/.shout
- cp defaults/config.js ~/.shout
| Add Node.js 0.12 and 4.x support to Travis CI | Add Node.js 0.12 and 4.x support to Travis CI | YAML | mit | olivierlambert/shout,diddledan/shout,realies/lounge,FryDay/lounge,erming/shout,williamboman/shout,thelounge/lounge,rockhouse/lounge,cha2maru/shout,williamboman/lounge,MaxLeiter/lounge,metsjeesus/lounge,Audio/shout,metsjeesus/lounge,FryDay/lounge,MaxLeiter/shout,olivierlambert/shout,erming/shout,busseyl/shout,libertysof... |
aa931f7eecfe52917f29d10d36da0500a08135f3 | .travis.yml | .travis.yml | language: c
sudo: required
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
dist: trusty
env:
global:
- EXTRA_DEPS="inotify"
matrix:
- OCAML_VERSION=4.02 PACKAGE "datakit"
- OCAML_VERSION=4.03 PACKAGE "datakit"
- OCAML_VERSION=4.0... | language: c
sudo: required
install: wget https://raw.githubusercontent.com/ocaml/ocaml-ci-scripts/master/.travis-opam.sh
script: bash -ex .travis-opam.sh
dist: trusty
env:
global:
- EXTRA_DEPS="inotify"
matrix:
- OCAML_VERSION=4.02 PACKAGE "datakit"
- OCAML_VERSION=4.03 PACKAGE "datakit"
- OCAML_VERSION=4.0... | Use my ocaml-gitub's fork for TravisCI | Use my ocaml-gitub's fork for TravisCI
Signed-off-by: Thomas Gazagnaire <5f50a84c1fa3bcff146405017f36aec1a10a9e38@gazagnaire.org>
| YAML | apache-2.0 | docker/datakit,docker/datakit,docker/datakit |
7ef6b9231bca0cd9c4111685977310123f1aacbb | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
after_success:
- chmod +x ./scripts/*.sh
- chmod +x ./scripts/for-travis/*.sh
- ./scripts/for-travis/build-and-deploy.sh
env:
global:
- TDDBIN_ROOT_DOMAIN: tddbin.com
- GH_EMAIL: contact+travis-for-tddbin@uxebu.com
- GH_REF: github.com/tddbin/katas.git
- secure: aK... | language: node_js
node_js:
- "0.10"
after_success:
- chmod +x ./scripts/*.sh
- chmod +x ./scripts/for-travis/*.sh
- ./scripts/for-travis/build-and-deploy.sh
env:
global:
- TDDBIN_ROOT_DOMAIN: tddbin.com
- GH_EMAIL: contact+travis-for-tddbin@uxebu.com
- GH_REF: github.com/tddbin/katas.git
- secure: Cl... | Update secure token, to match katas repo. | Update secure token, to match katas repo. | YAML | mit | JonathanPrince/katas,JonathanPrince/katas,cmisenas/katas,rafaelrocha/katas,rafaelrocha/katas,Semigradsky/katas,ehpc/katas,cmisenas/katas,tddbin/katas,tddbin/katas,Semigradsky/katas,ehpc/katas,tddbin/katas,cmisenas/katas,ehpc/katas,Semigradsky/katas,rafaelrocha/katas,JonathanPrince/katas |
53397ba6ab552ab1a65bf130fc686bc68a8e2107 | .travis.yml | .travis.yml | sudo: false
language: cpp
dist: xenial
env:
matrix:
- BUILD_MATRIX_ENTRY=format
- BUILD_MATRIX_ENTRY=docker-ubuntu1804
- BUILD_MATRIX_ENTRY=docker-ubuntu1910
- BUILD_MATRIX_ENTRY=docker-centos7
- BUILD_MATRIX_ENTRY=docker-centos8
script:
- git reset --hard ${TRAVIS_PULL_REQUEST_SHA}
- ${TRAVIS... | sudo: false
language: cpp
dist: xenial
env:
matrix:
- BUILD_MATRIX_ENTRY=format
- BUILD_MATRIX_ENTRY=docker-ubuntu1804
- BUILD_MATRIX_ENTRY=docker-ubuntu1910
- BUILD_MATRIX_ENTRY=docker-centos7
# - BUILD_MATRIX_ENTRY=docker-centos8
script:
- git reset --hard ${TRAVIS_PULL_REQUEST_SHA}
- ${TRAVI... | Kill centos8 for the moment | Kill centos8 for the moment
| YAML | apache-2.0 | ornladios/ADIOS2,JasonRuonanWang/ADIOS2,ornladios/ADIOS2,JasonRuonanWang/ADIOS2,JasonRuonanWang/ADIOS2,JasonRuonanWang/ADIOS2,ornladios/ADIOS2,ornladios/ADIOS2,ornladios/ADIOS2,JasonRuonanWang/ADIOS2 |
aefad12e03156b5a16ec8eb376af3d1002159e94 | .travis.yml | .travis.yml | sudo:
false
language:
php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
cache:
directories:
- vendor
before_script:
- composer install --dev --no-interaction --prefer-source
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist --colors --coverage-clover=coverage.clover
after_... | sudo:
false
language:
php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
- hhvm-nightly
cache:
directories:
- vendor
before_script:
- composer install --dev --no-interaction --prefer-source
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist --colors --coverage-clover=coverage.clover
afte... | Remove allow failures on HHVM builds | Remove allow failures on HHVM builds
| YAML | mit | ahmetgunes/Validation,Ye-Yong-Chi/Validation,maliayas/Validation,lalocespedes/Validation,rozehnal/Validation,guilhermesiani/Validation,solvire/Validation,osiux/Validation,Respect/Validation,regdos/Validation,zinovyev/Validation,thedavidmeister/Validation,jpjoao/Validation,riyan8250/Validation,hudolfhess/Validation,Resp... |
cae7cf85e17de181458d9b4dfc93a997393adb56 | .travis.yml | .travis.yml | osx_image: xcode7.3
language: generic
matrix:
include:
- os: osx
sudo: required
env: TYPE=podspec
- os: osx
env: NIMBLE_RUNTIME_IOS_SDK_VERSION=9.0 TYPE=ios
- os: osx
env: NIMBLE_RUNTIME_OSX_SDK_VERSION=10.10 TYPE=osx
- os: osx
env: TYPE=swiftpm
- os: linux
dist... | osx_image: xcode8
language: generic
matrix:
include:
- os: osx
sudo: required
env: TYPE=podspec
- os: osx
env: NIMBLE_RUNTIME_IOS_SDK_VERSION=9.0 TYPE=ios
- os: osx
env: NIMBLE_RUNTIME_OSX_SDK_VERSION=10.10 TYPE=osx
- os: osx
env: TYPE=swiftpm
- os: linux
dist: ... | Update Travis-CI to Xcode 8 | Update Travis-CI to Xcode 8
| YAML | apache-2.0 | dgdosen/Nimble,dgdosen/Nimble,AnthonyMDev/Nimble,twobitlabs/Nimble,AnthonyMDev/Nimble,abbeycode/Nimble,AnthonyMDev/Nimble,twobitlabs/Nimble,Quick/Nimble,DanielAsher/Nimble,DanielAsher/Nimble,dgdosen/Nimble,jeffh/Nimble,jeffh/Nimble,jeffh/Nimble,phatblat/Nimble,DanielAsher/Nimble,dgdosen/Nimble,phatblat/Nimble,phatblat/... |
e6c7fc6a0cea2942c1ccd8c687985b798b052b08 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install:
- uname -a
- sudo apt-get update -qq
- sudo apt-get install -qq curl protobuf-compiler libprotobuf-dev libncurses5 libc6
- sudo sh -c "curl -k https://raw.github.com/alavrik/piqi-binary/master/Linux-x86_64/piqi > /usr/bin/piqi"
- sudo chmod +... | language: python
python:
- "2.6"
- "2.7"
install:
- uname -a
- sudo apt-get update -qq
- sudo apt-get install -qq curl protobuf-compiler libprotobuf-dev libncurses5 libc6
- sudo sh -c "curl -k https://raw.github.com/alavrik/piqi-binary/master/Linux-x86_64/piqi > /usr/bin/piqi"
- sudo chmod +... | Install itself on Travis build | Install itself on Travis build
| YAML | mit | smarkets/smk_python_sdk |
50379d66e490646c92296d77673ed8223a0e6e51 | .travis.yml | .travis.yml | language: ruby
cache: bundler
before_install:
- gem install bundler
- export PHANTOMJS_VERSION='2.1.1'
- export PHANTOMJS_URL='https://github.com/Medium/phantomjs'
- export PHANTOMJS_URL+="/releases/download/v${PHANTOMJS_VERSION}"
- export PHANTOMJS_URL+="/phantomjs-${PHANTOMJS_VERSION}-linux-x86_64.tar.bz2"
... | language: ruby
cache: bundler
before_install:
- gem install bundler -v '< 2'
- export PHANTOMJS_VERSION='2.1.1'
- export PHANTOMJS_URL='https://github.com/Medium/phantomjs'
- export PHANTOMJS_URL+="/releases/download/v${PHANTOMJS_VERSION}"
- export PHANTOMJS_URL+="/phantomjs-${PHANTOMJS_VERSION}-linux-x86_64.... | Use 1.x versions of bundler to keep Ruby < 2.3 support for now | Use 1.x versions of bundler to keep Ruby < 2.3 support for now
| YAML | mit | oesmith/puffing-billy |
a8bbdf40b29e4887ae15be2c82c7130955cd19b0 | .travis.yml | .travis.yml |
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.1
- 7.2
matrix:
include:
- php: 7.1
env:
- COMPOSER_FLAGS="--prefer-lowest --prefer-stable"
- php: 7.1
env: COVERAGE="--coverage-clover build/logs/clover.xml"
- php: 7.2
before_install:... |
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache
php:
- 7.1
- 7.2
- 7.3
- 7.4
matrix:
include:
- php: 7.1
env:
- COMPOSER_FLAGS="--prefer-lowest --prefer-stable"
- php: 7.4
env: COVERAGE="--coverage-clover build/logs/clover.xml"
before_install... | Test against PHP 7.3 and 7.4 | Test against PHP 7.3 and 7.4
| YAML | mit | egendev/message-bus |
d161b85734f3b9bbfe1e28507f8065b78ed40273 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
notifications:
hipchat:
rooms:
secure: HZrZlpzPhZYTtYoTjrBfIQx4oz75ShJ+WxerEsBJ4EQihvLePxWpf2G+LDAvJPoATHbOnuwGuw+9qCPiqu2LrtWb/eOFN41rN5rZV1qw+ogg9G7VzgGtvYwK0wEbAfSeKmmvuAbOxNKDPoimpIBx18renm09aG+FbXn5tNaL/KM=
| language: node_js
node_js:
- '0.10'
notifications:
hipchat:
rooms:
secure: GaJWpDnyEn+M4bUA3uB29G/elOOoHyxKc0eAgG495oS6rdeV1ZyZlkxv2aWFpOxLwBBMD8wCOV/h5nEL3WUEig8FHqaeGZvNDGuR9sOpXXWJWxTTcXABWsqB+J3NHx0bRFS/6T5MQFTbrasql6Cyph7p92fJaIMqcZqqn95hs8U=
| Add new secure room key | Travis: Add new secure room key
| YAML | mit | efacilitation/eventric |
b66e210c7ceb1d7fc19efb23190d9926695c6dfb | .travis.yml | .travis.yml | language: python
install:
- pip install -r docs/requirements.txt
- pip install -r tests/requirements.txt
python:
- 2.7
- 3.3
- 3.4
- 3.5
script:
- python setup.py test
| language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
install:
- 'pip install -r tests/requirements.txt'
script:
- python setup.py test
matrix:
fast_finish: true
# This is required to enable container based Travis CI infrastructure.
# See http://docs.travis-ci.com/user/migrating-from-legacy/
sudo: false
| Use new Travis CI container infra | Use new Travis CI container infra
| YAML | mit | cdown/srt |
e483fed85380ff10f69a91fe513027cff6912581 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 0.12
- 4.2
- 5
- 6
before_install: if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
script: npm run test:all
notifications:
email:
recipients:
- edf@ericf.me
on_success: change
on_failure: always
env:
global:
- secure... | sudo: false
language: node_js
node_js:
- 4.2
- 6
- 7
before_install: if [[ `npm -v` != 3* ]]; then npm i -g npm@3; fi
script: npm run test:all
notifications:
email:
recipients:
- edf@ericf.me
on_success: change
on_failure: always
env:
global:
- secure: dtJpzQPi6... | Update Travis config, remove Node 0.12 and 5, add Node 7 | Update Travis config, remove Node 0.12 and 5, add Node 7
| YAML | bsd-3-clause | ericf/react-intl |
cca82021537d79c076564f3818d9917039411b9d | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
- jruby-19mode
services: mongodb
| language: ruby
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
- jruby-19mode
sudo: false # Apparently the way to use container-based environment. Intuitive...
services: mongodb
| Use current Docker container-based Travis CI infra | Use current Docker container-based Travis CI infra
| YAML | mit | skinandbones/rack-gridfs,skinandbones/rack-gridfs |
24eede0f7f8601cd02edb46cf5f4c13915107f97 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
services:
- docker
matrix:
include:
- env: TF_TAG=0.12.0-rc1 TD_TEST_SCIPY=0 TD_TEST_GPU=0
before_install:
- pwd
- ls
script: pwd && ls
| sudo: required
dist: trusty
language: python
services:
- docker
matrix:
include:
- env: TF_TAG=0.9.0 TD_TEST_SCIPY=0 TD_TEST_GPU=0
before_install:
- docker pull tensorflow/tensorflow:$TF_TAG
script: docker run --rm -v `pwd`:/root/tfdeploy -w /root/tfdeploy -e TD_TEST_SCIPY=$TD_TEST_SCIPY -e TD_TEST_GPU=... | Add actual docker ci script. | Add actual docker ci script.
| YAML | mit | riga/tfdeploy |
3d3103c965979aec34900bfabd96a27225144c50 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
script: phpunit --configuration phpunit.xml --coverage-text | language: php
php:
- 5.6
- 7.1
script: phpunit --configuration phpunit.xml --coverage-text | Add testing support for PHP 7.1 | Add testing support for PHP 7.1
| YAML | mit | darkin1/intercom |
0262b4244c13b3ef148bf096874847aea84b93e5 | .travis.yml | .travis.yml | language: node_js
before_install: "npm install -g npm"
node_js:
- "0.8"
- "0.10"
- "0.11"
| language: node_js
before_install: "npm install -g npm"
node_js:
- "0.10"
- "0.11"
| Disable testing with Node 0.8 | Disable testing with Node 0.8
| YAML | bsd-2-clause | istr/UglifyJS2,avdg/UglifyJS2,butchi/decodecodeJS,vjeux/UglifyJS2,shanaithal/UglifyJS2,jchbh-duplicate/UglifyJS2,TurkeyFried/uglifyjs2-dist,supriyantomaftuh/UglifyJS2,VIVEKLUCKY1848/UglifyJS2,kemitchell/UglifyJS2,davidbau/UglifyJS2,SpainTrain/UglifyJS2,sielay/UglifyJS2,HankMcCoy/UglifyJS2,digitalloggers/UglifyJS2,sebmc... |
1e3e9865a59a9495b85183ee1ed5d4e43e1d6f6d | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script: nosetests
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script: nosetests
| Add Python 3.5 to Travis-CI | Add Python 3.5 to Travis-CI
| YAML | bsd-2-clause | python-constraint/python-constraint |
284540ae8c0c2143e05540bf6fe49652e01ecaa6 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
| Build with Node.js 12 on Travis CI. | Build with Node.js 12 on Travis CI.
See #31.
| YAML | mit | bigeasy/cliffhanger |
a8590185a9a75704b1b3bc381120f617caf28e26 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '4'
- '5'
- '6'
- '7'
- '8'
- '9'
- '10'
- '11'
- 'node'
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
cache:
directories:
- node_modules
| language: node_js
sudo: false
node_js:
- '4'
- '5'
- '6.0'
- '6'
- '7'
- '8.0'
- '8'
- '9'
- '10.0'
- '10'
- '11.0'
- '11'
- 'node'
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
cache:
directories:
- node_modules
| Test stable major base versions. | Test stable major base versions.
| YAML | mit | olalonde/follow-redirects |
0b109a6ecc7d6e6454744b7b07c5253d6281a362 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
services:
- mysql
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- mysql -e 'CREATE DATABASE hackweek_test;'
before_script:
- cp config/database.yml.example config/dat... | language: ruby
rvm:
- 2.1.2
services:
- mysql
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- "echo 'gem: --no-ri --no-rdoc' > ~/.gemrc"
- RAILS_ENV=test bundle exec rake db:create --trace
before_script:
- cp config/database.yml.example co... | Use rake to create database | Use rake to create database
| YAML | mit | SUSE/hackweek,srinidhibs/hackweek,srinidhibs/hackweek,srinidhibs/hackweek,hennevogel/hackweek,SUSE/hackweek,SUSE/hackweek,hennevogel/hackweek,hennevogel/hackweek,srinidhibs/hackweek |
0f0089ece24e1243240d0a32665c6f4870cf5058 | upup/models/cloudup/resources/addons/networking.kope.io/v1.0.20161116.yaml | upup/models/cloudup/resources/addons/networking.kope.io/v1.0.20161116.yaml | apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: kopeio-networking-agent
namespace: kube-system
labels:
k8s-addon: networking.addons.k8s.io
spec:
template:
metadata:
labels:
name: kopeio-networking-agent
spec:
hostPID: true
hostIPC: true
hostNetwork: tru... | apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
name: kopeio-networking-agent
namespace: kube-system
labels:
k8s-addon: networking.addons.k8s.io
spec:
template:
metadata:
labels:
name: kopeio-networking-agent
spec:
hostPID: true
hostIPC: true
hostNetwork: tru... | Reduce CPU request for kopeio vxlan | Reduce CPU request for kopeio vxlan
| YAML | apache-2.0 | DualSpark/kops,justinsb/kops,chrislovecnm/kops,zytek/kops,MadDogTechnology/kops,andrewsykim/kops,reactiveops/kops,ikropotov/kops,blakebarnett/kops,MadDogTechnology/kops,WillemMali/kops,austinmoore-/kops,justinsb/kops,luomiao/kops,tsupertramp/kops,kris-nova/kops,faraazkhan/kops,luomiao/kops,chrislovecnm/kops,pdh/kops,an... |
899093c3f454b0703ea18cbc1417917231b4e833 | .travis.yml | .travis.yml | # Config file for automatic testing at travis-ci.org
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "python setup.py sdist"
- "mkdir tmp"
- "cd tmp"
- "pip install --upgrade pip"
- "pip install $(echo ../dist/skyfield-*.tar.gz)'[tests]'"
- "pip... | # Config file for automatic testing at travis-ci.org
language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install:
- "python setup.py sdist"
- "mkdir tmp"
- "cd tmp"
- "pip install --upgrade pip"
- "pip install $(echo ../dist/skyfield-*.tar.gz)'[tests]'"
- "pip... | Add Sphinx as dependency of Travis build | Add Sphinx as dependency of Travis build
| YAML | mit | skyfielders/python-skyfield,skyfielders/python-skyfield |
6af36dbb6f9364a8b76a18cebe05897027615ee2 | .travis.yml | .travis.yml | language: python
python:
- 3.6
before_install:
cache:
directories:
- $HOME/.cache/matplotlib
install:
pip install scipy pandas sklearn matplotlib pydot dill pathos sqlalchemy jupyter
script:
- export PYTHONPATH=$PYTHONPATH:..
- mkdir -p logs
- rm -rf ~/.matplotlib
- rm -rf ~/.cache/matp... | language: python
python:
- 3.6
before_install:
cache:
directories:
- $HOME/.cache/matplotlib
install:
pip install scipy pandas sklearn matplotlib pydot dill pathos sqlalchemy jupyter
script:
- export PYTHONPATH=$PYTHONPATH:..
- mkdir -p logs
- rm -rf ~/.matplotlib
- rm -rf ~/.cache/matp... | Test that 'pip install' works | Test that 'pip install' works | YAML | bsd-3-clause | antoinecarme/pyaf,antoinecarme/pyaf,antoinecarme/pyaf |
1763f049a3e3620546072eb088596970026ac543 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- "iojs"
before_install:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs"
before_install:
- npm install -g grunt-cli
| Update to only be compatible with node 0.10 and later | Update to only be compatible with node 0.10 and later
| YAML | mit | optimizely/optimizely-canvas-js-sdk |
c2a72d725aeea7020b787ced42b82017893c6cd7 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
| language: php
php:
- 7.0
- 7.1
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --verbose
| Stop supporting PHP 5.6 on Dusk 2.0 | Stop supporting PHP 5.6 on Dusk 2.0
Due to the partial dependencies on Laravel 5.5, Dusk should also stop supporting PHP 5.6 on 2.0 release. | YAML | mit | laravel/dusk |
2d34e950bb1b9c502fa5cdaa7690a628000c2262 | .travis.yml | .travis.yml | sudo: false
language: rust
matrix:
include:
- rust: nightly
env:
# will have to be commented out the following line
- SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
- rust: beta
- rust: 1.13.0
install:
- rvm use 2.2
- bundle install --path vendor/bundle
script:
- bundle exe... | sudo: false
language: rust
matrix:
include:
- rust: nightly
# env:
# # will have to be commented out the following line
# - SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
- rust: beta
- rust: 1.13.0
install:
- rvm use 2.2
- bundle install --path vendor/bundle
script:
- bund... | Comment out needless env section | Comment out needless env section
| YAML | mit | cosmo0920/fruently,cosmo0920/fruently |
1cc99accb36fbbab6664d6e7de6bba7edbb0b5d5 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
| language: java
install: mvn install -DskipTests=true -Dgpg.skip=true
jdk:
- openjdk6
- openjdk7
- oraclejdk7
| Disable GPG signing in Travis config. | Disable GPG signing in Travis config.
| YAML | apache-2.0 | bmeurer/eui4j |
e388357710a13db12a5995338c07a3db261f1736 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache:
bundler: true
matrix:
fast_finish: true
include:
- rvm: 2.2
env: RUN=default TZ="/usr/share/zoneinfo/Pacific/Fiji"
- rvm: 2.2
env: RUN=default SPROCKETS_VERSION="~> 2.12.3"
- rvm: 2.1
env: RUN=rspec
- rvm: 1.9.3
env: RUN=rspec
-... | language: ruby
sudo: false
cache:
bundler: true
matrix:
fast_finish: true
include:
- rvm: 2.2
env: RUN=default TZ="/usr/share/zoneinfo/Pacific/Fiji"
- rvm: 2.2
env: RUN=default SPROCKETS_VERSION="~> 2.12.3"
- rvm: 2.1
env: RUN=rspec
- rvm: 1.9.3
env: RUN=rspec
-... | Move mspec_phantom back to normal Travis build | Move mspec_phantom back to normal Travis build
| YAML | mit | Mogztter/opal,c42engineering/opal,Ajedi32/opal,gabrielrios/opal,merongivian/opal,c42engineering/opal,Flikofbluelight747/opal,jgaskins/opal,Mogztter/opal,jannishuebl/opal,jannishuebl/opal,wied03/opal,opal/opal,kachick/opal,Flikofbluelight747/opal,castwide/opal,gausie/opal,suyesh/opal,iliabylich/opal,castwide/opal,iliaby... |
1474bc1c59d09203f6bf13303e605f6caaa6fe93 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
| language: php
php:
- 7.0
- 7.1
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit --coverage-text --colors=never
| Add code coverage report to Travis build. | Add code coverage report to Travis build.
| YAML | mit | samrap/acf-fluent |
cc4a64b785dee74a9cb9a039e1739c2b68e2dcee | .travis.yml | .travis.yml | language: go
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- 1.15.x
- tip
script:
- make test
- ./go.test.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
slack:
if: branch = main
on_pull_requests: false
on_success: never
... | language: go
go:
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- 1.15.x
- tip
script:
- make test
- ./go.test.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
notifications:
slack:
if: branch = main
on_pull_requests: false
on_success: never
... | Revert "chore: move encrypted tokens to environment variables" | Revert "chore: move encrypted tokens to environment variables"
This reverts commit 12898f5de80016bae0dcc5689dcaa33d21b36657.
| YAML | mit | sendgrid/smtpapi-go,sendgrid/smtpapi-go |
7f81bdc15db1b7c054c8c0dd19fee302c5da2e50 | .travis.yml | .travis.yml | language: erlang
install:
- curl -Lo ./rebar3 https://s3.amazonaws.com/rebar3/rebar3
- chmod a+x ./rebar3
otp_release:
- 17.5
script: ./rebar3 do clean, compile, eunit, ct, dialyzer
| language: erlang
install:
- curl -Lo ./rebar3 https://s3.amazonaws.com/rebar3/rebar3
- chmod a+x ./rebar3
otp_release:
- 17.5
before_script: ./rebar3 update
script: ./rebar3 do clean, compile, eunit, ct, dialyzer
| Update to get dependencies before running script | Update to get dependencies before running script
| YAML | bsd-3-clause | mpraglowski/web-in-erlang-walking-skeleton,mpraglowski/web-in-erlang-walking-skeleton,mpraglowski/web-in-erlang-walking-skeleton |
6e74d27b97a19d39b09ecbb801d02172b78b7794 | .travis.yml | .travis.yml | language: ruby
script: "script/test_all 2>&1"
bundler_args: "--standalone --binstubs"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- 2.0.0
| language: ruby
script: "script/test_all 2>&1"
bundler_args: "--standalone --binstubs"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- 2.0.0
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: rbx-18mode
| Revert "rbx build is green; let us try to keep it that way" | Revert "rbx build is green; let us try to keep it that way"
This reverts commit 47d34cde7693b7d3dad1df6da50e560f51047c76.
| YAML | mit | edwardpark/rspec-core,Teino1978-Corp/Teino1978-Corp-rspec-core,behnaaz/rspec-core,h4ck3rm1k3/rspec-core,yaoshipu/rspec-core,dg-ratiodata/rspec-core,maclover7/rspec-core,azbshiri/rspec-core,irfanah/rspec-core,arronmabrey/rspec-core,iguchi1124/rspec-core,r7kamura/rspec-core,h4ck3rm1k3/rspec-core,danascheider/rspec-core,a... |
5408431d7124c3626abc6bf8772f4bf2cbc50107 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
install:
- pip install -e .
- pip install flake8==2.1.0 pep8==1.4.6 pyflakes==0.7.3
script:
- flake8 --statistics *.py
- python tests.py
matrix:
allow_failures:
- python: pypy
| language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- pypy
install:
- pip install -e .
- pip install flake8==2.1.0 pep8==1.4.6 pyflakes==0.7.3
- [ `pip --version | python -c 'import sys; line = sys.stdin.read().splitlines()[0]; print(line.split()[1].split(".", 2)[1])'` -ge 4 ] && pip install -I virtualenv=... | Install old virtualenv if work with old pip when installing library on Travis CI. | Install old virtualenv if work with old pip when installing library on Travis CI.
| YAML | bsd-2-clause | playpauseandstop/bootstrapper |
f2b8572136c8a988197a6d8be61bf64b840ef954 | .travis.yml | .travis.yml | sudo: required
language: node_js
node_js:
- node
services:
- docker
before_install:
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv doc... | sudo: required
language: node_js
node_js:
- node
services:
- docker
before_install:
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv doc... | Update path to deployment scripts | :bug: Update path to deployment scripts
| YAML | mit | nhsuk/profiles,nhsuk/profiles |
d2ab45081ce4927bbe4c33272ea4690c87356337 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
env:
global:
# Improves JRuby startup time.
# See https://github.com/jruby/jruby/wiki/Improving-startup-time
- "JRUBY_OPTS=--dev"
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.1
- jruby-9.1.2.0
before_script:
- git config --local user.email "travis@travis.ci"
... | language: ruby
sudo: false
cache: bundler
env:
global:
# Improves JRuby startup time.
# See https://github.com/jruby/jruby/wiki/Improving-startup-time
- "JRUBY_OPTS=--dev"
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.1
- jruby-9.1.5.0
before_script:
- git config --local user.email "travis@travis.ci"
... | Upgrade JRuby to latest release | Upgrade JRuby to latest release | YAML | mit | artemartemov/scss-lint-hdm |
a5073f8f02e60755be53900927c95cc6df97569a | .travis.yml | .travis.yml | ---
services:
- redis
language: rust
cache: cargo
rust:
- stable
matrix:
include:
- rust: stable
env: FMT=1
before_install:
- cargo install just
before_script:
- rustup component add rustfmt
script:
- just format
- rust: stable
env: CLIPPY=1
be... | ---
services:
- redis
language: rust
cache: cargo
rust:
- stable
matrix:
include:
- rust: stable
env: FMT=1
before_install:
- cargo install just
before_script:
- rustup component add rustfmt
script:
- just format
- rust: stable
env: CLIPPY=1
be... | Remove lint from allowed failures | Remove lint from allowed failures
| YAML | mit | spk/maman |
27744ab0f0417ea5b2ba94cfc2e5dad81c4af31c | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
env:
- CC=clang CXX=clang++
- ""
install:
- npm install --no-package-lock --ignore-scripts
before_script:
- tmp=$(mktemp --directory)
- bash -O dotglob -O extglob -c 'mv !(node_modules|test) "$1"/' bash "$tmp"
- pack=$(npm pack "$tmp")
- tar --str... | language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
env:
- CC=clang CXX=clang++
- ""
install:
- npm install --no-package-lock --ignore-scripts
before_script:
- tmp=$(mktemp --directory)
- bash -O dotglob -O extglob -c 'mv !(node_modules|test) "$1"/' bash "$tmp"
- pack=$(npm pack "$tmp")
- tar --str... | Remove `sudo: false` from CI configuration | Remove `sudo: false` from CI configuration
It’s the default now.
| YAML | isc | charmander/bcrypt-small,charmander/bcrypt-small,charmander/bcrypt-small |
5a0329a004b3ba8d833057f724e974662ce4771d | .travis.yml | .travis.yml | dist: trusty
sudo: required
os:
- linux
jdk:
- oraclejdk8 # Building Bazel requires JDK8.
language: go
go: 1.10.x
install: true
services:
- docker
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8'
key_url: 'https://storage.google... | dist: trusty
sudo: required
os:
- linux
jdk:
- oraclejdk8 # Building Bazel requires JDK8.
language: go
go: 1.10.x
install: true
services:
- docker
addons:
apt:
sources:
- sourceline: 'deb [arch=amd64] http://storage.googleapis.com/bazel-apt stable jdk1.8'
key_url: 'https://storage.google... | Update bazel flags to speed things up and show more errors. | Update bazel flags to speed things up and show more errors.
| YAML | apache-2.0 | google/minions,google/minions,google/minions |
d663b12990a9eea310377f61bf590e36f75bf29d | .travis.yml | .travis.yml | language: python
python:
- "3.6"
# Install conda
install:
- sudo apt-get update
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date. We do this
# conditionally because it saves us some downloading if the version is
# the same.
- if [[ ... | language: python
python:
- "3.6"
# Install conda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# The next couple lines fix a c... | Use conda instead of pip | Use conda instead of pip
| YAML | mit | christopherjenness/DBCV,christopherjenness/DBCV |
f367fd21eb5b67d0983348df0704e6c64a7760f9 | .travis.yml | .travis.yml | rvm:
- 1.9.2
- 1.9.3
- rbx-19mode
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
| Test on Ruby 2.0.0 & JRuby 1.9-mode | Test on Ruby 2.0.0 & JRuby 1.9-mode
| YAML | bsd-2-clause | amarshall/word-guesser |
6cbeb260a4bbc79d94929e7f71367ee751890b1c | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.2
- 2.2.3
bundler_args: --without local
addons:
code_climate:
repo_token: f53558412d42058b35e8dc81c8292423e3c9fcfb94d86c5f0efbc2aee1e95028
before_install: gem install bundler -v 1.11.2
| language: ruby
rvm:
- 2.2.2
- 2.2.3
bundler_args: --without local
addons:
code_climate:
repo_token: f53558412d42058b35e8dc81c8292423e3c9fcfb94d86c5f0efbc2aee1e95028
before_install: gem install bundler -v 1.11.2
after_script:
- codeclimate-test-reporter < lcov.info
| Add support of simplecov to TravisCi | Add support of simplecov to TravisCi
| YAML | mit | chubarovNick/decent_action,chubarovNick/decent_action |
76df95bfbb126330f28ba25b56ad9e18fa13b388 | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: "stable"
env: GULP_TASK="test-server"
- node_js: "0.10"
env: GULP_TASK="test-server"
- node_js: "0.10"
env: GULP_TASK="test-client-travis"
fast_finish: true
notifications:
email: false
| language: node_js
matrix:
include:
- node_js: "stable"
env: GULP_TASK="test-server"
- node_js: "0.10"
env: GULP_TASK="test-server"
- node_js: "stable"
env: GULP_TASK="test-client-travis"
fast_finish: true
notifications:
email: false
| Use stable node for qunit tests on Travis | Use stable node for qunit tests on Travis | YAML | mit | LavrovArtem/testcafe-hammerhead,miherlosev/testcafe-hammerhead,miherlosev/testcafe-hammerhead,miherlosev/testcafe-hammerhead,miherlosev/testcafe-hammerhead,AlexanderMoskovkin/testcafe-hammerhead,DevExpress/testcafe-hammerhead,AlexanderMoskovkin/testcafe-hammerhead,LavrovArtem/testcafe-hammerhead,LavrovArtem/testcafe-ha... |
24fc651c3a70434bc18411d7bae4ac4b75848374 | .travis.yml | .travis.yml | language: go
go:
- 1.9.x
script: ./mkdist.sh
deploy:
provider: releases
api_key: $GH_OAUTH_TOKEN
file_glob: true
file: gopherbot-*.zip
skip_cleanup: true
overwrite: true
on:
tags: true | language: go
go:
- 1.9.x
script: ./mkdist.sh
deploy:
provider: releases
api_key: $GH_OAUTH_TOKEN
file_glob: true
file: gopherbot-*.zip
skip_cleanup: true
overwrite: true
on:
branch: master | Deploy for all master commits | Deploy for all master commits
| YAML | mit | uva-its/gopherbot,uva-its/gopherbot,parsley42/gopherbot,uva-its/gopherbot,uva-its/gopherbot,parsley42/gopherbot,parsley42/gopherbot,parsley42/gopherbot |
091c6fd02f7ac6ad115a178b67c1c9210d309445 | .travis.yml | .travis.yml | sudo: false
language:
- python
python:
- "3.5"
before_install:
- pip install codecov
install:
- make deps
script:
- make test
after_success:
- codecov
| sudo: false
language:
- python
python:
- "3.5"
env:
- NODE_VERSION="6.9"
before_install:
- nvm install $NODE_VERSION
- pip install codecov
install:
- make deps
script:
- make test
after_success:
- codecov
| Use a newer version of Node on Travis | Use a newer version of Node on Travis
ESLint 4.x requires a more recent version of Node than the default when
the language is set to "python".
Method from https://stackoverflow.com/a/38346177/434243
| YAML | bsd-2-clause | hypothesis/bouncer,hypothesis/bouncer,hypothesis/bouncer |
b6a7cc2f04b7086d759a10a8c64b78578b27debd | .travis.yml | .travis.yml | language: ruby
jdk:
- oraclejdk7
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
cache: bundler
jdk:
- oraclejdk7
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: rbx-19mode
- rvm: ruby-head
- rvm: jruby-head
| Use TravisCI optional bundle caching | Use TravisCI optional bundle caching
| YAML | mit | jwkoelewijn/batsir |
89075d7ac0557bfab44f49e23a95cf9965f2c5a8 | .travis.yml | .travis.yml | language: node_js
node_js:
- "stable"
install: npm install
services:
- postgresql
env:
- NODE_ENV=test
before_script:
- psql -c 'create database postit_db_test;' -U postgres
- psql -c "CREATE USER Newman WITH PASSWORD 'andela2017';" -U postgres
- npm run build
- sequelize db:migrate
- sequelize db:seed:all
script: npm ... | language: node_js
node_js:
- "stable"
install: npm install
services:
- postgresql
env:
- NODE_ENV=test
before_script:
- psql -c 'create database postit_db_test;' -U postgres
- psql -c "CREATE USER Newman WITH PASSWORD 'andela2017';" -U postgres
- npm run build-server
- sequelize db:migrate
- sequelize db:seed:all
scrip... | Update CI badges for Travis and Coverals | Update CI badges for Travis and Coverals
| YAML | mit | Philipeano/post-it,Philipeano/post-it |
441534e026db522bd74f5157b7f08696358f3ce4 | packages/di/distribution-nixpkgs.yaml | packages/di/distribution-nixpkgs.yaml | homepage: https://github.com/peti/distribution-nixpkgs#readme
changelog-type: ''
hash: c59fafc52c45cd5d8f72ec98123806c80b82f4e52fc0a9c03b8e481570a0b795
test-bench-deps:
base: -any
hspec: -any
doctest: -any
lens: -any
distribution-nixpkgs: -any
deepseq: -any
maintainer: Peter Simons <simons@cryp.to>
synopsis... | homepage: https://github.com/peti/distribution-nixpkgs#readme
changelog-type: ''
hash: 5bb5036828f7353f1ff340795bf3be9a33f3847683638d055e03239f018668cf
test-bench-deps:
base: -any
hspec: -any
lens: -any
distribution-nixpkgs: -any
deepseq: -any
maintainer: Peter Simons <simons@cryp.to>
synopsis: Types and func... | Update from Hackage at 2018-03-09T10:47:54Z | Update from Hackage at 2018-03-09T10:47:54Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
87c2f390d9729e91a1598647aeb348e8a702a5b6 | .travis.yml | .travis.yml | language: perl
perl:
- "5.14"
before_install:
- sudo apt-get install libdb-dev libgd-dev
- cpanm --notest GD::Image
- cpanm --notest git://github.com/bioperl/bioperl-live.git@v1.6.x
- sh setup.sh
- cat setup.log
install: true
script:
- prove -Isrc/perl5 -lr tests
after_failure: cat setup.log
| language: perl
perl:
- "5.14"
before_install:
- sudo apt-get install libdb-dev libgd2-noxpm-dev
- cpanm --notest GD::Image
- cpanm --notest git://github.com/bioperl/bioperl-live.git@v1.6.x
- sh setup.sh
- cat setup.log
install: true
script:
- prove -Isrc/perl5 -lr tests
after_failure: cat setup.log
| Add the specific libgd library to use | Add the specific libgd library to use
| YAML | lgpl-2.1 | erasche/jbrowse,limeng12/jbrowse,erasche/jbrowse,limeng12/jbrowse,nathandunn/jbrowse,Arabidopsis-Information-Portal/jbrowse,limeng12/jbrowse,GMOD/jbrowse,limeng12/jbrowse,GMOD/jbrowse,nathandunn/jbrowse,erasche/jbrowse,Arabidopsis-Information-Portal/jbrowse,GMOD/jbrowse,Arabidopsis-Information-Portal/jbrowse,erasche/jb... |
412bbd531152a98d399271becc123275a17a5b28 | .travis.yml | .travis.yml | rvm: 2.2
sudo: required
# install the pre-release chef-dk. Use chef-stable-precise to install the stable release
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1204
- INSTANCE=defau... | sudo: required
# install the pre-release chef-dk. Use chef-stable-precise to install the stable release
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
services: docker
env:
matrix:
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1204
- INSTANCE=default-centos-... | Remove RVM from Travis since we use Ruby in ChefDK | Remove RVM from Travis since we use Ruby in ChefDK
| YAML | apache-2.0 | chef-cookbooks/gecode,opscode-cookbooks/gecode |
4b4e5692ea4a73390f54a26a52f6579a706fa33d | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.3
rvm: system
install:
- sudo gem update --system --no-document
- sudo gem install bundler --no-document -n /usr/local/bin
- sudo chown -R $(whoami) ${TRAVIS_BUILD_DIR} # ensure tmp/ is writable for bundler
- bundle install
script:
- bundle exec rake
- bundle exec sol... | language: objective-c
osx_image: xcode7.3
rvm: system
install:
- sudo gem update --system
- export GEM_HOME=tmp/ruby/2.0.0/
- export PATH=${GEM_HOME}/bin:${PATH}
- gem install bundler --no-document
- bundle install --system
script:
- bundle exec rake ci
| Set GEM_HOME and install all gems, including bundler there | Set GEM_HOME and install all gems, including bundler there
| YAML | mit | pivotal-sprout/sprout-exemplar,pivotal-sprout/sprout-exemplar |
3b92fef643cd9dc6e0b1b7ce8e07cf57dd792a6e | .travis.yml | .travis.yml | language: node_js
node_js: "node"
branches:
only:
- master
| language: node_js
node_js: "node"
branches:
only:
- master
- deploy
| Enable builds from the deploy branch in Travis | Enable builds from the deploy branch in Travis
Enable Travis CI builds from the deploy branch.
| YAML | apache-2.0 | martincostello/alexa-london-travel |
60cb0e1886267dbb53d7c22277d6adc5f2fa32f2 | .travis.yml | .travis.yml | language: python
python:
- "2.7.8"
- "2.7.9"
- "2.7.10"
- "2.7.11"
- "2.7.12"
- "3.4"
- "3.5"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.9
- DJANGO_VERSION=1.10
install:
- pip install -q Django==$DJANGO_VERSION
- python setup.py -q install
- pip install -e .
- pip install codecov
scrip... | language: python
python:
- "2.7.8"
- "2.7.9"
- "2.7.10"
- "2.7.11"
- "2.7.12"
- "3.4"
- "3.5"
- "3.6"
env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=1.9
- DJANGO_VERSION=1.10
install:
- pip install -q Django==$DJANGO_VERSION
- python setup.py -q install
- pip install -e .
- pip install code... | Add Python3.6 to test env | Add Python3.6 to test env
| YAML | bsd-3-clause | narenchoudhary/django-export-csv,narenchoudhary/django-export-csv |
85556a976e1db79d92707230bf2f20696834b6ac | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install
| language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install
| Add PHP 5.5 to the Travis CI build matrix. | Add PHP 5.5 to the Travis CI build matrix.
| YAML | mit | bighead-dev/PredisServiceProvider,nrk/PredisServiceProvider |
0c6ec784e4fac17d5ec04896f047e3c7d322a885 | .travis.yml | .travis.yml | language: bash
branches:
only:
- MANUAL_TRIGGER
addons:
apt:
packages:
- rpm
install: true
script: true
| language: bash
branches:
only:
- MANUAL_TRIGGER
addons:
apt:
packages:
- rpm
install: true
script:
- rpmbuild -bb --buildroot $(pwd) -D "version ${VERSION}" -D "buildrelease 1" -D "_rpmdir $(pwd)/_build" insight-agent.spec
| Add rpmbuild as build script | Add rpmbuild as build script
| YAML | mit | palette-software/PaletteInsightAgent,palette-software/PaletteInsightAgent,palette-software/PaletteInsightAgent,palette-software/PaletteInsightAgent |
4ebab346c0093cb47b874969a8852d45428bbf99 | .travis.yml | .travis.yml | language: rust
notifications:
email:
on_success: never
on_failure: always
script:
- cargo build
- cargo test
- rustdoc --test README.md -L target
after_success:
- .travis/publish_doc.sh
env:
global:
secure: gItlqVnR8TH9C9XFnMkiJnymBK8neHwt5xwGKUwRhQ1u4aiu4j38W6psV+b53N+fomOUeLbxNrbp+zpQTaqC3... | language: rust
notifications:
email:
on_success: never
on_failure: always
script:
- cargo build
- cargo test
- cargo doc --no-deps
- rustdoc --test README.md -L target
after_success:
- .travis/publish_doc.sh
env:
global:
secure: gItlqVnR8TH9C9XFnMkiJnymBK8neHwt5xwGKUwRhQ1u4aiu4j38W6psV+b53... | Create the docs using cargo | Create the docs using cargo
| YAML | mit | mvdnes/nss-rs |
c661ccf5aaee7c91dc0f920ab9c945f00cc674b3 | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
before_script:
- echo 'extension=mongo.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- composer install --prefer-dist
script... | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
- php: hhvm
before_script:
# The mongo extension is not yet available on PHP 7
- if [[ "$TRAVIS_PHP_VERSION" != "7.0" ]] && [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]];... | Fix the composer install for PHP 7 and HHVM | Fix the composer install for PHP 7 and HHVM
The mongo extension is not available for these versions, so the ODM cannot be installed | YAML | mit | KnpLabs/knp-components,aheinz-sg/knp-components,MisatoTremor/knp-components |
d74337c438dec9ffeca2cf504be1806940d52a10 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.10"
before_script:
- npm install -g grunt-cli
notifications:
email: false
| language: node_js
node_js:
- "0.12"
- "0.10"
- "v4"
- "v5"
- "v6"
- "node"
before_script:
- npm install -g grunt-cli
notifications:
email: false
| Add node v4,5,6 and latest | Add node v4,5,6 and latest
Note: adding latest so that when v7 arrives, we have that too | YAML | mit | MathieuLoutre/mock-aws-s3 |
ebfce5df7ddcebad5d1de0cd52c683635fa23ddb | .travis.yml | .travis.yml | ---
language: ruby
script: bundle exec rake
rvm:
- 1.9.3
- 2.1.6
env:
- PUPPET_VERSION="~> 3.0.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_VERSION="~> 3.7.3"
- PUPPET_VERSION="~> 4.2.0"
- PUPPET_VERSION=">= 0"
matrix:
exclude:
- rvm: 2.1.6
... | ---
language: ruby
script: bundle exec rake
rvm:
- 1.9.3
- 2.1.6
env:
- PUPPET_VERSION="~> 3.0.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION="~> 3.4.0"
- PUPPET_VERSION="~> 3.7.3"
- PUPPET_VERSION="~> 4.2.0"
- PUPPET_VERSION="~> 4.3.0"
- PUPPET_VERSION=">= 0"
matrix:
... | Add puppet 4.3 as target | Add puppet 4.3 as target
| YAML | mit | gds-operations/puppet-syntax,gds-operations/puppet-syntax |
32c86a6f6ebd84cf1a08e037bc399a956fd007f7 | .travis.yml | .travis.yml | language: csharp
dotnet: 2.1.4
env:
- FrameworkPathOverride=/usr/lib/mono/4.5/
jobs:
include:
- stage: test
mono: none
script:
- dotnet test ./source/ApplicationDataModelTest/ApplicationDataModelTest.csproj -c Release
- dotnet test ./source/PluginManagerTest/PluginManagerTest.cspro... | language: csharp
dotnet: 2.1.4
env:
- FrameworkPathOverride=/usr/lib/mono/4.5/
jobs:
include:
- stage: test
mono: none
script:
- dotnet test ./source/ApplicationDataModelTest/ApplicationDataModelTest.csproj -c Release
- dotnet test ./source/PluginManagerTest/PluginManagerTest.cspro... | Use dotnet nuget push command | Use dotnet nuget push command
| YAML | epl-1.0 | tarakreddy/ADAPT,ADAPT/ADAPT |
c730319b2c44a47361f9a43d82aea6426182d5ea | .travis.yml | .travis.yml | language: objective-c
xcode_workspace: onetimepassword.xcworkspace
xcode_scheme: OneTimePassword
xcode_sdk:
- iphonesimulator8.1
before_install:
- brew update
- brew upgrade xctool
| language: objective-c
xcode_workspace: onetimepassword.xcworkspace
xcode_scheme: OneTimePassword
xcode_sdk:
- iphonesimulator8.1
before_install:
- brew update
- brew upgrade xctool
script: xcodebuild -workspace onetimepassword.xcworkspace -scheme OneTimePassword -sdk iphonesimulator8.1 build test
| Use xcodebuild instead of xctool | Use xcodebuild instead of xctool
| YAML | mit | mattrubin/onetimepassword,mattrubin/onetimepassword |
676e0409b894ff920eb531357b142e319f7bb09d | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
before_install:
- npm install -g grunt-cli generator-webapp@0.5.1 cordova@4.0.0
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-graybullet-cordova' ]; then cd .. && eval "mv $currentfolder generator-graybullet-cordova" && cd generator-graybullet-cordova; fi
| language: android
android:
components:
- build-tools-20.0.0
- android-19
before_install:
- npm install -g grunt-cli generator-webapp@0.5.1 cordova@4.0.0
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-graybullet-cordova' ]; then cd .. && eval "mv $currentfolder generator-graybullet-cord... | Fix build failed on CI. | Fix build failed on CI.
https://travis-ci.org/GrayBullet/generator-graybullet-cordova/builds/39229864
| YAML | mit | GrayBullet/generator-graybullet-cordova |
e6db5f87fb6baba720b7d083071eab6f8bef4a6c | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
node_js:
- "0.8"
script: "make"
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
node_js:
- "0.8"
script: "make"
| Enable automated testing with Python 3.4 | Enable automated testing with Python 3.4 | YAML | mit | BobJavascript/js-beautify,ephox-luke/js-beautify,J2TeaM/js-beautify,glennimoss/js-beautify,olsonpm/js-beautify,beautify-web/js-beautify,eric6356/js-beautify,jaichandra/js-beautify,bitwiseman/js-beautify,olsonpm/js-beautify,tmarchant/js-beautify,blackmiaool/js-beautify,eric6356/js-beautify,tmarchant/js-beautify,timothye... |
b7f537e9dabd6078dadec6629992b40ab661f8b8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0
script:
- bundle exec rake test_app
- bundle exec rake spec
| language: ruby
rvm:
- 2.1
- 2.2
script:
- bundle exec rake test_app
- bundle exec rake spec
| Upgrade ruby versions, since spree 3.0 depends on 2.1 at least | Upgrade ruby versions, since spree 3.0 depends on 2.1 at least
| YAML | bsd-3-clause | berkes/spree_billing_sisow,berkes/spree_billing_sisow |
1e10d5ddfa626b0c63b6cfe0848c98ae092d3860 | .travis.yml | .travis.yml | language: cpp
sudo: required
dist: trusty
os:
- linux
- osx
compiler:
- gcc
- clang
env:
matrix:
- CMAKE_BUILD_TYPE=Debug
- CMAKE_BUILD_TYPE=Release
matrix:
exclude:
- os: linux
compiler: clang
- os: osx
compiler: gcc
addons:
apt:
packages:
- cmake
- ninja-buil... | language: cpp
sudo: required
dist: trusty
os:
- linux
- osx
compiler:
- gcc
- clang
env:
matrix:
- CMAKE_BUILD_TYPE=Debug
- CMAKE_BUILD_TYPE=Release
matrix:
exclude:
- os: linux
compiler: clang
- os: osx
compiler: gcc
addons:
apt:
packages:
- ninja-build
before_in... | Install cmake by downloading it (not apt-get). | Install cmake by downloading it (not apt-get).
The version is apt-get is too old.
| YAML | mit | frederikvannoote/cmake-common-examples,frederikvannoote/cmake-common-examples |
0a5e55bc0478052ae9f21d9906056cacbad7b2a4 | .travis.yml | .travis.yml | language: node_js
node_js:
- '8'
- '10'
- 'node'
before_script:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
- yarn install --frozen-lockfile
# Workspaces only
- yarn run build
script: yarn test
notifications:
email: false
cache:
yarn: true
| language: node_js
node_js:
- '8'
- '10'
- 'node'
matrix:
allow_failures:
# Different snapshot output
- node_js: 'node'
before_script:
- curl -o- -L https://yarnpkg.com/install.sh | bash
- export PATH=$HOME/.yarn/bin:$PATH
- yarn install --frozen-lockfile
# Workspaces only
- yarn run build
scri... | Allow node 11 to fail. | Allow node 11 to fail.
| YAML | mit | milesj/aesthetic,milesj/aesthetic,milesj/aesthetic |
d6253c39d7af7fc4ce28fa63a7fda1c8b5672bcc | .travis.yml | .travis.yml | os:
- linux
- osx
dist: trusty
sudo: required
language: bash
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ... | os:
- linux
- osx
dist: trusty
sudo: required
language: bash
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y mairix notmuch notmuch-mutt maildir-utils nmzmail; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ... | Fix broken Travis CI on Mac (python) | Fix broken Travis CI on Mac (python)
https://github.com/Homebrew/homebrew-core/issues/26358
| YAML | unlicense | weisslj/muttjump |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.