commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
abd2fe34892758416992c5c2be43ce480b7c14bb | .travis.yml | .travis.yml | language: ruby
os:
- linux
- osx
rvm:
- 2.0.0
- 2.1
- 2.2.2
- ruby-head
script:
- bundle exec mspec -fd -t ruby
| language: ruby
os:
- linux
- osx
rvm:
- 2.0.0
- 2.1
- 2.2.2
- ruby-head
script:
- bundle exec mspec -fd -t ruby
matrix:
allow_failures:
- os: osx
rvm: ruby-head
| Allow failure for OSX ruby-head until it is fixed. | Allow failure for OSX ruby-head until it is fixed.
| YAML | mit | kachick/rubyspec,eregon/rubyspec,BanzaiMan/rubyspec,nobu/rubyspec,lucaspinto/rubyspec,ruby/rubyspec,kachick/rubyspec,ruby/spec,iliabylich/rubyspec,wied03/rubyspec,benlovell/rubyspec,kidaa/rubyspec,askl56/rubyspec,ruby/spec,sgarciac/spec,yous/rubyspec,jannishuebl/rubyspec,jannishuebl/rubyspec,nobu/rubyspec,wied03/rubysp... |
e4524571994844c072a74aa59c9bee363277cc6a | .travis.yml | .travis.yml | language: cpp
compiler: gcc
install:
- sudo apt-add-repository -y ppa:kubuntu-ppa/backports
- sudo apt-get update -qq
- sudo apt-get install -y gcc-4.4 gcc-4.4-multilib g++-4.4 g++-4.4-multilib cmake
before_script:
- cmake . -DCMAKE_BUILD_TYPE=Release
-DCMAKE_COMPILER=gcc-4.4
-DCMAKE_C... | language: cpp
compiler: gcc
install:
- sudo apt-add-repository -y ppa:kubuntu-ppa/backports
- sudo apt-get update -qq
- sudo apt-get install -y gcc-4.7 gcc-4.7-multilib g++-4.7 g++-4.7-multilib cmake
before_script:
- cmake . -DCMAKE_BUILD_TYPE=Release -DCMAKE_COMPILER=gcc-4.7 -DCMAKE_CXX_COMPILER=g++-4.7
scr... | Switch to GCC 4.7 on CI | Switch to GCC 4.7 on CI
| YAML | bsd-2-clause | Zeex/samp-plugin-profiler,Zeex/samp-plugin-profiler |
dbd48d38ecdbff2ddfbe733d9e55c6dede5ea59e | .travis.yml | .travis.yml | # This only checks the c part of the repository, it was difficult to
# get the Python bindings to build on
language: c
git:
depth: 3
dist:
trusty
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq check
- pip install --user cpp-coveralls
- pip install --user cython
branches:
only:
... | # This only checks the c part of the repository, it was difficult to
# get the Python bindings to build on
language: c
git:
depth: 3
dist:
trusty
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq check
- pip install --user cpp-coveralls
# - pip install --user cython # doesn't work for... | Remove Python in Travis-file again | Remove Python in Travis-file again
| YAML | mit | mittinatten/freesasa,mittinatten/freesasa,mittinatten/freesasa,JoaoRodrigues/freesasa,mittinatten/freesasa,JoaoRodrigues/freesasa,JoaoRodrigues/freesasa,JoaoRodrigues/freesasa |
cc743edc6cf9f0c9eaf543e399083d6c84e9765a | .travis.yml | .travis.yml | language: python
python:
- "3.4"
install:
- "pip install coveralls"
- "pip install sh"
- "git config --global user.email 'travis@xd-embedded.org'"
- "git config --global user.name 'Travis CI'"
script: "nosetests"
after_success:
- coveralls
notifications:
irc: "chat.freenode.net#xd-embedded"
| language: python
python:
- "3.4"
install:
- "pip install coveralls"
- "pip install sh"
- "pip install astunparse"
- "git config --global user.email 'travis@xd-embedded.org'"
- "git config --global user.name 'Travis CI'"
script: "nosetests"
after_success:
- coveralls
notifications:
irc: "chat.freenode.ne... | Add astunparse to Travis CI install dependencies | Add astunparse to Travis CI install dependencies
Signed-off-by: Esben Haabendal <da90c138e4a9573086862393cde34fa33d74f6e5@haabendal.dk>
| YAML | mit | XD-embedded/xd-build-core |
70e36921ee087910cef4bbf5350b93f4831d4ba4 | .travis.yml | .travis.yml | language: rust
sudo: required
dist: trusty
before_install:
- cargo install yabs
- export PATH=$PATH:$HOME/.cargo/bin
- git submodule update --init
- sed -i 's/lua5\.3/lua5\.1/g' kuma.toml tests/tests.toml
- sudo apt-get update -qq
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- su... | sudo: required
dist: trusty
before_install:
- wget "https://github.com/0X1A/yabs/releases/download/0.2.1/yabs_0.2.1_amd64.deb"
- sudo dpkg -i yabs_0.2.1_amd64.deb
- git submodule update --init
- sed -i 's/lua5\.3/lua5\.1/g' kuma.toml tests/tests.toml
- sudo apt-get update -qq
- sudo add-apt-repo... | Use yabs deb instead of cargo install | Use yabs deb instead of cargo install
Signed-off-by: Alberto Corona <0c11d463c749db5838e2c0e489bf869d531e5403@albertocorona.com>
| YAML | bsd-3-clause | 0X1A/kuma,0X1A/kuma |
9a88e604f7db21ed66aacbb710c7656da24304bf | .travis.yml | .travis.yml | sudo: false
os:
- linux
branches:
only:
- master
language: python
env:
matrix:
- TASK=lint
- TASK=coverage
- TASK=test
script:
- make -f Makefile $TASK
python:
- "2.7"
- "3.4"
- "pypy"
| sudo: false
os:
- linux
branches:
only:
- develop-0.1
- master
language: python
env:
matrix:
- TASK=lint
- TASK=coverage
- TASK=test
script:
- make -f Makefile $TASK
python:
- "2.7"
- "3.4"
- "pypy"
| Test PRs for this branch. | Test PRs for this branch.
Signed-off-by: mulhern <f8031e3d7973bcba5c88b20a2669dacb9eb312d1@cs.wisc.edu>
| YAML | lgpl-2.1 | mulkieran/justbases |
0fdecf6daa3c4e7a96c141874ebc1aa3da695d83 | .travis.yml | .travis.yml | language: node_js
node_js:
- lts/*
cache:
directories:
- node_modules
script:
- npm test
- npm run build | language: node_js
node_js:
- lts/*
cache:
directories:
- node_modules | Remove unnecessary scripts from CI/CD | Remove unnecessary scripts from CI/CD
| YAML | mit | joelgeorgev/file-hash-verifier,joelgeorgev/file-hash-verifier |
474a5e9dbf2283937ea6b25d9cd68be85cc6e3eb | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- iojs
- iojs-v1.0.2
| language: node_js
node_js:
- '0.12'
- '0.11'
- '0.10'
- iojs
- iojs-v1.0.2
deploy:
provider: npm
email: me@moritzlawitschka.de
api_key:
secure: E/O+pDUvUjG/iRNQYQNabBxuR0lhLmIaKS0gYMVeGBVlKdawVdAry3HSAEVe4Fjvsy5YBRRWtMwpJFPoNQ1xdRadDSm04IhHVO/mIAA1Tut85HsJoNhBsAEKDlA30AkGt9W+M9zgKCBSYacV/0vj5oYUKimioD0Q4LgQrr... | Set up NPM publication on Travis CI | Set up NPM publication on Travis CI
| YAML | mit | lawitschka/galao,spieker/galao,lawitschka/galao,spieker/galao |
0df775867ad60cf87e4590f996dfcccc80f903be | .travis.yml | .travis.yml | language: c
compiler: gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq automake libev-dev libyaml-dev pkg-config cppcheck
script: "autoreconf --install && ./configure && make && make check && cppcheck --enable=all --verbose --suppress=variableScope src/"
env:
global:
# The next declara... | language: c
compiler: gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq automake libev-dev libyaml-dev pkg-config cppcheck
script: "autoreconf --install && ./configure && make && make check && cppcheck --enable=all --verbose --suppress=variableScope src/"
notifications:
email:
- statsre... | Add email notifications to statsrelay-dev | Add email notifications to statsrelay-dev
| YAML | mit | statsrelay/statsrelay,statsrelay/statsrelay,JeremyGrosser/statsrelay,JeremyGrosser/statsrelay,JeremyGrosser/statsrelay,statsrelay/statsrelay,uber/statsrelay,uber/statsrelay,uber/statsrelay |
b78d2d20662e461e08b512e8f68b13f2ba651dac | .travis.yml | .travis.yml | language: c
env:
global:
- LUAROCKS=2.2.0
matrix:
- VARARG=vararg LUA=lua5.1
- VARARG=vararg LUA=lua5.2
- VARARG=vararg LUA=lua5.3
- VARARG=vararg LUA=luajit
- VARARG=vararg-lua LUA=lua5.1
- VARARG=vararg-lua LUA=lua5.2
- VARARG=vararg-lua LUA=lua5.3
- VARARG=var... | language: c
env:
global:
- LUAROCKS=2.2.0
matrix:
- VARARG=vararg LUA=lua5.1
- VARARG=vararg LUA=lua5.2
- VARARG=vararg LUA=lua5.3
- VARARG=vararg LUA=luajit
- VARARG=vararg-lua LUA=lua5.1
- VARARG=vararg-lua LUA=lua5.2
- VARARG=vararg-lua LUA=lua5.3
- VARARG=var... | Use scm version of LuaFileSystem on Travis. | Use scm version of LuaFileSystem on Travis.
| YAML | mit | icetoggle/lua-vararg,icetoggle/lua-vararg,moteus/lua-vararg |
f80302f067d7c26c1c28f8ae78be05decbbfbb94 | .travis.yml | .travis.yml | # Use container-based infrastructure
sudo: false
language: scala
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
scala:
- 2.11.7
jdk:
- oraclejdk7
- openjdk7
- openjdk6
script:
- sbt ++$TRAVIS_SCALA_VERSION test
# Tricks... | # Use container-based infrastructure
sudo: false
language: scala
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
scala:
- 2.11.7
jdk:
- oraclejdk7
- openjdk7
- openjdk6
script:
- sbt ";++$TRAVIS_SCALA_VERSION;$SBT_COMMAND"
... | Remove ignored files in before_cache step | Remove ignored files in before_cache step
| YAML | apache-2.0 | ThoughtWorksInc/sbt-rest-rpc,ThoughtWorksInc/sbt-microbuilder |
48f58a1da53b23636ecaffe5d15220cf01e2211b | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install --quiet -g grunt-cli karma bower codeclimate-test-reporter
- npm install
- bower install --dev --config.interactive=0
script:
- grunt karma:unit
after_script:
- cat test/coverage/*/l... | language: node_js
node_js:
- "0.10"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install --quiet -g grunt-cli karma bower codeclimate-test-reporter
- npm install
- bower install --dev --config.interactive=0
script:
- grunt karma:unit
after_script:
- cat reports/coverage/... | Change path to coverage report to match config | chore(build): Change path to coverage report to match config
| YAML | apache-2.0 | Odecee/angular-form-lib,uglow/angular-form-lib,uglow/angular-form-lib-old,uglow/angular-form-lib-old,uglow/angular-form-lib,Odecee/angular-form-lib |
1a36f45b2fbc7389704559e38e8644f3e747a203 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
- 'node'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
- '4'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| Test on Node 4, not latest Node | Travis: Test on Node 4, not latest Node
We'll add latest Node.js when Node.js 5 comes out. We'll still want to support
Node.js 4 as it will be an LTS.
| YAML | mit | mzgol/grunt-check-dependencies,mgol/grunt-check-dependencies |
1717bd023daeded579815690bffdd0eeea105235 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10.0"
branches:
only:
- master
notifications:
recipients:
- michi@netzpiraten.ch
| language: node_js
node_js:
- "0.10.0"
branches:
only:
- master
notifications:
recipients:
- michi@netzpiraten.ch
| Drop 0.8 testing on Travis. | Drop 0.8 testing on Travis.
| YAML | mit | netzpirat/haml-coffee,guigrpa/haml-coffee,netzpirat/haml-coffee,guigrpa/haml-coffee,netzpirat/haml-coffee |
c9d7ac6bca1fcd16ea131b0667abf64f7948aeef | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8
language: objective-c
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod update # Remove this when the pods ... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8
language: objective-c
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod repo update # Remove this when the ... | Fix wrong pod repo update command | Fix wrong pod repo update command
| YAML | mit | edopelawi/CascadingTableDelegate,edopelawi/CascadingTableDelegate,edopelawi/CascadingTableDelegate |
f3ecc408ea6492c29f6e622540cd6e1825a8a242 | .travis.yml | .travis.yml | language: go
go:
- "1.9"
- "1.10"
- "1.11"
dist: trusty
sudo: required
before_install:
- echo KERNEL==\"uinput\", GROUP=\"$USER\", MODE:=\"0660\" | sudo tee /etc/udev/rules.d/99-$USER.rules
- sudo udevadm trigger
| language: go
go:
- "1.10"
- "1.11"
- "1.12"
dist: trusty
sudo: required
before_install:
- echo KERNEL==\"uinput\", GROUP=\"$USER\", MODE:=\"0660\" | sudo tee /etc/udev/rules.d/99-$USER.rules
- sudo udevadm trigger
| Add go version 1.12 for testing and remove 1.9 from tests (should still work, but only the last 3 major versions are used in testing) | Add go version 1.12 for testing and remove 1.9 from tests (should still work, but only the last 3 major versions are used in testing)
| YAML | mit | ben-bensdevzone/uinput,bendahl/uinput,ben-bensdevzone/uinput |
5ec8dd5826358d6ee6b6da905377f088f7b1032e | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
matrix:
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
before_script:
- mkdir -p build/logs
script:
... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
before_script:
- mkdir -p b... | Add fast_finish to Travis CI configuration | Add fast_finish to Travis CI configuration
| YAML | mit | michabbb-backup/uuid,michabbb-backup/uuid,ramsey/uuid |
bfe37afbb136539aa8e22f66529242bf1eb3f042 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.8"
addons:
ssh_known_hosts: 45.79.201.206
before_install:
- openssl aes-256-cbc -K $encrypted_ea5d83bfe4fe_key -iv $encrypted_ea5d83bfe4fe_iv -in deploy-key.pem.enc -out deploy-key.pem -d
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
deploy:
provider: script
script: deploy/... | language: node_js
node_js:
- "5.8"
addons:
ssh_known_hosts: 45.79.201.206
before_install:
# - openssl aes-256-cbc -K $encrypted_ea5d83bfe4fe_key -iv $encrypted_ea5d83bfe4fe_iv -in deploy-key.pem.enc -out deploy-key.pem -d
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# deploy:
# provider: script
# script:... | Comment out deploy and deploy key configuration | Comment out deploy and deploy key configuration
| YAML | mit | bithubapp/bithub-admin,bithubapp/bithub-admin |
42bcb94af429b4d1183299a439d24687d6f81aff | .travis.yml | .travis.yml | env:
global:
- CC_TEST_REPORTER_ID=17a151330f33a258022421aef374859fe773d2222bed0b1d89c889d29e1f232f
language: node_js
node_js:
- "8"
- "6"
- "10"
os:
- linux
- osx
cache:
directories:
- node_modules # NPM packages
before_script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
curl -L https://c... | env:
global:
- CC_TEST_REPORTER_ID=17a151330f33a258022421aef374859fe773d2222bed0b1d89c889d29e1f232f
language: node_js
node_js:
- "8"
- "10"
os:
- linux
- osx
cache:
directories:
- node_modules # NPM packages
before_script:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
curl -L https://codeclima... | Remove Node 6 from Travis | Remove Node 6 from Travis | YAML | mit | Unibeautify/beautifier-prettydiff,Unibeautify/beautifier-prettydiff |
246273ebed252f02eda8d47ac1f930c8132ede83 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
gemfile:
- Gemfile.devise12
- Gemfile.devise13
- Gemfile.devise14
- Gemfile.devise15
- Gemfile.devise20
- Gemfile.devise21
- Gemfile.devise30
script: "bundle exec rake spec"
| rvm:
- 2.0.0
- 2.1.2
- 2.2.4
- 2.3.0
gemfile:
- Gemfile.devise12
- Gemfile.devise13
- Gemfile.devise14
- Gemfile.devise15
- Gemfile.devise20
- Gemfile.devise21
- Gemfile.devise30
script: "bundle exec rake spec"
| Drop 1.9, add 2.1, 2.2 and 2.3 | Drop 1.9, add 2.1, 2.2 and 2.3
| YAML | mit | nbudin/devise_cas_authenticatable,nbudin/devise_cas_authenticatable |
b640c7f68b2c20cf36f3d207a0fcafdc7fb1f494 | .travis.yml | .travis.yml | language: rust
sudo: false
rust:
- nightly
- beta
- stable
- 1.0.0
script:
- if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then cargo test --features no_std; else ! cargo test --features no_std; fi
- if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then cargo test --features const_fn; else ! cargo test --features ... | language: rust
sudo: false
rust:
- nightly
- beta
- stable
script:
- if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then cargo test --features no_std; else ! cargo test --features no_std; fi
- if [[ "$TRAVIS_RUST_VERSION" == nightly ]]; then cargo test --features const_fn; else ! cargo test --features const_fn; ... | Remove 1.0.0 from CI builds (doesn’t compile). | Remove 1.0.0 from CI builds (doesn’t compile).
mucell 0.3.0 added `T: ?Sized` to `MuCell<T>`, but that’s incompatible
with Rust 1.0 (`UnsafeCell<T>` only got `T: ?Sized` in 1.1) and I don’t
feel 1.0 compatibility to be valuable (1.1 is the stable release now).
| YAML | apache-2.0 | chris-morgan/mucell |
b5434a22b2123fa91dfec0146a1c0463f545ba89 | .travis.yml | .travis.yml | sudo: required
services:
- docker
notifications:
email: false
slack: ornl-cees:FX6IUxl1JcMpk2xRVJ7ygb7Y
language: python
cache: pip
before_install:
- docker pull dalg24/cap-stack
- docker run
--detach --tty
--name=test-machine
--volume ${TRAVIS_BUILD_DIR}:/scratch/source/cap
... | sudo: required
services:
- docker
notifications:
email: false
language: python
cache: pip
before_install:
- docker pull dalg24/cap-stack
- docker run
--detach --tty
--name=test-machine
--volume ${TRAVIS_BUILD_DIR}:/scratch/source/cap
--env TRAVIS_PULL_REQUEST=${TRAVIS_PULL_R... | Remove Slack notifications from Travis | Remove Slack notifications from Travis
| YAML | bsd-3-clause | ORNL-CEES/Cap,dalg24/Cap,Rombur/Cap,dalg24/Cap,dalg24/Cap,ORNL-CEES/Cap,ORNL-CEES/Cap,Rombur/Cap,Rombur/Cap |
d3f1dc89e88be1b77f283281aa63dd51060f73d2 | .travis.yml | .travis.yml | os: linux
dist: trusty
sudo: required
language: python
python:
- "2.7"
- "pypy"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y autoconf automake libtool
- sudo apt-get install -y libpng12-dev
- sudo apt-get install -y libjpeg62... | os: linux
dist: trusty
sudo: false
language: python
python:
- "2.7"
- "pypy"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
env:
matrix:
- TESSERACT=3.04.01-1
- TESSERACT=3.05.02-3
before_install:
- export TESSERACT_INSTALL=$HOME/.tesseract
- export TESSERACT_PKG=$TESSERACT_INSTALL/... | Test against more tesseract versions | Test against more tesseract versions
- use prebuilt binaries from
https://github.com/nijel/tesseract-ocr-build
- no longer needs sudo on Travis CI
- currently 3.04.01 and 3.05.02 are tested
| YAML | mit | sirfz/tesserocr |
2f82e1431d7f3d9943de71988dfff7cc207f5e11 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: java
jdk:
- oraclejdk8
script:
- mvn -Pdocker clean verify
addons:
- googlechrome
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
| sudo: required
services:
- docker
language: java
jdk:
- oraclejdk8
script:
- mvn -Pdocker clean verify
addons:
- googlechrome
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start | Fix Xvfb setup on TravisCI | Fix Xvfb setup on TravisCI
| YAML | mit | hypery2k/angular-spring-boot-sample,hypery2k/angular-spring-boot-sample,hypery2k/angular-spring-boot-sample,hypery2k/angular-spring-boot-sample |
3399bbabb5402ec8c1a876c0f8ba29fbee7741e4 | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
sudo: false
install: true
script: mvn clean install -DskipDocker -Dwdm.chromeDriverVersion=2.36
branches:
only: master
cache:
directories:
- $HOME/.m2/repository/
- $HOME/.m2/wrapper/
notifications:
email: false | language: java
jdk: oraclejdk8
sudo: required
install: true
script: mvn clean install -DskipDocker
branches:
only: master
cache:
directories:
- $HOME/.m2/repository/
- $HOME/.m2/wrapper/
notifications:
email: false | Add Chrome headless browser for UI tests | Add Chrome headless browser for UI tests
| YAML | apache-2.0 | rodionovsasha/ShoppingList,rodionovsasha/ShoppingList,rodionovsasha/ShoppingList |
edc989eb7f37b54a8348fbee4077865be945cbe8 | .travis.yml | .travis.yml | anguage: ruby
rvm:
- 2.0.0
- 2.1.2
- 2.1.3
| anguage: ruby
rvm:
- 2.0.0
- 2.1.2
- 2.1.3
env:
- GITHUB_CLIENT_ID=foo GITHUB_CLIENT_SECRET=foo SOUNDCLOUD_CLIENT_ID=foo
| Add environment variables to Travis configuration | Add environment variables to Travis configuration
| YAML | mit | jukebuzz/jb-backend,jukebuzz/jb-backend |
81071ffe68068aba5cc1d175b40e0a64fcda63c7 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
before_script:
- COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --dev install
script:
phpunit
| language: php
php:
- 5.4
- 5.5
- 5.6
before_script:
- COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --dev install
script:
phpunit
| Add support to PHP 5.6 | Add support to PHP 5.6
| YAML | mit | INSEAD-asim/SamlSPBundle,aerialship/SamlSPBundle,stof/SamlSPBundle,stuartwilsondev/SamlSPBundle,stuartwilsondev/SamlSPBundle,rlustin/SamlSPBundle,aerialship/SamlSPBundle,Causecast/SamlSPBundle,Causecast/SamlSPBundle,HearstCorp/SamlSPBundle,HearstCorp/SamlSPBundle,rlustin/SamlSPBundle,aerialship/SamlSPBundle,Causecast/S... |
9b33626b4fad2d4be91cc15525a0f84a21224cbc | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode10
script:
- open -b com.apple.iphonesimulator
- bundle exec fastlane scan --code_coverage true --device 'iPhone 8' --project MapleBacon.xcodeproj --scheme MapleBacon
- bundle exec danger
- swiftlint
after_success:
- bash <(curl -s https://codecov.io/bash) | language: objective-c
osx_image: xcode10
script:
- bundle exec fastlane scan --code_coverage true --device 'iPhone 8' --project MapleBacon.xcodeproj --scheme MapleBacon
- bundle exec danger
- swiftlint
after_success:
- bash <(curl -s https://codecov.io/bash) | Revert "Open sim on Travis" | Revert "Open sim on Travis"
This reverts commit a1e4e7e971e6d262a38cad84e8a2cf4c6d787c40.
| YAML | mit | JanGorman/MapleBacon,zalando/MapleBacon,zalando/MapleBacon,JanGorman/MapleBacon |
7522bbb50c85d14a804541ed5412026532731b3c | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
script: bundle exec rspec
before_install:
- gem update --system | language: ruby
rvm:
- 2.0.0
script: bundle exec rspec
before_install:
- gem update --system
services:
- redis-server
| Add redis-server to Travis CI services. | Add redis-server to Travis CI services.
| YAML | mit | webdestroya/lita-memegen |
3f7740a25568ef6fbaa680391988801d4ac608d3 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
install: true
| language: node_js
node_js:
- "0.8"
- "0.10"
| Add install step back in | Add install step back in
| YAML | mit | mantacode/kindly,tandrewnichols/kindly |
aee2e00e2d2ed9d8d68850ace872e73d20105300 | .travis.yml | .travis.yml | language: node_js
node_js:
- "7"
sudo: false
| language: node_js
node_js:
- '7'
sudo: false
deploy:
provider: npm
email: ben+jsnes-travis@firshman.co.uk
api_key:
secure: Ko5GqTCGgOPijSIP4iMUbUJ9mCWfhw2RlIwvGOU4a1RACHJCBVBa76bfFWAQADQyRDJo7gT8v7vK/P82d9/s5J5uRe+V9M6X/OwrkYcPLd1e8Vso/+oi5gcnRNWWmeU7Pg/8xdDXTq8f6OWYflK1F80Qe42vPdw+lMUDsqg3ElI=
on:
tags... | Deploy to NPM with Travis | Deploy to NPM with Travis
| YAML | apache-2.0 | bfirsh/jsnes,bfirsh/jsnes |
880370ea0c5ea2241dd548dc49a98bfb195d64af | .travis.yml | .travis.yml |
dist: precise
# Don't use the Travis Container-Based Infrastructure
sudo: true
language: java
jdk:
- oraclejdk7
- oraclejdk8
script:
- ./gradlew -S clean build functionalTest
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
... |
# Don't use the Travis Container-Based Infrastructure
sudo: true
language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
- os: linux
dist: precise
jdk: oraclejdk8
- os: linux
dist: trusty
jdk: oraclejdk8
install: ./gradlew wrapper --gradle-ver... | Add running functional tests using Java 9 to the build matrix | Add running functional tests using Java 9 to the build matrix
To build and run tests with Java 9 requires updating Gradle to 4.5
this is done by the install task using Java 8 before switching to
Java 9.
| YAML | apache-2.0 | rodm/gradle-teamcity-plugin,rodm/gradle-teamcity-plugin |
00a87a301f2c649e85a4748de50a9f39ed754b62 | .travis.yml | .travis.yml | language: go
install: go get -u -v github.com/spf13/hugo
branches:
only:
gh-pages-hugo
script:
- hugo
after_success:
- echo "ponylang.org" > ./public/CNAME
- if [[ $TRAVIS_BRANCH == 'gh-pages-hugo' && $TRAVIS_PULL_REQUEST == 'false' ]]; then
rev=$(git rev-parse --short HEAD);
... | language: go
install: go get -u -v github.com/spf13/hugo
branches:
only:
source
script:
- hugo
after_success:
- echo "ponylang.org" > ./public/CNAME
- if [[ $TRAVIS_BRANCH == 'source' && $TRAVIS_PULL_REQUEST == 'false' ]]; then
rev=$(git rev-parse --short HEAD);
cd public;
... | Switch to 'source' as branch name | Switch to 'source' as branch name
| YAML | bsd-2-clause | ponylang/ponylang.github.io |
91ff344dbde4aa70b81c219d3272f3a9f20ecf13 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.10"
| Remove multiple versions for run. | Remove multiple versions for run.
| YAML | apache-2.0 | rich-nguyen/karma-jspm |
8a8bf2999e485a93ce383bf35c769aa35ec01bb2 | .travis.yml | .travis.yml | language: perl
perl:
- "5.18"
- "5.16"
- "5.14"
- "5.12"
env:
- ES_VERSION=0.90.0
- ES_VERSION=0.90.1
- ES_VERSION=0.90.2
- ES_VERSION=0.90.3
- ES_VERSION=0.90.4
- ES_VERSION=0.90.5
install: "cpanm --installdeps --notest ."
script: "./run_travis_tests.sh"
notifications:
email:
recipients:
- ... | language: perl
perl:
- "5.18"
- "5.16"
- "5.14"
- "5.12"
env:
- ES_VERSION=0.90.0
- ES_VERSION=0.90.1
- ES_VERSION=0.90.2
- ES_VERSION=0.90.3
- ES_VERSION=0.90.4
- ES_VERSION=0.90.5
install: "cpanm --installdeps --notest --with-recommends ."
script: "./run_travis_tests.sh"
notifications:
email:
re... | Install recommended modules for testing | Install recommended modules for testing
| YAML | apache-2.0 | adjust/elasticsearch-perl,jeteve/elasticsearch-perl,elastic/elasticsearch-perl,adjust/elasticsearch-perl,elastic/elasticsearch-perl,adjust/elasticsearch-perl,jeteve/elasticsearch-perl,jeteve/elasticsearch-perl |
77e83d4e1c9715befcef5d92329c31b686644b6d | .travis.yml | .travis.yml | osx_image: xcode9.3beta
language: objective-c
xcode_project: Criollo.xcodeproj
script: build.sh
| osx_image: xcode9.3beta
language: objective-c
xcode_project: Criollo.xcodeproj
script: ./build.sh
| Use correct path of the build script | Use correct path of the build script | YAML | mit | T1V/Criollo,T1V/Criollo,T1V/Criollo,thecatalinstan/Criollo,T1V/Criollo,thecatalinstan/Criollo,thecatalinstan/Criollo |
90c51b8b7314f184358979599cef0f079c81c045 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
- nightly
install: composer install
| language: php
php:
- 5.6
- 7.0
- hhvm
- nightly
install: composer install
| Remove support for EOL versions of PHP. | Remove support for EOL versions of PHP.
| YAML | mit | mcordingley/LinearAlgebra |
d0791c80bb03c58bc97fe9f85760d5011cd70660 | .travis.yml | .travis.yml | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- platform-tools
- android-28
- build-tools-28.0.3
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- "$HOME/.gradle/caches/"
- "$HOME/.gradle/wrapp... | language: android
jdk:
- oraclejdk8
android:
components:
- tools
- platform-tools
- android-30
- build-tools-30.0.2
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- "$HOME/.gradle/caches/"
- "$HOME/.gradle/wrapp... | Change CI config to use android-30 | Change CI config to use android-30
| YAML | apache-2.0 | sswierczek/Helix-Movie-Guide-Android |
5211d1f73282c7177b4dd345e9dceec342390401 | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.4
before_install:
# Use utf8 encoding. Should be default, but this is insurance against
# future changes
- export PYTHONIOENCODING=UTF8
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.... | language: python
python:
- 2.7
- 3.4
before_install:
# Use utf8 encoding. Should be default, but this is insurance against
# future changes
- export PYTHONIOENCODING=UTF8
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.... | Fix typo is Scipy spelling | Fix typo is Scipy spelling
| YAML | bsd-3-clause | achabotl/pambox |
87ca6b48a17c17f8c93f8ff91475865468d85caf | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- ruby-head
- jruby-21mode
env:
- EXECJS_RUNTIME=Node
- EXECJS_RUNTIME= # Rubyracer or rubyrhino depending on platform
| sudo: false
language: ruby
rvm:
- "2.0"
- "2.1"
- "2.2"
- "2.3"
- jruby-21mode
env:
- EXECJS_RUNTIME=Node
- EXECJS_RUNTIME= # Rubyracer or rubyrhino depending on platform
| Remove ruby-head from Travis because it is unstable | Remove ruby-head from Travis because it is unstable
| YAML | mit | ai/autoprefixer-rails,ai/autoprefixer-rails,ai/autoprefixer-rails,ai/autoprefixer-rails |
f7c79dae4a7cfac195cad4806b688a90849dbc9b | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
before_script:
./node_modules/.bin/cake build
before_install:
- npm install coffee-script
| language: node_js
node_js:
- 0.10
before_script:
- npm install -g grunt-cli
| Install grunt_cli globally for Travis | Install grunt_cli globally for Travis
| YAML | mit | atom/donna,paulcbetts/biscotto,gjtorikian/biscotto,atom/donna,gjtorikian/biscotto,paulcbetts/biscotto |
c979ec7ded4274ed3938a1c5185512229693a533 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "v4.0.0"
- "iojs"
before_install: npm install -g grunt-cli
| language: node_js
node_js:
- "0.10"
- "0.12"
- "v4.0.0"
- "iojs"
env:
- CXX=g++-4.8
before_install: npm install -g grunt-cli
| Use GCC 4.8 on Travis CI | Use GCC 4.8 on Travis CI
Fixes an issue with Node.js v4, see travis-ci/travis-ci#4771 (comment).
| YAML | agpl-3.0 | fiddur/some-comments,fiddur/some-comments |
8ef9978cdd8b36ab8a7817500867694f662ac26a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.2
install:
- "travis_retry bundle install"
script: "bundle exec rspec"
env:
- RAILS_VERSION=3.2.18
- RAILS_VERSION=4.1.1
| language: ruby
cache: bundler
rvm:
- 1.9.3-p547
- 2.1.2
env:
- RAILS_VERSION=3.2.18
- RAILS_VERSION=4.1.1
install:
- "travis_retry bundle install"
script: "bundle exec rspec"
| Add Ruby 1.9 testing and bundle caching on Travis CI | Add Ruby 1.9 testing and bundle caching on Travis CI
| YAML | mit | adarsh/json_schema_rails,kotas/json_schema_rails,adarsh/json_schema_rails,fabiomassimo/json_schema_rails,kotas/json_schema_rails,fabiomassimo/json_schema_rails,adarsh/json_schema_rails,fabiomassimo/json_schema_rails |
442050d993161aa6333c31c85ac5f87102a18996 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4
install:
- bundle install --path vendor/bundle
- npm install protractor
- sh -e /etc/init.d/xvfb start
- webdriver-manager update
script:
- bundle exec jekyll serve --detach
- npm test
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- DISPLAY=:99.0
branches:
only:
- gh-pages
| language: ruby
rvm:
- 2.4
install:
- bundle install --path vendor/bundle
- npm install protractor
- sh -e /etc/init.d/xvfb start
- webdriver-manager update
script:
- bundle exec jekyll serve --detach
- npm test
- pkill -f jekyll
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- DISPLAY=:99.0
branches:
only:
... | Stop the Jekyll server, it's quite loud | Stop the Jekyll server, it's quite loud
| YAML | isc | xfix/ce,xfix/ce,xfix/ce |
f1831aa4376d1b7ea80619d305877f435e3468a4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- jruby-19mode
- rbx-2
before_install:
- sudo apt-get update
- sudo apt-get install libgirepository1.0-dev gobject-introspection gir1.2-gtk-3.0
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
script: "DISPLAY=:99.0 bundle exec rake tes... | language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- ruby-head
- ruby-head-clang
- jruby-19mode
- jruby-20mode
- jruby-head
- jruby-9.0.0.0
- rbx-2
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: ruby-head-clang
before_install:
- sudo apt-get update
- sudo apt-get install li... | Update Travis CI config to match that of latest gir_ffi | Update Travis CI config to match that of latest gir_ffi
| YAML | lgpl-2.1 | mvz/gir_ffi-pango |
abe93f6705c458e01704d82ca03761c91c5c6e68 | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
before_install:
- mkdir -p _build/cmake_bin _build/cmake_build
- wget https://cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz -O _build/cmake_bin/cmake.tgz
- tar xvfz _build/cmake_bin/cmake.tgz -C _build/cmake_bin
- export CMAKE3="$(pwd)/_build/cmake_bin/cmake-3.3.2-Linux... | language: cpp
compiler:
- clang
before_install:
- mkdir -p _build/cmake_bin _build/cmake_build
- wget --no-check-certificate https://cmake.org/files/v3.3/cmake-3.3.2-Linux-x86_64.tar.gz -O _build/cmake_bin/cmake.tgz
- tar xvfz _build/cmake_bin/cmake.tgz -C _build/cmake_bin
- export CMAKE3="$(pwd)/_build/cmak... | Test Travis CI: Update build script | Test Travis CI: Update build script
| YAML | mit | maddouri/hyper_array |
058368e7790e085b975cc233f42a5b28078bee9c | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# command to install dependencies
install:
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O minico... | language: python
python:
- "2.7"
# command to install dependencies
install:
# We do this conditionally because it saves us some downloading if the
# version is the same.
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O minico... | Add dep for testing env | Add dep for testing env
| YAML | mit | hall-lab/svtools,hall-lab/svtools,hall-lab/svtools |
6344c26c189bc15a0bc0c2e873957f4f3aa45041 | .travis.yml | .travis.yml | language: python
sudo: false
dist: xenial
cache:
pip: true
directories:
- $HOME/.cache/pypoetry
install:
- curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
- source $HOME/.poetry/env
- poetry install
script:
- poetry run pytest --benchmark-en... | language: python
dist: focal
cache:
pip: true
directories:
- $HOME/.cache/pypoetry
install:
- curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
- source $HOME/.poetry/env
- poetry install
script:
- poetry run pytest --benchmark-enable --min... | Change dist and poetry install url | Change dist and poetry install url
| YAML | mit | vberlier/nbtlib |
1111d81420a689eea96ea8f7c446f37073fced3d | .travis.yml | .travis.yml | language: python
python:
- '3.4'
- '3.5'
- '3.6'
env:
- HASS=0.55.1
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
| language: python
python:
- '3.4'
- '3.5'
- '3.6'
env:
- HASS=0.56.0
before_install:
- mv secrets_dummy.yaml secrets.yaml
install:
- pip3 install homeassistant==$HASS
script:
- hass -c . --script check_config
| Update Home Assistant to 0.56.0 for config checks in Travis CI | Update Home Assistant to 0.56.0 for config checks in Travis CI
| YAML | mit | davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config |
80dd31e282aa541ed2a1a43faef9feb340842240 | .travis.yml | .travis.yml | language: python
python:
- '3.2'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
services:
- redis-server
- mongodb
- docker
before_install:
- openssl aes-256-cbc -K $encrypted_ad8f1517fc45_key -iv $encrypted_ad8f1517fc45_iv
-in .env.enc -out .env -d
install: pip install -r requirements.txt
# Run server only for 50 seconds, some tim... | language: python
python:
- '3.3'
- '3.4'
- '3.5'
- '3.6'
services:
- redis-server
- mongodb
- docker
before_install:
- openssl aes-256-cbc -K $encrypted_ad8f1517fc45_key -iv $encrypted_ad8f1517fc45_iv
-in .env.enc -out .env -d
install: pip install -r requirements.txt
# Run server only for 50 seconds, some time given ... | Remove Python 3.2 from build matrix | Remove Python 3.2 from build matrix
| YAML | mit | jatindhankhar/aslo-v3,jatindhankhar/aslo-v3,jatindhankhar/aslo-v3,jatindhankhar/aslo-v3 |
74407f5318a9ccbd1af4c6ecbbe39f37b91b6405 | .travis.yml | .travis.yml | language: ruby
cache: bundler
script: bundle exec rspec
sudo: false
gemfile:
- gemfiles/rack_1.5.gemfile
- gemfiles/rack_1.6.gemfile
- gemfiles/rack_2.0.gemfile
- gemfiles/rack_2.1.gemfile
- gemfiles/rack_2.2.gemfile
rvm:
- 2.0.0
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
matrix:
exclude:
- rvm: 2.0.... | language: ruby
cache: bundler
script: bundle exec rspec
sudo: false
gemfile:
- gemfiles/rack_1.5.gemfile
- gemfiles/rack_1.6.gemfile
- gemfiles/rack_2.0.gemfile
- gemfiles/rack_2.1.gemfile
- gemfiles/rack_2.2.gemfile
rvm:
- 2.3.8
- 2.4.9
- 2.5.8
- 2.6.5
- 2.7.0
| Update Ruby versions tested by Travis | Update Ruby versions tested by Travis
| YAML | mit | tylerhunt/rack-canonical-host |
7e8660b4a4df3880aff29ee50a10005a94e25fba | .travis.yml | .travis.yml | language: rust
rust: nightly
cache: cargo
before_script: (cargo install rustfmt || true)
script:
- |
cargo fmt -- --write-mode=diff &&
cargo build &&
cargo test
| language: rust
rust: nightly
cache: cargo
before_script: (cargo install rustfmt || true)
script:
- |
PATH=$HOME/.cargo/bin:$PATH;
cargo fmt -- --write-mode=diff &&
cargo build &&
cargo test
| Add cargo bin to PATH for rustfmt | Add cargo bin to PATH for rustfmt
| YAML | apache-2.0 | SpamapS/rustygear,SpamapS/rustygear |
d124595ee85c245e7c1443fe402adf7ce4f7f6a4 | .travis.yml | .travis.yml | language: go
go:
- 1.10.x
- tip
install:
- mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers
- cd $GOPATH/src/github.com/opencontainers && git clone https://github.com/opencontainers/runtime-spec && cd runtime-spec && git checkout fa4b36aa9c99e00c2ef7b5c0013c84100ede5f4e
... | language: go
go:
- 1.10.x
- 1.11.x
- tip
install:
- mkdir -p $GOPATH/src/github.com/prometheus $GOPATH/src/github.com/opencontainers
- cd $GOPATH/src/github.com/opencontainers && git clone https://github.com/opencontainers/runtime-spec && cd runtime-spec && git checkout fa4b36aa9c99e00c2ef7b5c0013c... | Add Go 1.11 to Travis | Add Go 1.11 to Travis
Signed-off-by: Gábor Lipták <9e199222fac9dc9f83e67bca7cf6b1b7a7aed53e@gmail.com>
| YAML | apache-2.0 | containerd/cgroups,crosbymichael/cgroups |
0d3a608f7a1334f11fae6b79982fd98e7d6c27d1 | .travis.yml | .travis.yml | language: ruby
before_install:
- gem install bundler
os:
- linux
rvm:
- "2.7.1"
- "3.0.0"
| language: ruby
before_install:
- gem install bundler
os:
- linux
rvm:
- "2.7.1"
- "3.0.2"
| Update ruby version for Travis | Update ruby version for Travis
| YAML | mit | neilslater/games_dice,neilslater/games_dice,neilslater/games_dice |
3ed1d3a95ffc5d63b7a3468ceba0dbfda3751eb8 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk8
before_install:
# Install PhantomJS 2, currently unsupported by travis
- mkdir travis-phantomjs
- wget https://bitbucket.org/ariya/phantomjs/downloads/phantomjs-2.1.1-linux-x86_64.tar.bz2 -O $PWD/travis-phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2
- tar -xvf $... | language: java
sudo: false
jdk:
- oraclejdk8
before_install:
# Libs for PhantomJS 2, currently unsupported by travis
- apt-get install libicu52
# Install bower, grunt and UI dependencies
- npm install -g grunt bower
- "(cd tests-cucumber-ui && npm install && bower install)"
| Install required lib for PhantomJS 2, for Travis | Install required lib for PhantomJS 2, for Travis
| YAML | mit | jeremiemarc/zucchini-ui,pgentile/zucchini-ui,jeremiemarc/zucchini-ui,pgentile/zucchini-ui,pgentile/tests-cucumber,pgentile/zucchini-ui,pgentile/tests-cucumber,pgentile/tests-cucumber,pgentile/zucchini-ui,jeremiemarc/zucchini-ui,pgentile/zucchini-ui,pgentile/tests-cucumber,jeremiemarc/zucchini-ui |
92c563e676ff7212b9c46c3ce0551b683e3f4984 | .travis.yml | .travis.yml | language: scala
scala:
- 2.11.8
jdk:
- oraclejdk8
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq nodejs npm
script:
- cd ./backend && sbt test
- cd ../frontend && npm install && gulp test
| language: scala
scala:
- 2.11.8
jdk:
- oraclejdk8
before_install:
- sudo apt-get update -qq
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
- sudo apt-get install -qq npm
script:
- cd ./backend && sbt test
- cd ../frontend && npm install && gulp test
| Install js from another repo. | Install js from another repo.
| YAML | mit | ArchDev/unidirectional-akka-redux,ArchDev/unidirectional-akka-redux |
16f2393958a86603e62fa8a91b0748a473a46aed | .travis.yml | .travis.yml | # vim ft=yaml
# After changing this file, check it on:
# http://yaml-online-parser.appspot.com/
# See doc/travis_notes.txt for some guidelines
language: python
env:
WHEELHOUSE="--no-index --find-links=http://wheels.scikit-image.org/"
python:
- 2.6
- "2.7_with_system_site_packages"
- 3.2
- 3.3
- 3.4
before_i... | # vim ft=yaml
# After changing this file, check it on:
# http://yaml-online-parser.appspot.com/
# See doc/travis_notes.txt for some guidelines
language: python
env:
WHEELHOUSE="--no-index --find-links=http://wheels.scikit-image.org/"
PYTHONWARNINGS="all"
DISPLAY=:99.0
python:
- 2.6
- "2.7_with_system... | Put the other env variables up top as well | Put the other env variables up top as well
| YAML | bsd-3-clause | ajaybhat/scikit-image,jwiggins/scikit-image,vighneshbirodkar/scikit-image,youprofit/scikit-image,ClinicalGraphics/scikit-image,bsipocz/scikit-image,GaZ3ll3/scikit-image,chriscrosscutler/scikit-image,blink1073/scikit-image,michaelaye/scikit-image,pratapvardhan/scikit-image,Midafi/scikit-image,WarrenWeckesser/scikits-ima... |
6a5b60642af6bf9a7829473833f9fc30fdef877e | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk7
script:
- ./gradlew clean build functionalTest
| language: java
jdk:
- oraclejdk7
script:
- ./gradlew -S clean build functionalTest
| Enable stack trace output for build failures | Enable stack trace output for build failures
| YAML | apache-2.0 | rodm/gradle-teamcity-plugin,rodm/gradle-teamcity-plugin |
2f696f69ccb54b5b0ccf2839504b1a49688db7f5 | .travis.yml | .travis.yml | language: php
# use the new container infrastructure
#sudo: false
php:
- "5.5"
- "5.4"
- "5.3"
- '7.0'
- '7.1'
cache:
directories:
- vendor
before_script:
- composer self-update
- composer update --prefer-source
script:
- ./bin/phpspec run | 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
| Drop support of older PHP versions | Drop support of older PHP versions
| YAML | mit | akeneo/php-coupling-detector,nidup/coupling-detector |
f9b8b008793e85f2d033fbdcc2d5629c22f31aaa | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- platform-tools
- build-tools-24.0.2
- android-25
script:
- ./gradlew build connectedCheck | language: android
jdk: oraclejdk8
android:
components:
- tools
- platform-tools
- build-tools-24.0.2
- android-25
script:
- ./gradlew build connectedCheck | Add Jdk 8 for Travis | Add Jdk 8 for Travis
| YAML | apache-2.0 | ExpensiveBelly/Dagger2RetainGraph |
9581a1c013bc17837b1fb7b3121a46b730145a74 | .travis.yml | .travis.yml |
sudo: required
dist: trusty
language: cpp
script:
- mkdir debug && cd debug
- cmake -DCMAKE_CXX_COMPILER=$COMPILER .. && make
- cd .. && ./bin/run-tests
# Handle git submodules by ourselves.
git:
submodules: false
# Use sed to replace the SSH URL with the public URL, then initialize submodules.
before_ins... |
sudo: required
dist: trusty
language: cpp
script:
- mkdir debug && cd debug
- cmake -DCMAKE_CXX_COMPILER=$COMPILER .. && make
- cd .. && ./bin/run-tests
# Handle git submodules by ourselves.
git:
submodules: false
# Use sed to replace the SSH URL with the public URL, then initialize submodules.
before_ins... | Install json rpc on CI | Install json rpc on CI
| YAML | apache-2.0 | tinganho/l10ns,tinganho/l10ns,tinganho/l10ns |
3d14d89a483cace1bb326beb56c4a82d01a68442 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.3.3
- 2.4.0
before_install: gem install bundler -v 1.14.6
| language: ruby
sudo: false
cache: bundler
services:
- redis-server
before_install:
- gem install bundler
- gem update bundler
rvm:
- 2.3.3
- 2.4.0
| Add redis to travicCI build to fix failing builds | Add redis to travicCI build to fix failing builds
| YAML | mit | ualbertalib/pushmi_pullyu,ualbertalib/pushmi_pullyu,murny/pushmi_pullyu,murny/pushmi_pullyu |
1ec36d70d9541b618544b8ca62913f4d4541a24e | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: phpunit
after_script: wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/coverage/coverage.clover
| language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
script: ./vendor/bin/phpunit
after_script: wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/coverage/coverage.clover
| Call the vendored phpunit binary | Call the vendored phpunit binary
| YAML | mit | dshafik/guzzlehttp-vcr |
1831e6dfabd28f86716a3dfe17333dbd75d9a380 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rake test"
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.2.0
| language: ruby
script: "bundle exec rake test"
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
| Update patch version for ruby | Update patch version for ruby | YAML | mit | jhund/filterrific,jhund/filterrific |
76390dcd8eb5d9bc2b3921a1814c814facd61beb | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
fast_finish: true
services:
- memcached
before_script:
- sudo locale-gen fr_FR fr_FR.UTF-8
- locale -a
- echo "extension = zmq.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- printf "yes\nyes\nno\nyes\n" | pecl install pecl_http
- ech... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
matrix:
fast_finish: true
services:
- memcached
before_script:
- sudo locale-gen fr_FR fr_FR.UTF-8
- locale -a
- echo "extension = zmq.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
- printf "yes\nyes\nno\nyes\n" | pecl install pecl_http... | Enable test on PHP 5.6 | Enable test on PHP 5.6
| YAML | lgpl-2.1 | photon/session-memcached |
40a9bdbaf1f8627fad94d544c9fa4f7e1a2cd871 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli
- npm install -g bower
- npm install
- bower install
| language: node_js
node_js:
- "0.10"
before_script:
- npm install -g grunt-cli bower
- npm install
- bower install
| Install global npm modules in Travis CI in one line | Install global npm modules in Travis CI in one line
| YAML | mit | use-init/init,use-init/init,use-init/use-init.github.io,epicenterbitcoin/lower-third-generator,epicenterbitcoin/lower-third-generator |
0111ed72471a6f4feb6718956a842fca570810a6 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
script: "mvn cobertura:cobertura"
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: java
jdk:
- openjdk
script: "mvn cobertura:cobertura"
after_success:
- bash <(curl -s https://codecov.io/bash)
| Replace Oracle JDK with Open JDK | Replace Oracle JDK with Open JDK | YAML | apache-2.0 | armenak/DataDefender,armenak/DataDefender |
1b9a38b9e4440f04167fa63a3cdca2193553fd66 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js: stable
install:
- npm install -g bower grunt-cli
- npm install phantomjs-prebuilt
- npm install
- bower install
- gem install compass
- bower list
- npm list
script:
- grunt test
- grunt build
- SCRIPTS_FN=`ls dist/scripts/scripts*.js`
- sed "s/WENFO_GOOGLE_M... | sudo: false
language: node_js
node_js: 7
install:
- npm install -g bower grunt-cli
- npm install phantomjs-prebuilt
- npm install
- bower install
- gem install compass
- bower list
- npm list
script:
- grunt test
- grunt build
- SCRIPTS_FN=`ls dist/scripts/scripts*.js`
- sed "s/WENFO_GOOGLE_MAPS_A... | Revert to older nodejs for builds | Revert to older nodejs for builds
| YAML | bsd-2-clause | ANU-WALD/aus-env,ANU-WALD/aus-env,ANU-WALD/aus-env,ANU-WALD/aus-env |
4f42b60892ca7000c38d10773265e9e20ed442ac | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12" | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
| Test on all major Node.js versions | Test on all major Node.js versions
| YAML | mit | 101100/nmea-simple |
b90d4bd5768e19c28fa94ee8ea32c880d6f679ac | .travis.yml | .travis.yml | language: go
go:
- release
- tip
sudo: false
before_install:
- gotools=golang.org/x/tools
- if [ "$TRAVIS_GO_VERSION" = "release" ]; then gotools=code.google.com/p/go.tools; fi
install:
- go get -d -t -v ./...
- go get -v $gotools/cmd/cover
- go get -v $gotools/cmd/vet
- go get -v github.com/bradfitz/go... | language: go
go:
- 1.3.3
- 1.4.1
sudo: false
before_install:
- gotools=golang.org/x/tools
- if [ "$TRAVIS_GO_VERSION" = "release" ]; then gotools=code.google.com/p/go.tools; fi
install:
- go get -d -t -v ./...
- go get -v $gotools/cmd/cover
- go get -v $gotools/cmd/vet
- go get -v github.com/bradfitz/go... | Update Go versions for Travis. | Update Go versions for Travis.
| YAML | isc | btcsuite/btcsim,jcvernaleo/btcsim,btcsuite/btcsim,aakselrod/btcsim,jcvernaleo/btcsim,aakselrod/btcsim |
572e2726a348d460ce18676cbd8da97727786f13 | .travis.yml | .travis.yml | language: php
services:
- mysql
sudo: false
php:
- 7.3
matrix:
fast_finish: true
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache
notifications:
email: false
slack:
secure: jkZDWqI+za7mMP1RnozFmsB6SM2THjp59elBEpMrewjG270NpCdB2fCc2XFSeHVJ1vyPax/Q139CsWhctpD4smA4An1GmT... | language: php
services:
- mysql
sudo: false
php:
- 7.3
matrix:
fast_finish: true
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache
notifications:
email: false
slack:
secure: jkZDWqI+za7mMP1RnozFmsB6SM2THjp59elBEpMrewjG270NpCdB2fCc2XFSeHVJ1vyPax/Q139CsWhctpD4smA4An1GmT... | Put composer update 1 on place | Put composer update 1 on place
| YAML | bsd-3-clause | OpenBuildings/promotions |
0785fa5bb118245dd2ad0d4879ea706e38d48b18 | .travis.yml | .travis.yml | language: node_js
node_js:
- '4'
- '0.12'
- '0.10'
- '0.8'
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g npm@2.12.1; fi'
| language: node_js
node_js:
- '5'
- '4'
- '0.12'
- '0.10'
- '0.8'
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g npm@2.12.1; fi'
| Add Node.js v5 to Travis-CI test matrix | Add Node.js v5 to Travis-CI test matrix
| YAML | mit | watson/stackman |
ff10da738fdd44d7c34ec68b8967b43bd2876602 | .travis.yml | .travis.yml | language: python
sudo: false
install:
- 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:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
... | language: python
sudo: false
install:
- 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:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
... | Make sure the tests in Travis can import py_solve | Make sure the tests in Travis can import py_solve
| YAML | bsd-3-clause | ergs/transmutagen,ergs/transmutagen |
a17cfd21e46b131af94270e2e59870f859363b99 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
install:
- travis_retry pip install -r requirements/dev.txt --use-mirrors
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install ordereddict futures; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install futures; fi
- if... | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
install:
- travis_retry pip install -r requirements/dev.txt --use-mirrors
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install ordereddict futures mock; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install futures; fi
... | Install mock for pytohn 2.6 | Install mock for pytohn 2.6
| YAML | bsd-3-clause | alexmojaki/flower,raphaelmerx/flower,allengaller/flower,pj/flower,ucb-bar/bar-crawl-web,raphaelmerx/flower,Lingling7/flower,allengaller/flower,jzhou77/flower,lucius-feng/flower,tellapart/flower,lucius-feng/flower,asmodehn/flower,jzhou77/flower,alexmojaki/flower,tellapart/flower,pygeek/flower,barseghyanartur/flower,alle... |
a3771c6eaad594a7a421391b23da2a654e11e48f | .travis.yml | .travis.yml | sudo: false # run on docker infrastructure
rvm:
# - 1.9.2
- 1.9.3
- 2.1.7
- 2.2.3
# - jruby-19mode
# - jruby-18mode
# - rbx
# - ruby-head
env:
- "RAILS_VERSION=3.1"
- "RAILS_VERSION=3.2"
- "RAILS_VERSION=4.0"
- "RAILS_VERSION=4.1"
- "RAILS_VERSION=4.2"
matrix:
exclude:
- rvm: 2.2.3
... | sudo: false # run on docker infrastructure
rvm:
# - 1.9.2
- 1.9.3
- 2.1.7
- 2.2.3
- 2.3.0
# - jruby-19mode
# - jruby-18mode
# - rbx
# - ruby-head
env:
- "RAILS_VERSION=3.1"
- "RAILS_VERSION=3.2"
- "RAILS_VERSION=4.0"
- "RAILS_VERSION=4.1"
- "RAILS_VERSION=4.2"
matrix:
exclude:
- rvm... | Add ruby 2.3 to build matrix | Add ruby 2.3 to build matrix
| YAML | bsd-3-clause | librato/librato-rails,librato/librato-rails,librato/librato-rails |
8da51f8a14ac92a16d16f157ae301ce6b577e079 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.3.1
- 2.4
- 2.5
before_install:
- travis_retry gem update --system || travis_retry gem update --system 2.7.8
- travis_retry gem install bundler --no-document || travis_retry gem install bundler --no-document -v 1.17.3
| sudo: false
language: ruby
cache: bundler
rvm:
- 2.3.1
- 2.4
- 2.5
- 2.6
before_install: gem install bundler --no-document -v 2.0.1
| Add ruby 2.6 on Travis CI | Add ruby 2.6 on Travis CI
| YAML | mit | iberianpig/fusuma,iberianpig/fusuma |
3d1521011cf810bf1cd7a10403f34156bb82fa7f | .travis.yml | .travis.yml | language: php
addons:
apt:
packages:
- libonig-dev
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
env:
matrix:
- DRIVER="phpdbg"
- DRIVER="xdebug"
before_install:
- composer clear-cache
install:
- travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest
script:
... | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
env:
matrix:
- DRIVER="phpdbg"
- DRIVER="xdebug"
before_install:
- composer clear-cache
install:
- travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest
script:
- if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr ... | Revert "Fix: Work around build failures on PHP 7.4" | Revert "Fix: Work around build failures on PHP 7.4"
This reverts commit e492de084a6e2612368b9060bb6d4bb63f2f4410.
| YAML | bsd-3-clause | sebastianbergmann/environment |
d90ba933516708f1cae75021ad457c309cd3f6d8 | .travis.yml | .travis.yml | language: bash
services: docker
env:
- POSTGIS_MAJOR=2.3 POSTGIS_VERSION=2.3.3+dfsg-1.pgdg90+1 PG_MAJOR=9.5 VARIANT=slim
- POSTGIS_MAJOR=2.3 POSTGIS_VERSION=2.3.3+dfsg-1.pgdg90+1 PG_MAJOR=9.6 VARIANT=slim
- POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=10.3 VARIANT=slim
script:
- ./scripts/... | language: bash
services: docker
env:
- POSTGIS_MAJOR=2.3 POSTGIS_VERSION=2.3.3+dfsg-1.pgdg90+1 PG_MAJOR=9.5 VARIANT=slim
- POSTGIS_MAJOR=2.3 POSTGIS_VERSION=2.3.3+dfsg-1.pgdg90+1 PG_MAJOR=9.6 VARIANT=slim
- POSTGIS_MAJOR=2.4 POSTGIS_VERSION=2.4.4+dfsg-4.pgdg90+1 PG_MAJOR=10.3 VARIANT=slim
- POSTGIS_MAJOR=2.4 P... | Add PostGIS 2.4 / PostgreSQL 10.6 to build matrix | Add PostGIS 2.4 / PostgreSQL 10.6 to build matrix
Co-Authored-By: rbreslow <9d1d0c629ec8d2fb635bdb06b96a3201608812c5@azavea.com>
| YAML | apache-2.0 | azavea/docker-postgis |
51cd8af78f41474fd9e161dcd716899941419849 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.7
- 2.2.4
- 2.3.0
- jruby-19mode
- jruby-9.0.0.0
script: bundle exec rake ci
sudo: false
cache: bundler
| language: ruby
rvm:
- 2.0.0
- 2.1.7
- 2.2.4
- 2.3.0
- jruby-19mode
- jruby-9.0.0.0
before_install: gem update bundler
script: bundle exec rake ci
sudo: false
cache: bundler
| Fix failures on Travis CI | Fix failures on Travis CI
| YAML | mit | yujinakayama/rspec-composable_json_matchers |
af6aee940db347815ed4671ae33d3fd859f75e67 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
# Handle git submodules yourself
git:
submodules: false
install:
- sudo apt-get update -qq
- sudo apt-get install -qq gdal-bin libgdal-dev libgdal1h libgdal1-dev libgeos-dev
- "pip install ."
- "pip install GDAL==1.10.0 --global-option=build_ext --global-option... | language: python
python:
- "2.7"
- "3.4"
# Handle git submodules yourself
git:
submodules: false
# Use system wide packages, needed for gdal
virtualenv:
system_site_packages: true
install:
- sudo apt-get update -qq
- sudo apt-get install python-gdal python3-gdal
- "pip install ."
script: "python tes... | Make Travis install python-gdal and python3-gdal in system wide packages and use them for the tests. | Make Travis install python-gdal and python3-gdal in system wide packages and use them for the tests.
| YAML | mit | jachym/PyWPS,geopython/pywps,jonas-eberle/pywps,tomkralidis/pywps,ricardogsilva/PyWPS,bird-house/PyWPS,SiggyF/pywps-4,ldesousa/PyWPS |
8d3c7b538e0e2a505333f297c9a1e869b6b456fa | .travis.yml | .travis.yml | language: python
install:
- pip install -r requirements.txt
- pip install tox
script: tox
| language: python
python:
- "2.7"
- "3.5"
install:
- pip install -r requirements.txt
- pip install tox
script: tox
| Add Python 3.5 to Travis | Add Python 3.5 to Travis
| YAML | agpl-3.0 | lamyj/redmill,lamyj/redmill,lamyj/redmill |
31b83a5fe8d0f30664f0e10c6ec62b6738a5cbd4 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
script:
- composer test
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
script:
- composer test
| Enable testing against PHP nightly | Enable testing against PHP nightly
| YAML | mit | raphaelstolt/json-merge-patch |
fccaf4c85fd7ab9a68e1b71e904a2452285c455c | .travis.yml | .travis.yml | sudo: false
language: node_js
cache:
directories:
- node_modules
node_js:
- '0.11'
- '0.10'
notifications:
slack:
rooms:
- secure: Z0uu1uGNK1R9ADq8VyMMqQgZ6WBnLZw2RUEsIQyVpR6JKEMdyZ8VNVvYY+WGLPN6HV1VuwBrAX4wAR6944QbPvP5+9pxYmc8fiMuBRefQdPV395I0DTnJIVrdolk7ZTsN8+FSW6iKHfccV/4/zPxlWBFZiYu1kSJUUO3tLimvJ8= ... | sudo: false
language: node_js
cache:
directories:
- node_modules
node_js:
- 'iojs'
- '0.12'
- '0.11'
- '0.10'
notifications:
slack:
rooms:
- secure: Z0uu1uGNK1R9ADq8VyMMqQgZ6WBnLZw2RUEsIQyVpR6JKEMdyZ8VNVvYY+WGLPN6HV1VuwBrAX4wAR6944QbPvP5+9pxYmc8fiMuBRefQdPV395I0DTnJIVrdolk7ZTsN8+FSW6iKHfccV/4/zPxlWBFZiY... | Add latest stable node & iojs versions to build matrix | Add latest stable node & iojs versions to build matrix
| YAML | apache-2.0 | eHealthAfrica/data-models |
0e6598063e34ba2617683014fb77f52afdf5dc88 | .travis.yml | .travis.yml | language: node_js
node_js:
- '5.7'
- '4'
| language: node_js
node_js:
- '5'
- '4'
before_install:
- npm install -g npm@latest
- npm prune
| Use Latest NPM for Travis | [Enhance][Test] Use Latest NPM for Travis
| YAML | mit | arrowrowe/romi |
6ad0aaf40f24377244e086a4d81092b37d2b344f | .travis.yml | .travis.yml | language: rust
os: osx
rust:
- 1.19.0
- stable
cache: cargo
script: cargo test
| language: rust
os: osx
rust:
- 1.28.0
- stable
cache: cargo
script: cargo test
| Use Rust 1.28 on Travis too | CI: Use Rust 1.28 on Travis too
| YAML | apache-2.0 | dbrgn/tldr-rs,dbrgn/tealdeer,dbrgn/tealdeer |
b2b7d178ecc33a5a3d61aab243bffe3055690c29 | .travis.yml | .travis.yml | language: node_js
node_js:
- '13'
- '12'
- '10'
| language: node_js
node_js:
- '16'
- '14'
- '12'
| Test on current versions of node | Test on current versions of node
| YAML | mit | ctimmerm/axios-mock-adapter,ctimmerm/axios-mock-adapter |
537f78ea62cbfd2530445b5790b3d73369e27943 | .travis.yml | .travis.yml | language: python
python: 2.7
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=docs
- TOX_ENV=flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
| language: python
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=docs
- TOX_ENV=flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
| Configure Travis CI to test only Python 2.7 | Configure Travis CI to test only Python 2.7
| YAML | mit | Ceasar/twosheds |
68db5acb16f7bd8a1c74b7ea141e7b7177991346 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
install:
- "pip install coveralls"
- "pip install -e .[test]"
script:
- py.test --cov cligj --cov-report term-missing
after_success:
- coveralls
deploy:
on:
tags: true
provider: pypi
distributions: "sdist bdist_wheel"
user... | sudo: false
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- "pip install coveralls"
- "pip install -e .[test]"
script:
- py.test --cov cligj --cov-report term-missing
after_success:
- coveralls
deploy:
on:
tags: true
provider: pypi
distributions: "sdist bdist_wheel"
user... | Remove python 3.3 from matrix, add 3.6 | Remove python 3.3 from matrix, add 3.6 | YAML | bsd-3-clause | mapbox/cligj |
041b9edf8779f14ae087b885d93d1d4e73db2466 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
| sudo: required
dist: trusty
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3.0
| Add ruby 2.3.0 to Travis CI Build | Add ruby 2.3.0 to Travis CI Build
| YAML | mit | mmozuras/poper |
a0ca0a2680c299d7fc1736abac1ccf7cf5256e5c | .travis.yml | .travis.yml | language: node_js
node_js:
- "8.0"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libcairo2-dev
- libjpeg8-dev
- libpango1.0-dev
- libgif-dev
- g++-4.9
env:
- CXX=g++-4.9
before_install:
- npm explore npm -g -- npm install node-gyp@latest
sudo: false
| language: node_js
node_js:
- "7.6"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- libcairo2-dev
- libjpeg8-dev
- libpango1.0-dev
- libgif-dev
- g++-4.9
env:
- CXX=g++-4.9
before_install:
- npm explore npm -g -- npm install node-gyp@latest
sudo: false
| Use node 7.6 for build | Use node 7.6 for build
| YAML | mit | anandanand84/technicalindicators,anandanand84/technicalindicators,anandanand84/technicalindicators,anandanand84/technicalindicators |
091ce4428490e67a4e281cebc037498fb7b3808d | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4.0
env:
- PUPPET_VERSION="~> 3.6.0"
- PUPPET_VERSION="~> 3.7.0"
- PUPPET_VERSION="~> 4.3.0"
- PUPPET_VERSION="~> 4.3.0" STRICT_VARIABLES=yes
- PUPPET_VERSION="~> 5.5.0"
before_install:
- gem update bundler
- bundle --version
- gem update --system 2.1.11
- gem --version
s... | language: ruby
rvm: $RUBY_VERSION
env:
- PUPPET_VERSION="~> 3.6.0" RUBY_VERSION="2.1.0"
- PUPPET_VERSION="~> 3.7.0" RUBY_VERSION="2.1.0"
- PUPPET_VERSION="~> 4.3.0" RUBY_VERSION="2.4.0"
- PUPPET_VERSION="~> 4.3.0" STRICT_VARIABLES=yes RUBY_VERSION="2.4.0"
- PUPPET_VERSION="~> 5.5.0" RUBY_VERSION="2.4.0"
be... | Work around versioning issues with different Ruby versions | Work around versioning issues with different Ruby versions
Puppet 5.x ships with Ruby 2.4, but older Puppet versions (we still
support Puppet 3.x) are obvioulsy incompatible.
See affected build at https://travis-ci.org/willdurand/puppet-nodejs/builds/366517540
| YAML | mit | willdurand/puppet-nodejs,willdurand/puppet-nodejs |
b7624b608bb80e4eb115f2dd54babd32e87b9fd8 | .travis.yml | .travis.yml | sudo: required
dist: trusty
language: node_js
services:
- docker
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
- google-chrome-beta
node_js:
- "7"
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb sta... | sudo: required
dist: trusty
language: node_js
services:
- docker
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
- google-chrome-beta
- docker-ce
node_js:
- "7"
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /e... | Use recent Docker version in Travis build | Use recent Docker version in Travis build
| YAML | agpl-3.0 | elkozmon/zoonavigator-web,elkozmon/zoonavigator-web,elkozmon/zoonavigator-web |
973f0ac7335006a8da4376262a1d7573a376a219 | .travis.yml | .travis.yml | dist: trusty
language: php
php:
- '5.6'
- '7.0'
- hhvm
- nightly
install:
- composer update | dist: trusty
language: php
php:
- '5.6'
- '7.0'
- nightly
install:
- composer update | Remove hhvm platform from Travis tests. | Remove hhvm platform from Travis tests.
| YAML | mit | dream-group/isced |
dc471bff9a41ccfa9fc98241689a3df991789dbf | .travis.yml | .travis.yml | language: node_js
matrix:
include:
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
env: COVERALLS=1
| language: node_js
matrix:
include:
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 6
- node_js: node
env: COVERALLS=1
| Drop support for Node 5 | Drop support for Node 5
| YAML | mit | zentrick/iab-vast-model |
e9fcfe07d35100b762262bea25121bc66d2e3439 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.2.6
- 2.3.3
gemfile:
- gemfiles/sprockets3.gemfile
- gemfiles/sprockets4.gemfile
branches:
only:
- master
before_install:
- 'gem update --system --no-doc'
after_script:
- '[ ${TRAVIS_EVENT_TYPE} != "pull_request" ] && [ ${TRAVIS_BRANCH} = "master" ] && bundle exec c... | sudo: false
language: ruby
rvm:
- 2.2.6
- 2.3.3
gemfile:
- gemfiles/sprockets3.gemfile
- gemfiles/sprockets4.gemfile
branches:
only:
- master
before_install:
- gem update --system 2.7.9 --no-doc
after_script:
- '[ ${TRAVIS_EVENT_TYPE} != "pull_request" ] && [ ${TRAVIS_BRANCH} = "master" ] && bundle ex... | Fix build failure due to RubyGems | Fix build failure due to RubyGems
Use rubygems v2 because rubygems v3 drops support of Ruby 2.2 or former.
ref. https://github.com/rubygems/rubygems/blob/v3.0.0/rubygems-update.gemspec#L32
| YAML | mit | yasaichi/grease,yasaichi/grease,yasaichi/grease,yasaichi/grease |
a5d01000a89f54fd6e854ec5ceb39d1d8d10f11a | .travis.yml | .travis.yml | language: go
go:
- 1.1
- 1.2
- release
- tip
install:
- go get github.com/oschwald/maxminddb-golang
- go get launchpad.net/gocheck
script:
- go test -v ./...
| language: go
go:
- 1.1
- 1.2
- release
- tip
install:
- go get github.com/oschwald/maxminddb-golang
- go get launchpad.net/gocheck
- go install
script:
- go test -v ./...
| Install package so that tests can be in separate package | Install package so that tests can be in separate package
| YAML | isc | agaurav/geoip2-golang,viki-org/geoip2-golang,adjust/geoip2-golang,oschwald/geoip2-golang |
0fc692b445ccfdca0d02cd45f6641d5dce9118af | .travis.yml | .travis.yml | language: php
php:
- 5.5
install:
- composer install --no-interaction --prefer-source
script:
- ./vendor/bin/phing
deploy:
provider: heroku
api_key:
secure: VccBuoFubIXT3Q/KKCuzfgw6ntT2NLcUkPv3UzOSqhKVqfivPO2s+22yOWcysUfYSaYcYpemKZ+XtsnAn7jpqKc70Wok7uQs6FsKD1XjonUqxM2QrploqdS4H9zcFpF50b462HfV6SdCvoDutTpUBtPiZ63... | language: php
php:
- 5.5
install:
- composer install --no-interaction --prefer-source
script:
- ./vendor/bin/phing
deploy:
provider: heroku
api_key:
secure: VccBuoFubIXT3Q/KKCuzfgw6ntT2NLcUkPv3UzOSqhKVqfivPO2s+22yOWcysUfYSaYcYpemKZ+XtsnAn7jpqKc70Wok7uQs6FsKD1XjonUqxM2QrploqdS4H9zcFpF50b462HfV6SdCvoDutTpUBtPiZ63... | Deploy to the right app. | Deploy to the right app.
| YAML | mit | hrphp/widgets-api |
76587168a09b595637fd270cf607d75403e6c1c3 | .travis.yml | .travis.yml | language: clojure
lein: lein2
addons:
postgresql: "9.3"
before_script:
- psql -c "CREATE DATABASE tamarack OWNER $USER ENCODING 'UTF-8';"
- sudo apt-get install phantomjs npm
- sudo npm install -g karma karma-phantomjs-launcher karma-jasmine
script:
- lein cljsbuild once
- lein midje
- /usr/local/lib/n... | language: clojure
lein: lein2
addons:
postgresql: "9.3"
before_script:
- createdb -e -U postgres -E UTF-8 -O $USER tamarack
- sudo apt-get install phantomjs npm
- sudo npm install -g karma karma-phantomjs-launcher karma-jasmine
script:
- lein cljsbuild once
- lein midje
- /usr/local/lib/node_modules/ka... | Use createdb instead of psql to create Postgres DB | Use createdb instead of psql to create Postgres DB
| YAML | bsd-3-clause | mhallin/tamarack,mhallin/tamarack |
31a86c22b057f64287d201885a57a501f0a9f29f | .travis.yml | .travis.yml | language: python
sudo: false
before_script:
- pip install tox
script:
- tox
matrix:
fast_finish: true
allow_failures:
- env: TOXENV=docstrings
include:
- python: 2.6
env: TOXENV=py26
- python: 2.7
env: TOXENV=py27
- python: 3.3
env: TOXENV=py33
- python: 3.4
env: TO... | language: python
sudo: false
before_script:
- pip install tox
script:
- tox
matrix:
fast_finish: true
allow_failures:
- env: TOXENV=docstrings
include:
- python: 2.7
env: TOXENV=py27
- python: 3.4
env: TOXENV=py34
- python: 3.5
env: TOXENV=py35
- python: 3.6
env: TO... | Remove python 2.6 and 3.3 from Travis | Remove python 2.6 and 3.3 from Travis | YAML | mit | flintwork/mccabe |
c3e53413e63f70ef7be9464cd24cecf7e86c96e5 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "6.10.2"
| sudo: false
language: node_js
node_js:
- "10.5.0"
| Update yaml to match the node version | Update yaml to match the node version
| YAML | bsd-3-clause | dabapps/eslint-config-dabapps,dabapps/eslint-config-dabapps,dabapps/eslint-config-dabapps |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.