commit stringlengths 40 40 | old_file stringlengths 4 237 | new_file stringlengths 4 237 | old_contents stringlengths 1 4.24k | new_contents stringlengths 1 4.87k | subject stringlengths 15 778 | message stringlengths 15 8.75k | lang stringclasses 266 values | license stringclasses 13 values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
f695901c6ca6f86c5929a3879ba4f5d753506497 | .travis.yml | .travis.yml | language: go
services:
- redis-server
go:
- 1.4
install:
- sudo pip install awscli
script:
- ./scripts/build.sh
- ./scripts/test.sh
after_script:
- go test -v -covermode=count -coverprofile=coverage.out .
- goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN
- ./scripts/deploy.sh
| language: go
services:
- redis-server
go:
- 1.4
install:
- pip install --user awscli
- export PATH=$PATH:~/.local/bin
script:
- ./scripts/build.sh
- ./scripts/test.sh
after_script:
- go test -v -covermode=count -coverprofile=coverage.out .
- goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN
- ./scripts/deploy.sh
| Install AWSCLI as user-mode pip package | fix: Install AWSCLI as user-mode pip package
| YAML | mit | Imgur/incus,Imgur/incus,samuelebistoletti/incus,AdriVanHoudt/incus,samuelebistoletti/incus,samuelebistoletti/incus,AdriVanHoudt/incus,Imgur/incus,AdriVanHoudt/incus |
f0d73f1b22053c9825bd117fe7c143bfcd8ccff0 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
before_script:
- composer install
script: phpunit
| language: php
php:
- 5.3
- 5.4
before_script:
- composer install
script: phpunit --coverage-text
| Add code coverage to Travis | Add code coverage to Travis
| YAML | mit | misd-service-development/php-collections |
b9e5b9b82d80c5ab6aaacd0de1316ee0b0fa3f75 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- 1.4
- tip
services:
- rabbitmq
before_script: ./bin/ci/before_build.sh
script: make
matrix:
allow_failures:
- go: tip
notifications:
email:
- michael@rabbitmq.com
| language: go
go:
- 1.3
- 1.4
- 1.5
- 1.6
- 1.7
- tip
services:
- rabbitmq
before_script: ./bin/ci/before_build.sh
script: make
matrix:
allow_failures:
- go: tip
notifications:
email:
- michael@rabbitmq.com
| Update Go versions in Travis config | Update Go versions in Travis config | YAML | bsd-2-clause | michaelklishin/rabbit-hole,michaelklishin/rabbit-hole |
5216580e2d2be8a79df8009d8f8ea1f3e22cffce | .travis.yml | .travis.yml | language: go
sudo: false
go:
- 1.1
- 1.2
- 1.3
- 1.4
- tip
install: go get -v ./hipchat
script: go test -v ./hipchat
| language: go
sudo: false
go:
- 1.1
- 1.2
- 1.3
- 1.4
install: go get -v ./hipchat
script: go test -v ./hipchat
| Remove tip from build target | Remove tip from build target
| YAML | apache-2.0 | luyaotsung/hiplog,luyaotsung/hipchat-go,agamatins/hipchat-go,wsdan/hipchat-go,mark-adams/hipchat-go,tbruyelle/hipchat-go |
c16bcf1547fb698b4948e2a151286acade5a2b03 | .travis.yml | .travis.yml | # https://docs.travis-ci.com/user/customizing-the-build/
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2.5
- 2.3.1
notifications:
recipients:
- nesquena@gmail.com
- databyte@gmail.com
before_install:
- gem install bundler
| # https://docs.travis-ci.com/user/customizing-the-build/
language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
notifications:
recipients:
- nesquena@gmail.com
- databyte@gmail.com
before_install:
- gem install bundler
| Test against new Ruby 2.4 and 2.5 | [CI] Test against new Ruby 2.4 and 2.5 | YAML | mit | nesquena/rabl,nesquena/rabl,nesquena/rabl |
a1e1a570e0b7e45c8d8a215f10c84ef891581f85 | .travis.yml | .travis.yml | language: scala
script:
- sbt ++$TRAVIS_SCALA_VERSION rpm:packageBin debian:packageBin universal:packageBin
scala:
- 2.10.3
jdk:
- oraclejdk7
notifications:
email:
- sbt-dev-bot@googlegroups.com
before_install:
- cat /etc/hosts # optionally check the content *before*
- sudo hostname "$(hostname | cut -c1-63)"
- sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname | cut -c1-63)/" /etc/hosts | sudo tee /etc/hosts
- cat /etc/hosts # optionally check the content *after*
- sudo apt-get update -qq
- sudo apt-get install -qq rpm
| language: scala
script:
- sbt -Dsbt.build.version=1.0.0-M1 ++$TRAVIS_SCALA_VERSION rpm:packageBin debian:packageBin universal:packageBin
scala:
- 2.10.3
jdk:
- oraclejdk7
notifications:
email:
- sbt-dev-bot@googlegroups.com
before_install:
- cat /etc/hosts # optionally check the content *before*
- sudo hostname "$(hostname | cut -c1-63)"
- sed -e "s/^\\(127\\.0\\.0\\.1.*\\)/\\1 $(hostname | cut -c1-63)/" /etc/hosts | sudo tee /etc/hosts
- cat /etc/hosts # optionally check the content *after*
- sudo apt-get update -qq
- sudo apt-get install -qq rpm
| Add sbt.build.version from CONTRIBUTING to Travis config | Add sbt.build.version from CONTRIBUTING to Travis config
| YAML | apache-2.0 | sbt/sbt,sbt/sbt,sbt/sbt,mdedetrich/sbt,sbt/sbt-launcher-package,mdedetrich/sbt,sbt/sbt,xuwei-k/xsbt,mdedetrich/sbt,xuwei-k/xsbt,xuwei-k/xsbt,sbt/sbt,sbt/sbt,sbt/sbt,mdedetrich/sbt,mdedetrich/sbt,sbt/sbt-launcher-package,mdedetrich/sbt,mdedetrich/sbt,xuwei-k/xsbt,xuwei-k/xsbt |
a9ec8ecd772ab9ad4cfcda98b6ffe4a96b0f0e61 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- pip install .
# command to run tests
script: python setup.py test
# only notify when status changes from success to failure
notifications:
email:
recipients:
- code@ramiro.org
on_failure: change
| language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
# command to install dependencies
install:
- pip install .
# command to run tests
script: python setup.py test
# only notify when status changes from success to failure
notifications:
email:
recipients:
- code@ramiro.org
on_failure: change
| Remove Python 2.6 from Travis config | Remove Python 2.6 from Travis config
| YAML | mit | yaph/geonamescache,yaph/geonamescache |
732124610658c29c8616683e92a53584afdbff19 | .travis.yml | .travis.yml | language: php
sudo: false
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: hhvm
cache:
directories:
- $HOME/.composer/cache/files
install: composer install
script: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
| language: php
sudo: false
matrix:
include:
- php: 5.3
dist: precise
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: hhvm
cache:
directories:
- $HOME/.composer/cache/files
install: composer install
script: vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
| Add PHP 7.2 to test matrix | Add PHP 7.2 to test matrix
| YAML | mit | VIISON/AddressSplitting |
4fb9aa5ea71a4a56758bf3a24d72b2b032b64cc7 | .travis.yml | .travis.yml | env:
- ghc=7.6.1
- ghc=7.8.1
- ghc=7.10.1
install:
# Set up the Shell to treat the semicolon as &&
- set -o pipefail && set -e
# Install GHC and Cabal
-
travis_retry sudo add-apt-repository -y ppa:hvr/ghc;
travis_retry sudo apt-get update;
travis_retry sudo apt-get install cabal-install-1.22 ghc-$ghc;
export PATH=/opt/ghc/$ghc/bin:/opt/cabal/1.22/bin:$PATH;
# Update the Cabal database
- cabal update
# Switch to the distro:
-
export pkg_name=$(cabal info . | awk '{print $2;exit}');
cabal sdist;
cd dist;
tar xzvf $pkg_name.tar.gz;
cd $pkg_name;
# Install the library dependencies
- cabal install --only-dependencies --enable-tests
# Build the library
- cabal build
# Configure and build the remaining stuff
- cabal configure
--enable-tests
$([ "$build_benchmarks" = "1" ] && echo "--enable-benchmarks")
- cabal build
script:
- cabal test --show-details=always
| env:
- ghc=7.6.1 cabal=1.22
- ghc=7.8.1 cabal=1.22
- ghc=7.10.1 cabal=1.22
- ghc=8.0.1 cabal=1.24
install:
# Set up the Shell to treat the semicolon as &&
- set -o pipefail && set -e
# Install GHC and Cabal
-
travis_retry sudo add-apt-repository -y ppa:hvr/ghc;
travis_retry sudo apt-get update;
travis_retry sudo apt-get install cabal-install-$cabal ghc-$ghc;
export PATH=/opt/ghc/$ghc/bin:/opt/cabal/$cabal/bin:$PATH;
# Update the Cabal database
- cabal update
# Switch to the distro:
-
export pkg_name=$(cabal info . | awk '{print $2;exit}');
cabal sdist;
cd dist;
tar xzvf $pkg_name.tar.gz;
cd $pkg_name;
# Install the library dependencies
- cabal install --only-dependencies --enable-tests
# Build the library
- cabal build
# Configure and build the remaining stuff
- cabal configure
--enable-tests
$([ "$build_benchmarks" = "1" ] && echo "--enable-benchmarks")
- cabal build
script:
- cabal test --show-details=always
| Test with GHC-8.0.1 as well | Test with GHC-8.0.1 as well
| YAML | mit | nikita-volkov/base-prelude |
bbbdcd5b6c0fd01d8ff2b90c531510333cb8a237 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
# lock distro so new future defaults will not break the build
dist: precise
# also test against HHVM, but require "trusty" and ignore errors
matrix:
include:
- php: hhvm
dist: trusty
allow_failures:
- php: nightly
- php: hhvm
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
- time php examples/benchmark-throughput.php
| language: php
php:
# - 5.3 # requires old distro, see below
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly # ignore errors, see below
- hhvm # ignore errors, see below
# lock distro so new future defaults will not break the build
dist: trusty
matrix:
include:
- php: 5.3
dist: precise
allow_failures:
- php: nightly
- php: hhvm
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-text
- time php examples/benchmark-throughput.php
| Update Travis distro to precise, except for legacy PHP | Update Travis distro to precise, except for legacy PHP
| YAML | mit | reactphp/stream |
8139d7283a858dd2637837211eb24a84636ecad8 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
notifications:
irc:
channels:
- "chat.freenode.net#montage"
on_success: false
template:
- "%{author} broke the %{repository} tests on %{branch}: %{build_url}"
| language: node_js
node_js:
- "0.10"
notifications:
irc:
channels:
- "chat.freenode.net#montage"
on_success: false
template:
- "%{author} broke the %{repository} tests on %{branch}: %{build_url}"
| Disable Node.js v0.8 integration tests | Disable Node.js v0.8 integration tests
Travis now errors because of a bad npm certificate.
| YAML | bsd-3-clause | cesine/collections,fredkilbourn/collections,lu4/collections,cesarmarinhorj/collections,cesine/collections |
c25768a9b9e466b997c9ed1ac0644e3947612c3f | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- jruby-19mode
- rbx-19mode
- ruby-head
| Test on recent Ruby releases | Test on recent Ruby releases | YAML | mit | mojolingo/adam_signals |
d763f972d76aae521c41a583c54e9f2e5944ae3b | .travis.yml | .travis.yml | language: go
go:
- 1.6.2
install:
- go get github.com/golang/lint/golint
- go get golang.org/x/net/context
- go get golang.org/x/net/context/ctxhttp
script:
- go test -v ./...
- go test -cover -race ./...
- go vet ./...
- test -z "$(find . -name \*.go | xargs gofmt -d -s)"
- golint ./...
sudo: false
| language: go
go:
- 1.6.x
- 1.7.x
- 1.x
install:
- go get github.com/golang/lint/golint
- go get golang.org/x/net/context
- go get golang.org/x/net/context/ctxhttp
script:
- go test -v ./...
- go test -cover -race ./...
- go vet ./...
- test -z "$(find . -name \*.go | xargs gofmt -d -s)"
- golint ./...
sudo: false
| Test against multiple Go versions | Test against multiple Go versions
| YAML | mit | twpayne/go-vali |
d59ba2f28a3472bde14afc8f5244e7f3a9417769 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.11'
# - 'iojs' This isn't working on travis at the moment
before_install:
- npm i npm@latest -g
script: make travis
notifications:
slack:
secure: BiCHWsLTzlEd6MjRZY27BgmtCA3DmBFo5jcSsjSqmInbgla0lzDAA40xfIKTswIwK0pzuQdVaanl5Jy78wul0lfxpa5LLWX/bQmR1LGrygphC5tFG7GDM9Hdjatce5XEYVsSAUddNFEVQtMEUuUkSOiUll7kRq4LQtvAiIy1isk=
| language: node_js
node_js:
- '0.10'
- '0.12'
- 'iojs'
before_install:
- npm i npm@latest -g
script: make travis
notifications:
slack:
secure: BiCHWsLTzlEd6MjRZY27BgmtCA3DmBFo5jcSsjSqmInbgla0lzDAA40xfIKTswIwK0pzuQdVaanl5Jy78wul0lfxpa5LLWX/bQmR1LGrygphC5tFG7GDM9Hdjatce5XEYVsSAUddNFEVQtMEUuUkSOiUll7kRq4LQtvAiIy1isk=
| Set latest node stable on Travis + retry io.js | Set latest node stable on Travis + retry io.js
| YAML | mit | SassDoc/sassdoc |
ea47a16bf54a754e3e3cb6f4186613c42ac33db1 | .travis.yml | .travis.yml | language: android
android:
components:
- tools
- tools
- platform-tools
- build-tools-26.0.0
- android-26
- extra
- extra-android-m2repository
sudo: false
before_cache:
- rm -rf $HOME/.m2/repository/io/michaelrocks/databindingcompat
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.m2
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install:
- ./gradlew assemble publishToMavenLocal -Pbootstrap=true --no-daemon --rerun-tasks
script:
- ./gradlew check --no-daemon
| language: android
android:
components:
- tools
- tools
- platform-tools
- build-tools-26.0.0
- android-26
- extra
- extra-android-m2repository
jdk: oraclejdk8
sudo: false
before_cache:
- rm -rf $HOME/.m2/repository/io/michaelrocks/databindingcompat
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.m2
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
install:
- ./gradlew assemble publishToMavenLocal -Pbootstrap=true --no-daemon --rerun-tasks
script:
- ./gradlew check --no-daemon
| Use JDK 8 for Travis CI builds | Use JDK 8 for Travis CI builds
| YAML | apache-2.0 | MichaelRocks/DataBindingCompat |
1ca18e329902e9ca63240b65add3981de7f9efdd | .travis.yml | .travis.yml | language: node_js
node_js:
- "5.7"
- "4.3"
- "0.12"
- "0.10"
before_install:
- npm install -g npm
before_script:
- npm install -g grunt-cli
after_script:
- grunt coverage
| language: node_js
node_js:
- "6.2"
- "5.11"
- "4.4"
- "0.12"
- "0.10"
before_install:
- npm install -g npm
before_script:
- npm install -g grunt-cli
after_script:
- grunt coverage
| Test with more up-to-date versions of node | Test with more up-to-date versions of node
| YAML | mit | jaubourg/wires |
824b3500509485ed188047b5a5130ba9f9f45aa6 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=FakeSeeder
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.7
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COVERALLS=1 DB=mysql CAKE_VERSION=2.7
- php: 5.4
env:
- PHPCS=1 DB=mysql CAKE_VERSION=2.7
before_script:
- git clone -b master https://github.com/FriendsOfCake/travis.git --depth 1 ../travis
- ../travis/before_script.sh
- cd ../cakephp/app
- echo "require './vendor/autoload.php';spl_autoload_unregister(array('App', 'load'));spl_autoload_register(array('App', 'load'), true, true);" >> Config/core.php
- cat Config/core.php
- cd ..
script:
- ../travis/script.sh
after_success:
- ../travis/after_success.sh
notifications:
email: false
| language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
global:
- PLUGIN_NAME=FakeSeeder
- REQUIRE=""
matrix:
- DB=mysql CAKE_VERSION=2.7
matrix:
fast_finish: true
allow_failures:
- php: 7.0
- php: hhvm
include:
- php: 5.4
env:
- COVERALLS=1 DB=mysql CAKE_VERSION=2.7
#- php: 5.4
#env:
#- PHPCS=1 DB=mysql CAKE_VERSION=2.7
before_script:
- git clone -b master https://github.com/FriendsOfCake/travis.git --depth 1 ../travis
- ../travis/before_script.sh
- cd ../cakephp/app
- echo "require './vendor/autoload.php';spl_autoload_unregister(array('App', 'load'));spl_autoload_register(array('App', 'load'), true, true);" >> Config/core.php
- cat Config/core.php
- cd ..
script:
- ../travis/script.sh
after_success:
- ../travis/after_success.sh
notifications:
email: false
| Disable PHPCS check in Travis for the moment | Disable PHPCS check in Travis for the moment
We don't fully comply with the CakePHP standard anyway
| YAML | mit | ravage84/cakephp-fake-seeder |
02b911d80ac51da37a440ae7e80f4dcd69f45644 | .travis.yml | .travis.yml | language: ruby
cache: bundler
script: bundle exec rspec
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
| language: ruby
cache: bundler
script: bundle exec rspec
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.1
| Use the new Travis CI container infrastructure | Use the new Travis CI container infrastructure | YAML | mit | nbibler/rack-canonical-host,tylerhunt/rack-canonical-host |
0c80ccd864460f886efe8b1fd081df1003a72320 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.10
before_script:
- node test/server.js &
notifications:
email:
- damon.oehlman@nicta.com.au
irc: irc.freenode.org#rtc.io
| language: node_js
node_js:
- 0.10
notifications:
email:
- damon.oehlman@nicta.com.au
irc: irc.freenode.org#rtc.io
| Remove server start prior to tests | Remove server start prior to tests
| YAML | apache-2.0 | rtc-io/rtc-plugin-node |
c4640dbc1f81acbf0081d7dfc84e5249581b07e7 | .travis.yml | .travis.yml | install:
- sudo apt-get update -qq
- sudo apt-get install shunit2 zsh ruby
before_script:
- rvm reset
script: make test
| language: c
install:
- sudo apt-get update -qq
- sudo apt-get install shunit2 zsh ruby
script: make test
| Set language to C to disable RVM. | Set language to C to disable RVM.
| YAML | mit | regularfry/chruby,kbrock/chruby,ngpestelos/chruby,eunomie/chgo,postmodern/chruby,ilikepi/chruby,kbrock/chruby,ilikepi/chruby,regularfry/chruby,eunomie/chgo,postmodern/chruby,ngpestelos/chruby |
34909a1ced2f72adff29c58fe5dbcee52d8eb22e | .travis.yml | .travis.yml | language: python
sudo: false
git:
submodules: false
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
python: 3.6
- os: osx
language: generic
env: PYTHON_VERSION=3
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install python3; fi
install:
- pip$PYTHON_VERSION install --upgrade -e.[test]
script:
- python$PYTHON_VERSION setup.py test
| language: python
sudo: false
git:
submodules: false
matrix:
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.4
- os: linux
python: 3.5
- os: linux
python: 3.6
- os: osx
language: generic
env: PYTHON_VERSION=3
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew upgrade python; fi
install:
- pip$PYTHON_VERSION install --upgrade -e.[test]
script:
- python$PYTHON_VERSION setup.py test
| Fix python 3 installation on Travis for macOS | Fix python 3 installation on Travis for macOS
| YAML | bsd-3-clause | SimonSapin/tinycss2 |
455271daf631b22254feef01fcd1f855944f6f21 | .travis.yml | .travis.yml | sudo: false
language: python
matrix:
include:
- python: "2.7"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.3"
env:
- SETUPTOOLS=setuptools~=39.2 PIP="pip<=18.0"
- python: "3.4"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.5"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.6"
env:
- SETUPTOOLS=setuptools PIP=pip
before_install:
- pip install $SETUPTOOLS $PIP -U
- pip --version
- pip install -r testrequirements.txt
- pip freeze
install:
- pip install -e .
after_success:
- coveralls
# command to run tests
script:
- nosetests -v --with-coverage --cover-package=fs tests
os:
- windows
- linux
- osx
| sudo: false
language: python
matrix:
include:
- python: "2.7"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.3"
env:
- SETUPTOOLS=setuptools~=39.2 PIP="pip<=18.0"
- python: "3.4"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.5"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.6"
env:
- SETUPTOOLS=setuptools PIP=pip
- python: "3.7"
env:
- SETUPTOOLS=setuptools PIP=pip
before_install:
- pip install $SETUPTOOLS $PIP -U
- pip --version
- pip install -r testrequirements.txt
- pip freeze
install:
- pip install -e .
after_success:
- coveralls
# command to run tests
script:
- nosetests -v --with-coverage --cover-package=fs tests
os:
- linux
- osx
| Add Python3.7 and osx to CI | Add Python3.7 and osx to CI
| YAML | mit | PyFilesystem/pyfilesystem2 |
8d83337ee29d947ce76eceaaabd40a4696b5c235 | .travis.yml | .travis.yml | language: objective-c
before_install:
- gem i cocoapods --no-ri --no-rdoc
- brew uninstall xctool; brew install xctool --HEAD;
xcode_workspace: VENTokenField.xcworkspace
xcode_scheme: VENTokenField
xcode_sdk: iphonesimulator
after_success: slather
| language: objective-c
osx_image: xcode7
before_install:
- gem i cocoapods --no-ri --no-rdoc
- brew uninstall xctool; brew install xctool --HEAD;
xcode_workspace: VENTokenField.xcworkspace
xcode_scheme: VENTokenField
xcode_sdk: iphonesimulator
after_success: slather
| Use Xcode 7 OS X image on Travis CI | Use Xcode 7 OS X image on Travis CI
| YAML | mit | venmo/VENTokenField |
f5d58367b908562b01030a824a7057adc91fc6b7 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=Django==1.4.2
- DJANGO=Django==1.5.0
- DJANGO=https://github.com/django/django/tarball/master
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a --branch --include="email_log/*" --omit="email_log/tests/*" setup.py test
matrix:
include:
- python: 3.2
env: DJANGO=Django==1.5.1
- python: 3.2
env: DJANGO=https://github.com/django/django/tarball/master
- python: 3.3
env: DJANGO=Django==1.5.1
- python: 3.3
env: DJANGO=https://github.com/django/django/tarball/master
after_success: coveralls
| language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO=Django==1.4.2
- DJANGO=Django==1.5.0
install:
- pip install --use-mirrors $DJANGO
- pip install --use-mirrors coverage coveralls
script: coverage run -a --branch --include="email_log/*" --omit="email_log/tests/*" setup.py test
matrix:
include:
- python: 3.2
env: DJANGO=Django==1.5.0
- python: 3.3
env: DJANGO=Django==1.5.0
after_success: coveralls
| Remove Django trunk from Travis | Remove Django trunk from Travis
| YAML | mit | treyhunner/django-email-log,treyhunner/django-email-log |
4ae126b8b201b6b265c5603cfaa95250c2f07acb | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- pip install nose
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors argparse; fi
script: nosetests
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
before_install:
- pip install nose
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install --use-mirrors argparse; fi
script: nosetests
| Add Python 3.4 & 3.5 to Travis builds | Add Python 3.4 & 3.5 to Travis builds
| YAML | bsd-2-clause | cykl/hprof2flamegraph,cykl/hprof2flamegraph |
881cc0d2536d06bd17e2fa2bd3247abb637c96de | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs-v1.0.4"
- "iojs-v2.1.0"
| language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs-v1.0.4"
- "iojs"
| Use iojs latest target for CI | Use iojs latest target for CI
| YAML | isc | anko/tap-merge |
cbe8bed0698b2a539c115d0cf79523884bb2f3a4 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
- "3.5"
addons:
apt:
packages:
- libproj-dev # otherwise gdal raises an error
before_install:
- "wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh"
- "chmod +x miniconda.sh"
- "./miniconda.sh -b"
- "export PATH=/home/travis/miniconda2/bin:$PATH"
- "conda update --yes conda"
- "conda info -a"
install:
- "conda create --yes -n test-env python=$TRAVIS_PYTHON_VERSION pip>=8.1 numpy>=1.10 cython>=0.25 pyproj>=1.9 gdal>=2.1 libgdal>=2.1 coverage>=4.2 shapely>=1.5"
- "source activate test-env"
- "pip install -r requirements.txt"
- "pip install coveralls"
- "pip install . --no-deps"
- "rm -rf karta/" # clean-up to workaround coverage.py scanning karta/ dir
# while karta module is installed by pip elsewhere
script:
coverage run --source=karta tests/runtests.py && coverage report
after_success:
coveralls
sudo: # container-based testing
false
| language: python
matrix:
include:
- python: "2.7"
env: CHANNEL=defaults
- python: "3.4"
env: CHANNEL=defaults
- python: "3.5"
env: CHANNEL=defaults
- python: "3.6"
env: CHANNEL=conda-forge
before_install:
- "wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh"
- "chmod +x miniconda.sh"
- "./miniconda.sh -b"
- "export PATH=/home/travis/miniconda2/bin:$PATH"
- "conda update --yes conda"
- "conda info --all"
install:
- "conda create --yes --name test-env --channel $CHANNEL python=$TRAVIS_PYTHON_VERSION numpy cython gdal pyproj shapely coverage"
- "source activate test-env"
- "pip install -r requirements.txt"
- "pip install coveralls"
- "pip install . --no-deps"
- "rm -rf karta/" # clean-up to workaround coverage.py scanning karta/ dir
# while karta module is installed by pip elsewhere
script: coverage run --source=karta tests/runtests.py && coverage report
after_success: coveralls
sudo: false # container-based testing
| Add Python 3.6 testing to Travis | Add Python 3.6 testing to Travis
In order to add Python 3.6 with all of the dependencies from conda, it
is necessary to use the conda-forge channel (shapely doesn't seem to be
in defaults, despite what the Aanconda documentation claims).
Unfortunately, conda-forge doesn't have the packages for Python 3.4, and
conda isn't correctly figuring out to build from defaults for Python
3.4.
The build script now uses the defaults channel for Python 2.7, 3.4, and
3.5, and the conda-forge channel for Python 3.6.
| YAML | mit | fortyninemaps/karta,fortyninemaps/karta,fortyninemaps/karta |
2a9a785e0ebd496ee1fa0d5c8651a13de94eac44 | .travis.yml | .travis.yml | # Enables support for a docker container-based build
# which should provide faster startup times and beefier
# "machines". This is also required in order to use the
# cache configured below.
sudo: false
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk7
- oraclejdk8
before_cache:
# The `ivydata-*.properties` & root level `*.{properties,xml}` files'
# effect on resolution time is in the noise, but they are
# re-timestamped in internal comments and fields on each run and this
# leads to travis-ci cache thrash. Kill these files before the cache
# check to avoid un-needed cache re-packing and re-upload (a ~100s
# operation).
- find $HOME/.ivy2/pants -type f -name "ivydata-*.properties" -print -delete
- rm -fv $HOME/.ivy2/pants/*.{css,properties,xml,xsl}
# The stats cache contains timestamped reports unused by CI but that
# thrash the cache. Skip caching these.
- rm -rfv $HOME/.cache/pants/stats
cache:
directories:
- $HOME/.cache/pants
- $HOME/.ivy2/pants
script: |
yes | ./pants test publish.jar --local=/tmp/m2 --no-dryrun ::
| # Enables support for a docker container-based build
# which should provide faster startup times and beefier
# "machines". This is also required in order to use the
# cache configured below.
sudo: false
language: java
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
before_cache:
# The `ivydata-*.properties` & root level `*.{properties,xml}` files'
# effect on resolution time is in the noise, but they are
# re-timestamped in internal comments and fields on each run and this
# leads to travis-ci cache thrash. Kill these files before the cache
# check to avoid un-needed cache re-packing and re-upload (a ~100s
# operation).
- find $HOME/.ivy2/pants -type f -name "ivydata-*.properties" -print -delete
- rm -fv $HOME/.ivy2/pants/*.{css,properties,xml,xsl}
# The stats cache contains timestamped reports unused by CI but that
# thrash the cache. Skip caching these.
- rm -rfv $HOME/.cache/pants/stats
cache:
directories:
- $HOME/.cache/pants
- $HOME/.ivy2/pants
script: |
yes | ./pants test publish.jar --local=/tmp/m2 --no-dryrun ::
| Kill java 6 support - not supported by javapoet. | Kill java 6 support - not supported by javapoet.
| YAML | apache-2.0 | perkuno/forward,perkuno/forward,perkuno/forward |
9dba4af37edd8624bf658a444199831311129225 | .buildkite/pipeline.yml | .buildkite/pipeline.yml | common-params:
&docker-container
docker#v3.8.0:
image: "public.ecr.aws/automattic/android-build-image:v1.1.0"
propagate-environment: true
environment:
# DO NOT MANUALLY SET THESE VALUES!
# They are passed from the Buildkite agent to the Docker container
- "AWS_ACCESS_KEY"
- "AWS_SECRET_KEY"
steps:
- label: "Lint & Checkstyle"
key: "lint_and_checkstyle"
plugins:
- *docker-container
command: |
./gradlew lintRelease checkstyle
artifact_paths:
- "**/build/reports/lint-results**.*"
- "**/build/reports/checkstyle/checkstyle.*"
- label: "Test"
key: "test"
plugins:
- *docker-container
command: |
./gradlew test
- label: "Publish to S3 Maven"
depends_on:
- "lint_and_checkstyle"
- "test"
plugins:
- *docker-container
command: |
./gradlew \
prepareToPublishToS3 $(prepare_to_publish_to_s3_params) \
publish
| common-params:
&docker-container
docker#v3.8.0:
image: "public.ecr.aws/automattic/android-build-image:v1.1.0"
propagate-environment: true
environment:
# DO NOT MANUALLY SET THESE VALUES!
# They are passed from the Buildkite agent to the Docker container
- "AWS_ACCESS_KEY"
- "AWS_SECRET_KEY"
steps:
- label: "Lint & Checkstyle"
key: "lint_and_checkstyle"
plugins:
- *docker-container
command: |
./gradlew lintRelease checkstyle
artifact_paths:
- "**/build/reports/lint-results**.*"
- "**/build/reports/checkstyle/checkstyle.*"
- label: "Test"
key: "test"
plugins:
- *docker-container
command: |
./gradlew test
- label: "Publish to S3 Maven"
depends_on:
- "lint_and_checkstyle"
- "test"
plugins:
- *docker-container
command: |
./gradlew \
:backboard:prepareToPublishToS3 $(prepare_to_publish_to_s3_params) \
:backboard:publish
| Update Buildkite publish task path | Update Buildkite publish task path
| YAML | apache-2.0 | tumblr/Backboard |
969f6fc3eccbac5db6da3fb9706865716a49d457 | .github/workflows/codeql-analysis.yml | .github/workflows/codeql-analysis.yml | name: "CodeQL"
on:
workflow_dispatch:
push:
branches: [ develop ]
paths:
- 'CMSIS/Core/**'
- 'CMSIS/Core_A/**'
- 'CMSIS/CoreValidation/**'
- 'Device/ARM/**'
pull_request:
branches: [ develop ]
paths:
- '.github/workflows/codeql-analysis.yml'
- 'CMSIS/Core/**'
- 'CMSIS/Core_A/**'
- 'CMSIS/CoreValidation/**'
- 'Device/ARM/**'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
container:
image: ghcr.io/jonatanantoni/cmsis/linux.gnu:latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'cpp' ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- run: |
ln -s /root/.rtebuild /github/home/.rtebuild
cd CMSIS/CoreValidation/Tests
python3 build.py -c GCC -o low build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
| name: "CodeQL"
on:
workflow_dispatch:
push:
branches: [ develop ]
paths:
- 'CMSIS/Core/**'
- 'CMSIS/Core_A/**'
- 'CMSIS/CoreValidation/**'
- 'Device/ARM/**'
pull_request:
branches: [ develop ]
paths:
- '.github/workflows/codeql-analysis.yml'
- 'CMSIS/Core/**'
- 'CMSIS/Core_A/**'
- 'CMSIS/CoreValidation/**'
- 'Device/ARM/**'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
container:
image: ghcr.io/jonatanantoni/cmsis/linux.gnu:latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v2
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: cpp
queries: security-and-quality
- run: |
ln -s /root/.rtebuild /github/home/.rtebuild
cd CMSIS/CoreValidation/Tests
python3 build.py -c GCC -o low build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
| Update CodeQL workflow to use version 2 actions. | GitHub: Update CodeQL workflow to use version 2 actions.
| YAML | apache-2.0 | ARM-software/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5,ARM-software/CMSIS_5 |
799c4624b926ee34e547754da889557633f7ee57 | .github/workflows/publish-release.yml | .github/workflows/publish-release.yml | on:
push:
tags:
- "v*" # Push events to matching `v*` version srings. e.g. v1.0, v20.15.10
name: Create and Publish Release
jobs:
build:
name: Create and Publish Release
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install release dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade setuptools wheel twine
- name: Create GitHub release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: |
Please see the root of the repository for the CHANGELOG.md
draft: false
prerelease: false
- name: Build and publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
| on:
push:
tags:
- "v*" # Push events to matching `v*` version srings. e.g. v1.0, v20.15.10
name: Create and Publish Release
jobs:
build:
name: Create and Publish Release
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install release dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade setuptools wheel twine
- name: Get release notes
id: release_notes
run: |
CHANGELOG=$(git tag -l --format='%(contents)' ${{ github.ref }})
CHANGELOG="${CHANGELOG//'%'/'%25'}"
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"
echo "::set-output name=changelog::$CHANGELOG"
- name: Create GitHub release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: ${{ steps.release_notes.outputs.changelog }}
draft: false
prerelease: false
- name: Build and publish to PyPI
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
| Use the annotated tag message for release body | Use the annotated tag message for release body
| YAML | apache-2.0 | googlefonts/gftools,googlefonts/gftools |
b4c3ad722a3efefebd580e77f61fdbcc35c5f857 | .travis.yml | .travis.yml | sudo: required
language: python
services:
- docker
before_install:
- docker build -t forresta/docka-docka-docka-test docka-project/
- docker run -d -p 127.0.0.0:80:5000 forresta/docka-docka-docka-test
- docker ps -a
- docker run forresta/docka-docka-docka-test /bin/sh -c "echo 'tests call here'"
script:
- echo "Test code here again"
after_success:
- if [ "$TRAVIS_BRANCH" == "test" ]; then
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push forresta/docka-docka-docka-test;
fi
| sudo: required
language: python
services:
- docker
before_install:
- docker build -t forresta/docka-docka-docka-test docka-project/
- docker run -d -p 127.0.0.0:80:5000 forresta/docka-docka-docka-test
- docker ps -a
- docker run forresta/docka-docka-docka-test /bin/sh -c "echo 'tests call here'"
script:
- echo "Test code here again"
after_success:
- echo "Test code here again"
- if [ "$TRAVIS_BRANCH" == "test" ]; then
docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD";
docker push forresta/docka-docka-docka-test;
fi
| Add an echo back for tests. | Add an echo back for tests.
| YAML | mit | gravyboat/docka-docka-docka |
84d71de8c1d4c80dd9656f26b6cb491e8460be2b | .travis.yml | .travis.yml | language: go
go_import_path: go.universe.tf/netboot
go:
- 1.5
- 1.6
- 1.7
- tip
os:
- linux
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y atftp
install:
- go get github.com/Masterminds/glide
- go get github.com/golang/lint/golint
before_script:
script:
- glide install
- GO15VENDOREXPERIMENT=1 go build $(glide novendor)
- GO15VENDOREXPERIMENT=1 go test $(glide novendor)
- go vet $(glide novendor)
- glide novendor | xargs -n1 golint
| language: go
go_import_path: go.universe.tf/netboot
go:
- 1.6
- 1.7
- tip
os:
- linux
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y atftp
install:
- go get github.com/Masterminds/glide
- go get github.com/golang/lint/golint
before_script:
script:
- glide install
- GO15VENDOREXPERIMENT=1 go build $(glide novendor)
- GO15VENDOREXPERIMENT=1 go test $(glide novendor)
- go vet $(glide novendor)
- glide novendor | xargs -n1 golint
| Remove Go 1.5 from the Travis continuous build. | Remove Go 1.5 from the Travis continuous build.
Policy is to support the latest 2 releases of Go, and some dependent
code just broke on 1.5.
| YAML | apache-2.0 | 4km3/netboot |
b916377721931c621f56a63228d006a6ff0debcd | .travis.yml | .travis.yml | language: rust
sudo: 9000
dist: trusty
rust:
- nightly
script:
- cargo build --verbose
- cargo test --verbose
branches:
except:
- master
notifications:
webhooks: http://build.servo.org:54856/travis
| language: rust
sudo: 9000
dist: trusty
rust:
- nightly
branches:
except:
- master
notifications:
webhooks: http://build.servo.org:54856/travis
| Remove redundant default build/test instructions on Travis CI. | Remove redundant default build/test instructions on Travis CI. | YAML | mpl-2.0 | nnethercote/rust-mozjs,tschneidereit/rust-mozjs,jdm/rust-mozjs,nnethercote/rust-mozjs,servo/rust-mozjs,servo/rust-mozjs,tschneidereit/rust-mozjs,nnethercote/rust-mozjs,jdm/rust-mozjs,nnethercote/rust-mozjs,tschneidereit/rust-mozjs,tschneidereit/rust-mozjs,servo/rust-mozjs,jdm/rust-mozjs,tschneidereit/rust-mozjs,jdm/rust-mozjs,servo/rust-mozjs,nnethercote/rust-mozjs,jdm/rust-mozjs |
4b0f744cbcadb2e14708c472199db475c853bcaf | .travis.yml | .travis.yml | language: scala
scala:
- 2.12.1
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.ivy2
- $HOME/.sbt/launchers
script:
- ./sbt test
# Trick to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
| language: scala
scala:
- 2.12.1
dist: trusty
jdk:
- openjdk8
cache:
directories:
- $HOME/.ivy2
- $HOME/.sbt/launchers
script:
- ./sbt test
# Trick to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
| Test on trusty (Ubuntu 14.04) with openjdk8 | Travis: Test on trusty (Ubuntu 14.04) with openjdk8
| YAML | apache-2.0 | dbast/spark-scala-template |
ec99876c0c516059305b7d62a321fbb3f1f9e9e7 | .travis.yml | .travis.yml | language: go
go:
- 1.6
- 1.7
- tip
env:
- TURBO_VER=""
- TURBO_VER="1.5.1" CGO_LDFLAGS="-L/tmp/libjpeg-turbo/lib64" CGO_CPPFLAGS="-I/tmp/libjpeg-turbo/include" LD_LIBRARY_PATH="/tmp/libjpeg-turbo/lib64"
before_install:
- ./travis-install-libjpeg-turbo.sh "$TURBO_VER"
- cd $HOME/gopath/src/github.com/pixiv/go-libjpeg
script:
- go test -a -test.v ./...
- cd jpeg && go test -a -bench . -benchtime 10s
| language: go
go:
- 1.6
- 1.7
- 1.8
- 1.9
- "1.10"
- tip
env:
- TURBO_VER=""
- TURBO_VER="1.5.1" CGO_LDFLAGS="-L/tmp/libjpeg-turbo/lib64" CGO_CPPFLAGS="-I/tmp/libjpeg-turbo/include" LD_LIBRARY_PATH="/tmp/libjpeg-turbo/lib64"
before_install:
- ./travis-install-libjpeg-turbo.sh "$TURBO_VER"
- cd $HOME/gopath/src/github.com/pixiv/go-libjpeg
script:
- go test -a -test.v ./...
- cd jpeg && go test -a -bench . -benchtime 10s
| Test recent versions of Go | Test recent versions of Go
| YAML | bsd-3-clause | pixiv/go-libjpeg,pixiv/go-libjpeg,pixiv/go-libjpeg |
b0b2322eda911ac5f949a2bcf037c3d9830d101a | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.0
- 2.0.0
- rbx-2
script: bundle exec rake spec
install: bundle install --jobs=1
cache: bundler
branches:
except:
- legacy-v2
sudo: false
| language: ruby
rvm:
- 2.3.0
- 2.2
- 2.1
- 2.0
- rbx-2
script: bundle exec rake spec
install: bundle install --jobs=1
cache: bundler
branches:
except:
- legacy-v2
sudo: false
| Add more Ruby versions to Travis, including 2.3.0 | Add more Ruby versions to Travis, including 2.3.0
| YAML | mit | jdelStrother/capistrano,maliqq/capistrano,maliqq/capistrano,kirs/capistrano,kylerippey/capistrano,kylerippey/capistrano,harrykiselev/capistrano,harrykiselev/capistrano,capistrano/capistrano,kirs/capistrano,ngpestelos/capistrano,ngpestelos/capistrano,jdelStrother/capistrano,capistrano/capistrano |
0dd8d821b063885f650008cfb89b0f497e8cc69a | .travis.yml | .travis.yml | dist: xenial
sudo: required
language: python
python:
- 3.5
- 3.6
- 3.7
- nightly
install:
- pip install -r requirements.txt
- pip install codecov
- wget https://github.com/kr/beanstalkd/archive/v1.10.tar.gz
- tar -xzvf v1.10.tar.gz
- pushd beanstalkd-1.10 && make && sudo make install && popd
script: make test
after_success: codecov
| dist: xenial
sudo: required
language: python
python:
- 3.5
- 3.6
- 3.7
- nightly
env:
global:
- BEANSTALKD_VERSION=1.11
install:
- pip install -r requirements.txt
- pip install codecov
- wget https://github.com/beanstalkd/beanstalkd/archive/v${BEANSTALKD_VERSION}.tar.gz
- tar -xzvf v${BEANSTALKD_VERSION}.tar.gz
- pushd beanstalkd-${BEANSTALKD_VERSION} && make && sudo make install && popd
script: make test
after_success: codecov
| Use beanstalkd 1.11 on CI | Use beanstalkd 1.11 on CI
| YAML | mit | mayhewj/greenstalk |
360d5d01d86ec15fdfd8e3da62b2c39e731fa0d3 | .travis.yml | .travis.yml | language: c
os:
- linux
- osx
install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.install.deps.sh; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./travis.osx.install.deps.sh; fi
before_script:
- mkdir -p build
script:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.script.sh; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./travis.osx.script.sh; fi
git:
submodules: true
notifications:
irc:
channels: "irc.mozilla.org#servo"
on_success: change
on_failure: change
use_notice: true
branches:
only:
- master
| language: c
os:
- linux
- osx
install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.install.deps.sh; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./travis.osx.install.deps.sh; fi
before_script:
- mkdir -p build
script:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.script.sh; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./travis.osx.script.sh; fi
git:
submodules: true
notifications:
irc:
channels: "irc.mozilla.org#servo"
on_success: change
on_failure: change
use_notice: true
email: false
branches:
only:
- master
| Revert "Enable email notifications from Travis CI" | Revert "Enable email notifications from Travis CI"
This reverts commit ffb502abcd1d871e41ea0713e6ccdbcd5848d938.
| YAML | mpl-2.0 | Adenilson/prototype-viewing-distance,mdibaiee/servo,wartman4404/servo,akosel/servo,paulrouget/servo,meh/servo,Shraddha512/servo,rnestler/servo,nnethercote/servo,vks/servo,GyrosOfWar/servo,indykish/servo,dagnir/servo,upsuper/servo,runarberg/servo,zentner-kyle/servo,KiChjang/servo,karlito40/servo,jlegendary/servo,saneyuki/servo,steveklabnik/servo,eddyb/servo,huonw/servo,KiChjang/servo,dsandeephegde/servo,A-deLuna/servo,RenaudParis/servo,dmarcos/servo,dati91/servo,dagnir/servo,caldwell/servo,notriddle/servo,wpgallih/servo,saneyuki/servo,jdramani/servo,nnethercote/servo,DominoTree/servo,chotchki/servo,shrenikgala/servo,wartman4404/servo,fiji-flo/servo,srbhklkrn/SERVOENGINE,jdramani/servo,karlito40/servo,j3parker/servo,pyfisch/servo,SimonSapin/servo,aweinstock314/servo,SimonSapin/servo,aweinstock314/servo,shrenikgala/servo,notriddle/servo,cbrewster/servo,bjwbell/servo,seanmonstar/servo,RenaudParis/servo,fiji-flo/servo,bjwbell/servo,GreenRecycleBin/servo,srbhklkrn/SERVOENGINE,luniv/servo,szeged/servo,upsuper/servo,indykish/servo,GreenRecycleBin/servo,saneyuki/servo,caldwell/servo,walac/servo,pyecs/servo,dsandeephegde/servo,CJ8664/servo,echochamber/servo,mattnenterprise/servo,paulrouget/servo,DominoTree/servo,mattnenterprise/servo,runarberg/servo,A-deLuna/servo,jlegendary/servo,eddyb/servo,jlegendary/servo,dvberkel/servo,jlegendary/servo,vks/servo,ruud-v-a/servo,nrc/servo,pyfisch/servo,rixrix/servo,splav/servo,srbhklkrn/SERVOENGINE,rixrix/servo,A-deLuna/servo,bjwbell/servo,peterjoel/servo,mukilan/servo,pyfisch/servo,jimberlage/servo,tschneidereit/servo,KiChjang/servo,jgraham/servo,dhananjay92/servo,mbrubeck/servo,saratang/servo,pyecs/servo,froydnj/servo,seanmonstar/servo,dsandeephegde/servo,nnethercote/servo,avadacatavra/servo,bfrohs/servo,rentongzhang/servo,DominoTree/servo,anthgur/servo,youprofit/servo,samfoo/servo,michaelwu/servo,pyecs/servo,ruud-v-a/servo,boghison/servo,mukilan/servo,steveklabnik/servo,dagnir/servo,rentongzhang/servo,g-k/servo,huonw/servo,RenaudParis/servo,wartman4404/servo,dagnir/servo,wpgallih/servo,shrenikgala/servo,dmarcos/servo,tempbottle/servo,codemac/servo,Adenilson/prototype-viewing-distance,aweinstock314/servo,sadmansk/servo,eddyb/servo,tafia/servo,saneyuki/servo,peterjoel/servo,zentner-kyle/servo,runarberg/servo,caldwell/servo,dmarcos/servo,brendandahl/servo,wpgallih/servo,splav/servo,walac/servo,j3parker/servo,jlegendary/servo,shrenikgala/servo,srbhklkrn/SERVOENGINE,rentongzhang/servo,zhangjunlei26/servo,meh/servo,meh/servo,paulrouget/servo,thiagopnts/servo,sadmansk/servo,Adenilson/prototype-viewing-distance,SimonSapin/servo,jgraham/servo,WriterOfAlicrow/servo,boghison/servo,splav/servo,evilpie/servo,mukilan/servo,nrc/servo,thiagopnts/servo,zhangjunlei26/servo,canaltinova/servo,s142857/servo,dati91/servo,nnethercote/servo,szeged/servo,paulrouget/servo,mattnenterprise/servo,upsuper/servo,snf/servo,dsandeephegde/servo,rnestler/servo,AnthonyBroadCrawford/servo,rixrix/servo,fiji-flo/servo,DominoTree/servo,rnestler/servo,nerith/servo,mattnenterprise/servo,upsuper/servo,zentner-kyle/servo,akosel/servo,ryancanhelpyou/servo,notriddle/servo,AnthonyBroadCrawford/servo,jimberlage/servo,hyowon/servo,notriddle/servo,notriddle/servo,wpgallih/servo,aweinstock314/servo,zhangjunlei26/servo,SimonSapin/servo,j3parker/servo,notriddle/servo,caldwell/servo,WriterOfAlicrow/servo,froydnj/servo,nrc/servo,samfoo/servo,nick-thompson/servo,dagnir/servo,ConnorGBrewster/servo,kindersung/servo,bfrohs/servo,emilio/servo,g-k/servo,CJ8664/servo,thiagopnts/servo,zhangjunlei26/servo,pyfisch/servo,indykish/servo,mattnenterprise/servo,jimberlage/servo,zentner-kyle/servo,jgraham/servo,nick-thompson/servo,aidanhs/servo,seanmonstar/servo,sadmansk/servo,GreenRecycleBin/servo,eddyb/servo,dati91/servo,Shraddha512/servo,szeged/servo,RenaudParis/servo,KiChjang/servo,indykish/servo,tempbottle/servo,mt2d2/servo,aidanhs/servo,youprofit/servo,steveklabnik/servo,paulrouget/servo,nrc/servo,RenaudParis/servo,runarberg/servo,karlito40/servo,huonw/servo,jimberlage/servo,pgonda/servo,nrc/servo,canaltinova/servo,canaltinova/servo,samfoo/servo,deokjinkim/servo,avadacatavra/servo,wpgallih/servo,nerith/servo,RenaudParis/servo,s142857/servo,vks/servo,nnethercote/servo,upsuper/servo,jimberlage/servo,juzer10/servo,SimonSapin/servo,szeged/servo,dmarcos/servo,DominoTree/servo,akosel/servo,pyecs/servo,saratang/servo,chotchki/servo,jgraham/servo,luniv/servo,bjwbell/servo,jlegendary/servo,walac/servo,cbrewster/servo,tempbottle/servo,DominoTree/servo,canaltinova/servo,WriterOfAlicrow/servo,dhananjay92/servo,AnthonyBroadCrawford/servo,larsbergstrom/servo,kindersung/servo,mattnenterprise/servo,peterjoel/servo,szeged/servo,dhananjay92/servo,pyecs/servo,CJ8664/servo,Adenilson/prototype-viewing-distance,KiChjang/servo,nick-thompson/servo,caldwell/servo,mattnenterprise/servo,nerith/servo,tschneidereit/servo,echochamber/servo,snf/servo,indykish/servo,rentongzhang/servo,dsandeephegde/servo,GreenRecycleBin/servo,hyowon/servo,GyrosOfWar/servo,dati91/servo,sadmansk/servo,kindersung/servo,akosel/servo,KiChjang/servo,anthgur/servo,dmarcos/servo,jimberlage/servo,steveklabnik/servo,aidanhs/servo,dvberkel/servo,huonw/servo,splav/servo,tafia/servo,szeged/servo,kindersung/servo,ruud-v-a/servo,walac/servo,bjwbell/servo,emilio/servo,jdramani/servo,chotchki/servo,juzer10/servo,dati91/servo,s142857/servo,A-deLuna/servo,dsandeephegde/servo,rixrix/servo,larsbergstrom/servo,youprofit/servo,cbrewster/servo,wartman4404/servo,saneyuki/servo,ruud-v-a/servo,aidanhs/servo,GyrosOfWar/servo,CJ8664/servo,peterjoel/servo,upsuper/servo,larsbergstrom/servo,samfoo/servo,ConnorGBrewster/servo,walac/servo,notriddle/servo,peterjoel/servo,g-k/servo,rnestler/servo,tafia/servo,eddyb/servo,thiagopnts/servo,pyfisch/servo,dvberkel/servo,deokjinkim/servo,cbrewster/servo,steveklabnik/servo,thiagopnts/servo,tafia/servo,akosel/servo,froydnj/servo,dvberkel/servo,deokjinkim/servo,jimberlage/servo,evilpie/servo,pyfisch/servo,boghison/servo,zhangjunlei26/servo,boghison/servo,hyowon/servo,echochamber/servo,pgonda/servo,nnethercote/servo,indykish/servo,steveklabnik/servo,mbrubeck/servo,mdibaiee/servo,seanmonstar/servo,luniv/servo,rnestler/servo,jgraham/servo,fiji-flo/servo,mukilan/servo,cbrewster/servo,pyfisch/servo,pyfisch/servo,juzer10/servo,codemac/servo,A-deLuna/servo,youprofit/servo,echochamber/servo,ruud-v-a/servo,emilio/servo,shrenikgala/servo,fiji-flo/servo,nerith/servo,ConnorGBrewster/servo,tschneidereit/servo,szeged/servo,Adenilson/prototype-viewing-distance,youprofit/servo,saneyuki/servo,ConnorGBrewster/servo,splav/servo,zhangjunlei26/servo,avadacatavra/servo,pgonda/servo,wpgallih/servo,snf/servo,juzer10/servo,saratang/servo,A-deLuna/servo,chotchki/servo,dagnir/servo,avadacatavra/servo,dati91/servo,splav/servo,eddyb/servo,upsuper/servo,Shraddha512/servo,caldwell/servo,GreenRecycleBin/servo,evilpie/servo,brendandahl/servo,nrc/servo,rixrix/servo,DominoTree/servo,CJ8664/servo,dhananjay92/servo,GreenRecycleBin/servo,hyowon/servo,samfoo/servo,rentongzhang/servo,Shraddha512/servo,tafia/servo,bjwbell/servo,runarberg/servo,pyfisch/servo,seanmonstar/servo,tempbottle/servo,saratang/servo,huonw/servo,aweinstock314/servo,saratang/servo,mdibaiee/servo,akosel/servo,jdramani/servo,juzer10/servo,michaelwu/servo,eddyb/servo,ryancanhelpyou/servo,emilio/servo,ryancanhelpyou/servo,peterjoel/servo,michaelwu/servo,dvberkel/servo,wpgallih/servo,nick-thompson/servo,deokjinkim/servo,CJ8664/servo,tafia/servo,tempbottle/servo,echochamber/servo,nnethercote/servo,saratang/servo,deokjinkim/servo,wartman4404/servo,peterjoel/servo,avadacatavra/servo,canaltinova/servo,splav/servo,larsbergstrom/servo,ConnorGBrewster/servo,s142857/servo,mbrubeck/servo,rnestler/servo,saratang/servo,anthgur/servo,aidanhs/servo,kindersung/servo,AnthonyBroadCrawford/servo,codemac/servo,indykish/servo,s142857/servo,juzer10/servo,zhangjunlei26/servo,cbrewster/servo,GreenRecycleBin/servo,evilpie/servo,mbrubeck/servo,srbhklkrn/SERVOENGINE,runarberg/servo,ryancanhelpyou/servo,dagnir/servo,walac/servo,walac/servo,brendandahl/servo,vks/servo,deokjinkim/servo,mattnenterprise/servo,emilio/servo,nick-thompson/servo,dsandeephegde/servo,seanmonstar/servo,tschneidereit/servo,mbrubeck/servo,pgonda/servo,Shraddha512/servo,WriterOfAlicrow/servo,paulrouget/servo,vks/servo,mt2d2/servo,wartman4404/servo,snf/servo,g-k/servo,avadacatavra/servo,dmarcos/servo,j3parker/servo,mukilan/servo,Shraddha512/servo,codemac/servo,hyowon/servo,runarberg/servo,SimonSapin/servo,evilpie/servo,youprofit/servo,brendandahl/servo,larsbergstrom/servo,peterjoel/servo,thiagopnts/servo,GyrosOfWar/servo,larsbergstrom/servo,GyrosOfWar/servo,michaelwu/servo,A-deLuna/servo,fiji-flo/servo,mt2d2/servo,dati91/servo,paulrouget/servo,j3parker/servo,wpgallih/servo,rentongzhang/servo,ryancanhelpyou/servo,SimonSapin/servo,emilio/servo,zentner-kyle/servo,pgonda/servo,peterjoel/servo,sadmansk/servo,fiji-flo/servo,codemac/servo,GreenRecycleBin/servo,kindersung/servo,dvberkel/servo,boghison/servo,dati91/servo,larsbergstrom/servo,nnethercote/servo,splav/servo,cbrewster/servo,upsuper/servo,rixrix/servo,j3parker/servo,emilio/servo,SimonSapin/servo,notriddle/servo,froydnj/servo,codemac/servo,DominoTree/servo,saneyuki/servo,aweinstock314/servo,meh/servo,cbrewster/servo,KiChjang/servo,juzer10/servo,sadmansk/servo,luniv/servo,Shraddha512/servo,froydnj/servo,g-k/servo,jlegendary/servo,jgraham/servo,pyecs/servo,evilpie/servo,zentner-kyle/servo,sadmansk/servo,chotchki/servo,pgonda/servo,jgraham/servo,nick-thompson/servo,eddyb/servo,nerith/servo,WriterOfAlicrow/servo,KiChjang/servo,karlito40/servo,mbrubeck/servo,szeged/servo,WriterOfAlicrow/servo,emilio/servo,rnestler/servo,larsbergstrom/servo,anthgur/servo,ConnorGBrewster/servo,vks/servo,GreenRecycleBin/servo,indykish/servo,rentongzhang/servo,WriterOfAlicrow/servo,paulrouget/servo,tschneidereit/servo,brendandahl/servo,evilpie/servo,steveklabnik/servo,mbrubeck/servo,larsbergstrom/servo,nnethercote/servo,tafia/servo,emilio/servo,DominoTree/servo,shrenikgala/servo,tempbottle/servo,CJ8664/servo,mdibaiee/servo,evilpie/servo,chotchki/servo,bfrohs/servo,mdibaiee/servo,pyfisch/servo,kindersung/servo,notriddle/servo,g-k/servo,nerith/servo,boghison/servo,saneyuki/servo,mt2d2/servo,j3parker/servo,bjwbell/servo,ryancanhelpyou/servo,larsbergstrom/servo,paulrouget/servo,zhangjunlei26/servo,nick-thompson/servo,mt2d2/servo,AnthonyBroadCrawford/servo,luniv/servo,mukilan/servo,meh/servo,avadacatavra/servo,samfoo/servo,karlito40/servo,zentner-kyle/servo,g-k/servo,mt2d2/servo,emilio/servo,hyowon/servo,ruud-v-a/servo,vks/servo,huonw/servo,Adenilson/prototype-viewing-distance,dvberkel/servo,KiChjang/servo,dhananjay92/servo,jdramani/servo,echochamber/servo,karlito40/servo,ryancanhelpyou/servo,bfrohs/servo,dhananjay92/servo,aidanhs/servo,huonw/servo,pyecs/servo,tschneidereit/servo,nrc/servo,srbhklkrn/SERVOENGINE,luniv/servo,GyrosOfWar/servo,nerith/servo,zhangjunlei26/servo,hyowon/servo,CJ8664/servo,bfrohs/servo,rixrix/servo,jdramani/servo,wpgallih/servo,AnthonyBroadCrawford/servo,tempbottle/servo,youprofit/servo,thiagopnts/servo,saneyuki/servo,peterjoel/servo,AnthonyBroadCrawford/servo,RenaudParis/servo,mdibaiee/servo,pgonda/servo,tschneidereit/servo,szeged/servo,deokjinkim/servo,indykish/servo,canaltinova/servo,Adenilson/prototype-viewing-distance,aidanhs/servo,snf/servo,jdramani/servo,michaelwu/servo,froydnj/servo,splav/servo,anthgur/servo,evilpie/servo,codemac/servo,anthgur/servo,caldwell/servo,brendandahl/servo,canaltinova/servo,bfrohs/servo,srbhklkrn/SERVOENGINE,notriddle/servo,sadmansk/servo,samfoo/servo,wartman4404/servo,fiji-flo/servo,snf/servo,ConnorGBrewster/servo,ConnorGBrewster/servo,nnethercote/servo,snf/servo,thiagopnts/servo,splav/servo,meh/servo,karlito40/servo,saneyuki/servo,avadacatavra/servo,meh/servo,canaltinova/servo,paulrouget/servo,dmarcos/servo,akosel/servo,echochamber/servo,boghison/servo,jimberlage/servo,anthgur/servo,szeged/servo,michaelwu/servo,s142857/servo,aweinstock314/servo,DominoTree/servo,brendandahl/servo,dhananjay92/servo,mbrubeck/servo,KiChjang/servo,rnestler/servo,GyrosOfWar/servo,s142857/servo,jimberlage/servo,dsandeephegde/servo,mt2d2/servo,anthgur/servo,rixrix/servo,shrenikgala/servo,luniv/servo,mdibaiee/servo,rixrix/servo |
98267994b93908f42f6561fe45788155c74b37ed | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.10"
| Drop old versions of node | Drop old versions of node
| YAML | mit | elliotf/mocha-sinon,elliotf/mocha-sinon,MarshallOfSound/mocha-sinon,MarshallOfSound/mocha-sinon |
bf10e08641d650dcf157c8539386f22002d6534b | .travis.yml | .travis.yml | language: "node_js"
node_js:
- 0.4
- 0.6
| language: "node_js"
node_js:
- 0.4
- 0.6
- 0.8
| Test on node 0.8 using Travis CI. | Test on node 0.8 using Travis CI.
| YAML | mit | jaredhanson/passport-openstreetmap |
435847b518921a0bbce13da32a13ffe8892b1857 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
matrix:
- DJANGO=Django==1.4
- DJANGO=Django==1.5
- DJANGO=Django==1.6
- DJANGO=Django==1.7
install:
- pip install $DJANGO --use-mirrors
- pip install . --use-mirrors
- pip install coverage
branches:
only:
- master
- develop
script: coverage run --source=environ setup.py test
matrix:
exclude:
- python: "2.6"
env: DJANGO=Django==1.7
- python: "2.6"
env: DJANGO=Django==1.8
- python: "3.3"
env: DJANGO=Django==1.4
- python: "3.4"
env: DJANGO=Django==1.4
- python: "3.4"
env: DJANGO=Django==1.5
after_success:
- coverage report
- pip install --quiet python-coveralls
- coveralls
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
env:
matrix:
- DJANGO=Django==1.4
- DJANGO=Django==1.5
- DJANGO=Django==1.6
- DJANGO=Django==1.7
install:
- pip install $DJANGO --use-mirrors
- pip install . --use-mirrors
- pip install coverage
branches:
only:
- master
- develop
script: coverage run --source=environ setup.py test
matrix:
exclude:
- python: "2.6"
env: DJANGO=Django==1.7
- python: "2.6"
env: DJANGO=Django==1.8
- python: "3.3"
env: DJANGO=Django==1.4
- python: "3.3"
env: DJANGO=Django==1.5
- python: "3.4"
env: DJANGO=Django==1.4
- python: "3.4"
env: DJANGO=Django==1.5
after_success:
- coverage report
- pip install --quiet python-coveralls
- coveralls
| Exclude Python 3.3 from testing Django 1.5 | Exclude Python 3.3 from testing Django 1.5
| YAML | mit | joke2k/django-environ,rentapplication/django-environ,themotleyfool/django-environ,adamkal/django-environ,ei-grad/django-environ |
597a3ed53572803c4315e58bcc4bd447eec155d2 | .travis.yml | .travis.yml | language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
env:
- SET="-m logic"
- SET="-m live"
- SET="-m destructive"
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
before_script:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
script:
- coverage run setup.py test --addopts "--profile-svg $SET"
after_success:
- coveralls
before_deploy:
- echo "[gist]\ntoken: $GIST" > $HOME/.gist
deploy:
provider: script
script: gist create "Travis $TRAVIS_REPO_SLUG $TRAVIS_JOB_NUMBER $SET" prof/combined.svg
on:
all-branches: true
| language: python
python:
- "3.4"
- "3.5"
- "3.6"
cache: pip
env:
- SET="-m logic"
- SET="-m live"
- SET="-m destructive"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphviz
install:
- pip install --quiet -r requirements.txt -r test_requirements.txt
before_script:
- mkdir -p $HOME/$DEST
- curl -u $KEY $HOST/$FILE > $HOME/$DEST/$FILE
script:
- coverage run setup.py test --addopts "--profile-svg $SET"
after_success:
- coveralls
before_deploy:
- echo "[gist]\ntoken: $GIST" > $HOME/.gist
deploy:
provider: script
script: gist create "Travis $TRAVIS_REPO_SLUG $TRAVIS_JOB_NUMBER $SET" prof/combined.svg
on:
all-branches: true
| Install graphviz for svg generation | Install graphviz for svg generation
| YAML | mit | Artanicus/python-cozify,Artanicus/python-cozify |
0fb3fbda08a785781fe05130c31eb39dbe0ddcc5 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'node'
before_install: yarn global add grunt-cli
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable
on:
branch: master
before_deploy:
- ls -la
env:
global:
- ENCRYPTION_LABEL: '36eb7b9455f3'
- COMMIT_AUTHOR_EMAIL: travis-ci@w3.org
| language: node_js
node_js:
- 'node'
before_install: yarn global add grunt-cli
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in the settings page of your repository, as a secure variable
on:
branch: master
before_deploy:
- sed -i '/out\//d' .gitignore
- sed -i '/out-wpt\//d' .gitignore
env:
global:
- ENCRYPTION_LABEL: '36eb7b9455f3'
- COMMIT_AUTHOR_EMAIL: travis-ci@w3.org
| Remove out and out-wpt from .gitignore when deploying | Remove out and out-wpt from .gitignore when deploying
| YAML | bsd-3-clause | gpuweb/cts,gpuweb/cts,gpuweb/cts |
78219ba015f3a57696f8e6ee0da162525cccbff1 | .travis.yml | .travis.yml | # Enable C++ support
language: cpp
# # Compiler selection
compiler:
- clang
- gcc
# Build steps
script:
- mkdir build
- cd build
- cmake .. && make
| # Enable C++ support
language: cpp
# # Compiler selection
compiler:
- clang
- gcc
# Build steps
script:
- mkdir build
- cd build
- cmake .. && make
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y libjansson-dev
| Add jansson into deps for Travis-CI. | Add jansson into deps for Travis-CI.
| YAML | mit | madf/jwtxx,madf/jwtxx,RealImage/jwtxx,RealImage/jwtxx |
89cd018baeeb12ca71da6f492332a20f40d0d771 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5.1'
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
- make zic && make
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
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
- make zic && make
| Build with latest Node.js 5 on Travis CI. | Build with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/timezone,bigeasy/timezone,bigeasy/timezone |
ae83a01164b885640b21b9f0524fba31b7608e2d | .travis.yml | .travis.yml | ---
language: ruby
cache: bundler
bundler_args: --without development
script:
- "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
rvm:
- 1.9.3
- 2.0.0
env:
- PUPPET_GEM_VERSION="~> 3.5.1"
- PUPPET_GEM_VERSION="~> 3.8.6"
- PUPPET_GEM_VERSION="~> 4.4.0"
notifications:
email: false
| ---
language: ruby
cache: bundler
bundler_args: --without development
script:
- "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
rvm:
- 1.9.3
- 2.0.0
- 2.3.0
env:
- PUPPET_GEM_VERSION="~> 3.5.1"
- PUPPET_GEM_VERSION="~> 3.8.6"
- PUPPET_GEM_VERSION="~> 4.4.0"
notifications:
email: false
| Test against ruby 2.3.0 (prep for Ubuntu 16.04) | Test against ruby 2.3.0 (prep for Ubuntu 16.04)
| YAML | apache-2.0 | digitalmediacenter/puppet-filebeat,pcfens/puppet-filebeat,MiamiOH/puppet-filebeat,digitalmediacenter/puppet-filebeat,MiamiOH/puppet-filebeat,pcfens/puppet-filebeat |
9bb0702b4eb68f72f5301e710dd0ec171a2526f0 | .travis.yml | .travis.yml | language: bash
sudo: false
os:
- osx
- linux
env:
global:
- GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp"
- UNAME="$(uname | tr '[:upper:]' '[:lower:]')"
- GO_VERSIONS="$(< .known-binary-versions-$UNAME) $(< .known-source-versions-$UNAME)"
- GO_ARM_VERSIONS="$(< .known-source-versions-$UNAME)"
before_script: mkdir -p "${GIMME_TMP}"
script:
- for v in $GO_VERSIONS ; do
echo "---> ./gimme $v" ;
./gimme $v ;
done ;
- if [[ $UNAME = linux ]] ; then
for v in $GO_ARM_VERSIONS ; do
echo "---> GIMME_ARCH=arm ./gimme $v" ;
GIMME_ARCH=arm ./gimme $v ;
done ;
fi ;
| language: bash
sudo: false
os:
- linux
# - osx
env:
global:
- GIMME_TMP="${TRAVIS_BUILD_DIR}/tmp"
- UNAME="$(uname | tr '[:upper:]' '[:lower:]')"
- GO_VERSIONS="$(< .known-binary-versions-$UNAME) $(< .known-source-versions-$UNAME)"
- GO_ARM_VERSIONS="$(< .known-source-versions-$UNAME)"
before_script: mkdir -p "${GIMME_TMP}"
script:
- for v in $GO_VERSIONS ; do
echo "---> eval \"\$(./gimme $v)\"" ;
eval "$(./gimme $v)" ;
done ;
- if [[ $UNAME = linux ]] ; then
for v in $GO_ARM_VERSIONS ; do
echo "---> eval \"\$(GIMME_ARCH=arm ./gimme $v)\"" ;
eval "$(GIMME_ARCH=arm ./gimme $v)" ;
done ;
fi ;
| Trim down Travis output a bit, only test on Linux for now | Trim down Travis output a bit, only test on Linux for now
as the OSX queue is taking tooo loooong
| YAML | mit | travis-ci/gimme,glevand/travis-ci--gimme,meatballhat/gimme,dlsniper/gimme,zenazn/gimme,travis-ci/gimme,kofalt/gimme,solarce/gimme,glevand/travis-ci--gimme |
6131cd6a8514381943980bbd48c2105fe06d6c4e | .travis.yml | .travis.yml | language: python
env:
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=pypy
install:
- "wget -q -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -"
- "sudo wget -q -O /etc/apt/sources.list.d/mopidy.list http://apt.mopidy.com/mopidy.list"
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-all-dev libffi-dev libspotify-dev"
- "pip install cffi tox"
script:
- "tox -e $TOX_ENV"
# TODO Activate when pyspotify2 is released
#notifications:
# irc:
# channels:
# - "irc.freenode.org#mopidy"
# on_success: change
# on_failure: change
# use_notice: true
# skip_join: true
| language: python
env:
- TOX_ENV=py27
- TOX_ENV=py33
# TODO Activate when Travis has PyPy 2.x
#- TOX_ENV=pypy
install:
- "wget -q -O - http://apt.mopidy.com/mopidy.gpg | sudo apt-key add -"
- "sudo wget -q -O /etc/apt/sources.list.d/mopidy.list http://apt.mopidy.com/mopidy.list"
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-all-dev libffi-dev libspotify-dev"
- "pip install cffi tox"
script:
- "tox -e $TOX_ENV"
# TODO Activate when pyspotify2 is released
#notifications:
# irc:
# channels:
# - "irc.freenode.org#mopidy"
# on_success: change
# on_failure: change
# use_notice: true
# skip_join: true
| Revert "Enable PyPy builds on Travis" | Revert "Enable PyPy builds on Travis"
This reverts commit 15eb1e3ae04dada1267dc1e30a6566a2c78328ed.
| YAML | apache-2.0 | felix1m/pyspotify,mopidy/pyspotify,mopidy/pyspotify,kotamat/pyspotify,jodal/pyspotify,kotamat/pyspotify,kotamat/pyspotify,jodal/pyspotify,felix1m/pyspotify,jodal/pyspotify,felix1m/pyspotify |
2759b25ef37d988e34ce2d30ae04a70c0dd300f8 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
- 'node'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| language: node_js
sudo: false
node_js:
- '0.10'
- '0.12'
- '4'
before_install:
# Log HTTP requests
- npm config set loglevel http
install:
- time npm install
| Test on Node 4, not latest Node | Travis: Test on Node 4, not latest Node
We'll add latest Node.js when Node.js 5 comes out. We'll still want to support
Node.js 4 as it will be an LTS.
| YAML | mit | EE/jscs-trailing-comma |
f9df22e700317ee039841499cbff7fb35cf8386e | .travis.yml | .travis.yml | language: generic
dist: trusty
addons:
apt:
packages:
- openjdk-7-jdk
- python3.4-dev
- python3.4-venv
env:
- PLAY_VERSION=2.2.1
before_script:
- wget http://downloads.typesafe.com/play/${PLAY_VERSION}/play-${PLAY_VERSION}.zip
- unzip -q play-${PLAY_VERSION}.zip
- python3 -m venv --system-site-packages ./venv
- . ./venv/bin/activate
- python3 -m pip install --upgrade pip setuptools
- pip install WeasyPrint
script:
- yes "q" | play-${PLAY_VERSION}/play jacoco:cover coveralls
- curl -v --form json_file=@target/coveralls.json https://coveralls.io/api/v1/jobs || true
notifications:
email:
recipients:
- t.dettrick@uq.edu.au
- a.gebers@uq.edu.au
on_success: change
on_failure: always
| language: generic
dist: trusty
addons:
apt:
packages:
- openjdk-7-jdk
- python3.4-dev
- python3.4-venv
env:
- ACTIVATOR_VERSION=1.3.12
before_script:
- wget https://downloads.typesafe.com/typesafe-activator/${ACTIVATOR_VERSION}/typesafe-activator-${ACTIVATOR_VERSION}-minimal.zip
- unzip -q typesafe-activator-${ACTIVATOR_VERSION}-minimal.zip
- python3 -m venv --system-site-packages ./venv
- . ./venv/bin/activate
- python3 -m pip install --upgrade pip setuptools
- pip install WeasyPrint
script:
- yes "q" | activator-${ACTIVATOR_VERSION}-minimal/bin/activator jacoco:cover coveralls
- curl -v --form json_file=@target/coveralls.json https://coveralls.io/api/v1/jobs || true
notifications:
email:
recipients:
- t.dettrick@uq.edu.au
- a.gebers@uq.edu.au
on_success: change
on_failure: always
| Use activator for Travis CI build | Use activator for Travis CI build
| YAML | mit | uq-eresearch/aorra,uq-eresearch/aorra,uq-eresearch/aorra,uq-eresearch/aorra |
360ad511c9b18bb11186d5b265d42825d9065d17 | .travis.yml | .travis.yml | # force run: 1
language: c
compiler:
- clang
- gcc
python:
- "2.7"
sudo: required
before_install:
- whereis clang
- whereis gcc
- sudo -H pip install -r requirements.txt
- sudo -H DEBIAN_FRONTEND=noninteractive apt-get update
script:
sh -x ./scripts/do-test.sh
| # force run: 1
language: c
compiler:
- clang
- gcc
python:
- "2.7"
sudo: required
before_install:
- find / -name clang -type f
- find / -name gcc -type f
- sudo -H pip install -r requirements.txt
- sudo -H DEBIAN_FRONTEND=noninteractive apt-get update
script:
sh -x ./scripts/do-test.sh
| Use "find" instead of "whereis". | Use "find" instead of "whereis".
| YAML | bsd-2-clause | jevonearth/rtpproxy,jevonearth/rtpproxy,sippy/rtpproxy,synety-jdebp/rtpproxy,jevonearth/rtpproxy,dsanders11/rtpproxy,dsanders11/rtpproxy,dsanders11/rtpproxy,jevonearth/rtpproxy,synety-jdebp/rtpproxy,sippy/rtpproxy,synety-jdebp/rtpproxy,sippy/rtpproxy,synety-jdebp/rtpproxy |
79031ba35642278c5e372fd17c26da619a16e68d | .travis.yml | .travis.yml | dist: xenial
language: node_js
addons:
apt:
packages:
- chromium-browser
node_js:
- lts/*
- node
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s
- export PATH=$HOME/.yarn/bin:$PATH
- export NODE_OPTIONS=--max_old_space_size=4096
script:
- yarn lint
- yarn audit
- yarn test --code-coverage
- yarn build
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
| dist: xenial
language: node_js
addons:
apt:
packages:
- chromium-browser
node_js:
- lts/*
- node
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s
- export PATH=$HOME/.yarn/bin:$PATH
script:
- yarn lint
- yarn audit
- yarn test --code-coverage
- yarn build
after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
| Revert "export NODE_OPTIONS to improve build time" | Revert "export NODE_OPTIONS to improve build time"
This reverts commit d0a7be4d
| YAML | mit | mpalourdio/ng-http-loader,mpalourdio/ng-http-loader,mpalourdio/ng-http-loader |
4b2f75bfd9ba27628ebed4c209724d0106a09027 | .travis.yml | .travis.yml | dist: xenial
language: python
sudo: false
matrix:
include:
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- env: TOXENV=py37-flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
| dist: xenial
language: python
sudo: false
matrix:
include:
- python: 3.6
env: TOXENV=py36
- python: 3.7
env: TOXENV=py37
- env: TOXENV=py37-flake8
install:
- pip install tox
script:
- tox -e $TOXENV
| Use TOXENV as tox command. | Use TOXENV as tox command.
| YAML | bsd-3-clause | unt-libraries/aubreylib |
f0b57da3b81cbb3f48d8a1206fdbd92e64191289 | .travis.yml | .travis.yml | language: go
go:
- 1.5
# Temporarily disable until Travis CI is fast again
#- tip
cache:
directories:
- ~/.platformio
- ~/.shellcheck
addons:
apt:
packages:
- libi2c-dev
# shellcheck is not in Travis' Ubuntu
#- shellcheck
install:
- pip install --user --upgrade platformio
- platformio lib install 19 580 # Adafruit-DHT, EasyVR
script:
# Raspberry Pi part
- curl https://raw.githubusercontent.com/dasfoo/travis/master/go.sh | sh
# BotBoarduino part
- platformio ci --board=diecimilaatmega328 bb
# MotorController part
- platformio ci --board=diecimilaatmega328 mc
# Shell part
- curl https://raw.githubusercontent.com/dasfoo/travis/master/shell.sh | sh -s bin/*
branches:
only:
- master
| language: go
go:
- 1.6
- tip
cache:
directories:
- ~/.platformio
- ~/.shellcheck
addons:
apt:
packages:
- libi2c-dev
# shellcheck is not in Travis' Ubuntu
#- shellcheck
install:
- pip install --user --upgrade platformio
- platformio lib install 19 580 # Adafruit-DHT, EasyVR
script:
# Raspberry Pi part
- curl https://raw.githubusercontent.com/dasfoo/travis/master/go.sh | sh
# BotBoarduino part
- platformio ci --board=diecimilaatmega328 bb
# MotorController part
- platformio ci --board=diecimilaatmega328 mc
# Shell part
- curl https://raw.githubusercontent.com/dasfoo/travis/master/shell.sh | sh -s bin/*
branches:
only:
- master
| Upgrade go to 1.6 and try enabling tip | Upgrade go to 1.6 and try enabling tip
| YAML | mit | dasfoo/rover,dasfoo/rover,dasfoo/rover |
e57e42bf9f37abe65b55e43e9188dc5b1a459ec5 | .travis.yml | .travis.yml | language:
- php
php:
- 5.3
- 5.4
- 5.5
before_script:
- git clone --depth 1 https://github.com/squizlabs/PHP_CodeSniffer.git /tmp/phpcs
- project_dir=$(pwd) && cd /tmp/phpcs/CodeSniffer/Standards && ln -s $project_dir ./WordPress && cd $project_dir
script:
- find . \( -name '*.php' \) -exec php -lf {} \;
- cd /tmp/phpcs && phpunit --filter WordPress tests/AllTests.php && cd -
| language:
- php
php:
- 5.3
- 5.4
- 5.5
before_script:
- git clone --depth 1 https://github.com/squizlabs/PHP_CodeSniffer.git /tmp/phpcs
- project_dir=$(pwd) && cd /tmp/phpcs/CodeSniffer/Standards && mv $project_dir ./WordPress && cd WordPress
script:
- find . \( -name '*.php' \) -exec php -lf {} \;
- phpunit --filter WordPress /tmp/phpcs/tests/AllTests.php
| Move project into cloned phpcs repo | Move project into cloned phpcs repo
| YAML | mit | borkweb/WordPress-Coding-Standards,lkraav/WordPress-Coding-Standards,mattyrob/WordPress-Coding-Standards,WordPress-Coding-Standards/WordPress-Coding-Standards,xwp/WordPress-Coding-Standards,paulschreiber/WordPress-Coding-Standards,WordPress-Coding-Standards/WordPress-Coding-Standards,mediarain/WordPress-Coding-Standards,paulschreiber/WordPress-Coding-Standards,mattyrob/WordPress-Coding-Standards,borkweb/WordPress-Coding-Standards,xwp/WordPress-Coding-Standards,xwp/WordPress-Coding-Standards,jrfnl/WordPress-Coding-Standards,paulschreiber/WordPress-Coding-Standards,jrfnl/WordPress-Coding-Standards,lkraav/WordPress-Coding-Standards,paulschreiber/WordPress-Coding-Standards,WordPress-Coding-Standards/WordPress-Coding-Standards,borkweb/WordPress-Coding-Standards,WordPress-Coding-Standards/WordPress-Coding-Standards,mattyrob/WordPress-Coding-Standards,borkweb/WordPress-Coding-Standards,mattyrob/WordPress-Coding-Standards,jrfnl/WordPress-Coding-Standards,mattyrob/WordPress-Coding-Standards,xwp/WordPress-Coding-Standards,mediarain/WordPress-Coding-Standards,jrfnl/WordPress-Coding-Standards |
f607b366bf83b56294a67725ba07512071a5b111 | .travis.yml | .travis.yml | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
# run build against php 7.0 but allow them to fail
# http://docs.travis-ci.com/user/build-configuration/#Rows-That-are-Allowed-To-Fail
matrix:
fast_finish: true
allow_failures:
- php: 7.0
before_script:
- composer update
script: phpunit
| language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
# run build against php 7.0 but allow them to fail
# http://docs.travis-ci.com/user/build-configuration/#Rows-That-are-Allowed-To-Fail
matrix:
fast_finish: true
allow_failures:
- php: 7.0
before_script:
- composer update
script: phpunit
| Switch to the docker-based infrastructure on Travis | Switch to the docker-based infrastructure on Travis | YAML | mit | cmpayments/jsonlint |
459e667d0567ce88cf9179b94141337c1af8464f | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.6"
# command to install dependencies
install:
- pip install werkzeug
- pip install -r requirements.txt
# command to run tests
script:
- pytest # or py.test for Python versions 3.5 and below
| language: python
python:
- "2.7"
# command to install dependencies
install:
- pip install werkzeug
- pip install -r requirements.txt
# command to run tests
script:
- pytest # or py.test for Python versions 3.5 and below
| Remove Python 3 from Travis CI config. | Remove Python 3 from Travis CI config.
| YAML | mit | dgnorth/drift-config,dgnorth/drift-config,dgnorth/drift-config |
d7b0ac6c52e913b3daf435d2b744e5ac25f178f0 | .travis.yml | .travis.yml | language: haskell
ghc:
- "7.10"
- "7.8"
- "7.6"
- "7.4"
before_install:
- cabal update
- cabal install Cabal
- cabal install cabal-install
- export PATH=~/.cabal/bin:$PATH
- cabal sandbox init
- cabal install --dependencies-only
script:
- cabal install --enable-tests --run-tests
notifications:
email:
recipients:
- cloud.haskell@gmail.com
irc:
channels:
- "irc.freenode.org#haskell-distributed"
use_notice: true
branches:
only:
- master
- development
| language: c
sudo: false
matrix:
include:
- env: CABALVER=1.22 GHCVER=7.6.3
addons: {apt: {packages: [cabal-install-1.22,ghc-7.6.3], sources: [hvr-ghc]}}
- env: CABALVER=1.22 GHCVER=7.8.4
addons: {apt: {packages: [cabal-install-1.22,ghc-7.8.4], sources: [hvr-ghc]}}
- env: CABALVER=1.22 GHCVER=7.10.3
addons: {apt: {packages: [cabal-install-1.22,ghc-7.10.3],sources: [hvr-ghc]}}
before_install:
- export PATH=/opt/ghc/$GHCVER/bin:/opt/cabal/$CABALVER/bin:~/.cabal/bin:$PATH
- ghc --version
- cabal --version
- cabal update
# workaround for https://ghc.haskell.org/trac/ghc/ticket/9221
# taken from https://github.com/hvr/multi-ghc-travis/blob/0fa68f78c2b1b059f904c9abc85510a3bb4f57e2/README.md
- sed -i 's/^jobs:/-- jobs:/' $HOME/.cabal/config
install:
- cabal install --only-dependencies --enable-tests
script:
- cabal test
| Stop testing with ghc-7.4 and build with ghc-7.10. | Stop testing with ghc-7.4 and build with ghc-7.10.
| YAML | bsd-3-clause | haskell-distributed/network-transport-tcp |
84245a783967eeb101db9245fd8d55826ee8d304 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
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.2'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with Node.js 4.2 on Travis CI. | Test with Node.js 4.2 on Travis CI.
| YAML | mit | bigeasy/operation |
6fc9729e175a5f7c815cd7ccffe72a4e3fd8c056 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- sudo apt-get install php-cli
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
before_script:
- npm install -g gulp
- "export CHROME_BIN=chromium-browser"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- php -S localhost:8800/
- sleep 3
- "node_modules/karma/bin/karma start karma.conf.js --single-run"
script: gulp | sudo: true
language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- sudo apt-get install php-cli
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
before_script:
- npm install -g gulp
- "export CHROME_BIN=chromium-browser"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3 # give xvfb some time to start
- php -S localhost:8800/
- sleep 3
- "node_modules/karma/bin/karma start karma.conf.js --single-run"
script: gulp | Switch to Travis default build infrastructure | Switch to Travis default build infrastructure
| YAML | mit | mushtat/savory.js,mushtat/savory.js,mushtat/savory.js |
9f617fca02d308ac1e3403d2ab2e70f1d23c6cb5 | .travis.yml | .travis.yml | language: node_js
node_js:
- 4.0
- 6.0
before_deploy:
- test $TRAVIS_TEST_RESULT = 0
before_install:
- npm install -g mocha
deploy:
- provider: script # (If version.txt is updated) - create a new tag and push to Github, update the latest-release branch
script: ./create-release.sh
on: master
# Automatic deploys are enabled in Heroku for this app
# Every push to master will deploy a new version of this app. Deploys happen automatically.
# Heroku will wait for CI to pass before deploying.
notifications:
email: false
sudo: false
env:
global:
- secure: esj3ut+TwKX25QzU1koJyTVIX+x1V55graI65X8LiYXKcOP040VPJ9lIC0HeRs5UViBM0Ur1F93rGdgW2zYVzu5MLZoH7KjpzMcG30x+FDqLChT0JfNcLLtLm/wIhx/OAAmsBxXlvjPp092BeEKd3Jug8d329TxwwK5G5XxAatg=
| language: node_js
node_js:
- "lts/*"
before_deploy:
- test $TRAVIS_TEST_RESULT = 0
before_install:
- npm install -g mocha
deploy:
- provider: script # (If version.txt is updated) - create a new tag and push to Github, update the latest-release branch
script: ./create-release.sh
on: master
# Automatic deploys are enabled in Heroku for this app
# Every push to master will deploy a new version of this app. Deploys happen automatically.
# Heroku will wait for CI to pass before deploying.
notifications:
email: false
sudo: false
env:
global:
- secure: esj3ut+TwKX25QzU1koJyTVIX+x1V55graI65X8LiYXKcOP040VPJ9lIC0HeRs5UViBM0Ur1F93rGdgW2zYVzu5MLZoH7KjpzMcG30x+FDqLChT0JfNcLLtLm/wIhx/OAAmsBxXlvjPp092BeEKd3Jug8d329TxwwK5G5XxAatg=
| Update testing matrix to test against latest LTS | Update testing matrix to test against latest LTS
Stop testing against Node 4.0, and test against the latest LTS instead.
| YAML | mit | joelanman/govuk_prototype_kit,alphagov/govuk_prototype_kit,benjeffreys/hmcts-idam-proto,dwpdigitaltech/hrt-prototype,benjeffreys/hmcts-idam-proto,joelanman/govuk_prototype_kit,alphagov/govuk_prototype_kit,benjeffreys/hmcts-idam-proto,gavinwye/govuk_prototype_kit,dwpdigitaltech/hrt-prototype,gavinwye/govuk_prototype_kit,joelanman/govuk_prototype_kit,alphagov/govuk_prototype_kit,dwpdigitaltech/hrt-prototype |
9f3bcdb3856afe0e8539d0ed44b44b4d4adc7a4b | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
# 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
matrix:
include:
- php: 5.5
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script:
- vendor/bin/phpcs --standard=psr2 src/
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
| language: php
php:
- 5.6
- 7.0
- hhvm
# 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
matrix:
include:
- php: 5.5
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script:
- vendor/bin/phpcs --standard=psr2 src/
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- if [[ $TRAVIS_PHP_VERSION != 'hhvm' && $TRAVIS_PHP_VERSION != '7.0' ]]; then php vendor/bin/ocular code-coverage:upload --format=php-clover coverage.clover; fi
| Remove PHP 5.5 from Travis tests | Remove PHP 5.5 from Travis tests | YAML | mit | jotaelesalinas/php-mapreduce |
722710381621851d7c7d2150d46864be740b471d | .travis.yml | .travis.yml | language: python
services:
- redis-server
python:
- "2.7"
install:
- pip install -q -r requirements.txt --use-mirrors
- pip install -q coveralls --use-mirrors
- python setup.py -q install
script: py.test tests/ --cov django_flanker --cov-report term --cov-report xml
after_success:
coveralls
| language: python
services:
- redis-server
python:
- "2.7"
install:
- pip install -r requirements.txt --use-mirrors
- pip install python-coveralls --use-mirrors
- python setup.py -q install
script:
- py.test tests/ --cov django_flanker --cov-report term-missing
after_success:
- coveralls
| Switch to python-coveralls and make some NOIZE! | Switch to python-coveralls and make some NOIZE!
| YAML | mit | dmpayton/django-flanker |
86d4df2407d151f1f1b076ffabe5efeb2641e763 | .travis.yml | .travis.yml | language: python
python:
- "3.6"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- pytest
after_success:
- coveralls
| language: python
python:
- "3.6"
install:
- pip install -r requirements.txt
- pip install coveralls
script:
- pytest -v tests/ --cov=abraia
after_success:
- coveralls
| Update pytest configuration to use the coveralls service | Update pytest configuration to use the coveralls service
| YAML | mit | abraia/abraia-python |
192dbed28b5acbb812e735584926f8559f36cfae | .travis.yml | .travis.yml | language: node_js
node_js:
- 6
- 7
- 8
- 9
- 10
- node
install:
- yarn
script:
- yarn run ci
| language: node_js
node_js:
- 6
- 8
- 9
- 10
- node
install:
- yarn
script:
- yarn run ci
| Remove Node 7 from CI because Yarn doesn't support it. | Remove Node 7 from CI because Yarn doesn't support it.
| YAML | mit | octet-stream/parasprite |
3c59167f4b0cd0a92f287bc4d5dee0e3eb742682 | .travis.yml | .travis.yml | language: ruby
os: osx
env: OSX=10.12
osx_image: xcode8.1
rvm: system
before_install:
- brew tap rockyluke/devops
install:
- brew install c2go
- brew install drac-kvm
- brew install gocyclo
- brew install golint
- brew install hey
- brew install i2cssh
- brew install lunchy
- brew install markdownlint
- brew install millipede-c
- brew install millipede-cpp
- brew install millipede-go
- brew install millipede-python
- brew install puppet-lint
- brew install pylint
- brew install rubocop
- brew install whereami
- brew install yamllint
script:
- brew test i2cssh
- brew test golint
- brew test markdownlint
- brew test puppet-lint
- brew test pylint
- brew test rubocop
- brew test yamllint
notifications:
email:
on_success: never
on_failure: always
| language: ruby
os: osx
env: OSX=10.12
osx_image: xcode8.1
rvm: system
before_install:
- brew tap rockyluke/devops
install:
- brew install c2go
- brew install drac-kvm
- brew install gocyclo
- brew install golint
- brew install hey
- brew install i2cssh
- brew install lunchy
- brew install markdownlint
- brew install millipede-c
- brew install millipede-cpp
- brew install millipede-go
- brew install millipede-python
- brew install puppet-lint
- brew install pylint
- brew install rubocop
- brew install yamllint
script:
- brew test i2cssh
- brew test golint
- brew test markdownlint
- brew test puppet-lint
- brew test pylint
- brew test rubocop
- brew test yamllint
notifications:
email:
on_success: never
on_failure: always
| Remove brew install whereami from tests | Remove brew install whereami from tests
| YAML | isc | rockyluke/homebrew-devops |
2d5922af555ddd4802bc1805a31900d86e038c6a | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7.0
- 7.1
install:
- composer install
script:
- ./vendor/bin/phing test
after_script:
- ./vendor/bin/coveralls -vvv;
notifications:
email:
recipients:
- kristof@2dotstwice.be
slack: cnet:UzmZZjVck1RNHTyrTSe6NTd9
| language: php
php:
- 7.1
install:
- composer install
script:
- ./vendor/bin/phing test
after_script:
- ./vendor/bin/coveralls -vvv;
notifications:
email:
recipients:
- kristof@2dotstwice.be
slack: cnet:UzmZZjVck1RNHTyrTSe6NTd9
| Remove PHP 5.6 and 7.0 builds from Travis CI config | III-2568: Remove PHP 5.6 and 7.0 builds from Travis CI config | YAML | apache-2.0 | cultuurnet/udb3-udb2-bridge |
3684479d8b53206fe6d05356b305294706671b9a | .travis.yml | .travis.yml | sudo: false
language: android
android:
components:
- build-tools-22.0.1
- android-22
- sys-img-armeabi-v7a-android-22
- add-on
- extra
licenses:
- 'android-sdk-preview-license-52d11cd2'
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'
jdk:
- oraclejdk7
before_install:
- echo yes | android update sdk --all --filter build-tools-22.0.1 --no-ui --force
before_script:
- echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
- ./gradlew assemble test | sudo: false
language: android
android:
components:
- build-tools-23.0.1
- android-23
- extra-google-google_play_services
- extra-android-support
- extra
jdk:
- oraclejdk7
env:
matrix:
- ANDROID_TARGET=android-23 ANDROID_ABI=armeabi-v7a
before_install:
- echo yes | android update sdk --all --filter build-tools-22.0.1 --no-ui --force
before_script:
- echo no | android create avd --force -n test -t android-19 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
- ./gradlew assemble test | Update Travis config (please do work, please!) | Update Travis config (please do work, please!)
| YAML | mit | thyrlian/AwesomeValidation,thyrlian/AwesomeValidation |
00c2e56435b342e06b8256fda37a631ecebe5f2f | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- ree
- 1.9.3
before_script:
- bundle exec rake db:migrate
| language: ruby
bundler_args: --without development
rvm:
- 1.8.7
- ree
- 1.9.3
- 2.0.0
before_script:
- bundle exec rake db:migrate
| Add testing under Ruby 2.0 to Travis | Add testing under Ruby 2.0 to Travis | YAML | mit | osbridge/openconferenceware,mynameisfashanu/openconferenceware,ondrocks/openconferenceware,ondrocks/openconferenceware,mynameisfashanu/openconferenceware,mynameisfashanu/openconferenceware,ondrocks/openconferenceware,ondrocks/openconferenceware,osbridge/openconferenceware,osbridge/openconferenceware,osbridge/openconferenceware,mynameisfashanu/openconferenceware |
f178825c27d655cebcfd50a2d391dbe435e50b89 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.1.0 | language: ruby
rvm:
- 1.9.3
- 2.1.0
- 2.2.3
| Add latest ruby version for TravisCI | Add latest ruby version for TravisCI | YAML | mit | castle/ruby-u2f,castle/ruby-u2f,castle/ruby-u2f |
eeb3887ba565d4ae428d7ded2a0f019852c74c55 | .travis.yml | .travis.yml | ---
sudo: false
language: scala
scala:
- 2.12.10
- 2.13.1
env:
- TRAVIS_JDK=8
- TRAVIS_JDK=11
before_install: curl -Ls https://git.io/jabba | bash && . ~/.jabba/jabba.sh
install: jabba install "adopt@~1.$TRAVIS_JDK.0-0" && jabba use "$_" && java -Xmx32m -version
script: sbt ++$TRAVIS_SCALA_VERSION test
cache:
directories:
- "$HOME/.ivy2/cache"
- "$HOME/.jabba/jdk"
- "$HOME/.sbt"
before_cache:
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete
- find $HOME/.sbt -name "*.lock" -delete
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/72d2a40c7c3ae2988d66
on_success: always
on_failure: always
on_start: always
| ---
sudo: false
language: scala
scala:
- 2.12.10
- 2.13.1
env:
- TRAVIS_JDK=8
- TRAVIS_JDK=11
jobs:
allow_failures:
- env: TRAVIS_JDK=11
before_install: curl -Ls https://git.io/jabba | bash && . ~/.jabba/jabba.sh
install: jabba install "adopt@~1.$TRAVIS_JDK.0-0" && jabba use "$_" && java -Xmx32m -version
script: sbt ++$TRAVIS_SCALA_VERSION test
cache:
directories:
- "$HOME/.ivy2/cache"
- "$HOME/.jabba/jdk"
- "$HOME/.sbt"
before_cache:
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete
- find $HOME/.sbt -name "*.lock" -delete
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/72d2a40c7c3ae2988d66
on_success: always
on_failure: always
on_start: always
| Allow Java 11 jobs to fail | Allow Java 11 jobs to fail
| YAML | mit | webjars/webjars-play,webjars/webjars-play |
b26d7c0cb611ff67a91b6bf7d0349e5131508c97 | .travis.yml | .travis.yml | addons:
sauce_connect: true
language: node_js
node_js:
- 6
install:
- npm install
script:
- npm run ci:travis
cache:
directories:
- node_modules
env:
global:
- secure: NXSs3UgYg+3Ydvyiu/bmzz1c/CKPtd8ilbOgj2dmoq2bMJZmirlhT6J3I/m3zL24StDEJqC4pMDJGZz+hOsZPj/AhYWyvAorjHvN2i6p6u+WS05t78UhdNQNgUYtON2eBT38A1rXD+zxiECILDNea8hJ2XWfFmxmesrQhZIsgaA=
- secure: onwbBluqY4e3FvrRkL52sPuyqpLisMJOiNe/YoZDyf6wkrIZcFiciL0sKRNK31r0kBbu4CjOTABLYeivWhTjUAdlOC1q8oeXz2Q5ftHn7BWdIcfOehsQKPZw4QnRO6FvhjLF4kNm5Mz4FN0Rl73wVhOXkuXECaeKMWW8bjzcpFk=
| addons:
sauce_connect: true
language: node_js
node_js:
- 6
install:
- npm install
script:
- npm run ci:travis
cache:
directories:
- node_modules | Remove outdated Sauce Labs secrets, now in Travis CI settings | Remove outdated Sauce Labs secrets, now in Travis CI settings
| YAML | mit | nickcmaynard/jsonschemalint,nickcmaynard/jsonschemalint,HotelDon/jsonschemalint,HotelDon/jsonschemalint |
45d39f09c42afeaaa66b8c693536303d416bf304 | .travis.yml | .travis.yml | language: go
go:
- 1.11
- tip
env:
- GO111MODULE=on
install:
- |
# fix path issue in forks
if [ "$TRAVIS_REPO_SLUG" != "piprate/json-gold" ]; then
echo "Need to fix path for forks"
cd $HOME/gopath/src/github.com
mv $(dirname $TRAVIS_REPO_SLUG) piprate
cd piprate/json-gold
export TRAVIS_BUILD_DIR=$HOME/gopath/src/github.com/piprate/json-gold
pwd
fi
- go get -v -t ./...
script:
- go test -v -race -cover ./...
| language: go
go:
- 1.13
- tip
env:
- GO111MODULE=on
install:
- |
# fix path issue in forks
if [ "$TRAVIS_REPO_SLUG" != "piprate/json-gold" ]; then
echo "Need to fix path for forks"
cd $HOME/gopath/src/github.com
mv $(dirname $TRAVIS_REPO_SLUG) piprate
cd piprate/json-gold
export TRAVIS_BUILD_DIR=$HOME/gopath/src/github.com/piprate/json-gold
pwd
fi
- go get -v -t ./...
script:
- go test -v -race -cover ./...
| Upgrade Travis CI requirements to Go 1.13 | Upgrade Travis CI requirements to Go 1.13
This is due to JSON Canonicalizer. | YAML | apache-2.0 | piprate/json-gold |
6057333f3c36c7b78bd3497b4d7c83d7c1f09ec8 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
services:
- memcached
- redis
before_install:
- sudo apt-get -qq update
install:
- sudo apt-get -qq install rake bison git gperf libmemcached-dev libcurl4-openssl-dev libhiredis-dev libmarkdown2-dev libcgroup-dev libcap-dev iproute-dev
before_script:
- cd ../
- git clone https://github.com/mruby/mruby.git
- cd mruby
- cp -fp ../mrbgem_test_ci/.travis_build_config.rb build_config.rb
script:
- make all test
notifications:
webhooks:
- secure: "UDjzP3coFurYEPXo7IsgjisSWmjGC+BPbja6LTvMPwY+t6ZKERxrp3viDc/kPXDNlGBFXP7K2bu+UefukJIWUuctSoTt6CVLGqdegwzY5zFtlaCfKsxd/OxIO91QqmPwYW4UeSkOdReejUhncZYZ1/dYjJszVNgi2uMb2X4ZQ2M="
| language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.1
services:
- memcached
- redis
before_install:
- sudo apt-get -qq update
install:
- sudo apt-get -qq install rake bison git gperf libmemcached-dev libcurl4-openssl-dev libhiredis-dev libmarkdown2-dev libcgroup-dev libcap-dev iproute-dev
before_script:
- cd ../
- git clone https://github.com/mruby/mruby.git
- cd mruby
- cp -fp ../mrbgem_test_ci/.travis_build_config.rb build_config.rb
script:
- make all test
notifications:
webhooks:
- secure: "UDjzP3coFurYEPXo7IsgjisSWmjGC+BPbja6LTvMPwY+t6ZKERxrp3viDc/kPXDNlGBFXP7K2bu+UefukJIWUuctSoTt6CVLGqdegwzY5zFtlaCfKsxd/OxIO91QqmPwYW4UeSkOdReejUhncZYZ1/dYjJszVNgi2uMb2X4ZQ2M="
| Add test for ruby version 2.1.1 | Add test for ruby version 2.1.1
| YAML | mit | matsumoto-r/mrbgem_test_ci |
79f01d40be6852203931b00c3636a1d7998b7d24 | .travis.yml | .travis.yml | language: node_js
notifications:
email:
on_success: never
on_failure: change
node_js:
- 4
sudo: false
env: NODE_VERSION=4.4.7 CC=clang CXX=clang++ npm_config_clang=1
addons:
apt:
packages:
- build-essential
- clang-3.3
| language: node_js
notifications:
email:
on_success: never
on_failure: change
node_js: 6
sudo: false
env: NODE_VERSION=4.4.7 CC=clang CXX=clang++ npm_config_clang=1
addons:
apt:
packages:
- build-essential
- clang-3.3
| Test only Node 6 on Travis | Test only Node 6 on Travis
| YAML | mit | atom/scandal |
75b246ac132c7a33de365fe71df0addc4a03cd6a | .travis.yml | .travis.yml | language: python
python:
- "2.7"
# command to install dependencies
# install: "pip install -r requirements.txt"
# command to run tests
before_install:
- sudo apt-get autoremove sqlite3
- sudo apt-get install python-software-properties
- sudo apt-add-repository -y ppa:travis-ci/sqlite3
- sudo apt-get -y update
- sudo apt-cache show sqlite3
- sudo apt-get install sqlite3=3.7.15.1-1~travis1
- sqlite3 --version
script: nosetests -sv --with-id
| language: python
python:
- "2.7"
# command to install dependencies
# install: "pip install -r requirements.txt"
# command to run tests
before_install:
- sudo apt-get autoremove sqlite3
- sudo apt-get install python-software-properties
- sudo apt-add-repository -y ppa:travis-ci/sqlite3
- sudo apt-get -y update
- sudo apt-cache show sqlite3
- sudo apt-get install sqlite3=3.7.15.1-1~travis1
- sqlite3 --version
install:
- pip install coverage coveralls
script: nosetests -sv --with-id --with-coverage --cover-package=simpletag --cover-branches
after_success: coveralls
| Add coverage detection for tests. | Add coverage detection for tests.
| YAML | mit | yangacer/simpletag |
e651d9eb2c7706e4a537866864df3574b874b3a8 | .travis.yml | .travis.yml | # Passes arguments to bundle install (http://gembundler.com/man/bundle-install.1.html)
# bundler_args: --binstubs
# Specify which versions of Ruby to run the tests on; each version will be used
rvm:
- 1.8.7
- 1.9.2
# Define how to run the tests (defaults to `bundle exec rake` or `rake` depending on whether you have a `Gemfile`)
# script: "bundle exec rake rspec node"
# Define tasks to be completed before and after tests run. Will allow folding of content on frontend
# before_script:
# - command_1
# - command_2
# after_script:
# - command_1
# - command_2
# Specify an ENV variable to run before: 'bundle install' and 'rake' (or your defined 'script')
# env: "RAILS_ENV='test' "
# Specify the recipients for email notification
# notifications:
# recipients:
# - email-address-1
# - email-address-2
# Disable email notifications
# notifications:
# disabled: true
| # Passes arguments to bundle install (http://gembundler.com/man/bundle-install.1.html)
# bundler_args: --binstubs
# Specify which versions of Ruby to run the tests on; each version will be used
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
- jruby
- ruby-head
- rbx-2.0
# Define how to run the tests (defaults to `bundle exec rake` or `rake` depending on whether you have a `Gemfile`)
# script: "bundle exec rake rspec node"
# Define tasks to be completed before and after tests run. Will allow folding of content on frontend
# before_script:
# - command_1
# - command_2
# after_script:
# - command_1
# - command_2
# Specify an ENV variable to run before: 'bundle install' and 'rake' (or your defined 'script')
# env: "RAILS_ENV='test' "
# Specify the recipients for email notification
# notifications:
# recipients:
# - email-address-1
# - email-address-2
# Disable email notifications
# notifications:
# disabled: true
| Test on more versions of Ruby | Test on more versions of Ruby
| YAML | mit | sinisterchipmunk/jax,sinisterchipmunk/jax |
93d201bbb402c3efbe5602dae6a52c87312786d5 | .travis.yml | .travis.yml | language: go
go:
- tip
install: make deps
script:
- make test
notifications:
flowdock:
secure: fZrcf9rlh2IrQrlch1sHkn3YI7SKvjGnAl/zyV5D6NROe1Bbr6d3QRMuCXWWdhJHzjKmXk5rIzbqJhUc0PNF7YjxGNKSzqWMQ56KcvN1k8DzlqxpqkcA3Jbs6fXCWo2fssRtZ7hj/wOP1f5n6cc7kzHDt9dgaYJ6nO2fqNPJiTc=
irc:
channels:
- "chat.freenode.net#serfdom"
on_success: change
on_failure: always
| language: go
go:
- tip
install: make deps
script:
- make test
notifications:
flowdock:
secure: fZrcf9rlh2IrQrlch1sHkn3YI7SKvjGnAl/zyV5D6NROe1Bbr6d3QRMuCXWWdhJHzjKmXk5rIzbqJhUc0PNF7YjxGNKSzqWMQ56KcvN1k8DzlqxpqkcA3Jbs6fXCWo2fssRtZ7hj/wOP1f5n6cc7kzHDt9dgaYJ6nO2fqNPJiTc=
| Disable IRC notifications for Travis | Disable IRC notifications for Travis
| YAML | mpl-2.0 | yonglehou/serf,jmptrader/serf,hashicorp/serf,dalehamel/serf,jmptrader/serf,jmptrader/serf,mbrukman/serf,curtiszimmerman/serf,samaitra/serf,gnawhleinad/serf,samaitra/serf,yonglehou/serf,hashicorp/serf,gnawhleinad/serf,yonglehou/serf,minhkiller/serf,patrickviet/serf,hashicorp/serf,curtiszimmerman/serf,samaitra/serf,minhkiller/serf,patrickviet/serf,hashicorp/serf,mbrukman/serf,minhkiller/serf,patrickviet/serf,mapuri/serf,FollowMyDev/serf,mapuri/serf,FollowMyDev/serf,jmptrader/serf,pmenglund/serf,pmenglund/serf,samaitra/serf,mbrukman/serf,dalehamel/serf,hashicorp/serf,minhkiller/serf,patrickviet/serf,patrickviet/serf,mapuri/serf,FollowMyDev/serf,curtiszimmerman/serf,pmenglund/serf,mapuri/serf,curtiszimmerman/serf,minhkiller/serf,samaitra/serf,mapuri/serf,dalehamel/serf,mbrukman/serf,gnawhleinad/serf,yonglehou/serf,mapuri/serf,FollowMyDev/serf,pmenglund/serf,pmenglund/serf,dalehamel/serf,curtiszimmerman/serf,curtiszimmerman/serf,patrickviet/serf,pmenglund/serf,FollowMyDev/serf,mbrukman/serf,gnawhleinad/serf,minhkiller/serf,yonglehou/serf,samaitra/serf,dalehamel/serf,FollowMyDev/serf,gnawhleinad/serf,mbrukman/serf,gnawhleinad/serf,jmptrader/serf,jmptrader/serf,yonglehou/serf,dalehamel/serf |
96aadee4a0269ed5d51c473993f0af7e41f95b96 | .travis.yml | .travis.yml | # Use new container infrastructure to enable caching
sudo: false
# thanks to http://stackoverflow.com/a/24600210/3780203
# Handle git submodules yourself
git:
submodules: false
# Choose a lightweight base image; we provide our own build tools.
language: c
# GHC depends on GMP. You can add other dependencies here as well.
addons:
apt:
packages:
- libgmp-dev
# The different configurations we want to test. You could also do things like
# change flags or use --stack-yaml to point to a different file.
env:
- ARGS=""
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
# This line does all of the work: installs GHC if necessary, build the library,
# executables, and test suites, and runs the test suites. --no-terminal works
# around some quirks in Travis's terminal implementation.
script: stack --no-terminal --install-ghc test
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack
| # Use new container infrastructure to enable caching
sudo: false
# thanks to http://stackoverflow.com/a/24600210/3780203
# Handle git submodules yourself
git:
submodules: false
# Choose a lightweight base image; we provide our own build tools.
language: c
# GHC depends on GMP. You can add other dependencies here as well.
addons:
apt:
packages:
- libgmp-dev
# The different configurations we want to test. You could also do things like
# change flags or use --stack-yaml to point to a different file.
env:
- ARGS=""
before_install:
# Download and unpack the stack executable
- mkdir -p ~/.local/bin
- export PATH=$HOME/.local/bin:$PATH
- travis_retry curl -L https://www.stackage.org/stack/linux-x86_64 | tar xz --wildcards --strip-components=1 -C ~/.local/bin '*/stack'
services:
- postgresql
before_script:
- psql -c 'create database test;' -U postgres
- psql -c 'create role test LOGIN CREATEDB;' -U postgres
- psql -c 'create database "perservant-test";' -U test
# This line does all of the work: installs GHC if necessary, build the library,
# executables, and test suites, and runs the test suites. --no-terminal works
# around some quirks in Travis's terminal implementation.
script: stack --no-terminal --install-ghc test
# Caching so the next build will be fast too.
cache:
directories:
- $HOME/.stack
| Configure database on Travis CI. | Configure database on Travis CI.
| YAML | mit | parsonsmatt/servant-persistent,parsonsmatt/servant-persistent,parsonsmatt/servant-persistent |
c7862854d888cff1ab1862eade01e6fa983ba9e7 | .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
script:
- ./vendor/bin/phpunit
- ./tests/lint.sh
git:
depth: 5
dist: trusty
sudo: false
| 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
script:
- ./vendor/bin/phpunit
- ./tests/lint.sh
git:
depth: 5
dist: trusty
sudo: false
| Use the very latest version of composer when testing | Use the very latest version of composer when testing
| YAML | apache-2.0 | duncan3dc/tcpdf,duncan3dc/tcpdf |
8ef860bc58f50b0d2383057c673af7065d6d74da | .travis.yml | .travis.yml | language: node_js
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
node_js:
- "v0.10.40"
- "v0.11.16"
- "v0.12.7"
- "iojs-v2.5.0"
- "iojs-v3.3.1"
- "v4.0.0"
- "v4.1.0"
- "v4.1.1"
| language: node_js
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
node_js:
- "v0.10.40"
- "v0.11.16"
- "v0.12.7"
- "iojs-v2.5.0"
- "iojs-v3.3.1"
- "v4.0.0"
- "v4.1.0"
- "v4.1.1"
- "v4.1.2"
| Test against new node.js version | Test against new node.js version | YAML | mit | bripkens/gcstats.js,bripkens/gcstats.js,bripkens/gcstats.js |
884e16021c19069996807870993d93ec2cc29923 | .travis.yml | .travis.yml | language: csharp
solution: Realmius.sln
install:
- nuget restore Realmius.sln
script:
- xbuild /p:Configuration=Release Realmius.sln
- mono ./packages/NUnit.ConsoleRunner.3.6.1/tools/nunit3-console.exe ./Realmius.Tests/bin/Release/Realmius.Tests.dll
| language: csharp
solution: Realmius.sln
# Disable run test on CI
#install:
# - nuget restore Realmius.sln
#script:
# - xbuild /p:Configuration=Release Realmius.sln
# - mono ./packages/NUnit.ConsoleRunner.3.6.1/tools/nunit3-console.exe ./Realmius.Tests/bin/Release/Realmius.Tests.dll
| Disable run test on CI | Disable run test on CI | YAML | apache-2.0 | RubiusGroup/Realmius |
d249097a1be589c30a0a724a6864623843a92132 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
env:
- TEST_CMD=test
- TEST_CMD=lint
before_script:
- npm install -g grunt-cli
after_script:
- if [ "$TEST_CMD" = 'test' ]; then npm run coveralls; fi
| language: node_js
node_js:
- "0.8"
- "0.10"
env:
- TEST_CMD=test
- TEST_CMD=lint
before_script:
- npm install -g grunt-cli
- npm install sequelize
after_script:
- if [ "$TEST_CMD" = 'test' ]; then npm run coveralls; fi
| Install sequelize module in Travis build | Install sequelize module in Travis build
| YAML | mit | sprymix/grunt-sequelize,bencevans/grunt-sequelize |
a2074bd637a3e0350b5a830c3b9d271370569695 | .travis.yml | .travis.yml | language: minimal
services:
- docker
jobs:
include:
- env: DOCKER_IMAGE=maven:3.6.3-jdk-8
- env: DOCKER_IMAGE=maven:3.5.4-jdk-9 # There are no newer images with Maven for this JDK
- env: DOCKER_IMAGE=maven:3.6.0-jdk-10 # There are no newer images with Maven for this JDK
- env: DOCKER_IMAGE=maven:3.6.3-jdk-11
- env: DOCKER_IMAGE=maven:3.6.2-jdk-12
- env: DOCKER_IMAGE=maven:3.6.2-jdk-13
- env: DOCKER_IMAGE=maven:3.6.2-jdk-14
install:
- docker pull "${DOCKER_IMAGE}"
script:
- docker run
--env "_JAVA_OPTIONS=-Djdk.net.URLClassPath.disableClassPathURLCheck=true"
--volume "$PWD":/usr/src/
--workdir /usr/src/
--rm
"${DOCKER_IMAGE}" mvn clean test -B
| language: minimal
services:
- docker
jobs:
include:
- env: DOCKER_IMAGE=maven:3.6.3-jdk-8
- env: DOCKER_IMAGE=maven:3.5.4-jdk-9 # There are no newer images with Maven for this JDK
- env: DOCKER_IMAGE=maven:3.6.0-jdk-10 # There are no newer images with Maven for this JDK
- env: DOCKER_IMAGE=maven:3.6.3-jdk-11
- env: DOCKER_IMAGE=maven:3.6.2-jdk-12
- env: DOCKER_IMAGE=maven:3.6.2-jdk-13
- env: DOCKER_IMAGE=maven:3.6.3-jdk-14
- env: DOCKER_IMAGE=maven:3.6.3-openjdk-15
- env: DOCKER_IMAGE=maven:3.6.3-openjdk-16
install:
- docker pull "${DOCKER_IMAGE}"
script:
- docker run
--env "_JAVA_OPTIONS=-Djdk.net.URLClassPath.disableClassPathURLCheck=true"
--volume "$PWD":/usr/src/
--workdir /usr/src/
--rm
"${DOCKER_IMAGE}" mvn clean test -B
| Update jdk14 and build with openjdk15,16 | Update jdk14 and build with openjdk15,16
| YAML | apache-2.0 | apache/creadur-rat,apache/creadur-rat,apache/creadur-rat,apache/creadur-rat,apache/creadur-rat,apache/creadur-rat |
8e552ca4cf0c38ea904343156363f8b6cc3facf3 | .travis.yml | .travis.yml | language: ruby
cache: bundler
before_install:
- gem update --system
- gem update bundler
# We only test the oldest and the newest ruby versions that we support. We
# do not test intermediate versions.
rvm:
- 2.3.7
- 2.5.1
# We only test living versions of rails, per the [rails maintenance
# policy](http://guides.rubyonrails.org/maintenance_policy.html)
gemfile:
- gemfiles/Gemfile.rails-4.2.x
- gemfiles/Gemfile.rails-5.1.x
- gemfiles/Gemfile.rails-5.2.x
matrix:
fast_finish: true
sudo: false
| language: ruby
cache: bundler
before_install:
- gem update --system
- gem update bundler
# We only test the oldest and the newest ruby versions that we support. We
# do not test intermediate versions.
rvm:
- 2.3.7
- 2.5.1
# We only test living versions of rails, per the [rails maintenance
# policy](http://guides.rubyonrails.org/maintenance_policy.html)
gemfile:
- gemfiles/Gemfile.rails-4.2.x
- gemfiles/Gemfile.rails-5.1.x
- gemfiles/Gemfile.rails-5.2.x
matrix:
fast_finish: true
# We want to use `sudo: false` because the container infrastructure is supposed
# to be faster, but Travis is having issues with containers lately ..
#
# > No output has been received in the last 10m0s
#
# .. and they recommend we use the VM infrastructure (`sudo: required`) in
# the meantime.
sudo: required
| Switch TravisCI from container to VM | Switch TravisCI from container to VM
| YAML | mit | binarylogic/authlogic |
f4525afc8dfb81393d25ad2eb6769e863b538414 | .travis.yml | .travis.yml | language: python
python:
- "3.4_with_system_site_packages"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-add-repository -y ppa:ubuntugis/ubuntugis-unstable
- sudo apt-get update
- sudo apt-get install -qq gdal-bin
- sudo apt-get install -qq python-gdal python3-gdal
- sudo apt-get install fftw3 libfftw3-dev
- sudo apt-get install python3-tk
- pip install --upgrade Cython
- pip install --upgrade --force-reinstall numpy
script:
py.test scarplet/tests
| language: python
python:
- "3.4"
virtualenv:
system_site_packages: true
before_install:
- sudo apt-add-repository -y ppa:ubuntugis/ubuntugis-unstable
- sudo apt-get update
- sudo apt-get install -qq gdal-bin
- sudo apt-get install -qq python-gdal python3-gdal
- sudo apt-get install fftw3 libfftw3-dev
- sudo apt-get install python3-tk
- pip install --upgrade Cython
- pip install --upgrade --force-reinstall numpy
script:
py.test scarplet/tests
| Revert to Python 3.4 for Travis | Revert to Python 3.4 for Travis
| YAML | mit | stgl/scarplet,rmsare/scarplet |
e292ac26cb317638e8585345ed648d55a0ceda7f | .travis.yml | .travis.yml | sudo: False
language: python
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
install:
# Install conda
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes --set changeps1 no
- conda update conda
# Install dependencies
- conda create -n test -c conda-forge python=$TRAVIS_PYTHON_VERSION --file requirements.txt --file test_requirements.txt
- source activate test
script:
- py.test -x --doctest-modules --pyargs s3fs
notifications:
email: false
| sudo: False
language: python
matrix:
include:
- python: 2.7
- python: 3.5
- python: 3.6
install:
# Install conda
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes --set changeps1 no
- conda update conda
# Install dependencies
- conda create -n test -c conda-forge python=$TRAVIS_PYTHON_VERSION pip
- source activate test
- pip install -r requirements.txt -r test_requirements.txt
script:
- py.test -x --doctest-modules --pyargs s3fs
notifications:
email: false
| Fix installation problem with pip-style requirements file | Fix installation problem with pip-style requirements file
| YAML | bsd-3-clause | fsspec/s3fs |
eeb3622f658a38118195667c236bfe7dea7c303d | .travis.yml | .travis.yml | language: python
python:
- "3.3"
- "2.7"
before_install:
- sudo locale-gen --no-archive fr_FR.UTF-8
- sudo mkdir -p /extra/pg/9.1/ts1 /extra/pg/9.1/ts2
- sudo chown postgres:postgres /extra/pg/9.1/ts1 /extra/pg/9.1/ts2
- sudo apt-get update -qq
- sudo apt-get install -qq postgresql-plperl
before_script:
- psql -Upostgres -c "CREATE TABLESPACE ts1 LOCATION '/extra/pg/9.1/ts1'"
- psql -Upostgres -c "CREATE TABLESPACE ts2 LOCATION '/extra/pg/9.1/ts2'"
script:
- python setup.py test
| language: python
python:
- "3.3"
- "2.7"
before_install:
- sudo locale-gen --no-archive fr_FR.UTF-8
- sudo mkdir -p /extra/pg/9.1/ts1 /extra/pg/9.1/ts2
- sudo chown postgres:postgres /extra/pg/9.1/ts1 /extra/pg/9.1/ts2
- sudo apt-get update -q
- sudo apt-get install -q postgresql-plperl
before_script:
- psql -Upostgres -c "CREATE TABLESPACE ts1 LOCATION '/extra/pg/9.1/ts1'"
- psql -Upostgres -c "CREATE TABLESPACE ts2 LOCATION '/extra/pg/9.1/ts2'"
script:
- python setup.py test
| Use -q instead of -qq in the apt-get commands. | Use -q instead of -qq in the apt-get commands.
| YAML | bsd-3-clause | perseas/Pyrseas,reedstrm/Pyrseas,dvarrazzo/Pyrseas |
3be83fc4abc068d1a6b93d3c07224b6f6fadc578 | .travis.yml | .travis.yml | language: python
python: 3.5
# Scripts to install dependencies
install:
- pip install -e .[test]
# Run tests
script:
- pre-commit run --all-files
- nosetests
| language: python
python: 3.5
# Scripts to install dependencies
install:
- pip install -e .[test]
# Run tests
script:
- pre-commit run --all-files
- nosetests -svv
| Make nose output more verbose | Make nose output more verbose
| YAML | mit | wk-tech/python-smsfly |
537f855a43b8c660afe482c8ad897892f397ac43 | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
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 istanbul coveralls
env:
global:
- secure: b+3omfinRj7Iaao+6hB6l/DvMeCOcEDhN9XNHZM+LJbJVtQn2Rhdcb/DIHTVDfercwpF1gzyuABRmfv5RokzX3Xj/Lo66GnPzNLXPaNTjNBkozlvUaMTwSS+Cb36VsDj0qq3UWQQFT7YvtH5qzBXVf9L+0RHX2DlT64XClgZO9s=
| sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
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 istanbul coveralls
| Remove secret once used to ship coverage. | Remove secret once used to ship coverage.
| YAML | mit | bigeasy/cadence,bigeasy/cadence |
78c02411a49267034e538a156b906d604135baad | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '4'
- '6'
before_install:
- npm install grunt-cli -g
deploy:
provider: npm
email: timmywillisn@gmail.com
api_key:
secure: XVk0fkP4r2FDGTqLpJ0y98upGFGlmqtpHKyHcXkzmcncMRCq0lZv6lVS7TuUf6BVYgD9o3NVQpVh20NM9wtK9sRpLbdIZlk0FR2Dgqh4fdb/5+lLu4l0c5C5LFUeRfXyNbS9iecnTx8/elbJbxEy+Eb9Aa6iPTEpknSv5d1iGcE=
on:
tags: true
repo: timmywil/jquery.panzoom
| language: node_js
node_js:
- '6'
- '8'
before_install:
- npm install grunt-cli -g
deploy:
provider: npm
email: timmywillisn@gmail.com
api_key:
secure: XVk0fkP4r2FDGTqLpJ0y98upGFGlmqtpHKyHcXkzmcncMRCq0lZv6lVS7TuUf6BVYgD9o3NVQpVh20NM9wtK9sRpLbdIZlk0FR2Dgqh4fdb/5+lLu4l0c5C5LFUeRfXyNbS9iecnTx8/elbJbxEy+Eb9Aa6iPTEpknSv5d1iGcE=
on:
tags: true
repo: timmywil/jquery.panzoom
| Update node versions on which to test | Update node versions on which to test | YAML | mit | timmywil/jquery.panzoom,timmywil/jquery.panzoom,timmywil/jquery.panzoom |
5ad47ae2e7778af0406b005bcb087e0af846a09e | .travis.yml | .travis.yml | language: python
python:
- "pypy"
- "pypy3"
- 2.7
- 3.4
- 2.6
- 3.2
- 3.3
sudo: false
install:
- "travis_retry python setup.py install"
script:
- coverage run --include=pycorpora/* tests/test_pycorpora.py
after_success:
# Report coverage and send to coveralls.io
- coverage report
- travis_retry pip install coveralls
- coveralls
# Static analysis
- travis_retry pip install pep8 pyflakes
- pep8 --statistics --count PIL/*.py
- pep8 --statistics --count Tests/*.py
- pyflakes *.py | tee >(wc -l)
- pyflakes PIL/*.py | tee >(wc -l)
- pyflakes Tests/*.py | tee >(wc -l)
matrix:
fast_finish: true
| language: python
python:
- "pypy"
- "pypy3"
- 2.7
- 3.4
- 2.6
- 3.2
- 3.3
sudo: false
install:
- travis_retry python setup.py install
- travis_retry pip install coveralls
script:
- coverage run --include=pycorpora/* tests/test_pycorpora.py
after_success:
# Report coverage and send to coveralls.io
- coverage report
- coveralls
# Static analysis
- travis_retry pip install pep8 pyflakes
- pep8 --statistics --count PIL/*.py
- pep8 --statistics --count Tests/*.py
- pyflakes *.py | tee >(wc -l)
- pyflakes PIL/*.py | tee >(wc -l)
- pyflakes Tests/*.py | tee >(wc -l)
matrix:
fast_finish: true
| Install coverage before using it | Install coverage before using it
| YAML | mit | aparrish/pycorpora,hugovk/pycorpora |
3140a66c6bc8aa49fa076fd003b3fa45190ad1b9 | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 2.1.2
script:
- gem update bundler
- bundle exec rspec --no-drb --format progress
| ---
language: ruby
rvm:
- 2.1.2
before_script:
- gem update bundler
script:
- bundle exec rspec --no-drb --format progress
| Put bundler update into before_script | Put bundler update into before_script
| YAML | mit | paulfioravanti/toy_robot |
2b207f2cc2ee4511f8ad1e28875a8598e61e417b | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.2.3
- 2.3.1
- ruby-head
branches:
only:
- "master"
- "/^release-/"
before_install: gem install bundler
matrix:
include:
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=1
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=0
allow_failures:
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=1
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=0
- rvm: ruby-head
notifications:
irc:
channels:
- "chat.freenode.net#nanoc"
template:
- "%{repository}/%{branch} %{commit} %{author}: %{message}"
use_notice: true
skip_join: true
cache: bundler
sudo: false
git:
depth: 10
| language: ruby
rvm:
- 2.2.3
- 2.3.1
- ruby-head
branches:
only:
- "master"
- "/^release-/"
before_install: gem install bundler
matrix:
fast_finish: true
include:
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=1
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=0
allow_failures:
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=1
- rvm: jruby-9.0.5.0
env: DISABLE_NOKOGIRI=0
- rvm: ruby-head
notifications:
irc:
channels:
- "chat.freenode.net#nanoc"
template:
- "%{repository}/%{branch} %{commit} %{author}: %{message}"
use_notice: true
skip_join: true
cache: bundler
sudo: false
git:
depth: 10
| Enable fast_finish on Travis CI | Enable fast_finish on Travis CI
| YAML | mit | RubenVerborgh/nanoc,nanoc/nanoc,barraq/nanoc |
5870577cdd283a588823182f057fde8533ae6ec4 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs-v1.0.4"
- "4.0.0"
script:
- npm test
| language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs-v1.0.4"
- "4.0.0"
before_script:
- npm install -g npm
script:
- npm test
| Update npm before testing (local package support for node 0.10.x) | Update npm before testing (local package support for node 0.10.x) | YAML | mit | milankinen/livereactload |
ee5bd4f6941fea305fb7a898bff3d2d596f714e5 | .travis.yml | .travis.yml | language: ruby
cache: bundler
sudo: false
rvm:
- 2.3.0
script: bundle exec rake
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.3.0
- 2.4.0
- 2.5.0
- 2.6.0
script: bundle exec rake
| Test with Ruby 2.4, 2.5 and 2.6 | Test with Ruby 2.4, 2.5 and 2.6
| YAML | mit | jgorset/facebook-messenger,jgorset/facebook-messenger,hyperoslo/facebook-messenger,hyperoslo/facebook-messenger |
b97a46376cac35f285dac45c48da906dc6368005 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache:
directories:
- vendor/bundle
rvm:
- '2.3.0'
- '2.2'
- '2.1'
- 2.0.0
- 1.9.3
env:
- REDMINE_VERSION=3.2.0
- REDMINE_VERSION=3.1.3
- REDMINE_VERSION=3.0.7
- REDMINE_VERSION=2.6.9
- REDMINE_VERSION=master
matrix:
allow_failures:
- env: REDMINE_VERSION=master
branches:
except:
- debian
install:
- export BUNDLE_GEMFILE=""
- export BUNDLE_PATH="$(pwd)/vendor/bundle"
- ./redmine update
- bundle install --jobs=3 --retry=3 --path $BUNDLE_PATH
script:
- bundle exec rake spec
| sudo: false
language: ruby
cache:
directories:
- vendor/bundle
rvm:
- '2.3.0'
- '2.2'
- '2.1'
- '2.0.0'
env:
- REDMINE_VERSION=3.2.0
- REDMINE_VERSION=3.1.3
- REDMINE_VERSION=3.0.7
- REDMINE_VERSION=2.6.9
- REDMINE_VERSION=master
matrix:
allow_failures:
- env: REDMINE_VERSION=master
branches:
except:
- debian
install:
- export BUNDLE_GEMFILE=""
- export BUNDLE_PATH="$(pwd)/vendor/bundle"
- ./redmine update
- bundle install --jobs=3 --retry=3 --path $BUNDLE_PATH
script:
- bundle exec rake spec
| Remove Ruby 1.9 from CI | Remove Ruby 1.9 from CI
* Redmine does not install by default on Ruby 1.9 anymore due to
mime-types-data requiring Ruby 2.0 or later
| YAML | apache-2.0 | jgraichen/redmine_dashboard,jgraichen/redmine_dashboard,jgraichen/redmine_dashboard |
c86fb9bea17d10d40c607f592fd53f270a62c55f | .travis.yml | .travis.yml | services:
- cassandra
language: python
python:
- 2.7
env:
- CASSANDRA_DRIVER_VERSION=2.5.0
- CASSANDRA_DRIVER_VERSION=2.6.0
- CASSANDRA_DRIVER_VERSION=2.7.0
install:
- pip install -q cassandra-driver==$CASSANDRA_DRIVER_VERSION
- python setup.py -q install
script: py.test
| services:
- cassandra
language: python
python:
- 2.7
env:
- CASSANDRA_DRIVER_VERSION=2.5.0
- CASSANDRA_DRIVER_VERSION=2.6.0
- CASSANDRA_DRIVER_VERSION=2.7.0
install:
- pip install -q cassandra-driver==$CASSANDRA_DRIVER_VERSION
- pip install -q flask
- python setup.py -q install
script: py.test
| Install Flask before running tests | Install Flask before running tests
| YAML | isc | thegeorgeous/flask-cqlalchemy |
3ae0337fda133ff995b567f6ca67bf7b04467cd1 | .travis.yml | .travis.yml | # Copyright 2019 Google LLC
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: rust
rust:
- nightly-2020-01-16
os:
- linux
addons:
apt:
packages:
- "python3"
- "python3-pip"
- "python3-setuptools"
cache:
- rust
- cargo
before-install:
- openssl version
install:
- rustup target add thumbv7em-none-eabi
- rustup component add rustfmt
- cargo install cargo-audit
script:
- ./setup.sh
- cargo audit
- ./run_desktop_tests.sh
| # Copyright 2019 Google LLC
#
# 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
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
language: rust
rust:
- nightly-2020-01-16
os:
- linux
addons:
apt:
packages:
- "python3"
- "python3-pip"
- "python3-setuptools"
- "python3-crcmod"
cache:
- rust
- cargo
before-install:
- openssl version
install:
- rustup target add thumbv7em-none-eabi
- rustup component add rustfmt
- cargo install cargo-audit
script:
- ./setup.sh
- cargo audit
- ./run_desktop_tests.sh
| Install system python3-crcmod on Travis. | Install system python3-crcmod on Travis.
Python3-setuptools seems old and installing crcmod (dependency from
tockloader) from pip fails because of this. Installing from the system
package manager should solve the problem.
| YAML | apache-2.0 | google/OpenSK,google/OpenSK,google/OpenSK |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.