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 |
|---|---|---|---|---|---|---|---|---|---|
88f9ac978d2ebcb687d440306dda41fe02429b66 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
# we want the latest release of JDK8
addons:
apt:
packages:
- oracle-java8-installer
install: '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && mvn --settings .build/deploy-settings.xml -DaltDeploymentRepository=snapshots::default::http://m2.neo4j.org/content/repositories/snapsh... | language: java
jdk:
- oraclejdk8
# we want the latest release of JDK8
addons:
apt:
packages:
- oracle-java8-installer
install: 'if [ "${TRAVIS_PULL_REQUEST}" = "false" ] ; then mvn --settings .build/deploy-settings.xml -DaltDeploymentRepository=snapshots::default::http://m2.neo4j.org/content/repositories... | Stop the build in case a test fails | Stop the build in case a test fails
| YAML | apache-2.0 | opencypher/openCypher,opencypher/openCypher,opencypher/openCypher,opencypher/openCypher |
db6dd962b7e1d54d56fabfdaa6846d46ad46d646 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- 6
- 8
- 10
before_script: git fetch --tags
after_success: npm run coverage
| sudo: false
language: node_js
node_js:
- 6
- 8
- 10
before_script: git fetch --tags
after_success: npm run coverage
notifications:
email: false
| Disable email notifications from Travis | Disable email notifications from Travis
Ref Level/community#40 | YAML | mit | Level/packager |
06f1b5b4efb77c4359617b0be3c8ac61d25fe0f1 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- npm install -g gulp bower tsd@next typescript karma-cli
- npm install
- bower install
- tsd reinstall
script:
- gulp
- gulp test
| language: node_js
node_js:
- "0.10"
before_script:
- npm install -g gulp bower tsd@next typescript karma-cli
- npm install
- bower install
- tsd reinstall
script:
- gulp
- gulp test | Fix config format error, remove tab | Fix config format error, remove tab
| YAML | mit | 91mai/NSquared.Ng.Utils,91mai/NSquared.Ng.Utils |
fd20bd7b942b8531977c3bccbd57d971a9d9962f | .travis.yml | .travis.yml | language: erlang
env:
global:
- PLATFORM=linux
- LUAROCKS_VER=2.2.0beta1
matrix:
- LUA=lua5.1 LUA_SFX=
- LUA=lua5.2 LUA_SFX=
- LUA=luajit LUA_SFX=jit
branches:
only:
- master
before_install:
- bash .travis/setup_lua.sh
- sudo pip install cpp-coveralls
- sudo luar... | language: erlang
env:
global:
- PLATFORM=linux
- LUAROCKS_VER=2.2.0beta1
matrix:
- LUA=lua5.1 LUA_SFX=
- LUA=lua5.2 LUA_SFX=
- LUA=luajit LUA_SFX=jit
branches:
only:
- master
before_install:
- bash .travis/setup_lua.sh
- sudo pip install cpp-coveralls
- sudo luar... | Use luacov-coveralls to post report to coveralls.io | Use luacov-coveralls to post report to coveralls.io
| YAML | mit | moteus/lua-travis-example,istr/lua-travis-example,ignacio/lua-travis-example,daurnimator/lua-travis-example,xpol/lua-travis-example,starius/lua-travis-example,xpol/lua-travis-example,moteus/lua-travis-example,istr/lua-travis-example,starius/lua-travis-example,ignacio/lua-travis-example,daurnimator/lua-travis-example |
cd35c7314a13ccbed3a07aecef5f61bb01bd3d00 | .travis.yml | .travis.yml | env:
- DISPLAY=:99.0 CLI_WIDTH=80
jdk:
- oraclejdk8
script:
# Not installing UI bits until this is fixed: https://github.com/Semantic-Org/Semantic-UI/issues/4292
# - cd src/main/frontend && npm install
# - cd src/main/frontend && npm rum build-semantic-ui
# - ./gradlew build
- ./gradlew build -xwebpack -xnpmI... | env:
- DISPLAY=:99.0 CLI_WIDTH=80
jdk:
- oraclejdk8
script:
# Not installing UI bits until this is fixed: https://github.com/Semantic-Org/Semantic-UI/issues/4292
# - cd src/main/frontend && npm install
# - cd src/main/frontend && npm rum build-semantic-ui
# - ./gradlew build
- ./gradlew build -xwebpack -xnpmI... | Put Java code coverage on coveralls | Put Java code coverage on coveralls
| YAML | mit | bobbylight/rak,bobbylight/rak,bobbylight/rak,bobbylight/rak,bobbylight/rak |
3b8b17de48b069b92521c39f9bfae8c1c8ccd991 | .travis.yml | .travis.yml | sudo: true
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
- "pypy"
before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes openssh-server
install:
- pip install pip-accel
- pip-accel install coveralls
- pip-accel install --requirement=requirements.txt
- pip-accel install -... | sudo: true
language: python
python:
- "2.6"
- "2.7"
- "3.4"
- "3.5"
- "pypy"
before_install:
- sudo apt-get update -qq
- sudo apt-get install --yes fakeroot openssh-server
install:
- pip install pip-accel
- pip-accel install coveralls
- pip-accel install --requirement=requirements.txt
- pip-accel ... | Install fakeroot on Travis CI | Install fakeroot on Travis CI
| YAML | mit | xolox/python-executor |
56d64bd9984699109307b2f6b04627b96ddfee08 | .travis.yml | .travis.yml | language: c
sudo: false
addons:
apt:
packages:
- cmake
- uncrustify
- colordiff
matrix:
include:
- os: linux
compiler: gcc
- os: linux
compiler: clang
# - os: osx
# compiler: gcc
- os: osx
compiler: clang
script:
# Print all environment variables to aid ... | language: c
dist: trusty
sudo: false
addons:
apt:
packages:
- cmake
- uncrustify
- colordiff
matrix:
include:
- os: linux
compiler: gcc
- os: linux
compiler: clang
# - os: osx
# compiler: gcc
- os: osx
compiler: clang
script:
# Print all environment vari... | Use trusty -- hopefully get a newer version of uncrustify. | Use trusty -- hopefully get a newer version of uncrustify.
| YAML | mit | nanomsg/nng,nanomsg/nng,nanomsg/nng,nanomsg/nng |
1b45cb7117c1c13694bab2f7506189e9a5a4e5c0 | .travis.yml | .travis.yml | # Travis-CI configuration for Bioconductor packages
# https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
r:
- bioc-release
# - bioc-devel
os:
- linux
# - osx
matrix:
exclude:
- os: osx
r: bioc-devel
# blocklist
# branches:
# except:
# - develop
# safelist
# branches:
# o... | # Travis-CI configuration for Bioconductor packages
# https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
r:
- bioc-release
# - bioc-devel
os:
# - linux
- osx
matrix:
exclude:
- os: osx
r: bioc-devel
# blocklist
# branches:
# except:
# - develop
# safelist
# branches:
# o... | Switch to macOS for build checks | Switch to macOS for build checks
| YAML | mit | steinbaugh/seqcloudr,seqcloud/seqcloudR,steinbaugh/basejump |
0c7278dc12efba4a040a1197ede33f9c47771f08 | .travis.yml | .travis.yml | language: ruby
cache:
- bundler
- apt
before_install:
- curl http://packages.couchbase.com/ubuntu/couchbase.key | sudo apt-key add -
- echo "deb http://packages.couchbase.com/ubuntu precise precise/main" | sudo tee -a /etc/apt/sources.list
- sudo apt-get update -qq
- sudo apt-get install -y libcouchbase-dev... | language: ruby
cache:
- bundler
- apt
before_install:
- curl http://packages.couchbase.com/ubuntu/couchbase.key | sudo apt-key add -
- echo "deb http://packages.couchbase.com/ubuntu precise precise/main" | sudo tee -a /etc/apt/sources.list
- sudo apt-get update -qq
- sudo apt-get install -y libcouchbase-dev... | Remove rubies we can’t even bundle on. | Remove rubies we can’t even bundle on. | YAML | mit | eirc/sane_memcached_ttl |
c79ec5a482ee89c5304dc9b3f6f7d832eb5502f4 | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 5.6
- 5.5
- hhvm
script: ./bin/phpunit -c app/phpunit.xml.dist
| language: php
php:
- 7.0
- 5.6
- 5.5
- hhvm
script:
- composer install --prefer-source --no-dev --no-interaction
- phpunit --configuration app/phpunit.xml.dist --no-coverage
| Add the "composer install" command for Travis CI | Add the "composer install" command for Travis CI
| YAML | mit | Comrade42/phpBB-Parser |
aa4792507189625013c1ac2830ab4af49833a5ae | .travis.yml | .travis.yml | language: android
android:
components:
- build-tools-21.1.2
- android-21
- extra-android-support
- sys-img-armeabi-v7a-android-21
before_script:
- echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-fo... | language: android
android:
components:
- build-tools-21.1.2
- android-21
- extra-android-support
- sys-img-armeabi-v7a-android-19
before_script:
- echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-fo... | Change emulator to use api 19 instead of 21 | Change emulator to use api 19 instead of 21
| YAML | apache-2.0 | 0359xiaodong/Lynx,pedrovgs/Lynx |
a1f8160d18bb40480287c52485b855e4d54c605f | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4.0'
- 'iojs'
- '0.12'
- '0.11'
- '0.10'
- '0.8'
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g npm@2.12.1; fi'
| sudo: false
language: node_js
node_js:
- '4'
- 'iojs'
- '0.12'
- '0.11'
- '0.10'
- '0.8'
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g npm@2.12.1; fi'
| Test against major version of Node v4 | Travis-CI: Test against major version of Node v4
| YAML | mit | watson/async-state |
6e516f079654667b07b55d086c5907d8e11071b2 | .travis.yml | .travis.yml | language: elixir
elixir:
- 1.2
- 1.6
- 1.7
otp_release:
- 18.2
- 20.3
- 21.0
sudo: false
| language: elixir
elixir:
- 1.4
- 1.6
- 1.7
otp_release:
- 18.2
- 20.3
- 21.0
matrix:
exclude:
- elixir: 1.4
otp_release: 21.0
sudo: false
| Drop support for elixir 1.2 | Drop support for elixir 1.2
| YAML | mit | fazibear/export,fazibear/export |
56377e6e580d0b7c88079c61927a119add2471e2 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
before_script:
- npm install -g grunt-cli
script:
- grunt
| language: node_js
node_js:
- 0.10.36
before_script:
- npm install -g grunt-cli
script:
- grunt
| Fix node version for TravisCI | Fix node version for TravisCI
| YAML | mit | karma-runner/karma-html2js-preprocessor,karma-runner/karma-html2js-preprocessor |
4ec7518bad795f31a61fdc58d4d12e91d05bf4a0 | .travis.yml | .travis.yml | language: haskell
before_install:
- cabal install gtk2hs-buildtools hlint
- travis/cabal-apt-install $mode
- npm install jshint
install:
# Treat warnings as errors
- "sed -Ei 's/ghc-options: +/\0-Werror /' tianbar.cabal"
- cabal configure $mode -fWerror
script:
- hlint src
- jshint --show-non-errors ... | language: haskell
before_install:
- cabal install gtk2hs-buildtools hlint
- travis/cabal-apt-install $mode
- npm install jshint
install:
# Treat warnings as errors
- "sed -Ei 's/ghc-options: +/\0-Werror /' tianbar.cabal"
- cabal configure $mode -fWerror
script:
- hlint src
- jshint --show-non-errors ... | Test that the package installs | Test that the package installs
| YAML | mit | koterpillar/tianbar,koterpillar/tianbar,koterpillar/tianbar |
e75d3bd53073f44447023a7de3ff1e9ec5372043 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.5
script:
- bundle exec rubocop
- bundle exec foodcritic --contex --epic-fail any .
notifications:
flowdock: d4fbb65de6c9c868a2dfc4b38fbd34c1
| language: ruby
rvm:
- 2.1.5
script:
- bundle exec rubocop
- bundle exec foodcritic --contex --epic-fail any .
notifications:
flowdock: d4fbb65de6c9c868a2dfc4b38fbd34c1
sudo: false
| Move to Travis Container based testing | Move to Travis Container based testing
| YAML | mit | express42-cookbooks/openvpn,express42-cookbooks/openvpn,shortdudey123/openvpn,shortdudey123/openvpn,express42-cookbooks/openvpn,shortdudey123/openvpn |
52349519927a0493ce43b01b67716d898d0a9e39 | .travis.yml | .travis.yml | sudo: required
language: go
go:
- go1.7
- go1.8
- go1.9
- tip
install:
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/protobuf/proto
- go get -u github.com/stretchr/testify/assert
script:
- go install
- test -z "$(goimports -l... | sudo: required
language: go
go:
- go1.7
- go1.8
- go1.9
- tip
install:
- go get -u github.com/golang/lint/golint
- go get -u golang.org/x/tools/cmd/goimports
- go get -u github.com/golang/protobuf/proto
- go get -u github.com/stretchr/testify/assert
script:
- go install
- test -z "$(goimports -l... | Replace `go vet` with `go tool vet` | Replace `go vet` with `go tool vet`
| YAML | apache-2.0 | maguro/pbf |
2462820fae4f88f2278fe9beb7b278c8f1a92b2e | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 2.2.8
- 2.3.5
- 2.4.2
- jruby-9.1.14.0
script: bundle exec rake test
| ---
language: ruby
rvm:
- 2.2.9
- 2.3.6
- 2.4.3
- jruby-9.1.15.0
script: bundle exec rake test
| Use Ruby 2.2.9, 2.3.6, 2.4.3 and JRuby 9.1.15.0 | Use Ruby 2.2.9, 2.3.6, 2.4.3 and JRuby 9.1.15.0
| YAML | mit | aycabta/deviantart,aycabta/deviantart |
739e942b96837a96d5f9b23cd5870e39762b32ce | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
- "3.5"
cache: pip
install:
- pip install hacking flake8-docstrings pep8-naming
- pip install .
- export PATH=$PATH:$HOME/.local/bin
script:
- flake8 --verbose tests/ yanico/ setup.py
- python setup.py test
- python -m yanico --version
- python -m yanico --he... | language: python
python:
- "3.3"
- "3.4"
- "3.5"
cache: pip
install:
- pip install -U pip
- pip install .[develop]
script:
- flake8 --verbose tests/ yanico/ setup.py
- python setup.py test
- python -m yanico --version
- python -m yanico --help
- yan --version
- yan --help
| Change package installation at tests on Travis CI | Change package installation at tests on Travis CI
Install necessary modules for testing written on setup script.
| YAML | apache-2.0 | ma8ma/yanico |
e3445c7d4cac6061a9c14a9961afc93855951fa2 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.1.5
gemfile:
- gemfiles/rails_3.0.gemfile
- gemfiles/rails_3.1.gemfile
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.1.gemfile
before_install:
- gem install bundler
script:
- bundle exec rake clean test
| language: ruby
rvm:
- 2.1.5
- 2.4.1
gemfile:
- gemfiles/rails_3.0.gemfile
- gemfiles/rails_3.1.gemfile
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.1.gemfile
before_install:
- gem install bundler
script:
- bundle exec rake clean test
| Drop support for ruby 1.9.3 (preparing for Rails 5), add Travis tests for ruby 2.4.1 | Drop support for ruby 1.9.3 (preparing for Rails 5), add Travis tests for ruby 2.4.1
| YAML | mit | santiagodoldan/micro_sessions,rubiety/micro_sessions,santiagodoldan/micro_sessions |
3da8e3d21924328e1a8aea3862d2367e3f639e4c | .travis.yml | .travis.yml | language: objective-c
xcode_project: IceBuilder.xcodeproj
xcode_scheme: IceBuilder
notifications:
slack:
secure: O1PoU6qbgdiKQIV0/UAsjVwzJPlgag8fihFs2Pbm5nPgmsGQob3rDXT2UqpQydW6byNc7EWhUPoSLM1IoZdqgyVmqpnX//uMRPKm+UKthQ3U+LKqygJwp9WN4yYyd23RXvU8OciNcjwR3V7zRsigSXjoKPswyxoMYL0ezzRe/QY=
| language: objective-c
xcode_project: IceBuilder.xcodeproj
xcode_scheme: IceBuilder
notifications:
slack:
secure: GSzcKpPvxFs29fZKJseajWgmzthKFGphAwALkZlmxAl7318rmD+bR1Lyg5ICWUxipoV0wsJSqL9JSaJRd/srq5SzkBPKZh4QLc2aaumt2Tded/AW2mTQlWgz1D6T0u+E06/izPXq5k4Qcnm9nvihwNKkT7LLK9bbJUxVSEZQFNY=
| Fix Travis CI Slack notification | Fix Travis CI Slack notification
| YAML | bsd-3-clause | zeroc-ice/ice-builder-xcode |
ece394bb6d5d44624769e3aa25aba36518a95338 | .travis.yml | .travis.yml | branches: {only: [master, test]}
sudo: false
language: python
cache: pip
matrix:
include:
- {env: TOXENV=style, python: "3.5"}
- {env: TOXENV=packaging, python: "3.5"}
- python: "2.7"
- python: "3.4"
- python: "3.5"
- python: "3.6"
- python: "pypy"
install:
- pip install tox-travis
... | branches: {only: [master, test]}
sudo: false
language: python
cache: pip
matrix:
include:
- {env: TOXENV=style, python: "3.5"}
- {env: TOXENV=packaging, python: "3.5"}
- python: "pypy"
- python: "3.6"
- python: "3.5"
- python: "3.4"
- python: "2.7"
install:
- pip install tox-travis
... | Reorder Python versions in the build matrix | Travis: Reorder Python versions in the build matrix
Because PyPy build takes the longest time, start it first. This should
make the overall testing faster, because builds are started in parallel.
| YAML | bsd-2-clause | suutari-ai/prequ,suutari/prequ,suutari/prequ |
8377aca7a2cf70aafca55e527ebf399afd6739f1 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: composer test
branches:
only:
- master | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer self-update
- composer install --prefer-source --no-interaction --dev
script: composer test
branches:
only:
- master | Drop support for PHP 5.4 | Drop support for PHP 5.4
| YAML | mit | ihsw/toxiproxy-php-client |
d2660764a59bbc4ab25be56d8a4a11878bf1cd66 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
| language: ruby
rvm:
- 1.9.3
- 2.0.0
| Remove Ruby 1.9.2 from CI | Remove Ruby 1.9.2 from CI
| YAML | mit | Irio/mymoip |
5e924e6a72d208fdeaf61396b0b75465f97a9d99 | .travis.yml | .travis.yml | branches:
only:
- python
language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install -e . "Werkzeug >= 0.9" coverage coveralls
script:
- coverage run --source sass,sassc,sassutils setup.py test
after_success:
- coveralls
notifications:
irc:
channels:
- "irc.ozinger.org:8080#hong... | branches:
only:
- python
sudo: false
language: python
python:
- pypy
- pypy3
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install -e . "Werkzeug >= 0.9" coverage coveralls
script:
- coverage run --source sass,sassc,sassutils setup.py test
after_success:
- coveralls
notifications:
irc:
channels:
- "irc.ozinger.o... | Move to Travis' container-based stack | Move to Travis' container-based stack
http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
| YAML | mit | dahlia/libsass-python,admire93/libsass-python,admire93/libsass-python,dahlia/libsass-python |
60bf9d5651bfbb7e056c1a0a4e3bea10e70d5a0c | .travis.yml | .travis.yml | language: php
# use the new container infrastructure
#sudo: false
php:
- '7.1'
cache:
directories:
- vendor
before_script:
- composer self-update
script:
- ./vendor/bin/phpspec run
- ./vendor/bin/phpstan analyse src -l 5
| language: php
# use the new container infrastructure
#sudo: false
php:
- '7.1'
cache:
directories:
- vendor
before_script:
- composer self-update
- composer install --dev
script:
- ./vendor/bin/phpspec run
- ./vendor/bin/phpstan analyse src -l 5
| Install dev deps in the build | Install dev deps in the build
| YAML | mit | nidup/coupling-detector,akeneo/php-coupling-detector |
9b6ded8b1f9deb9449127b50b85219e0e96d6754 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- release
- tip
branches:
only:
- master
| language: go
sudo: false
go:
- 1.5
- release
- tip
branches:
only:
- master
| Upgrade go to 1.5, migrate to Travis container-based infra | Upgrade go to 1.5, migrate to Travis container-based infra
| YAML | bsd-3-clause | goxmpp/xtream |
cdddbd0d4ec261f32ed3837617c74b9bb10b3095 | .travis.yml | .travis.yml | language: node_js
node_js:
- '5'
- '4'
- '0.12'
jdk:
- oraclejdk8
| sudo: false
language: node_js
env:
- NODE_VERSION=0.12
- NODE_VERSION=4
- NODE_VERSION=5
jdk:
- oraclejdk8
before_install:
- nvm install "$NODE_VERSION"
- node --version
- npm --version
- java -version
install:
- npm install -g grunt-cli
- grunt --version
- npm install
script:
- npm test
matrix:... | Fix for JDK8 dependency of htmllint | Fix for JDK8 dependency of htmllint
| YAML | mit | sbstnmsch/nip.to-app,sbstnmsch/nip.to-app |
0d81387322e82f815cf765364cdcffac4e11b885 | .travis.yml | .travis.yml | ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate lint spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_VERSION="~> 2.7.0"
- rvm: 1.9.3
env: PUPPET_VERSION="~> 3.1.0"
- rvm: 2.0.0
... | ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate lint spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_VERSION="~> 3.1.0"
- rvm: 2.0.0
env: PUPPET_VERSION="~> 3.8.0"
- rvm: 2.1.4
... | Remove Puppet 2.7.0 from Travis-CI Build Matrix | Remove Puppet 2.7.0 from Travis-CI Build Matrix
Let's not worry about things from five years ago....
Signed-off-by: Trevor Bramwell <9318f446584e3f6cf68dea37a1a9fde63cb30ce1@linuxfoundation.org>
| YAML | apache-2.0 | bramwelt/puppet-patchwork,bramwelt/puppet-patchwork,bramwelt/puppet-patchwork |
3355486583c2a0c3415521a0d4ef78c03245fb6b | .travis.yml | .travis.yml | language: python
python:
# - "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
before_install:
- sudo apt-get update
# TODO: Move scipy/numpy to anaconda installation
# https://gist.github.com/dan-blanchard/7045057
- sudo apt-get build-dep python-scipy
# gcc gfortran l... | language: python
python:
# - "2.6"
- "2.7"
# shutil.which
- "3.1"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
before_install:
- sudo apt-get update
# TODO: Move scipy/numpy to anaconda installation
# https://gist.github.com/dan-blanchard/7045057
- sudo apt-get build-... | Add 3.1 and 3.2 support | Add 3.1 and 3.2 support
| YAML | bsd-3-clause | ProjectPyRhO/PyRhO,ProjectPyRhO/PyRhO |
8f5ded065cccf2c7720caacddebdc90179841fd0 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.8'
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-eslint' ]; then cd .. && eval "mv $currentfolder generator-eslint" && cd generator-eslint; fi
| language: node_js
node_js:
- '0.10'
before_install:
- currentfolder=${PWD##*/}
- if [ "$currentfolder" != 'generator-eslint' ]; then cd .. && eval "mv $currentfolder generator-eslint" && cd generator-eslint; fi
| Update Travis to not check Node 0.8 | Update Travis to not check Node 0.8
| YAML | mit | watilde/generator-eslint |
15a2df55de57dc104b9fd7ba0cb1c4dd425040b5 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
branches:
only:
- master
- develop
notifications:
email:
recipients:
- api-versions@erichmenge.com
| language: ruby
rvm:
- 1.9.3
branches:
only:
- master
- production
notifications:
email:
recipients:
- api-versions@erichmenge.com
| Update Travis for branch rename. | Update Travis for branch rename.
| YAML | mit | EDMC/api-versions,PagerDuty/api-versions,begriffs/api-versions |
3019b6747967481b11622a41793e13086a8d53e9 | .travis.yml | .travis.yml | language: go
go:
- 1.3
before_install:
- sudo apt-get update
- go get github.com/mattn/gom
script:
- pushd $TRAVIS_BUILD_DIR
- make test
- make deb
- popd
notifications:
email: false
| language: go
go:
- 1.2
- 1.3
before_install:
- sudo apt-get update
- go get github.com/mattn/gom
script:
- pushd $TRAVIS_BUILD_DIR
- make test
- make deb
- popd
notifications:
email: false
| Use golang 1.2 as that is what apt-get provides. | Use golang 1.2 as that is what apt-get provides.
| YAML | apache-2.0 | acquia/statsgod,syrneus/statsgod |
cab926d9c131b822b12b7803b86bdc425bda37c9 | .travis.yml | .travis.yml | language: android
branches:
only:
- master
android:
components:
# Use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used
- build-tools-19.1.0
# The SDK version used to compile
- android-19
# Additional components
- extra
... | language: android
branches:
only:
- master
android:
components:
# Use the latest revision of Android SDK Tools
- platform-tools
- tools
# The BuildTools version used
- build-tools-19.1.0
# The SDK version used to compile
- android-19
# Additional components
- extra
... | Revert "Try to install android support component on Travis." | Revert "Try to install android support component on Travis."
This reverts commit b56eff56796939edb66518f1f6e7dd2b0aa730fc.
| YAML | mit | thyrlian/Smarping |
a7519c1c2df5d7cd598cac369b5cc9f21947057b | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=3.3
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| sudo: false
language: java
jdk:
- oraclejdk8
env:
global:
- DITA_OT_VERSION=3.3.1
install:
- ".travis/install.sh"
script:
- ".travis/publish.sh"
after_success:
- ".travis/deploy.sh"
| Use latest DITA-OT version (3.3.1) for CI builds | Use latest DITA-OT version (3.3.1) for CI builds
Signed-off-by: Roger Sheen <a61a1add71dadc74037ae5e44ee30713db9a7451@infotexture.net>
| YAML | apache-2.0 | dita-ot/docs,infotexture/docs,infotexture/docs |
7cc5a3a7f2cc3131dab06805ead9118834b64b55 | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.1
- 3.2
install:
- pip install nose
- pip install .
script: make test
| language: python
python:
- 2.6
- 2.7
- 3.1
- 3.2
env:
- TIMEZONE=UTC
install:
- pip install nose
- pip install .
script: make test
| Revert "Remove TIMEZONE environment setting from Travis CI test" | Revert "Remove TIMEZONE environment setting from Travis CI test"
While the tests pass locally, Travis CI doesn't to like reading from /etc/localtime. I'm putting the environment setting back for the time being.
This reverts commit af665094441bb84efc6136312951e14d22beeccf.
| YAML | bsd-3-clause | dirn/When.py |
916924060877a846956158542165e90e457bb220 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
| language: node_js
sudo: false
node_js:
- "12"
- "11"
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
| Add Node.js 11 and 12 to the Travis CI rotation. | Add Node.js 11 and 12 to the Travis CI rotation.
| YAML | mit | benjamn/install,benjamn/install |
ba7864184a1551f6d5fb724331406e1db3ce328f | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.11"
- "0.12"
- "4.0"
- "4.1"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/co... | sudo: false
language: node_js
node_js:
- "4.4"
- "6.3"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- npm install -g bob coveralls --loglevel error
script:
- DEBUG=canihaz bob build
- cat .bob/coverage/buster-istanbul/lcov.info ... | Update Travis config to latest. Update node versions to 4.x and 6.x . | Update Travis config to latest. Update node versions to 4.x and 6.x .
| YAML | mit | cliffano/datagen |
1250f74855a9e883c5cbb37d1ef94636334d942d | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| language: node_js
node_js:
- 0.10
before_script:
- bower install
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
| Add bower install to Travis CI build script | Add bower install to Travis CI build script
| YAML | agpl-3.0 | dataseed/dataseed-visualisation.js,dataseed/dataseed-visualisation.js |
db60e433974018d30baf72e224c94463822c387f | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.5"
- "3.6"
env:
- DJANGO=1.11.* DRF=3.7.*
- DJANGO=1.11.* DRF=3.8.*
- DJANGO=2.0.* DRF=3.7.*
- DJANGO=2.0.* DRF=3.8.*
install:
- pip install -q Django==$DJANGO djangorestframework==$DRF
- pip install coveralls
- pip install -r rest_auth/tests/requirements.pip
sc... | language: python
python:
- "2.7"
- "3.5"
- "3.6"
env:
- DJANGO=1.11.* DRF=3.7.*
- DJANGO=1.11.* DRF=3.8.*
- DJANGO=2.0.* DRF=3.7.*
- DJANGO=2.0.* DRF=3.8.*
install:
- pip install -q Django==$DJANGO djangorestframework==$DRF
- pip install coveralls
- pip install -r rest_auth/tests/requirements.pip
sc... | Exclude Python 2.7 for Django 2.0 | Exclude Python 2.7 for Django 2.0
| YAML | mit | Tivix/django-rest-auth,kdzch/django-rest-auth |
6ff808fb7724f0f21c24adcd4f8eb7e1e3e12cc6 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
before_script:
- 'git clone git://github.com/smarchive/puppet-archive.git spec/fixtures/modules/archive'
env:
- PUPPET_VERSION=2.6.2
- PUPPET_VERSION=2.6.17
- PUPPET_VERSION=2.7.19
- PUPPET_VERSION=3.0.2
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
before_script:
- 'git clone git://github.com/smarchive/puppet-archive.git spec/fixtures/modules/archive'
env:
- PUPPET_VERSION=2.6.2
- PUPPET_VERSION=2.6.18
- PUPPET_VERSION=2.7.21
- PUPPET_VERSION=3.0.2
- PUPPET_VERSION=3.1.1
- PUPPET_VERSION=3.2.1
| Update Puppet versions in Travis CI build matrix | Update Puppet versions in Travis CI build matrix
| YAML | apache-2.0 | gini/puppet-idea |
09fe71bc8160ae4fc2307a6a17d3b15a9e15568b | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
before_install: sudo apt-get install xsltproc jing
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
before_install: sudo apt-get install xsltproc jing
script: grunt test
| Use grunt to run the tests. | Use grunt to run the tests.
| YAML | mpl-2.0 | mangalam-research/salve,lddubeau/salve,lddubeau/salve,mangalam-research/salve,mangalam-research/salve,lddubeau/salve |
3bf0ab53bd9060e3bf6e5f8ec3fb677fd48d4f2e | .travis.yml | .travis.yml | language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "nightly"
install:
- pip install python-coveralls pytest-cov
- pip install .
script:
- py.test tests --cov dirty_water
after_success:
- coveralls
| language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "nightly"
install:
- pip install python-coveralls pytest-cov
- pip install .
script:
- cd tests
- py.test . --cov dirty_water
after_success:
- coveralls
| Change how Travis CI runs pytest. | Change how Travis CI runs pytest.
| YAML | mit | kalekundert/dirty_water |
b4810ac934eaa0ac177d1fd37c8e4e993de8baa7 | .travis.yml | .travis.yml | language: php
# use the new container infrastructure
#sudo: false
php:
- '7.1'
cache:
directories:
- vendor
before_script:
- composer self-update
- composer update --prefer-source
script:
- ./bin/phpspec run
- ./bin/phpstan analyse src -l 6
| language: php
# use the new container infrastructure
#sudo: false
php:
- '7.1'
cache:
directories:
- vendor
before_script:
- composer self-update
script:
- ./bin/phpspec run
- ./bin/phpstan analyse src -l 6
| Remove useless composer update that breaks all the builds | Remove useless composer update that breaks all the builds
| YAML | mit | nidup/coupling-detector,akeneo/php-coupling-detector |
f0761a14c96daaf7468233dd8a765e86844886f0 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer install
script: phpunit --coverage-clover coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer install
script: phpunit --coverage-clover coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| Add php 7.0 to the build matrix | Add php 7.0 to the build matrix | YAML | mit | rybakit/arguments-resolver |
0e72a67dec7eba3934dcd3532821fa6fc2ba332a | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
before_install:
- sudo apt-get update
install:
- sudo apt-get install libtagc0-dev
before_script:
- go get github.com/mdlayher/goset
- go get github.com/jmoiron/sqlx
- go get github.com/mattn/go-sqlite3
- go get github.com/wtolson/go-taglib
script:
- make
- make test
-... | language: go
go:
- 1.1
- 1.2
before_install:
- sudo apt-get update
install:
- sudo apt-get install libtagc0-dev
before_script:
- go get github.com/mdlayher/goset
- go get github.com/jmoiron/sqlx
- go get github.com/mattn/go-sqlite3
- go get github.com/romanoff/fsmonitor
- go get github.com/wtolson/go-... | Add fsmonitor to Travis build | Add fsmonitor to Travis build
| YAML | mit | mdlayher/wavepipe,mdlayher/wavepipe |
c28c202be06e21deea8793eb93e76efcd5eb9a4a | .travis.yml | .travis.yml | #
#
# travis ci settings
#
#
language: java
jdk:
- openjdk8
- openjdk7
| #
#
# travis ci settings
#
#
language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk6
| Test 03 - Constructing jUnit and traivis ci | Test 03 - Constructing jUnit and traivis ci
| YAML | mit | RealTwo-Space/Neumann,RealTwo-Space/Neumann |
4c282aa7d5c8927469d1a13e873e548570fa810c | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby
before_install:
- sudo apt-get -y install openssh-server
- ssh-keygen -q -t rsa -N "" -f ~/.ssh/id_rsa
- cp $HOME/.ssh/id_rsa.pub $HOME/.ssh/authorized_keys | language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- jruby
before_install:
- gem install bundler
- sudo apt-get -y install openssh-server
- ssh-keygen -q -t rsa -N "" -f ~/.ssh/id_rsa
- cp $HOME/.ssh/id_rsa.pub $HOME/.ssh/authorized_keys
| Install bundler in Travis CI | Install bundler in Travis CI | YAML | mit | gabynaiman/datacenter |
d5186fa5405c9e64fd3c261ae195625a96d444a2 | .travis.yml | .travis.yml | language: python
sudo: false
dist: trusty
python:
- "2.7"
addons:
postgresql: "9.6"
services:
- postgresql
- docker
before_install:
- sudo apt-get update
- sudo apt-get install docker-engine
install:
- pip install tox==2.3.2
before_script:
- psql -c 'create database filmfest;' -U postgres
script:
- to... | language: python
sudo: false
dist: trusty
python:
- "2.7"
addons:
postgresql: "9.6"
services:
- postgresql
- docker
before_install:
- sudo apt-get update
- sudo apt-get install docker-engine
install:
- pip install tox==2.3.2
before_script:
- psql -c 'create database filmfest;' -U postgres
script:
- to... | Deploy only from master branch | Deploy only from master branch
We used `deploy` for testing that everything works. Now we are close to
merging this into master, so let's switch from deploy to master.
| YAML | unlicense | nott/next.filmfest.by,nott/next.filmfest.by,nott/next.filmfest.by,nott/next.filmfest.by,kinaklub/next.filmfest.by,kinaklub/next.filmfest.by,kinaklub/next.filmfest.by,kinaklub/next.filmfest.by |
e681405b970f815e31d6a350a435c8e609b4ac5a | .travis.yml | .travis.yml | # back to language cpp to try to bypass osx node failure
language: cpp
sudo: false
env:
- export NODE_VERSION="0.10"
- export NODE_VERSION="0.12"
- export NODE_VERSION="iojs-v1.0"
- export NODE_VERSION="iojs-v1"
- export NODE_VERSION="iojs-v2"
- export NODE_VERSION="iojs-v3"
- export NODE_VERSION="4"
- ... | # back to language cpp to try to bypass osx node failure
language: cpp
sudo: false
env:
- export NODE_VERSION="0.10"
- export NODE_VERSION="0.12"
- export NODE_VERSION="4"
- export NODE_VERSION="5"
os:
- linux
- osx
# pre-install to bring in the correct version of node via nvm
before_install:
- git submod... | Stop testing iojs versions of node | Stop testing iojs versions of node
Relatively unlikely anyone is using those anymore.
| YAML | mit | Khaledgarbaya/gatsby,ChristopherBiscardi/gatsby,okcoker/gatsby,okcoker/gatsby,fk/gatsby,chiedo/gatsby,0x80/gatsby,mingaldrichgan/gatsby,ChristopherBiscardi/gatsby,gatsbyjs/gatsby,mingaldrichgan/gatsby,mickeyreiss/gatsby,Khaledgarbaya/gatsby,Khaledgarbaya/gatsby,fk/gatsby,0x80/gatsby,danielfarrell/gatsby,fabrictech/gats... |
3681830363dcf7db568d7b530c3b30e32e2606ac | .travis.yml | .travis.yml | sudo: false
rvm:
- 2.3.0
- ruby-head
- rbx-2
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
- rvm: jruby-head
fast_finish: true
branches:
only:
- master
before_install:
- gem update bundler
| sudo: false
rvm:
- 2.3.3
- ruby-head
- rbx-2
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: rbx-2
- rvm: jruby-head
fast_finish: true
branches:
only:
- master
before_install:
- gem update bundler
| Update Travis from Ruby 2.3.0 to 2.3.3 | Update Travis from Ruby 2.3.0 to 2.3.3
| YAML | mit | kaize/valle |
66e88adbf119283b44c6d11121b806d879efcb32 | .travis.yml | .travis.yml | language: scala
scala:
- 2.10.3
before_script:
- npm install bower
- npm install grunt-cli
- gem install sass
- cd public
- npm install
- bower install
- cd ..
script:
- sbt test
- cd public
- grunt test
deploy:
provider: heroku
api_key: "mgc+E/IvRsGjPfLNDJjXwTmuG+Rbptin3vU7M8ebYzd0QuMF+Jakj72... | language: scala
scala:
- 2.10.3
before_script:
- npm install bower
- npm install grunt-cli
- gem install sass
- cd public
- npm install
- bower install
- cd ..
script:
- sbt test
- cd public
- grunt test
deploy:
provider: heroku
api_key: "mgc+E/IvRsGjPfLNDJjXwTmuG+Rbptin3vU7M8ebYzd0QuMF+Jakj72... | Add skip_cleanup to keep the artifacts. | Add skip_cleanup to keep the artifacts.
| YAML | apache-2.0 | alxdarksage/BridgePF,DwayneJengSage/BridgePF,alxdarksage/BridgePF,DwayneJengSage/BridgePF,DwayneJengSage/BridgePF,alxdarksage/BridgePF,Sage-Bionetworks/BridgePF,Sage-Bionetworks/BridgePF,Sage-Bionetworks/BridgePF |
74787ca1abec1dc5b50901656a4c4d76080f25a1 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 5.3.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: hhvm
- php: hhvm-nightly
- php: 7.0
allow_failures:
- php: hhvm-nightly
- php: 7.0
fast_finish: true
before_install:
- composer selfupdate
install:
- composer update --prefer-dist
script... | language: php
matrix:
include:
- php: 5.3.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: hhvm
- php: hhvm-nightly
- php: 7.0
allow_failures:
- php: hhvm-nightly
- php: 7.0
fast_finish: true
before_install:
- composer selfupdate
install:
- composer update --prefer-dist --no-s... | Make sure no composer scripts are executed | Make sure no composer scripts are executed
| YAML | mit | bvanderstee/grumphp,veewee/grumphp,tombevers/grumphp,Bilge/grumphp,phpro/grumphp,tombevers/grumphp,mbrzuchalski/grumphp,mikechernev/grumphp,mbrzuchalski/grumphp,ecentinela/grumphp,lykciv/grumphp,talib570/grumphp,tifabien/grumphp,veewee/grumphp,tifabien/grumphp,janvernieuwe/grumphp,aderuwe/grumphp,aderuwe/grumphp,lykciv... |
827e9dbe862edaa3c2501ae46f281f8538d4404a | .travis.yml | .travis.yml | language: python
python:
- "2.7"
env:
- DJANGO_VERSION=1.6.2
install:
- pip install -q -r requirements/test.txt
script:
- pwd
- python manage.py test
| language: python
python:
- "2.7"
env:
- DJANGO_VERSION=1.6.2
install:
- pip install -q -r requirements/test.txt
script:
- sh -c 'cd django_slack && python manage.py test'
| Change the way to chdir in Travis :bicyclist: | Change the way to chdir in Travis :bicyclist:
| YAML | mit | spacebra/django-slack,prontodev/django-slack,prontodev/django-slack,alexphelps/django-slack,prontodev/django-slack,alexphelps/django-slack,spacebra/django-slack,alexphelps/django-slack,spacebra/django-slack |
7232534babbaa6fc178b7ea54d0dcd73a849978a | .travis.yml | .travis.yml | dist: trusty
language: python
sudo: true
addons:
apt:
packages:
- libatlas3gf-base
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
- python-scipy
python:
- 3.6
env:
matrix:
# This environment tests for python 3 packages with conda
- DISTRIB="cond... | dist: trusty
language: python
sudo: true
addons:
apt:
packages:
- libatlas3gf-base
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
- python-scipy
python:
- 3.6
env:
matrix:
# This environment tests for python 3 packages with conda
- DISTRIB="cond... | Disable tests for Python 3.9 due to version conflicts | Disable tests for Python 3.9 due to version conflicts
| YAML | bsd-3-clause | INM-6/python-odmltables,INM-6/python-odmltables |
a6aad1d3beabe81fd89bf225d53c08d60cf95766 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist -vvv
... | language: php
php:
- 7.1
- 7.2
- 7.3
env:
matrix:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-di... | Add test support for PHP 7.3 | Add test support for PHP 7.3 | YAML | mit | eXolnet/laravel-closure-table |
e781b6d67141c69d563240df2e72217061b4b06d | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=PluginSkeleton
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.4
- DB=mysql CAKE_VERSION=2.5
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=FakeSeeder
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.4
- DB=mysql CAKE_VERSION=2.5
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:... | Fix plugin name in Travis config | Fix plugin name in Travis config
| YAML | mit | ravage84/cakephp-fake-seeder |
49930e2d8c16ee453d70c6b9d1311f81417deeae | .travis.yml | .travis.yml | dist: xenial
sudo: required
language: python
python:
- "3.6"
- "3.7"
- "3.8"
before_install:
- which python
- which pip
- pip install -U setuptools
install:
- pip install .
- pip install -r requirements-dev.txt
- pip install keyrings.alt>=3.1
script:
- set -e
- coverage run --source pgcli -m... | dist: xenial
sudo: required
language: python
python:
- "3.6"
- "3.7"
- "3.8"
before_install:
- which python
- which pip
- pip install -U setuptools
install:
- pip install .
- pip install -r requirements-dev.txt
- pip install keyrings.alt>=3.1
script:
- set -e
- coverage run --source pgcli -m... | Revert "Temporarily comment out behave tests." | Revert "Temporarily comment out behave tests."
This reverts commit 59ae65cbbf698d1608e7fd3d55b507f3599ac117.
| YAML | bsd-3-clause | dbcli/pgcli,dbcli/pgcli |
03db9a3e73e93c8f8925e67b53dc562f46e7ed4a | .travis.yml | .travis.yml | os:
- linux
language: go
dist: trusty
group: deprecated-2017Q4
go:
- 1.9
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y build-essential rpm
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
- gem install fpm
script:
- go test github.com/honeycombio/rdslogs/... | os:
- linux
language: go
dist: trusty
group: deprecated-2017Q4
go:
- 1.9
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y build-essential rpm
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce
- gem install fpm
script:
- go test github.com/honeycombio/rdslogs/... | Tag newly built docker image with latest too | Tag newly built docker image with latest too
By adding and pushing a latest tag, users will be able to just pull the
container from docker hub without having to pin to a specific version.
| YAML | apache-2.0 | honeycombio/rdslogs,honeycombio/rdslogs |
cc0d8aa1828182e15963188f580d889ffb0c5d14 | .travis.yml | .travis.yml | language: python
matrix:
include:
- python: 2.7
- python: 3.6
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
bash miniconda.sh -b -p $HOME/miniconda;
export PATH="$HOME/miniconda/bin:$... | language: python
matrix:
include:
- python: 2.7
- python: 3.6
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "3.6" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
bash miniconda.sh -b -p $HOME/miniconda;
export PATH="$HOME/miniconda/bin:$... | Switch to build docs with Python 3.6 | Switch to build docs with Python 3.6 | YAML | mit | compas-dev/compas |
5a0b12bab6e67c04ea7e2af08c1048d2dcb71ae6 | .travis.yml | .travis.yml | language: python
dist: trusty
sudo: false
python:
- "2.7.13"
env:
DATABASE_URL=mysql://travis@127.0.0.1/mozillians
BASKET_URL=http://127.0.0.1
BASKET_API_KEY=basket_api_key
COMPRESS_ENABLED=False
COMPRESS_OFFLINE=False
SECRET_KEY='supersecretkey'
ALLOWED_HOSTS=localhost
DEBUG=True
CELERY_TASK_ALWAYS... | language: python
dist: trusty
sudo: false
python:
- "2.7"
env:
DATABASE_URL=mysql://travis@127.0.0.1/mozillians
BASKET_URL=http://127.0.0.1
BASKET_API_KEY=basket_api_key
COMPRESS_ENABLED=False
COMPRESS_OFFLINE=False
SECRET_KEY='supersecretkey'
ALLOWED_HOSTS=localhost
DEBUG=True
CELERY_TASK_ALWAYS_EA... | Use the latest 2.7 python version. | Use the latest 2.7 python version.
| YAML | bsd-3-clause | johngian/mozillians,akatsoulas/mozillians,mozilla/mozillians,akatsoulas/mozillians,johngian/mozillians,akatsoulas/mozillians,johngian/mozillians,mozilla/mozillians,johngian/mozillians,akatsoulas/mozillians,mozilla/mozillians,mozilla/mozillians |
a75db0f955701ddc9f0e11cc4246cde2b2c440df | .travis.yml | .travis.yml | language: node_js
node_js:
- 6.12.0
- lts/*
- node
| language: node_js
node_js:
- 6.12.1
- lts/*
- node
| Add node 6.12.1 to build matrix | Add node 6.12.1 to build matrix
| YAML | mit | mpalourdio/ng-http-loader,mpalourdio/ng-http-loader,mpalourdio/ng-http-loader |
3c5e004c17f051f925b8b80c7fb74e2dd7c73872 | .travis.yml | .travis.yml | #
# Travis CI configuration for testing codeception-module-drupal-user-registry
#
language: php
php:
- 5.4
# Whitelist branches to build.
branches:
only:
- feature/add-tests
# Test preparation.
before_script:
# Update Composer, install dependencies and generate Codeception classes.
- composer self-updat... | #
# Travis CI configuration for testing codeception-module-drupal-user-registry
#
language: php
php:
- 5.4
# Whitelist branches to build.
branches:
only:
- master
# Test preparation.
before_script:
# Update Composer, install dependencies and generate Codeception classes.
- composer self-update
- compo... | Test master branch (only) with Travis. | Test master branch (only) with Travis.
| YAML | mit | chriscohen/codeception-module-drupal-user-registry,pfaocle/codeception-module-drupal-user-registry,ixis/codeception-module-drupal-user-registry |
bd506c8e6cb58055f2e736595cbfda854b5b1936 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "2.7"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: python setup.py install
# command to run tests, e.g. python setup.py test
script: python setup.py test
| matrix:
include:
- python: 2.7
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
sudo: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install "setuptools>=40"
- python setup.py install
... | Use a matrix build to get xenial support for 3.7. | Use a matrix build to get xenial support for 3.7.
| YAML | bsd-3-clause | freakboy3742/pyxero,jarekwg/pyxero,direvus/pyxero,schinckel/pyxero |
a064a8c6f7729b42c916f294374140e245f9df9f | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
- jruby
- rbx-19mode
matrix:
allow_failures:
- rvm: 2.1.1
- rvm: 2.0.0
- rvm: jruby
- rvm: rbx-19mode
before_install:
- gem update --system 2.1.11
- gem --version
| rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
- jruby
- rbx-19mode
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-19mode
before_install:
- gem update --system 2.1.11
- gem --version
| Mark 2.0.0 and 2.1.1 as both expecting to pass. | Mark 2.0.0 and 2.1.1 as both expecting to pass.
| YAML | mit | fakefs/fakefs,bquorning/fakefs,marxarelli/fakefs,vhl/fakefs,anthonyryan1/fakefs,deployable/fakefs,dekz/fakefs,defunkt/fakefs,1234-/fakefs |
22ce65b15999a93f58489a87fedb0fab4bcbbe0a | .travis.yml | .travis.yml | language: node_js
node_js:
- '5'
- '4'
before_install:
- npm install -g npm@latest
after_success:
- npm run codecov
| language: node_js
node_js:
- '6'
- '5'
- '4'
before_install:
- npm install -g npm@latest
after_success:
- npm run codecov
| Add Node 6 to Travis | Add Node 6 to Travis
| YAML | mit | wyze/atom-flexicons |
6377a3dde9a41d3a13763a1f2da6d6ae2f47dbd8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- make travisci-install
script:
- make travisci-test
after_success:
- coveralls
| sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- make travisci-install
script:
- make travisci-test
after_success:
- coveralls
| Disable sudo in Travis builds. | Disable sudo in Travis builds.
| YAML | mit | dgilland/ladder |
fb02a29b4bed14497cc8ed9265ee8270fd493404 | .travis.yml | .travis.yml | language: php
php:
- 7.0
sudo: false
install:
- composer install
before_script:
- phpenv rehash
script:
- phpunit
notifications:
- email: false
| language: php
php:
- 7.0
sudo: false
install:
- composer install
before_script:
- phpenv rehash
script:
- ./vendor/bin/phpunit
notifications:
- email: false
| Build configuration using vendor phpunit binary | Build configuration using vendor phpunit binary
| YAML | mit | brunitto/cakephp-new-relic |
bb8c83e4bdfe2d7e7360fb80aadc3ce2462cc53a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-9.1.8.0
script: bundle exec rake spec
| language: ruby
rvm:
- 2.2.8
- 2.3.5
- 2.4.2
- jruby-9.1.13.0
script: bundle exec rake spec
| Update Ruby versions for Travis CI | Update Ruby versions for Travis CI
This includes the latest minor/patch releases for all versions
(particularly MRI due to its recent security releases).
| YAML | mit | ahamlinman/peribot |
5e823bcbd35582f439f8f0f0381711ff9dde0762 | .travis.yml | .travis.yml | language: python
python:
- 2.7
services:
- mongodb
before_install:
- sudo /usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-analysis-icu/2.0.0
- sudo service elasticsearch start
install:
- pip install -r requirements/travis.pip
- pip install --no-deps -e .
script:
- nosetests --with... | language: python
python:
- 2.7
services:
- mongodb
before_install:
- sudo /usr/share/elasticsearch/bin/plugin -install elasticsearch/elasticsearch-analysis-icu/2.3.0
- sudo service elasticsearch start
install:
- pip install -r requirements/travis.pip
- pip install --no-deps -e .
script:
- nosetests --with... | Use the right ElasticSearch ICU plugin version on Travis-CI | Use the right ElasticSearch ICU plugin version on Travis-CI
| YAML | agpl-3.0 | grouan/udata,grouan/udata,jphnoel/udata,etalab/udata,opendatateam/udata,grouan/udata,opendatateam/udata,jphnoel/udata,etalab/udata,davidbgk/udata,davidbgk/udata,jphnoel/udata,davidbgk/udata,opendatateam/udata,etalab/udata |
e94ec57db84aa3497ad51fcff6aa2a74ce19156e | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
install:
- pip install tox
script:
- tox --skip-missing-interpreters
| language: python
python:
- "3.6"
install:
- pip install tox
script:
- tox --skip-missing-interpreters
| Drop Python 3.4 and 3.5 from Travis | Drop Python 3.4 and 3.5 from Travis
| YAML | isc | crgwbr/asymmetric_jwt_auth,crgwbr/asymmetric_jwt_auth |
26bbcb683b613bea9144fe9c2d2343648a2803f8 | .travis.yml | .travis.yml | language: ruby
before_script:
- rake setup
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
env:
- USE_RUBYGEMS="1.8.25"
- USE_RUBYGEMS="2.0.3"
- USE_RUBYGEMS="2.2.2"
matrix:
exclude:
- rvm: 2.0.0
env: USE_RUBYGEMS="1.8.25"
| language: ruby
before_script:
- rake setup
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
- ruby-head
env:
- USE_RUBYGEMS="1.8.25"
- USE_RUBYGEMS="2.0.3"
- USE_RUBYGEMS="2.2.2"
matrix:
exclude:
- rvm: 2.0.0
env: USE_RUBYGEMS="1.8.25"
- rvm: 2.1.1
env: USE_RUBYGEMS="1.8.25"
- rvm: ruby-... | Exclude test against RubyGems 1.8.x for Ruby 2.0 or greater | Exclude test against RubyGems 1.8.x for Ruby 2.0 or greater
| YAML | mit | luislavena/gem-compiler |
5f7579878799c14e15527b350dec9f5ccc64df78 | .travis.yml | .travis.yml | language: python
python:
- "3.5"
# command to install dependencies
install:
- pip install coverage python-coveralls pyparsers #grammpy
- pip install -e git+https://github.com/PatrikValkovic/grammpy@dev#egg=grammpy
# command to run tests with coverage
script:
- coverage run --source=grammpy_transforms -m unittest di... | language: python
python:
- "3.5"
# command to install dependencies
install:
- pip install coverage python-coveralls pyparsers #grammpy
# command to run tests with coverage
script:
- coverage run --source=grammpy_transforms -m unittest discover -s tests -p "*Test.py" -q
# report coverage
after_script:
- coverage re... | Remove dependency on dev version of grammpy | Remove dependency on dev version of grammpy
| YAML | mit | PatrikValkovic/grammpy |
defe74b77bf96a88ec334afd1871ff0058bf4464 | .travis.yml | .travis.yml | language: c
compiler:
- gcc
script: make test
before_install:
- git submodule update --init
- sudo apt-get update -qq
- sudo apt-get install check
notifications:
hipchat:
- secure: "ZO/hEAoOTZ4FJytMW0m4LZrsdFVM1/V0Hu13zfj8mdcHkf2MyfxthPDecnn5\naZVn4P8mSSwpp39EnAfa9fBcWcDESnKM1YQKPPGkoxZZHIOd2rYhRv34... | language: c
compiler:
- gcc
script: make test
before_install:
- git submodule update --init
- sudo apt-get update -qq
- sudo apt-get install check
| Remove old hipchat token from Travis CI config. | Remove old hipchat token from Travis CI config.
| YAML | bsd-3-clause | openxc/uds-c,openxc/uds-c |
3796e13ccb95b94dc97fbb0aac43bfaeff765d56 | .travis.yml | .travis.yml | rvm:
- 2.0.0
- 2.1.1
- 2.2.2
- ruby-head
- jruby
- jruby-head
- rbx-2
env:
- NIO4R_PURE=false
- NIO4R_PURE=true
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
- rvm: jruby
env: NIO4R_PURE=true
notifications:
irc: "irc.freenode.o... | language: ruby
sudo: false
rvm:
- 2.0.0
- 2.1.1
- 2.2.2
- ruby-head
- jruby
- jruby-head
- rbx-2
env:
- NIO4R_PURE=false
- NIO4R_PURE=true
matrix:
fast_finish: true
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
- rvm: jruby
env: NIO4R_PURE=true
notificat... | Add sudo: false to Travis config | Add sudo: false to Travis config
| YAML | mit | celluloid/nio4r,celluloid/nio4r,celluloid/nio4r |
9d19a03ac82551fd5eec85af24b704bd1255a175 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
| language: node_js
node_js:
- "0.11"
install:
- npm install
- bower install
| Add bower to installs for Travis. | Add bower to installs for Travis.
| YAML | mit | egilkh/angular-capitalize |
4b31ce263dad040dc83a9273f7b3a7b11c8d5429 | .travis.yml | .travis.yml | language: julia
julia:
- 0.6
- nightly
sudo: required
dist: trusty
before_install:
- sudo apt-add-repository -y "deb http://packages.ros.org/ros/ubuntu trusty main"
- wget https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -O - | sudo apt-key add -
- sudo apt-get update
- sudo apt-get -y install... | language: julia
julia:
- 0.7
- nightly
sudo: required
dist: trusty
before_install:
- sudo apt-add-repository -y "deb http://packages.ros.org/ros/ubuntu trusty main"
- wget https://raw.githubusercontent.com/ros/rosdistro/master/ros.key -O - | sudo apt-key add -
- sudo apt-get update
- sudo apt-get -y install... | Drop Travis testing for 0.6 | Drop Travis testing for 0.6
| YAML | mit | phobon/RobotOS.jl |
57bc8945a4c2db75672997186e57b7aaff882972 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: python
python:
- "2.7"
services:
- docker
env:
global:
- PATH="/usr/bin:$PATH"
before_install:
# Ansible doesn't play well with virtualenv
- deactivate
- sudo apt-get update -qq
- sudo apt-get install -y -o Dpkg::Options::="--force-confnew" docker-engine
insta... | sudo: required
dist: trusty
language: python
python:
- "2.7"
services:
- docker
env:
global:
- PATH="/usr/bin:$PATH"
before_install:
# Ansible doesn't play well with virtualenv
- deactivate
- sudo apt-get update -qq
- sudo apt-get install -y -o Dpkg::Options::="--force-confnew" docker-engine
insta... | Update where to install role dependencies | Update where to install role dependencies
| YAML | mit | laupow/deploy,ngpestelos/deploy,mblaschke/deploy,dgsuarez/deploy |
cdbf071056f94cd1dbc34f9930bac105bf96a389 | .travis.yml | .travis.yml | language: php
sudo: false
env:
- COMPOSER_OPTIONS="
matrix:
include:
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-lowest"
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-stable"
- php: nightly
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- composer self... | language: php
sudo: false
env:
- COMPOSER_OPTIONS="
matrix:
include:
- php: 7.1
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-lowest"
- php: 7.1
env:
- COMPOSER_OPTIONS="--prefer-stable"
- php: nightly
fast_finish: true
cache:
directories:
- $HOME/.composer/cache/files... | Add default PHP 7.1 and add fast_finish to Travis config | Add default PHP 7.1 and add fast_finish to Travis config
| YAML | mit | SolidWorx/FormHandlerBundle |
7fb587134ee291ee9fc71e0cc02d25f93812b83e | .travis.yml | .travis.yml | # http://about.travis-ci.org/docs/user/languages/python/
language: python
python:
- 2.7
- 3.5
- 3.6
- 3.7
install:
- python setup.py install
- pip install coveralls flake8
script:
- python setup.py test
- flake8 mwclient
after_success:
- coveralls
| language: python
python:
- 2.7
- 3.5
- 3.6
- 3.7
install:
- python setup.py install
- pip install coveralls flake8
script:
- python setup.py test
- flake8 mwclient
after_success:
- coveralls
deploy:
provider: pypi
user: danmichaelo
password:
secure: iRaoF9UNIIzwNR2SP60zL7Ub33lgCTYddk4JkpfNNjz/olZaUEGTbrpttq1w... | Add deploy to PyPI from Travis | Add deploy to PyPI from Travis
| YAML | mit | mwclient/mwclient |
f57811e24921fbc2eb987acff4ea77756e1cb45e | .travis.yml | .travis.yml | language: ruby
sudo: required
dist: trusty
group: edge # https://github.com/travis-ci/travis-ci/issues/5448
services:
- docker
before_install:
- gem update --system --no-doc # https://github.com/sickill/rainbow/issues/49
install:
- gem install --no-doc test-kitchen kitchen-docker
script:
- kitchen test
matrix:
... | language: ruby
sudo: required
dist: trusty
group: edge # https://github.com/travis-ci/travis-ci/issues/5448
services:
- docker
before_install:
- gem update --system --no-doc # https://github.com/sickill/rainbow/issues/49
install:
- gem install --no-doc test-kitchen kitchen-docker
script:
- kitchen test
matrix:
... | ALlow failures for Ruby 2.3 since it's EOL | ALlow failures for Ruby 2.3 since it's EOL
| YAML | mit | infertux/ruby-bootstrap |
0cfc2e60ea94e27298e40756877ea29832abce8e | .travis.yml | .travis.yml | language: go
go:
- "1.12beta1"
env:
- GO111MODULE=on
install:
- go get -v github.com/codeclimate/test-reporter
before_script:
- test-reporter before-build
script:
- go test -coverprofile c.out ./...
after_script:
- test-reporter after-build --exit-code $TRAVIS_TEST_RESULT | language: go
go:
- "1.12beta1"
env:
- GO111MODULE=on
install:
- mkdir -p $GOPATH/src/github.com/codeclimate && cd $GOPATH/src/github.com/codeclimate && git clone https://github.com/codeclimate/test-reporter.git && cd $GOPATH/src/github.com/codeclimate/test-reporter && go install
before_script:
- test-repo... | Install test-reporter Outside Path to Avoid Adding go Module | Install test-reporter Outside Path to Avoid Adding go Module
| YAML | mit | alexandre-normand/slackscot |
7d6bce0d2e2ddfd3312ad39afbd1d391c8f8e95f | .travis.yml | .travis.yml | dist: trusty
services:
- docker
addons:
ssh_known_hosts: 'abstimmen.bewegung.jetzt'
script:
- docker build .
before_deploy:
- openssl aes-256-cbc -K $encrypted_5ba0802f0861_key -iv $encrypted_5ba0802f0861_iv
-in scripts/deploy_rsa.enc -out /tmp/deploy_rsa -d
- eval "$(ssh-agent -s)"
- chmod 600 /tmp/deploy_rs... | dist: trusty
services:
- docker
addons:
ssh_known_hosts: 'abstimmen.bewegung.jetzt'
script:
- docker build .
before_deploy:
- openssl aes-256-cbc -K $encrypted_5ba0802f0861_key -iv $encrypted_5ba0802f0861_iv
-in scripts/deploy_rsa.enc -out /tmp/deploy_rsa -d
- eval "$(ssh-agent -s)"
- chmod 600 /tmp/deploy_rs... | Fix path for deployment to new systems | Fix path for deployment to new systems
| YAML | agpl-3.0 | DemokratieInBewegung/abstimmungstool,DemokratieInBewegung/abstimmungstool,DemokratieInBewegung/abstimmungstool,DemokratieInBewegung/abstimmungstool |
fc21073883587bbd2499d78ecdc1a3466af0aa38 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- '1.12'
- tip
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make vendor
before_script:
- make clean
script:
- make ... | sudo: false
language: go
go:
- '1.12'
matrix:
fast_finish: true
allow_failures:
- go: tip
branches:
only:
- master
notifications:
email:
on_success: change
on_failure: change
before_install:
- make tools
install:
- make vendor
before_script:
- make clean
script:
- make test
af... | Remove testing against Go tip in Travis CI. | Remove testing against Go tip in Travis CI.
Signed-off-by: Krzysztof Wilczynski <5f1c0be89013f8fde969a8dcb2fa1d522e94ee00@linux.com>
| YAML | apache-2.0 | kwilczynski/packer-provisioner-itamae-local |
3e4cb4ea1dbffe2092a6045dd7b8dbb7af28fe11 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
before_install:
- npm install -g npm@~1.4.28
before_script:
- npm install -g istanbul grunt-cli
- npm install coveralls
#- npm install git+https://github.com/node-red/node-red.git
- npm install node-red
- export NODE_RED_HOME=`pwd`/node_modules/node-red
- (... | language: node_js
node_js:
- "0.10"
- "0.12"
before_install:
- npm install -g npm@~1.4.28
before_script:
- npm install -g istanbul grunt-cli
- npm install coveralls
- npm install git+https://github.com/node-red/node-red.git
- export NODE_RED_HOME=`pwd`/node_modules/node-red
- (cd $NODE_RED_HOME ; npm in... | Install the git repo of NR, not npm package | Install the git repo of NR, not npm package
| YAML | apache-2.0 | perja12/node-red-nodes,xively/node-red-nodes,seniot/node-red-nodes,xively/node-red-nodes,soc1/node-red-nodes,perja12/node-red-nodes,seniot/node-red-nodes,seniot/node-red-nodes,soc1/node-red-nodes,xively/node-red-nodes,soc1/node-red-nodes,soc1/node-red-nodes,perja12/node-red-nodes,perja12/node-red-nodes,seniot/node-red-... |
ebfe44d71989da31cf8e46d0399e5a416d8933b8 | .travis.yml | .travis.yml | language: cpp
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
- sudo apt-get -qq install libconfig++-dev libgtest-dev-1.4.9
- ... | language: cpp
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
- sudo apt-get -qq install libconfig++-dev libgtest-dev
- "cd /u... | Remove version of GTest library form Travis configuration | Remove version of GTest library form Travis configuration
| YAML | apache-2.0 | kmichalak/jippi |
35786af3235a2ea0176f014807cfaaa947696188 | .travis.yml | .travis.yml | language: ruby
before_script:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
script: "bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
- PUPPET_GEM_VERSION="~> 3.3.0"
- PUPPET_GEM_VERSION="~> 3.4.0"
b... | language: ruby
before_script:
- echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
script: "bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
- PUPPET_GEM_VERSION="~> 3.3.0"
- PUPPET_GEM_VERSION="~> 3.4.0"
b... | Allow failures for 3.4.x as it is a known bug with module_data | Allow failures for 3.4.x as it is a known bug with module_data
| YAML | apache-2.0 | cyberious/puppet-windows_java |
8d570617dda98a27c332ab55a3f8c38829b610af | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "iojs"
- "iojs-v1.0.4"
| language: node_js
node_js:
- "0.12"
- "0.11"
- "iojs"
- "iojs-v1.0.4"
cache:
directories:
- node_modules
| Enable caching of node_modules in Travis CI | CI: Enable caching of node_modules in Travis CI
Perhaps enables faster continuous integration tests, as modules don't
need to be fetched from npm as much.
To my understanding, eslisp builds are on the new container-based
architecture, so the explicit "sudo: false" option shouldn't be
necessary.
| YAML | isc | anko/eslisp,whacked/eslisp,martindale/eslisp,jabbrass/eslisp |
5a15eb1fc25b4c70067150574bad142255315b20 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
before_script:
- composer install --dev
script: ./bin/robo test
| language: php
php:
- 5.6
- 5.5
- 5.4
- hhvm
before_script:
- cp .env.example .env
- composer install --dev
script: ./bin/robo test
| Copy a new .env before running Travis tests | Copy a new .env before running Travis tests
| YAML | mit | purplapp/purplapp,purplapp/purplapp |
17d6e704deda031317e15d5cacf09c13cc824de4 | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.2
language: objective-c
podfile: Example/Podfile
#before_install:
#- gem install cocoapods # Since Travis is not always on latest version
#- pod install --project-directory=Example
#install:
... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.2
language: objective-c
podfile: Example/Podfile
#before_install:
#- gem install cocoapods # Since Travis is not always on latest version
#- pod install --project-directory=Example
#install:
... | Allow warnings on lint for Travis CT | Allow warnings on lint for Travis CT
| YAML | mit | AnthonyMDev/AmazonS3RequestManager,AnthonyMDev/AmazonS3RequestManager,mz2/AmazonS3RequestManager,u10int/AmazonS3RequestManager,u10int/AmazonS3RequestManager,u10int/AmazonS3RequestManager,u10int/AmazonS3RequestManager,mz2/AmazonS3RequestManager,mz2/AmazonS3RequestManager,AnthonyMDev/AmazonS3RequestManager |
eb830e8b0d9b9fb6deb590e6763d30ee4446ebc1 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.1.10
- ruby-head
- jruby-9
- jruby-head
- rbx-2
script: "bundle exec rake"
| language: ruby
rvm:
- 2.3.0
- 2.2.4
- 2.1.10
- ruby-head
- jruby-9
- jruby-head
- rbx-2
matrix:
allow_failures:
- jruby-9
- jruby-head
script: "bundle exec rake"
| Allow CI failures on JRuby (for now) | Allow CI failures on JRuby (for now)
* This is a temporary measure until I can make time to resolve the compatibility issues with JRuby.
* On jruby-9, the issue seems to be the exit code returned by the script when running the acceptance tests. Everything seems to work fine otherwise.
* On jruby-head, Travis doesn't ... | YAML | mit | randycoulman/jujube |
842e10d003cd976942dd2b5ef7ef9642f57bb0a4 | .travis.yml | .travis.yml | language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
script:
- go get -d -t ./...
- go vet ./...
- go test ./...
- >
go_version=$(go version);
if [ ${go_version:13:4} = "1.12" ]; then
go get -u golang.org/x/tools/cmd/goimports;
goimports -d -e ./ | grep '.*' && { echo; echo "Aborti... | language: go
go:
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
script:
- go get -d -t ./...
- go vet ./...
- go test ./...
- >
go_version=$(go version);
if [ ${go_version:13:4} = "1.12" ]; then
go get -u golang.org/x/tools/cmd/goimports;
goimports -d -e ./ | grep '.*' && { echo; e... | Add Go 1.14 to ci | Add Go 1.14 to ci
| YAML | mit | go-chi/chi,pressly/chi |
89f9fc551f4c05eda9c1581af547373e31dfdf62 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7
before_install:
- brew update
- brew reinstall xctool
- gem install cocoapods -v 0.38.2
- gem install slather
- xcrun simctl list
install: echo "<3"
env:
- MODE=tests
- MODE=examples
- MODE=life-without-cocoapods
- MODE=framework
script: ./build.sh $MODE
after_s... | language: objective-c
osx_image: xcode7.2
before_install:
- brew update
- brew reinstall xctool
- gem install cocoapods -v 0.38.2
- gem install slather
- xcrun simctl list
install: echo "<3"
env:
- MODE=tests
- MODE=examples
- MODE=life-without-cocoapods
- MODE=framework
script: ./build.sh $MODE
after... | Update Travis build server to use Xcode 7.2. | Update Travis build server to use Xcode 7.2.
| YAML | bsd-3-clause | bimawa/AsyncDisplayKit,george-gw/AsyncDisplayKit,eanagel/AsyncDisplayKit,eanagel/AsyncDisplayKit,chrisdanford/AsyncDisplayKit,marmelroy/AsyncDisplayKit,garrettmoon/AsyncDisplayKit,garrettmoon/AsyncDisplayKit,levi/AsyncDisplayKit,Xinchi/AsyncDisplayKit,samhsiung/AsyncDisplayKit,nrcmedia/AsyncDisplayKit,nrcmedia/AsyncDis... |
930a0e2110e31917203910b58a23bcd0d156cb5f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
script: ./node_modules/mocha/bin/mocha --invert --grep particulates test/integration
| language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
script: ./node_modules/mocha/bin/mocha --invert --grep particulates test/integration
notifications:
slack:
secure: BWKjmGdVcK55tR5wxLr1GFuWjyqlevL4dSzmHHE4/dyjN8Q6fKDDvdWHEvOAw7jphODVvSxHA3F4gYVM0LiS+CkYwucy9rrqYlTnW7t7L/smr9cpyt8IoOOE+hwvQ1JMAFUbsQOTSk1f... | Add Travis CI slack notifications. | Add Travis CI slack notifications.
| YAML | mit | apis-is/apis |
b386c01c8acc8de39e671418f56d7f35dc799420 | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "2.7"
- "2.6"
install:
- sudo apt-get install zlib1g-dev
- sudo ln -s /usr/lib/i386-linux-gnu/libz.so /usr/lib
- pip install coveralls
script:
- coverage run --source=glue setup.py test
after_success:
coveralls
| language: python
python:
- "3.4"
- "3.3"
- "2.7"
- "2.6"
install:
- sudo apt-get install zlib1g-dev
- sudo ln -s /usr/lib/i386-linux-gnu/libz.so /usr/lib
- pip install coveralls
script:
- coverage run --source=glue setup.py test
after_success:
coveralls
| Enable automated testing on Python 3.4 | Enable automated testing on Python 3.4 | YAML | bsd-3-clause | jorgebastida/glue,jorgebastida/glue,beni55/glue,zhiqinyigu/glue,zhiqinyigu/glue,dext0r/glue,dext0r/glue,beni55/glue |
ab30d65b8e4bb5019d19784ad274fafd70a34591 | .travis.yml | .travis.yml |
sudo: false
language: ruby
env:
- ES_IMAGE=elasticsearch:1
- ES_IMAGE=plainpicture/elasticsearch:2.4.1_delete-by-query
- ES_IMAGE=elasticsearch:5.4
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:6.7.0
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:7.0.0
- ES_IMAGE=docker.elastic.co/elas... |
sudo: false
language: ruby
env:
- ES_IMAGE=elasticsearch:1
- ES_IMAGE=plainpicture/elasticsearch:2.4.1_delete-by-query
- ES_IMAGE=elasticsearch:5.4
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:6.7.0
- ES_IMAGE=docker.elastic.co/elasticsearch/elasticsearch:7.0.0
- ES_IMAGE=docker.elastic.co/elas... | Add elasticsearch 7.4.0 to ci | Add elasticsearch 7.4.0 to ci
| YAML | mit | mrkamel/elastic_search |
3cc71db8f0cdf3661dfbcb3f7015ca21188423d6 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '8'
- '7'
- '6'
- '5'
- '4'
- '4.2'
env:
- MAIN_RUN=true
- MAIN_RUN=false && REACT_VERSION=0.14
before_install:
- npm install -g npm@2
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- if [[ $MAIN_RUN == false ]]; then npm install rea... | language: node_js
sudo: false
node_js:
- '8'
- '7'
- '6'
- '4'
- '4.2'
env:
- MAIN_RUN=true
- MAIN_RUN=false && REACT_VERSION=0.14
before_install:
- npm install -g npm@2
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- if [[ $MAIN_RUN == false ]]; then npm install react-dom@^... | Remove Node 5 from Travis matrix | Remove Node 5 from Travis matrix | YAML | mit | brigade/react-waypoint,brigade/react-waypoint |
eff20635432ec03a3748749b45c878d7f766b0b2 | .travis.yml | .travis.yml | ---
language: ruby
bundler_args: --without development
before_install: rm Gemfile.lock || true
rvm:
- 2.0.0
- 2.1.0
script: bundle exec rake test
env:
- PUPPET_VERSION="~> 3.6.0" STRICT_VARIABLES=yes
- PUPPET_VERSION="~> 3.8.3" STRICT_VARIABLES=yes
sudo: false
| ---
language: ruby
bundler_args: --without development
before_install: rm Gemfile.lock || true
rvm:
- 2.0.0
- 2.1.0
script: bundle exec rake test
env:
- PUPPET_VERSION="~> 3.6.0" STRICT_VARIABLES=yes
- PUPPET_VERSION="~> 3.8.3" STRICT_VARIABLES=yes
- PUPPET_VERSION=4.0
sudo: false
| Add puppet4 to the test matrix | Add puppet4 to the test matrix
| YAML | apache-2.0 | buzzdeee/puppet-bsd,xaque208/puppet-bsd,xaque208/puppet-bsd,buzzdeee/puppet-bsd |
9b6d9831614d47ea14825eb9b806d91f577b7dfe | .travis.yml | .travis.yml | language: go
go:
- "1.10.3"
sudo: required
services:
- docker
env:
- "PATH=/home/travis/gopath/bin:$PATH"
before_install:
- go get github.com/tcnksm/ghr
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
script:
- diff -u <(echo -n) <(gofmt -d -s $(find . -type f -name '*.go' -not -pat... | language: go
go:
- "1.10.3"
sudo: required
services:
- docker
env:
- "PATH=/home/travis/gopath/bin:$PATH"
before_install:
- go get github.com/tcnksm/ghr
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
script:
- diff -u <(echo -n) <(gofmt -d -s $(find . -type f -name '*.go' -not -pat... | Install test dependencies before running tests to potentially save time. | BUILD: Install test dependencies before running tests to potentially save time.
| YAML | mit | gubatron/openbazaar-go,hoffmabc/openbazaar-go,OpenBazaar/openbazaar-go,hoffmabc/openbazaar-go,gubatron/openbazaar-go,OpenBazaar/openbazaar-go,hoffmabc/openbazaar-go,gubatron/openbazaar-go,OpenBazaar/openbazaar-go |
805c5d9f4c3bce6a7bd4ca8b3d4ad41853822310 | .travis.yml | .travis.yml | language: c
compiler: clang
os:
- linux
- osx
addons:
apt:
packages:
- valgrind
- libevent-dev
coverity_scan:
project:
name: "DavyLandman/l7knockknock"
description: "l7 knock knock hidden proxy"
notification_email: davy.landman@gmail.com
build_command: make
branch_p... | language: c
compiler: clang
env:
- NOLIBEVENT=1
- USELIBEVENT=1
addons:
apt:
packages:
- valgrind
- libevent-dev
coverity_scan:
project:
name: "DavyLandman/l7knockknock"
description: "l7 knock knock hidden proxy"
notification_email: davy.landman@gmail.com
build_command: ... | Use build matrix to switch between libevent and splice code | Use build matrix to switch between libevent and splice code
| YAML | bsd-3-clause | DavyLandman/knock-ssh,DavyLandman/knock-ssh,DavyLandman/knock-ssh |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.