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 |
|---|---|---|---|---|---|---|---|---|---|
e0f52bef62173ad06a545351fe294d4eabed1583 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "6"
- "4"
- "0.12"
- "0.10"
- "0.8"
| language: node_js
node_js:
- "node"
- "6"
- "4"
- "0.12"
- "0.10"
| Stop testing on Node 0.8. Mocha 3 can’t run on it. | Stop testing on Node 0.8. Mocha 3 can’t run on it.
| YAML | mit | myrne/performance-now |
99443111277b627bfdf3c560d7838ee14bb373c5 | .travis.yml | .travis.yml | language: go
go:
- 1.5
- 1.6
- tip
| language: go
go:
- 1.5
- 1.6
- 1.7
- tip
| Add Go 1.7 to Travis-CI build matrix. | Add Go 1.7 to Travis-CI build matrix.
| YAML | mit | hectane/hectane,nathan-osman/go-cannon |
40a15ce0ae83be3c0823080e1d94c3a3a4745251 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
notifications:
recipients:
- jari.bakken@gmail.com
irc: "irc.freenode.net#holderdeord"
script: "RAILS_ENV=test bundle exec rake travis"
before_script:
- "sh -e /etc/init.d/xvfb start"
- "npm install -g buster autolint"
env:
- DISPLAY=:99.0 COVERAGE_THRESHOLD=60
| language: ruby
rvm:
- 1.9.3
notifications:
recipients:
- jari.bakken@gmail.com
irc: "irc.freenode.net#holderdeord"
script: "RAILS_ENV=test bundle exec rake travis"
before_script:
- psql -c 'create database hdo_test;' -U postgres
- "ruby -ryaml -e 'c = YAML.load_file(%{config/database.yml}); c[%{test}][%{u... | Fix for postgres on Travis. | Fix for postgres on Travis.
| YAML | bsd-3-clause | holderdeord/hdo-site,holderdeord/hdo-site,holderdeord/hdo-site,holderdeord/hdo-site |
a563ee26880b4fa58201e294145867b38503a59a | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
# command to install dependencies
install:
- "pip install --pre pyusb"
# command to run tests
script: "python setup.py test -s test.soft"
| language: python
sudo: false
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
cache:
directories:
- $HOME/.cache/pip
addons:
apt:
packages:
- libusb-1.0-0
install:
- pip install "pip>=7.0.2" wheel
- pip install --pre pyusb
script: "python setup.py test -s test.soft"
| Use Travis container based infrastructure. | Use Travis container based infrastructure.
| YAML | bsd-2-clause | Yubico/python-yubico |
2126b99451ce788752c7bf6444ccbaa7dc225a1d | .travis.yml | .travis.yml | language: java
install: true
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- chmod +x gradlew
jdk: oraclejdk8
git:
depth: false
addons:
sonarcloud:
organization: "gurkenlabs-github"
script:
- ./gradlew fullbuild
- if [ $TRAVIS_PULL_REQUEST = 'false' ]; then
sonar-sc... | language: java
install: true
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- chmod +x gradlew
jdk: oraclejdk11
git:
depth: false
addons:
sonarcloud:
organization: "gurkenlabs-github"
script:
- ./gradlew fullbuild
- jdk_switcher use oraclejdk8
- ./gradlew fullbuild
- if [... | Build against java 8 and java 11. | Build against java 8 and java 11.
| YAML | mit | gurkenlabs/litiengine,gurkenlabs/litiengine |
700dd5b266e8357aba4798ef517a5e50c7725677 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- for dir in prolific*; do (cd $dir && npm install); done
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- for dir in prolific*; do (cd $dir && npm install); done
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 5 on Travis CI. | Test with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/prolific,bigeasy/prolific |
9ab19c812d40fb4061330b8d27ba6d3fa1ce0fee | .travis.yml | .travis.yml | language: cpp
os:
- linux
sudo: required
dist: trusty
compiler:
- clang
- gcc
addons:
apt:
sources:
- sudo add-apt-repository ppa:george-edison55/cmake-3.x --yes
packages:
- cmake
- cmake-data
before_install:
- git submodule update --init --recursive
install:
- $CXX --versi... | language: cpp
os:
- linux
sudo: required
dist: trusty
compiler:
- clang
- gcc
before_install:
- git submodule update --init --recursive
install:
- wget -quiet http://www.cmake.org/files/v3.3/cmake-3.3.2.tar.gz
- tar xf cmake-3.3.2.tar.gz
- cd cmake-3.3.2
- ./configure
- make
- sudo make insta... | Revert back to CMake manual install | Revert back to CMake manual install | YAML | mit | MrJaqbq/YAGE,MrJaqbq/Volkhvy,MrJaqbq/YAGE,MrJaqbq/Volkhvy |
2d573dd88962379424908d21beae8153ff267d10 | .travis.yml | .travis.yml | language: perl
perl:
- "5.20"
- "5.10"
services:
- mysql
before_script:
- mysql -e "create database seccubus_create"
- mysql -e "create database seccubus_upgrade" | language: perl
perl:
- "5.20"
- "5.10"
services:
- mysql
before_script:
- mysql -e "create database seccubus_create"
- mysql -e "create database seccubus_upgrade"
- mysql -e "create database seccubus_issues" | Make sure DB is there | Make sure DB is there
| YAML | apache-2.0 | vlamer/Seccubus_v2,vlamer/Seccubus_v2,vlamer/Seccubus_v2,schubergphilis/Seccubus,vlamer/Seccubus_v2,vlamer/Seccubus_v2,schubergphilis/Seccubus,schubergphilis/Seccubus,vlamer/Seccubus_v2,schubergphilis/Seccubus,schubergphilis/Seccubus |
26c895278c295e969b321142b9c32623f3393cc2 | .travis.yml | .travis.yml | language: cpp
sudo: false
dist: xenial
os:
- linux
addons:
apt:
packages:
- g++-5
git:
submodules: false
branches:
only:
- master
script:
- cmake -D CMAKE_BUILD_TYPE=Debug -D CMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage -fsanitize=address" ./
- make VERBOSE=1 -j 2
- ctest -VV
after_script:
- cd ... | language: cpp
sudo: false
dist: xenial
os:
- linux
addons:
apt:
packages:
- g++-5
- lcov
git:
submodules: false
branches:
only:
- master
script:
- cmake -D CMAKE_BUILD_TYPE=Debug -D CMAKE_CXX_FLAGS="-fprofile-arcs -ftest-coverage -fsanitize=address" ./
- make VERBOSE=1 -j 2
- ctest -VV
after_sc... | Remove catch.hpp from the codecov results. Also ensure lcov is installed | Remove catch.hpp from the codecov results. Also ensure lcov is installed
| YAML | mit | mfdeakin/nd_array |
8492b93297e670d9c7c99858b57c9ad01aeb5940 | .travis.yml | .travis.yml | dist: xenial
language: python
python:
- 3.8
install:
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
script:
- bin/lint
- bin/test
after_success:
- pip install coveralls
- coveralls
notifications:
email:
on_success: never
| dist: xenial
language: python
python:
- 3.6
- 3.7
- 3.8
install:
- pip install -r requirements.txt
- pip install -r requirements-dev.txt
script:
- bin/lint
- bin/test
after_success:
- pip install coveralls
- coveralls
notifications:
email:
on_success: never
| Test against multiple Python versions in CI | Test against multiple Python versions in CI
| YAML | mit | olivertso/pde |
962f58e32d3be99870d18de72c5f2cb37dfa622b | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
env:
global:
- CORE_BRANCH=master
- APP_NAME=bookmarks
matrix:
- DB=sqlite
branches:
only:
- master
- /^stable\d+(\.\d+)?$/
before_install:
# - composer install
- wget https://raw.githubusercontent.com/owncloud/administration/master/tr... | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
- 7
env:
global:
- CORE_BRANCH=master
- APP_NAME=bookmarks
matrix:
- DB=sqlite
branches:
only:
- master
- /^stable\d+(\.\d+)?$/
before_install:
# - composer install
- wget https://raw.githubusercontent.com/owncloud/administration/mas... | Add PHP 7 to test matrix | Add PHP 7 to test matrix | YAML | agpl-3.0 | shtrom/bookmarks,owncloud/bookmarks,shtrom/bookmarks,owncloud/bookmarks |
117cfd03d4a3da4ddbafd966243b2cefa3cd60a0 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.12"
- "0.10"
- iojs
before_install:
- npm install -g npm@'>2.7.0'
after_script:
- CODECLIMATE_REPO_TOKEN=7b0cbee1382c968a036868d26ec04d0ddc7b7aeef25ceead5ff9ff50a3c2ae8b codeclimate < coverage/lcov.info
- rm -rf ./coverage
notifications:
email:
on_success: change
on... | language: node_js
sudo: false
node_js:
- "0.12"
- "0.10"
- "4"
after_script:
- CODECLIMATE_REPO_TOKEN=7b0cbee1382c968a036868d26ec04d0ddc7b7aeef25ceead5ff9ff50a3c2ae8b codeclimate < coverage/lcov.info
- rm -rf ./coverage
notifications:
email:
on_success: change
on_failure: change
| Update to test node stable and remove pre-install | Update to test node stable and remove pre-install
The node version installed nowadays on Travis is good enough, so no need
to install it before running the tests.
| YAML | mit | sondr3/generator-jekyllized,sondr3/generator-jekyllized,sondr3/generator-jekyllized |
585450db8a3f0d871084bd10e007508fcc3a80ac | .travis.yml | .travis.yml | language: go
go:
- 1.8.1
before_script:
- go get github.com/alecthomas/gometalinter
- gometalinter --install
script:
- go build -race -v -gcflags "-N -l" ./...
- exec 5>&1 && output="$(gofmt -l -w "$@" | tee /dev/fd/5)" && [[ -z "$output" ]]
- gometalinter --exclude=corefoundation.go --deadline=60s --vend... | language: go
go:
- 1.8.1
before_script:
- go get github.com/alecthomas/gometalinter
- gometalinter --install
script:
- go build -race -v -gcflags "-N -l" ./...
- exec 5>&1 && output="$(gofmt -l -w "$@" | tee /dev/fd/5)" && [[ -z "$output" ]]
- gometalinter --exclude=corefoundation.go --deadline=60s --vend... | Set gometalinter cyclo to 30 | Set gometalinter cyclo to 30
Signed-off-by: Artur Troian <074b12614ab7f9e8d27abe59a593f8d13fab9fa5@gmail.com>
| YAML | apache-2.0 | VolantMQ/volantmq,troian/surgemq,troian/surgemq,VolantMQ/volantmq |
1bac4c2f40e99c50fb8d31f1b9dedc609baea4a2 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
install:
- sudo apt-get purge riak
- sudo curl https://packagecloud.io/install/repositories/basho/riak/script.deb | sudo bash
- sudo apt-get install riak=2.0.0-1
- sudo sed -i -e "s/search = off/search = on/g" /etc/riak/riak.conf
- sudo se... | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
install:
- sudo apt-get purge riak
- sudo curl https://packagecloud.io/install/repositories/basho/riak/script.deb | sudo bash
- sudo apt-get install riak=2.0.0-1
- sudo sed -i -e "s/search = off/search = on/g" /etc/riak/riak.conf
- sudo se... | Use memory as storage backend | Use memory as storage backend
| YAML | mit | php-riak/riak-client |
c221325c0a2df53779cf0ed4cae566d1897b6819 | .travis.yml | .travis.yml | language: ruby
script: bundle exec rake test
rvm:
- 2.2
- 2.1
- 2.0.0
- ruby-head
- jruby-head
- rbx-2
addons:
code_climate:
repo_token: 6f4b7c1f44b29f414ffb9b243b1f83cf5fa40eb297b4cd0c7761bf960487a8eb
| language: ruby
script: bundle exec rake test
rvm:
- 2.2
- 2.1
- 2.0.0
- ruby-head
- jruby-head
- rbx-2
addons:
code_climate:
repo_token: 6f4b7c1f44b29f414ffb9b243b1f83cf5fa40eb297b4cd0c7761bf960487a8eb
matrix:
allow_failures:
- rvm: ruby-head | Allow failures on Ruby head | Allow failures on Ruby head
| YAML | mit | fny/interrobang |
64afd8665da9c22aa13b2a79a9991ce860da3df8 | .travis.yml | .travis.yml | sudo: required
language: rust
rust:
- 1.0.0
- beta
- nightly
install:
- sudo apt-get install opencc libopencc-dev
script:
- cargo build --verbose
- cargo test --verbose
| sudo: required
language: rust
rust:
- 1.0.0
- beta
- nightly
install:
- sudo apt-get install cmake
- git clone https://github.com/BYVoid/OpenCC.git && cd OpenCC
- make && sudo make install
- sudo ldconfig
- cd ..
script:
- cargo build --verbose
- cargo test --verbose
| Test again the latest OpenCC codes | Test again the latest OpenCC codes
| YAML | mit | messense/opencc-rs |
0d41df93d27ec1fb206e12866914c4484faaa4f3 | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "6"
- "7"
- "8"
- "9"
- "10"
install:
- yarn install
- yarn run compile
script:
- yarn run lint
- yarn run test
jobs:
include:
- stage: after_success
script: yarn run coveralls
node_js: 9
| language: node_js
node_js:
- "6"
- "7"
- "8"
- "9"
- "10"
install:
- yarn install
- yarn run compile
script:
- yarn run lint
- yarn run test
jobs:
include:
- stage: after_success
script: yarn run coveralls
node_js: 9
| Remove Node 4 build target | Remove Node 4 build target
| YAML | mit | Borewit/token-types |
532032e489f113e62452dbf3bc909eb67964a447 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
notifications:
email:
on_success: always
on_failure: always
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
notifications:
email:
on_success: always
on_failure: always
| Add Ruby 2.1 to Travis matrix | Add Ruby 2.1 to Travis matrix
| YAML | mit | buckybox/crazy_money |
e4516158521a091c96508435011e6c828a9439bb | .travis.yml | .travis.yml | language: python
python:
- "2.7"
before_install:
- sh -x ./install_depends/opensips.sh
script:
sh -x ./test_opensips.sh
env:
- MM_TYPE=opensips RTPPC_TYPE=udp
- MM_TYPE=opensips RTPPC_TYPE=udp6
- MM_TYPE=opensips RTPPC_TYPE=unix
- MM_TYPE=b2bua RTPPC_TYPE=udp
- MM_TYPE=b2bua RTPPC_TYPE=udp6
- MM_TYP... | language: python
python:
- "2.7"
before_install:
- sh -x ./install_depends/opensips.sh
script:
sh -x ./test_opensips.sh
env:
- MM_TYPE=b2bua RTPPC_TYPE=udp
- MM_TYPE=b2bua RTPPC_TYPE=udp6
- MM_TYPE=b2bua RTPPC_TYPE=unix
- MM_TYPE=b2bua RTPPC_TYPE=cunix
- MM_TYPE=opensips MM_BRANCH=1.8 RTPPC_TYPE=udp
... | Test opensips 1.8, 1.10, 1.11 and 2.1.0. | Test opensips 1.8, 1.10, 1.11 and 2.1.0.
| YAML | bsd-2-clause | sippy/voiptests,hongbinz/voiptests,hongbinz/voiptests,sippy/voiptests |
f61f4b68c73b486d30543bdf11a7a0879855523f | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.1
- ruby-head
- jruby-9.2.11.1
before_install:
- yes | gem update --system
- gem update bundler
script: bundle exec rake test
| ---
language: ruby
rvm:
- 2.5.8
- 2.6.6
- 2.7.1
- ruby-head
- jruby-9.2.11.1
before_install:
- yes | gem update --system
- gem update bundler
script: bundle exec rake test
| Drop Ruby 2.4 due to EoL | Drop Ruby 2.4 due to EoL
| YAML | mit | aycabta/deviantart,aycabta/deviantart |
a6792d504e5df220b0cbe9abc3597b3f7ccff461 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode9
cache:
- bundler
env:
matrix:
- FASTLANE_ENV=iOS
- FASTLANE_ENV=macOS
script:
- bundle exec fastlane test --env $FASTLANE_ENV
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: objective-c
osx_image: xcode9.2
branches:
- master
cache:
- bundler
env:
matrix:
- FASTLANE_ENV=iOS
- FASTLANE_ENV=macOS
script:
- bundle exec fastlane test --env $FASTLANE_ENV
after_success:
- bash <(curl -s https://codecov.io/bash)
| Use Xcode 9.2 for tests | Use Xcode 9.2 for tests
| YAML | mit | hoppenichu/HCImage-BPG,chuganzy/HCImage-BPG,chuganzy/HCImage-BPG,hoppenichu/HCImage-BPG,hoppenichu/HCImage-BPG,hoppenichu/HCImage-BPG,chuganzy/HCImage-BPG,chuganzy/HCImage-BPG |
eb6896a4431b3cc131d8fc064e9ad7fd0b4829f7 | .travis.yml | .travis.yml | sudo: true
dist: trusty
# Choose a lightweight base image
language: c
addons:
apt:
packages:
npm
before_install:
- ./.travis/install-dependencies/cpp-install-dependencies.sh
- ./.travis/install-dependencies/haskell-install-dependencies.sh
- ./.travis/install-dependencies/java-install-dependencies.s... | sudo: true
dist: trusty
# Choose a lightweight base image
language: c
addons:
apt:
packages:
npm
before_install:
# - ./.travis/install-dependencies/cpp-install-dependencies.sh
# - ./.travis/install-dependencies/haskell-install-dependencies.sh
# - ./.travis/install-dependencies/java-install-dependencie... | Comment out everything except python install and tests | Comment out everything except python install and tests
| YAML | mit | bjpop/biotool,bjpop/biotool,biotool-paper/biotool,drpowell/biotool,drpowell/biotool,drpowell/biotool,biotool-paper/biotool,bjpop/biotool,bjpop/biotool,drpowell/biotool,bjpop/biotool,lonsbio/biotool,drpowell/biotool,drpowell/biotool,biotool-paper/biotool,biotool-paper/biotool,biotool-paper/biotool,biotool-paper/biotool,... |
859343a3cc404ce0bd89159f2c2d0a3a5911c52d | .travis.yml | .travis.yml | language: php
sudo: true
dist: trusty
php:
- 7.1.0
- 7.0
install:
- sudo apt-get -qq update
- sudo apt-get install -y asciidoc libarchive-dev curl libgpgme11-dev
- curl -O https://sources.archlinux.org/other/pacman/pacman-5.0.1.tar.gz
- tar -xzvf pacman-5.0.1.tar.gz
- cd pacman-5.0.1 && .... | language: php
sudo: true
dist: trusty
php:
- 7.1
- 7.0
- 5.6
- 5.5
- 5.4
- 5.3
install:
- sudo apt-get -qq update
- sudo apt-get install -y asciidoc libarchive-dev curl libgpgme11-dev
- curl -O https://sources.archlinux.org/other/pacman/pacman-5.0.1.tar.gz
- tar -xzvf pacman-5... | Add PHP5 versions to TravisCI | Add PHP5 versions to TravisCI
Now, this should make an otherwise boring day fun to find out what the heck is
wrong with the PHP<5.6 builds...
Signed-off-by: Mark Weiman <5ec563e4a04e792e739af320cc9c0c01664c7306@markzz.com>
| YAML | lgpl-2.1 | markzz/php-alpm,markzz/php-alpm,markzz/php-alpm |
37b733fea7fe3f9eb8e91ab215db4d4da634cd10 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.8
before_install: "npm install -g bob"
script: "bob build"
| language: node_js
node_js:
- "0.11"
- "0.10"
- 0.8
before_install: "npm install -g bob"
script: "bob build"
| Add 0.10 and 0.11 to CI run. | Add 0.10 and 0.11 to CI run.
| YAML | mit | cliffano/datagen |
3a8f82cd881ced1e65faa9184eccc90d74d497a9 | .travis.yml | .travis.yml | # Make sure we run in the docker container
sudo: false
language: c
dist: trusty
addons:
apt:
packages:
# Libraries needed to build cross compiler
- libgmp-dev
- libmpfr-dev
- python-virtualenv
- libclang1-3.4
- clang
- yasm
... | # Make sure we run in the docker container
sudo: false
language: c
dist: trusty
addons:
apt:
packages:
# Libraries needed to build cross compiler
- libgmp-dev
- libmpfr-dev
- python-virtualenv
- libclang1-3.4
- clang
- yasm
... | Bring Travis up to date with Makefile improvements | Bring Travis up to date with Makefile improvements
| YAML | mit | iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth,iankronquist/kernel-of-truth |
3bac376ec870f0e433cd4f37711dc93672bfa3fd | .travis.yml | .travis.yml | env:
global:
- secure: "W3PaYhPnJFCaG6TW5Xc0wtggdEqcreTQcHThmIo5Eqs/jUL2toiUiv3ZWlhzR3tkphLvt2KeaQe83BR6RTifYjSmnmAePj0Gw5res1AXzN95OsKEk3nMiTZbVP+PuTTbQZJga8B31nRUBiAMQ6FsNlpGq7E8sp9N65lnR3mGHAE="
- PIP_DOC_DEPENDENCIES="six sphinx sphinx_bootstrap_theme jsonschema pyyaml mistune"
- ASDF_MASTER="git+git:... | env:
global:
- secure: "W3PaYhPnJFCaG6TW5Xc0wtggdEqcreTQcHThmIo5Eqs/jUL2toiUiv3ZWlhzR3tkphLvt2KeaQe83BR6RTifYjSmnmAePj0Gw5res1AXzN95OsKEk3nMiTZbVP+PuTTbQZJga8B31nRUBiAMQ6FsNlpGq7E8sp9N65lnR3mGHAE="
- PIP_DOC_DEPENDENCIES="six sphinx sphinx_bootstrap_theme jsonschema pyyaml mistune"
- ASDF_MASTER="git+git:... | Install astropy and gwcs when running schema tests... | Install astropy and gwcs when running schema tests...
Since these packages contain the ASDF extensions that are used to run
some of the types that implement our schemas.
| YAML | bsd-3-clause | spacetelescope/asdf-standard |
8a120cc7927615705138e1b4d39fda28887ceea9 | .travis.yml | .travis.yml | dist: trusty
os: linux
language: cpp
install: sudo apt-get install libboost-all-dev libdb++-dev libminiupnpc-dev libqrencode-dev libssl-dev
script: qmake bunnycoin-qt.pro USE_QRCODE=1 USE_UPNP=1 && make
notifications:
slack: $SLACK_WORKSPACE:$SLACK_KEY
| dist: trusty
os: linux
language: cpp
install: sudo apt-get install libboost-all-dev libdb++-dev libminiupnpc-dev libqrencode-dev
libssl-dev
script: qmake bunnycoin-qt.pro USE_QRCODE=1 USE_UPNP=1 && make
notifications:
slack:
rooms:
secure: kicq+PakRDw1En6D+PF5EEggzAEWCgANmrEmOfpWXwWtpXaFwL/2C7NuY1Ts5YJ2O/... | Use encrypted key for Travis-Slack integration | Use encrypted key for Travis-Slack integration
| YAML | mit | bunnycoin/bunnycoin,bunnycoin/bunnycoin,bunnycoin/bunnycoin,bunnycoin/bunnycoin,bunnycoin/bunnycoin |
048d5a9ab49ce78dec4e92528b13308a7450f2b2 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
| language: java
# copy from wix-embedded-mysql project
before_install:
# os x - workaround for JAVA_HOME not set and mvn missing
# - if [ "$TRAVIS_OS_NAME" == "osx" ]; then export JAVA_HOME=$(/usr/libexec/java_home); fi
# linux - installing libaio1
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then sudo apt-get update -qq &&... | Add fixes for running in Travis | Add fixes for running in Travis
| YAML | mit | dkomanov/mysql-streaming |
a35d83e56222a6b39aa5a0637c7248153eda9cfc | .travis.yml | .travis.yml | language: ruby
os:
- osx
osx_image: xcode8.3
rvm:
- 2.4.1
- 2.3.5
- 2.2.8
- 2.1.10
branches:
except:
- gh-pages
- /\/v\d/
script:
- gem install bundler
- bundle exec rake travis:build
notifications:
slack:
secure: Ksji5MDNOWnuzuyu9Hblbxse6kGLdH4kXyYkF98C+wawIGLSONWWkuA65wpdqSLtBN/79RCLMWoBzKAGX4xy9BL6Rxb3rL... | language: ruby
os:
- osx
osx_image: xcode8.3
rvm:
- 2.5.0
- 2.4.3
- 2.3.6
- 2.2.9
- 2.1.10
branches:
except:
- gh-pages
- /\/v\d/
script:
- gem install bundler
- bundle exec rake travis:build
notifications:
slack:
secure: Ksji5MDNOWnuzuyu9Hblbxse6kGLdH4kXyYkF98C+wawIGLSONWWkuA65wpdqSLtBN/79RCLMWoBzKAGX4xy9B... | Add Ruby 2.5 to Travis-CI | Add Ruby 2.5 to Travis-CI
| YAML | apache-2.0 | landrito/google-cloud-ruby,landrito/google-cloud-ruby,CloudVLab/google-cloud-ruby,landrito/google-cloud-ruby,quartzmo/google-cloud-ruby,dazuma/google-cloud-ruby,quartzmo/gcloud-ruby,blowmage/gcloud-ruby,landrito/google-cloud-ruby,googleapis/google-cloud-ruby,dazuma/google-cloud-ruby,googleapis/google-cloud-ruby,googlea... |
f014f3ec4d21bdee079e20255fa7f675efa83ee1 | .travis.yml | .travis.yml | # Use macOS with XCode 10
os: osx
osx_image: xcode10
# Use Node 10.x and yarn
language: node_js
node_js:
- "10"
cache: yarn
install:
# Set up RVM, RubyGems, Bundler
# - rvm install 2.6.3
# Use 2.4.3, the most recent preinstalled on Travis
# (also no longer receiving bug fixes, only security updates).
- rvm ... | # Use macOS with XCode 10
os: osx
osx_image: xcode10
# Use Node 10.x and yarn
language: node_js
node_js:
- "10"
cache: yarn
install:
# Set up RVM, RubyGems, Bundler
# - rvm install 2.6.3
# Use 2.4.3, the most recent preinstalled on Travis
# (also no longer receiving bug fixes, only security updates).
- rvm ... | Disable iOS tests in CI again | Disable iOS tests in CI again
| YAML | mit | BranchMetrics/react-native-branch-deep-linking,BranchMetrics/react-native-branch-deep-linking,BranchMetrics/react-native-branch-deep-linking,BranchMetrics/react-native-branch,BranchMetrics/react-native-branch,BranchMetrics/react-native-branch-deep-linking,BranchMetrics/react-native-branch,BranchMetrics/react-native-bra... |
33df410c77e7a164ad96264c90757c6e30630d2b | .travis.yml | .travis.yml | language: node_js
addons:
firefox: latest
node_js:
- "8"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
script:
- npm run test
env:
global:
- FIREFOX_BINARY: firefox
matrix:
include:
- script: npm run test
env:
global:
- FIREFOX_BINARY: f... | language: node_js
addons:
firefox: latest
node_js:
- "8"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3
- npm i -g npm@6
script:
- npm run test
env:
global:
- FIREFOX_BINARY: firefox
matrix:
include:
- script: npm run test
env:
global:
... | Use npm 6 to install things | Use npm 6 to install things | YAML | mpl-2.0 | cedricium/notes,cedricium/notes,cedricium/notes,cedricium/notes,cedricium/notes |
2ca0247f2c65f82640cfbef568171f17e94817a3 | .travis.yml | .travis.yml | sudo: required
services:
- docker
before_install:
- docker build -t zosconnectforswift .
- docker run zosconenctforswift /bin/sh -c "swift test"
script:
- swift test
| sudo: required
services:
- docker
before_install:
- docker build -t zosconnectforswift .
- docker run zosconnectforswift /bin/sh -c "swift test"
script:
- swift test
| Correct typo in docker run command | Correct typo in docker run command
| YAML | apache-2.0 | zosconnect/zosconnect-for-swift |
6c653746cc951e5f07d74beb2e64278969d5f9c0 | .travis.yml | .travis.yml | go: 1.6
language: go
addons:
postgresql: "9.4"
install:
- sudo apt-get install python-dev python-virtualenv
- go get github.com/mozilla-services/autograph
- psql -c "CREATE DATABASE dbname ENCODING 'UTF8' TEMPLATE template0;" -U postgres
- psql -c "CREATE USER admin WITH PASSWORD 'pass';" -U postgres
... | go: 1.6
language: go
addons:
postgresql: "9.4"
install:
- sudo apt-get install python-dev python-virtualenv
- go get github.com/mozilla-services/autograph
- psql -c "CREATE DATABASE dbname ENCODING 'UTF8' TEMPLATE template0;" -U postgres
- psql -c "CREATE USER admin WITH PASSWORD 'pass';" -U postgres
... | Make sure kinto-admin is installed in venv | Make sure kinto-admin is installed in venv
| YAML | apache-2.0 | mozilla-services/kinto-dist,Kinto/kinto-dist,Kinto/kinto-dist,mozilla-services/kinto-dist |
855a5e5f702035bf95663a6970c155237caf07f6 | .travis.yml | .travis.yml | language: node_js
node_js:
- 8
before_install:
- "npm install react@16.4.1 react-dom@16.4.1 styled-components@3.4.10"
| language: node_js
node_js:
- 8
before_install:
- "npm install react@16.4.1 react-dom@16.4.1 styled-components@4.1.3"
| Update to styled components 4 | Update to styled components 4
| YAML | mit | LucasBassetti/react-simple-chatbot,LucasBassetti/react-simple-chatbot |
8c01a5bb1baea6d360211faf49c4c0351e3e0108 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- pip install codecov
script:
- python setup.py install
- coverage run tests/test.py
after_success:
- codecov --token $CODECOV_TOKEN
| language: python
python:
- "2.7"
install:
- pip install codecov
script:
- python setup.py install
- coverage run tests/test.py
after_success:
- codecov --token $CODECOV_TOKEN
deploy:
provider: pypi
user: dpmcmlxxvi
password:
secure: UZ3ZOSFFpcmTfMnoFYh/KUIeQLGxvZpGH07sCBiblHfUtECpiq7FJ00GvyjNMqgjcxZ... | Automate pypi deployment for new tags | Automate pypi deployment for new tags
| YAML | mit | dpmcmlxxvi/pixelscan |
c7684fd674fa142113347ab4b51fc67d68d2de29 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
before_script:
- bundle exec berks install
script:
- bundle exec foodcritic -f any .
- bundle exec rspec --color --format progress
| rvm:
- 1.9.3
- 2.0
- 2.1
before_script:
- bundle exec berks install
script:
- bundle exec foodcritic -f any .
- bundle exec rspec --color --format progress
| Add ruby 2.1 as well as 2.0 and 1.9.3 | Add ruby 2.1 as well as 2.0 and 1.9.3
| YAML | mit | sportngin-cookbooks/loggly |
186f6a2f6f59cd8712d0dff9bd82e04a66e89424 | .travis.yml | .travis.yml | language: objective-c
xcode_project: ProgressView.xcworkspace
xcode_scheme: ProgressViewTests
before_install:
- gem install cocoapods
- cd Example\ Project | language: objective-c
xcode_project: PWProgressView.xcworkspace
xcode_scheme: PWProgressViewTests
before_install:
- gem install cocoapods
- cd Example\ Project | Fix incorrect xcode_project and xcode_scheme in Travis config | Fix incorrect xcode_project and xcode_scheme in Travis config
| YAML | mit | pwillsey/PWProgressView,Igor-Palaguta/PWProgressView |
00b25ad0a5b38986e4657509baee44217e7805d3 | .travis.yml | .travis.yml | sudo: false
cache:
directories:
- node_modules
services:
- mongodb
node_js:
- "8"
before_script:
- npm prune
- mongo test --eval 'db.createUser({user:"admin",pwd:"admin",roles:["readWrite"]});'
- npm run build
notifications:
disabled: true
install:
- npm install -g codecov
- npm install
b... | sudo: false
cache:
directories:
- node_modules
services:
- mongodb
node_js:
- "8"
- "9"
before_script:
- npm prune
- mongo test --eval 'db.createUser({user:"admin",pwd:"admin",roles:["readWrite"]});'
- npm run build
notifications:
disabled: true
install:
- npm install -g codecov
- npm in... | Add Node 9 to test builds | Add Node 9 to test builds
| YAML | mit | JasonEtco/flintcms,JasonEtco/flintcms |
9fc632f14d1fb282685424dfd0fa8159a64e035b | .travis.yml | .travis.yml | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- sudo apt-get update
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date. We do this
# condit... | language: python
python:
# We don't actually use the Travis Python, but this keeps it organized.
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- sudo apt-get update
# You may want to periodically update this, although the conda update
# conda line below will keep everything up-to-date. We do this
# condit... | Add missing `conda-build` install command | Add missing `conda-build` install command
| YAML | mit | jrsmith3/physicalproperty,jrsmith3/physicalproperty |
85f342cf3df17f014d85c1357fd07dfc499eac56 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
- 7.3
- nightly
sudo: false
matrix:
fast_finish: true
include:
- php: 7.1
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 7.3
env: SYMFONY_VERSION=^3.4
- php: 7.3
env: SYMFONY_VERSION=^4.0
allow_failures:
- php: nightly
cache:
directories... | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot
sudo: false
matrix:
fast_finish: true
include:
- php: 7.1
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 7.3
env: SYMFONY_VERSION=^3.4
- php: 7.3
env: SYMFONY_VERSION=^4.0
allow_failures:
- php: 7.4snapshot
cache:
dir... | Build on PHP7.4, replacing nightly | Build on PHP7.4, replacing nightly
| YAML | mit | scheb/two-factor-bundle,scheb/two-factor-bundle |
5768f636b8dd4698e5cf8be38d39be8c7057c66b | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
cache:
yarn: true
directories:
- "node_modules"
script:
- yarn test
| language: node_js
node_js:
- "8"
script:
- yarn test
| Test Travis CI with no cache | Test Travis CI with no cache
| YAML | mit | xcv58/Tab-Manager-v2,xcv58/Tab-Manager-v2,xcv58/Tab-Manager-v2,xcv58/Tab-Manager-v2 |
08b53eca4f3f00c7a5017324d211576ff6c3be28 | .travis.yml | .travis.yml | # R for travis
# https://docs.travis-ci.com/user/languages/r
language: r
sudo: false
cache: packages
warnings_are_errors: false
# Temporarily enable when caching Bioconductor packages
# script: true
r:
- bioc-release
# - bioc-devel
r_packages:
- covr
- rlang
after_success:
- Rscript -e 'covr::codecov()'
... | # R for travis
# https://docs.travis-ci.com/user/languages/r
language: r
sudo: false
cache: packages
warnings_are_errors: false
# Temporarily enable when caching Bioconductor packages
# script: true
r:
- bioc-release
# - bioc-devel
r_packages:
- covr
- DT
- formatR
- hexbin
- rlang
- testthat
- tid... | Simplify installed packages. Check against BioC version of DEGreport. | Simplify installed packages. Check against BioC version of DEGreport.
| YAML | mit | hbc/bcbioRnaseq,roryk/bcbioRnaseq,hbc/bcbioRnaseq |
8fc16d2e85ed335818b68874bc5371d1d711ae00 | .travis.yml | .travis.yml | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
bundler_args: --without development
script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.8.7-p249
- 1.9.2
- rbx-2.0
- ree
- ruby-head
notifications:
recipients:
- jakub@rabbitmq.com
- michaelklishin@me.com
- markizko@gmail.com
| # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
bundler_args: --without development
script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.8.7-p249
- 1.9.2
- jruby
- rbx-2.0
- ree
- ruby-head
notifications:
recipients:
- jakub@rabbitmq.com
- michaelklishin@me.com
- markizko@gmai... | Revert "Disable CI on JRuby for now. amqp & amq-client CI is still run against JRuby, so" | Revert "Disable CI on JRuby for now. amqp & amq-client CI is still run against JRuby, so"
This reverts commit 3acb6b66f7b63f3d2b96b3c8afa2eefefc121880.
This seems to be affecting all the projects right now, so disabling JRuby makes little sense.
| YAML | mit | ruby-amqp/amq-protocol,ruby-amqp/amq-protocol |
5a3a049f4132e1476ea4ce0b9c0f805cb64075ff | .travis.yml | .travis.yml | language: c
env:
- PG=9.4
- PG=9.3
- PG=9.2
install:
- sudo /etc/init.d/postgresql stop
- sudo apt-get update -o Dir::Etc::sourcelist=/dev/null
- sudo apt-get install postgresql-$PG postgresql-server-dev-$PG
- sudo /etc/init.d/postgresql start $PG
script:
- psql postgres -xA -c 'select v... | language: c
env:
- PG=9.5
- PG=9.4
- PG=9.3
- PG=9.2
install:
- PGPORT=5440
- sudo /etc/init.d/postgresql stop
- sudo apt-get update -o Dir::Etc::sourcelist=/dev/null
- sudo apt-get install postgresql-$PG postgresql-server-dev-$PG
- sudo pg_createcluster -p $PGPORT $PG test
- sud... | Add PostgreSQL 9.5 support for Travis CI. | Add PostgreSQL 9.5 support for Travis CI.
| YAML | bsd-2-clause | arkhipov/temporal_tables |
fabe85e9c365ee188ac4be713f9da944d8c7893a | .travis.yml | .travis.yml | language: node_js
node_js:
- '6'
- '8'
- '10'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| language: node_js
node_js:
- '8'
- '10'
- '12'
script: 'npm run ci'
after_success: '<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js'
| Drop node.js 6 support, add 12 | Drop node.js 6 support, add 12
| YAML | bsd-3-clause | unexpectedjs/unexpected-resemble,unexpectedjs/unexpected-resemble |
8a4d43c86de954ace1cc642a5e303c092548864a | .travis.yml | .travis.yml | language: python
python:
- "3.3"
install:
- "sudo apt-get install python3-sphinx"
- "pip install -r .travis-requirements.txt"
script:
- "pep8 --ignore E501 i3pystatus tests"
- "PYTHONPATH=. py.test" # run unit tests
- "python setup.py install" # test install
- "sphinx-build -W docs html" # test... | language: python
python:
- "3.3"
install:
- "sudo apt-get install -qq python3-sphinx"
- "pip3 install -r .travis-requirements.txt"
script:
- "pep8 --ignore E501 i3pystatus tests"
- "PYTHONPATH=. py.test" # run unit tests
- "python setup.py -q install" # test install
- "sphinx-build -W docs html"... | Make CI builds less noisy | Make CI builds less noisy
| YAML | mit | MaicoTimmerman/i3pystatus,ismaelpuerto/i3pystatus,Arvedui/i3pystatus,teto/i3pystatus,ncoop/i3pystatus,plumps/i3pystatus,richese/i3pystatus,claria/i3pystatus,onkelpit/i3pystatus,Arvedui/i3pystatus,schroeji/i3pystatus,teto/i3pystatus,fmarchenko/i3pystatus,plumps/i3pystatus,asmikhailov/i3pystatus,eBrnd/i3pystatus,enkore/i... |
a90f6a12c5607ed7ba5bf7d3d93c15676df8afad | .travis.yml | .travis.yml | language: go
go: 1.1
install:
- export PATH=$PATH:$HOME/gopath/bin
# Annoyingly, we can not use go get revel/... because references to app/routes package fail
- go get -v github.com/robfig/revel/revel
- go get -v github.com/robfig/revel/harness
- go get -v github.com/coopernurse/gorp
- go get -v code.google... | language: go
go: 1.1
install:
- export PATH=$PATH:$HOME/gopath/bin
# Annoyingly, we can not use go get revel/... because references to app/routes package fail
- go get -v github.com/robfig/revel/revel
- go get -v github.com/robfig/revel/harness
- go get -v github.com/coopernurse/gorp
- go get -v code.google... | Remove revel cache test we aren't using that | Remove revel cache test we aren't using that
| YAML | mit | FunnyMonkey/sally |
3f9d74deb95bcad31d4f8ebe903717c6c10a902f | .travis.yml | .travis.yml | language: python
python:
- "2.7.3"
- "2.7"
install:
- "pip install ."
script:
- "python setup.py flake8"
- "pytest -s"
| language: python
python:
- "2.7.11"
- "2.7"
install:
- "pip install ."
script:
- "python setup.py flake8"
- "pytest -s"
| Change minimal python version to test (2.7.11) | Change minimal python version to test (2.7.11) | YAML | lgpl-2.1 | f2nd/yandex-tank,yandex/yandex-tank,nettorta/yandex-tank,fomars/yandex-tank,yandex/yandex-tank,fomars/yandex-tank,f2nd/yandex-tank,netortik/yandex-tank,nettorta/yandex-tank,netortik/yandex-tank |
2dc112be199cabd586854e4f457e005c58d6ca62 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanb... | sudo: false
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm i... | Build on Travis CI without `sudo`. | Build on Travis CI without `sudo`.
| YAML | mit | bigeasy/hash,bigeasy/hash,bigeasy/hash,bigeasy/hash |
03d9273572f1a7b77c2cda789ea0bf6e18aeec70 | .travis.yml | .travis.yml | # vim ft=yaml
# https://travis-ci.org/leeclemens/imageroller
language: python
python:
- 3.4
- 3.5
install:
# Install Python packages / dependencies
# coverage
- travis_retry pip install coverage
# coveralls
- travis_retry pip install coveralls
# pylint
- travis_retry pip install pylint
scrip... | # vim ft=yaml
# https://travis-ci.org/leeclemens/imageroller
language: python
python:
- 3.4
- 3.5
install:
# Install Python packages / dependencies
# coverage
- travis_retry pip install coverage
# coveralls
- travis_retry pip install coveralls
# pylint
- travis_retry pip install pylint
scrip... | Fix path (since we remove PYVENV | Fix path (since we remove PYVENV
| YAML | mit | leeclemens/imageroller |
03287e3f2402935ea04ba43e44502de03fe10e22 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.11'
- '0.10'
before_install:
- openssl aes-256-cbc
-K $encrypted_450e4adece3f_key
-iv $encrypted_450e4adece3f_iv
-in .travis/deploy_key.enc
-out .travis/deploy_key -d
script:
- ./node_modules/.bin/gulp build
after_success:
- chmod 600 .travis/deploy_key
- ssh-add .travis/deplo... | language: node_js
node_js:
- '0.11'
before_install:
- openssl aes-256-cbc
-K $encrypted_450e4adece3f_key
-iv $encrypted_450e4adece3f_iv
-in .travis/deploy_key.enc
-out .travis/deploy_key -d
script:
- ./node_modules/.bin/gulp build
after_success:
- chmod 600 .travis/deploy_key
- ssh-add .travis/deploy_key
- r... | Remove Node 0.10 build target from Travis CI | Remove Node 0.10 build target from Travis CI
| YAML | mit | davidknezic/style-guide |
63102f00069cb49f28fe11bf6330b023fcbe8723 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "2.6"
install: pip install --use-mirrors
script:
- python setup.py test
| language: python
python:
- "2.7"
install: pip install --use-mirrors
script:
- python setup.py test
| Remove the Travis build for Python 2.6 | Remove the Travis build for Python 2.6
This is no longer supported by the irc library cobe uses.
| YAML | mit | DarkMio/cobe,meska/cobe,meska/cobe,LeMagnesium/cobe,DarkMio/cobe,pteichman/cobe,tiagochiavericosta/cobe,LeMagnesium/cobe,tiagochiavericosta/cobe,pteichman/cobe |
94547cb7e6300e1c3c384dc0e4e2a1b2c6915d51 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
cache: bundle
before_script: bin/rake db
script: bin/rake test
addons:
codeclimate:
repo_token:
secure: CxFMGcOhwkzowVZyys4fxSlsahNTNR6eBnRJmXqOhzjZwOoB7z0j3wfvIv8lDkKl03ayFUmToH147M4euh6RTbyCiFa9ti/bcVglWHaTDn6Qh5Ow6FWSJ76tIPAXpDaipn+ns8PQpsvrBISu... | language: ruby
rvm:
- 2.0.0
- 2.1.6
- 2.2.2
cache: bundle
before_script: bin/rake db
script: bin/rake test
addons:
codeclimate:
repo_token:
secure: CxFMGcOhwkzowVZyys4fxSlsahNTNR6eBnRJmXqOhzjZwOoB7z0j3wfvIv8lDkKl03ayFUmToH147M4euh6RTbyCiFa9ti/bcVglWHaTDn6Qh5Ow6FWSJ76tIPAXpDaipn+ns8PQpsvrBISu6pB0MTgBbM... | Remove 1.9.3 from the build matrix | Remove 1.9.3 from the build matrix
| YAML | mit | tubbo/controller_resources,tubbo/controller_resources,tubbo/controller_resources |
7677d70915125d2aab32b2911d6c7a9a3411796a | .travis.yml | .travis.yml | language: objective-c
matrix:
include:
- osx_image: xcode7.3
- osx_image: xcode8
- osx_image: xcode8.1
script:
- "xcodebuild -workspace Guanaco.xcworkspace -scheme Guanaco-iOS -sdk iphonesimulator -destination \"platform=iOS Simulator,name=iPhone 6\" test"
- "xcodebuild -workspace Guanaco.xcworkspac... | language: objective-c
osx_image: xcode8.1
script:
- "xcodebuild -workspace Guanaco.xcworkspace -scheme Guanaco-iOS -sdk iphonesimulator -destination \"platform=iOS Simulator,name=iPhone 6\" test"
- "xcodebuild -workspace Guanaco.xcworkspace -scheme Guanaco-OSX test"
| Configure Travis CI to build with Xcode 8.1 only | Configure Travis CI to build with Xcode 8.1 only
Xcode 7.3 builds on Travis were repeatedly failing because xcodebuild would build dependencies for the wrong platform. (rdar://20490378, rdar://22008701, rdar://22816454)
Xcode 8.0 builds on Travis were occasionally failing because xcodebuild would exit with status 65 a... | YAML | mit | modocache/Guanaco,modocache/Guanaco |
61b71941752d368dc82b638bb34eb365501d9e5c | .travis.yml | .travis.yml | language: go
go:
- 1.6
- tip
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install gcc-6 g++-6 libsnappy-dev zlib1g-dev libbz2-dev -qq
- export CXX="g++-6" CC="gcc-6"
- wget https://launchpad.net/ubuntu/+archive/primary/+files/libgflags... | language: go
go:
- 1.7
- tip
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install gcc-6 g++-6 libsnappy-dev zlib1g-dev libbz2-dev -qq
- export CXX="g++-6" CC="gcc-6"
- wget https://launchpad.net/ubuntu/+archive/primary/+files/libgflags... | Stop testing on Go 1.7 | Travis: Stop testing on Go 1.7
| YAML | mit | tecbot/gorocksdb,tecbot/gorocksdb |
86b5772cacf2f6013edb33ad35378068ea3fc529 | .travis.yml | .travis.yml | ---
# https://docs.travis-ci.com/user/multi-os/
matrix:
include:
- os: osx
language: generic
script:
- ansible-playbook playbooks/buildenv.yml -i tests/inventory -l localhost -vvvv
- bundle exec rake spec SPEC_TARGET=localhost
- os: linux
dist: trusty
language: python
... | ---
# https://docs.travis-ci.com/user/multi-os/
matrix:
include:
- os: osx
language: generic
script:
- ansible-playbook playbooks/buildenv.yml -i tests/inventory -l localhost -vvvv
- bundle exec rake spec SPEC_TARGET=localhost
- os: linux
dist: trusty
language: python
... | Use role variable of ansible-virtualbox for Ubuntu trusty. | Use role variable of ansible-virtualbox for Ubuntu trusty.
| YAML | mit | FGtatsuro/infra-bridgehead,FGtatsuro/infra-bridgehead |
7a79e981d8238928b8b2440217f5835d04f61467 | .travis.yml | .travis.yml | sudo: true
language: android
jdk: oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-26.0.0
- android-26
- android-22
- sys-img-armeabi-v7a-android-22
before_script:
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
- emulator -a... | sudo: true
language: android
jdk: oraclejdk8
android:
components:
- tools
- tools
- platform-tools
- build-tools-28.0.2
- android-28
- android-22
- sys-img-armeabi-v7a-android-22
before_script:
- echo no | android create avd --force -n test -t android-22 --abi armeabi-v7a
- emulator -a... | Update Travis config to SDK 28 | Update Travis config to SDK 28
| YAML | mit | lkorth/device-automator,lkorth/device-automator |
8564ba4a191f4d2f2ca4493b1fb19f4559b554e3 | .travis.yml | .travis.yml | # Copyright 2020 SkyWater PDK Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in... | # Copyright 2020 SkyWater PDK Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in... | Fix Travis CI build config validation issues | Fix Travis CI build config validation issues | YAML | apache-2.0 | google/skywater-pdk |
f12d31d149a87e4cb1ec94967484532846df3e0e | .travis.yml | .travis.yml | language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
env: TEST_SUITE=assemble test --tests '*SystemdJournalAppenderTest*'
- os: linux
jdk: oraclejdk8
env: TEST_SUITE=build
- os: linux
jdk: openjdk8
env: TEST_SUITE=build
- os: linux
... | language: java
matrix:
include:
- os: linux
dist: precise
jdk: oraclejdk7
env: TEST_SUITE=assemble test --tests '*SystemdJournalAppenderTest*'
- os: linux
jdk: oraclejdk8
env: TEST_SUITE=build
- os: linux
jdk: openjdk8
env: TEST_SUITE=build
- os: linux
... | Stop building and testing on Oracle JDK 10 | Stop building and testing on Oracle JDK 10
| YAML | bsd-3-clause | bwaldvogel/log4j-systemd-journal-appender,bwaldvogel/log4j-systemd-journal-appender |
ec8596e8b061cf54e673342fbf782e97c1d5ef8f | .travis.yml | .travis.yml | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- jruby-head
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
email:
- piotr.solnica@gmail.com
... | language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake spec"
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
email:
- piotr.solnica@gmail.com
- dan.kubb@gmai... | Remove jruby-head from build matrix | Remove jruby-head from build matrix
| YAML | mit | XescuGC/virtus,JustMikey/virtus,solnic/virtus,dslh/virtus,artemeff/virtus,mallikarjunayaddala/virtus,baojjeu/virtus,faucct/virtus,hapiben/virtus,macressler/virtus,reevoo/virtus |
aaa31ae414ff996bf384e0152c3651335d0dc3cc | .travis.yml | .travis.yml | dist: xenial
language: python
sudo: false
git:
depth: 1
python:
- 2.7
- 3.7
- pypy2.7-6.0
- pypy3.5-6.0
env:
- secure: "EhG2uSD2m1eGxuL2HeQewJJx7MVL4WpjrxyfiUBEgsApemD1yKJPjUnLwAyd\nbPi5HJx5ySm1TTRSvj6/yP85YLYTaJHA8OabKk7p0wFW294qcrYIDGovU7NL\n3YOqZmqN+S3XOBGFCOnByxE+pcxxWW/3/I09EgeW7D6tBPh67G0="
install:
- echo $TR... | dist: bionic
language: python
sudo: false
git:
depth: 1
python:
- 3.7
- 3.8
- pypy3.5-6.0
env:
- secure: "EhG2uSD2m1eGxuL2HeQewJJx7MVL4WpjrxyfiUBEgsApemD1yKJPjUnLwAyd\nbPi5HJx5ySm1TTRSvj6/yP85YLYTaJHA8OabKk7p0wFW294qcrYIDGovU7NL\n3YOqZmqN+S3XOBGFCOnByxE+pcxxWW/3/I09EgeW7D6tBPh67G0="
install:
- echo $TRAVIS_PYTHON_VE... | Switch CI env to Bionic, and dropped Python-2 | Switch CI env to Bionic, and dropped Python-2
| YAML | mit | dahlia/wand |
928b77992d0e37fc4029226c4e7f23e052d808d1 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
services: postgresql
before_script:
- psql -c 'create database pgwrapper_test' -U postgres -h 127.0.0.1
- cp tests/config.php.travis tests/config.php
install: composer install
script: vendor/bin/phpunit --configuration tests/phpunit.xml
| language: php
php:
- 7.2
- 7.3
- 7.4snapshot
matrix:
fast_finish: true
allow_failures:
- php: 7.4snapshot
services: postgresql
before_script:
- psql -c 'create database pgwrapper_test' -U postgres -h 127.0.0.1
- cp tests/config.php.travis tests/config.php
install: composer install
script: vendor/bin... | Test only on PHP 7.2+ | Test only on PHP 7.2+
| YAML | bsd-2-clause | sad-spirit/pg-wrapper |
893f5979b2cccb6ad55cf69df1b33ef532d0e3d4 | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.1.0"
- "2.0.0"
- "1.9.3"
- jruby-19mode
gemfile:
- ".gemfiles/Gemfile.rails-3.2.x"
- ".gemfiles/Gemfile.rails-4.0.x"
matrix:
include:
- rvm: "1.8.7"
gemfile: ".gemfiles/Gemfile.rails-3.2.x"
- rvm: jruby-18mode
gemfile: ".gemfiles/Gemfile.rails-3.2.x"
| language: ruby
rvm:
- "2.1.0"
- "2.0.0"
gemfile:
- ".gemfiles/Gemfile.rails-3.2.x"
- ".gemfiles/Gemfile.rails-4.0.x"
| Remove no longer maintained versions of ruby | Remove no longer maintained versions of ruby
| YAML | mit | hashrocket/decent_exposure,hashrocket/decent_exposure |
2d2ce834677c6152745faacad30bdc5b2b286c7d | .travis.yml | .travis.yml | language: smalltalk
sudo: false
# Select operating system(s)
os:
- linux
- osx
# Select compatible Smalltalk image(s)
smalltalk:
- Squeak-trunk
- Squeak-5.0
- Squeak-4.6
- Squeak-4.5
| language: smalltalk
sudo: false
# Select operating system(s)
os:
- linux
- osx
# Select compatible Smalltalk image(s)
smalltalk:
- Squeak-trunk
- Squeak-5.1
| Adjust .trayis.yml to test on trunk and 5.1 only | Adjust .trayis.yml to test on trunk and 5.1 only | YAML | mit | HPI-SWA-Teaching/SwaLint |
070158a62d5dc24ec140210a81473ba41efd4cfb | .travis.yml | .travis.yml | language: go
go:
- 1.4
- 1.5
- 1.6
install:
- go get golang.org/x/tools/cmd/vet
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/golang/lint/golint
- go get github.com/pierrre/gotestcover
- go get -t ./...
script:
- go vet -x ./xerror
- golint ./xerr... | language: go
go:
- 1.5
- 1.6
install:
- go get golang.org/x/tools/cmd/vet
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/golang/lint/golint
- go get github.com/pierrre/gotestcover
- go get -t ./...
script:
- go vet -x ./xerror
- golint ./xerror
- g... | Remove Go 1.4 from TravisCI config. | Remove Go 1.4 from TravisCI config.
| YAML | mit | ibrt/go-xerror |
f1b86cf394122fb542edd56385c646fca40f914a | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:kalakris/cmake -y
- sudo apt-get update -qq
- sudo apt-get install -y cmake
- sudo apt-get install -y libqt4-dev libdcmtk2-dev libinsighttoolkit3-dev libgdcm2-dev
- sudo apt-get install -y xpra xserver-xorg-video-dummy
before_scr... | language: cpp
compiler:
- gcc
before_install:
- sudo add-apt-repository ppa:kalakris/cmake -y
- sudo apt-get update -qq
- sudo apt-get install -y cmake
- sudo apt-get install -y libqt4-dev libdcmtk2-dev libinsighttoolkit3-dev libgdcm2-dev
- sudo apt-get install -y xpra xserver-xorg-video-dummy
before_scr... | Enable all did not work, try just dicom | Enable all did not work, try just dicom
| YAML | apache-2.0 | pieper/CTK,pieper/CTK,pieper/CTK,pieper/CTK |
ff370dc289c983b194bd9cec36812f8a0ec6edbb | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y python-opencv
- pip install -r requirements.txt
script:
- python setup.py build
virtualenv:
system_site_packages: true
| language: python
python:
- "2.7"
- "3.2"
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y python-opencv
- pip install -r requirements.txt
script:
- python setup.py build
virtualenv:
system_site_packages: true
| Build with Python 3.2 not 3.4. | Build with Python 3.2 not 3.4.
| YAML | isc | eliteraspberries/fftresize |
1d698468a0677ecbeb55dc470ddafaa0442fb46f | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: tr... | language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.0
- rbx-2
- ruby-head
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="--2.0 --debug"
- rvm: jruby-head
env: JRUBY_OPTS="--2.1 --debug"
- rvm: jruby-head
env: JRUBY_OPTS="--debug"
allow_failures:
- rvm: ruby-head
- rvm: jru... | Fix JRuby versions tested on Travis. | Fix JRuby versions tested on Travis.
| YAML | mit | trade-informatics/caracal |
ccc21c590977d9c30854c0f45f1a31021c8a1c25 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
services:
- postgresql
before_script:
- npm install -g sequelize-cli
- psql -c 'create database postitdbtests;' -U postgres
script:
- npm install
- npm run test
- npm run coverage
after_success:
- npm run coveralls | language: node_js
node_js:
- "6"
services:
- postgresql
before_script:
- npm install -g sequelize-cli
- psql -c 'create database postitdbtests;' -U postgres
script:
- npm install
- npm run test
- npm run coverage
after_success:
- npm run coveralls
addons:
apt:
sources:
- ubuntu-toolchain-... | Add settings to fix build error | Add settings to fix build error
| YAML | mit | 3m3kalionel/PostIt,3m3kalionel/PostIt |
5f66276177884a20c0177fee93bcbd5aeac842ad | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
gemfile:
- gemfiles/Gemfile.rails-3.2
- gemfiles/Gemfile.rails-4.0
- gemfiles/Gemfile.rails-4.1
- gemfiles/Gemfile.rails-5.0
| ---
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
- 2.3.0
gemfile:
- gemfiles/Gemfile.rails-3.2
- gemfiles/Gemfile.rails-4.0
- gemfiles/Gemfile.rails-4.1
- gemfiles/Gemfile.rails-5.0
| Add ruby 2.3.0 to build matrix | Add ruby 2.3.0 to build matrix
| YAML | mit | fixlr/codemirror-rails,fixlr/codemirror-rails,fixlr/codemirror-rails |
7d53657e0dcf1b512a74d59d55034caacdabcfa8 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
- 0.12
script: npm test
notifications:
email:
recipients:
- ypt-team@yahoo-inc.com
on_success: change
on_failure: always
env:
global:
- secure: dtJpzQPi6/UYsySz8cUIxja7JiiEvDhtKkKpSZa3skB1Es1NNo/tYmVHZyw4MkLpdvXuJx0020dR5ao7UTag9CZs... | language: node_js
node_js:
- 0.10
- 0.12
- 4.2
- 5
script: npm test
notifications:
email:
recipients:
- ypt-team@yahoo-inc.com
on_success: change
on_failure: always
env:
global:
- secure: dtJpzQPi6/UYsySz8cUIxja7JiiEvDhtKkKpSZa3skB1Es1NNo/tYmVHZyw4MkLpdvXuJx... | Add Node 4.2 and 5.x to Travis config | Add Node 4.2 and 5.x to Travis config
| YAML | bsd-3-clause | baer/react-intl,ericf/react-intl |
86f2ef71927a00620f55f0ef7c8c131572f9180b | .travis.yml | .travis.yml | dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: '49.0.2'
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then npm... | dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- node
addons:
firefox: latest-esr
cache:
directories:
- node_modules
- "$HOME/.cache/bower"
before_install:
- "if [ -d node_modules ] && [ x$(cat node_modules/.last-node-version 2>/dev/null) != x$(node -e 'console.log(process.version)') ]; then n... | Use the latest Firefox ESR for testing | Use the latest Firefox ESR for testing
| YAML | apache-2.0 | Collaborne/polymer-cordova-keyboard |
5bd9c2d93eece728716913345c2a69688be1ee94 | .travis.yml | .travis.yml | language: generic
env:
- TARGET=script_test
- TARGET=travis_test
script: "make $TARGET"
notifications:
email: false
services:
- docker
| language: generic
env:
- TARGET=test
- TARGET=travis_test
script: "make $TARGET"
notifications:
email: false
services:
- docker
| Fix a mistake in CI Script | Fix a mistake in CI Script
| YAML | bsd-2-clause | UltimatePea/UniversalLanguageInterface,UltimatePea/UniversalLanguageInterface,UltimatePea/UniversalLanguageInterface |
c09dade99252cc6ee8f35b569c5e1afd7666f37d | .travis.yml | .travis.yml | language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- tip
gobuild_args: -tags no_pkg_config
dist: xenial
addons:
apt:
packages:
- bison
- flex
- automake
- autoconf
- libtool
- make
- gcc
before_install:
- wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v3.7.0.tar.... | language: go
go:
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- tip
gobuild_args: -tags no_pkg_config
dist: xenial
addons:
apt:
packages:
- bison
- flex
- automake
- autoconf
- libtool
- make
- gcc
before_install:
- wget --no-verbose -O- https://github.com/VirusTotal/yara/archive/v... | Add Go 1.10 to Travis configuration | Add Go 1.10 to Travis configuration
| YAML | bsd-2-clause | hillu/go-yara,VirusTotal/go-yara,hillu/go-yara |
241b9f2ccfc28286c79d2b1691097c488627255f | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 5 on Travis CI. | Test with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/monotonic |
9c2e142585f57ac96bd329c92a52f4c8151595c1 | .travis.yml | .travis.yml | before_install:
- gem install bundler
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
| before_install:
- gem install bundler
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
| Add recent Rubies to Travis matrix | Add recent Rubies to Travis matrix
| YAML | mit | singlebrook/utf8-cleaner |
e9d3dbf38aa4e46ecf3628f5f5d30f78dc8559d0 | .travis.yml | .travis.yml | sudo: false
language: node_js
before_install:
- npm install npm -g
node_js:
- "4"
- "5"
- "6"
- "7"
env:
- TEST_SUITE=test
script: npm run-script $TEST_SUITE
| sudo: false
language: node_js
before_install:
- npm install npm -g
node_js:
- "lts/*"
- "9"
- "10"
env:
- TEST_SUITE=test
script: npm run-script $TEST_SUITE
| Fix Travis by removing v4 and v5 | Fix Travis by removing v4 and v5
| YAML | isc | weilu/bip39,bitcoinjs/bip39,bitcoinjs/bip39 |
f46d27297abf71d70c50f18b16179590395cb5ea | .travis.yml | .travis.yml | language: php
php:
- 5.2
- 5.3
- 5.4
- hhvm
script: phpunit tests
| language: php
php:
- 5.2
- 5.3
- 5.4
- 5.5
- hhvm
script: phpunit tests
| Add PHP 5.5 to Travis | Add PHP 5.5 to Travis
| YAML | unlicense | 4d47/php-learning-experience |
dc48dd27851754ae1678dbec5474eeaf7f052f1f | .travis.yml | .travis.yml | sudo: true
dist: trusty
cache: false
env:
- URL=https://developer.salesforce.com/media/salesforce-cli/sfdx-linux-amd64.tar.xz
before_install:
- openssl aes-256-cbc -K $encrypted_bc21448d0b37_key -iv $encrypted_bc21448d0b37_iv
-in assets/server.key.enc -out assets/server.key -d
- export SFDX_AUTOUPDATE_DISABLE=true
- ... | sudo: true
dist: trusty
cache: false
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
env:
- URL=https://developer.salesforce.com/media/salesforce-cli/sfdx-linux-amd64.tar.xz
before_install:
- openssl aes-256-cbc -K $encrypted_bc21448d0b37_key -iv $encrypted_bc21448d0b37_iv
... | Fix Travis CI/SFDX - Chrome dep | Fix Travis CI/SFDX - Chrome dep
| YAML | mit | madmax983/lightning-redux |
fbf72130142f8ac6af5864669a96449edc95a988 | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: XCFitDemo/Podfile
# before_install:
# - gem install cocoapods
# - pod install --project-directory=XCFitDemo
script:
- cd XCFitDemo/
-... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode7.3
language: objective-c
# cache: cocoapods
# podfile: XCFitDemo/Podfile
# before_install:
# - gem install cocoapods
# - pod install --project-directory=XCFitDemo
script:
- cd XCFitDemo/
-... | Build Scheme before Test on CI | Build Scheme before Test on CI
| YAML | mit | Shashikant86/XCFit,Shashikant86/XCFit,Shashikant86/XCFit |
752111423fbe8990c5defdd4588f47e21e5f5e75 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
before_script:
- pip install codecov
# command to install dependencies
install:
- pip install --upgrade pip
- pip install requests
- pip install nose-parameterized
- pip install -r requirements.txt
# command to run tests
script: nosetests --with-cove... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
env:
- PANDAS_VERSION=0.17.1
- PANDAS_VERSION=0.18.1
- PANDAS_VERSION=0.19.1
before_script:
- pip install codecov
- pip install nose-parameterized
# command to install dependencies
install:
- pip install --upgrade pip
- pip install requests
- pip... | Test against multiple versions of dependencies | CI: Test against multiple versions of dependencies
| YAML | bsd-3-clause | J535D165/recordlinkage,J535D165/recordlinkage |
cee16f41720c8367f0dca2fe296a642eea3887a6 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6.1" | language: node_js
node_js:
- "6.1"
after_success:
- bash <(curl -s https://codecov.io/bash) | Add codecov.io code coverage hook | Add codecov.io code coverage hook
| YAML | isc | ketsugi/isIntegerish,ketsugi/isIntegerish |
5e85e0997b3f164967490527bc426abd96234b82 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.4
- hhvm
install:
- composer install
script: phpunit
| language: php
php:
- 5.5
- 5.4
- hhvm
install:
- echo "{'require': {'psr/log': '~1.0', 'monolog/monolog': '1.9.1'}}" > composer.json
- composer install
script: phpunit
| Update Travis settings file. Add composer.json file for install. | Update Travis settings file. Add composer.json file for install.
| YAML | mit | wadmiraal/wind,wadmiraal/wind |
bff5c3f7c61150b95f18737f77d089d976c5a75e | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
install:
- composer update | language: php
php:
- 5.6
- 7.0
- 7.1
install:
- composer update
| Add the PHP test version | Add the PHP test version | YAML | apache-2.0 | daxiong123/validator |
c31ab8a020571f3a5dd771b74ac192ec3a01d94f | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.3
- jruby-19mode
- rbx-19mode
language: ruby
before_script:
- "rake servers:jasig:prep"
- "bundle exec rake servers:jasig:start &"
- "bundle exec rake servers:callback:start &"
| rvm:
- 1.8.7
- 1.9.3
- jruby-19mode
- rbx-19mode
language: ruby
before_install:
- "gem update --system"
before_script:
- "rake servers:jasig:prep"
- "bundle exec rake servers:jasig:start &"
- "bundle exec rake servers:callback:start &"
| Revert "Travis workers are using 1.8.25 now." | Revert "Travis workers are using 1.8.25 now."
This reverts commit 7ed26c31d6d644a05fbd6cc1a2c101d385393206.
OK, some aren't.
| YAML | mit | NUBIC/castanet |
12fb9523f0fa67b046601efb16bde99b2ebec192 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk8
- openjdk7
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/5ce63b0ed77e8bf5dc74
on_success: change
on_failure: always
on_start: false
email:
on_success: change
on_failure: always
| language: java
jdk:
- openjdk8
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/5ce63b0ed77e8bf5dc74
on_success: change
on_failure: always
on_start: false
email:
on_success: change
on_failure: always
| Remove Java 7 as CI target | Remove Java 7 as CI target
| YAML | apache-2.0 | mini2Dx/mini2Dx-project-generator |
a2989b73785f1116d2edef0a7b4ae01874fae244 | .travis.yml | .travis.yml | language: bash
sudo: required
os:
- linux
script:
- sudo ./install.sh
addons:
apt:
packages:
- puppet
| language: ruby
rvm:
- 2.1.0
sudo: required
os:
- linux
script:
- sudo ./install.sh
addons:
apt:
packages:
- puppet
| Use a more modern ruby. | Use a more modern ruby.
| YAML | apache-2.0 | corelabsio/environment |
8fbcadd084de15c1b7026cd5cec324b081283336 | .travis.yml | .travis.yml | language: go
go:
- 1.0
- 1.1
- 1.2
- 1.3
- tip
script:
- go test ./... -bench . | language: go
go:
- tip
script:
- go test ./... -bench .
| Test only with latest version of Go | Test only with latest version of Go | YAML | mit | gentlecat/go-giantbomb |
9f63afcbae2cbd030f2d6feb09f56f6aae03881c | .travis.yml | .travis.yml | dist: trusty
language: go
go:
- "1.10.x"
- master
os:
- linux
- osx
install:
- go get -t ./...
script:
- make test
| language: go
go:
- "1.9.x"
- "1.10.x"
- "1.13.x"
- master
os:
- linux
- osx
install:
- go get -t ./...
script:
- make test
| Revert "maybe the problem is xenial?" | Revert "maybe the problem is xenial?"
This reverts commit b53cedef6c0b5f003b9bbee4ce33e930b78bc9c2.
| YAML | bsd-3-clause | attilagyorffy/puma-dev,puma/puma-dev,attilagyorffy/puma-dev,puma/puma-dev,puma/puma-dev,attilagyorffy/puma-dev,attilagyorffy/puma-dev,puma/puma-dev |
27cc54b5bab7ca75f38186827c5208ea363196f8 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.7.10
- DJANGO_VERSION=1.8.4
install:
- pip install coverage>=4.0
- pip install flake8
- pip install -q Django==$DJANGO_VERSION
script:
- coverage run setup.py test
- coverage report -m
- flake8 soapbox
| language: python
sudo: false
python:
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.7.10
- DJANGO_VERSION=1.8.5
install:
- pip install coverage>=4.0
- pip install flake8
- pip install -q Django==$DJANGO_VERSION
script:
- coverage run setup.py test
- coverage report -m
- flake8 soapbox
| Update Django version in Travis config. | Update Django version in Travis config.
| YAML | bsd-3-clause | ubernostrum/django-soapbox,ubernostrum/django-soapbox |
45e8edf25e717cc880411324846fccc96684e45a | .travis.yml | .travis.yml | language: ruby
script: bundle exec rake
sudo: false
rvm:
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- ruby-head
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
| language: ruby
script: bundle exec rake
rvm:
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- ruby-head
- jruby-19mode
matrix:
allow_failures:
- rvm: ruby-head
| Drop unused Travis CI option | Drop unused Travis CI option | YAML | mit | wvanbergen/chunky_png |
f79734300f55f791c0e08d4cdf92ba16663a7cb2 | .travis.yml | .travis.yml | language: elixir
elixir:
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
sudo: false
before_script:
- mix deps.get --only test
env:
- MIX_ENV=test
script:
- mix test
- mix coveralls.travis
after_script:
- mix deps.get --only docs
- MIX_ENV=docs mix inch.report
| language: elixir
elixir:
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- 1.8
sudo: false
before_script:
- mix deps.get --only test
env:
- MIX_ENV=test
script:
- mix coveralls.travis
after_script:
- mix deps.get --only docs
- MIX_ENV=docs mix inch.report
| Remove redundant call to mix test | Remove redundant call to mix test
| YAML | mit | beatrichartz/parallel_stream |
634386c04b50ba13bf5e64951154237398df2f1e | .travis.yml | .travis.yml | language: node_js
node_js:
- 7
- 6
sudo: false
| language: node_js
node_js:
- '7'
- '6'
- '4'
script:
- npm prune
- npm update
- npm run prepublish
cache:
directories:
- node_modules
| Test against newest node including linting | Test against newest node including linting
| YAML | mit | billyvg/codemod-proptypes-to-flow |
292462bbaa2182769db4fdd7a185c45365eadc19 | .travis.yml | .travis.yml | language: php
php:
7.4
services:
- mysql
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- mysql -e 'CREATE DATABASE lanager;'
before_script:
- composer self-update
- composer install --no-interaction
- cp .env.travis .env
- php artisan key:generate
- p... | language: php
php:
7.4
services:
- mysql
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- mysql -e 'CREATE DATABASE lanager;'
before_script:
- composer self-update
- composer install --no-interaction
- cp .env.travis .env
- php artisan key:generate
- p... | Disable output from artisan webserver during Travis testing | Disable output from artisan webserver during Travis testing
| YAML | agpl-3.0 | zeropingheroes/lanager,zeropingheroes/lanager |
b028fa7757f038172e089f7d6b32b7d27116b0ab | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
before_script:
- composer self-update
- composer install
script:
- vendor/bin/phpcs --standard=psr2 --extensions=php --ignore=vendor .
- vendor/bin/phpunit --coverage-text
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- nightly
matrix:
allow_failures:
- php: nightly
before_install:
- composer self-update
install:
- composer install
script:
- vendor/bin/phpcs --standard=psr2 --extensions=php --ignore=vendor .
- vendor/bin/phpunit --coverage-text
| Add php nightly to build matrix | Add php nightly to build matrix
| YAML | bsd-3-clause | Flagbit/FlagbitCurrencyBundle |
248568590c5991b7ffd04b8dc625cb6f6a33611a | .travis.yml | .travis.yml | language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
before_script:
- composer self-update
- composer install --no-interaction
- curl -L https://gist.githubusercontent.com/JimMackin/c3db403bae59c2c9a27c/raw/f7dccb1fad965fb3d2b2fa0f7ba0e1d4ef52cddb/config_si.php > config_si.php
- php -... | language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
before_script:
- composer self-update
- composer install --no-interaction
- curl -L https://gist.githubusercontent.com/JimMackin/c3db403bae59c2c9a27c/raw/f7dccb1fad965fb3d2b2fa0f7ba0e1d4ef52cddb/config_si.php > config_si.php
- php -... | Use the bundled version of phpunit | Use the bundled version of phpunit
| YAML | agpl-3.0 | root-smith/SuiteCRM,daniel-samson/SuiteCRM,pgorod/SuiteCRM,Accendere/SuiteCRM,shogunpol/SuiteCRM,ryoon/SuiteCRM,nadilhassan/SuiteCRM,digitalmcgrath/SuiteCRM,shogunpol/SuiteCRM,haris-raheem/SuiteCRM,lionixevolve/LionixCRM,JanSiero/SuiteCRM,willrennie/SuiteCRM,willrennie/SuiteCRM,horus68/SuiteCRM-Horus68,gody01/SuiteCRM,... |
86c7027b68b24e03a5c1a77300b7ae97db34e082 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer install --dev
script: phpunit -c phpunit.xml.dist
notifications:
email:
- info@endroid.nl
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
before_install:
- if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi;
- composer self-update && composer install --no-interaction
script:
- phpunit
notifications:
email:
... | Disable xdebug in Travis CI | Disable xdebug in Travis CI
| YAML | mit | endroid/OpenWeatherMap |
926b02f0b5c6bcd2eda1a1de73ecc4eb8ec47954 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
| language: php
php:
- 5.6
- 7.0
- 7.1
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
| Test against three latest php versions | Test against three latest php versions | YAML | mit | frozzare/php-personnummer |
d4409124558adf0b2b8675b056de2c014e9da942 | .travis.yml | .travis.yml | language: java
script: ant -buildfile build/build.xml test
sudo: false
jdk:
- oraclejdk8
- oraclejdk9
| language: java
script: ant -buildfile build/build.xml test
jdk:
- oraclejdk8
- oraclejdk9
| Remove obsolete Travis CI configuration (alpha) | Remove obsolete Travis CI configuration (alpha)
Remove the `sudo: false` configuration, the builds run now always in the
same (new) infrastructure regardless of the configuration.
| YAML | apache-2.0 | zapbot/zap-extensions,secdec/zap-extensions,veggiespam/zap-extensions,kingthorin/zap-extensions,psiinon/zap-extensions,zaproxy/zap-extensions,thc202/zap-extensions,zaproxy/zap-extensions,thc202/zap-extensions,kingthorin/zap-extensions,denniskniep/zap-extensions,kingthorin/zap-extensions,secdec/zap-extensions,secdec/zap... |
a4cd74a803e8e25f823d58e79faa87c6e2fcbcc5 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- 4
- 5
sudo: false
script:
- npm run test
- npm run coverage
- npm run lint
cache:
directories:
- node_modules
| ---
language: node_js
node_js:
- '4'
- node
sudo: false
script:
- npm run test
- npm run coverage
- npm run lint
cache:
directories:
- node_modules
| Configure Travis CI to test on Node.js 4 and current | Configure Travis CI to test on Node.js 4 and current
| YAML | mit | kemitchell/reviewers-edition-parse.js |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.