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 |
|---|---|---|---|---|---|---|---|---|---|
32591979eeca25fabd42b540b9d8703a604cee08 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "7" | language: node_js
node_js:
- "6"
- "7"
install:
- npm install
- npm install react react-dom
| Install peer deps on Travis | Install peer deps on Travis
| YAML | mit | idyll-lang/idyll,idyll-lang/idyll,idyll-lang/idyll-default-components |
812e3c51b92ab93c0ab7738c0dcf17554d680d09 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
- 2.2
- ruby-head
- jruby-head
# - rbx-2
sudo: false
addons:
apt:
packages:
- libgmp3-dev
matrix:
allow_failures:
- rvm: jruby-head
script: "bundle exec rake"
notifications:
disable: true
| language: ruby
rvm:
- 2.1
- 2.2
- 2.3.3
- ruby-head
- jruby-head
# - rbx-2
sudo: false
addons:
apt:
packages:
- libgmp3-dev
matrix:
allow_failures:
- rvm: jruby-head
script: "bundle exec rake"
notifications:
disable: true
| Add ruby 2.3.3 to CI | test: Add ruby 2.3.3 to CI
Travis doesn't have a ruby 2.3 alias, so the latest 2.3.x version is
specified instead.
| YAML | mit | knu/liquid,locomotivecms/liquid,mrmanc/liquid,Shopify/liquid |
8557250363d297292066b81b892331a070a8d11e | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
before_script:
# Travis versions of these are really outdated
- pip install -U mock nose pytest
# Only used in production for python3.4- but required for tests
- pip install cryptography
# Enable sending Coverage data
- p... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
before_script:
# Travis versions of these are really outdated
- pip install -U mock nose pytest
# Only used in production for python3.4- but required for tests
- pip install cryptography
# Enable sending Coverage data
- p... | Drop python 3.3 support add 3.7 | Drop python 3.3 support add 3.7
| YAML | mit | mcrute/pydora |
b2a6ef86feefb4ae9f8489cd66225aa29d322553 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
script:
- composer self-update
- composer update -n --prefer-source
- ./bin/phpspec run -f progress
| language: php
matrix:
include:
- php: 5.3
env: DEPENDENCIES='low'
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: hhvm
- php: hhvm-nightly
allow_failures:
- php: hhvm-nightly
- env: DEPENDENCIES='low'
before_install:
- composer self-update
install:
- export COMPOS... | Test lowest version of dependencies | Test lowest version of dependencies
| YAML | mit | coduo/php-humanizer,tommarshall/php-humanizer,marcaube/php-humanizer,isnani/php-humanizer |
15548331c421b6e2455fec5202bcf3382d0711a9 | .travis.yml | .travis.yml | sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- ruby-head
before_install:
- gem update --system
- gem update bundler
| sudo: false
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
- ruby-head
before_install:
- gem update --system
- gem update bundler
| Update Ruby versions on Travis CI | Update Ruby versions on Travis CI
| YAML | mit | emsk/bundle_outdated_formatter,emsk/bundle_outdated_formatter |
aff3727e4d7f10db0f7e871e3e04f4de58e12325 | .travis.yml | .travis.yml | # After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
sudo: false
cache: pip
matrix:
fast_finish: true
include:
- python: "2.7"
addons:
apt:
packages:
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
- libgmp-dev
- libmp... | # After changing this file, check it on:
# http://lint.travis-ci.org/
language: python
sudo: false
cache: pip
matrix:
fast_finish: true
include:
- python: "2.7"
addons:
apt:
packages:
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
- libgmp-dev
- libmp... | Install tt before running tests | Install tt before running tests
| YAML | mit | uranix/ttpy,oseledets/ttpy,uranix/ttpy,oseledets/ttpy |
212b240aaac9c464029ce6f526b33b94933ae8af | .travis.yml | .travis.yml | language: php
dist: precise
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- hhvm
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq beanstalkd
- sudo beanstalkd -l 127.0.0.1 -p 11300 &
before_script:
- travis_retry composer self-update
- travis_retry composer install --no-interact... | language: php
dist: trusty
matrix:
include:
- php: 5.3
dist: precise
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq beanstalkd
- sudo beanstalkd -l 127.0.0.1 -p 11300 &
before_script:
- travis_retry composer self-up... | Use version of phpunit installed via composer. | Use version of phpunit installed via composer.
| YAML | mit | pda/pheanstalk |
b060b44143e7e10902f93989f30e079be69978b9 | .travis.yml | .travis.yml | language: java
jdk:
- openjdk7
- oraclejdk7
rvm:
- 1.9.3
install:
- rvm use 1.9.3
- gem install bundler
- bundle install
- echo "yes" | sudo apt-add-repository ppa:sharpie/for-science
- echo "yes" | sudo apt-add-repository ppa:sharpie/postgis-stable
- echo "yes" | sudo apt-add-repository ppa:ubuntugis... | language: java
jdk:
- openjdk7
- oraclejdk7
rvm:
- 1.9.3
install:
- rvm use 1.9.3
- gem install bundler
- bundle install
- sudo apt-get update
- sudo apt-get install -qq libgeos++-dev libproj-dev build-essential liblzo2-dev liblzma-dev zlib1g-dev libprotobuf-c0-dev postgresql-contrib-9.3 postgresql-9.3-... | Rework the way we install postgis | Rework the way we install postgis
| YAML | apache-2.0 | realityforge/geolatte-geom-jpa,realityforge/geolatte-geom-jpa |
242bb4a85328416636bd6a16bedef4ca7c734f99 | .travis.yml | .travis.yml | language: ruby
before_script:
- ./copy_repos.sh
- ./changing_old_files.sh
rvm:
- 2.0.0
- 2.1.2
- 2.2.1
script:
- script/ci/travis/install-gem-ci.rb
- bundle exec rake unit
notifications:
email:
recipients:
- joshua.moody@xamarin.com
- tobias.roikjer@xamarin.com
on_success: change... | language: ruby
before_script:
- ./copy_repos.sh
- ./changing_old_files.sh
rvm:
- 2.0.0
- 2.1.2
- 2.2.1
script:
- script/ci/travis/install-gem-ci.rb
- bundle exec rake unit
notifications:
email:
recipients:
- joshua.moody@xamarin.com
on_success: change
on_failure: always
| Remove Tobias from email notifications | Travis: Remove Tobias from email notifications
Signed-off-by: Tobias Røikjer <cbf4de1dc17b657ebb10265e5e61c5cf21b59123@xamarin.com>
| YAML | epl-1.0 | tejasv02/calabash,calabash/calabash,tejasv02/calabash,calabash/calabash,tejasv02/calabash,calabash/calabash |
5563b4d1ecae62b50bbf9bfd6b83ffee1d0caf4e | .travis.yml | .travis.yml | language: go
env:
- PATH=$GOPATH/bin:$PATH
script:
- go get github.com/alecthomas/gometalinter
- go get github.com/jteeuwen/go-bindata
- ./build.sh
go:
- "tip"
- "1.6"
- "1.7"
- "1.8"
| language: go
env:
- PATH=$GOPATH/bin:$PATH
script:
- go get github.com/alecthomas/gometalinter
- go get github.com/jteeuwen/go-bindata/go-bindata
- gometalinter --install
- ./build.sh
go:
- "tip"
- "1.6"
- "1.7"
- "1.8"
| Use gometalinter --install to install vendered linter | Use gometalinter --install to install vendered linter
| YAML | mit | omise/omise-go,omise/omise-go |
15d30aca0928278f2b8d579c06a3874849b6a0da | .travis.yml | .travis.yml |
matrix:
include:
- os: linux
dist: trusty
# don't actually need sudo, but I *do* want to test with bazel sandboxing
sudo: required
language: java
addons:
apt:
packages:
- pkg-config
- zip
- g++
- zlib1g-dev
... | language: java
env:
- BAZEL_VERSION=0.3.2
- BAZEL_VERSION=0.4.0
os:
- linux
- osx
matrix:
allow_failures:
- os: osx
env: BAZEL_VERSION=0.4.0
# Only affects os=linux
dist: trusty
# Only affects os=osx
osx_image: xcode7.3
# Necessary to test with sandboxing (we don't need root, just need a real ... | Test with bazel 0.3.2 and 0.4.0 | Test with bazel 0.3.2 and 0.4.0
| YAML | apache-2.0 | benley/bazel_rules_pex,benley/bazel_rules_pex |
7810693b8f4641c7b1890e5805b5ba1a5f2f87e3 | .travis.yml | .travis.yml | dist: trusty
language:
- cpp
- python
compiler: gcc
python: "2.7"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- wget
- pkg-config
- g++-6.3
before_install:
- wget https://github.com/bazelbuild/bazel/releases/download/0.8.0/bazel_0.8.0-linux-x86_64.deb
- sudo dpk... | dist: trusty
language:
- cpp
- python
compiler: gcc
python: "2.7"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- wget
- pkg-config
- g++-4.8
before_install:
- wget https://github.com/bazelbuild/bazel/releases/download/0.8.0/bazel_0.8.0-linux-x86_64.deb
- sudo dpk... | Revert back to GCC 4.8 for Travis builds | Revert back to GCC 4.8 for Travis builds | YAML | apache-2.0 | google/sling,google/sling,google/sling,google/sling,google/sling,google/sling |
b4f5a53a59022a0d1350fcbf0d736fcfd34dd8dc | .travis.yml | .travis.yml | rvm:
- "2.0.0"
- "1.9.3"
- "1.8.7"
- "ree" | rvm:
- "2.0.0"
- "2.1.0"
- "2.2.0"
- "1.9.3"
| Test new rubies with Travis | Test new rubies with Travis
| YAML | mit | dawid-sklodowski/chupacabra |
998e93b29067f41093310bb47da4f63a1a884fba | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not ... | Update Travis build with current JDKs. | Update Travis build with current JDKs. | YAML | apache-2.0 | apache/commons-fileupload,apache/commons-fileupload |
2d7f782abc88c4cca15b7df1db5b68a33d8d1bed | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- hhvm
- hhvm-nightly
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
- php: hhvm-nightly
script:
- ./vendor/bin/phpcs --standard=PSR2 ./DependencyInjection/ ./Extension/ ./Tests/
- if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION... | language: php
php:
- 5.5
- 5.6
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: 7
- php: hhvm
script:
- ./vendor/bin/phpcs --standard=PSR2 ./DependencyInjection/ ./Extension/ ./Tests/
- if [ $TRAVIS_PHP_VERSION != 'hhvm' ] && [ $TRAVIS_PHP_VERSION != '7' ]; then ./vendor/bin/phpunit --co... | Remove hhvm-nightly from build matrix | Remove hhvm-nightly from build matrix
| YAML | mit | mpalourdio/TwitterWidgetBundle |
51894d6a3a1eb5a9e99462e359a2cb9dbddfa97a | .travis.yml | .travis.yml | sudo: required
services:
- docker
script:
- docker build --tag=sdkman/sdkman-cli .
- docker run --rm -v $PWD:/usr/src/app -v $HOME/.gradle:/root/.gradle sdkman/sdkman-cli clean test --stacktrace
after_success:
- ./gradlew -Penv=production clean assemble bintrayUpload
before_cache:
- rm -f $HOME/.gradle/caches... | sudo: required
services:
- docker
script:
- docker build --tag=sdkman/sdkman-cli .
- docker run --rm -v $PWD:/usr/src/app -v $HOME/.gradle:/root/.gradle sdkman/sdkman-cli clean test --info
after_success:
- ./gradlew -Penv=production clean assemble bintrayUpload
before_cache:
- rm -f $HOME/.gradle/caches/modul... | Use info flag on build. | Use info flag on build.
| YAML | apache-2.0 | gvmtool/gvm-cli,sdkman/sdkman-cli,busches/gvm-cli,jbovet/gvm |
7a6a1cc165285890ea4d0375cc21ff19f0be9123 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.6"
- "2.7_with_system_site_packages"
env:
- "TRAC_TEST_DB_URI="
- "TRAC_TEST_DB_URI=sqlite:test.db"
- "TRAC_TEST_DB_URI=postgres://tracuser:password@localhost/trac?schema=tractest"
- "TRAC_TEST_DB_URI=mysql://tracuser:password@localhost/trac"
before_install:
- psq... | language: python
sudo: false
python:
- "2.6"
- "2.7_with_system_site_packages"
env:
- "TRAC_TEST_DB_URI="
- "TRAC_TEST_DB_URI=sqlite:test.db"
- "TRAC_TEST_DB_URI=postgres://tracuser:password@localhost/trac?schema=tractest"
- "TRAC_TEST_DB_URI=mysql://tracuser:password@localhost/trac"
before_install:
- psq... | Use Pygments < 2.1 in Travis CI tests | 0.12.8dev: Use Pygments < 2.1 in Travis CI tests
Test failures with Pygments 2.1 were fixed on the
1.0-stable branch but not backported to 0.12-stable.
Refs #12326, #12083.
git-svn-id: 764b04d0c6fbbea0ee05220aef3208173ff13049@14730 af82e41b-90c4-0310-8c96-b1721e28e2e2
| YAML | bsd-3-clause | rbaumg/trac,rbaumg/trac,rbaumg/trac,rbaumg/trac |
3dadf3cf0b85eb8eaebb6a2e27c5964c19ef7eac | .travis.yml | .travis.yml | language: objective-c
xcode_project: CCListViewExample.xcworkspace
xcode_scheme: CCListViewExample
xcode_sdk: iphonesimulator
script: xctool -workspace CCListViewExample.xcworkspace -scheme "All Tests" -sdk iphonesimulator build | language: objective-c
xcode_project: CCListViewExample.xcworkspace
xcode_scheme: CCListViewExample
before_install: gem install cocoapods
xcode_sdk: iphonesimulator
script: xctool -workspace CCListViewExample.xcworkspace -scheme "All Tests" -sdk iphonesimulator build
| Revert "no longer necessary, Travis handles it", turns out Travis uses an old version | Revert "no longer necessary, Travis handles it", turns out Travis uses an old version
This reverts commit 3262d3122d74711c9e95138e384f544e2e9f0bb7.
| YAML | mit | Codecademy/CCListView,Codecademy/CCListView |
cd1492270d73bd1bfe49957769616d4f1196ecb0 | .travis.yml | .travis.yml | language: cpp
compiler:
- gcc
- clang
cache: apt
before_install:
- sudo add-apt-repository ppa:kalakris/cmake
- sudo apt-get update -qq
- sudo apt-get install -qq libcppunit-dev cmake
before_script: mkdir build && cd build
script: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DGEOMETRY_BUILD_TESTS=ON .. && make && te... | language: cpp
compiler:
- gcc
- clang
cache: apt
before_install:
- sudo add-apt-repository --yes ppa:kalakris/cmake
- sudo apt-get update -qq
- sudo apt-get install -qq libcppunit-dev cmake
before_script: mkdir build && cd build
script: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DGEOMETRY_BUILD_TESTS=ON .. && make... | Add "--yes" for apt-add-repository (Travis CI) | Add "--yes" for apt-add-repository (Travis CI)
| YAML | mpl-2.0 | PADrend/Geometry |
4437df71b5f0746e9393048a11f683a88fe14fbf | .travis.yml | .travis.yml | rvm:
- 1.8.6
- 1.8.7
- 1.9.1
- 1.9.2
- jruby
- rbx
- ree
| rvm:
- 1.8.7
- 1.9.1
- 1.9.2
- jruby
- rbx
- ree
| Revert "Add 1.8.6 to the CI matrix" | Revert "Add 1.8.6 to the CI matrix"
This reverts commit 1916b9574edcddadb220460238f89df036431fc5.
| YAML | mit | r7kamura/octokit.rb,daukantas/octokit.rb,christer155/octokit.rb,Payro93/octokit.rb,xantage/octokit.rb,synmnstr/octokit.rb,kv109/octokit.rb,simon0191/octokit.rb,stetsenko/octokit.rb,Ladiijae/octokit.rb,byroot/octokit.rb,pvdb/octokit.rb,cocktail-io/octokit.rb,pwz3n0/octokit.rb,kv109/octokit.rb,benbalter/octokit.rb,hooray... |
03a7acc4428a3ec1cd591ac6ee50de7bf7350a0b | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.11'
- '0.10'
before_script:
- npm install -g mocha grunt-cli
notifications:
email:
- kimmo.brunfeldt+urltoimage@futurice.com
deploy:
provider: npm
email: kimmo.brunfeldt@gmail.com
api_key:
secure: BaR508fKqIBXHYXbAwpFyBJwAzYEQ+LwoMWbuBcc9YeEoiPbsFYG2kky1lUMBzHDHMHlqMelaFdSt... | language: node_js
node_js:
- '0.12'
- '0.11'
- '0.10'
before_script:
- npm install -g mocha grunt-cli
notifications:
email:
- kimmo.brunfeldt+urltoimage@gmail.com
deploy:
provider: npm
email: kimmo.brunfeldt@gmail.com
api_key:
secure: BaR508fKqIBXHYXbAwpFyBJwAzYEQ+LwoMWbuBcc9YeEoiPbsFYG2kky1lUMBzHDHMHlqMe... | Add node 0.12 to testable versions | Add node 0.12 to testable versions
| YAML | mit | kimmobrunfeldt/url-to-image |
05c55b8c35b7b69e2fe80f227979982adb2e5af5 | packages/nu/numeric-logarithms.yaml | packages/nu/numeric-logarithms.yaml | homepage: https://github.com/google/hs-numeric-logarithms#readme
changelog-type: markdown
hash: c2c245b7b4ffb8a71dfe9a4dd825b20e103f963489388ed3b4fb4cdfcd459e44
test-bench-deps:
test-framework: -any
numeric-logarithms: -any
base: '>=4.9 && <4.17'
test-framework-quickcheck2: -any
integer-gmp: '>=0.5 && <1.2'
... | homepage: https://github.com/awpr/numeric-logarithms#readme
changelog-type: markdown
hash: 10c4860d4c6798110c228d0e873f3a2e27a3827a6b968a53c76cce96ba4ab600
test-bench-deps:
test-framework: -any
numeric-logarithms: -any
base: '>=4.9 && <4.18'
test-framework-quickcheck2: -any
integer-gmp: '>=0.5 && <1.2'
Quic... | Update from Hackage at 2022-09-29T01:34:27Z | Update from Hackage at 2022-09-29T01:34:27Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
220a89676772adacd6fca037f046582478479d95 | .travis.yml | .travis.yml | language: php
php:
- 7.1
- 7.2
env:
matrix:
- dependencies=""
- dependencies="--prefer-stable"
matrix:
include:
- php: 7.1
env: dependencies="--prefer-lowest --prefer-stable"
allow_failures:
- php: 7.2
before_install:
- composer self-update
install:
... | language: php
php:
- 7.1
- 7.2
env:
- COMPOSER_ARGS=""
- COMPOSER_ARGS="--prefer-stable"
- COMPOSER_ARGS="--prefer-stable --prefer-lowest"
matrix:
allow_failures:
- php: 7.2
before_install:
- composer self-update
install:
- composer update --no-interaction --prefer-dist $COMP... | Test with lowest dependencies for every PHP version | Test with lowest dependencies for every PHP version
| YAML | bsd-3-clause | nepada/bust-cache |
fe7ada7de885f6973d7e69e1cdc5b15bb5318026 | .travis.yml | .travis.yml | language: ruby
cache: bundler
before_install: gem install bundler
gemfile:
- gemfiles/standalone.gemfile
- gemfiles/binding_of_caller.gemfile
- gemfiles/delayed_job.gemfile
- gemfiles/rails.gemfile
- gemfiles/rack.gemfile
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
- jruby-19mode
matrix:
fast_finish: tru... | language: ruby
cache: bundler
before_install: gem install bundler
sudo: false
gemfile:
- gemfiles/standalone.gemfile
- gemfiles/binding_of_caller.gemfile
- gemfiles/delayed_job.gemfile
- gemfiles/rails.gemfile
- gemfiles/rack.gemfile
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
- jruby-19mode
matrix:
fast... | Upgrade Travis to new infrastructure. | Upgrade Travis to new infrastructure.
http://docs.travis-ci.com/user/migrating-from-legacy/?utm_source=legacy-notice&utm_medium=banner&utm_campaign=legacy-upgrade
| YAML | mit | kylerippey/honeybadger-ruby,honeybadger-io/honeybadger-ruby,kylerippey/honeybadger-ruby,honeybadger-io/honeybadger-ruby |
06e3144a12b36a2c5f1a0bfdf0cfeded1e138035 | .travis.yml | .travis.yml | branches:
except:
- travis
language: java
jdk:
- oraclejdk8
script:
- mvn jacoco:report coveralls:report deploy --settings settings.xml -P $TRAVIS_BRANCH
notifications:
slack: cloudfoundry:xvgjKLNQTyqAFMnsTywVHik9
after_success:
- mvn scm-publish:publish-scm
#- mkdir -p /tmp/spring-content-docs/refs/current
#- ... | branches:
except:
- travis
language: java
jdk:
- oraclejdk8
script:
- mvn deploy --settings settings.xml -P $TRAVIS_BRANCH jacoco:report coveralls:report
notifications:
slack: cloudfoundry:xvgjKLNQTyqAFMnsTywVHik9
after_success:
- mvn scm-publish:publish-scm
#- mkdir -p /tmp/spring-content-docs/refs/current
#-... | Move reporting to after main build | Move reporting to after main build
| YAML | apache-2.0 | paulcwarren/spring-content,paulcwarren/spring-content,paulcwarren/spring-content |
3ac27b6857043abe225f437719d2cae46936c485 | .travis.yml | .travis.yml | language: ruby
dist: trusty
matrix:
include:
- rvm: 2.1
- rvm: 2.2
- rvm: ruby-2.3.0
- rvm: jruby
env:
- JRUBY_OPTS="--2.0"
- rvm: jruby-9000
before_install:
- gem install bundler
script:
- rake
- rubocop
| language: ruby
dist: trusty
matrix:
include:
- rvm: 2.1
- rvm: 2.2
- rvm: ruby-2.3.0
- rvm: jruby-1.7.22
env:
- JRUBY_OPTS="--2.0"
- rvm: jruby-9000
before_install:
- gem install bundler
script:
- rake
- rubocop
| Install jruby-1.7.22 to use --2.0 | Install jruby-1.7.22 to use --2.0
| YAML | mit | waterlink/cars_api,waterlink/cars_api |
25788200f09dd972991061cc803816d75db879e2 | .travis.yml | .travis.yml | language: haskell
install:
- cabal install gtk2hs-buildtools
- cabal install ConfigFile regex-posix regex-compat gtk --enable-tests --reinstall --force-reinstalls --constraint="mtl>=2.1.2" --constraint="containers>=0.5.2.1" --constraint="template-haskell>=2.7.0.0" --constraint="text>=0.11.2.3"
- cabal install --... | language: haskell
install:
- cabal install gtk2hs-buildtools
- cabal install ConfigFile regex-posix regex-compat gtk --enable-tests --reinstall --force-reinstalls --constraint="mtl>=2.1.2" --constraint="containers>=0.5.2.1" --constraint="template-haskell>=2.7.0.0" --constraint="text>=0.11.2.3"
- cabal install La... | Debug Travis build by adding an old LambdaHack target | Debug Travis build by adding an old LambdaHack target
| YAML | agpl-3.0 | AllureOfTheStars/Allure |
d6679f288d4e650afaf7b16250f6d97e1a44e520 | .travis.yml | .travis.yml | dist: xenial
language: ruby
rvm:
- 2.7.1
before_script:
- mkdir ~/.task
- echo data.location=~/.task > ~/.taskrc
before_install:
- sudo apt-get install task
| dist: xenial
language: ruby
rvm:
- 2.7.1
- 2.6.6
- 2.5.8
before_script:
- mkdir ~/.task
- echo data.location=~/.task > ~/.taskrc
before_install:
- sudo apt-get install task
| Add support for Ruby 2.6.6 and 2.5.8 | Add support for Ruby 2.6.6 and 2.5.8
| YAML | mit | nerab/TaskWarriorMail,nerab/TaskWarriorMail |
f439ab7f60477e5e4689d4bcc43b8e67341be8e2 | .travis.yml | .travis.yml | language: node_js
node_js: "10.11.0"
matrix:
include:
- os: osx
- os: linux
- os: windows
osx_image: xcode9.1
#env:
# - ELECTRON_CACHE=$HOME/.cache/electron ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update... | language: node_js
node_js: "10.11.0"
matrix:
include:
- os: osx
- os: linux
# - os: windows
osx_image: xcode9.1
#env:
# - ELECTRON_CACHE=$HOME/.cache/electron ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq upda... | Remove windows from Travis builds for now | Remove windows from Travis builds for now
It don't work!
| YAML | mit | muffinista/before-dawn,muffinista/before-dawn,muffinista/before-dawn |
c898c8d3eecc8dbf4c18b79ffa9c9057425c3e18 | .travis.yml | .travis.yml | ---
language: node_js
node_js:
- "0.10"
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_... | ---
language: node_js
node_js:
- "0.10"
- "0.12"
- "4.2.6"
- "5.5.0"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failure... | Add 4 and 5 node versions | Add 4 and 5 node versions
| YAML | mit | BBVAEngineering/ember-cli-custom-addons,BBVAEngineering/ember-cli-custom-addons |
f103a7fd81428351d96a29b499184a59597e79b2 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
- "3.5"
- "3.4"
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install coveralls
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
# run test
script:
- coverage run --source=app -m py.test && coverage report
- c... | language: python
python:
- "3.6"
- "3.5"
- "3.4"
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install coveralls
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
# run test
script:
- coverage run --source=app -m py.test && coverage report
- c... | Add jwt secret token for tests | [FIX] Add jwt secret token for tests
| YAML | mit | brayoh/bucket-list-api |
e518d8db9ca6f8893ad5529f8e6cfaf9528becfa | .travis.yml | .travis.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | Improve Travis CI build Performance | Improve Travis CI build Performance | YAML | apache-2.0 | apache/httpcomponents-client |
98d273372ac9e369c37d11104c234bf2f2855e07 | .travis.yml | .travis.yml | language: objective-c
compiler:
- clang
install:
- git clone https://github.com/mogemimi/pomdog-third-party.git third-party
- git clone https://chromium.googlesource.com/external/gyp.git tools/gyp
- git clone https://github.com/srz-zumix/iutest.git third-party/iutest
script:
- tools/gyp/gyp build/unittest.... | language: objective-c
compiler:
- clang
install:
- git clone https://github.com/mogemimi/pomdog-third-party.git third-party
- git clone https://chromium.googlesource.com/external/gyp.git tools/gyp
- git clone https://github.com/srz-zumix/iutest.git third-party/iutest
script:
- tools/gyp/gyp build/unittest.... | Disable Travis CI email notifications | Disable Travis CI email notifications
| YAML | mit | mogemimi/pomdog,Mourtz/pomdog,bis83/pomdog,mogemimi/pomdog,bis83/pomdog,Mourtz/pomdog,mogemimi/pomdog |
fb165bfc340d31ce87d89db400090c8f330226e7 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache:
directories:
- vendor/bundle
rvm:
- '2.3.0'
- '2.2'
- '2.1'
env:
- REDMINE_VERSION=3.2.1
- REDMINE_VERSION=3.1.4
- REDMINE_VERSION=2.6.10
- REDMINE_VERSION=master
matrix:
allow_failures:
- env: REDMINE_VERSION=master
branches:
except:
- debian
install:
- export BUNDLE_GEMFI... | sudo: false
language: ruby
cache:
directories:
- vendor/bundle
rvm:
- '2.3.0'
- '2.2'
- '2.1'
env:
- REDMINE_VERSION=3.2.1
- REDMINE_VERSION=3.1.4
- REDMINE_VERSION=2.6.10
- REDMINE_VERSION=master
matrix:
allow_failures:
- env: REDMINE_VERSION=master
branches:
except:
- debian
before_install:
- gem install ... | Install newest bundler on CI to resolve with matching ruby version | Install newest bundler on CI to resolve with matching ruby version
| YAML | apache-2.0 | jgraichen/redmine_dashboard,jgraichen/redmine_dashboard,jgraichen/redmine_dashboard |
d95fdaac59f38c396528f2fa4460df6d2d9c220a | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
matrix:
fast_finish: true
include:
- php: 7.0
env: PHPCS=1
- php: 7.0
env: COVERAGE=1
before_script:
- phpenv rehash
install:
- composer self-update
- composer install --prefer-dist --no-interaction --dev
script:
- sh -c "if [ '$P... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
matrix:
fast_finish: true
include:
- php: 7.0
env: PHPCS=1
- php: 7.0
env: COVERAGE=1
before_script:
- phpenv rehash
install:
- composer self-update
- composer install --prefer-dist --no-interaction --dev
script:
- sh -c "if [ '$P... | Fix typo in test script. | Fix typo in test script.
| YAML | mit | markstory/asset_compress,markstory/asset_compress,markstory/asset_compress |
f2a6144302d1e44352e7e17a821a3482033560ce | .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
- ruby-head
- rbx-19mode
notifications:
irc:
channels:
- "irc.freenode.org#rom-rb"
on_success: never
on_failure: change
email:
recipient... | 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
- ruby-head
- rbx-19mode
matrix:
include:
- rvm: jruby-19mode
env: JRUBY_OPTS="$JRUBY_OPTS --debug"
- rvm: jruby-head
env: JRUBY_OPTS="$JRUB... | Allow failures on jruby and ruby-head | Allow failures on jruby and ruby-head
| YAML | mit | rom-rb/rom-mapper,rom-rb/rom,rom-rb/rom,rom-rb/rom,solnic/rom-mapper |
9d5f14086ca6160c1d93ff2f1dfdd4fdd3ef7871 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.0
before_script:
- psql -c "CREATE USER andrecosta WITH PASSWORD 'andrecosta';" -U postgres
| language: ruby
rvm:
- 2.3.0
services:
- postgresql
before_script:
- psql -c "CREATE USER andrecosta;CREATE DATABASE etikette_development;GRANT ALL PRIVILEGES ON DATABASE etikette_development to andrecosta" -U postgres
| Fix Travis CI .yml file. | Fix Travis CI .yml file.
| YAML | mit | nogdacosta/etikette,nogdacosta/etikette,nogdacosta/etikette |
06e07369b98a8930146d380801f641d2151ded4d | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.3
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install: gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI... | language: objective-c
osx_image: xcode8
env:
- LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8
before_install: gem install xcpretty -N
script: "./Tests/travis.sh"
notifications:
slack:
secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3O... | Switch Travis to the Xcode 8 image. | Switch Travis to the Xcode 8 image.
| YAML | mit | eljeff/AudioKit,audiokit/AudioKit,adamnemecek/AudioKit,audiokit/AudioKit,eljeff/AudioKit,adamnemecek/AudioKit,adamnemecek/AudioKit,eljeff/AudioKit,adamnemecek/AudioKit,eljeff/AudioKit,audiokit/AudioKit,audiokit/AudioKit |
5cddacea0124dfc5cd97d56271daeb4337b47b8e | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
before_install:
- 'npm install -g bower gulp typescript'
script:
- 'npm install && bower install && gulp build'
| sudo: false
language: node_js
node_js:
- '0.10'
before_install:
- 'npm install -g bower gulp typescript'
script:
- 'npm install && bower install && gulp build'
| Enable container-based infrastructure for Travis builds. | Enable container-based infrastructure for Travis builds.
| YAML | apache-2.0 | mtho11/hawkular-charts,ammendonca/hawkular-charts,hawkular/hawkular-charts,mtho11/hawkular-charts,hawkular/hawkular-charts,ammendonca/hawkular-charts,tsegismont/hawkular-charts,ammendonca/hawkular-charts,tsegismont/hawkular-charts,tsegismont/hawkular-charts,mtho11/hawkular-charts,hawkular/hawkular-charts |
cdcba5bf44a4e5afb270057ff4dde4ebedcbc7b9 | .travis.yml | .travis.yml | language: c
sudo: required
dist: trusty
compiler: clang
before_install:
- curl https://letsencrypt.org/certs/isrgrootx1.pem.txt | sudo tee /usr/share/ca-certificates/isrgrootx1.crt
- echo "isrgrootx1.crt" | sudo tee -a /etc/ca-certificates.conf
- curl https://letsencrypt.org/certs/lets-encrypt-x3-cross-signed.pem.txt |... | language: c
sudo: required
dist: trusty
compiler: clang
before_install:
- curl https://letsencrypt.org/certs/isrgrootx1.pem.txt | sudo tee /usr/share/ca-certificates/isrgrootx1.crt
- echo "isrgrootx1.crt" | sudo tee -a /etc/ca-certificates.conf
- curl https://letsencrypt.org/certs/lets-encrypt-x3-cross-signed.pem.txt |... | Add liburi-dev to build-deps for Travis | Add liburi-dev to build-deps for Travis
| YAML | apache-2.0 | bbcarchdev/libsparqlclient,bbcarchdev/libsparqlclient,bbcarchdev/libsparqlclient |
02de84a4c68173ca43d577e72d9a45e5a2f06d11 | .travis.yml | .travis.yml | language: go
go:
- 1.2
- 1.3
- 1.4
script: go build
| language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
script: go build
| Update Travis file to build using Go 1.5 | Update Travis file to build using Go 1.5
| YAML | mit | marksamman/gotorrent |
7e45c865da5e5a564adcfdbdd24f3d7d8e12a07c | .travis.yml | .travis.yml | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=ant setup.py test
- python setup.py build
after_success:
- coveralls
| language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.5-dev # 3.5 development branch
- 3.6-dev # 3.6 development branch
- nightly # currently points to 3.7-dev
- pypy
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- coverage run --source=ant setup.py test
- python setu... | Add test support for pre-release CPython | Add test support for pre-release CPython
Despite allowing failures on these CPython platforms, test each
with continuous integration to surface potential issues.
Based upon https://docs.travis-ci.com/user/languages/python/
| YAML | mit | Tigge/openant |
ce0d09082a33d2b4c2741921d935c072436caf68 | .travis.yml | .travis.yml | language: ruby
matrix:
include:
- rvm: 2.2.2
- rvm: rbx-2.6
env: RBX_RUBY_COMPAT=2.1.0 RBX_VERSION=2.6
bundler_args: --without production --without development --jobs=4
cache: bundler
before_install:
- 'echo "gem: --no-ri --no-rdoc" > ~/.gemrc'
before_script:
- psql -c 'create user levelup with superuser;... | language: ruby
matrix:
include:
- rvm: 2.2.2
- rvm: rbx-3.14
env: RBX_RUBY_COMPAT=2.1.0 RBX_VERSION=2.6
bundler_args: --without production --without development --jobs=4
cache: bundler
before_install:
- 'echo "gem: --no-ri --no-rdoc" > ~/.gemrc'
before_script:
- psql -c 'create user levelup with superuser... | Use a more current rbx. | Use a more current rbx.
| YAML | mit | jmmastey/level_up,jmmastey/level_up,jmmastey/level_up |
e8e32361f366c6d11a417d37238ad4ef12d34f6a | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_install:
- mkdir tests/files
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then rm phpunit.xml; fi;'
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then mv phpunit.hhvm.xml phpunit.xml; fi;'
install:
- travis_retry composer install --no-inte... | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
sudo: false
before_install:
- mkdir tests/files
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then rm phpunit.xml; fi;'
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then mv phpunit.hhvm.xml phpunit.xml; fi;'
install:
- travis_retry composer inst... | Use the container based builds for better performance | [Travis] Use the container based builds for better performance
| YAML | mit | hannesvdvreken/flysystem,sohelrana820/flysystem,farmisen/flysystem,oswaldderiemaecker/flysystem,dshafik/flysystem,twistor/flysystem,nao-pon/flysystem,mhlavac/flysystem,dstockto/flysystem,Amrit01/flysystem,twistor/flysystem,sachintaware/flysystem,mhlavac/flysystem |
290489ae9c3234b70b04eeb1b1a2fa6202f0223b | .travis.yml | .travis.yml | sudo: false
language: c
cache:
directories:
- "$HOME/.stack"
- "$HOME/build/serokell/importify/.stack-work"
addons:
apt:
packages:
- libgmp-dev
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https... | sudo: false
language: c
cache:
directories:
- "$HOME/.stack"
- "$HOME/build/serokell/importify/.stack-work"
addons:
apt:
packages:
- libgmp-dev
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https... | Extend time of Stack builds. | Travis: Extend time of Stack builds.
| YAML | mit | serokell/importify |
90574069a9bdf0ca5c1b9fce549292a4d660a2bc | .travis.yml | .travis.yml | language: python
python: 2.7
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=pypy
install:
- pip install tox codecov
script:
- tox -e $TOX_ENV
after_success:
- codecov | language: python
python: 2.7
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py32
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=py35
- TOX_ENV=pypy
install:
- pip install tox codecov
script:
- tox -e $TOX_ENV
matrix:
allow_failures:
- env: TOX_ENV=py35
after_success:
- codecov | Add allow_failures for Python 3.5 on Travis CI | Add allow_failures for Python 3.5 on Travis CI
| YAML | mit | gorlemik/pyanyapi,Stranger6667/pyanyapi |
35121300b9be1f409790c78dd3bf2e2da8e46be0 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.0.0
- 1.9.3
script: 'bundle exec rake'
branches:
only:
- master
| language: ruby
rvm:
- 2.1
- 2.0
- 1.9.3
script: 'bundle exec rake'
branches:
only:
- master
| Use latest 2.0.x + 2.1.x Rubies on Travis | Use latest 2.0.x + 2.1.x Rubies on Travis
| YAML | mit | attack/barometer-weather_bug |
9de303d225cdfef6bd85b61787c9e95a3ae62f56 | .travis.yml | .travis.yml | language: python
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
python:
- "3.5"
- "3.6"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq -y libdb5.1-dev
env:
- TARGET=lint
- TARGET=typecheck
- TARGET=unit-tests
script: BERKELEYDB_DIR=/usr make $TAR... | language: python
addons:
apt:
sources:
- debian-sid
packages:
- shellcheck
python:
- "3.5"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq -y libdb5.1-dev
env:
- TARGET=lint
- TARGET=typecheck
- TARGET=unit-tests
script: BERKELEYDB_DIR=/usr make $TARGET -e py_... | Remove under-tested Python 3.6 support | Remove under-tested Python 3.6 support
| YAML | apache-2.0 | c-w/gutenberg-http,c-w/gutenberg-http |
e6c5517616e11089d69f19a2c3ff8808afb14991 | .travis.yml | .travis.yml | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8.2
language: swift
cache: cocoapods
podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Exam... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8.2
language: swift
cache: cocoapods
podfile: Example/Podfile
# before_install:
# - gem install cocoapods # Since Travis is not always on latest version
# - pod install --project-directory=Exam... | Use iPhone Simulator 10.2 for Travis builds | Use iPhone Simulator 10.2 for Travis builds
| YAML | mit | coniferprod/ContactCard,coniferprod/ContactCard,coniferprod/ContactCard |
0762fbac6b507da4595d57d89f17aa20bac6645f | packages/bi/bittrex.yaml | packages/bi/bittrex.yaml | homepage: https://github.com/dmjio/bittrex
changelog-type: markdown
hash: 3d363a4db874aef2a2a2a63111eb2f1803967c19004df25920008549a752c786
test-bench-deps: {}
maintainer: djohnson.m@gmail.com
synopsis: API bindings to bittrex.com
changelog: ! '# Revision history for bittrex
## 0.1.0.0 -- YYYY-mm-dd
* First ver... | homepage: https://github.com/dmjio/bittrex
changelog-type: markdown
hash: 9beeb7edddc6e4072b9a78fd1bfa2b3d286efbbaa0ead52ac047d71fdd5cb6d5
test-bench-deps: {}
maintainer: djohnson.m@gmail.com
synopsis: API bindings to bittrex.com
changelog: ! '# Revision history for bittrex
## 0.1.0.0 -- YYYY-mm-dd
* First ver... | Update from Hackage at 2017-12-30T17:12:06Z | Update from Hackage at 2017-12-30T17:12:06Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
bcc5213b917ca50dfee157211393829c7b174e14 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "1.2"
after_success: npm run coveralls
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "iojs"
after_success: npm run coveralls
| Test io.js instead of a specific version | Test io.js instead of a specific version
| YAML | mit | jstransformers/jstransformer,cesarmarinhorj/jstransformer,tunnckoCore/jstransformer |
2422f1710fb692412cc63bc1fb9adc38bbb852b7 | packages/cp/cpuinfo.yaml | packages/cp/cpuinfo.yaml | homepage: https://github.com/TravisWhitaker/cpuinfo
changelog-type: markdown
hash: cc052b78e4d04583db81dbcbcb57206a8af5b675e8ae8a8662257366ae133434
test-bench-deps: {}
maintainer: pi.boy.travis@gmail.com
synopsis: Haskell Library for Checking CPU Information
changelog: ! '# 0.1.0.0
Initial release.
'
basic-deps:
... | homepage: https://github.com/TravisWhitaker/cpuinfo
changelog-type: markdown
hash: f8b66866219312d38657857f2f7b8afdd844209b36eaed3ecf99c566fdff5766
test-bench-deps: {}
maintainer: pi.boy.travis@gmail.com
synopsis: Haskell Library for Checking CPU Information
changelog: ! '# 0.1.0.0
Initial release.
'
basic-deps:
... | Update from Hackage at 2016-09-16T20:30:09+0000 | Update from Hackage at 2016-09-16T20:30:09+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
d01162ca3404b2829569d8aeabb2c1d12b8252b4 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
notifications:
email: false
cache:
directories:
- node_modules
branches:
except:
- release
- /^release_\d+$/
after_success:
- ./.travis_scripts/push_release_tag.sh
env:
global:
# NOTE: contains GH_TOKEN=xxx from github user gds-pp-ci
secure: d1Tfvm/1yM... | language: node_js
node_js:
- '0.10'
notifications:
email: false
cache:
directories:
- node_modules
branches:
only:
- master
after_success:
- ./.travis_scripts/push_release_tag.sh
env:
global:
# NOTE: contains GH_TOKEN=xxx from github user gds-pp-ci
secure: d1Tfvm/1yMjp7XEkQ2PcMQ6jA38tb8vUktu... | Switch to only build against master | Switch to only build against master
| YAML | mit | gds-attic/performanceplatform-notifier,alphagov/performanceplatform-notifier,gds-attic/performanceplatform-notifier,alphagov/performanceplatform-notifier |
802785845176fcef5469f11dfaa93ea57568a14f | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2
- 2.1
- 2.0
- ruby-head
- rbx-3.74
- jruby
- jruby-head
env:
global:
- JRUBY_OPTS="--2.0"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3.74
fast_finish: true
before_install: gem install ... | language: ruby
sudo: false
cache: bundler
rvm:
- 2.4.1
- 2.3.4
- 2.2
- 2.1
- 2.0
- ruby-head
- rbx-3.74
- jruby-1.7.26
- jruby-head
env:
global:
- JRUBY_OPTS="--2.0"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-3.74
fast_finish: true
before_install: gem i... | Use JRuby 1.7.26 on Travis | Use JRuby 1.7.26 on Travis
| YAML | mit | jnbt/candy_check |
58f7db112e89df0b5172993884833448a449ee1c | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.4
- 2.4.1
- ruby-head
env:
- "AR_VERSION=4.2.8"
- "AR_VERSION=4.2.9"
- "AR_VERSION=5.0.4"
- "AR_VERSION=5.1.3"
- "AR_VERSION=5.2.3"
sudo: false
cache: bundler
branches:
only:
- master
before_install:
- mysql -e "create database activerecord_unittest;"
| language: ruby
rvm:
- 2.3.4
- 2.4.1
- ruby-head
services:
- mysql
env:
- "AR_VERSION=4.2.8"
- "AR_VERSION=4.2.9"
- "AR_VERSION=5.0.4"
- "AR_VERSION=5.1.3"
- "AR_VERSION=5.2.3"
sudo: false
cache: bundler
branches:
only:
- master
before_install:
- mysql -e "create database activerecord_unittest;... | Add mysql service to Travis CI config. | :green_heart: Add mysql service to Travis CI config.
| YAML | mit | waka/seed-snapshot,waka/seed-snapshot |
8a1d6d0125026905881f154e2329420ca10edb1f | .travis.yml | .travis.yml | ---
language: python
services:
- docker
python:
- "2.7"
- "3.6"
env:
- REQUIREMENTS_FILE=requirements-2.4.txt
- REQUIREMENTS_FILE=requirements-2.5.txt
- REQUIREMENTS_FILE=requirements-2.6.txt
- REQUIREMENTS_FILE=requirements-2.7.txt
- REQUIREMENTS_FILE=requirements-2.8.txt
install:
- pip install -... | ---
language: python
services:
- docker
python: "3.6"
env:
- REQUIREMENTS_FILE=requirements-2.4.txt
- REQUIREMENTS_FILE=requirements-2.5.txt
- REQUIREMENTS_FILE=requirements-2.6.txt
- REQUIREMENTS_FILE=requirements-2.7.txt
- REQUIREMENTS_FILE=requirements-2.8.txt
install:
- pip install -r "$REQUIREMEN... | Drop Python 2.7 from Travis build matrix | Drop Python 2.7 from Travis build matrix
| YAML | mit | stackbuilders/sb-debian-base |
71ba8d929d1f96d30be0fa69c23ef29243c677be | .travis.yml | .travis.yml | os: linux
dist: bionic
language: generic
env:
jobs:
- LISP=sbcl
- LISP=sbcl32
- LISP=ccl
- LISP=ccl32
- LISP=ecl
- LISP=allegro
- LISP=cmucl
# - LISP=abcl
jobs:
allow_failures:
- env: LISP=abcl
- env: LISP=ccl32
- env: LISP=cmucl
notifications:
email:
on_success:... | os: linux
dist: bionic
language: generic
env:
jobs:
- LISP=sbcl
- LISP=sbcl32
- LISP=ccl
- LISP=ccl32
- LISP=ecl
- LISP=allegro
- LISP=cmucl
# - LISP=abcl
jobs:
allow_failures:
- env: LISP=abcl
- env: LISP=allegro
- env: LISP=ccl32
- env: LISP=cmucl
notifications:
... | Allow Allegro build to fail | Allow Allegro build to fail
| YAML | mit | sionescu/bordeaux-threads,sionescu/bordeaux-threads |
328d4063ddb3ee7c455042d17204fc34dfa7e597 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
- "6"
after_script:
- istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --compilers js:babel-register && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage
| language: node_js
node_js:
- "5"
- "6"
after_script:
- NODE_ENV=test istanbul cover `npm bin`/_mocha --report lcovonly -- -R spec --compilers js:babel-register && cat ./coverage/lcov.info | `npm bin`/coveralls.js && rm -rf ./coverage
| Use /Users/cw/projects/dispo/node_modules/.bin shortcut and set environment to test | Use /Users/cw/projects/dispo/node_modules/.bin shortcut and set environment to test
| YAML | mit | gonsfx/dispo |
45bbb636b0a43e63914d5b21e8236382d8380159 | .travis.yml | .travis.yml | dist: trusty
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
- $HOME/.composer... | dist: trusty
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
- $HOME/.composer/cache
befo... | Remove PHP 8.0 from stack | Remove PHP 8.0 from stack
| YAML | mit | antonioribeiro/google2fa,antonioribeiro/google2fa |
f1e88507309f1b5395c3dc59a82bd654bc30ce25 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
sudo: false
install:
- composer self-update
- composer install --no-interaction --prefer-source
script:
- php vendor/bin/phpunit
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clove... | language: php
php:
- 7.0
- 7.1
sudo: false
install:
- composer self-update
- composer install --no-interaction --prefer-source
script:
- php vendor/bin/phpunit
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover log/cove... | Remove PHP 5.6 as it is not supported by Laravel anymore. | Remove PHP 5.6 as it is not supported by Laravel anymore.
| YAML | mit | eXolnet/LaravelModule,eXolnet/laravel-module,eXolnet/laravel-module,eXolnet/LaravelModule,eXolnet/laravel-module |
73a7ef001c900ee978ceb218faa5cbcdad376762 | .travis.yml | .travis.yml | language: node_js
sudo: required
dist: trusty
services:
- docker
node_js:
- "6"
- "7"
git:
depth: 2
before_install:
# clone a real copy of the repo because Travis only clones one branch
# - git clone --depth 10 --no-single-branch https://github.com/$TRAVIS_REPO_SLUG.git $TRAVIS_REPO_SLUG
# - cd $TRAV... | language: node_js
sudo: required
dist: trusty
services:
- docker
node_js:
- "6"
- "7"
git:
depth: 2
before_install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
# clone a real copy of the repo because Travis only clones one branch
# - git clone ... | Use the latest Docker version on CI | Use the latest Docker version on CI
| YAML | mit | Originate/exosphere,Originate/exosphere,Originate/exosphere,Originate/exosphere |
aef7b1a4c2a4d21b4d836f3fd499f0a073ea8cbd | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# - "3.4"
# command to install dependencies
install:
- "pip install -r requirements.txt"
- "pip install -e ."
- "pip install coverage"
- "pip install coveralls"
- "pip install scrutinizer-ocular"
# command to run tests
script:
- coverage run --source=economicpy setup.py t... | dist: trusty
sudo: required
addons:
sonarqube:
token:
secure: "YHpi5ZtRDFlDtmLuJDO2tDli7lmL6erlg2EIjT1V/Hj5AFTXQ3VFgNnyqgvkbOQVzSshnWSSZLUfkUoWvCOMlReYg8mRB+tqgtTQROiCxL9r4Uxzpnkb4UWLJlbbRynMjgTbpAFWBYbfKMd7Z1qiPL74xXlXDkUbEYyxBCENKXY="
jdk:
- oraclejdk8
script:
- sonar-scanner
cache:
directories:
... | Add sonarqube inspections after each build | Add sonarqube inspections after each build
| YAML | mit | pawel-lewtak/economic-py |
71535b98124d1d1e74a41b327ba3cf2e0c43e776 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec rspec --color --format progress
- bundle exec foodcritic -f any --tags ~FC003 --tags ~FC015 --tags ~FC023 .
- bundle exec rubocop
| language: ruby
cache: bundler
sudo: false
bundler_args: --without kitchen_common kitchen_vagrant
rvm:
- 2.0
- 2.1
- 2.2
script:
- bundle exec foodcritic -f any --tags ~FC003 --tags ~FC015 --tags ~FC023 .
- bundle exec rubocop
- bundle exec rspec --color --format progress
| Reorder tests and exclude test kitchen gem install | Reorder tests and exclude test kitchen gem install
| YAML | apache-2.0 | tas50/chef-sensors,tas50/chef-sensors |
95a9e55e8756d45f074f199ee5c0d358630780ad | .travis.yml | .travis.yml | sudo: false
language: node_js
| sudo: false
language: node_js
deploy:
provider: heroku
app: exerking
api_key:
secure: "DODwI0Q7eWEi++nJPDqmk/RfTxCoCeocZ5QLOE/6hE0CpXjx/zz6ZMooztPY29AFndyuP3Cwd3ebgUjo1/LTm11WgNgnJs2FHiBjEZ7d1F2K2vNUGKBML9bZsUCx1wIUIWJXd/S/pqC5rpTo5bqzMWyztUJYtSK5zudSP6nQ+TyCSPmaM0UgaD6qhwnHOGJqauz0Moo6mItR6Rt8fUN4SGSxQU1vELd... | Make Travis to deploy to Heroku | Make Travis to deploy to Heroku
| YAML | mit | jelmnainen/exerking-front,jelmnainen/exerking-front |
ce96da497d1ff20b9e8209d5c075cdb6e0ae5298 | .travis.yml | .travis.yml | language: cpp
matrix:
include:
- os: linux
dist: trusty
sudo: required
- os: osx
osx_image: xcode8
- os: osx
osx_image: xcode9
before_install:
- if [ $TRAVIS_OS_NAME == linux ]; then
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y;
sudo apt-get update -y;
sudo ap... | language: cpp
matrix:
include:
- os: linux
dist: trusty
sudo: required
- os: osx
osx_image: xcode8.3
- os: osx
osx_image: xcode9.1
before_install:
- if [ $TRAVIS_OS_NAME == linux ]; then
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y;
sudo apt-get update -y;
sud... | Use latest releases of Xcode 8 and 9 | Use latest releases of Xcode 8 and 9 | YAML | bsd-3-clause | ryuichis/oclint-cpp-travis-ci-examples,ryuichis/oclint-cpp-travis-ci-examples,ryuichis/oclint-cpp-travis-ci-examples |
f291a7b4febbad9aeae30948400b75c18cb52820 | .travis.yml | .travis.yml | ---
sudo: false
language: python
env:
global:
COVERALLS_PARALLEL=true
matrix:
fast_finish: true
include:
- env: BUILD=test FORCE_TTY=Y
python: '2.7'
- env: BUILD=test FORCE_TTY=Y
python: '3.5'
- env: BUILD=test FORCE_TTY=Y
python: '3.6'
- env: BUILD=test FORCE_TTY=Y
... | ---
sudo: false
language: python
env:
global:
COVERALLS_PARALLEL=true
matrix:
fast_finish: true
include:
- env: BUILD=test FORCE_TTY=Y
python: '2.7'
- env: BUILD=test FORCE_TTY=Y
python: '3.5'
- env: BUILD=test FORCE_TTY=Y
python: '3.6'
- env: BUILD=test FORCE_TTY=Y
... | Stop log spam in builds | Stop log spam in builds
| YAML | apache-2.0 | peterbrittain/asciimatics,peterbrittain/asciimatics |
fa465f60ce5af533474439b1e1c829de91c5a185 | packages/re/redland.yaml | packages/re/redland.yaml | homepage: ''
changelog-type: markdown
hash: eff62724228484e7fbcd843bb3d2106ce4422cd286c1a16d9af868405a07d75d
test-bench-deps: {}
maintainer: defanor@uberspace.net
synopsis: Redland RDF library bindings
changelog: ! '# Revision history for redland
## 0.2.0.0 -- 2018-02-23
* Support for literal node types/langua... | homepage: ''
changelog-type: markdown
hash: c1e813e62405bf26843fc5ccaf735d285610a3a676fd3865fe9beeb0f41621a5
test-bench-deps: {}
maintainer: defanor@uberspace.net
synopsis: Redland RDF library bindings
changelog: ! '# Revision history for redland
## 0.2.0.0 -- 2018-02-23
* Support for literal node types/langua... | Update from Hackage at 2018-04-21T23:39:52Z | Update from Hackage at 2018-04-21T23:39:52Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
c62121f30d493baf50b6b34913ddaf6ec8d16427 | .travis.yml | .travis.yml | ---
language: ruby
sudo: false
cache: bundler
script: "bundle exec rake ci"
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.1
- ruby-head
- jruby-9000
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only: master
notifications:
ema... | ---
language: ruby
sudo: false
cache: bundler
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- 2.4.1
- ruby-head
- jruby-9000
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
branches:
only: master
notifications:
email: false
| Change to drop ruby 1.9 | Change to drop ruby 1.9
| YAML | mit | peter-murach/github,piotrmurach/github |
9dc9bdef295a73c546c0931fc5243aedf98b8703 | packages/sd/SDL-ttf.yaml | packages/sd/SDL-ttf.yaml | homepage: ''
changelog-type: ''
hash: 4f54793becbe0f03c7031936cc74f095f88df036e6ebcd4e3c15fc6a7d174e3d
test-bench-deps: {}
maintainer: Francesco Ariis <fa-ml@ariis.it>
synopsis: Binding to libSDL_ttf
changelog: ''
basic-deps:
base: ! '>=3 && <=5'
SDL: -any
all-versions:
- '0.4.0'
- '0.5.2'
- '0.5.5'
- '0.6.0'
- '0.... | homepage: ''
changelog-type: ''
hash: e3000e34d1165ea54df9980845954266cc12c2d4beed9ca1a68d803a0c4c5fa1
test-bench-deps: {}
maintainer: Francesco Ariis <fa-ml@ariis.it>
synopsis: Binding to libSDL_ttf
changelog: ''
basic-deps:
base: ! '>=3 && <=5'
SDL: -any
all-versions:
- '0.4.0'
- '0.5.2'
- '0.5.5'
- '0.6.0'
- '0.... | Update from Hackage at 2015-12-10T04:38:25+0000 | Update from Hackage at 2015-12-10T04:38:25+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
97e250ce5ecbe4c7cd95f09cb904968f1d850f7e | .travis.yml | .travis.yml | language: objective-c
install: true
script: xctool ARCHS=i386 VALID_ARCHS=i386 CURRENT_ARCH=i386 ONLY_ACTIVE_ARCH=NO -workspace 'LLBinaryOperators.xcworkspace' -scheme 'LLBinaryOperators' -configuration Debug -sdk iphonesimulator clean build test
| language: objective-c
before_install:
- brew uninstall xctool
- brew install xctool --HEAD
install: true
script: xctool ARCHS=i386 VALID_ARCHS=i386 CURRENT_ARCH=i386 ONLY_ACTIVE_ARCH=NO -workspace 'LLBinaryOperators.xcworkspace' -scheme 'LLBinaryOperators' -configuration Debug -sdk iphonesimulator clean build t... | Use xctool head due to issues running tests | Use xctool head due to issues running tests
| YAML | mit | lawrencelomax/LLBinaryOperators,lawrencelomax/LLBinaryOperators,lawrencelomax/LLBinaryOperators,lawrencelomax/LLBinaryOperators |
599b1756c2d5aed4a16bb5fef68c99eab6c64b05 | packages/sh/shakers.yaml | packages/sh/shakers.yaml | homepage: https://github.com/swift-nav/shakers
changelog-type: ''
hash: e5ffa75b82954f21daa40bdc7181e5b47930cd5be4af7b65309283e695a82e81
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: Shake helpers.
changelog: ''
basic-deps:
shake: -any
base: ==4.8.*
shakers: -any
basic-prelude: -any
d... | homepage: https://github.com/swift-nav/shakers
changelog-type: ''
hash: e0a9eabcd54c8965337316bbda9270242ee3b6be004accab52eb46591e7c626c
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: Shake helpers.
changelog: ''
basic-deps:
shake: -any
base: ==4.8.*
shakers: -any
basic-prelude: -any
d... | Update from Hackage at 2017-01-19T00:52:53Z | Update from Hackage at 2017-01-19T00:52:53Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
8e4dd77b107425d2592b217ce30937eb26d6e24f | .travis.yml | .travis.yml | rvm:
- 2.0
- 2.1
- 2.2
- 2.3.1
gemfile:
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
before_install:
- gem install bundler
matrix:
exclude:
- rvm: 2.0
gemfile: gemfiles/5.0.gemfile
- rvm: 2.1
gemfile: gemfiles/5.0.gemfile
notific... | rvm:
- 2.0
- 2.1
- 2.2.5
- 2.3.1
gemfile:
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
before_install:
- gem install bundler
matrix:
exclude:
- rvm: 2.0
gemfile: gemfiles/5.0.gemfile
- rvm: 2.1
gemfile: gemfiles/5.0.gemfile
notif... | Fix build error with Rails 5 | Fix build error with Rails 5
| YAML | mit | weppos/breadcrumbs_on_rails,ngelx/breadcrumbs_on_rails,weppos/breadcrumbs_on_rails,ngelx/breadcrumbs_on_rails |
4fe82157f9af57c9cd7a16f2684be534237176d4 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 5.5
env:
- PHPUNIT_VERSION=^4.8
- php: 5.6
env:
- PHPUNIT_VERSION=^5.7
- php: 7.0
env:
- PHPUNIT_VERSION=^6.4
- php: 7.1
env:
- PHPUNIT_VERSION=^6.4
- php: 7.2
env:
- PHPUNIT_VERSION=^7.5
... | language: php
matrix:
include:
- php: 5.5
env:
- PHPUNIT_VERSION=^4.8
- php: 5.6
env:
- PHPUNIT_VERSION=^5.7
- php: 7.0
env:
- PHPUNIT_VERSION=^6.4
- php: 7.1
env:
- PHPUNIT_VERSION=^6.4
- php: 7.2
env:
- PHPUNIT_VERSION=^7.5
... | Add unit test coverage for PHP 7.3 | Add unit test coverage for PHP 7.3 | YAML | mit | Xon/credis,mklooss/credis,mklooss/credis,Xon/credis,colinmollenhour/credis,colinmollenhour/credis |
6c3cbfce194ec7b7cc69a706a2cd799809ee5280 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- 1.6
install:
- go get golang.org/x/net/publicsuffix
- go get google.golang.org/cloud/datastore
script:
- make test-travis
| language: go
go:
- 1.6
install:
- go get golang.org/x/net/publicsuffix
- go get google.golang.org/cloud/datastore
script:
- make test-travis
| Remove Go 1.3 from the Travis tests. | Remove Go 1.3 from the Travis tests.
Travis CI is failing on Go 1.3 but not Go 1.6, due to a bug out of our control: https://travis-ci.org/chromium/hstspreload/jobs/124924140
| YAML | bsd-3-clause | chromium/hstspreload |
fead2632be104b487be1d9eadeb4909836de760f | .travis.yml | .travis.yml | sudo: false
language: clojure
after_script:
- bash -ex test/coveralls.sh
| sudo: false
language: clojure
install:
- wget -O boot https://github.com/boot-clj/boot-bin/releases/download/latest/boot.sh
- chmod 755 boot
- ./boot -V
script: ./boot test
after_script:
- bash -ex test/coveralls.sh
| Add boot specific test runner script to Travis | Add boot specific test runner script to Travis
| YAML | mit | whitepages/github-changelog |
6724eb5d804f91022f0a3ca366fc61ebd87d716c | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: ruby-head
- rvm: jruby-head
| before_install: gem install bundler --pre
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
- jruby-head
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: ruby-head
- rvm: jruby-head
| Install prerelease version of Bundler on Travis CI | Install prerelease version of Bundler on Travis CI
| YAML | mit | jasnow/appraisal,thoughtbot/appraisal |
21f62504828588e499462b04394d8ac5abbf5e3a | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
env:
global:
- setup=basic
- APP_ENV=testing
sudo: false
before_install:
- travis_retry composer self-update
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-dist; fi
- if [[ $setup = 'stable' ]]; then trav... | language: php
php:
- 5.6
- 7.0
env:
global:
- setup=basic
- APP_ENV=testing
sudo: false
before_install:
- travis_retry composer self-update
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-dist; fi
- if [[ $setup = 'stable' ]]; then travis_retry... | Stop running tests against 5.5 | Stop running tests against 5.5
| YAML | mit | laravel/valet,laravel/valet,laravel/valet |
e19c164f0256b4c93e6dedca07a4fbc7c00c5372 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.1
before_install: true
install: true
script: script/cibuild Focus Focus-iOS
| language: objective-c
osx_image: xcode7.1
before_install: true
install: true
script: script/cibuild Focus Focus-iOS
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/1d781e1bcbabade5de35
on_success: always
on_failure: always
on_start: always
| Add Gitter integration with Travis | Add Gitter integration with Travis | YAML | mit | CodaFi/Focus,r-peck/Focus,typelift/Focus |
80b4b34df43f48d4af9544e39e4288efc6aacb59 | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.5
- release
install:
- go get golang.org/x/tools/cmd/goimports
- go get golang.org/x/tools/cover
- go get github.com/hailiang/gosweep
- go get github.com/golang/lint/golint
- go get github.com/mattn/goveralls
script:
- go get -v ./...
- go test -v ... | language: go
go:
- 1.5
- release
install:
- go get github.com/alecthomas/gometalinter
- gometalinter --install --update
- go get github.com/axw/gocov/gocov
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- go get -v ./...
- gometalinter ./...
... | Switch from gosweep to gometalinter | Switch from gosweep to gometalinter
| YAML | mit | dasfoo/rover,dasfoo/rover,dasfoo/rover |
d95c76005c4aab96d9b43c630466f1dd2b20bf42 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
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/wrapper/
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: java
jdk:
- oraclejdk8
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/wrapper/
after_success:
- bash <(curl -s https://codecov.io/bash)
addons:
apt:
packages:
... | Make Travis use a more recent JDK | Make Travis use a more recent JDK | YAML | mpl-2.0 | kovaloid/infoarchive-sip-sdk,Enterprise-Content-Management/infoarchive-sip-sdk |
56dec17b67e1ad6af51a92b6e8dc828688d595a6 | .travis.yml | .travis.yml | language: go
go:
- 1.6.2
- master
script:
- go test -v ./...
- gfmxr -D -c $(grep -cE '^``` ('$(gfmxr list-frobs | tr "\n" '|' | sed 's/|$//')')' README.md)
| language: go
go:
- 1.6.2
- master
addons:
apt:
packages:
- zsh
script:
- go test -v ./...
- gfmxr -D -c $(grep -cE '^``` ('$(gfmxr list-frobs | tr "\n" '|' | sed 's/|$//')')' README.md)
| Install zsh in Travis land | Install zsh in Travis land
| YAML | mit | urfave/gfmrun,urfave/gfmrun |
bf9b7a37dda090c2a3fd0ecd4b65995014d9473d | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0 | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
| Add Ruby 2.1.0 to Travis configuration | Add Ruby 2.1.0 to Travis configuration
| YAML | mit | xuewenfei/survey,creatubbles/survey,runtimerevolution/survey,nblake989/survey,creatubbles/survey,runtimerevolution/survey,kwameboame/survey,nblake989/survey,xuewenfei/survey,creatubbles/survey,nblake989/survey,xuewenfei/survey,kwameboame/survey,kwameboame/survey,runtimerevolution/survey |
569d20c3e81b97130481a5bf56c01a4ba5b13bbf | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- pip install fabric
- pip install nose
- pip install coverage
script:
- nosetests -v --with-coverage --cover-package=fabric_digitalocean
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: python
python:
- "2.7"
install:
- pip install fabric
- pip install nose
- pip install coverage
- pip install responses
script:
- nosetests -v --with-coverage --cover-package=fabric_digitalocean
after_success:
- bash <(curl -s https://codecov.io/bash)
| Add responses to the test dependencies. | Add responses to the test dependencies.
| YAML | bsd-2-clause | andrewsomething/fabric-digitalocean |
11a982c77e88e2debd68c7aa9175b8ff2925cf50 | .travis.yml | .travis.yml | language: rust
rust:
- nightly
- 1.1.0
os:
- linux
- osx
script:
- cargo build
| language: rust
sudo: true
before_install:
- wget https://github.com/facebook/rocksdb/archive/rocksdb-3.8.tar.gz; tar xvf rocksdb-3.8.tar.gz && cd rocksdb-rocksdb-3.8 && make shared_lib; make install
rust:
- nightly
- 1.1.0
os:
- linux
- osx
script:
- cargo build
| Build rocksdb and run tests. | Build rocksdb and run tests.
| YAML | apache-2.0 | kaedroho/rust-rocksdb,kaedroho/rust-rocksdb,tempbottle/rust-rocksdb,tempbottle/rust-rocksdb,kaedroho/rust-rocksdb,spacejam/rust-rocksdb,spacejam/rust-rocksdb,Lingling7/rust-rocksdb,spacejam/rust-rocksdb,tempbottle/rust-rocksdb,zhangjinpeng1987/rust-rocksdb,zhangjinpeng1987/rust-rocksdb |
2275b6320363be9ad5d8544f12c5afd001c599c9 | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update
- composer update $COMPOSER_OPTS
before_script:
- gem install --quiet mailcatcher
- mailcatcher
script:
- ./vendor/bin/phpunit
- ./tests/lint.sh
git:
dept... | language: php
php:
- 5.6
- 7.0
- 7.1
- hhvm
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update --snapshot
- composer update $COMPOSER_OPTS
before_script:
- gem install --quiet mailcatcher
- mailcatcher
script:
- ./vendor/bin/phpunit
- ./tests/lint.sh
... | Use the latest version of composer | Use the latest version of composer
| YAML | apache-2.0 | duncan3dc/swiftmailer,duncan3dc/swiftmailer,duncan3dc/swiftmailer |
55c0aab5372b102903793cb99946872004650f2b | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- jruby
- 2.0.0
- 2.1.1
- 1.9.3-p327
script:
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake
notifications:
slack:
rooms:
- phatforge:ClGTk0rAfE5QxM9bg1Usj6Lo#general
- phatforge:ClGTk0rAfE5QxM9bg1Usj6Lo#random
email:
reci... | language: ruby
cache: bundler
rvm:
- jruby
- 2.0.0
- 2.1.1
- 1.9.3-p327
script:
- bundle exec rake app:db:test:prepare --trace
- bundle exec rake
notifications:
slack:
rooms:
- phatforge:ClGTk0rAfE5QxM9bg1Usj6Lo#general
- phatforge:ClGTk0rAfE5QxM9bg1Usj6Lo#random
email:
recipients... | Use correct invocation for dummy app test prepare | Use correct invocation for dummy app test prepare
| YAML | mit | phatforge/theme_renderer,phatforge/theme_renderer |
c40c4378eefb09e01c5f8e96ac92a7557db3dcb4 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
| language: ruby
rvm:
- 1.9.3
- 2.0.0
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
| Add Ruby 2.0.0 to Travis configuration. | Add Ruby 2.0.0 to Travis configuration.
| YAML | mit | tristandunn/pusher-fake,Tybot204/pusher-fake,Drooids/pusher-fake,tristandunn/pusher-fake,Drooids/pusher-fake,Tybot204/pusher-fake |
665e2f80ccc17edbcb202f14a669f495b1a90afe | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.12"
- "io.js"
- "4"
- "5"
| sudo: false
language: node_js
node_js:
- "4"
- "5"
| Stop testing with node v0.12 and io.js. | Stop testing with node v0.12 and io.js.
| YAML | isc | CodeMan99/blitzbot |
a0fc6a28be941c68c8e8f25478391a2dbf6624e3 | .travis.yml | .travis.yml | language: go
go:
- 1.0
- 1.1
- tip
before_install:
- sudo apt-get install -y libhdf5-serial-dev
| language: go
go:
- 1.1
- tip
before_install:
- sudo apt-get install -y libhdf5-serial-dev
| Drop Go 1.0 from testing, not supported. | Drop Go 1.0 from testing, not supported.
| YAML | bsd-3-clause | disktnk/go-hdf5,sbinet/go-hdf5 |
43974e46e1a654fa92913fe7b08e2a3865063fc9 | .travis.yml | .travis.yml | language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- "2.0.0"
- "2.1.10"
- "2.2.7"
- "2.3.4"
- "2.4.1"
matrix:
exclude:
- rvm: "2.0.0"
env: ACTIVESUPPORT_VERSION=5
- rvm: "2.1.10"
env: ACTIVESUPPORT_VERSION=5
env:
- ACTIVESUPPORT_VERSION=3
- ACTIVESUPPORT_VE... | language: ruby
cache: bundler
before_install:
- gem update bundler
rvm:
- "2.0.0"
- "2.1.10"
- "2.2.10"
- "2.3.7"
- "2.4.4"
- "2.5.1"
matrix:
exclude:
- rvm: "2.0.0"
env: ACTIVESUPPORT_VERSION=5
- rvm: "2.1.10"
env: ACTIVESUPPORT_VERSION=5
env:
- ACTIVESUPPORT_VERSION=3
- ACT... | Test on the latest ruby releases in Travis | Test on the latest ruby releases in Travis | YAML | mit | andrewsomething/droplet_kit,digitalocean/droplet_kit |
c8921089f07b98630592ec5a830b3ad88b5c9669 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '9'
- '8'
- '6'
| os: "linux"
dist: "bionic"
language: "node_js"
node_js:
- "14"
- "13"
- "12"
- "10"
| Update Travis node versions and env | Test(config): Update Travis node versions and env
| YAML | unlicense | fvdm/nodejs-geolocation |
9c01e210d208bb6c9e01b53d9056499447e0d4ad | .travis.yml | .travis.yml | language: node_js
os: linux
node_js:
- node
addons:
chrome: stable
before_script:
- npm install -g chromedriver
script:
- yarn tslint
- yarn build
- yarn phantomjs-test
- yarn browser-test
| language: node_js
os: linux
node_js:
- node
cache: yarn
addons:
chrome: stable
before_script:
- npm install -g chromedriver
script:
- yarn tslint
- yarn build
- yarn phantomjs-test
- yarn browser-test
| Enable yarn caching for Travis CI | Enable yarn caching for Travis CI
| YAML | lgpl-2.1 | TeamupCom/tinymce,TeamupCom/tinymce,FernCreek/tinymce,tinymce/tinymce,FernCreek/tinymce,FernCreek/tinymce,tinymce/tinymce,tinymce/tinymce |
c2e4eb54787b5b0c51dd05f640527b38d16e403f | .travis.yml | .travis.yml | language: python
python:
- 3.4
- 3.5
install:
- pip install -r requirements.txt
script: nosetests
| langauge: python
python:
- 3.4
- 3.5
install:
- pip install -r requirements.txt
script: nosetests
| Revert "Fixed langauge -> language typo" | Revert "Fixed langauge -> language typo"
This reverts commit 957fd9198e362f242f29526703ed99d2ba52011e.
| YAML | mit | joshuamorton/kermit |
6d1ab8a277b42c59d7186fe7005b1fa5a74f077a | .travis.yml | .travis.yml | language: python
python:
- 2.7
sudo: required
dist: trusty
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
install:
- pip install -r requirements.txt
- python setup.py develop
before_script:
- "wget http://chromedriver.googlecode.com/files/chromedriver_linux32_23.0.12... | language: python
python:
- 2.7
sudo: required
dist: trusty
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
- chromium-chromedriver
install:
- pip install -r requirements.txt
- python setup.py develop
before_script:
- "wget http://chromedriver.googlecode.com/file... | Remove debug outpput. Install chromium-chromedriver. | Remove debug outpput. Install chromium-chromedriver.
| YAML | apache-2.0 | boakley/robotframework-hub,boakley/robotframework-hub,boakley/robotframework-hub |
7ba7d79513d3efad6bb2928833a1e4b91471053c | .travis.yml | .travis.yml | language: node_js
node_js:
- node
- 6
- 4
before_install:
- npm install -g codeclimate-test-reporter npx
install:
- npm install
before_script:
- npm run lint
script:
- npm test && npm run build
sudo: false
cache:
directories:
- node_modules
git:
depth: 1
branches:
only:
- master
- develop
after_s... | language: node_js
node_js:
- node
- 6
- 4
before_install:
- npm install -g codeclimate-test-reporter npx
install:
- npm install
before_script:
- npm run lint
script:
- npm test && npm run build
sudo: false
cache:
directories:
- node_modules
git:
depth: 1
branches:
only:
- master
- develop
after_s... | Change Code Climate send test coverage | Change Code Climate send test coverage
| YAML | mit | leosuncin/onesignal-api-client,leosuncin/onesignal-api-client |
5eccc86a7c969004d44cedd54dbd6642b2c02d37 | .travis.yml | .travis.yml | sudo: false
language: python
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
- TOX_ENV=pypy3
- TOX_ENV=cover
- TOX_ENV=flake8
- TOX_ENV=docs
matrix:
include:
# Python 3.5 needs to be explicitly requested with python: for now.
# See travis-ci/travis... | sudo: false
language: python
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=pypy
- TOX_ENV=pypy3
- TOX_ENV=cover
- TOX_ENV=flake8
- TOX_ENV=docs
matrix:
include:
# Python 3.5 needs to be explicitly requested with python: for now.
# See travis-ci/travis... | Install newer PyPy on Travis | Install newer PyPy on Travis
| YAML | mit | thriftrw/thriftrw-python,thriftrw/thriftrw-python,uber/thriftrw-python,uber/thriftrw-python,uber/thriftrw-python,thriftrw/thriftrw-python |
6dd9a1e47f355d3cd398766156b30b8198cab1f7 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
before_install:
- source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list
- wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add -
- sudo apt-get upd... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
addons:
- rethinkdb: 2.3
install:
- pip install .
script: py.test tests/
deploy:
provider: pypi
user: $PYPI_USER
password: $PYPI_PASSWORD
on:
tags: true
| Use RethinkDB addon on Travis | Use RethinkDB addon on Travis
| YAML | mit | linkyndy/remodel |
8f326e297743e262eae77d9b78900b3dc21350f0 | .travis.yml | .travis.yml | sudo: required
language: python
python:
- "3.4"
install:
- "pip3 install pytest"
script: python3 -m pytest
| sudo: false
language: python
python:
- "3.4"
install:
- "pip3 install pytest"
script: python3 -m pytest
| Migrate from legacy to container-based infrastructure | Migrate from legacy to container-based infrastructure | YAML | unlicense | davidgasquez/tip |
8bf83f3e88068bca8b047dc32c220399b467aa9e | .travis.yml | .travis.yml | language: node_js
cache: yarn
node_js:
- stable
- "6"
- "4"
| language: node_js
cache: yarn
node_js:
- stable
- "8"
- "6"
- "4"
| Add separated Node.js 8 to Travis CI config | Add separated Node.js 8 to Travis CI config
| YAML | mit | jonathantneal/postcss,pascalduez/postcss,postcss/postcss,bezoerb/postcss,postcss/postcss,Semigradsky/postcss |
4b03efdfd403710104c5a3a38a9b305aafa6e307 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
# Setup anaconda
before_install:
# http://conda.pydata.org/docs/travis.html
- sudo apt-get update
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-... | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
# Setup anaconda
before_install:
# http://conda.pydata.org/docs/travis.html
- sudo apt-get update
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-... | Change into sweetercat dir before running tests | Change into sweetercat dir before running tests
| YAML | mit | DanielAndreasen/SWEETer-Cat,DanielAndreasen/SWEETer-Cat |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.