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 |
|---|---|---|---|---|---|---|---|---|---|
f37ec8d4ea71bde47d3ee68a44bcca99c6d26d39 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
script:
- cd $TRAVIS_BUILD_DIR/dnsimple
- "$HOME/gopath/bin/goveralls -v -service=travis-ci"
matrix:
allow_failures:
- go: tip
notifications:
slack:
secure: Dtb0Bf3AlAxeycfJuli46P8kG4B1at89vtMKbLKKGMwgimAWAKayNjJyuM+CaXtSiqeXOZqypKo9ScAjitQk/UTiE/NkScEZgT9wY+E0Cr+OZKBbIOLfKmFBi6+sjJUdJlVpA8aLqINOoeRH0sc6P5NE+g4StXl0C/M4PLBBfkI=
| sudo: false
language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- tip
# before_install:
# - go get github.com/axw/gocov/gocov
# - go get github.com/mattn/goveralls
# - if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
# script:
# - cd $TRAVIS_BUILD_DIR/dnsimple
# - "$HOME/gopath/bin/goveralls -v -service=travis-ci"
matrix:
allow_failures:
- go: tip
notifications:
slack:
secure: Dtb0Bf3AlAxeycfJuli46P8kG4B1at89vtMKbLKKGMwgimAWAKayNjJyuM+CaXtSiqeXOZqypKo9ScAjitQk/UTiE/NkScEZgT9wY+E0Cr+OZKBbIOLfKmFBi6+sjJUdJlVpA8aLqINOoeRH0sc6P5NE+g4StXl0C/M4PLBBfkI=
| Disable Coverall that is misbehaving | Disable Coverall that is misbehaving
See https://github.com/lemurheavy/coveralls-public/issues/713
| YAML | mit | weppos/go-dnsimple,aetrion/dnsimple-go |
bc1d02ea1f7e3e896ae30f5d708333f17594bef6 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
before_install:
- composer install
script:
- composer cs-fix
- composer test
| language: php
sudo: false
php:
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
before_install:
- composer install -n
- composer cs-fix
script:
- composer test
| Change the composer cs-fix position | Change the composer cs-fix position
| YAML | mit | oscarotero/typofixer |
210aa0dd06fe5c72cb60a6484aa226f9e08fc7ed | .travis.yml | .travis.yml | language: rust
matrix:
include:
- os: linux
rust: stable
dist: trusty
- os: linux
rust: nightly
dist: trusty
- os: osx
rust: stable
- os: osx
rust: nightly
script:
- rustc --version
- cargo install clippy || touch clippy_failed
- RUST_BACKTRACE=1 cargo build
- if [ ! -f clippy_failed ]; then cargo clippy; fi
- if [ ! -f clippy_failed ]; then cargo bench; fi
- RUST_BACKTRACE=1 cargo test
- cd examples
- RUST_BACKTRACE=1 cargo build
- if [ ! -f ../clippy_failed ]; then cargo clippy; fi
- cd ..
- make
- LD_LIBRARY_PATH=./target/debug ./simple
| language: rust
matrix:
include:
- os: linux
env: TARGET=armv7-unknown-linux-gnueabihf
rust: stable
dist: trusty
- os: linux
env: TARGET=x86_64-apple-darwin
rust: stable
dist: trusty
- os: linux
env: TARGET=armv7-unknown-linux-gnueabihf
rust: nightly
dist: trusty
- os: linux
env: TARGET=x86_64-apple-darwin
rust: nightly
dist: trusty
- os: osx
rust: stable
- os: osx
rust: nightly
script:
- rustc --version
- cargo install clippy || touch clippy_failed
- RUST_BACKTRACE=1 cargo build
- if [ ! -f clippy_failed ]; then cargo clippy; fi
- if [ ! -f clippy_failed ]; then cargo bench; fi
- RUST_BACKTRACE=1 cargo test
- cd examples
- RUST_BACKTRACE=1 cargo build
- if [ ! -f ../clippy_failed ]; then cargo clippy; fi
- cd ..
- make
- LD_LIBRARY_PATH=./target/debug ./simple
| Add CI for raspberry as well | Add CI for raspberry as well
| YAML | mit | GuillaumeGomez/sysinfo,GuillaumeGomez/sysinfo |
373d1e1ea0593fd04abea4c2580db59e6e9f0e9f | .travis.yml | .travis.yml | notifications:
email:
on_success: never
on_failure: change
sudo: required
services:
- docker
before_install:
- make clean
install:
- make debian-build
- make manylinux-build
script:
- make full-release
deploy:
provider: script
script: echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin && make full-push
on:
branch: master
| notifications:
email:
on_success: never
on_failure: change
sudo: required
services:
- docker
before_install:
- make clean
install:
- make debian-build
- make manylinux-build
script:
- make full-release
- if [ -z "$TRAVIS_TAG" ]; then exit 0; fi
- make full-release TAG="$TRAVIS_TAG"
deploy:
- provider: script
script: echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin && make full-push
on:
branch: master
- provider: script
script: echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin && make full-push
on:
tags: true
| Tag images from command line | Tag images from command line
| YAML | mit | CoolProp/Dockerfiles |
1099809ff477f570363d6579a1e27187bda07735 | .travis.yml | .travis.yml | language: python
python:
- 3.6
install:
- pip install -r requirements.txt
- python setup.py build
- python setup.py install
# command to run tests
script:
- pytest # or py.test for Python versions 3.5 and below
| language: python
python:
- 3.6
install:
- pip install -r requirements.txt
- python setup.py build
- python setup.py install
# command to run tests
script:
- python -m pytest # or py.test for Python versions 3.5 and below
| Call tests differently to get around pytest dependency | Call tests differently to get around pytest dependency
| YAML | bsd-2-clause | nmoran/pf_resonances |
9e8c4dd936fa0d4a7d012656e8ccf4c9ecd8b218 | .travis.yml | .travis.yml | language: ruby
cache: bundler
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.3.0
- 2.2.4
- 2.1.8
| Build on new Travis platform | Build on new Travis platform
| YAML | mit | enova/sidekiq-rate-limiter |
d7bfeb7a808cff115e00ac8688bc9cdae1b021cf | .travis.yml | .travis.yml | language: node_js
node_js:
- node
- iojs
notifications:
email: false
| sudo: false
language: node_js
node_js:
- node
- iojs
notifications:
email: false
| Set TravisCI to container-based infrastructure. | Set TravisCI to container-based infrastructure.
| YAML | mit | albertosantini/node-nanoirc,albertosantini/node-nanoirc |
22538d0bac4e8b6337114fccfdfeb6d1ad0ef2d2 | .travis.yml | .travis.yml | language: go
go:
- 1.9
- "1.10.x"
- "1.11.x"
install:
- go get golang.org/x/lint/golint
- go get -v -t .
script:
- make
notifications:
email: change
| language: go
go:
- "1.10.x"
- "1.11.x"
- "1.12.x"
install:
- go get golang.org/x/lint/golint
- go get -v -t .
script:
- make
notifications:
email: change
| Add Go v1.12 and remove Go v1.9 | Add Go v1.12 and remove Go v1.9
| YAML | mit | dghubble/sling |
6dc610d796f785d42eafc5bdd105854d59c3655b | .travis.yml | .travis.yml | language: php
php:
- 7.0
- 7.1
before_script:
- travis_retry composer self-update
- travis_retry composer update --no-interaction --prefer-source
script:
- phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| language: php
php:
- 7.2
- 7.3
before_script:
- travis_retry composer self-update
- travis_retry composer update --no-interaction --prefer-source
script:
- phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| Replace PHP 7.0 and 7.1 with 7.2 and 7.3 in Travis test matrix | Replace PHP 7.0 and 7.1 with 7.2 and 7.3 in Travis test matrix | YAML | mit | Alymosul/laravel-exponent-push-notifications |
d23c11e668c8c2b502bcd045973aa0e3df5ddec2 | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
sudo: required
dist: trusty
addons:
chrome: stable
before_install:
- # start web application and listen on `localhost`
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=8001 http://localhost &
install: true
script: mvn clean install -DskipDocker
branches:
only: master
cache:
directories:
- $HOME/.m2/repository/
- $HOME/.m2/wrapper/
notifications:
email: false | language: java
jdk: oraclejdk8
sudo: false
install: true
script: mvn clean install -DskipDocker
branches:
only: master
cache:
directories:
- $HOME/.m2/repository/
- $HOME/.m2/wrapper/
notifications:
email: false | Add Chrome headless browser for UI tests | Add Chrome headless browser for UI tests
| YAML | apache-2.0 | rodionovsasha/ShoppingList,rodionovsasha/ShoppingList,rodionovsasha/ShoppingList |
5d255077f1f3921ffda9613079a1d6ebfbf6b922 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- pypy
install:
- "pip install ."
- "pip install -r test_requirements.txt"
script:
- >
if [[ $TRAVIS_PYTHON_VERSION == pypy ]]; then
py.test test/
else
py.test -n 4 --cov hyper test/
coverage report -m --fail-under 100
fi
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- pypy
install:
- "pip install ."
- "pip install -r test_requirements.txt"
script:
- >
if [[ $TRAVIS_PYTHON_VERSION == pypy ]]; then
py.test test/
else
py.test -n 4 --cov hyper test/
coverage report -m
fi
| Remove fail-under directive from Travis. | Remove fail-under directive from Travis.
This is just not necessary right now while we're still in rapid
development.
| YAML | mit | mhils/hyper-h2,python-hyper/hyper-h2,Kriechi/hyper-h2,Kriechi/hyper-h2,vladmunteanu/hyper-h2,bhavishyagopesh/hyper-h2,vladmunteanu/hyper-h2,python-hyper/hyper-h2 |
e42a1181c34a64183c346c03ac32f8c004c7530b | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "6"
- "8"
| Add node 4, 6 and 8 to CI build. | Add node 4, 6 and 8 to CI build.
| YAML | bsd-3-clause | alexjeffburke/unexpected-events |
18a8e07ac8b0366f887632c393290e90938ac79c | .travis.yml | .travis.yml | language: go
go:
- 1.9.3
- 1.8.6
sudo: false
script:
- go vet ./...
- go test ./...
| language: go
go:
- "1.10"
- 1.9.4
sudo: false
script:
- go vet ./...
- go test ./...
| Build against 1.10 and 1.9.4 | Build against 1.10 and 1.9.4 | YAML | mit | TV4/diva |
df714f44c159613975344af5a326aca65c359f59 | .travis.yml | .travis.yml | language: objective-c
before_install:
- brew install sloccount
- sudo easy_install pip
after_success:
- pip install coviolations_app
- covio
| language: objective-c
before_install:
- brew install sloccount
- sudo easy_install pip
after_success:
- sudo pip install coviolations_app
- covio
| Fix sudo for pip install. | Fix sudo for pip install.
| YAML | mpl-2.0 | node-app/Nodelike,node-app/Nodelike,mralexgray/Nodelike,mralexgray/Nodelike |
67b640f7e6c1a879dbde5c2d5f89122fda021238 | .travis.yml | .travis.yml | before_script:
- "ruby --version"
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake db:create db:migrate"
script: "DISPLAY=:99.0 bundle exec rake spec"
notifications:
email:
- parndt@gmail.com
- ugis.ozolss@gmail.com
irc:
- "irc.freenode.org#refinerycms"
env:
- DB=postgres
- DB=mysql
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx
# - jruby
| before_script:
- "ruby --version"
- "sh -e /etc/init.d/xvfb start"
- "bundle exec rake db:create db:migrate"
script: "DISPLAY=:99.0 bundle exec rspec ./*/spec"
notifications:
email:
- parndt@gmail.com
- ugis.ozolss@gmail.com
irc:
- "irc.freenode.org#refinerycms"
env:
- DB=postgres
- DB=mysql
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- rbx
# - jruby
| Use rspec directly instead of rake to lower boot time with Travis | Use rspec directly instead of rake to lower boot time with Travis
| YAML | mit | simi/refinerycms,Eric-Guo/refinerycms,mlinfoot/refinerycms,KingLemuel/refinerycms,mojarra/myrefinerycms,johanb/refinerycms,chrise86/refinerycms,aguzubiaga/refinerycms,gwagener/refinerycms,mobilityhouse/refinerycms,mabras/refinerycms,mkaplan9/refinerycms,hoopla-software/refinerycms,bryanmtl/g-refinerycms,sideci-sample/sideci-sample-refinerycms,chrise86/refinerycms,LytayTOUCH/refinerycms,anitagraham/refinerycms,louim/refinerycms,mlinfoot/refinerycms,aguzubiaga/refinerycms,mkaplan9/refinerycms,kelkoo-services/refinerycms,kappiah/refinerycms,Eric-Guo/refinerycms,simi/refinerycms,KingLemuel/refinerycms,bricesanchez/refinerycms,pcantrell/refinerycms,kelkoo-services/refinerycms,mojarra/myrefinerycms,stefanspicer/refinerycms,mobilityhouse/refinerycms,mabras/refinerycms,gwagener/refinerycms,stefanspicer/refinerycms,gwagener/refinerycms,hoopla-software/refinerycms,Retimont/refinerycms,louim/refinerycms,refinery/refinerycms,sideci-sample/sideci-sample-refinerycms,anitagraham/refinerycms,refinery/refinerycms,trevornez/refinerycms,pcantrell/refinerycms,refinery/refinerycms,chrise86/refinerycms,mabras/refinerycms,LytayTOUCH/refinerycms,johanb/refinerycms,Retimont/refinerycms,kappiah/refinerycms,mlinfoot/refinerycms,Eric-Guo/refinerycms,trevornez/refinerycms,anitagraham/refinerycms,SmartMedia/refinerycms-with-custom-icons,trevornez/refinerycms,stefanspicer/refinerycms,Retimont/refinerycms,simi/refinerycms,kappiah/refinerycms,KingLemuel/refinerycms,SmartMedia/refinerycms-with-custom-icons,simi/refinerycms,aguzubiaga/refinerycms,mkaplan9/refinerycms,hoopla-software/refinerycms,LytayTOUCH/refinerycms,johanb/refinerycms,bricesanchez/refinerycms,bryanmtl/g-refinerycms |
724d2d05616dca4c0da386273cd55e2ec5e176e5 | .travis.yml | .travis.yml | dist: trusty
sudo: false
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
before_install:
- pip install --user cpp-coveralls libev-dev rrdtool-dev
compiler:
- gcc
before_script:
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Debug -DCOVERAGE=On -DTRAVIS=On
script:
- make
- ctest -V
after_success:
- coveralls --root .. -E ".*external.*" -E ".*CMakeFiles.*" -E ".*tests/.*.cpp.*" -E ".*test_main/.*.cpp.*" -E ".*test_main/.*.h.*" -E ".*test_main/.*.cc.*"
| dist: trusty
sudo: required
language: cpp
addons:
apt:
sources:
- ubuntu-toolchain-r-test
before_install:
- pip install --user cpp-coveralls
- sudo apt-get -qq -y install libev-dev rrdtool-dev
compiler:
- gcc
before_script:
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Debug -DCOVERAGE=On -DTRAVIS=On
script:
- make
- ctest -V
after_success:
- coveralls --root .. -E ".*external.*" -E ".*CMakeFiles.*" -E ".*tests/.*.cpp.*" -E ".*test_main/.*.cpp.*" -E ".*test_main/.*.h.*" -E ".*test_main/.*.cc.*"
| Add libev, rrdtool setup 2 | Add libev, rrdtool setup 2
| YAML | mit | vvromanov/hilo_utils,vvromanov/hilo_utils,vvromanov/hilo_utils |
2ce4cb3e29fe8ae453cf76f9f497a3589a1a89b9 | .travis.yml | .travis.yml | language: ruby
os:
- linux
- osx
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
script: bundle exec rake spec features
sudo: false
| language: ruby
os:
- linux
- osx
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
before_install:
- gem update --system
- gem install bundler
script: bundle exec rake spec features
sudo: false
| Test on the latest version of Rubygems and Bundler | Test on the latest version of Rubygems and Bundler
| YAML | mit | envato/stack_master,envato/stack_master |
f7a6191ea36cb48089d110ef5656df4e1cacc026 | .travis.yml | .travis.yml | language: cpp
os:
- linux
- osx
compiler:
- gcc
- clang
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
matrix:
exclude:
- os: osx
compiler: gcc
install:
# Install dependencies for FCL
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then 'ci/install_linux.sh' ; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then 'ci/install_osx.sh' ; fi
script:
# Create build directory
- mkdir build
- cd build
# Configure
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
# Build
- make -j4
# Run unit tests
- make test
# Make sure we can install with no issues
- sudo make -j4 install
| language: cpp
os:
- linux
- osx
compiler:
- gcc
- clang
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
matrix:
exclude:
- os: osx
compiler: gcc
install:
# Install dependencies for FCL
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then 'ci/install_linux.sh' ; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then 'ci/install_osx.sh' ; fi
script:
# Create build directory
- mkdir build
- cd build
# Configure
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE ..
# Build
- make -j4
# Run unit tests
- make test
# Make sure we can install and uninstall with no issues
- sudo make -j4 install
- sudo make -j4 uninstall
| Add uninstall test to Travis-CI | Add uninstall test to Travis-CI
| YAML | bsd-3-clause | mamoll/fcl,EdsterG/fcl,mamoll/fcl,EdsterG/fcl,hsu/fcl,hsu/fcl,uschwes/fcl,uschwes/fcl,hsu/fcl,uschwes/fcl,EdsterG/fcl,mamoll/fcl |
9e0a862ba55a62e32a266c4bdd05e52fe18730d5 | .travis.yml | .travis.yml | language: rust
rust:
- stable
- beta
- nightly
sudo: false
install:
- >
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
export CC="clang";
export CXX="clang++";
. gnustep_install.sh;
export FEATURES="--features gnustep";
else
export FEATURES="";
fi
script:
- cargo build $FEATURES
- cargo test $FEATURES
- cargo doc $FEATURES
os:
- linux
- osx
addons:
apt:
packages:
- clang-3.7
- cmake
| language: rust
rust:
- stable
- nightly
os:
- osx
- linux
env:
- FEATURES=""
- FEATURES="exception"
matrix:
exclude:
- os: linux
env: FEATURES="exception"
sudo: false
install: >
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
export FEATURES="gnustep $FEATURES";
export CC="clang";
export CXX="clang++";
. gnustep_install.sh;
fi
script:
- cargo build --verbose --features "$FEATURES"
- cargo test --verbose --features "$FEATURES"
addons:
apt:
packages:
- clang-3.7
- cmake
| Allow testing features on Travis. | Allow testing features on Travis.
| YAML | mit | ngrewe/rust-objc,SSheldon/rust-objc,ngrewe/rust-objc,SSheldon/rust-objc |
cc8d33250c5e916e621cc4be1ca8ca12216f106e | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install stomp.py
- pip install python-daemon
- pip install python-ldap
- pip install dirq
- pip install unittest2
# command to run tests, e.g. python setup.py test
script:
- export PYTHONPATH=$PYTHONPATH:`pwd -P`
- cd test
#- unit2 discover
# Just run test_brokers for the moment until other tests are worked on
- unit2 test_brokers
| language: python
python:
- "2.6"
- "2.7"
- "3.4"
matrix:
allow_failures:
- python: "2.7"
- python: "3.4"
fast_finish: true
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install stomp.py
- pip install python-daemon
- pip install python-ldap
- pip install dirq
- pip install unittest2
# command to run tests, e.g. python setup.py test
script:
- export PYTHONPATH=$PYTHONPATH:`pwd -P`
- cd test
#- unit2 discover
# Just run test_brokers for the moment until other tests are worked on
- unit2 test_brokers
| Add Python 3 to CI build matrix | Add Python 3 to CI build matrix
- Add Python 3.4 to CI build matrix so that we can see what would need to
change to allow support for Python 3.
- Set build matrix to allow failures for Python 2.7 and 3.4 as they do
not need to be supported at the moment.
- Set CI file to fast finish so we don't have to wait for builds of
versions that are allowed to fail.
| YAML | apache-2.0 | tofu-rocketry/ssm,stfc/ssm,stfc/ssm,tofu-rocketry/ssm,apel/ssm,apel/ssm |
bf8fc1bb7f9571686d77c96ed38128744981c5c5 | .travis.yml | .travis.yml | language: cpp
dist: focal
compiler:
- gcc
os:
- linux
env:
- QT_VERSION=qt512 QT_PPA=qt-5.12.9
- QT_VERSION=qt514 QT_PPA=qt-5.14.2
- QT_VERSION=qt515 QT_PPA=qt-5.15.0
before_install:
- sudo add-apt-repository --yes ppa:beineri/opt-$QT_PPA-focal
- sudo apt-get update -qq
install:
- sudo apt-get -y install $QT_VERSION-meta-minimal
script:
- . /opt/$QT_VERSION/bin/$QT_VERSION-env.sh
- qmake
- make
- make check
| language: cpp
dist: focal
compiler:
- gcc
os:
- linux
env:
- QT_VERSION=qt512 QT_PPA=qt-5.12.9
- QT_VERSION=qt514 QT_PPA=qt-5.14.2
- QT_VERSION=qt515 QT_PPA=qt-5.15.0
before_install:
- sudo add-apt-repository --yes ppa:beineri/opt-$QT_PPA-focal
- sudo apt-get update -qq
install:
- sudo apt-get -y install $QT_VERSIONbase
script:
- . /opt/$QT_VERSION/bin/$QT_VERSION-env.sh
- qmake
- make
- make check
| Install qtbase instead of meta package | Install qtbase instead of meta package
| YAML | apache-2.0 | MEONMedical/Log4Qt,MEONMedical/Log4Qt |
c6f395171ebaaf008bc8a6fc6d94408b092bb4b0 | .travis.yml | .travis.yml | # https://docs.travis-ci.com/user/languages/android
language: android
android:
components:
- platform-tools
- tools
- build-tools-24.0.2
- android-24
- sys-img-armeabi-v7a-android-24
- extra-android-m2repository
#compileSdkVersion 'android-24' requires JDK 1.8 or later to compile.
jdk:
- oraclejdk8
#Only CI for master & dev
branches:
only:
- master
- dev
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
before_script:
# Create and start emulator
- echo no | android create avd --force -n test -t android-24 --abi armeabi-v7a
- emulator -avd test -no-skin -no-audio -no-window &
- android-wait-for-emulator
- adb shell input keyevent 82 &
script:
- ./gradlew clean connectAndroidTest assembleRelease --stacktrace | # https://docs.travis-ci.com/user/languages/android
language: android
android:
components:
- platform-tools
- tools
- build-tools-25.0.2
- android-25
# - sys-img-armeabi-v7a-android-24
- extra-android-m2repository
licenses:
- 'android-sdk-license.*'
#compileSdkVersion 'android-24' requires JDK 1.8 or later to compile.
jdk:
- oraclejdk8
#Only CI for master & dev
branches:
only:
- master
- dev
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
#before_script:
# # Create and start emulator
# - echo no | android create avd --force -n test -t android-24 --abi armeabi-v7a
# - emulator -avd test -no-skin -no-audio -no-window &
# - android-wait-for-emulator
# - adb shell input keyevent 82 &
#script:
# - ./gradlew clean connectAndroidTest assembleRelease --stacktrace
script:
./gradlew clean build | Fix CI licence issue and remove instrumentation test script. | Fix CI licence issue and remove instrumentation test script.
| YAML | apache-2.0 | Muyangmin/Android-PLog |
688f32a76a08a95f261fa6f35f12bce23a0daa39 | .travis.yml | .travis.yml | language: ruby
script: rake ci
rvm:
- 1.9.3
- 2.0
- 2.1
- ruby-head
- jruby-19mode
- jruby-head
- rbx-2
- rbx-head
gemfile:
- Gemfile
- Gemfile-jruby
matrix:
exclude:
- rvm: 1.9.3
gemfile: Gemfile-jruby
- rvm: 2.0
gemfile: Gemfile-jruby
- rvm: 2.1
gemfile: Gemfile-jruby
- rvm: ruby-head
gemfile: Gemfile-jruby
- rvm: jruby-19mode
gemfile: Gemfile
- rvm: jruby-head
gemfile: Gemfile
- rvm: rbx-2
gemfile: Gemfile-jruby
- rvm: rbx-head
gemfile: Gemfile-jruby
allow_failures:
- rvm: jruby-19mode
- rvm: jruby-head
- rvm: rbx-2
- rvm: rbx-head
| language: ruby
script: rake ci
rvm:
- 1.9.3
- 2.0
- 2.1
- ruby-head
- jruby-19mode
- jruby-head
- rbx-2.0
- rbx-2.1
- rbx-2.2
gemfile:
- Gemfile
- Gemfile-jruby
matrix:
exclude:
- rvm: 1.9.3
gemfile: Gemfile-jruby
- rvm: 2.0
gemfile: Gemfile-jruby
- rvm: 2.1
gemfile: Gemfile-jruby
- rvm: ruby-head
gemfile: Gemfile-jruby
- rvm: jruby-19mode
gemfile: Gemfile
- rvm: jruby-head
gemfile: Gemfile
- rvm: rbx-2.0
gemfile: Gemfile-jruby
- rvm: rbx-2.1
gemfile: Gemfile-jruby
- rvm: rbx-2.2
gemfile: Gemfile-jruby
- rvm: rbx-head
gemfile: Gemfile-jruby
allow_failures:
- rvm: jruby-19mode
- rvm: jruby-head
- rvm: rbx-2.0
- rvm: rbx-2.1
- rvm: rbx-2.2
| Update Rubinius runs for Travis | Update Rubinius runs for Travis
| YAML | mit | usmu/usmu,usmu/usmu |
73f7ae0772c764b1f554ce8190c6735334943877 | .travis.yml | .travis.yml | language: php
php:
- 5.5
before_script:
- npm install -g grunt-cli
- npm install -S console-browserify
- npm install
install:
- composer self-update
- composer install --no-interaction
script:
- phpunit
- npm test
| language: php
php:
- 5.5
before_script:
- npm install -g grunt-cli
- npm install
- mkdir -p dist/js
install:
- composer self-update
- composer install --no-interaction
script:
- phpunit
- npm test
| Make Travis create the dist/js directory for npm test | Make Travis create the dist/js directory for npm test
| YAML | mit | jadu/pulsar,jadu/pulsar,jadu/pulsar |
d46080aa51f5333408e967a7642a69f5aaed27d2 | .travis.yml | .travis.yml | sudo: true
language: cpp
os:
- linux
- osx
compiler:
- gcc
- clang
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi
- if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.6" CC="clang-3.6"; fi
before_script:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sh build_scripts/linux_setup.sh; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then sh build_scripts/osx_setup.sh; fi
script:
- mkdir build
- cd build
- cmake ../
- make
- make test
notifications:
email:
recipients: adastley@gmail.com
on_success: change
on_failure: change
| sudo: true
language: cpp
os:
- linux
- osx
compiler:
- gcc
- clang
install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-5" CC="gcc-5"; fi
- if [ "$CXX" = "clang++" ]; then export CXX="clang++-3.7" CC="clang-3.7"; fi
before_script:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then sh build_scripts/linux_setup.sh; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then sh build_scripts/osx_setup.sh; fi
script:
- mkdir build
- cd build
- cmake ../
- make
- make test
notifications:
email:
recipients: adastley@gmail.com
on_success: change
on_failure: change
| Correct the version of clang | CI: Correct the version of clang
| YAML | apache-2.0 | jklarowicz/FiberTaskingLib,jklarowicz/FiberTaskingLib,jklarowicz/FiberTaskingLib |
f628c4d8a255df0ec3af043b55bbc273242321fd | .travis.yml | .travis.yml | language: python
install:
- pip install -r requirements-test.txt
python:
- "2.7"
sudo: false
cache:
directories:
- $HOME/.cache/pip
env:
- TOXENV=py27
- TOXENV=py34
install:
- pip install -q --use-mirrors tox
script:
- tox --hashseed=noset
| language: python
install:
- pip install -r requirements-test.txt
python:
- "2.7"
sudo: false
cache:
directories:
- $HOME/.cache/pip
env:
- TOXENV=py27
- TOXENV=py34
install:
- pip install -q --use-mirrors tox
script:
- tox
| Allow tox to use random hash seeds | Allow tox to use random hash seeds
| YAML | mit | Psycojoker/HamlPy,nyaruka/django-hamlpy,Psycojoker/HamlPy,nyaruka/django-hamlpy,Psycojoker/HamlPy |
835f7184c6ffdf29aa3171dcdca6c9ea17e9f35f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
env:
- DB=sqlite3
- DB=mysql
- DB=pg
matrix:
allow_failures:
- env: DB=pg
before_install:
- git submodule update --init
- gem update --system
- gem install sass bourbon
- npm install -g grunt-cli
- git clone git://github.com/n1k0/casperjs.git ~/casperjs
- cd ~/casperjs
- git checkout tags/1.1-beta1
- export PATH=$PATH:`pwd`/bin
- cd -
- if [ $DB == "mysql" ]; then mysql -e 'create database ghost_travis'; fi
- if [ $DB == "pg" ]; then npm install pg; psql -c 'create database ghost_travis;' -U postgres; fi
before_script:
- phantomjs --version
- casperjs --version
- grunt init
| language: node_js
node_js:
- "0.10"
env:
- DB=sqlite3
- DB=mysql
- DB=pg
matrix:
allow_failures:
- env: DB=pg
before_install:
- git submodule update --init
- gem update --system
- gem install sass bourbon
- npm install -g grunt-cli
- git clone git://github.com/n1k0/casperjs.git ~/casperjs
- cd ~/casperjs
- git checkout tags/1.1-beta3
- export PATH=$PATH:`pwd`/bin
- cd -
- if [ $DB == "mysql" ]; then mysql -e 'create database ghost_travis'; fi
- if [ $DB == "pg" ]; then npm install pg; psql -c 'create database ghost_travis;' -U postgres; fi
before_script:
- phantomjs --version
- casperjs --version
- grunt init
| Update Casper version on Travis | Update Casper version on Travis
| YAML | mit | mlabieniec/ghost-env,rwjblue/Ghost,ASwitlyk/Ghost,Remchi/Ghost,shannonshsu/Ghost,tyrikio/Ghost,yangli1990/Ghost,qdk0901/Ghost,davidenq/Ghost-Blog,rameshponnada/Ghost,NovaDevelopGroup/Academy,jgillich/Ghost,madole/diverse-learners,rmoorman/Ghost,UsmanJ/Ghost,bosung90/Ghost,carlyledavis/Ghost,vainglori0us/urban-fortnight,carlosmtx/Ghost,allspiritseve/mindlikewater,sebgie/Ghost,nneko/Ghost,choskim/GhostAzure,bastianbin/Ghost,TribeMedia/Ghost,exsodus3249/Ghost,flpms/ghost-ad,Kaenn/Ghost,telco2011/Ghost,Elektro1776/javaPress,PeterCxy/Ghost,jorgegilmoreira/ghost,laispace/laiblog,vainglori0us/urban-fortnight,GroupxDev/javaPress,ThorstenHans/Ghost,Xibao-Lv/Ghost,thinq4yourself/Unmistakable-Blog,aexmachina/blog-old,mlabieniec/ghost-env,Netazoic/bad-gateway,diancloud/Ghost,katrotz/blog.katrotz.space,kaychaks/kaushikc.org,edsadr/Ghost,davidenq/Ghost-Blog,veyo-care/Ghost,Elektro1776/javaPress,BlueHatbRit/Ghost,hoxoa/Ghost,AnthonyCorrado/Ghost,AileenCGN/Ghost,hnarayanan/narayanan.co,bbmepic/Ghost,axross/ghost,qdk0901/Ghost,alexandrachifor/Ghost,rchrd2/Ghost,claudiordgz/Ghost,ashishapy/ghostpy,novaugust/Ghost,notno/Ghost,halfdan/Ghost,jomahoney/Ghost,andrewconnell/Ghost,dbalders/Ghost,ryansukale/ux.ryansukale.com,JonathanZWhite/Ghost,smaty1/Ghost,blankmaker/Ghost,devleague/uber-hackathon,NodeJSBarenko/Ghost,singular78/Ghost,alanmoo/moo-on-the-web,schematical/Ghost,Xibao-Lv/Ghost,Bunk/Ghost,ignasbernotas/nullifer,Rovak/Ghost,Smile42RU/Ghost,pbevin/Ghost,acburdine/Ghost,greenboxindonesia/Ghost,Kikobeats/Ghost,rollokb/Ghost,melissaroman/ghost-blog,e10/Ghost,v3rt1go/Ghost,optikalefx/Ghost,hnarayanan/narayanan.co,devleague/uber-hackathon,k2byew/Ghost,metadevfoundation/Ghost,kaiqigong/Ghost,dggr/Ghost-sr,sceltoas/Ghost,choskim/Ghost,skmezanul/Ghost,jparyani/GhostSS,dgem/Ghost,JonSmith/Ghost,Japh/Ghost,dai-shi/Ghost,pollbox/ghostblog,lukekhamilton/Ghost,shannonshsu/Ghost,neynah/GhostSS,ashishapy/ghostpy,ManRueda/manrueda-blog,STANAPO/Ghost,cncodog/Ghost-zh-codog,allanjsx/Ghost,allspiritseve/mindlikewater,weareleka/blog,dai-shi/Ghost,ryanbrunner/crafters,ivanoats/ivanstorck.com,veyo-care/Ghost,PaulBGD/Ghost-Plus,devleague/uber-hackathon,karmakaze/Ghost,kolorahl/Ghost,chevex/undoctrinate,etanxing/Ghost,fredeerock/atlabghost,javorszky/Ghost,praveenscience/Ghost,TribeMedia/Ghost,GarrethDottin/Habits-Design,benstoltz/Ghost,llv22/Ghost,gleneivey/Ghost,thehogfather/Ghost,jiachenning/Ghost,mattchupp/blog,sfpgmr/Ghost,cncodog/Ghost-zh-codog,zackslash/Ghost,wallmarkets/Ghost,Japh/shortcoffee,lanffy/Ghost,xiongjungit/Ghost,rtorino/me-etc,jomofrodo/ccb-ghost,julianromera/Ghost,pollbox/ghostblog,madole/diverse-learners,ygbhf/Ghost,syaiful6/Ghost,wemakeweb/Ghost,makapen/Ghost,denzelwamburu/denzel.xyz,e10/Ghost,kwangkim/Ghost,psychobunny/Ghost,klinker-apps/ghost,ananthhh/Ghost,morficus/Ghost,NamedGod/Ghost,beautyOfProgram/Ghost,tandrewnichols/ghost,kaiqigong/Ghost,mdbw/ghost,Shauky/Ghost,mnitchie/Ghost,floofydoug/Ghost,Feitianyuan/Ghost,tadityar/Ghost,aroneiermann/GhostJade,choskim/ghost_exp,panezhang/Ghost,ddeveloperr/Ghost,lukw00/Ghost,shrimpy/Ghost,ghostchina/Ghost-zh,rito/Ghost,tchapi/igneet-blog,thomasalrin/Ghost,etdev/blog,dYale/blog,Sing-Li/GhostSS,manishchhabra/Ghost,nmukh/Ghost,hyokosdeveloper/Ghost,mayconxhh/Ghost,NamedGod/Ghost,ErisDS/Ghost,yangli1990/Ghost,Loyalsoldier/Ghost,mohanambati/Ghost,johngeorgewright/blog.j-g-w.info,SkynetInc/steam,PDXIII/Ghost-FormMailer,zeropaper/Ghost,FredericBernardo/Ghost,alecho/Ghost,uniqname/everydaydelicious,rafaelstz/Ghost,situkangsayur/Ghost,10hacks/blog,mohanambati/Ghost,daihuaye/Ghost,ManRueda/manrueda-blog,zhiyishou/Ghost,JohnONolan/Ghost,cqricky/Ghost,sifatsultan/js-ghost,no1lov3sme/Ghost,dylanchernick/ghostblog,leonli/ghost,javimolla/Ghost,janvt/Ghost,barbastan/Ghost,Dnlyc/Ghost,netputer/Ghost,zhiyishou/Ghost,mayconxhh/Ghost,jamesyothers/Ghost,yundt/seisenpenji,vainglori0us/urban-fortnight,NikolaiIvanov/Ghost,achimos/ghost_as,arvidsvensson/Ghost,schneidmaster/theventriloquist.us,jamesslock/Ghost,DesenTao/Ghost,r1N0Xmk2/Ghost,disordinary/Ghost,tuan/Ghost,ghostchina/website,jorgegilmoreira/ghost,Dnlyc/Ghost,icowan/Ghost,singular78/Ghost,atandon/Ghost,ckousik/Ghost,rameshponnada/Ghost,eduardojmatos/eduardomatos.me,cysys/ghost-openshift,mikecastro26/ghost-custom,mtvillwock/Ghost,vlmhco/personal-blog,Alxandr/Blog,karmakaze/Ghost,LeandroNascimento/Ghost,Klaudit/Ghost,choskim/Ghost,johnnymitch/Ghost,greenboxindonesia/Ghost,hyokosdeveloper/Ghost,Japh/Ghost,duyetdev/islab,singular78/Ghost,rizkyario/Ghost,janvt/Ghost,Brunation11/Ghost,ThorstenHans/Ghost,francisco-filho/Ghost,kortemy/Ghost,cicorias/Ghost,scopevale/wethepeopleweb.org,kaychaks/kaushikc.org,ITJesse/Ghost-zh,vloom/blog,blankmaker/Ghost,diogogmt/Ghost,skleung/blog,edsadr/Ghost,sergeylukin/Ghost,freele/ghost,chris-yoon90/Ghost,kmeurer/GhostAzureSetup,ManRueda/Ghost,dggr/Ghost-sr,rizkyario/Ghost,psychobunny/Ghost,cgiffard/Ghost,jomofrodo/ccb-ghost,SachaG/bjjbot-blog,allanjsx/Ghost,thomasalrin/Ghost,carlosmtx/Ghost,daimaqiao/Ghost-Bridge,anijap/PhotoGhost,trepafi/ghost-base,wangjun/Ghost,dbalders/Ghost,influitive/crafters,jeonghwan-kim/Ghost,daimaqiao/Ghost-Bridge,Sebastian1011/Ghost,acburdine/Ghost,pensierinmusica/Ghost,claudiordgz/Ghost,v3rt1go/Ghost,letsjustfixit/Ghost,riyadhalnur/Ghost,theonlypat/Ghost,handcode7/Ghost,MadeOnMars/Ghost,memezilla/Ghost,AlexKVal/Ghost,memezilla/Ghost,YY030913/Ghost,lowkeyfred/Ghost,davegw/dgw-website,aroneiermann/GhostJade,jacostag/Ghost,ClarkGH/Ghost,letsjustfixit/Ghost,Coding-House/Ghost,letsjustfixit/Ghost,imjerrybao/Ghost,ClarkGH/Ghost,jomofrodo/ccb-ghost,davegw/dgw-website,imjerrybao/Ghost,zumobi/Ghost,kortemy/Ghost,carlyledavis/Ghost,sajmoon/Ghost,exsodus3249/Ghost,skmezanul/Ghost,Jonekee/Ghost,bosung90/Ghost,k2byew/Ghost,rchrd2/Ghost,tidyui/Ghost,GroupxDev/javaPress,Elektro1776/javaPress,gleneivey/Ghost,edurangel/Ghost,PeterCxy/Ghost,panezhang/Ghost,andrewconnell/Ghost,barbastan/Ghost,tksander/Ghost,IbrahimAmin/Ghost,aschmoe/jesse-ghost-app,ljhsai/Ghost,Gargol/Ghost,Gargol/Ghost,FredericBernardo/Ghost,wangjun/Ghost,Romdeau/Ghost,bsansouci/Ghost,SkynetInc/steam,dymx101/Ghost,woodyrew/Ghost,leninhasda/Ghost,dqj/Ghost,TryGhost/Ghost,gcamana/Ghost,smedrano/Ghost,cwonrails/Ghost,mtvillwock/Ghost,codeincarnate/Ghost,allanjsx/Ghost,smaty1/Ghost,UnbounDev/Ghost,camilodelvasto/localghost,pedroha/Ghost,jiangjian-zh/Ghost,anijap/PhotoGhost,sergeylukin/Ghost,liftup/ghost,ballPointPenguin/Ghost,handcode7/Ghost,cicorias/Ghost,makapen/Ghost,rizkyario/Ghost,hoxoa/Ghost,kortemy/Ghost,hilerchyn/Ghost,LeandroNascimento/Ghost,sebgie/Ghost,jgladch/taskworksource,KnowLoading/Ghost,lethalbrains/Ghost,oimou-house/blog,mdbw/ghost,InnoD-WebTier/hardboiled_ghost,velimir0xff/Ghost,novaugust/Ghost,wemakeweb/Ghost,hilerchyn/Ghost,sfpgmr/Ghost,zuphu/GhostBlog,Kaenn/Ghost,yundt/seisenpenji,wspandihai/Ghost,developer-prosenjit/Ghost,duyetdev/islab,kevinansfield/Ghost,arvidsvensson/Ghost,ckousik/Ghost,rouanw/Ghost,lf2941270/Ghost,halfdan/Ghost,ManRueda/Ghost,tanbo800/Ghost,BayPhillips/Ghost,Klaudit/Ghost,AnthonyCorrado/Ghost,ErisDS/Ghost,vishnuharidas/Ghost,sceltoas/Ghost,Remchi/Ghost,chris-yoon90/Ghost,fredeerock/atlabghost,nakamuraapp/new-ghost,yanntech/Ghost,NovaDevelopGroup/Academy,RufusMbugua/TheoryOfACoder,BayPhillips/Ghost,davidmenger/nodejsfan,Yarov/yarov,tyrikio/Ghost,javimolla/Ghost,francisco-filho/Ghost,pathayes/FoodBlog,GroupxDev/javaPress,shrimpy/Ghost,omaracrystal/Ghost,UnbounDev/Ghost,ErisDS/Ghost,JulienBrks/Ghost,camilodelvasto/localghost,dqj/Ghost,nneko/Ghost,denzelwamburu/denzel.xyz,prosenjit-itobuz/Ghost,javorszky/Ghost,choskim/GhostAzure,leonli/ghost,Romdeau/Ghost,Alxandr/Blog,ygbhf/Ghost,velimir0xff/Ghost,UsmanJ/Ghost,codeincarnate/Ghost,weareleka/blog,jiachenning/Ghost,dYale/blog,sangcu/Ghost,jin/Ghost,manishchhabra/Ghost,ladislas/ghost,MadeOnMars/Ghost,jaguerra/Ghost,JonSmith/Ghost,sifatsultan/js-ghost,r14r/fork_nodejs_ghost,melissaroman/ghost-blog,lukw00/Ghost,virtuallyearthed/Ghost,tanbo800/Ghost,bsansouci/Ghost,riyadhalnur/Ghost,Rovak/Ghost,ITJesse/Ghost-zh,bisoe/Ghost,bastianbin/Ghost,uploadcare/uploadcare-ghost-demo,petersucks/blog,bitjson/Ghost,uploadcare/uploadcare-ghost-demo,tmp-reg/Ghost,Feitianyuan/Ghost,Japh/shortcoffee,akveo/akveo-blog,ryanorsinger/tryghost,davidblurton/salmondesign-old,stridespace/Ghost,gabfssilva/Ghost,katrotz/blog.katrotz.space,ignasbernotas/nullifer,gabfssilva/Ghost,bitjson/Ghost,camilodelvasto/herokughost,adam-paterson/blog,jiangjian-zh/Ghost,prosenjit-itobuz/Ghost,adam-paterson/blog,STANAPO/Ghost,virtuallyearthed/Ghost,acburdine/Ghost,jaswilli/Ghost,pedroha/Ghost,epicmiller/pages,neynah/GhostSS,delgermurun/Ghost,tandrewnichols/ghost,cncodog/Ghost-zh-codog,hnq90/Ghost,krahman/Ghost,Kikobeats/Ghost,patrickdbakke/ghost-spa,lcamacho/Ghost,augbog/Ghost,floofydoug/Ghost,mhhf/ghost-latex,schneidmaster/theventriloquist.us,mattchupp/blog,thinq4yourself/Unmistakable-Blog,cwonrails/Ghost,RufusMbugua/TheoryOfACoder,praveenscience/Ghost,pensierinmusica/Ghost,axross/ghost,yanntech/Ghost,llv22/Ghost,mhhf/ghost-latex,tadityar/Ghost,JohnONolan/Ghost,jparyani/GhostSS,rollokb/Ghost,etdev/blog,TryGhost/Ghost,akveo/akveo-blog,disordinary/Ghost,daihuaye/Ghost,jaguerra/Ghost,cobbspur/Ghost,Azzurrio/Ghost,dgem/Ghost,PDXIII/Ghost-FormMailer,PepijnSenders/whatsontheotherside,RoopaS/demo-intern,Coding-House/Ghost,influitive/crafters,load11/ghost,olsio/Ghost,zumobi/Ghost,netputer/Ghost,ryansukale/ux.ryansukale.com,davidenq/Ghost-Blog,ddeveloperr/Ghost,patterncoder/patterncoder,tmp-reg/Ghost,trunk-studio/Ghost,patterncoder/patterncoder,delgermurun/Ghost,mnitchie/Ghost,Trendy/Ghost,Alxandr/Blog,lf2941270/Ghost,ballPointPenguin/Ghost,petersucks/blog,tksander/Ghost,morficus/Ghost,syaiful6/Ghost,diogogmt/Ghost,leninhasda/Ghost,gcamana/Ghost,r1N0Xmk2/Ghost,wspandihai/Ghost,icowan/Ghost,jeonghwan-kim/Ghost,jamesslock/Ghost,darvelo/Ghost,ljhsai/Ghost,sunh3/Ghost,stridespace/Ghost,kolorahl/Ghost,telco2011/Ghost,woodyrew/Ghost,obsoleted/Ghost,Brunation11/Ghost,Trendy/Ghost,greyhwndz/Ghost,kmeurer/Ghost,klinker-apps/ghost,YY030913/Ghost,notno/Ghost,mattvh/Ghost,ryanbrunner/crafters,mlabieniec/ghost-env,mttschltz/ghostblog,diancloud/Ghost,cwonrails/Ghost,rafaelstz/Ghost,lethalbrains/Ghost,sajmoon/Ghost,aschmoe/jesse-ghost-app,Netazoic/bad-gateway,olsio/Ghost,cysys/ghost-openshift,johngeorgewright/blog.j-g-w.info,kmeurer/Ghost,ngosinafrica/SiteForNGOs,kwangkim/Ghost,rouanw/Ghost,situkangsayur/Ghost,greyhwndz/Ghost,etanxing/Ghost,cqricky/Ghost,ananthhh/Ghost,benstoltz/Ghost,InnoD-WebTier/hardboiled_ghost,avh4/blog.avh4.net,jomahoney/Ghost,bbmepic/Ghost,hnq90/Ghost,BlueHatbRit/Ghost,djensen47/Ghost,Kaenn/Ghost,flomotlik/Ghost,NovaDevelopGroup/Academy,dymx101/Ghost,ghostchina/Ghost.zh,load11/ghost,PepijnSenders/whatsontheotherside,julianromera/Ghost,Azzurrio/Ghost,consoleblog/consoleblog,telco2011/Ghost,alecho/Ghost,mttschltz/ghostblog,ivantedja/ghost,achimos/ghost_as,dbalders/Ghost,10hacks/blog,sunh3/Ghost,SachaG/bjjbot-blog,GarrethDottin/Habits-Design,edurangel/Ghost,Netazoic/bad-gateway,rmoorman/Ghost,zeropaper/Ghost,Jai-Chaudhary/Ghost,ghostchina/Ghost-zh,optikalefx/Ghost,rito/Ghost,Smile42RU/Ghost,Yarov/yarov,Sebastian1011/Ghost,flpms/ghost-ad,IbrahimAmin/Ghost,ladislas/ghost,liftup/ghost,sebgie/Ghost,JulienBrks/Ghost,kevinansfield/Ghost,jacostag/Ghost,VillainyStudios/Ghost,zackslash/Ghost,davidmenger/nodejsfan,Jai-Chaudhary/Ghost,beautyOfProgram/Ghost,mattvh/Ghost,ASwitlyk/Ghost,tidyui/Ghost,NikolaiIvanov/Ghost,ghostchina/Ghost.zh,vloom/blog,phillipalexander/Ghost,cysys/ghost-openshift,dggr/Ghost-sr,AlexKVal/Ghost,lukaszklis/Ghost,JonathanZWhite/Ghost,InnoD-WebTier/hardboiled_ghost,MrMaksimize/sdg1,davidblurton/salmondesign-old,Kikobeats/Ghost,dylanchernick/ghostblog,epicmiller/pages,pbevin/Ghost,mohanambati/Ghost,katiefenn/Ghost,neynah/GhostSS,PaulBGD/Ghost-Plus,nmukh/Ghost,trunk-studio/Ghost,jamesyothers/Ghost,ManRueda/manrueda-blog,jorgegilmoreira/ghost,novaugust/Ghost,jparyani/GhostSS,Empeeric/justanidea,metadevfoundation/Ghost,camilodelvasto/herokughost,obsoleted/Ghost,sangcu/Ghost,atandon/Ghost,no1lov3sme/Ghost,pathayes/FoodBlog,VillainyStudios/Ghost,bisoe/Ghost,thehogfather/Ghost,JohnONolan/Ghost,jin/Ghost,laispace/laiblog,theonlypat/Ghost,schematical/Ghost,Loyalsoldier/Ghost,jgillich/Ghost,Aaron1992/Ghost,Polyrhythm/dolce,stridespace/Ghost,ineitzke/Ghost,lanffy/Ghost,djensen47/Ghost,flomotlik/Ghost,bigertech/Ghost,lukaszklis/Ghost,leonli/ghost,omaracrystal/Ghost,ericbenson/GhostAzureSetup,sankumsek/Ghost-ashram,developer-prosenjit/Ghost,daimaqiao/Ghost-Bridge,kevinansfield/Ghost,Jonekee/Ghost,smedrano/Ghost,Netazoic/bad-gateway,phillipalexander/Ghost,r14r/fork_nodejs_ghost,wallmarkets/Ghost,KnowLoading/Ghost,lukekhamilton/Ghost,johnnymitch/Ghost,lowkeyfred/Ghost,Bunk/Ghost,ManRueda/Ghost,xiongjungit/Ghost,ngosinafrica/SiteForNGOs,jaswilli/Ghost,skleung/blog,ivanoats/ivanstorck.com,darvelo/Ghost,augbog/Ghost,ineitzke/Ghost,TryGhost/Ghost,laispace/laiblog,DesenTao/Ghost,ericbenson/GhostAzureSetup |
377471cfabbeb36ad4e46e15446c7d47843cb29d | .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
- npm install istanbul coveralls
| 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
- npm install istanbul coveralls
| Test with latest Node.js 5 on Travis CI. | Test with latest Node.js 5 on Travis CI.
| YAML | mit | bigeasy/designate,bigeasy/designate |
9e0dd155dbbe2e2d65f834d616027769e6892da7 | .travis.yml | .travis.yml | language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
script:
- phpunit tests/
install:
- composer install
| language: php
php:
- 5.5
- 5.6
- 7.0
- 7.1
script:
- phpunit
install:
- composer install
| Remove PHPUnit static test directory | Remove PHPUnit static test directory
Use `test` directory from PHPUnit configuration instead of static
`tests` directory when building with Travis CI.
| YAML | mit | checkdomain/Holiday |
5c1c444c2bb2acd29e2351cf44ceb8d0fec91952 | .travis.yml | .travis.yml | language: node_js
node_js:
- 0.1
before_install:
- npm install -g grunt-cli
install:
- npm install
script:
# Reference the locally-installed version of Grunt
- ./node_modules/grunt-cli/bin/grunt test
# If the app runs, check to see if the version file has been updated
- ./create-release-tag.sh
deploy:
provider: heroku
api_key:
secure: h/9/Rcd41XVU4VYYeBoKKvG6uShEoDksCGGZ/2dgeY1f3tYnhGzzgL6TIkvhafwDbKk2Y4o6d/MI05K+s7lorf2uTKpr1To2o52hQqmb4YREPWruZtBqoRo5X4nCeN2oEdW+yJRH3jZDNUmwkPzjytqxkcUUUeDPHfz3+xCtSZk=
app: govuk-prototype-kit
on: master
notifications:
email: false
sudo: false
| language: node_js
node_js:
- 0.1
before_install:
- npm install -g grunt-cli
install:
- npm install
script:
# Reference the locally-installed version of Grunt
- ./node_modules/grunt-cli/bin/grunt test
after_success:
# Check to see if the version file has been updated
- ./create-release-tag.sh
deploy:
provider: heroku
api_key:
secure: h/9/Rcd41XVU4VYYeBoKKvG6uShEoDksCGGZ/2dgeY1f3tYnhGzzgL6TIkvhafwDbKk2Y4o6d/MI05K+s7lorf2uTKpr1To2o52hQqmb4YREPWruZtBqoRo5X4nCeN2oEdW+yJRH3jZDNUmwkPzjytqxkcUUUeDPHfz3+xCtSZk=
app: govuk-prototype-kit
on: master
notifications:
email: false
sudo: false
| Move the create release tag script to after_success | Move the create release tag script to after_success
| YAML | mit | benjeffreys/hmcts-idam-proto,gup-dwp/pip-prototype-v2,samwake/hoddat-cofc-caseworking,abbott567/govuk_prototype_kit,samwake/hoddat-cofc-caseworking,glancyea/tagtest,quis/notify-public-research-prototype,chrishanes/pvb_prisoner_proto,companieshouse/ch-accounts-prototype,OrcaTom/dwp_contentpatterns,abbott567/govuk_prototype_kit,DilwoarH/GDS-Prototype-DM-SavedSearch,hannalaakso/accessible-timeout-warning,davedark/proto-timeline,benjeffreys/hmcts-idam-proto,dwpdigitaltech/ejs-prototype,dwpdigitaltech/digital-debt,hannalaakso/accessible-timeout-warning,DilwoarH/GDS-Prototype-DM-SavedSearch,quis/notify-public-research-prototype,danblundell/verify-local-patterns,DilwoarH/GDS-Prototype-DM-SavedSearch,kenmaddison-scc/verify-local-patterns,glancyea/tagtest,paulpod/invgov,alphagov/govuk_prototype_kit,BucksCountyCouncil/verify-local-patterns,tsmorgan/marx,nhsbsa/ppc-prototype,paulpod/invgov,danblundell/verify-local-patterns,davedark/proto-timeline,OrcaTom/dwp_contentpatterns,gup-dwp/pip-prototype-v2,kenmaddison-scc/verify-local-patterns,arminio/govuk_prototype_kit,karlparton/my-govuk,tsmorgan/marx,tsmorgan/marx,quis/notify-public-research-prototype,dwpdigitaltech/digital-debt,chrishanes/pvb_prisoner_proto,davedark/proto-timeline,joelanman/govuk_prototype_kit,arminio/govuk_prototype_kit,Demwunz/esif-prototype,dwpdigitaltech/ejs-prototype,joelanman/govuk_prototype_kit,Demwunz/esif-prototype,OrcaTom/dwp_contentpatterns,gavinwye/govuk_prototype_kit,glancyea/tagtest,BucksCountyCouncil/verify-local-patterns,karlparton/my-govuk,joelanman/govuk_prototype_kit,arminio/govuk_prototype_kit,dwpdigitaltech/hrt-prototype,nhsbsa/ppc-prototype,dwpdigitaltech/digital-debt,danblundell/verify-local-patterns,dwpdigitaltech/ejs-prototype,benjeffreys/hmcts-idam-proto,hannalaakso/accessible-timeout-warning,paulpod/invgov,gavinwye/govuk_prototype_kit,nhsbsa/ppc-prototype,alphagov/govuk_prototype_kit,karlparton/my-govuk,abbott567/govuk_prototype_kit,Demwunz/esif-prototype,samwake/hoddat-cofc-caseworking,gup-dwp/pip-prototype-v2,alphagov/govuk_prototype_kit,chrishanes/pvb_prisoner_proto,kenmaddison-scc/verify-local-patterns,companieshouse/ch-accounts-prototype,BucksCountyCouncil/verify-local-patterns,dwpdigitaltech/hrt-prototype,dwpdigitaltech/hrt-prototype |
7d78a2afd3c4a6c4af77a4ddcbd2a82f15986048 | .travis.yml | .travis.yml | language: go
sudo: false
dist: trusty
env:
HUGO_BUILD_TAGS="extended"
git:
depth: false
go:
- 1.11
- tip
os:
- linux
- osx
matrix:
allow_failures:
- go: tip
fast_finish: true
install:
- mkdir -p $HOME/src
- mv $HOME/gopath/src/github.com/gohugoio/hugo $HOME/src
- export TRAVIS_BUILD_DIR=$HOME/src/hugo
- cd $HOME/src/hugo
- go get github.com/magefile/mage
script:
- go mod download
- mage -v test
- mage -v check
- mage -v hugo
- ./hugo -s docs/
- ./hugo --renderToMemory -s docs/
before_install:
- gem install asciidoctor
- type asciidoctor
| language: go
sudo: false
dist: trusty
env:
global:
- HUGO_BUILD_TAGS="extended"
git:
depth: false
go:
- 1.11
- tip
os:
- linux
- osx
- windows
matrix:
allow_failures:
- go: tip
fast_finish: true
exclude:
- os: windows
go: tip
install:
- mkdir -p $HOME/src
- mv $HOME/gopath/src/github.com/gohugoio/hugo $HOME/src
- export TRAVIS_BUILD_DIR=$HOME/src/hugo
- cd $HOME/src/hugo
- go get github.com/magefile/mage
script:
- go mod download
- mage -v test
- mage -v check
- mage -v hugo
- ./hugo -s docs/
- ./hugo --renderToMemory -s docs/
- df -h
before_install:
- df -h
# https://travis-ci.community/t/go-cant-find-gcc-with-go1-11-1-on-windows/293/5
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install mingw -y; export PATH=/c/tools/mingw64/bin:"$PATH"; fi
- gem install asciidoctor
- type asciidoctor
| Add Windows build config to Travis | Add Windows build config to Travis
| YAML | apache-2.0 | mdhender/hugo,mdhender/hugo,fedelibre/hugo,gohugoio/hugo,fedelibre/hugo,anthonyfok/hugo,anthonyfok/hugo,fedelibre/hugo,fedelibre/hugo,mdhender/hugo,gohugoio/hugo,gohugoio/hugo,anthonyfok/hugo,mdhender/hugo |
41a2c04cb59e32decff693e35150464a36266d19 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- ruby-head
- jruby
- rbx
matrix:
allow_failures:
- rvm: rbx-2
addons:
code_climate:
repo_token: 2a03fa37ce5a5cb21bb117a736be5d83dcf9f1c3ea2b248f7af4c0a7b330d8c8
after_success:
- bundle exec codeclimate-test-reporter
notifications:
slack:
secure: IfKhtia5nM6KA9nK8jiSkNnVOLN96er6gK5jgjYKFNrVyWAKRUJZ0TB9L+igjUWDq7t+tRvj8yGT2k61xVJgF+ZDlQiWvyazTsgQeqbjieCxCrj/BTGZLyD1hhOLg7vqpyeQvp/34hDahx6XNp6XPvkxeofjc0H6STv2UjJkpQk=
| language: ruby
sudo: false
rvm:
- 2.1
- 2.2
- ruby-head
- jruby
- rbx-3
matrix:
allow_failures:
- rvm: rbx-3
addons:
code_climate:
repo_token: 2a03fa37ce5a5cb21bb117a736be5d83dcf9f1c3ea2b248f7af4c0a7b330d8c8
after_success:
- bundle exec codeclimate-test-reporter
notifications:
slack:
secure: IfKhtia5nM6KA9nK8jiSkNnVOLN96er6gK5jgjYKFNrVyWAKRUJZ0TB9L+igjUWDq7t+tRvj8yGT2k61xVJgF+ZDlQiWvyazTsgQeqbjieCxCrj/BTGZLyD1hhOLg7vqpyeQvp/34hDahx6XNp6XPvkxeofjc0H6STv2UjJkpQk=
| Test against rbx-3, which should be the latest version. | Test against rbx-3, which should be the latest version.
| YAML | mit | trailofbits/ruby-sslyze |
aeb507cee77077de1048fc961c4a820f65c40ae0 | .travis.yml | .travis.yml | language: java
sudo: true
jdk:
- oraclejdk8
- openjdk12
install:
- mvn test-compile -DskipTests=true -Dmaven.javadoc.skip=true -B -V
script:
- mvn test jacoco:report
after_success:
- bash <(curl -s https://codecov.io/bash)
- mvn coveralls:report
notifications:
email: false | language: java
sudo: true
jdk:
- oraclejdk8
# - openjdk12
install:
- mvn test-compile -DskipTests=true -Dmaven.javadoc.skip=true -B -V
script:
- mvn test jacoco:report
after_success:
- bash <(curl -s https://codecov.io/bash)
- mvn coveralls:report
notifications:
email: false | Disable openjdk12 builds by Travis due to unavailability of the services | Disable openjdk12 builds by Travis due to unavailability of the services
| YAML | apache-2.0 | Panda-Programming-Language/Panda |
9f8bbb14a5056e8bab69b44eb4ecc840996d38f7 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
- "4.0.0"
script:
- npm run lint
- npm test
- npm run test:cov
- npm run compile
| language: node_js
node_js:
- "0.12"
- "4"
- "5"
script:
- npm run lint
- npm test
- npm run test:cov
- npm run compile
| Add Node 5 to Travis | Add Node 5 to Travis | YAML | mit | faassen/reselect,rackt/reselect,chromakode/reselect,reactjs/reselect,reactjs/reselect |
8637a4f8d9ce506975f302cf66961deca5e01a2d | .travis.yml | .travis.yml | language: go
go:
- tip
script:
- cd impact
- go build
- go test -short ../...
notifications:
email: false
| language: go
go:
- tip
script:
- cd impact
- go build
- go test -short ../...
notifications:
email: false
sudo: false
| Enable new container based build | Enable new container based build
| YAML | mit | xogeny/impact,dietmarw/impact,dietmarw/impact,impact/impact,impact/impact,xogeny/impact |
c00c82ccf0cf7d73b6b82d4efe8d5ee19804eed8 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
sudo: required
#env: #Environment Variables
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
#install: true # You can skip the installation step entirely
before_install:
- apt-get install gradle
- gradle assemble --stacktrace
install: gradle check --stacktrace
# before_script:
# script:
# In both after_failure and after_success, you can access the build result using the $TRAVIS_TEST_RESULT environment variable.
# after_success:
# after_failure:
# before_deploy: #OPTIONAL
# deploy: #OPTIONAL
# after_deploy: #OPTIONAL
# after_script:
| language: java
jdk:
- oraclejdk8
- oraclejdk7
- openjdk7
sudo: required
#env: #Environment Variables
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
#install: true # You can skip the installation step entirely
before_install:
- sudo apt-get install gradle
- sudo gradle assemble --stacktrace
install: sudo gradle check --stacktrace
# before_script:
# script:
# In both after_failure and after_success, you can access the build result using the $TRAVIS_TEST_RESULT environment variable.
# after_success:
# after_failure:
# before_deploy: #OPTIONAL
# deploy: #OPTIONAL
# after_deploy: #OPTIONAL
# after_script:
| Update before install and install | Update before install and install
| YAML | apache-2.0 | Stargator/testdrivenexamples,Stargator/testdrivenexamples |
5556479102225237f07684cd455efbfbb4bb8759 | .travis.yml | .travis.yml | language: ruby
sudo: false
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
script:
- bundle exec rspec
- bundle exec rubocop
| language: ruby
sudo: false
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
- gemfiles/rails_6.0.gemfile
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
script:
- bundle exec rspec
- bundle exec rubocop
matrix:
exclude:
- rvm: 2.3.8
gemfile: gemfiles/rails_6.0.gemfile
- rvm: 2.4.5
gemfile: gemfiles/rails_6.0.gemfile
| Exclude Ruby 2.3.8 and 2.4.5 | Exclude Ruby 2.3.8 and 2.4.5
Rails 6 requires ruby version > 2.5
| YAML | mit | salsify/delayed_job_groups_plugin,salsify/delayed_job_groups_plugin |
b6e2c6834928ac9f62f394aa2092dc01403dd5ee | .travis.yml | .travis.yml | before_install:
- sudo apt-add-repository ppa:chris-lea/zeromq -y
- sudo apt-get update
- sudo apt-get install zeromq3 -y
language: ruby
rvm:
- 2.0.0
cache: bundler
| before_install:
- sudo apt-add-repository ppa:chris-lea/zeromq -y
- sudo apt-get update
- sudo apt-get install libzmq3 libzmq3-dev -y
language: ruby
rvm:
- 2.0.0
cache: bundler
| Install the appropriate packages for 0mq 3 | Install the appropriate packages for 0mq 3
| YAML | mit | pantry/pantry |
cff1324d35f2697484e7aa6225332d2b5a9dfe41 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
env:
- BROWSERS=PhantomJS
- BROWSERS=jsdom
- BROWSERS=Firefox
- BROWSERS=Chrome
- BROWSERS=Safari
- BROWSERS=Edge18
- BROWSERS=Edge17
- BROWSERS=Edge16
- BROWSERS=Edge15
- BROWSERS=Edge14
- BROWSERS=Edge13
- BROWSERS=IE11
- BROWSERS=IE10
- BROWSERS=IE9
- BROWSERS=IE8
matrix:
allow_failures:
- env: BROWSERS=IE8
cache:
directories:
- node_modules
stages:
- ensure built
- lint
- test
jobs:
include:
- stage: ensure built
script: make build && [ -z "$(git status -s dist/)" ]
- stage: lint
script: make lint
script: make test-ci
| language: node_js
node_js:
- "node"
env:
- BROWSERS=PhantomJS
- BROWSERS=jsdom
- BROWSERS=Firefox
- BROWSERS=Chrome
- BROWSERS=Safari
- BROWSERS=Edge18
- BROWSERS=Edge17
- BROWSERS=Edge16
- BROWSERS=Edge15
- BROWSERS=Edge14
- BROWSERS=Edge13
- BROWSERS=IE11
- BROWSERS=IE10
- BROWSERS=IE9
- BROWSERS=IE8
matrix:
allow_failures:
- env: BROWSERS=IE8
cache:
directories:
- node_modules
stages:
- ensure built
- lint
- test
jobs:
include:
- stage: ensure built
script: make build && [ -z "$(git status -s dist/)" ]
- stage: lint
script: make lint
script: env TEST_AGAINST_BUILD=1 make test-ci
| Test agains builds on Travis | Test agains builds on Travis
| YAML | mit | badeball/xpath-dom,badeball/xpath-dom,badeball/xpath-dom |
02419abdea276b713742093bba2c443b4b7add37 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_script:
- npm install -g gulp
| language: node_js
node_js:
- "0.10"
before_script:
- npm install -g gulp
after_script:
- codeclimate-test-reporter < coverage/lcov.info
addons:
code_climate:
repo_token: 045aea859e723a498326f2961cff69126d785d69e888fa869ce4bebfbb0f6143
| Add Code Climate test coverage options | Add Code Climate test coverage options
| YAML | mit | travishorn/valivore |
607f12de270e39d034db723eedba31c1df4165c1 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
install:
- 'pip install -e . --use-mirrors'
script: "py.test"
branches:
only:
- master
| language: python
python:
- "2.6"
- "2.7"
install:
- 'pip install -e . --use-mirrors'
- 'pip install responses==0.5.0'
script: "py.test"
branches:
only:
- master
| Install responses before running tests. | Install responses before running tests.
| YAML | agpl-3.0 | JesseWeinstein/internetarchive,jjjake/internetarchive,brycedrennan/internetarchive |
7278733ad7604a86a6dcc52f2e957240049182c2 | .travis.yml | .travis.yml | sudo: false
language: ruby
before_install: gem install bundler -v 1.14.6
rvm:
- "2.4.0"
- "2.3.4"
- "2.2.7"
- "2.1.10"
- "2.0.0"
- "1.9.3"
- "ruby-head"
- "jruby"
- "jruby-19mode"
- "jruby-head"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| sudo: false
language: ruby
before_install: gem install bundler -v 1.14.6
rvm:
- "2.4.1"
- "2.3.4"
- "2.2.7"
- "2.1.10"
- "2.0.0"
- "1.9.3"
- "ruby-head"
- "jruby"
- "jruby-19mode"
- "jruby-head"
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Add Ruby 2.4.1 to Travis build matrix | Add Ruby 2.4.1 to Travis build matrix
| YAML | mit | skalee/well_read_faker,skalee/well_read_faker |
2065a079887670336bc08480816f545a4209b622 | .travis.yml | .travis.yml | rvm:
- ree
- 1.9.3
- 2.0.0
before_install:
- "gem install bundler -v=1.3.0"
before_script:
- "bundle install"
script: "bundle exec rake test"
gemfile:
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
matrix:
exclude:
- rvm: ree
gemfile: gemfiles/4.0.gemfile | rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
before_install:
- "gem install bundler -v=1.3.0"
before_script:
- "bundle install"
script: "bundle exec rake test"
gemfile:
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
matrix:
exclude:
- rvm: ree
gemfile: gemfiles/4.0.gemfile
| Remove support for ree and add for 2.1 and 2.2 | Remove support for ree and add for 2.1 and 2.2 | YAML | mit | dmitry/has_translations,dmitry/has_translations |
3f604418f631da074b1315eab6958de79485da7c | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| Build with Node.js 10 on Travis CI. | Build with Node.js 10 on Travis CI.
| YAML | mit | bigeasy/delta,bigeasy/delta |
85a6cbe053cb4e67d26fdbf899978915c2b6bb99 | .travis.yml | .travis.yml | ---
sudo: false
dist: trusty
addons:
chrome: stable
language: php
services:
- mysql
before_script:
- '! find . -type f -name "*.php" -exec php -d error_reporting=32767 -l {} \; 2>&1 >&- | grep "^"'
- php -S
- mysql -e 'CREATE DATABASE 2moons;'
php:
- '5.3'
install:
- composer install
script: phantomjs tests/run.js | ---
sudo: false
dist: trusty
language: php
services:
- mysql
before_script:
- '! find . -type f -name "*.php" -exec php -d error_reporting=32767 -l {} \; 2>&1 >&- | grep "^"'
- php -S
- mysql -e 'CREATE DATABASE 2moons;'
php:
- '5.3'
install:
- composer install
script: phantomjs tests/run.js | Remove debug things from composer | Remove debug things from composer
| YAML | mit | jkroepke/2Moons,jkroepke/2Moons,jkroepke/2Moons,mimikri/2Moons-1.8-mods,mimikri/2Moons-1.8-mods,mimikri/2Moons-1.8-mods,jkroepke/2Moons,jkroepke/2Moons,mimikri/2Moons-1.8-mods,mimikri/2Moons-1.8-mods |
76753b1b4b1fa5778ff8d10a85c5ed2723699a43 | .travis.yml | .travis.yml | language: android
android:
components:
# All the build system components should be at the latest version
- tools
- platform-tools
- build-tools-22.0.1
- android-22
# The libraries we can't get from Maven Central or similar
- extra-android-support
- extra-android-m2repository
script:
- ./gradlew clean test # run tests
| sudo: false
language: android
android:
components:
# All the build system components should be at the latest version
- tools
- platform-tools
- build-tools-22.0.1
- android-22
# The libraries we can't get from Maven Central or similar
- extra-android-support
- extra-android-m2repository
script:
- ./gradlew clean test # run tests
| Migrate from legacy to container-based infrastructure. | Migrate from legacy to container-based infrastructure.
| YAML | apache-2.0 | matthew-compton/TypedPreferences,johnjohndoe/TypedPreferences |
af874543bb3d9dfd336e13044c650fe55846ebe7 | .travis.yml | .travis.yml | language: php
php:
- "5.3.3"
- "5.3"
- "5.4"
before_install:
- wget http://cs.sensiolabs.org/get/php-cs-fixer.phar
before_script:
- composer self-update
- composer updated --dev
script:
- (cd test; phpunit -c phpunit.xml.dist)
- output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 .); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
| language: php
php:
- "5.3.3"
- "5.3"
- "5.4"
before_install:
- wget http://cs.sensiolabs.org/get/php-cs-fixer.phar
before_script:
- composer self-update
- composer install --dev
script:
- (cd test; phpunit -c phpunit.xml.dist)
- output=$(php php-cs-fixer.phar fix -v --dry-run --level=psr2 .); if [[ $output ]]; then while read -r line; do echo -e "\e[00;31m$line\e[00m"; done <<< "$output"; false; fi;
| Correct composer 'updated' to 'install' | Correct composer 'updated' to 'install' | YAML | bsd-2-clause | zionsg/ZnZend |
a9bbca6ea7750bb3ae4eec8f32b4b984f19af56d | .travis.yml | .travis.yml | language: clojure
lein: lein2
before_script:
- phantomjs -v
- nvm use 0.12.7
- node -v
script: lein2 do test-phantom, test-node
jdk:
- oraclejdk8
sudo: false
| language: clojure
lein: lein2
before_script:
- phantomjs -v
- nvm use 0.12.7
- node -v
script: lein2 do test-phantom, test-node
jdk:
- oraclejdk8
sudo: required
dist: trusty
| Add Trusty beta support in Travis | Add Trusty beta support in Travis
| YAML | epl-1.0 | ScalaConsultants/replumb,Lambda-X/replumb,ScalaConsultants/replumb,Lambda-X/replumb,ScalaConsultants/replumb,Lambda-X/replumb |
3529ec34bfa7f85e9105515a3fc3e3f1cc179dc9 | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- nightly
- beta
- stable
env:
global:
secure: afYeHpC8BJeyajd3vd84xRBYJKxQorKfh4lGvesu/hqh0bHc6lxrqGt0Pthb2m2YDODZiGSbx9yr9UetelZIJUSA3LoiG5PdDrtH/Kwdn5xGcBWSZl3v/sH+oB3AeR7Eji6mj0mrydQxn8PQbEACvR6lpGCYE2R48KrftYmD6Js=
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo bench &&
travis-cargo --only stable doc
after_success:
- |
travis-cargo --only stable doc-upload --branch stable
| language: rust
rust:
- nightly
- beta
- stable
env:
global:
secure: afYeHpC8BJeyajd3vd84xRBYJKxQorKfh4lGvesu/hqh0bHc6lxrqGt0Pthb2m2YDODZiGSbx9yr9UetelZIJUSA3LoiG5PdDrtH/Kwdn5xGcBWSZl3v/sH+oB3AeR7Eji6mj0mrydQxn8PQbEACvR6lpGCYE2R48KrftYmD6Js=
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
script:
- |
travis-cargo build &&
travis-cargo test &&
travis-cargo bench &&
travis-cargo --only stable doc
after_success:
- |
travis-cargo --only stable doc-upload --branch stable
| Remove now default 'sudo: false' | Remove now default 'sudo: false'
'sudo: false' is now default on Travis CI. | YAML | apache-2.0 | bjz/cgmath-rs,bjz/cgmath |
a738c0eb9d1747ad5516c3ad44d90dbcd5ca53b2 | .travis.yml | .travis.yml | language:
- bash
script:
- ./test
env:
- DETECTED_OS=fedora:24 DOCKER_IMAGE=cyplo/fedora24_base
- DETECTED_OS=debian:jessie DOCKER_IMAGE=cyplo/jessie_base
- DETECTED_OS=ubuntu:trusty DOCKER_IMAGE=cyplo/trusty_base
- DETECTED_OS=ubuntu:xenial DOCKER_IMAGE=cyplo/xenial_base
sudo: required
services:
- docker
git:
submodules: false
| language:
- bash
script:
- ./test
env:
- DETECTED_OS=fedora:24 DOCKER_IMAGE=cyplo/fedora24_base
- DETECTED_OS=debian:jessie DOCKER_IMAGE=cyplo/jessie_base
- DETECTED_OS=ubuntu:trusty DOCKER_IMAGE=cyplo/trusty_base
- DETECTED_OS=ubuntu:xenial DOCKER_IMAGE=cyplo/xenial_base
- DETECTED_OS=ubuntu:yakkety
sudo: required
services:
- docker
git:
submodules: false
| Add build for Ubuntu Yakkety | Add build for Ubuntu Yakkety | YAML | agpl-3.0 | cyplo/dotfiles,cyplo/dotfiles |
127ff03cfa6586054866e88b213e1492e59ac521 | .travis.yml | .travis.yml | sudo: required
services:
- docker
language: java
jdk:
- openjdk8
- openjdk9
- openjdk10
- openjdk11
env:
global:
- SONATYPE_USERNAME=mattbrownspotify
- secure: "WH+C0QLvcp/NFVRngliA0F/aj0caK7/hsc1mapdApM71+Sncem1BScMpkpc3PRql8CRDjI/dDPNnqitcd89P1ros3jpAS9+qnMlzzNebWZ2oUaxIQe8iK89825sBJZhWMtOvl9LXlL6azacZuYOfNpbfCBb3t4Zi09Hi9QMlTKQ="
branches:
only:
- master
before_install:
# troubleshooting info in case of problems
- docker version
- docker info
script: mvn clean verify -B
after_success:
# test coverage reporting
- bash <(curl -s https://codecov.io/bash)
# deploy snapshots to Maven central, but only from master branch
- "[[ $TRAVIS_BRANCH == \"master\" ]] && mvn --settings sonatype-settings.xml -DskipTests -B deploy"
| sudo: required
services:
- docker
language: java
matrix:
include:
- jdk: openjdk8
- jdk: openjdk9
before_install:
- rm "${JAVA_HOME}/lib/security/cacerts"
- ln -s /etc/ssl/certs/java/cacerts "${JAVA_HOME}/lib/security/cacerts"
- jdk: openjdk10
before_install:
- rm "${JAVA_HOME}/lib/security/cacerts"
- ln -s /etc/ssl/certs/java/cacerts "${JAVA_HOME}/lib/security/cacerts"
- jdk: openjdk11
env:
global:
- SONATYPE_USERNAME=mattbrownspotify
- secure: "WH+C0QLvcp/NFVRngliA0F/aj0caK7/hsc1mapdApM71+Sncem1BScMpkpc3PRql8CRDjI/dDPNnqitcd89P1ros3jpAS9+qnMlzzNebWZ2oUaxIQe8iK89825sBJZhWMtOvl9LXlL6azacZuYOfNpbfCBb3t4Zi09Hi9QMlTKQ="
branches:
only:
- master
before_install:
# troubleshooting info in case of problems
- docker version
- docker info
script: mvn clean verify -B
after_success:
# test coverage reporting
- bash <(curl -s https://codecov.io/bash)
# deploy snapshots to Maven central, but only from master branch
- "[[ $TRAVIS_BRANCH == \"master\" ]] && mvn --settings sonatype-settings.xml -DskipTests -B deploy"
| Fix Travis CI builds for openjdk[9|10] | Fix Travis CI builds for openjdk[9|10]
Travis CI builds for openjdk[9|10] currently fail with
```
sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
```
when trying to pull dependencies from Sonatype.
Fix by manually symlinking the system CA certs in the before_install stage.
See https://github.com/travis-ci/travis-ci/issues/9368#issuecomment-395470644.
| YAML | apache-2.0 | spotify/docker-maven-plugin |
dfcd2938727b333a058b81f48532786e3c686405 | .travis.yml | .travis.yml | language: python
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "pypy"
- "pypy3"
env:
- RL=30
- RL=31
- RL=32
- RL=33
matrix:
fast_finish: true
allow_failures:
- python: "3.7-dev"
- python: "pypy"
- python: "pypy3"
install:
- TOX_ENV=py${TRAVIS_PYTHON_VERSION}-rl${RL}
- pip install tox coveralls Sphinx sphinx-rtd-theme
script: tox -e $TOX_ENV
after_success: coveralls $COVERALLS_OPTION
notifications:
irc: "chat.freenode.net#xhtml2pdf"
before_script:
- cd doc/source ; sphinx-build -nW -b html -d _build/doctrees . _build/html ; cd ../..
| language: python
sudo: false
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7-dev"
- "pypy"
- "pypy3"
env:
- RL=30
- RL=31
- RL=32
- RL=33
matrix:
fast_finish: true
allow_failures:
- python: "3.7-dev"
- python: "pypy3"
install:
- TOX_ENV=py${TRAVIS_PYTHON_VERSION}-rl${RL}
- pip install tox coveralls Sphinx sphinx-rtd-theme
script: tox -e $TOX_ENV
after_success: coveralls $COVERALLS_OPTION
notifications:
irc: "chat.freenode.net#xhtml2pdf"
before_script:
- cd doc/source ; sphinx-build -nW -b html -d _build/doctrees . _build/html ; cd ../..
| Remove PyPy from allowed failures list, tests pass | Remove PyPy from allowed failures list, tests pass
| YAML | apache-2.0 | chrisglass/xhtml2pdf,chrisglass/xhtml2pdf,xhtml2pdf/xhtml2pdf,xhtml2pdf/xhtml2pdf |
583d958ed40a6b16e416e34d5ec2192c31916ce3 | .travis.yml | .travis.yml | sudo: false
cache: bundler
language: ruby
addons:
postgresql: "9.3"
env:
matrix:
- SOLIDUS_BRANCH=v1.0 DB=postgres
- SOLIDUS_BRANCH=v1.1 DB=postgres
- SOLIDUS_BRANCH=v1.2 DB=postgres
- SOLIDUS_BRANCH=master DB=postgres
- SOLIDUS_BRANCH=v1.0 DB=mysql
- SOLIDUS_BRANCH=v1.1 DB=mysql
- SOLIDUS_BRANCH=v1.2 DB=mysql
- SOLIDUS_BRANCH=master DB=mysql
script:
- bundle exec rake test_app
- bundle exec rspec
rvm:
- 2.1.8
| sudo: false
cache: bundler
language: ruby
addons:
postgresql: "9.3"
env:
matrix:
- SOLIDUS_BRANCH=v1.0 DB=postgres
- SOLIDUS_BRANCH=v1.1 DB=postgres
- SOLIDUS_BRANCH=v1.2 DB=postgres
- SOLIDUS_BRANCH=v1.3 DB=postgres
- SOLIDUS_BRANCH=master DB=postgres
- SOLIDUS_BRANCH=v1.0 DB=mysql
- SOLIDUS_BRANCH=v1.1 DB=mysql
- SOLIDUS_BRANCH=v1.2 DB=mysql
- SOLIDUS_BRANCH=v1.3 DB=mysql
- SOLIDUS_BRANCH=master DB=mysql
script:
- bundle exec rake test_app
- bundle exec rspec
rvm:
- 2.1.8
| Test against solidus 1.3 branch | Test against solidus 1.3 branch
| YAML | mit | solidusio/solidus_braintree,solidusio/solidus_braintree,solidusio/solidus_braintree,solidusio/solidus_braintree |
a5725bae3eaaafb1a8511e6e01a4abf67da3321b | .travis.yml | .travis.yml | language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-numpy python-scipy python-nose python-matplotlib ipython python-pyaudio libasound2 libasound2-plugins libasound-dev alsa-base"
- "sudo ldconfig"
- "pip install spectrum"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- "python setup.py build_ext --inplace"
script:
- "python setup.py test"
| language: python
python:
- "2.7"
virtualenv:
system_site_packages: true
before_install:
- "sudo apt-get update -qq"
- "sudo apt-get install -qq python-numpy python-scipy python-nose python-matplotlib ipython python-pyaudio libasound2 libasound2-plugins libasound-dev pulseaudio alsa-base"
- "sudo ldconfig"
- "pip install spectrum"
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- "python setup.py build_ext --inplace"
script:
- "python setup.py test"
| Install pulseaudio... maybe it works? | Install pulseaudio... maybe it works?
| YAML | mit | nils-werner/dspy,antiface/dspy |
ac6018ffc725ae00891bd0d0d340c1a77488367a | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.5"
matrix:
allow_failures:
- python: "3.5"
fast_finish: true
# Route build to container-based infrastructure
sudo: false
# Cache the dependencies installed by pip
cache: pip
# Install defaults to "pip install -r requirements.txt"
before_script:
- export TMPDIR=$PWD/tmp
- mkdir $TMPDIR
- export PYTHONPATH=$PYTHONPATH:`pwd -P`
- cd test
# Command to run tests
script:
- coverage run --source=ssm,bin -m unittest2 discover --buffer
after_success:
- coveralls
| language: python
python:
- "2.6"
- "2.7"
- "nightly"
matrix:
allow_failures:
- python: "nightly"
fast_finish: true
# Route build to container-based infrastructure
sudo: false
# Cache the dependencies installed by pip
cache: pip
# Install defaults to "pip install -r requirements.txt"
before_script:
- export TMPDIR=$PWD/tmp
- mkdir $TMPDIR
- export PYTHONPATH=$PYTHONPATH:`pwd -P`
- cd test
# Command to run tests
script:
- coverage run --source=ssm,bin -m unittest2 discover --buffer
after_success:
- coveralls
| Change Travis file to test against Python nightly | Change Travis file to test against Python nightly
Change Travis file to test against latest nightly rather than a fixed
Python 3 version so that it doesn't have to be manually changed.
| YAML | apache-2.0 | apel/ssm,tofu-rocketry/ssm,stfc/ssm,apel/ssm,stfc/ssm,tofu-rocketry/ssm |
14076d8a41f88c1ff18d9e7e8ed1c87c01bca4ec | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8
xcode_sdk: iphonesimulator10.0
script:
- set -o pipefail
- xcodebuild -project NVActivityIndicatorViewDemo.xcodeproj -scheme NVActivityIndicatorView -destination "platform=iOS Simulator,name=iPhone 6" clean test | xcpretty -c
| language: objective-c
osx_image: xcode8
xcode_sdk: iphonesimulator10.0
script:
- set -o pipefail
- xcodebuild -project NVActivityIndicatorView.xcodeproj -scheme NVActivityIndicatorView -destination "platform=iOS Simulator,name=iPhone 6" clean test | xcpretty -c
| Update project name in Travis config | Update project name in Travis config
| YAML | mit | waterskier2007/NVActivityIndicatorView,ninjaprox/NVActivityIndicatorView,ninjaprox/NVActivityIndicatorView,waterskier2007/NVActivityIndicatorView,ninjaprox/NVActivityIndicatorView,ninjaprox/NVActivityIndicatorView |
c55ed4d08e6c613db1587f88b5b25e221fef2199 | .travis.yml | .travis.yml | rvm:
- 1.9.3
- 2.0.0
- 2.1.2
branches:
only:
- master
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
branches:
only:
- master
| Fix Travis WebLint warning message | Fix Travis WebLint warning message
| YAML | mit | speg03/shishakai_bot,speg03/shishakai_bot |
5ae14ba1db753accd51f05310e299977921352a6 | .travis.yml | .travis.yml | language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
notifications:
email: false
sudo: false
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- "6"
- "iojs"
notifications:
email: false
matrix:
fast_finish: true
cache:
directories:
- node_modules
| Bring Travis CI config up to date with grunt-contrib-plugins. | Bring Travis CI config up to date with grunt-contrib-plugins.
| YAML | mit | neftaly/grunt-sri |
671522de5f748b0a2b6bff014c7779fa71892ab7 | .travis.yml | .travis.yml | # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
env:
- DB=MYSQL CORE_RELEASE=master
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=master
- php: 5.6
env: DB=PGSQL CORE_RELEASE=master
allow_failures:
- php: 7.0
before_script:
- composer self-update || true
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
- composer install
- composer require wilr/silverstripe-googlesitemaps
script:
- vendor/bin/phpunit googlesitemaps/tests
| # See https://github.com/silverstripe-labs/silverstripe-travis-support for setup details
sudo: false
language: php
php:
- 5.5
- 5.6
- 7.0
env:
- DB=MYSQL CORE_RELEASE=master
matrix:
include:
- php: 5.6
env: DB=PGSQL CORE_RELEASE=master
before_script:
- composer self-update || true
- git clone git://github.com/silverstripe-labs/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss
- cd ~/builds/ss
script:
- vendor/bin/phpunit googlesitemaps/tests
| Remove PHP 7 from allowed failures | Remove PHP 7 from allowed failures
| YAML | bsd-3-clause | wilr/silverstripe-googlesitemaps,silverstripe-labs/silverstripe-googlesitemaps |
5b87b1d585e6daf63acda78b07ca41ac3e1aa61d | .travis.yml | .travis.yml | sudo: false
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- graphviz
- plotutils
- imagemagick
- librsvg2-bin
- build-essential
- g++-4.8
env:
- CXX=g++-4.8
node_js:
- '12'
- '10'
- '8'
- '6'
python:
- "2.7"
before_install:
- pip install --user -U pip
- pip install --user image scruffy
before_script:
- npm install -g grunt-cli
after_success:
- npx semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
| sudo: false
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- graphviz
- plotutils
- imagemagick
- librsvg2-bin
- build-essential
- g++-4.8
env:
- CXX=g++-4.8
node_js:
- '12'
- '10'
- '8'
python:
- "2.7"
before_install:
- pip install --user -U pip
- pip install --user image scruffy
before_script:
- npm install -g grunt-cli
after_success:
- npx semantic-release
branches:
except:
- /^v\d+\.\d+\.\d+$/
| Stop testing on Node.js 6 | chore: Stop testing on Node.js 6
| YAML | mit | prantlf/grunt-scruffy |
1465c0ce3c61e14e46bcba45a7cd5fe6bc9e8651 | .travis.yml | .travis.yml | #before_script:
# - cd spec/dummy && bundle exec rake db:test:prepare
script: bundle exec rake app:test
bundler_args: --without development
rvm:
- 1.9.2
- 1.9.3
#before_install:
# - gem update --system
# - gem --version
env:
- RAILS=3.0.12
- RAILS=3.1.4
- RAILS=3.2.11
| #before_script:
# - cd spec/dummy && bundle exec rake db:test:prepare
script: bundle exec rake app:test
bundler_args: --without development
rvm:
- 1.9.3
- 2.0.0
#before_install:
# - gem update --system
# - gem --version
env:
- RAILS=3.0.20
- RAILS=3.1.11
- RAILS=3.2.12
| Test against ruby 2.0.0-p0 as well | Test against ruby 2.0.0-p0 as well
| YAML | mit | djonasson/worldwise,djonasson/worldwise |
00db99281bec38b290f9b18f528aa57b0e44ec69 | .travis.yml | .travis.yml | os: osx
addons:
hosts:
- authomatic.test
- authomatic.com
- authomatic.org
install:
- sudo pip install tox
script:
- sudo tox -e py3 -- -vvx --tb=no
after_failure:
- tail -n 500 tests/functional_tests/*.log
- tail -n 500 tests/*.log
- tail -n 500 flask.log
before_install:
- openssl aes-256-cbc -K $encrypted_dbe8ae205660_key -iv $encrypted_dbe8ae205660_iv
-in ./tests/functional_tests/config.py.enc -out ./tests/functional_tests/config.py
-d
- brew update
- brew cask install google-chrome
deploy:
provider: pypi
user: "__token__"
# password: is defined via encrypted env var $PYPI_PASSWORD (stored on travis server)
skip_cleanup: true
on:
tags: true
branch: prepare-0.2.0
| addons:
chrome: stable
hosts:
- authomatic.test
- authomatic.com
- authomatic.org
install:
- sudo pip install tox
script:
- sudo tox -e py3 -- -vvx --tb=no
after_failure:
- tail -n 500 tests/functional_tests/*.log
- tail -n 500 tests/*.log
- tail -n 500 flask.log
before_install:
- openssl aes-256-cbc -K $encrypted_dbe8ae205660_key -iv $encrypted_dbe8ae205660_iv
-in ./tests/functional_tests/config.py.enc -out ./tests/functional_tests/config.py
-d
deploy:
provider: pypi
user: "__token__"
# password: is defined via encrypted env var $PYPI_PASSWORD (stored on travis server)
skip_cleanup: true
on:
tags: true
branch: prepare-0.2.0
| Switch to Linux (MacOS can't do pypi deploys). | Switch to Linux (MacOS can't do pypi deploys).
| YAML | mit | peterhudec/authomatic,peterhudec/authomatic,authomatic/authomatic,authomatic/authomatic,authomatic/authomatic,peterhudec/authomatic |
20dcfd3d22827bc6172e6034c31fec2f7b8913b0 | .travis.yml | .travis.yml | language: python
sudo: false
python: 2.7
services: mysql
env:
global:
- DB_HOST=localhost
- DB_USER=travis
- DB_PASSWORD=''
matrix:
- TOX_ENV=py27-django16-drf22
- TOX_ENV=py27-django16-drf23
- TOX_ENV=py27-django16-drf24
- TOX_ENV=py27-django16-drf30
- TOX_ENV=py27-django16-drf31
- TOX_ENV=py27-django17-drf22
- TOX_ENV=py27-django17-drf23
- TOX_ENV=py27-django17-drf24
- TOX_ENV=py27-django17-drf30
- TOX_ENV=py27-django17-drf31
- TOX_ENV=py27-django18-drf22
- TOX_ENV=py27-django18-drf23
- TOX_ENV=py27-django18-drf24
- TOX_ENV=py27-django18-drf30
- TOX_ENV=py27-django18-drf31
- TOX_ENV=flake8
install:
- pip install tox
before_script:
- mysql -e 'create database name_test;'
script:
- tox -e $TOX_ENV
| language: python
sudo: false
python: 2.7
services: mysql
env:
global:
- DB_HOST=localhost
- DB_USER=travis
- DB_PASSWORD=''
matrix:
- TOX_ENV=py27-django16
- TOX_ENV=py27-django17
- TOX_ENV=py27-django18
- TOX_ENV=flake8
install:
- pip install tox
before_script:
- mysql -e 'create database name_test;'
script:
- tox -e $TOX_ENV
| Update envs to match the tox config. | Update envs to match the tox config.
| YAML | bsd-3-clause | unt-libraries/django-name,damonkelley/django-name,unt-libraries/django-name,unt-libraries/django-name,damonkelley/django-name,damonkelley/django-name |
d9a01f25df06281b83344876b351a7bd2bc31abf | .travis.yml | .travis.yml | language: php
sudo: false
env:
global:
- RUN_PHPCS="no"
- COMPOSER_FLAGS=""
matrix:
include:
- php: 5.5
- php: 5.5
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: RUN_PHPCS="yes"
- php: 7.0
- php: 7.1
- php: hhvm
allow_failures:
- php: 7.1
- php: hhvm
before_script:
- composer self-update
- composer update $COMPOSER_FLAGS
script:
- vendor/bin/phpunit
- if [ "$RUN_PHPCS" == "yes" ]; then vendor/bin/phpcs -p --report=full --extensions=php --standard=.travis/phpcs/Joomla/ruleset.xml src/; fi;
| language: php
sudo: false
env:
global:
- SYMFONY_VERSION="2.8.*"
- RUN_PHPCS="no"
- COMPOSER_FLAGS=""
matrix:
include:
- php: 5.5
- php: 5.5
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
- php: 5.6
env: SYMFONY_VERSION="2.7.*"
- php: 5.6
env: RUN_PHPCS="yes" SYMFONY_VERSION="3.1.*"
- php: 7.0
- php: 7.0
env: SYMFONY_VERSION="3.2.*"
- php: 7.0
env: SYMFONY_VERSION="3.3.*@dev"
- php: 7.1
- php: hhvm
allow_failures:
- php: 7.1
- php: hhvm
before_script:
- composer self-update
- composer require --no-update symfony/templating:${SYMFONY_VERSION}
- composer update $COMPOSER_FLAGS
script:
- vendor/bin/phpunit
- if [ "$RUN_PHPCS" == "yes" ]; then vendor/bin/phpcs -p --report=full --extensions=php --standard=.travis/phpcs/Joomla/ruleset.xml src/; fi;
| Test all supported Symfony branches | Test all supported Symfony branches
| YAML | lgpl-2.1 | joomla-framework/renderer |
54046c265b5af38e5be36ce18583fc9a7bb9473b | .travis.yml | .travis.yml | language: node_js
# Be aware of https://github.com/nodejs/LTS when choosing versions to test
# Update engines.node in package.json if removing old versions.
node_js:
- node
- 0.10
- 0.8
# Note1: Travis appears to interpret 0.1 as 0.10
# Note2: Travis has to build Node versions before 0.8.
# So to be a good netizen, we normally disable it.
# - 0.2
# If the package has OS-dependent features, uncomment this.
#os:
# - linux
# - osx
# Note: semantic-release caches node_modules and `npm prune` in before_script
# https://github.com/semantic-release/semantic-release/blob/v6.2.0/.travis.yml#L3
# Since cache is stored in S3 and npm repository is a caching proxy, why bother?
sudo: false
script:
- npm run test-cov
# Note: Both codecov and coveralls detect branch/PR info from Travis CI
# https://github.com/codecov/codecov-node/blob/v1.0.1/lib/services/travis.js
# https://github.com/nickmerwin/node-coveralls/blob/2.11.5/lib/getOptions.js#L18
after_success:
- npm run upload-cov
| language: node_js
# Be aware of https://github.com/nodejs/LTS when choosing versions to test
# Update engines.node in package.json if removing old versions.
node_js:
- node
- 0.12
- 0.10
# Note: The npm version which ships with 0.8 does not support carat versions,
# which makes it difficult to use (it would require removing tilde from both
# direct and transitive dependencies).
# If the package has OS-dependent features, uncomment this.
#os:
# - linux
# - osx
# Note: semantic-release caches node_modules and `npm prune` in before_script
# https://github.com/semantic-release/semantic-release/blob/v6.2.0/.travis.yml#L3
# Since cache is stored in S3 and npm repository is a caching proxy, why bother?
sudo: false
script:
- npm run test-cov
# Note: Both codecov and coveralls detect branch/PR info from Travis CI
# https://github.com/codecov/codecov-node/blob/v1.0.1/lib/services/travis.js
# https://github.com/nickmerwin/node-coveralls/blob/2.11.5/lib/getOptions.js#L18
after_success:
- npm run upload-cov
| Remove Node 0.8 add 0.12 | Remove Node 0.8 add 0.12
We can't test 0.8 due to the npm issues of the previous commit. So add
0.12 to get more coverage of oldish versions (0.12 introduced Promises
and lacked unhandledRejection, so it is a good test candidate).
Signed-off-by: Kevin Locke <ffb4761cba839470133bee36aeb139f58d7dbaa9@kevinlocke.name>
| YAML | mit | kevinoid/promised-read,kevinoid/promised-read,kevinoid/promised-read |
7410d26e1dba2578ea94bd2477c5357c4bc71fe1 | .travis.yml | .travis.yml | sudo: false
install:
- composer install
language: php
php:
- '5.5'
- '5.6'
- '7.0'
- hhvm
git:
depth: 3
script:
- composer check-build
- phpunit | sudo: false
install:
- composer install
language: php
php:
- '5.6'
- '7.0'
- hhvm
git:
depth: 3
script:
- composer check-build
- phpunit | Remove php 5.5 (security support ends) | Remove php 5.5 (security support ends)
| YAML | mit | marcinlawnik/shamir-secret-sharing-web,marcinlawnik/shamir-secret-sharing-web |
7de9a330e7b21e778b5eb30c2142a7102ce98b93 | .travis.yml | .travis.yml | sudo: false
language: php
php:
- 5.6
- 7.0
- 7.1
script:
# Syntax check all php files and fail for any error text in STDERR
- '! find . -type f -name "*.php" -exec php -d error_reporting=32767 -l {} \; 2>&1 >&- | grep "^"'
| sudo: false
language: php
php:
- 5.6
- 7.0
- 7.3
- nightly
matrix:
allow_failures:
- php: nightly
script:
# Syntax check all php files and fail for any error text in STDERR
- '! find . -type f -name "*.php" -exec php -d error_reporting=32767 -l {} \; 2>&1 >&- | grep "^"'
| Add PHP7.3 and nightly build to Travis CI configuration | Add PHP7.3 and nightly build to Travis CI configuration
| YAML | bsd-3-clause | Seravo/wp-spam-question-filter |
4bf81847f6a026d5427b0fa91765158a38914607 | .travis.yml | .travis.yml | language: java
sudo: false
jdk:
- oraclejdk8
script:
- mvn -B clean verify -Pes-1x
- mvn -B clean verify -Pes-2x
- mvn -B clean verify
after_success:
- "[[ ${TRAVIS_PULL_REQUEST} == 'false' ]] && [[ ${TRAVIS_TAG} == '' ]] && mvn deploy -DskipTests --settings deploy-settings.xml"
| language: java
sudo: false
jdk:
- oraclejdk8
install: true
script:
- mvn -B clean verify -Pes-1x
- mvn -B clean verify -Pes-2x
- mvn -B clean verify
after_success:
- "[[ ${TRAVIS_PULL_REQUEST} == 'false' ]] && [[ ${TRAVIS_TAG} == '' ]] && mvn deploy -DskipTests --settings deploy-settings.xml"
| Disable the default install task | Disable the default install task
| YAML | apache-2.0 | kneubi/fscrawler,kneubi/fscrawler,dadoonet/fsriver,dadoonet/fscrawler,dadoonet/fscrawler,dadoonet/fsriver,dadoonet/fscrawler,dadoonet/fsriver,kneubi/fscrawler |
c7e15336a6be0b7699bf7f5767fca766d8046244 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.3.0
- 2.4.0
- 2.5.0
before_install: gem install bundler -v 1.16.1
| language: ruby
rvm:
- 2.3.0
- 2.4.0
- 2.5.0
- 2.6.0-preview1
before_install: gem install bundler -v 1.16.1
| Add Ruby 2.6.0-preview1 to Travis CI test matrix | Add Ruby 2.6.0-preview1 to Travis CI test matrix
| YAML | mit | buren/honey_format,buren/honey_format |
d13141ce6e5c805f7c5696d13528c9a50d967507 | .travis.yml | .travis.yml | sudo: required
language: go
os:
- linux
go:
- 1.6
- 1.7
services:
- postgresql
env:
- PREST_PG_USER=postgres PREST_PG_DATABASE=prest PREST_PG_PORT=5432
before_install:
- go get -u github.com/kardianos/govendor
- govendor sync
before_script:
- psql -c 'create database prest;' -U postgres
- psql prest -c 'create table test(name text);' -U postgres
script:
- go test -v -race ./...
| sudo: required
language: go
os:
- linux
go:
- 1.6
- 1.7
services:
- postgresql
env:
- PREST_PG_USER=postgres PREST_PG_DATABASE=prest PREST_PG_PORT=5432
before_install:
- go get -u github.com/kardianos/govendor
- govendor sync
before_script:
- psql -c 'create database prest;' -U postgres
- psql prest -c 'create table test(name text);' -U postgres
script:
- go test -v -race ./...
after_success:
- bash <(curl -s https://codecov.io/bash)
| Add codecov.io call to Travis file | Add codecov.io call to Travis file
| YAML | mit | henriquechehad/prest,nuveo/prest,nuveo/prest,henriquechehad/prest |
dcd86577be57d4924de24f63260277742e1b2120 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
bundler_args: --without guard
before_script: gem install bundler
script: bundle exec rubocop -D && bundle exec rake
services:
- redis-server
- mongodb
- memcached
env:
- RAILS_VERSION=5.1.4
- RAILS_VERSION=5.0.0
- RAILS_VERSION=4.2.5
- RAILS_VERSION=3.2.21
matrix:
# don't run rails 5 on ruby versions that can't install rack 2
exclude:
- rvm: 2.1
env: RAILS_VERSION=5.0.0
- rvm: 2.1
env: RAILS_VERSION=5.1.4
| language: ruby
rvm:
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
bundler_args: --without guard
before_script: gem install bundler
script: bundle exec rubocop -D && bundle exec rake
services:
- redis-server
- mongodb
- memcached
env:
- RAILS_VERSION=5.1.4
- RAILS_VERSION=5.0.0
- RAILS_VERSION=4.2.5
- RAILS_VERSION=3.2.21
matrix:
# don't run rails 5 on ruby versions that can't install rack 2
exclude:
- rvm: 2.1
env: RAILS_VERSION=5.0.0
- rvm: 2.1
env: RAILS_VERSION=5.1.4
| Test against Ruby 2.5 since it has been released | Test against Ruby 2.5 since it has been released
| YAML | mit | jnunemaker/flipper,jnunemaker/flipper,jnunemaker/flipper,jnunemaker/flipper |
6f4345e8a188ebd5260e470e1673fe486338e0fa | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
- PHPUNIT=4.8.*
- PHPUNIT=5.0.*
- PHPUNIT=5.1.*
- PHPUNIT=5.2.*
- PHPUNIT=5.3.*
- PHPUNIT=5.4.*
- PHPUNIT=5.5.*
- PHPUNIT=5.6.*
- PHPUNIT=5.6.x-dev
- PHPUNIT=5.7.x-dev
- PHPUNIT=6.0.x-dev
matrix:
allow_failure:
- env: PHPUNIT=5.6.x-dev
- env: PHPUNIT=5.7.x-dev
- env: PHPUNIT=6.0.x-dev
cache:
directories:
- $HOME/.composer
before_script:
- phpenv config-rm xdebug.ini
- composer self-update
- composer require phpunit/phpunit:${PHPUNIT}
script:
- ./vendor/bin/phpunit -c phpunit.xml.example --testsuite tests
| language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
- PHPUNIT=4.8.*
- PHPUNIT=5.0.*
- PHPUNIT=5.1.*
- PHPUNIT=5.2.*
- PHPUNIT=5.3.*
- PHPUNIT=5.4.*
- PHPUNIT=5.5.*
- PHPUNIT=5.6.*
- PHPUNIT=5.6.x-dev
- PHPUNIT=5.7.x-dev
- PHPUNIT=6.0.x-dev
matrix:
exclude:
- php: 5.6
env: PHPUNIT=6.0.x-dev
cache:
directories:
- $HOME/.composer
before_script:
- phpenv config-rm xdebug.ini
- composer self-update
- composer require phpunit/phpunit:${PHPUNIT}
script:
- ./vendor/bin/phpunit -c phpunit.xml.example --testsuite tests
| Exclude old php from master | Exclude old php from master
| YAML | mit | johnkary/phpunit-speedtrap |
653fe44d2aea2629f7227b72d08c5f5e924937ff | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
notifications:
email: false
| language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
- "iojs"
notifications:
email: false
| Add more node versions to build | Add more node versions to build
| YAML | mit | gabegorelick/xgettext-handlebars |
ef91337661a42da90cf5e70823fb62911634d23e | .travis.yml | .travis.yml | language: php
php:
- 5.6
- 7
matrix:
fast_finish: true
allow_failures:
- php: 7
before_script:
- composer selfupdate
- composer install --dev --prefer-dist
script:
- ./bin/phpunit -c app | language: php
php:
- 5.6
- 7
matrix:
fast_finish: true
allow_failures:
- php: 7
before_script:
- composer selfupdate
- composer install --dev --prefer-dist
script:
- ./bin/phpunit -c app
services:
- postgresql
addons:
postgresql: "9.3"
before_script:
- psql -c 'create role symfony password ''symfony'';' -U postgres
- psql -c 'create database symfony owner symfony;' -U postgres | Add Travis support for PostgreSQL | Add Travis support for PostgreSQL
| YAML | mit | diegonobre/symfony-cms,diegonobre/symfony-cms,diegonobre/symfony-cms |
4690c2dce770b7e5f2e81e88566e68cbdd01b25c | .travis.yml | .travis.yml | sudo: required
language: bash
services:
- docker
env:
- PHP_RUNTIME='php:5.4-cli'
- PHP_RUNTIME='php:5.5-cli'
- PHP_RUNTIME='php:5.6-cli' PHPUNIT_OPTS='--coverage-clover=coverage.clover'
- PHP_RUNTIME='php:7.0-cli'
- PHP_RUNTIME='diegomarangoni/hhvm:cli'
before_install:
# https://github.com/travis-ci/travis-ci/issues/4778
# https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142230889
- sudo iptables -L DOCKER || (echo "DOCKER iptables chain missing"; sudo iptables -N DOCKER)
install:
- ./dockerfile.sh | docker build -t msgpack -
script:
- docker run --rm --name msgpack -v $(pwd):/msgpack -w /msgpack -e PHPUNIT_OPTS="$PHPUNIT_OPTS" msgpack
after_script:
- docker run --rm --name msgpack -v $(pwd):/msgpack -w /msgpack msgpack bash -c "
if [[ -f coverage.clover ]]; then
curl -sSOL https://scrutinizer-ci.com/ocular.phar &&
php ocular.phar code-coverage:upload --format=php-clover coverage.clover;
fi
"
| sudo: required
language: bash
services:
- docker
env:
- PHP_RUNTIME='php:5.4-cli'
- PHP_RUNTIME='php:5.5-cli'
- PHP_RUNTIME='php:5.6-cli' PHPUNIT_OPTS='--coverage-clover=coverage.clover'
- PHP_RUNTIME='php:7.0-cli'
- PHP_RUNTIME='baptistedonaux/hhvm:3.9'
- PHP_RUNTIME='baptistedonaux/hhvm:3.12'
- PHP_RUNTIME='baptistedonaux/hhvm:latest'
before_install:
# https://github.com/travis-ci/travis-ci/issues/4778
# https://github.com/zuazo/kitchen-in-travis-native/issues/1#issuecomment-142230889
- sudo iptables -L DOCKER || (echo "DOCKER iptables chain missing"; sudo iptables -N DOCKER)
install:
- ./dockerfile.sh | docker build -t msgpack -
script:
- docker run --rm --name msgpack -v $(pwd):/msgpack -w /msgpack -e PHPUNIT_OPTS="$PHPUNIT_OPTS" msgpack
after_script:
- docker run --rm --name msgpack -v $(pwd):/msgpack -w /msgpack msgpack bash -c "
if [[ -f coverage.clover ]]; then
curl -sSOL https://scrutinizer-ci.com/ocular.phar &&
php ocular.phar code-coverage:upload --format=php-clover coverage.clover;
fi
"
| Test against different hhvm versions | Test against different hhvm versions | YAML | mit | rybakit/msgpack.php,rybakit/msgpack.php |
0f8a8602d145a8cd3577a6dbfe027d829e4554ba | .travis.yml | .travis.yml | language: scala
scala:
- 2.10.4
- 2.11.5
script:
- sbt ++$TRAVIS_SCALA_VERSION clean coverage test
after_success:
- sbt coveralls
jdk:
- oraclejdk8
| language: scala
script:
- sbt clean coverage test
after_success:
- sbt coveralls
jdk:
- oraclejdk8
| Build only for scala 2.11 | Build only for scala 2.11
| YAML | apache-2.0 | edulify/play-hikaricp.edulify.com,apismensky/play-hikaricp.edulify.com |
9288d734bd867293f73786dea243e16947b9a866 | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- "2.0"
- "2.1.10"
- "2.2.7"
- "2.3.4"
- "2.4.1"
- "jruby-9.1.8.0"
command: rake test
cache: bundler
| language: ruby
sudo: false
rvm:
- "2.0"
- "2.1.10"
- "2.2.7"
- "2.3.4"
- "2.4.1"
- "jruby-9.1.8.0"
script: rake test
cache: bundler
| Fix typo in Travis CI | Fix typo in Travis CI
| YAML | mit | janko-m/down |
19997672c57cf4c36c6d0c7e7fb17650afdebf0b | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
matrix:
allow_failures:
- rvm: rbx-2
- rvm: jruby
before_install: bundle update --quiet
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.0
- rbx-2
- jruby
matrix:
allow_failures:
- rvm: rbx-2
- rvm: jruby
before_install: bundle update --quiet
| Add ruby 2.3 to the build matrix | Add ruby 2.3 to the build matrix
| YAML | mit | kenaniah/jschema,soylent/jschema |
c9dbd6655d3d313ecc2eccfc13911649220603fc | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.1.7
- 2.2.3
- 2.3.0
before_install: gem install bundler -v 1.10.6
| language: ruby
rvm:
- 2.0.0
- 2.1.7
- 2.2.3
- 2.3.0
before_install: gem install bundler -v 1.11.2
| Upgrade Bundler version on TravisCI | Upgrade Bundler version on TravisCI
| YAML | mit | kaosf/conoha,kaosf/conoha |
57c1030526a4a34bfa2dfc6f7d1aa90e503d6570 | .travis.yml | .travis.yml | language: ruby
dist: xenial
cache: bundler
rvm:
- 2.6
env:
- GNUPGHOME=/tmp/fauna_fake_gpg_home RAILS_ENV=test
script:
- RAILS_ENV=test bundle exec rake --trace spec
before_script:
- psql -c 'create database fauna_development;' -U postgres
- psql -c 'create database fauna_test;' -U postgres
- cp config/database.yml.travis config/database.yml
- mkdir $GNUPGHOME
- gpg -K
- gpg --gen-key --batch spec/support/test_gpg_key_generation.batch
- bin/setup
addons:
chrome: stable
apt:
packages:
- chromium-chromedriver
services:
- postgresql
| language: ruby
dist: xenial
cache: bundler
rvm:
- 2.6
env:
- GNUPGHOME=/tmp/fauna_fake_gpg_home RAILS_ENV=test
script:
- RAILS_ENV=test bundle exec rake --trace spec
before_script:
- psql -c 'create database fauna_development;' -U postgres
- psql -c 'create database fauna_test;' -U postgres
- cp config/database.yml.travis config/database.yml
- mkdir $GNUPGHOME
- gpg -K
- gpg --gen-key --batch spec/support/test_gpg_key_generation.batch
- bin/setup -u travis -e travis@example.com -n travis -p foobarbaz
addons:
chrome: stable
apt:
packages:
- chromium-chromedriver
services:
- postgresql
| Update Travis config in accordance with new bin/setup logic | Update Travis config in accordance with new bin/setup logic
| YAML | mit | user890104/fauna,initLab/fauna,user890104/fauna,initLab/fauna,initLab/fauna,user890104/fauna |
d0251f75bdfba3b155135b922e2b6eacba57934c | .travis.yml | .travis.yml | language: cpp
compiler:
- clang
cache: apt
before_script:
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ trusty main universe"
- sudo apt-get update -qq
- sudo apt-get install -y libstdc++-4.8-dev clang-3.5 ninja-build
script:
- make -j4 ckati
- ruby runtest.rb -c
- ruby runtest.rb -c -n
- ruby runtest.rb -c -n -a
| language: cpp
compiler:
- clang
cache: apt
before_script:
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ trusty main universe"
- sudo apt-get update -qq
- sudo apt-get install -y libstdc++-4.8-dev clang-3.5 ninja-build
- sudo ln -sf bash /bin/sh
script:
- make -j4 ckati
- ruby runtest.rb -c
- ruby runtest.rb -c -n
- ruby runtest.rb -c -n -a
| Change the shell in Travis CI to bash | Change the shell in Travis CI to bash
| YAML | apache-2.0 | danw/kati,shinh/kati,danw/kati,danw/kati,google/kati,shinh/kati,danw/kati,shinh/kati,shinh/kati,google/kati,shinh/kati,google/kati,danw/kati,shinh/kati,google/kati,google/kati,danw/kati |
4433b3707a20d9b04c7476cdb5b8310a3bc52126 | .travis.yml | .travis.yml | dist: trusty
sudo: required
addons:
apt:
packages:
- lftp
language: node_js
node_js:
- "6"
os:
- linux
env:
global:
- DBUS_SESSION_BUS_ADDRESS=/dev/null
- DISPLAY=:99.0
- CHROME_BIN=chromium-browser
before_script:
- sh -e /etc/init.d/xvfb start
install:
- npm install
script:
- npm run test-coverage
- npm run build-prod
after_success:
- bash <(curl -s https://codecov.io/bash)
- lftp -c 'open -u $FTP_USER,$FTP_PASSWORD 200.80.43.110; rm -r assets'
- lftp -c 'open -u ci@innqube.com,innqube2016 200.80.43.110; glob -a rm -r *'
- cd dist && find . -type f -exec curl --ftp-create-dirs -T {} -u $FTP_USER:$FTP_PASSWORD ftp://200.80.43.110/{} \;
| dist: trusty
sudo: required
addons:
apt:
packages:
- lftp
language: node_js
node_js:
- "6"
os:
- linux
env:
global:
- DBUS_SESSION_BUS_ADDRESS=/dev/null
- DISPLAY=:99.0
- CHROME_BIN=chromium-browser
before_script:
- sh -e /etc/init.d/xvfb start
install:
- npm install
script:
- npm run test-coverage
- npm run build-prod
after_success:
- bash <(curl -s https://codecov.io/bash)
- lftp -c 'open -u $FTP_USER,$FTP_PASSWORD 200.80.43.110; rm -r assets'
- lftp -c 'open -u $FTP_USER,$FTP_PASSWORD 200.80.43.110; glob -a rm -r *'
- cd dist && find . -type f -exec curl --ftp-create-dirs -T {} -u $FTP_USER:$FTP_PASSWORD ftp://200.80.43.110/{} \;
| Remove previous contents before upload | Remove previous contents before upload
| YAML | mit | Innqube/innqube-website,Innqube/innqube-website,Innqube/innqube-website |
6894218d865159876df97968d6930d81fb85040a | .travis.yml | .travis.yml | language: node_js
dist: trusty
sudo: false
node_js:
- "6"
git:
submodules: false
install:
- yarn global add gitbook-cli
- cd ~/.gitbook/versions/3.2.2 && npm i
- cd $TRAVIS_BUILD_DIR
script:
- gitbook build ./docs ./docs-build
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: docs-build
fqdn: doc.iot.noahgao.net
on:
branch: master
| language: node_js
dist: trusty
sudo: false
node_js:
- "6"
git:
submodules: false
install:
- yarn global add gitbook-cli
- npm install gitbook@3.2.2
- mkdir -p ~/.gitbook/versions
- cp node_modules/gitbook ~/.gitbook/versions/3.2.2
- cd ~/.gitbook/versions/3.2.2 && npm i
- cd $TRAVIS_BUILD_DIR
script:
- gitbook build ./docs ./docs-build
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: docs-build
fqdn: doc.iot.noahgao.net
on:
branch: master
| Check Travis CI support for Documentation Deployment | Check Travis CI support for Documentation Deployment
| YAML | mit | noahziheng/freeiot |
105e7a769f8973a7c79f5aa2c89c18fe652520d2 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.9.3
- 2.0.0
services:
- redis-server
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
services:
- redis-server
| Test on latest ruby as well. | Test on latest ruby as well.
| YAML | mit | badboy/try.redis,badboy/try.redis,supasate/try.redis,NoellyB76/try.redis,supasate/try.redis,PradheepShrinivasan/try.redis,NoellyB76/try.redis,PradheepShrinivasan/try.redis,PradheepShrinivasan/try.redis,NoellyB76/try.redis,badboy/try.redis,supasate/try.redis |
7577d3c8f52abd158ed031ab26419bdfe962cfe3 | .travis.yml | .travis.yml | script: 'bundle exec rspec'
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
addons:
code_climate:
repo_token:
secure: "SPOEaP7C8L3IBezo3ocVnrLevrOT5CRu4A1kX83nvQDWtApnkHp0C9pRBTqS5pP/LEVbnts7EQjmlXLVcp7K4daaAcbkqAN/B8+TPXN7CZKoge4xylSzeRTRJ8g7sh7bk4ypxuTY0s5YJWhwz0JdDrObW3ZtFr1dlL5tAXnH3uA="
| script: 'bundle exec rspec'
rvm:
- 2.0.0
- 2.1.1
addons:
code_climate:
repo_token:
secure: "SPOEaP7C8L3IBezo3ocVnrLevrOT5CRu4A1kX83nvQDWtApnkHp0C9pRBTqS5pP/LEVbnts7EQjmlXLVcp7K4daaAcbkqAN/B8+TPXN7CZKoge4xylSzeRTRJ8g7sh7bk4ypxuTY0s5YJWhwz0JdDrObW3ZtFr1dlL5tAXnH3uA="
| Drop support for ruby 1.9.3 | Drop support for ruby 1.9.3
Because:
* Not many folks use it any more
* For some reason it is failing CI (travis)
| YAML | mit | yaworsw/euler-manager,yaworsw/euler-manager,yaworsw/euler-manager,yaworsw/euler-manager,yaworsw/euler-manager,yaworsw/euler-manager,yaworsw/euler-manager |
2cc52a492f30368ed8fb8ba996b2306c9fe85c99 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
install:
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip --quiet install git+https://github.com/sloonz/pil-py3k.git; fi
- pip --quiet install pil
- sudo apt-get --quiet=2 install perceptualdiff
script:
- ./test/test.py
| language: python
python:
- "2.7"
- "3.2"
install:
- if [ "$TRAVIS_PYTHON_VERSION" == "3.2" ]; then pip --quiet install git+https://github.com/sloonz/pil-py3k.git; fi
- sudo apt-get install zlib1g
- pip install pil
- sudo apt-get --quiet=2 install perceptualdiff
script:
- ./test/test.py
| Install zlib to add PNG support to PIL | Install zlib to add PNG support to PIL
| YAML | agpl-3.0 | hugovk/heatmap,aeszter/heatmap,aeszter/heatmap,sethoscope/heatmap,sethoscope/heatmap,hugovk/heatmap |
97d3437824b941d417104ab6d6b51514acb30868 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
before_install:
- npm install -g grunt-cli
| language: node_js
node_js:
- "0.10"
before_install:
- npm install -g bower grunt-cli
| Install bower on Travis CI | Install bower on Travis CI
| YAML | mit | rakuten-frontend/grunt-bower-browser |
2e6acf6dd10c153bb3dd29fa35998cdc12629237 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.3
rvm:
- 2.2
before_install:
- gem install xcpretty
script:
- set -o pipefail
- ./Scripts/test_crypto
- ./Scripts/test_buy
- ./Scripts/test_pay
| language: objective-c
osx_image: xcode8.3
before_install:
- gem install xcpretty
script:
- set -o pipefail
- ./Scripts/test_crypto
- ./Scripts/test_buy
- ./Scripts/test_pay
| Remove `ram 2.2` requirement in CI config. | Remove `ram 2.2` requirement in CI config.
| YAML | mit | Shopify/mobile-buy-sdk-ios,Shopify/mobile-buy-sdk-ios,Shopify/mobile-buy-sdk-ios |
65a259001e18f811d3217748f0ae603a6243141d | .travis.yml | .travis.yml | language: python
sudo: required
services:
- cassandra
- redis-server
- mysql
- postgresql
python:
- 3.6
- 3.7-dev
- pypy3
before_install:
- mysql -e 'CREATE DATABASE eventsourcing;'
before_script:
- psql -c 'create database eventsourcing;' -U postgres
install:
- pip install -U pip wheel
- CASS_DRIVER_NO_CYTHON=1 pip install -e .[testing]
- pip install pymysql
- pip install mysql-connector-python-rf
- pip install python-coveralls
env:
global:
- CASSANDRA_HOSTS=127.0.0.1
- MYSQL_USER=travis
- POSTGRES_USER=postgres
script:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then
coverage run --concurrency=multiprocessing -m unittest discover eventsourcing.tests -v;
fi
- if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then
python -m unittest discover eventsourcing.tests -v;
fi
after_success:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then
coverage combine;
coveralls;
fi
| language: python
sudo: required
services:
- cassandra
- redis-server
- mysql
- postgresql
python:
- 3.6
- 3.7-dev
# - pypy # Cassandra suddenly failing to find hosts on Travis, 21 April 2018. Not sure why.
# - pypy3 # Sadly psycopg doesn't work with pypy3 at the moment, 22 July 2018. Known unresolved issue.
before_install:
- mysql -e 'CREATE DATABASE eventsourcing;'
before_script:
- psql -c 'create database eventsourcing;' -U postgres
install:
- pip install -U pip wheel
- CASS_DRIVER_NO_CYTHON=1 pip install -e .[testing]
- pip install pymysql
- pip install mysql-connector-python-rf
- pip install python-coveralls
env:
global:
- CASSANDRA_HOSTS=127.0.0.1
- MYSQL_USER=travis
- POSTGRES_USER=postgres
script:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then
coverage run --concurrency=multiprocessing -m unittest discover eventsourcing.tests -v;
fi
- if [[ $TRAVIS_PYTHON_VERSION == pypy* ]]; then
python -m unittest discover eventsourcing.tests -v;
fi
after_success:
- if [[ $TRAVIS_PYTHON_VERSION != pypy* ]]; then
coverage combine;
coveralls;
fi
| Revert "Trying to see if psycopg2 supports pypy3 by now..." | Revert "Trying to see if psycopg2 supports pypy3 by now..."
This reverts commit 6ebe1012
| YAML | bsd-3-clause | johnbywater/eventsourcing,johnbywater/eventsourcing |
8f2d19db1ac9b7a2b773b21e7ee3f7fac4dda072 | .travis.yml | .travis.yml | language: generic
sudo: false
env:
global:
- BYOND_MAJOR="511"
- BYOND_MINOR="1385"
- DMEName="DMAPITravisTester.dme"
install:
- ./install_byond.sh
script:
- ./build_byond.sh
| language: generic
sudo: false
env:
global:
- BYOND_MAJOR="511"
- BYOND_MINOR="1385"
- DMEName="DMAPITravisTester.dme"
before_script:
- ./install_byond.sh
script:
- ./build_byond.sh
| Use before_script instead of install | Use before_script instead of install
| YAML | agpl-3.0 | tgstation/tgstation-server-tools,tgstation/tgstation-server,tgstation/tgstation-server,Cyberboss/tgstation-server,Cyberboss/tgstation-server |
44e90f43418606460e812be2d3ed7dc36fb97bcb | .travis.yml | .travis.yml | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
env:
- RACK_VERSION="~> 1.4.0"
- RACK_VERSION="~> 1.3.0"
- RACK_VERSION="~> 1.2.0"
| language: ruby
rvm:
- "1.9.3"
- "2.0.0"
env:
- RACK_VERSION="~> 1.5.0"
- RACK_VERSION="~> 1.4.0"
- RACK_VERSION="~> 1.3.0"
- RACK_VERSION="~> 1.2.0"
| Test against newer versions of Rack. | Test against newer versions of Rack.
| YAML | mit | mdub/sham_rack |
d8c2f60069e8d537e25f4b765f3c8cb1e37d834c | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode8.3
env:
global:
- LC_CTYPE=en_US.UTF-8
- PROJECT=Waffle.xcodeproj
git:
submodules: false
before_script:
- git submodule update --init --recursive
script:
- set -o pipefail
- open -b com.apple.iphonesimulator # Workaround https://github.com/travis-ci/travis-ci/issues/3040
- xcodebuild clean test -project "Waffle.xcodeproj" -scheme "Waffle" -destination "platform=iOS Simulator,name=iPhone 6 Plus,OS=latest" -configuration Release -enableCodeCoverage YES ENABLE_TESTABILITY=YES
- bash <(curl -s https://codecov.io/bash) -J 'Waffle'
notifications:
email:
on_success: never
| language: objective-c
osx_image: xcode8.3
env:
global:
- LC_CTYPE=en_US.UTF-8
- PROJECT=Waffle.xcodeproj
git:
submodules: false
before_script:
- git submodule update --init --recursive
script:
- set -o pipefail
- open -b com.apple.iphonesimulator # Workaround https://github.com/travis-ci/travis-ci/issues/3040
- xcodebuild clean test -project "Waffle.xcodeproj" -scheme "Waffle" -destination "platform=iOS Simulator,name=iPhone 6 Plus,OS=latest" -configuration Debug -enableCodeCoverage YES ENABLE_TESTABILITY=YES | xcpretty -c
- bash <(curl -s https://codecov.io/bash) -J 'Waffle'
notifications:
email:
on_success: never
| Use Debug configuration for code coverage. | Use Debug configuration for code coverage.
| YAML | mit | CodeReaper/Waffle,CodeReaper/Waffle |
31b57328d62d457ebe9a06778c19346ee1c4edb2 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.4
cache:
- bundler
- apt
env:
- BERKSHELF_PATH=/tmp/
before_install:
- sudo apt-get update -qq
- curl -L https://www.chef.io/chef/install.sh | sudo bash
- rm -Rf .bundle
install:
- bundle install
- bundle exec berks vendor /tmp/cookbooks
- cp dummy-validation.pem /tmp/validation.pem
- cp dna.json /tmp/dna.json
script:
- bundle exec foodcritic -f any .
- bundle exec tailor
- sudo chef-client -z -c client.rb -j dna.json
| language: ruby
rvm:
- 2.1.4
env:
- BERKSHELF_PATH=/tmp/
before_install:
- sudo apt-get update -qq
- curl -L https://www.chef.io/chef/install.sh | sudo bash
- rm -Rf .bundle
install:
- bundle install
- bundle exec berks vendor /tmp/cookbooks
- cp dummy-validation.pem /tmp/validation.pem
- cp dna.json /tmp/dna.json
script:
- bundle exec foodcritic -f any .
- bundle exec tailor
- sudo chef-client -z -c client.rb -j dna.json
| Remove caches. Not available for open-source projects | Remove caches. Not available for open-source projects
| YAML | apache-2.0 | stonevil/nexus-cookbook,stonevil/nexus-cookbook,stonevil/nexus-cookbook |
839e979d652959929ececc60aab8db574673afee | .travis.yml | .travis.yml | addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=chefdk-debian-8
- INSTANCE=chefdk-debian-9
- INSTANCE=chefdk-centos-6
- INSTANCE=chefdk-centos-7
- INSTANCE=chefdk-centos-7 CHEF_VERSION=13
- INSTANCE=chefdk-ubuntu-1604
- INSTANCE=chefdk-ubuntu-1804
- INSTANCE=chefdk-ubuntu-1604 CHEF_VERSION=13
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- delivery local all
env:
- UNIT_AND_LINT=1
- CHEF_LICENSE=accept
| addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=chefdk-debian-8
- INSTANCE=chefdk-debian-9
- INSTANCE=chefdk-debian-10
- INSTANCE=chefdk-centos-6
- INSTANCE=chefdk-centos-7
- INSTANCE=chefdk-centos-7 CHEF_VERSION=13
- INSTANCE=chefdk-centos-7 CHEF_VERSION=14
- INSTANCE=chefdk-ubuntu-1604
- INSTANCE=chefdk-ubuntu-1804
- INSTANCE=chefdk-ubuntu-1604 CHEF_VERSION=13
- INSTANCE=chefdk-ubuntu-1604 CHEF_VERSION=14
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
script: KITCHEN_LOCAL_YAML=kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- delivery local all
env:
- UNIT_AND_LINT=1
- CHEF_LICENSE=accept
| Update platforms we test in Travis | Update platforms we test in Travis
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | chef-cookbooks/chef-ingredient,chef-cookbooks/chef-ingredient |
c044ebee86afb4456f2a0a9d0725182429fd8568 | .travis.yml | .travis.yml | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
# command to install dependencies
install:
# - python .
python tools/setup.py install --user
# - pip install -r requirements.txt
# command to run tests
script: python userlist.py
| language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
# command to install dependencies
install:
# - python .
python userlist.py test
| Edit for allowing Travis to compile this file | Edit for allowing Travis to compile this file | YAML | apache-2.0 | apazon/AKAMAItools |
b1b29b537e274b74758343e324c02afca48060f4 | .travis.yml | .travis.yml | language: node_js
node_js:
- "6"
- "6.1"
- "5.11"
- "0.6"
- "iojs" | language: node_js
node_js:
- "6"
- "6.1"
- "5.11"
- "iojs" | Remove node 0.6 from CI. | Remove node 0.6 from CI.
| YAML | isc | markschad/ms-dag-ts |
a892076f56493218399b25d28d6c0094aa9058d5 | .travis.yml | .travis.yml | language: node_js
node_js:
- "lts/*"
- "node"
script: npm run ci | language: node_js
node_js:
- "lts/*"
- "node"
script: npm run ci
deploy:
provider: npm
email: "abenojaalex@gmail.com"
api_key: "5c1a90c9-de7b-4cb7-b723-35bb9ea401d9"
on:
branch: master | Automate deployments from successful master builds | Automate deployments from successful master builds
| YAML | mit | jrios/es-components,jrios/es-components,jrios/es-components,TWExchangeSolutions/es-components,TWExchangeSolutions/es-components |
b353ece63bc0e4b7c46428e67a27950d7f87d6ce | .travis.yml | .travis.yml | sudo: false
language: php
env:
global:
- COMPOSER_ROOT_VERSION=4.0.x-dev
matrix:
fast_finish: true
include:
- php: 5.6
env: DB=MYSQL PHPUNIT_TEST=1 PHPCS_TEST=1
- php: 7.0
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL PDO=1 PHPUNIT_COVERAGE_TEST=1
before_script:
- phpenv rehash
- phpenv config-rm xdebug.ini
- composer validate
- composer require --no-update silverstripe/recipe-cms:1.0.x-dev
- composer install --prefer-dist
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPCS_TEST ]]; then composer run-script lint; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
| sudo: false
language: php
env:
global:
- COMPOSER_ROOT_VERSION=2.0.x-dev
matrix:
fast_finish: true
include:
- php: 5.6
env: DB=MYSQL RECIPE_VERSION=1.0.x-dev PHPUNIT_TEST=1 PHPCS_TEST=1
- php: 7.0
env: DB=MYSQL RECIPE_VERSION=1.1.x-dev PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL RECIPE_VERSION=4.2.x-dev PDO=1 PHPUNIT_COVERAGE_TEST=1
- php: 7.2
env: DB=MYSQL RECIPE_VERSION=4.x-dev PHPUNIT_TEST=1
before_script:
- phpenv rehash
- phpenv config-rm xdebug.ini
- composer validate
- composer require --no-update silverstripe/recipe-cms:"$RECIPE_VERSION"
- composer install --prefer-dist
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPCS_TEST ]]; then composer run-script lint; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
| Add various recipe versions to Travis matrix | Add various recipe versions to Travis matrix
| YAML | mit | lekoala/silverstripe-debugbar,lekoala/silverstripe-debugbar |
fc59ee4edfc59defe97a0be6d5200cd9a02803a3 | .travis.yml | .travis.yml | language: java
install: echo "I trust Maven completely."
# build, verify, and deploy the snapshot artifacts
script:
- mvn verify
- '[ "${TRAVIS_PULL_REQUEST}" = "false" ] && mvn deploy --settings maven_deploy_settings.xml || false'
after_success: mvn cobertura:cobertura coveralls:cobertura
jdk:
- oraclejdk7
- oraclejdk8
env:
global:
- secure: "TpIrk7R9XBXQXN2KzX/YbbRVEdOmGbWbuLI2XyY89GUWJi3nXMWXZQL2d4eDrPbX3S1pxOXmiQq5m0RG4eoLD9l6LIpn6fEr+jiR8GO4BPjTj0aYk1DFIjFiiDZmPZxGfQlKxCfaObBdfQ8XoTN5j5pCz17xGL0rhDSkIsda9dg="
- secure: "Xui1LG5gns29jLINZ591LVyNvfpS/hDquHMBmqbz06prD2wxBkrlxSbn3kvo+eJregUgxy6CWI333+FA2AUpMHYfIOwTPjLy3U8WTiuor5oEo9rus7PkIrm0edo1/eC5wIXVxpTz5wI3FO5/2o+vM3lf5PeMDQ71COY57g5M6Ug="
| language: java
install: echo "I trust Maven completely."
# build, verify, and deploy the snapshot artifacts
script:
- mvn verify
- 'if [[ $TRAVIS_PULL_REQUEST == 'false' ]]; then mvn deploy --settings maven_deploy_settings.xml; fi'
after_success: mvn cobertura:cobertura coveralls:cobertura
jdk:
- oraclejdk7
- oraclejdk8
env:
global:
- secure: "TpIrk7R9XBXQXN2KzX/YbbRVEdOmGbWbuLI2XyY89GUWJi3nXMWXZQL2d4eDrPbX3S1pxOXmiQq5m0RG4eoLD9l6LIpn6fEr+jiR8GO4BPjTj0aYk1DFIjFiiDZmPZxGfQlKxCfaObBdfQ8XoTN5j5pCz17xGL0rhDSkIsda9dg="
- secure: "Xui1LG5gns29jLINZ591LVyNvfpS/hDquHMBmqbz06prD2wxBkrlxSbn3kvo+eJregUgxy6CWI333+FA2AUpMHYfIOwTPjLy3U8WTiuor5oEo9rus7PkIrm0edo1/eC5wIXVxpTz5wI3FO5/2o+vM3lf5PeMDQ71COY57g5M6Ug="
| Change to an 'if' block since `false` causes a non-zero return, which will make maven break the build. | Change to an 'if' block since `false` causes a non-zero return, which will make maven break the build. | YAML | apache-2.0 | michelle-liang/dropwizard,Alexey1Gavrilov/dropwizard,mulloymorrow/dropwizard,micsta/dropwizard,edgarvonk/dropwizard,pkwarren/dropwizard,dotCipher/dropwizard,helt/dropwizard,vikasshinde22105/dropwizard,micsta/dropwizard,charlieg/dropwizard,michelle-liang/dropwizard,bbrighttaer/dropwizard,sytolk/dropwizard,grange74/dropwizard,svenefftinge/dropwizard,mulloymorrow/dropwizard,jplock/dropwizard,flipsterkeshav/dropwizard,douzzi/dropwizard,tiankong1986/dropwizard,akraxx/dropwizard,nickbabcock/dropwizard,ryankennedy/dropwizard,yshaojie/dropwizard,yshaojie/dropwizard,AnuchitPrasertsang/dropwizard,cvent/dropwizard,tjcutajar/dropwizard,carlo-rtr/dropwizard,dsavinkov/dropwizard,jplock/dropwizard,Trundle/dropwizard,phouse512/dropwizard,mattnelson/dropwizard,calou/dropwizard,vforce/dropwizard,AnuchitPrasertsang/dropwizard,jplock/dropwizard,nickbabcock/dropwizard,flipsterkeshav/dropwizard,Alexey1Gavrilov/dropwizard,hbrahi1/dropwizard,calou/dropwizard,ajaiyen/dropwizard,vforce/dropwizard,mosoft521/dropwizard,Toilal/dropwizard,ojacobson/dropwizard,csae1152/dropwizard,douzzi/dropwizard,phambryan/dropwizard,charlieg/dropwizard,sytolk/dropwizard,StanSvec/dropwizard,akshaymaniyar/dropwizard,kjetilv/dropwizard,MikaelAmborn/dropwizard,Randgalt/dropwizard,flipsterkeshav/dropwizard,csae1152/dropwizard,dotCipher/dropwizard,Trundle/dropwizard,rgupta-okta/dropwizard,shawnsmith/dropwizard,mosoft521/dropwizard,chaminda204/dropwizard,calou/dropwizard,MikaelAmborn/dropwizard,ben1247/dropwizard,qinfchen/dropwizard,amillalen/dropwizard,csae1152/dropwizard,wangcan2014/dropwizard,xiaoping2367/dropwizard,MikaelAmborn/dropwizard,kjetilv/dropwizard,aaanders/dropwizard,cvent/dropwizard,wakandan/dropwizard,dsavinkov/dropwizard,Toilal/dropwizard,ben1247/dropwizard,patrox/dropwizard,tjcutajar/dropwizard,randiroe/dropwizard,hbrahi1/dropwizard,Randgalt/dropwizard,Trundle/dropwizard,wilko55/dropwizard,christophercurrie/dropwizard,charlieg/dropwizard,micsta/dropwizard,mattnelson/dropwizard,wangcan2014/dropwizard,hancy2013/dropwizard,StanSvec/dropwizard,xiaoping2367/dropwizard,wangcan2014/dropwizard,anonymint/dropwizard,nickbabcock/dropwizard,kdave47/dropwizard,jelgh/dropwizard,wilko55/dropwizard,AnuchitPrasertsang/dropwizard,mtbigham/dropwizard,pkwarren/dropwizard,phouse512/dropwizard,phouse512/dropwizard,tburch/dropwizard,ryankennedy/dropwizard,takecy/dropwizard,puneetjaiswal/dropwizard,svenefftinge/dropwizard,taltmann/dropwizard,evnm/dropwizard,vforce/dropwizard,benearlam/dropwizard,edgarvonk/dropwizard,mosoft521/dropwizard,christophercurrie/dropwizard,bbrighttaer/dropwizard,chaminda204/dropwizard,biogerm/dropwizard,philandstuff/dropwizard,akshaymaniyar/dropwizard,arunsingh/dropwizard,nmharsha93/dropwizard,vikasshinde22105/dropwizard,dsavinkov/dropwizard,xiaoping2367/dropwizard,patrox/dropwizard,randiroe/dropwizard,taohaolong/dropwizard,zhiqinghuang/dropwizard,svenefftinge/dropwizard,taltmann/dropwizard,kjetilv/dropwizard,shawnsmith/dropwizard,thomasandersen77/dropwizard,evnm/dropwizard,puneetjaiswal/dropwizard,Alexey1Gavrilov/dropwizard,mtbigham/dropwizard,pradex/dropwizard,evnm/dropwizard,mnrasul/dropwizard,yshaojie/dropwizard,ajaiyen/dropwizard,tiankong1986/dropwizard,arunsingh/dropwizard,ajaiyen/dropwizard,jelgh/dropwizard,christophercurrie/dropwizard,sytolk/dropwizard,michelle-liang/dropwizard,csae1152/dropwizard,randiroe/dropwizard,takecy/dropwizard,hancy2013/dropwizard,pkwarren/dropwizard,sridhar-newsdistill/dropwizard,helt/dropwizard,bbrighttaer/dropwizard,zhiqinghuang/dropwizard,amillalen/dropwizard,biogerm/dropwizard,jelgh/dropwizard,aaanders/dropwizard,mattnelson/dropwizard,zhiqinghuang/dropwizard,mulloymorrow/dropwizard,grange74/dropwizard,carlo-rtr/dropwizard,nmharsha93/dropwizard,tjcutajar/dropwizard,sridhar-newsdistill/dropwizard,vikasshinde22105/dropwizard,puneetjaiswal/dropwizard,wakandan/dropwizard,aaanders/dropwizard,qinfchen/dropwizard,benearlam/dropwizard,wakandan/dropwizard,anonymint/dropwizard,ben1247/dropwizard,ckingsbu/dropwizard,dropwizard/dropwizard,arunsingh/dropwizard,biogerm/dropwizard,shawnsmith/dropwizard,Toilal/dropwizard,philandstuff/dropwizard,dropwizard/dropwizard,phambryan/dropwizard,rgupta-okta/dropwizard,dotCipher/dropwizard,benearlam/dropwizard,mnrasul/dropwizard,carlo-rtr/dropwizard,edgarvonk/dropwizard,amillalen/dropwizard,rgupta-okta/dropwizard,ojacobson/dropwizard,taohaolong/dropwizard,wilko55/dropwizard,hancy2013/dropwizard,nmharsha93/dropwizard,pradex/dropwizard,grange74/dropwizard,patrox/dropwizard,dropwizard/dropwizard,chaminda204/dropwizard,hbrahi1/dropwizard,sridhar-newsdistill/dropwizard,pradex/dropwizard,ojacobson/dropwizard,akraxx/dropwizard,tburch/dropwizard,mnrasul/dropwizard,philandstuff/dropwizard,kdave47/dropwizard,mtbigham/dropwizard,akraxx/dropwizard,ckingsbu/dropwizard,qinfchen/dropwizard,cvent/dropwizard,helt/dropwizard,taltmann/dropwizard,thomasandersen77/dropwizard,phambryan/dropwizard,thomasandersen77/dropwizard,tburch/dropwizard,akshaymaniyar/dropwizard,kdave47/dropwizard,taohaolong/dropwizard,StanSvec/dropwizard,AnuchitPrasertsang/dropwizard,Randgalt/dropwizard,charlieg/dropwizard,ryankennedy/dropwizard,ckingsbu/dropwizard,tiankong1986/dropwizard,takecy/dropwizard,douzzi/dropwizard |
52fa76704332c1ac4b7b3ea1eb822592d3ddf33c | .travis.yml | .travis.yml | sudo: true
language: go
go:
- 1.5.3
addons:
apt:
packages:
- fuse
script:
- make
notifications:
email: jesse.szwedko@gmail.com
| sudo: true
language: go
go:
- 1.7
addons:
apt:
packages:
- fuse
script:
- make
notifications:
email: jesse.szwedko@gmail.com
| Update Travis to use 1.7 | Update Travis to use 1.7
| YAML | mit | jszwedko/ec2-metadatafs |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.