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
|
---|---|---|---|---|---|---|---|---|---|
7e0b47cde8c8808af5690c1cf10d0e87c520f131
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
# command to install dependencies
install: "pip install -r requirements.txt"
# command to run tests
script: py.test tests/all.py
|
language: python
python:
- "2.7"
- "3.5"
# command to install dependencies
install: "python setup.py install"
# command to run tests
script: py.test tests/all.py
|
Add python 3 to Travis build matrix
|
Add python 3 to Travis build matrix
|
YAML
|
mit
|
coinforge/bitforge,muun/bitforge
|
c463d28cbdc0c6cd8f5730a7f2c6bfa9269052c9
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.4.1
cache: bundler
env:
global:
- CXX=g++-4.8
services:
- redis-server
addons:
postgresql: 9.3
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_script:
- bundle exec rake db:create db:migrate db:seed
|
language: ruby
rvm:
- 2.4.1
cache: bundler
env:
global:
- CXX=g++-4.8
services:
- redis-server
addons:
postgresql: 9.3
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- gem install bundler
before_script:
- bundle exec rake db:create db:migrate db:seed
|
Install bundler on Travis CI
|
Install bundler on Travis CI
|
YAML
|
mit
|
jacobwgillespie/halfstaff,jacobwgillespie/halfstaff,jacobwgillespie/halfstaff
|
c2aa236ac64ffd22077ea9aa9b6538a831b45883
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
services:
- mongodb
|
language: node_js
node_js:
- "0.10"
services:
- mongodb
before_script:
- cp .env-example .env
|
Copy .env-example to .env before running tests on Travis
|
Copy .env-example to .env before running tests on Travis
|
YAML
|
mit
|
okfn/aquarium,okfn/aquarium
|
25dd207f6044e718c3b2d0220493898352ca3a18
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.1
- 1.2
services:
- redis-server
before_script:
- mysql -e "CREATE DATABASE goat"
- mysql goat < res/mysql/announce_log.sql
- mysql goat < res/mysql/api_keys.sql
- mysql goat < res/mysql/files.sql
- mysql goat < res/mysql/files_users.sql
- mysql goat < res/mysql/scrape_log.sql
- mysql goat < res/mysql/users.sql
- mysql goat < res/mysql/whitelist.sql
- mysql -e "UPDATE mysql.user SET password=PASSWORD('travis') WHERE user='travis'; FLUSH PRIVILEGES"
script:
- go build -o bin/goat
- ./bin/goat -test
- go test github.com/mdlayher/goat/goat/
- go build -tags='ql' -o bin/goat
- ./bin/goat -test
|
language: go
go:
- 1.1
- 1.2
services:
- redis-server
before_script:
- mysql -e "CREATE DATABASE goat"
- mysql goat < res/mysql/announce_log.sql
- mysql goat < res/mysql/api_keys.sql
- mysql goat < res/mysql/files.sql
- mysql goat < res/mysql/files_users.sql
- mysql goat < res/mysql/scrape_log.sql
- mysql goat < res/mysql/users.sql
- mysql goat < res/mysql/whitelist.sql
- mysql -e "UPDATE mysql.user SET password=PASSWORD('travis') WHERE user='travis'; FLUSH PRIVILEGES"
script:
- go get
- go build -o bin/goat
- ./bin/goat -test
- go test github.com/mdlayher/goat/goat/
- go build -tags='ql' -o bin/goat
- ./bin/goat -test
|
Add 'go get' to Travis build
|
Add 'go get' to Travis build
|
YAML
|
mit
|
mdlayher/goat
|
13fcbec3100cb6eced26e633316a4d3acd4722f3
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- gcc -std=c++0x
- clang -std=c++1y
before_install: sudo apt-get update
install:
- sudo apt-get install build-essential
- sudo apt-get install libboost-all-dev
- sudo apt-get install libmpfr-dev
- sudo apt-get install cmake
#- sudo apt-get install make
- sudo apt-get install curl
- sudo apt-get install libgmp3-dev
- curl -O https://gforge.inria.fr/frs/download.php/32994/CGAL-4.3.tar.gz
- tar zxvf CGAL-4.3.tar.gz &> install.log
- cd CGAL-4.3
- cmake .
- make
- sudo make install &>> install.log
script:
- cd ..
- cmake .
- make
after_script: make test
cache:
- bundler
- apt
|
language: cpp
compiler:
- gcc -std=c++0x
- clang -std=c++1y
before_install: sudo apt-get update
install:
#- sudo apt-get install build-essential
# Install gcc 4.8
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
- sudo apt-get install libboost-all-dev
- sudo apt-get install libmpfr-dev
- sudo apt-get install cmake
#- sudo apt-get install make
- sudo apt-get install curl
- sudo apt-get install libgmp3-dev
- curl -O https://gforge.inria.fr/frs/download.php/32994/CGAL-4.3.tar.gz
- tar zxvf CGAL-4.3.tar.gz &> install.log
- cd CGAL-4.3
- cmake .
- make
- sudo make install &>> install.log
script:
- cd ..
- cmake .
- make
after_script: make test
cache:
- bundler
- apt
|
Fix Travis CI: install gcc 4.8 for c++11
|
Fix Travis CI: install gcc 4.8 for c++11
|
YAML
|
bsd-3-clause
|
acgetchell/CDT-plusplus,acgetchell/CDT-plusplus,acgetchell/CDT-plusplus
|
5cb437131ea5c4639916afd52684e2e9de61e6e7
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.11"
- "0.10"
|
language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
|
Test with Node.js 0.12 instead of 0.11 and test iojs
|
Test with Node.js 0.12 instead of 0.11 and test iojs
|
YAML
|
mit
|
limulus/http-file-share
|
318e449da53318898ab9682e83860592051639e7
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.4
- hhvm
before_script:
- pear install PHP_CodeSniffer
- phpenv rehash
- git clone https://git.wikimedia.org/git/mediawiki/tools/codesniffer.git /home/travis/build/codesniffer
script:
- phpcs . --standard=/home/travis/build/codesniffer/MediaWiki/ruleset.xml --ignore=home.php
- phpunit tests
|
language: php
php:
- 5.5
- 5.4
before_script:
- pear install PHP_CodeSniffer
- phpenv rehash
- git clone https://git.wikimedia.org/git/mediawiki/tools/codesniffer.git /home/travis/build/codesniffer
script:
- phpcs . --standard=/home/travis/build/codesniffer/MediaWiki/ruleset.xml --ignore=home.php
- phpunit tests
|
Revert "run tests on HHVM"
|
Revert "run tests on HHVM"
Since Travis-CI does not support the `pear` command on HHVM yet,
the builds are errored:
https://travis-ci.org/ricordisamoa/dvncmd
This reverts commit 6f1f339b8d551844a67b0883f9ade6f69f618ab1.
|
YAML
|
agpl-3.0
|
ricordisamoa/dvncmd,ricordisamoa/dvncmd
|
f6a89201c3afef9d2d3dffb04c91a4d5bbff239e
|
.travis.yml
|
.travis.yml
|
notifications:
email: false
language: ruby
rvm:
- 2.2.4
addons:
postgresql: '9.4'
env:
- TRAVIS_NODE_VERSION="6"
cache:
bundler: true
directories:
- vendor/bundle
- node_modules
- $HOME/.rvm/gems
- tmp/cache/assets/test/sprockets
install:
- bundle install
- npm install
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'CREATE DATABASE travis_ci_test' -U postgres
script:
- npm run style
- npm run unit-test
- RAILS_ENV=test bundle exec rake db:migrate --trace
- RAILS_ENV=test bundle exec rspec
- RAILS_ENV=test bundle exec rake db:seed
|
notifications:
email: false
language: ruby
rvm:
- 2.2.4
addons:
postgresql: '9.4'
env:
- TRAVIS_NODE_VERSION="6"
cache:
bundler: true
directories:
- vendor/bundle
- node_modules
- $HOME/.rvm/gems
- tmp/cache/assets/test/sprockets
install:
- bundle install
- nvm install 6
- npm install
before_script:
- nvm use 6
- cp config/database.yml.travis config/database.yml
- psql -c 'CREATE DATABASE travis_ci_test' -U postgres
script:
- npm run style
- npm run unit-test
- RAILS_ENV=test bundle exec rake db:migrate --trace
- RAILS_ENV=test bundle exec rspec
- RAILS_ENV=test bundle exec rake db:seed
|
Use nvm to install node 6
|
Use nvm to install node 6
|
YAML
|
mit
|
cheshire137/overwatch-team-comps,cheshire137/overwatch-team-comps,cheshire137/overwatch-team-comps
|
fd0768e1d5cbcb7164f20fee4d3f4e1985a38ea0
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
sudo: false
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.12"
- iojs
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Add node 0.12 and iojs to CI run.
|
Add node 0.12 and iojs to CI run.
|
YAML
|
mit
|
cliffano/nestor-lifx
|
8dfb7b1c913ff7f9c154a0f92ca8fba107a13707
|
.travis.yml
|
.travis.yml
|
sudo: false
language: go
go:
- 1.10.0
- 1.6.2
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go tool vet .
- go test -v -race ./...
|
sudo: false
language: go
go:
- 1.11.8
- 1.12.3
- tip
matrix:
allow_failures:
- go: tip
fast_finish: true
install:
- # Do nothing. This is needed to prevent default install action "go get -t -v ./..." from happening here (we want it to happen inside script step).
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .)
- go test -v -race ./...
|
Update Travis to run with supported Go versions
|
Update Travis to run with supported Go versions
Also, drop `go tool vet` which isn't supported anymore, and is also incorporated in `go test`.
|
YAML
|
bsd-3-clause
|
go-gl/mathgl
|
a01fe661e7b2a6ae58d6b310516b0831355b2dca
|
.travis.yml
|
.travis.yml
|
language: c
sudo: required
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
packages:
- libtommath-dev
- os: linux
compiler: clang
addons:
apt:
packages:
- libtommath-dev
- clang-3.9
- os: osx
image: xcode8
notifications:
email: false
before_install:
- if [ "$(uname)" = "Darwin" ]; then
brew update;
brew install -v libtommath concurrencykit;
fi
- |
git clone https://github.com/concurrencykit/ck.git ${HOME}/ck
cd ${HOME}/ck
git checkout v0.6.0
./configure PREFIX=/usr
make all
sudo make install
if [ "$(uname)" = "Linux" ]; then
sudo ldconfig
fi
- |
git clone https://github.com/justinethier/cyclone-bootstrap.git ${HOME}/cyclone-bootstrap
cd ${HOME}/cyclone-bootstrap
make
sudo make install
script:
- make
- sudo make install
- make test
|
language: c
sudo: required
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
packages:
- libtommath-dev
- os: linux
compiler: clang
addons:
apt:
packages:
- libtommath-dev
- clang-3.9
- os: osx
image: xcode8
notifications:
email: false
before_install:
- if [ "$(uname)" = "Darwin" ]; then
brew update;
brew install -v libtommath concurrencykit;
fi
- |
git clone https://github.com/concurrencykit/ck.git ${HOME}/ck
cd ${HOME}/ck
git checkout 0.6.0
./configure PREFIX=/usr
make all
sudo make install
if [ "$(uname)" = "Linux" ]; then
sudo ldconfig
fi
- |
git clone https://github.com/justinethier/cyclone-bootstrap.git ${HOME}/cyclone-bootstrap
cd ${HOME}/cyclone-bootstrap
make
sudo make install
script:
- make
- sudo make install
- make test
|
Fix Concurrency Kit version tag in Travis
|
Fix Concurrency Kit version tag in Travis
|
YAML
|
mit
|
justinethier/cyclone,justinethier/cyclone
|
de42ad39ca396cf59071d2c766d9ff8120f6441d
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: required
language: rust
rust:
- nightly
- beta
- stable
env:
global:
- secure: DLtoi131hH5kOKHzpBB0ZoVDjCWwSiHmTeGaS86ZPx+IHYQzZ6Ll4x/e82SBDG8YGRoOiJUYfatju84ew7Tk9RLK/xvULPJ/WNhSwBK/p9pYWmAl1+QFoaYT3VvsnuIzmIoFjAz6jluBAxvZ5L+pgagayC0BM1Kw83dMS6Ef1LY=
before_install:
- sudo bash -c "echo '[mysqld]' >> /usr/share/mysql/my-default.cnf"
- sudo bash -c "echo 'sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES' >> /usr/share/mysql/my-default.cnf"
script:
- make test
|
dist: trusty
sudo: required
language: rust
rust:
- nightly
- beta
- stable
env:
global:
- secure: DLtoi131hH5kOKHzpBB0ZoVDjCWwSiHmTeGaS86ZPx+IHYQzZ6Ll4x/e82SBDG8YGRoOiJUYfatju84ew7Tk9RLK/xvULPJ/WNhSwBK/p9pYWmAl1+QFoaYT3VvsnuIzmIoFjAz6jluBAxvZ5L+pgagayC0BM1Kw83dMS6Ef1LY=
matrix:
- COMPRESSION=0
- COMPRESSION=1
before_install:
- sudo bash -c "echo '[mysqld]' >> /usr/share/mysql/my-default.cnf"
- sudo bash -c "echo 'sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES' >> /usr/share/mysql/my-default.cnf"
script:
- make test
|
Add compression to the travix matrix
|
Add compression to the travix matrix
|
YAML
|
apache-2.0
|
blackbeam/rust-mysql-simple
|
2c7ceac5911188010728fbee3440535027a72f3d
|
.travis.yml
|
.travis.yml
|
# https://travis-ci.org/mre/kafka-influxdb
sudo: false
os:
- linux
- osx
language: python
python:
- "2.7"
- pypy
# Coming soon
#- 3.3
#- 3.4
#- pypy3
install:
- pip install python-coveralls
- pip install coverage
- pip install nose
- pip install -r requirements.txt
script:
- python setup.py install
- nosetests --with-coverage
after_success:
- coveralls
- if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then coveralls; fi
|
# https://travis-ci.org/mre/kafka-influxdb
sudo: false
os:
- linux
language: python
python:
- "2.7"
- pypy
# Coming soon
#- 3.3
#- 3.4
#- pypy3
install:
- pip install python-coveralls
- pip install coverage
- pip install nose
- pip install -r requirements.txt
script:
- python setup.py install
- nosetests --with-coverage
after_success:
- coveralls
- if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then coveralls; fi
|
Remove OSX from os list because it is not supported yet for Python environments
|
Remove OSX from os list because it is not supported yet for Python environments
|
YAML
|
apache-2.0
|
mre/kafka-influxdb,mre/kafka-influxdb
|
7d020be0433fcd4fcc43fbf16157e6b4621b02d2
|
.travis.yml
|
.travis.yml
|
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
sudo: false
env:
- MODULE=oak-jcr
- MODULE=oak-core
- MODULE=oak-it
- MODULE=oak-lucene
- MODULE=oak-run
- MODULE=oak-it-osgi
- MODULE=oak-pojosr
- MODULE=oak-upgrade
install: mvn --batch-mode -DskipTests -Dbaseline.skip=true install -pl :${MODULE} -am -nsu
script: mvn --batch-mode clean verify -Dbaseline.skip=true -PintegrationTesting -Dnsfixtures=DOCUMENT_NS -pl :${MODULE} -nsu
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
services:
- mongodb
notifications:
email: false
|
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
sudo: false
env:
- MODULE=oak-jcr
- MODULE=oak-store-document
- MODULE=oak-it
- MODULE=oak-lucene
- MODULE=oak-run
- MODULE=oak-it-osgi
- MODULE=oak-pojosr
- MODULE=oak-upgrade
install: mvn --batch-mode -DskipTests -Dbaseline.skip=true install -pl :${MODULE} -am -nsu
script: mvn --batch-mode clean verify -Dbaseline.skip=true -PintegrationTesting -Dnsfixtures=DOCUMENT_NS -pl :${MODULE} -nsu
language: java
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2
services:
- mongodb
notifications:
email: false
|
Move DocumentNodeStore into its own bundle
|
OAK-6665: Move DocumentNodeStore into its own bundle
Build and run tests for oak-store-document instead of oak-core
git-svn-id: 67138be12999c61558c3dd34328380c8e4523e73@1809762 13f79535-47bb-0310-9956-ffa450edef68
|
YAML
|
apache-2.0
|
alexparvulescu/jackrabbit-oak,anchela/jackrabbit-oak,code-distillery/jackrabbit-oak,code-distillery/jackrabbit-oak,francescomari/jackrabbit-oak,stillalex/jackrabbit-oak,code-distillery/jackrabbit-oak,francescomari/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,francescomari/jackrabbit-oak,catholicon/jackrabbit-oak,alexkli/jackrabbit-oak,code-distillery/jackrabbit-oak,catholicon/jackrabbit-oak,catholicon/jackrabbit-oak,stillalex/jackrabbit-oak,code-distillery/jackrabbit-oak,alexparvulescu/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,alexkli/jackrabbit-oak,alexparvulescu/jackrabbit-oak,alexparvulescu/jackrabbit-oak,stillalex/jackrabbit-oak,anchela/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,stillalex/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,anchela/jackrabbit-oak,francescomari/jackrabbit-oak,alexkli/jackrabbit-oak,alexkli/jackrabbit-oak,anchela/jackrabbit-oak,alexkli/jackrabbit-oak,alexparvulescu/jackrabbit-oak,anchela/jackrabbit-oak,francescomari/jackrabbit-oak,catholicon/jackrabbit-oak,stillalex/jackrabbit-oak,FlakyTestDetection/jackrabbit-oak,catholicon/jackrabbit-oak
|
f8c202f1cb202804be191b51cd646028e47d7143
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- gcc
before_install:
- cd ..
- sudo apt-get install freeglut3 freeglut3-dev libglu1-mesa-dev libboost-all-dev cmake cmake-curses-gui libeigen3-dev libxmu-dev libxi-dev libwxgtk2.8-dev libgtest-dev libtinyxml-dev libgtest-dev
- git clone git://github.com/golems/tinyxml2.git
- git clone git://github.com/golems/assimp.git
- git clone git://github.com/golems/flann.git
- git clone git://github.com/golems/libccd.git
- git clone git://github.com/golems/fcl.git
- cd tinyxml2; cmake .; make && sudo make install ; cd ..
- cd assimp; cmake .; make && sudo make install ; cd ..
- cd flann; cmake .; make && sudo make install ; cd ..
- cd libccd; cmake .; make && sudo make install ; cd ..
- cd fcl; cmake .; make && sudo make install ; cd ..
- cd dart
before_script: cmake .
script:
- make
- sudo ldconfig --verbose # So the test executeables can detect libtinyxml2
- make test
after_failure:
- cat Testing/Temporary/LastTest.log
- cat Testing/Temporary/LastTestsFailed.log
branches:
only:
- master
notifications:
email: false
|
language: cpp
compiler:
- gcc
before_install:
- cd ..
- sudo apt-get install freeglut3 freeglut3-dev libglu1-mesa-dev libboost-all-dev cmake cmake-curses-gui libeigen3-dev libxmu-dev libxi-dev libwxgtk2.8-dev libgtest-dev libtinyxml-dev libgtest-dev
- git clone git://github.com/golems/tinyxml2.git
- git clone git://github.com/golems/assimp.git
- git clone git://github.com/golems/flann.git
- git clone git://github.com/golems/libccd.git
- git clone git://github.com/golems/fcl.git
- cd tinyxml2; cmake .; make && sudo make install ; cd ..
- cd assimp; cmake .; make && sudo make install ; cd ..
- cd flann; cmake .; make && sudo make install ; cd ..
- cd libccd; cmake .; make && sudo make install ; cd ..
- cd fcl; cmake .; make && sudo make install ; cd ..
- cd dart
before_script: cmake .
script:
- make
- sudo ldconfig --verbose # So the test executeables can detect libtinyxml2
- make test
after_failure:
- cat Testing/Temporary/LastTest.log
- cat Testing/Temporary/LastTestsFailed.log
branches:
only:
- master
|
Add email notifications for Travis builds
|
Add email notifications for Travis builds
|
YAML
|
bsd-2-clause
|
dartsim/dart,axeisghost/DART6motionBlur,dartsim/dart,dartsim/dart,dartsim/dart,dartsim/dart,axeisghost/DART6motionBlur,axeisghost/DART6motionBlur
|
ec69794fc6fc25b88d2eeba04e90be0fe15f2e78
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: false
language: php
php:
- 7.2
- 7.3
- 7.4snapshot
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{,.disabled} || echo "xdebug not available"
- travis_retry composer self-update
install:
- rm composer.lock
- travis_retry composer update --prefer-dist
script:
- ./vendor/bin/phpunit
jobs:
include:
- stage: Test
env: DEPENDENCIES=low
install:
- rm composer.lock
- travis_retry composer update --prefer-dist --prefer-lowest
- stage: Test
env: COVERAGE
before_script:
- mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{.disabled,}
- if [[ ! $(php -m | grep -si xdebug) ]]; then echo "xdebug required for coverage"; exit 1; fi
script:
- ./vendor/bin/phpunit --coverage-clover clover.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
- stage: Code Quality
env: CODING_STANDARDS
install: travis_retry composer install --prefer-dist
script: ./vendor/bin/phpcs
- stage: Code Quality
env: STATIC_ANALYSIS
install: travis_retry composer install --prefer-dist
script: vendor/bin/phpstan analyse
|
dist: trusty
sudo: false
language: php
php:
- 7.2
- 7.3
- 7.4
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{,.disabled} || echo "xdebug not available"
- travis_retry composer self-update
install:
- rm composer.lock
- travis_retry composer update --prefer-dist
script:
- ./vendor/bin/phpunit
jobs:
include:
- stage: Test
env: DEPENDENCIES=low
install:
- rm composer.lock
- travis_retry composer update --prefer-dist --prefer-lowest
- stage: Test
env: COVERAGE
before_script:
- mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{.disabled,}
- if [[ ! $(php -m | grep -si xdebug) ]]; then echo "xdebug required for coverage"; exit 1; fi
script:
- ./vendor/bin/phpunit --coverage-clover clover.xml
after_success:
- bash <(curl -s https://codecov.io/bash)
- stage: Code Quality
env: CODING_STANDARDS
install: travis_retry composer install --prefer-dist
script: ./vendor/bin/phpcs
- stage: Code Quality
env: STATIC_ANALYSIS
install: travis_retry composer install --prefer-dist
script: vendor/bin/phpstan analyse
|
Use stable version of php
|
Use stable version of php
|
YAML
|
mit
|
doctrine/DoctrineMigrationsBundle
|
37165316e608d256e9e4f1c361c4b70e7a7c2048
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.1.0
script:
- rake test
before_install:
- git submodule update --init --recursive
- gem update bundler
- bundle
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: always
hipchat:
rooms:
secure: d1RJSY+QU7y01wmqvxpgYsAyRzNzbAK2r1Ut9X87s5UOFB+5yxUgRocs4sKpGSpm0UVtD0u/G3H1wqbmWpxnYpmQYilTw9Qa04GDwJJ2/IraHU1fpGG+gZCsOMid7NjNl6jErbY8cfoUmCQdrUiYBgLowtxh5i8HbPT//Cb7mhU=
|
language: ruby
rvm:
- 1.9.3
- 2.1.0
script:
- rake test
- rake install
before_install:
- git submodule update --init --recursive
- gem update bundler
- bundle
notifications:
email:
recipients:
- [email protected]
on_success: change
on_failure: always
hipchat:
rooms:
secure: d1RJSY+QU7y01wmqvxpgYsAyRzNzbAK2r1Ut9X87s5UOFB+5yxUgRocs4sKpGSpm0UVtD0u/G3H1wqbmWpxnYpmQYilTw9Qa04GDwJJ2/IraHU1fpGG+gZCsOMid7NjNl6jErbY8cfoUmCQdrUiYBgLowtxh5i8HbPT//Cb7mhU=
|
Add rake install to tests
|
Add rake install to tests
|
YAML
|
mit
|
apiaryio/redsnow,apiaryio/redsnow
|
cb7f829dfdc31757eceaaa1b817c0aa18005a343
|
.travis.yml
|
.travis.yml
|
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
|
# Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
# We have to install chef-sugar for ChefSpec
- /opt/chefdk/embedded/bin/chef gem install chef-sugar
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/rubocop --version
- /opt/chefdk/embedded/bin/rubocop
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/embedded/bin/foodcritic . --exclude spec
- /opt/chefdk/embedded/bin/rspec spec
|
Use the pre-release builds of chefdk
|
Use the pre-release builds of chefdk
|
YAML
|
apache-2.0
|
popsikle/ssh_known_hosts,popsikle/ssh_known_hosts,opscode-cookbooks/ssh_known_hosts,chef-cookbooks/ssh_known_hosts
|
495330619e83371957fd52b25977abb7ad3e1fde
|
.travis.yml
|
.travis.yml
|
language: python
python:
- '3.7'
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
before_install:
- python --version
- pip install -U pip
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
before_script:
- mv secrets_dummy.yaml secrets.yaml
- pre-commit install-hooks
script:
- pre-commit run yamllint --all-files
- hass -c . --script check_config
|
language: python
python:
- '3.7'
- '3.8'
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
before_install:
- pip install -U pip
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
before_script:
- mv secrets_dummy.yaml secrets.yaml
- pre-commit install-hooks
script:
- pre-commit run yamllint --all-files
- hass -c . --script check_config
|
Add Python 3.8 to TravisCI configuration
|
Add Python 3.8 to TravisCI configuration
|
YAML
|
mit
|
davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config
|
1577f27460eba6f82c3b815afda6c3e987dbfbc8
|
.travis.yml
|
.travis.yml
|
language: c
compiler:
# - clang
- gcc
env:
matrix:
- COVERAGE=true
- COVERAGE=false
install:
- sudo apt-get install -y libelf-dev ninja-build gperf
- $COVERAGE && sudo pip install cpp-coveralls || true
script:
- $COVERAGE && export CC="${CC} -fprofile-arcs -ftest-coverage -O0 -g" || true
- ./configure --objdir=out --enable-checks --enable-bundled-lua --enable-bundled-libdwarf && ninja && ./run-tests --verbose --output=tap
after_success:
- $COVERAGE && coveralls --exclude out --exclude --gcov-options '\-lp' || true
|
language: c
addons:
apt:
packages:
- libelf-dev
- glibc-dev
- ninja-build
- gperf
sudo: false
compiler:
# - clang
- gcc
env:
matrix:
- COVERAGE=true
- COVERAGE=false
install:
- $COVERAGE && pip install --user cpp-coveralls || true
script:
- export PATH="${PATH}:${HOME}/.local/bin"
- $COVERAGE && export CC="${CC} -fprofile-arcs -ftest-coverage -O0 -g" || true
- ./configure --objdir=out --enable-checks --enable-bundled-lua --enable-bundled-libdwarf && ninja && ./run-tests --verbose --output=tap
after_success:
- $COVERAGE && coveralls --exclude out --exclude --gcov-options '\-lp' || true
|
Support using containers (faster, better, stronger!)
|
Travis-CI: Support using containers (faster, better, stronger!)
|
YAML
|
mit
|
aperezdc/eris,aperezdc/eris,aperezdc/lua-eol,aperezdc/lua-eol
|
dc711f18cb16c043074e658cffe1438b63953c4d
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js: 6
script:
- npm test
- npm run coverage
- npm run codecov
before_deploy:
- npm version $VERSION_INCREMENT
deploy:
- provider: pages
skip_cleanup: true
github_token: $GITHUB_API_KEY
on:
branch: master
- provider: npm
skip_cleanup: true
email: $NPM_EMAIL
api_key: $NPM_API_KEY
on:
branch: master
|
language: node_js
node_js: 6
script:
- npm test
- npm run coverage
- npm run codecov
before_deploy:
- git.config --global user.email "[email protected]"
- git.config --global user.name "Travis CI"
- npm version $VERSION_INCREMENT
after_deploy:
- git push --tags
deploy:
- provider: pages
skip_cleanup: true
github_token: $GITHUB_API_KEY
on:
branch: master
- provider: npm
skip_cleanup: true
email: $NPM_EMAIL
api_key: $NPM_API_KEY
on:
branch: master
|
Update git config before deployment
|
Update git config before deployment
|
YAML
|
mit
|
ifrost/starterkit,ifrost/starterkit,ifrost/starterkit
|
172212508af63236e1122fde95813901302996da
|
.travis.yml
|
.travis.yml
|
language: java
script: ./.travis-build.sh
sudo: false
jdk:
- oraclejdk8
jobs:
include:
- stage: trigger downstream
jdk: oraclejdk8
script: |
echo "TRAVIS_BRANCH=$TRAVIS_BRANCH TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST"
if [[ ($TRAVIS_BRANCH == master) &&
($TRAVIS_PULL_REQUEST == false) ]] ; then
curl -LO https://raw.github.com/mernst/plume-lib/master/bin/trigger-travis.sh
SLUGOWNER=${TRAVIS_REPO_SLUG%/*}
sh trigger-travis.sh ${SLUGOWNER} checker-framework $TRAVISTOKEN
fi
git:
depth: 9
|
language: java
script: ./.travis-build.sh
sudo: false
jdk:
- oraclejdk8
jobs:
include:
- stage: trigger-downstream
jdk: oraclejdk8
script: |
echo "TRAVIS_BRANCH=$TRAVIS_BRANCH TRAVIS_PULL_REQUEST=$TRAVIS_PULL_REQUEST"
if [[ ($TRAVIS_BRANCH == master) &&
($TRAVIS_PULL_REQUEST == false) ]] ; then
curl -LO https://raw.github.com/mernst/plume-lib/master/bin/trigger-travis.sh
SLUGOWNER=${TRAVIS_REPO_SLUG%/*}
sh trigger-travis.sh ${SLUGOWNER} checker-framework $TRAVISTOKEN
fi
git:
depth: 9
|
Emphasize that trigger-downstream is one symbol
|
Emphasize that trigger-downstream is one symbol
|
YAML
|
mit
|
eisop/annotation-tools,eisop/annotation-tools,typetools/annotation-tools,typetools/annotation-tools,eisop/annotation-tools,typetools/annotation-tools
|
99b7f034f1238bf0496a3641296f4b1adbba1aff
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
env:
global:
- TEST_COMMAND="composer test"
matrix:
- SYMFONY_VERSION=2.3.*
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=dev-master
matrix:
include:
- php: 5.4
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true SYMFONY_VERSION=2.3.* TEST_COMMAND="composer test-ci"
install:
- travis_retry composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION}
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
script:
- $TEST_COMMAND
notifications:
email:
- [email protected]
|
language: php
sudo: false
php:
- 5.4
- 5.5
- 5.6
- 7.0
env:
global:
- TEST_COMMAND="composer test"
matrix:
- SYMFONY_VERSION=2.3.*
- SYMFONY_VERSION=2.7.*
- SYMFONY_VERSION=dev-master
matrix:
include:
- php: 5.4
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest" COVERAGE=true SYMFONY_VERSION=2.3.* TEST_COMMAND="composer test-ci"
exclude:
- php: 5.4
env: SYMFONY_VERSION=dev-master
install:
- travis_retry composer require --no-update symfony/framework-bundle:${SYMFONY_VERSION}
- travis_retry composer update ${COMPOSER_FLAGS} --prefer-source --no-interaction
script:
- $TEST_COMMAND
notifications:
email:
- [email protected]
|
Exclude unsupported PHP version & Symfony combination
|
Exclude unsupported PHP version & Symfony combination
|
YAML
|
mit
|
elbcoast/ECNFeatureToggleBundle
|
15887ec399f8d7aa0dbaf7dbbaea0f7ec10fad0b
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
- "3.1"
- "3.2"
- pypy
install:
- pip install -q --use-mirrors pytest
- pip install -q --use-mirrors flexmock
script:
- py.test
|
language: python
python:
- "2.6"
- "2.7"
- "3.1"
- "3.2"
- pypy
install:
- pip install -q -e --use-mirrors .
- pip install -q --use-mirrors pytest
- pip install -q --use-mirrors flexmock
script:
- py.test
|
Install the package in edit-mode in Travis
|
Install the package in edit-mode in Travis
|
YAML
|
mit
|
jpvanhal/siilo,jpvanhal/siilo
|
f57d3c59983763a5c05095eee8b9d5c6bfb7cd9e
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.8.x
- tip
before_install:
- go get -v github.com/golang/lint/golint
script:
- make clean
- make vet
- make lint
- make errcheck
- make test
- make build
- make test-integration
matrix:
allow_failures:
- go: tip
|
language: go
go:
- 1.8.x
before_install:
- go get -v github.com/golang/lint/golint
script:
- make clean
- make vet
- make lint
- make errcheck
- make test
- make build
- make test-integration
|
Remove go tip as it takes too much time
|
Remove go tip as it takes too much time
|
YAML
|
mit
|
metalmatze/gopass,justwatchcom/gopass,franciscocpg/gopass,gopasspw/gopass,metalmatze/gopass,gopasspw/gopass
|
0acf95d3e1fc85255bcfa71d26965a650ead8268
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: 5.6
- php: hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then sh -c "php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &"; fi
script:
- php -l src/*
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then cd tests && phpunit --configuration phpunit.xml; fi
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
matrix:
allow_failures:
- php: 5.6
- php: hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then sh -c "php -S 127.0.0.1:8000 -t tests/PHPCurlClass/ &"; fi
script:
- php -l src/*
- if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then sh -c "cd tests && phpunit --configuration phpunit.xml"; fi
|
Use consistent calls for tests
|
Use consistent calls for tests
|
YAML
|
unlicense
|
marius321967/php-curl-class,jahanzaibbahadur/php-curl-class,php-curl-class/php-curl-class,hebaoxia/php-curl-class,heatery/php-curl-class,heatery/php-curl-class,VolCh/php-curl-class,craa/php-curl-class,petewatts/php-curl-class,php-curl-class/php-curl-class,Savageman/php-curl-class,Jiangyoung/php-curl-class,ptrnov/php-curl-class,SahilDude89ss/php-curl-class,ValerioOnGithub/php-curl-class,jack-theripper/php-curl-class,jack-theripper/php-curl-class,sebwas/php-curl-class,zachborboa/php-curl-class,thebeline/php-curl-class,Worm/php-curl-class,petewatts/php-curl-class,thebeline/php-curl-class,taohaoge/php-curl-class,SahilDude89ss/php-curl-class,hebaoxia/php-curl-class,VolCh/php-curl-class,Jiangyoung/php-curl-class,tillz/php-curl-class,taohaoge/php-curl-class,Worm/php-curl-class,Savageman/php-curl-class,smartkey86/php-curl-class,ValerioOnGithub/php-curl-class,craa/php-curl-class,evcehiack/php-curl-class,jahanzaibbahadur/php-curl-class,zachborboa/php-curl-class,evcehiack/php-curl-class,zachborboa/php-curl-class,ptrnov/php-curl-class,php-curl-class/php-curl-class,smartkey86/php-curl-class,tillz/php-curl-class,sebwas/php-curl-class
|
bdb90215f1b1087a736e2ab4044d2a08dd927a72
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "lts/*"
cache:
npm: true
before_install:
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run lint
- npm run build:all
- npm run test:ci
|
language: node_js
node_js:
- "lts/*"
cache:
npm: true
services:
- xvfb
before_install:
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
script:
- npm run lint
- npm run build:all
- npm run test:ci
|
Add to services not install
|
Add to services not install
|
YAML
|
apache-2.0
|
conversationai/perspective-viewership-extension,conversationai/perspective-viewership-extension,conversationai/perspective-viewership-extension
|
9480b4861506db49714d53e9df2effa404a2ab9f
|
.travis.yml
|
.travis.yml
|
language: objective-c
before_install:
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet # override to latest
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
- pod install
script: rake test
|
language: objective-c
osx_image: beta-xcode6.3
before_install:
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet # override to latest
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
- pod install
script: rake test
|
Test Travis Xcode 6.3 upgrade beta
|
Test Travis Xcode 6.3 upgrade beta
See http://blog.travis-ci.com/2015-05-26-xcode-63-beta-general-availability
|
YAML
|
mit
|
tomlongo/nationbuilder-ios,nationbuilder/nationbuilder-ios
|
de476d2f670a4b6fdef085e6463d3be5566df0af
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- openjdk7
- oraclejdk7
install:
- gem install bundler
- bundle install
script: buildr clean package
|
language: java
jdk:
- openjdk7
- oraclejdk7
install:
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
|
Reduce the size of the git repository downloaded during TravisCI testing.
|
Reduce the size of the git repository downloaded during TravisCI testing.
|
YAML
|
apache-2.0
|
realityforge/simple-session-filter,realityforge/simple-session-filter
|
66c9600c8ab4a072b8ec03cb4a406e78d2c255de
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- step
- master
- travis-ci
install:
- for dir in compassion.*; do (cd $dir && npm install); done
- npm install
- npm install istanbul coveralls
- git checkout .
|
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- step
- master
- travis-ci
install:
- for dir in compassion.*; do (cd $dir && yarn install --no-lockfile); done
- yarn install --no-lockfile
- yarn global add istanbul coveralls
- git checkout .
|
Install using Yarn at Travis CI.
|
Install using Yarn at Travis CI.
|
YAML
|
mit
|
bigeasy/compassion
|
760acf66ba03904c7c22e6e43400b66bcddabfca
|
.travis.yml
|
.travis.yml
|
language: go
|
language: go
# Versions of go that are explicitly supported.
go:
- 1.5.4
- 1.6.3
- 1.7
# Required for coverage.
before_install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
|
Add support for code coverage with coveralls.io.
|
Add support for code coverage with coveralls.io.
|
YAML
|
bsd-3-clause
|
grafov/kiwi
|
f923a610ecf421badb3ae458f43828b83121dc39
|
authorization-server/src/main/resources/application.yaml
|
authorization-server/src/main/resources/application.yaml
|
#
# Copyright 2014 Open mHealth
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
dataStore: mongo
server:
port: 8082
spring:
application:
name: Open mHealth DSU authorisation server
data:
mongodb:
host: mongo
database: omh
#port: 27017
http:
mappers:
jsonPrettyPrint: true
|
#
# Copyright 2014 Open mHealth
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
dataStore: mongo
server:
port: 8082
# FIXME confirm how this interacts with OAuth 2
security:
basic:
enabled: false
spring:
application:
name: Open mHealth DSU authorisation server
data:
mongodb:
host: mongo
database: omh
#port: 27017
datasource:
driverClassName: org.postgresql.Driver
url: jdbc:postgresql://localhost:5432/omh
username: postgres
password: postgres
http:
mappers:
jsonPrettyPrint: true
logging:
level:
org.springframework: INFO
|
Add configuration settings for a relational database containing OAuth2 access tokens and client details.
|
Add configuration settings for a relational database containing OAuth2 access tokens and client details.
|
YAML
|
apache-2.0
|
openmhealth/omh-dsu-ri,smalldatalab/omh-dsu,smalldatalab/omh-dsu,openmhealth/omh-dsu-ri,smalldatalab/omh-dsu,smalldatalab/omh-dsu
|
48a3740386946277b133960dbdf8abc4ed8938fc
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '6'
- '4'
- '0.12'
- '0.10'
|
language: node_js
node_js:
- '6'
- '4'
|
Test on version `4` and `6` only
|
Test on version `4` and `6` only
|
YAML
|
mit
|
gillstrom/is-edge
|
b25b3d13209faa1152d8d0ae569371854bf4f1fa
|
.travis.yml
|
.travis.yml
|
# We need sudo to install pip system-wide
sudo: required
os:
- linux
- osx
install:
- sudo pip install coveralls
script: ./ci.sh
after_success:
- coveralls
|
# We need sudo to install pip system-wide
sudo: required
os:
- linux
- osx
install:
# The coverage version number must match what the Pants version declared in
# pants.ini uses.
- sudo pip install coverage==3.7.1
- sudo pip install coveralls
script: ./ci.sh
after_success:
- coveralls
|
Install correct version of 'coverage'
|
Travis: Install correct version of 'coverage'
|
YAML
|
mit
|
walles/px,walles/px
|
20e60df4f4098472eae6c7a76b768fa77d76bd7a
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO_VERSION=1.2.7
- DJANGO_VERSION=1.3.1
- DJANGO_VERSION=1.4
install:
- pip install -q Django==$DJANGO_VERSION
script: python run_tests.py
|
language: python
python:
- "2.6"
- "2.7"
env:
- DJANGO_VERSION=1.2.7
- DJANGO_VERSION=1.3.3
- DJANGO_VERSION=1.4.1
install:
- pip install -q Django==$DJANGO_VERSION
script: python run_tests.py
|
Update Django versions for Travis-CI config
|
Update Django versions for Travis-CI config
|
YAML
|
bsd-2-clause
|
roam/django-uturn
|
029580e096c482f1d6574d28a390732768367887
|
synced_folders.yaml
|
synced_folders.yaml
|
# - name: default
# source: .
# destination: /vagrant
# nfs: true
# mount_options: 'nolock,vers=3,udp,noatime'
# disabled: false
|
- name: default
source: .
destination: /vagrant
nfs: true
mount_options: 'nolock,vers=3,udp,noatime'
|
Enable local folder sharing over NFS.
|
Enable local folder sharing over NFS.
|
YAML
|
apache-2.0
|
BitBldr/kubernetes-vagrant-coreos-cluster,pires/kubernetes-vagrant-coreos-cluster
|
475001f888248c4ca31b69f916f6181477405961
|
.travis.yml
|
.travis.yml
|
# Use the language closest to rust, as rust itself is not supported
language: c
notifications:
email:
on_success: never
on_failure: always
install:
- sudo apt-get install libsdl1.2-dev
- curl http://www.rust-lang.org/rustup.sh | sudo sh -
script:
- make
- make test
- make opt
|
# Use the language closest to rust, as rust itself is not supported
language: c
notifications:
email:
on_success: never
on_failure: always
install:
- sudo apt-get install libsdl1.2-dev
- curl https://static.rust-lang.org/rustup.sh | sudo sh -
script:
- make
- make test
- make opt
|
Use the secure version of rustup.sh
|
Use the secure version of rustup.sh
|
YAML
|
mit
|
mvdnes/rboy
|
d4afe2b3cde4408236da50065ee05701783ed7bc
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
|
env:
_JAVA_OPTIONS="-Xms1G -Xmx4G"
language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- oracle-java8-installer
install:
script:
- mvn clean package
|
Upgrade Travis to work around JDK bug
|
Upgrade Travis to work around JDK bug
The build currently fails due to a bug in JDK 1.8.0_31. This Travis
YML file upgrades the container's JDK to something more modern.
|
YAML
|
isc
|
io7m/jcalcium,io7m/jcalcium,io7m/jcalcium
|
c2a0373a193bac1daf8b6691e2ece069c5d7ac7f
|
.travis.yml
|
.travis.yml
|
language: go
os:
- linux
- osx
go:
- 1.4
- 1.5.x
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- tip
before_install:
- if [[ $TRAVIS_GO_VERSION == 1.9* ]]; then go get github.com/axw/gocov/gocov github.com/mattn/goveralls; fi
# - sudo add-apt-repository -y ppa:kubuntu-ppa/backports
# - sudo apt-get update -qq
# - sudo apt-get install libcv-dev libopencv-dev libopencv-contrib-dev libhighgui-dev libopencv-photo-dev libopencv-imgproc-dev libopencv-stitching-dev libopencv-superres-dev libopencv-ts-dev libopencv-videostab-dev
script:
- go test -v -tags ci ./...
- if [[ $TRAVIS_GO_VERSION == 1.9* ]]; then $GOPATH/bin/goveralls -service=travis-ci; fi
notifications:
email:
on_success: change
on_failure: always
|
language: go
os:
- linux
- osx
go:
- 1.4
- 1.5.x
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- "1.10.x"
- tip
matrix:
exclude:
- os: osx
go: 1.4
- os: osx
go: 1.5.x
- os: osx
go: 1.6.x
before_install:
- if [[ $TRAVIS_GO_VERSION == 1.9* ]]; then go get github.com/axw/gocov/gocov github.com/mattn/goveralls; fi
# - sudo add-apt-repository -y ppa:kubuntu-ppa/backports
# - sudo apt-get update -qq
# - sudo apt-get install libcv-dev libopencv-dev libopencv-contrib-dev libhighgui-dev libopencv-photo-dev libopencv-imgproc-dev libopencv-stitching-dev libopencv-superres-dev libopencv-ts-dev libopencv-videostab-dev
script:
- go test -v -tags ci ./...
- if [[ $TRAVIS_GO_VERSION == 1.9* ]]; then $GOPATH/bin/goveralls -service=travis-ci; fi
notifications:
email:
on_success: change
on_failure: always
|
Test against Go <1.7 on Linux only, as Travis-CI has issues with older versions on macOS
|
Test against Go <1.7 on Linux only, as Travis-CI has issues with older versions on macOS
|
YAML
|
mit
|
muesli/smartcrop
|
20a796ebf5255db75531ea863f29ba8078b2adef
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.1
services:
- mysql
before_script:
- composer self-update
- composer update
- mysql -e 'create database cargo_sample;'
- cp ./config/autoload/local.php.dist ./config/autoload/local.php
- cp ./config/behat.yml.travis ./config/behat.yml
- chmod -R 777 ./data/cache
- php ./bin/migrations.php migrations:migrate -n
- "sh -e /etc/init.d/xvfb start"
- "export DISPLAY=:99.0"
- "java -jar selenium-server-standalone-2.46.0.jar > /dev/null &"
# webserver setup
- php -S localhost:8000 -t public &
- sleep 10
script:
- php ./bin/kawaii gherkin:check features/
- php ./bin/phpunit -c ./CargoBackend/tests
- php ./bin/phpunit -c ./GraphTraversalBackend/tests
- bin/behat --verbose
|
language: php
php:
- 7.1
services:
- mysql
before_script:
- composer self-update
- composer update
- mysql -e 'create database cargo_sample;'
- cp ./config/autoload/local.php.dist ./config/autoload/local.php
- cp ./config/behat.yml.travis ./config/behat.yml
- chmod -R 777 ./data/cache
- php ./bin/migrations.php migrations:migrate -n
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- sleep 3
- "java -jar selenium-server-standalone-2.46.0.jar > /dev/null &"
# webserver setup
- php -S localhost:8000 -t public &
- sleep 10
script:
- php ./bin/kawaii gherkin:check features/
- php ./bin/phpunit -c ./CargoBackend/tests
- php ./bin/phpunit -c ./GraphTraversalBackend/tests
- bin/behat --verbose
|
Add sleep and set env var before starting xvfb
|
Add sleep and set env var before starting xvfb
|
YAML
|
bsd-3-clause
|
codeliner/php-ddd-cargo-sample,codeliner/php-ddd-cargo-sample,codeliner/php-ddd-cargo-sample
|
f7227348593261f573d3cbc845019ffdea693ae9
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.0.0-p598
- 2.1.6
- 2.2.4
- 2.3.0
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
|
language: ruby
rvm:
- 2.0.0
- 2.1.10
- 2.2.6
- 2.3.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
|
Update TravisCI ruby versions tested against.
|
Update TravisCI ruby versions tested against.
Note: Ruby 2.4 not yet added to this list, since rvm has not released a
version supporting this yet. (It is only on the unreleased master
branch, so I have currently just installed+tested it locally.)
|
YAML
|
mit
|
tom-lord/regexp-examples
|
a32759ad59531394d03bd1a422b0d4e2b71373bd
|
.travis.yml
|
.travis.yml
|
language: php
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
matrix:
include:
# Test the latest dependencies
- php: 7.1
- php: 7.2
# Test with the lowest dependencies
- php: 7.2
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest --prefer-dist"
before_script:
# Remove xdebug at the start
- phpenv config-rm xdebug.ini
- pecl install -f mongodb-stable
- composer config "platform.ext-mongo" "1.6.16"
- composer self-update
# To be removed when this issue is resolved: https://github.com/composer/composer/issues/5355
- if [[ "$COMPOSER_FLAGS" == *"--prefer-lowest"* ]]; then composer update --prefer-dist --no-interaction --prefer-stable --quiet; fi
- composer update -v ${COMPOSER_FLAGS}
# Restore xdebug for code coverage
- echo "extension=xdebug.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
script:
- ./vendor/bin/phpunit --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
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
matrix:
include:
# Test the latest dependencies
- php: 7.1
- php: 7.2
# Test with the lowest dependencies
- php: 7.2
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest --prefer-dist"
before_script:
# Remove xdebug at the start
- phpenv config-rm xdebug.ini
- pecl install -f mongodb-stable
- composer config "platform.ext-mongo" "1.6.16"
- composer self-update
# To be removed when this issue is resolved: https://github.com/composer/composer/issues/5355
- if [[ "$COMPOSER_FLAGS" == *"--prefer-lowest"* ]]; then composer update --prefer-dist --no-interaction --prefer-stable --quiet; fi
- composer update -v ${COMPOSER_FLAGS}
# Restore xdebug for code coverage
- echo "zend_extension=xdebug.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
script:
- ./vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
Fix error with xdebug load
|
Fix error with xdebug load
|
YAML
|
mit
|
caciobanu/mongodb-migrations,caciobanu/mongodb-migrations,caciobanu/mongodb-migrations
|
423ec4f4e873b9853fe985655668d5e683129674
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5.1'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4.2'
- '5'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Test with latest Node.js 5 on Travis CI.
|
Test with latest Node.js 5 on Travis CI.
|
YAML
|
mit
|
bigeasy/supersede,bigeasy/supersede
|
3fed22f317749f22ae2ae115ea500322b19b4d02
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
|
sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
|
Drop support for Node.js 8 early.
|
Drop support for Node.js 8 early.
|
YAML
|
mit
|
bigeasy/happenstance
|
7285e93388f03060986493bda28d0534064c1598
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
env:
global:
- secure: QM1Da3j1fiWEz+fIch6BmvQjg8aunpDfnSDw2uxfdP/oj1ua4mQXokA931sbGhSLrsH6pm43OG60HUoiZ1N5nlVtDPWA4WmQSLvIpteCzaPd0iEABIkfbzPFOqiNNQZkmxXN32zCgKnTYDXD4naoJwmHAlLGjsO9PZi5XqKVD5I=
- secure: S7ioup+qMNkaTfhIoc2NJBwjZ2f/i6NDI4KgBK/Pc7bZiO1eqj6ZAsczbHXv0CXQIZDnt1PyYcMqUVSheyStWIJsbPHnwQjI3JsraYq/3DDyyr0SqwZaeFCGxtNwqPVveF8+Sq6pXnxRBH2WQqHnCa24Sq8KSw6QUM1EWkrjMKY=
|
language: node_js
node_js:
- '0.12'
env:
global:
- secure: bDaTMSBXbp5FS0e4HJKwanQzT6RuKXJoZza/PBFZskbw2RjNcTjfbAyatTIjXEo3eyHLK0gB3X+K5QlnYJPKocYsLzFTKa9FWC5yAkp0czFeMI0RgrEe8lCgQ/0t8bIJAC0MDk3Wi3kNSMfTtzAprHhMs4ZheVDp04Dy14jPIzI=
- secure: h2AK8jnvNEDiVvjWy+Oc5PNCNp0/ZigZ+7j0mlZyl8hskDVuI0+vj6EwHMi2EXmZBTwUS1ExvpwZKHRelRx5k3MC0DzwTTxgU0mEIGpwQWYqCcxeWUilX8Tu8/PHESL533n0lnJ9hwmG/KZTTGz1nSfxQfotz08w3Egsxk5iDUU=
|
Update saucelabs account to a sub-account
|
Update saucelabs account to a sub-account
|
YAML
|
mit
|
cesarandreu/browser-image-size
|
b923b01bc774fcda5883e496fe5bcd6458a9e937
|
.travis.yml
|
.travis.yml
|
language: python
install:
- pip install python-coveralls
script:
- echo "skipping tests"
#- pytest --cov=recommender tests/ --cov-report=html
branches:
only:
- dev
after_success:
- coveralls
matrix:
include:
- python: 3.6
- python: 3.7
dist: xenial
sudo: true
|
language: python
install:
- pip install python-coveralls
script:
- echo "skipping tests"
#- pytest --cov=recommender_engine tests/ --cov-report=html
branches:
only:
- dev
after_success:
- coveralls
matrix:
include:
- python: 3.6
- python: 3.7
dist: xenial
sudo: true
|
Update package name from recommender to recommender_engine
|
Update package name from recommender to recommender_engine
Signed-off-by: Tran Ly Vu <[email protected]>
|
YAML
|
apache-2.0
|
tranlyvu/recommender
|
2ff366e0ee2b7b8486505428c597eda65e722bae
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
- "4"
script: "npm run-script test-cover"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
sudo: false
|
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
- iojs
script: "npm run-script test-cover"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
sudo: false
|
Add Node.js version 5.* to Travis CI builds.
|
Add Node.js version 5.* to Travis CI builds.
|
YAML
|
mit
|
DavidAnson/markdownlint,DavidAnson/markdownlint
|
729bfe4079cc7369dd2da46b3de04163bc124199
|
.travis.yml
|
.travis.yml
|
language: android
android:
components:
- build-tools-23.0.3
- android-23
|
language: android
android:
components:
- platform-tools
- tools
- build-tools-23.0.3
- android-23
- extra-android-m2repository
- extra-google-m2repository
|
Add missing components for build tools 23
|
[Travis] Add missing components for build tools 23
|
YAML
|
mit
|
gbleu/Navette
|
91e0572c8fa22d582f26f51c08b3e7cae98caa6e
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- ruby-2.1.8
- ruby-2.2.4
- ruby-2.3.0
- ruby-head
- jruby-9.0.1.0
- jruby-head
before_install: gem install bundler -v 1.11.2
|
language: ruby
rvm:
- ruby-2.1.8
- ruby-2.2.4
- ruby-2.3.0
- ruby-head
- jruby-9.0.1.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
before_install: gem install bundler -v 1.11.2
|
Allow failures on ruby and jruby head
|
Allow failures on ruby and jruby head
|
YAML
|
apache-2.0
|
experimental-platform/platform-skvs-ruby,experimental-platform/platform-skvs-ruby
|
ddad0da1acb7d97aadf14a287145fb14888c0895
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.3
- 5.4
- 5.5
before_script: composer install
script: phpunit --coverage-text
|
language: php
php:
- 5.4
- 5.5
before_script: composer install
script: phpunit --coverage-text
|
Remove PHP 5.3 requirement from Travis CI YAML
|
Remove PHP 5.3 requirement from Travis CI YAML
|
YAML
|
mit
|
iinux/Slim,samsonasik/Slim,opengeek/Slim,feryardiant/slim,dopesong/Slim,juliangut/Slim,pine3ree/Slim,designermonkey/Slim,somjit2514/basic,AndrewCarterUK/Slim,slimphp/Slim,iinux/Slim,Sam-Burns/Slim,RealSelf/Slim,akrabat/Slim,JoeBengalen/Slim,iinux/Slim,foxyantho/Slim,mnapoli/Slim,jaapverloop/Slim
|
d386fc67257c8718fc907a9139256614797826eb
|
.travis.yml
|
.travis.yml
|
dist: trusty
sudo: false
language: python
branches:
only:
- master
matrix:
include:
- python: 2.6
env: TOXENV=py26-test
- python: 3.6
env: TOXENV=py36-test
- python: 3.6
env: TOXENV=py36-docs
- python: 3.6
env: TOXENV=py36-doctest
install:
- pip install -U tox
script:
- tox
|
dist: trusty
sudo: false
language: python
branches:
only:
- master
matrix:
include:
- python: 2.7
env: TOXENV=py27-test
- python: 3.6
env: TOXENV=py36-test
- python: 3.6
env: TOXENV=py36-docs
- python: 3.6
env: TOXENV=py36-doctest
install:
- pip install -U tox
script:
- tox
|
Test with Python 2.7 on Travis
|
Test with Python 2.7 on Travis
Upgrade from 2.6
|
YAML
|
apache-2.0
|
ajdavis/mongo-mockup-db
|
6f7ac432cb7e68cfcfeae12f7c2393691e6e898b
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.2.2
- 2.2.3
script: bundle exec rspec spec
branches:
only:
- master
|
language: ruby
rvm:
- 2.0.0
- 2.1.1
- 2.2.2
- 2.2.3
- 2.2.4
- 2.3.0
script: bundle exec rspec spec
branches:
only:
- master
|
Add builds for ruby 2.2.4 and 2.3.0
|
Add builds for ruby 2.2.4 and 2.3.0
|
YAML
|
mit
|
laskaridis/ruby_enum,laskaridis/ruby_enum
|
2eed9db316b93eedade78962d793daa0262d6942
|
.travis.yml
|
.travis.yml
|
sudo: false
dist: trusty
language: python
matrix:
include:
- python: "3.5"
- python: "3.6"
- python: "3.7"
sudo: required
dist: xenial
addons:
apt:
packages:
- dbus-x11
install:
- pip install jeepney cryptography codecov mypy
before_script:
- git clone https://gitlab.gnome.org/GNOME/libsecret.git
script:
- dbus-launch --exit-with-session coverage run tests/run_tests.py libsecret/libsecret/mock-service-normal.py
- dbus-launch --exit-with-session coverage run -a tests/run_tests.py libsecret/libsecret/mock-service-only-plain.py
- dbus-launch --exit-with-session coverage run -a tests/run_tests.py libsecret/libsecret/mock-service-lock.py
- mypy --strict --ignore-missing-imports secretstorage/
after_success:
- codecov
|
sudo: false
dist: trusty
language: python
matrix:
include:
- python: "3.5"
- python: "3.6"
- python: "3.7"
sudo: required
dist: xenial
addons:
apt:
packages:
- dbus-x11
install:
- pip install jeepney cryptography codecov mypy
before_script:
- git clone https://gitlab.gnome.org/GNOME/libsecret.git
script:
- dbus-launch --exit-with-session coverage run tests/run_tests.py libsecret/libsecret/mock-service-normal.py
- dbus-launch --exit-with-session coverage run -a tests/run_tests.py libsecret/libsecret/mock-service-only-plain.py
- dbus-launch --exit-with-session coverage run -a tests/run_tests.py libsecret/libsecret/mock-service-lock.py
- mypy --strict --ignore-missing-imports secretstorage/ tests/
after_success:
- codecov
|
Revert "Do not type check tests for now"
|
Revert "Do not type check tests for now"
This reverts commit e41ada50b717892981ab413933a9f3b68699a2fe.
|
YAML
|
bsd-3-clause
|
mitya57/secretstorage
|
3143f60f563194b6feac3707f9458cf72c78eefe
|
.travis.yml
|
.travis.yml
|
language: python
python:
- '2.7'
- pypy
install:
- pip install -U pytest
script: py.test
|
language: python
python:
- '2.7'
- '3.4'
- pypy
install:
- pip install -U pytest
script: py.test
|
Add in CI support for Python 3.4
|
Add in CI support for Python 3.4
|
YAML
|
bsd-2-clause
|
imgix/imgix-python
|
1185a87d450395a2504d7750e36c960edd359603
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "8.0"
before_install:
- npm install -g yarn --cache-min 999999999
install:
- yarn install
- ls
script:
- yarn test
# # safelist
# branches:
# only:
# - master
|
language: node_js
node_js:
- "8.0"
before_install:
- npm install -g yarn --cache-min 999999999
install:
- yarn install
- ls
script:
# Test script runs yarn test and looks for the 'Failed Tests' string, returning an error exit code if found.
# Necessary because tap test reporters don't ever return an error code.
- yarn test | grep 'Failed Tests' && return 1 || return 0
# # safelist
# branches:
# only:
# - master
|
Return an error code if yarn test result contains 'Failed Tests'.
|
Return an error code if yarn test result contains 'Failed Tests'.
|
YAML
|
mit
|
nozzlegear/Shopify-Prime
|
dffe3788c876cb962bc187cfdaeadf64f20163af
|
.travis.yml
|
.travis.yml
|
language: node_js
matrix:
include:
- os: linux
addons:
chrome: stable
node_js: 8.6
- os: linux
addons:
chrome: stable
node_js: node # Latest
- os: windows
filter_secrets: false # Secrets will otherwise break Windows builds
node_js: latest
script:
- npm test
|
language: node_js
matrix:
include:
- os: linux
addons:
chrome: stable
node_js: 8.6
- os: linux
addons:
chrome: stable
node_js: node # Latest
- os: windows
filter_secrets: false # Secrets will otherwise break Windows builds
node_js: 8.6
script: npm run test:ava
- os: windows
filter_secrets: false # Secrets will otherwise break Windows builds
node_js: latest
script: npm run test:ava
script:
- npm test
|
Test on windows with two node versions & only run `test:ava`
|
Test on windows with two node versions & only run `test:ava`
|
YAML
|
mit
|
andywer/thread.js,andywer/threads.js,andywer/threads.js
|
409112b581a33a85f9ed4d8054e409f4d20b3435
|
.travis.yml
|
.travis.yml
|
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
|
---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
- env: EMBER_TRY_SCENARIO=ember-beta
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
|
Allow 2.0 beta to fail.
|
Allow 2.0 beta to fail.
|
YAML
|
mit
|
aansubarkah/ember-cli-twitter-typeahead,greyhwndz/ember-cli-twitter-typeahead,thefrontside/ember-cli-twitter-typeahead,greyhwndz/ember-cli-twitter-typeahead,captmorgan/ember-cli-twitter-typeahead,Dhaulagiri/ember-cli-twitter-typeahead,robneville73/ember-cli-twitter-typeahead,Dhaulagiri/ember-cli-twitter-typeahead,thefrontside/ember-cli-twitter-typeahead,robneville73/ember-cli-twitter-typeahead,captmorgan/ember-cli-twitter-typeahead,aansubarkah/ember-cli-twitter-typeahead
|
3bf3e08b59bf62e0dc4f0d16a1b18d1a0f74464b
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libasound2-dev
script:
- export CXX=g++-4.8
- ./scripts/ci.sh
|
language: node_js
node_js:
- "4.1"
- "4.0"
sudo: false
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- libasound2-dev
script:
- export CXX=g++-4.8
- ./scripts/ci.sh
|
Remove support for node 0.12
|
Remove support for node 0.12
|
YAML
|
mit
|
madjam002/specular,madjam002/specular
|
86d1445614bf1ca6fd7e0100c0cbc1964e71a083
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 8
- 10
- 11
- 12
- 13
cache:
directories:
- node_modules
- $HOME/.npm
notifications:
on_success: false
email: false
|
language: node_js
node_js:
- 10
- 11
- 12
- 13
cache:
directories:
- node_modules
- $HOME/.npm
notifications:
on_success: false
email: false
|
Remove Node.js 8 from Travis testing
|
tests: Remove Node.js 8 from Travis testing
|
YAML
|
bsd-2-clause
|
justjohn/twig.js,justjohn/twig.js,twigjs/twig.js,justjohn/twig.js,twigjs/twig.js,twigjs/twig.js
|
c79a0b6284f887a7a64abbaa01d9a44042667e6e
|
.travis.yml
|
.travis.yml
|
language: python
python: 2.7
env:
- TOX_ENV=py34-django18
- TOX_ENV=py34-django17
- TOX_ENV=py34-django16
- TOX_ENV=py27-django18
- TOX_ENV=py27-django17
- TOX_ENV=py27-django16
- TOX_ENV=flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
|
language: python
python: 3.5
env:
- TOX_ENV=py35-django19
- TOX_ENV=py34-django19
- TOX_ENV=py27-django19
- TOX_ENV=py35-django18
- TOX_ENV=py34-django18
- TOX_ENV=py27-django18
- TOX_ENV=flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
sudo: false
|
Add new environments to Travis config
|
Add new environments to Travis config
|
YAML
|
bsd-3-clause
|
bennylope/django-email-users
|
4f82d7882b7b62f9f60778c6d86aa4b4de70e692
|
.travis.yml
|
.travis.yml
|
sudo: false
language: java
cache:
directories:
- $HOME/.m2
install:
- mvn clean install -Dmaven.test.skip.exec
script:
- mvn test -Pwith-lib,jacoco
jdk:
- oraclejdk8
notifications:
email:
recipients:
- [email protected]
after_success:
- mvn jacoco:report -pl impl
- mvn -N coveralls:report
|
dist: trusty
sudo: false
language: java
cache:
directories:
- $HOME/.m2
install:
- mvn clean install -Dmaven.test.skip.exec
script:
- mvn test -Pwith-lib,jacoco
jdk:
- oraclejdk8
notifications:
email:
recipients:
- [email protected]
after_success:
- mvn jacoco:report -pl impl
- mvn -N coveralls:report
|
Use trusty Travis CI dist
|
Use trusty Travis CI dist
|
YAML
|
apache-2.0
|
astefanutti/metrics-aspectj
|
4a20fa908f0d350f23df6824ccf8a3112491afd7
|
.travis.yml
|
.travis.yml
|
language:
- ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
install:
- "travis_retry bin/setup"
script:
- "bundle exec appraisal rake"
branches:
only:
- master
- 2.0
|
language:
- ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
install:
- "travis_retry bin/setup"
script:
- "bundle exec appraisal rake"
branches:
only:
- master
- 2.0
sudo: false
|
Use Travis containers for faster tests
|
Use Travis containers for faster tests
See:
http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
|
YAML
|
mit
|
janusnic/clearance,janusnic/clearance,naveed-ahmad/clearance,thoughtbot/clearance,zernie/clearance,naveed-ahmad/clearance,benlivermore/clearance,benlivermore/clearance,thoughtbot/clearance,pedrosmmoreira/clearance,zernie/clearance,pedrosmmoreira/clearance,naveed-ahmad/clearance,benlivermore/clearance,thoughtbot/clearance,zernie/clearance,pedrosmmoreira/clearance,janusnic/clearance
|
980a0261fd42726a84a13d88be8835a3fbdce772
|
.travis.yml
|
.travis.yml
|
sudo: required
cache:
directories:
- $HOME/.cache/
language:
- cpp
matrix:
include:
- os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
env:
- CACHE_KEY=trusty-gcc-6
- CC=/usr/bin/gcc-6
- CXX=/usr/bin/g++-6
- os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
packages:
- clang-3.8
env:
- CACHE_KEY=trusty-clang-3.8
- CC=clang-3.8
- CXX=clang++-3.8
install:
- mkdir -p $HOME/.cache/$CACHE_KEY
- sudo sh $TRAVIS_BUILD_DIR/.ci-scripts/install-cmake.sh
- sudo sh $TRAVIS_BUILD_DIR/.ci-scripts/install-caf.sh
script:
- cd ./build && cmake .. && make
|
sudo: required
cache:
directories:
- $HOME/.cache/
language:
- cpp
matrix:
include:
- os: linux
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
env:
- CACHE_KEY=trusty-gcc-6
- CC=/usr/bin/gcc-6
- CXX=/usr/bin/g++-6
- os: linux
dist: trusty
addons:
apt:
sources:
- llvm-toolchain-trusty
packages:
- clang-5.0
env:
- CACHE_KEY=trusty-clang-5.0
- CC=clang-5.0
- CXX=clang++-5.0
- os: osx
osx_image: xcode8
env:
- CACHE_KEY=xcode8-gcc-6
- CC=gcc-6
- CXX=g++-6
before_install:
- brew install gcc
install:
- mkdir -p $HOME/.cache/$CACHE_KEY
- sudo sh $TRAVIS_BUILD_DIR/.ci-scripts/install-cmake.sh
- sudo sh $TRAVIS_BUILD_DIR/.ci-scripts/install-caf.sh
script:
- cd ./build && cmake .. && make
|
Add OSX to build matrix
|
Add OSX to build matrix
|
YAML
|
mit
|
lucid-otserv/core,lucid-otserv/core
|
ec44483a4acdbbeaa8a433d0d0ee2c525b801fee
|
.travis.yml
|
.travis.yml
|
language: java
sudo: false
jdk:
- openjdk8
- oraclejdk8
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: ./build/libs/storm-jedis.jar
skip_cleanup: true
on:
tags: true
|
language: java
sudo: false
##
# OpenJDK 8 is not available (yet).
jdk:
- openjdk7
- oraclejdk7
- oraclejdk8
##
# When a release is tagged, push to GitHub Releases.
deploy:
provider: releases
api_key: $GITHUB_OAUTH_TOKEN
file: ./build/libs/storm-jedis.jar
skip_cleanup: true
on:
tags: true
|
Test on oracle JDK 7 and 8 on Travis
|
Test on oracle JDK 7 and 8 on Travis
|
YAML
|
mit
|
themasterchef/storm-jedis
|
4d14bad22f482a14052ddb226f55a55b1a803e55
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "2.7"
- "3.6"
- "3.7"
install: pip install tox-travis
script: tox
|
dist: xenial
sudo: required
language: python
python:
- "2.7"
- "3.6"
- "3.7"
install: pip install tox-travis
script: tox
|
Fix Travis CI to add python 3.7 support
|
Fix Travis CI to add python 3.7 support
|
YAML
|
apache-2.0
|
ddalu5/logs-analyzer
|
832595977fb3c881bfb25d4a86b166754d0207d7
|
.travis.yml
|
.travis.yml
|
sudo: required
services:
- docker
language: go
go:
- 1.6
branches:
only:
- master
- pachd_client_reorg
before_install:
- echo 'DOCKER_OPTS="-H unix:///var/run/docker.sock -s devicemapper"' | sudo tee /etc/default/docker > /dev/null
before_script:
- wget https://storage.googleapis.com/kubernetes-release/release/v1.1.7/bin/linux/amd64/kubectl
- chmod +x kubectl
- sudo mv kubectl /usr/local/bin/
- make launch-kube
- kubectl get all
- docker version
script:
- make test
notifications:
slack: pachyderm:qmSCZSX1Q2yWxc6DjNZZFLGd
|
sudo: required
services:
- docker
language: go
go:
- 1.6
branches:
only:
- master
- pachd_client_reorg
- vendor_reorg
before_install:
- echo 'DOCKER_OPTS="-H unix:///var/run/docker.sock -s devicemapper"' | sudo tee /etc/default/docker > /dev/null
before_script:
- wget https://storage.googleapis.com/kubernetes-release/release/v1.1.7/bin/linux/amd64/kubectl
- chmod +x kubectl
- sudo mv kubectl /usr/local/bin/
- make launch-kube
- kubectl get all
- docker version
script:
- make test
notifications:
slack: pachyderm:qmSCZSX1Q2yWxc6DjNZZFLGd
|
Enable building off vendor reorg branch
|
Enable building off vendor reorg branch
|
YAML
|
apache-2.0
|
pachyderm/pfs,pachyderm/pfs,pachyderm/pfs
|
d0ed786605b54be4b4191a941631fa374194a294
|
.travis.yml
|
.travis.yml
|
sudo: required
language: bash
services:
- docker
before_install:
- curl -L https://github.com/docker/compose/releases/download/1.4.0/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
- wget -nc -P "$HOME/cache" "http://download.geofabrik.de/europe/liechtenstein-160224.osm.pbf"
- mkdir -p "$TRAVIS_BUILD_DIR/import" && cp "$HOME/cache/liechtenstein-160224.osm.pbf" "$TRAVIS_BUILD_DIR/import"
- docker-compose build
- make -j8
script:
- docker-compose up -d postgis
- sleep 5
- docker-compose up -d pgbouncer
- sleep 5
- docker-compose run import-osm
- docker-compose run import-natural-earth
- docker-compose run import-water
- docker-compose run import-labels
- docker-compose run import-sql
- docker-compose run update-scaleranks
- docker-compose run export
- docker-compose run import-osm-diff
- docker-compose run detect-dirty-tiles
- docker-compose run export-list
- docker-compose up -d serve
- sleep 5
cache:
directories:
- $HOME/cache
|
sudo: required
language: bash
services:
- docker
before_install:
- curl -L https://github.com/docker/compose/releases/download/1.4.0/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
- wget -nc -P "$HOME/cache" "http://download.geofabrik.de/europe/liechtenstein-160101.osm.pbf"
- mkdir -p "$TRAVIS_BUILD_DIR/import" && cp "$HOME/cache/liechtenstein-160101.osm.pbf" "$TRAVIS_BUILD_DIR/import"
- docker-compose build
- make -j8
script:
- docker-compose up -d postgis
- sleep 5
- docker-compose up -d pgbouncer
- sleep 5
- docker-compose run import-osm
- docker-compose run import-natural-earth
- docker-compose run import-water
- docker-compose run import-labels
- docker-compose run import-sql
- docker-compose run update-scaleranks
- docker-compose run export
- docker-compose run import-osm-diff
- docker-compose run detect-dirty-tiles
- docker-compose run export-list
- docker-compose up -d serve
- sleep 5
cache:
directories:
- $HOME/cache
|
Add stable extract link of liechtenstein
|
Add stable extract link of liechtenstein
|
YAML
|
mit
|
osm2vectortiles/osm2vectortiles,geometalab/osm2vectortiles,osm2vectortiles/osm2vectortiles,geometalab/osm2vectortiles
|
72d578ff636b662c937df977aeaf3325a72492c7
|
.travis.yml
|
.travis.yml
|
os:
- linux
- osx
language: node_js
node_js:
- 4
- 5
- 6
- 7
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install zmq; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libzmq3-dev; fi
script:
- travis_retry npm run report:coveralls
env:
global:
- NODE_ENV=development
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
|
os:
- linux
- osx
dist: trusty
language: node_js
node_js:
- 4
- 5
- 6
- 7
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install zmq; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libzmq3-dev; fi
script:
- travis_retry npm run report:coveralls
env:
global:
- NODE_ENV=development
|
Use Ubuntu Trusty with G++ 4.8
|
Travis: Use Ubuntu Trusty with G++ 4.8
|
YAML
|
mit
|
mage/mage,mage/mage,stelcheck/mage,stelcheck/mage,mage/mage,stelcheck/mage
|
0f2644e198a27205603dce804725cc607ffe81be
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.7.1
sudo: false
install:
- make install-tools
- make install-dependencies
- make install
script:
- make lint
- make test-verbose-with-coverage
- gover
- if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then goveralls -coverprofile=gover.coverprofile -service=travis-ci -repotoken $COVERALLS_TOKEN; fi
env:
# coveralls.io
secure: "OntYh2L1QW3VWuxKHDh5tWdWpUzIEuCVKqpjN11OOFriByT9AC1noYFq15KV30vtIyqs25fy7II5KjRrlTlawQFga0ahSG7BmFW0gfqLQWbPouAlHNVPVkf4QfTKb8Dtn1JQVB5p6egPCjE/xzZE5/mjgylsfTKRz5Y85OPfri8="
|
language: go
go:
- 1.7.x
- 1.8.x
sudo: false
install:
- make install-tools
- make install-dependencies
- make install
script:
- make lint
- make test-verbose-with-coverage
- gover
- if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then goveralls -coverprofile=gover.coverprofile -service=travis-ci -repotoken $COVERALLS_TOKEN; fi
env:
# coveralls.io
secure: "OntYh2L1QW3VWuxKHDh5tWdWpUzIEuCVKqpjN11OOFriByT9AC1noYFq15KV30vtIyqs25fy7II5KjRrlTlawQFga0ahSG7BmFW0gfqLQWbPouAlHNVPVkf4QfTKb8Dtn1JQVB5p6egPCjE/xzZE5/mjgylsfTKRz5Y85OPfri8="
|
Switch to Go 1.7 and 1.8
|
Switch to Go 1.7 and 1.8
We are only supporting the two latest major Go releases.
|
YAML
|
mit
|
zimmski/go-mutesting,zimmski/go-mutesting
|
18c318223cd0c123beb416e90936eed7c5a68f30
|
roles/common/tasks/env.yml
|
roles/common/tasks/env.yml
|
---
- name: install bash-completion
apt: name=bash-completion state=present
- name: create git directory
file: path={{ local_home }}/git state=directory
- name: remove dot files
file: path={{ local_home }}/.{{ item }} state=absent
with_items: "{{ dot_files }}"
- name: link dot files
file: src={{ role_path }}/files/{{ item }} dest={{ local_home }}/.{{ item }} state=link
with_items: "{{ dot_files }}"
- name: remove config files
file: path={{ item.0 }}/{{ item.1 }} state=absent
with_together:
- "{{ config_paths }}"
- "{{ config_files }}"
tags:
remove_config_files
- name: make config directories
file: path={{ item }} state=directory
with_items: "{{ config_paths }}"
- name: link config files
file: src={{ role_path }}/files/{{ item.1 }} dest={{ item.0 }}/{{ item.1 }} state=link
with_together:
- "{{ config_paths }}"
- "{{ config_files }}"
- name: git-completion.bash
get_url: url=https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash dest={{ local_home }}/.git-completion.bash
- name: commit-template.txt
file: src={{ role_path }}/files/commit-template.txt dest={{ local_home }}/.commit-template.txt state=link
|
---
- name: install bash-completion
apt: name=bash-completion state=present
become: true
- name: create git directory
file: path={{ local_home }}/git state=directory
- name: remove dot files
file: path={{ local_home }}/.{{ item }} state=absent
with_items: "{{ dot_files }}"
- name: link dot files
file: src={{ role_path }}/files/{{ item }} dest={{ local_home }}/.{{ item }} state=link
with_items: "{{ dot_files }}"
- name: remove config files
file: path={{ item.0 }}/{{ item.1 }} state=absent
with_together:
- "{{ config_paths }}"
- "{{ config_files }}"
tags:
remove_config_files
- name: make config directories
file: path={{ item }} state=directory
with_items: "{{ config_paths }}"
- name: link config files
file: src={{ role_path }}/files/{{ item.1 }} dest={{ item.0 }}/{{ item.1 }} state=link
with_together:
- "{{ config_paths }}"
- "{{ config_files }}"
- name: git-completion.bash
get_url: url=https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash dest={{ local_home }}/.git-completion.bash
- name: commit-template.txt
file: src={{ role_path }}/files/commit-template.txt dest={{ local_home }}/.commit-template.txt state=link
|
Fix sudo privileges for apt-get install
|
Fix sudo privileges for apt-get install
|
YAML
|
mit
|
wd15/env,wd15/env,wd15/env
|
2a434b99a78d0ff8b22a20bb7fe78a5aa56a3a0f
|
roles/shell/tasks/main.yml
|
roles/shell/tasks/main.yml
|
---
- name: Install tmux
homebrew:
name: tmux
state: latest
- name: Install shellcheck
homebrew:
name: shellcheck
state: latest
- name: Install ag
become: true
apt:
name: silversearcher-ag
state: latest
- name: Install direnv
become: true
apt:
name: direnv
|
---
- name: Shell dependencies
homebrew:
name: "{{item}}"
state: latest
with_items:
- tmux
- shellcheck
- silversearcher-ag
- direnv
|
Install all shell stuff through homebrew
|
Install all shell stuff through homebrew
|
YAML
|
mit
|
deivid-rodriguez/dotfiles,deivid-rodriguez/dotfiles
|
c6a28814c1c19163af4a2e8d70f53552ed994c82
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.2"
- "3.3"
- "3.4"
install:
- pip install --use-mirrors -r test-requirements.pip
script: nosetests
|
language: python
python:
- "3.4"
- "3.5"
install:
- pip install --use-mirrors -r test-requirements.pip
script: nosetests
|
Drop 3.2 and 3.3 from the CI build and add 3.5
|
Drop 3.2 and 3.3 from the CI build and add 3.5
|
YAML
|
mit
|
renshawbay/xltable,fkarb/xltable
|
5f32c7d6fa5448d416869868a29c14dd1d3611cb
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
before_install:
- "curl -L http://git.io/ejPSng | /bin/sh"
|
language: node_js
node_js:
- "0.10"
before_install:
- "curl -L https://raw.github.com/peerlibrary/travis-ci-meteor-packages/peerlibrary/configure.sh | /bin/sh"
|
Use our Travis CI testing script.
|
Use our Travis CI testing script.
|
YAML
|
bsd-3-clause
|
peerlibrary/meteor-fs
|
9a6d0b419a2f4230e79247a044727f895c0b40b3
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.5
- 1.6
- 1.7
- 1.8
- tip
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y pdftk
install:
- go get -u github.com/golang/lint/golint
- go get github.com/stretchr/testify
- go get github.com/satori/go.uuid
script:
- golint
- go test -cover
|
language: go
go:
- 1.6
- 1.7
- 1.8
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y pdftk
install:
- go get -u github.com/golang/lint/golint
- go get github.com/stretchr/testify
- go get github.com/satori/go.uuid
script:
- golint
- go test -cover
|
Remove 1.5 & tip from the test matrix
|
Remove 1.5 & tip from the test matrix
|
YAML
|
mit
|
StefanKjartansson/pdfhandler
|
e8ac7dc82e9b5c230f6ba1f6f7a48b74b71cb974
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '4.0'
- '4'
- '5'
- '6.0'
- '6'
- '7'
sudo: false
script:
- npm run lint
- npm test -- -- -- --bail --timeout 5000 --reporter dot
after_success:
- npm run coveralls
notifications:
email: false
slack:
secure: jI3gt+t9s6NRCuMnEfQKqNziWpTVxKMAv2sXIukDzNgBzTl70oZcn4gGOoD+JWfPBDZV/3UFrKh3kEBKfIcfMbFaudfxPZLxeXwTtzvOxq1AfdH8mAZwqwSCtDu+1g6KfHtbyEHfJvJZGWKuGDgJUKq5rrkeU8v5rCALFZQbDKo=
branches:
only:
- master
- develop
|
language: node_js
node_js:
- '4.0'
- '4'
- '6.0'
- '6'
sudo: false
script:
- npm run lint
- npm test -- -- -- --bail --timeout 5000 --reporter dot
after_success:
- npm run coveralls
notifications:
email: false
slack:
secure: jI3gt+t9s6NRCuMnEfQKqNziWpTVxKMAv2sXIukDzNgBzTl70oZcn4gGOoD+JWfPBDZV/3UFrKh3kEBKfIcfMbFaudfxPZLxeXwTtzvOxq1AfdH8mAZwqwSCtDu+1g6KfHtbyEHfJvJZGWKuGDgJUKq5rrkeU8v5rCALFZQbDKo=
branches:
only:
- master
- develop
|
Stop testing Node v5 and v7
|
Stop testing Node v5 and v7
|
YAML
|
mit
|
BrandonZacharie/node-redis-server
|
dff6b3cad72b556ed8efbc6185c706a212e09dd2
|
.travis.yml
|
.travis.yml
|
language: ruby
script: "bundle exec rake"
rvm:
- 1.9.3
- 2.0.0
- rbx
- jruby
gemfile:
- gemfiles/Gemfile.rails-3.1
- Gemfile
|
language: ruby
script: "bundle exec rake"
rvm:
- 1.9.3
- 2.0.0
- rbx-19mode
- jruby
gemfile:
- gemfiles/Gemfile.rails-3.1
- Gemfile
|
Use rbx in 1.9 mode.
|
Use rbx in 1.9 mode.
|
YAML
|
mit
|
chrise86/cocoon,asiniy/cocoon,nathanvda/cocoon,nathanvda/cocoon,treble37/cocoon,nathanvda/cocoon,vtamara/cocoon,chrise86/cocoon,ikhakoo/cocoon,treble37/cocoon,asiniy/cocoon,chrise86/cocoon,ikhakoo/cocoon,asiniy/cocoon,vtamara/cocoon,treble37/cocoon,vtamara/cocoon,ikhakoo/cocoon
|
960ca5aa44b5a7cf73ef08ce4354b5b937d45859
|
.travis.yml
|
.travis.yml
|
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- ruby-head
- jruby-19mode
- rbx-3
|
rvm:
- 2.0.0
- 2.1.10
- 2.2.8
- 2.3.5
- 2.4.2
- ruby-head
- jruby-19mode
- rbx-3
|
Drop ruby 1.9.3 from CI for activesupport 5.n
|
Drop ruby 1.9.3 from CI for activesupport 5.n
|
YAML
|
mit
|
balexand/email_validator
|
79f24db661eece56f1bf89bdfeda8a069f5d53a4
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 'node'
- 'iojs'
- '0.12'
before_install:
- sudo apt-get install python-software-properties
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -y
- sudo apt-get install gcc-4.9 g++-4.9 -y
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 20
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 20
- sudo update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-4.9 20
|
language: node_js
node_js:
- 'node'
- 'iojs'
- '0.12'
|
Remove unncessary Travis CI boilerplate
|
Remove unncessary Travis CI boilerplate
|
YAML
|
mit
|
feathersjs/feathers-authentication,m1ch3lcl/feathers-authentication,eblin/feathers-authentication,feathersjs/feathers-passport-jwt,feathersjs/feathers-passport-jwt,eblin/feathers-authentication,m1ch3lcl/feathers-authentication
|
2c00888222199d2ce7c453ed0666be56b945915f
|
engineer/themes/oleb/metadata.yaml
|
engineer/themes/oleb/metadata.yaml
|
name: 'Ole Begemann'
id: oleb
description: "A bright design based on Ole Begemann's oleb.net. Used with permission."
author: 'Tyler Butler <[email protected]>'
website: 'http://tylerbutler.com'
license: 'Creative Commons BY-SA 3.0'
use_foundation: yes
use_lesscss: yes
use_modernizr: yes
use_jquery: yes
self_contained: yes
|
name: 'Ole Begemann'
id: oleb
description: "A bright design based on Ole Begemann's oleb.net. Used with permission."
author: 'Tyler Butler <[email protected]>'
website: 'http://tylerbutler.com'
license: 'Creative Commons BY-SA 3.0'
use_foundation: yes
use_lesscss: yes
use_modernizr: yes
use_jquery: yes
settings:
typekit_id: null
twitter_id: tylerbutler
tweet_count: 4
self_contained: yes
|
Add missing default settings to oleb theme.
|
Add missing default settings to oleb theme.
|
YAML
|
mit
|
tylerbutler/engineer,tylerbutler/engineer,tylerbutler/engineer
|
8f8daa0453669363f3b3a79d0a9b48a22a1fba20
|
_config.yml
|
_config.yml
|
#Update all the sections by editing the data.yml file inside _data folder.
# Site Settings
title: My Resume
url: 'http://webjeda.com'
baseurl: '/online-cv' #change it according to your repository name
# Style will be applied only after restarting the build or serve. Just choose one of the options.
theme_skin: blue # blue turquoise green berry orange ceramic
# Tracker
analytics: UA-83979019-1
# Sass/SCSS
sass:
sass_dir: _sass
style: compressed # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
# Build settings
encoding: "utf-8"
compress_html: # - http://jch.penibelst.de/
clippings: all
ignore:
envs: development
# Development Settings
port: 4000
host: 0.0.0.0
safe: false
|
#Update all the sections by editing the data.yml file inside _data folder.
# Site Settings
title: My Resume
url: 'http://webjeda.com'
baseurl: '/online-cv' #change it according to your repository name
# Style will be applied only after restarting the build or serve. Just choose one of the options.
theme_skin: blue # blue turquoise green berry orange ceramic
chrome_mobile_color: #use hex colors (ex:#1976d2) or leave empty if you don't want a color for chrome mobile searchbar
# Tracker
analytics: UA-83979019-1
# Sass/SCSS
sass:
sass_dir: _sass
style: compressed # http://sass-lang.com/documentation/file.SASS_REFERENCE.html#output_style
# Build settings
encoding: "utf-8"
compress_html: # - http://jch.penibelst.de/
clippings: all
ignore:
envs: development
# Development Settings
port: 4000
host: 0.0.0.0
safe: false
|
Add configuration var for chrome mobile use
|
Add configuration var for chrome mobile use
|
YAML
|
mit
|
axdiamond/axdiamond,ovisnigra/ovisnigra.github.io,xdite/xdite.github.com,freesoft/freesoft.github.io,freesoft/freesoft.github.io,axdiamond/axdiamond
|
bed61866a354186f79b6323df932b9ae0864987a
|
leafpad/snapcraft.yaml
|
leafpad/snapcraft.yaml
|
name: leafpad
version: "1"
summary: GTK+ based simple text editor
description: |
Leafpad is a simple GTK+ based text editor, the user interface is similar
to Notepad. It aims to be lighter than GEdit and KWrite, and to be as
useful as them.
confinement: devmode
apps:
leafpad:
command: desktop-launch leafpad
plugs: [home, unity7, opengl, network, x11]
parts:
leafpad:
source: https://github.com/oluc/leafpad.git
plugin: autotools
snap:
- -usr/share/doc
build-packages:
- build-essential
- intltool
after: [desktop/gtk2]
|
name: leafpad
version: "1"
summary: GTK+ based simple text editor
description: |
Leafpad is a simple GTK+ based text editor, the user interface is similar
to Notepad. It aims to be lighter than GEdit and KWrite, and to be as
useful as them.
confinement: strict
apps:
leafpad:
command: desktop-launch leafpad
plugs: [home, unity7, opengl, network, x11, gsettings]
parts:
leafpad:
source: https://github.com/oluc/leafpad.git
plugin: autotools
snap:
- -usr/share/doc
build-packages:
- build-essential
- intltool
after: [desktop/gtk2]
|
Add needed plugs and working in strict mode
|
Add needed plugs and working in strict mode
|
YAML
|
mit
|
elopio/snappy-playpen,Winael/snappy-playpen-1,jamestait/snappy-playpen,ubuntu/snappy-playpen,dplanella/snappy-playpen,jamestait/snappy-playpen,wandrewkeech/snappy-playpen,ubuntu/snappy-playpen,ubuntu/snappy-playpen,Zap123/snappy-playpen,Winael/snappy-playpen-1,Zap123/snappy-playpen,wandrewkeech/snappy-playpen,jamestait/snappy-playpen,ubuntu/snappy-playpen,elopio/snappy-playpen,elopio/snappy-playpen,jamestait/snappy-playpen,dplanella/snappy-playpen,elopio/snappy-playpen
|
074f237ac9d453550c2d41fa222f8737a9da2486
|
blueprints.yaml
|
blueprints.yaml
|
name: AdvancedPageCache
version: 1.0.0
description: "AdvancedPageCache turbo charges your site by statically caching pages."
icon: dashboard
author:
name: Team Grav
email: [email protected]
url: http://getgrav.org
homepage: https://github.com/getgrav/grav-plugin-advanced-pagecache
keywords: "static, cache, plugin, performance"
bugs: https://github.com/getgrav/grav-plugin-advanced-pagecache/issues
license: MIT
form:
validation: strict
fields:
enabled:
type: toggle
label: Plugin Status
highlight: 1
default: 1
options:
1: Enabled
0: Disabled
validate:
type: bool
|
name: AdvancedPageCache
version: 1.0.0
description: "AdvancedPageCache turbo charges your site by statically caching pages."
icon: dashboard
author:
name: Team Grav
email: [email protected]
url: http://getgrav.org
homepage: https://github.com/getgrav/grav-plugin-advanced-pagecache
keywords: "static, cache, plugin, performance"
bugs: https://github.com/getgrav/grav-plugin-advanced-pagecache/issues
license: MIT
form:
validation: strict
fields:
enabled:
type: toggle
label: Plugin Status
highlight: 1
default: 1
options:
1: Enabled
0: Disabled
validate:
type: bool
enabled_with_params:
type: toggle
label: Enabled with Params
highlight: 1
default: 1
options:
1: Enabled
0: Disabled
validate:
type: bool
help: Enable if there are params set on this URI (eg. /color:blue)
enabled_with_query:
type: toggle
label: Enabled with Query
highlight: 1
default: 1
options:
1: Enabled
0: Disabled
validate:
type: boolù
help: Enable if there are query options set on this URI (eg. ?color=blue)
whitelist:
type: array
label: Whitelist
help: "Enable the plugin only when calling these page paths"
placeholder_key:
placeholder_value: /whitelist-this-route
blacklist:
type: array
label: Blacklist
help: "Disable the plugin when calling these page paths"
placeholder_key:
placeholder_value: /blacklist-this-route
|
Add missing options to the blueprint
|
Add missing options to the blueprint
|
YAML
|
mit
|
getgrav/grav-plugin-advanced-pagecache,cord/grav-plugin-advanced-pagecache
|
75eebf82b674f188f58eb1a8ab2afe9c6779745c
|
vars/production.yml
|
vars/production.yml
|
---
domain: "digitalmarketplace.service.gov.uk"
maintenance_mode: live
instances: 5
router:
instances: 3
rate_limiting_enabled: enabled
routes:
- dm-router-{env}.cloudapps.digital
- dm-router-{env}.cloudapps.digital/_metrics
- www.digitalmarketplace.service.gov.uk
- api.digitalmarketplace.service.gov.uk
- search-api.digitalmarketplace.service.gov.uk
- antivirus-api.digitalmarketplace.service.gov.uk
- assets.digitalmarketplace.service.gov.uk
api:
memory: 2GB
instances: 8
user-frontend:
instances: 2
admin-frontend:
instances: 2
antivirus-api:
instances: 4
supplier-frontend:
instances: 8
|
---
domain: "digitalmarketplace.service.gov.uk"
maintenance_mode: live
instances: 5
router:
instances: 3
rate_limiting_enabled: enabled
routes:
- dm-router-{env}.cloudapps.digital
- dm-router-{env}.cloudapps.digital/_metrics
- www.digitalmarketplace.service.gov.uk
- api.digitalmarketplace.service.gov.uk
- search-api.digitalmarketplace.service.gov.uk
- antivirus-api.digitalmarketplace.service.gov.uk
- assets.digitalmarketplace.service.gov.uk
api:
memory: 2GB
instances: 8
user-frontend:
instances: 2
admin-frontend:
instances: 2
memory: 1GB
antivirus-api:
instances: 4
buyer-frontend:
memory: 1G
search-api:
memory: 1G
supplier-frontend:
instances: 8
memory: 2GB
|
Scale app memory for G12
|
Scale app memory for G12
|
YAML
|
mit
|
alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws
|
d34eef379e20433d8e12df6f20612eae8c070c43
|
wercker.yml
|
wercker.yml
|
box: cosyverif/lua-environments
build:
steps:
- script:
name: "install dependencies"
code: |
luarocks install luasec
luarocks install luacov-coveralls
- script:
name: "check and test"
code: |
./bin/test /lua/
after-steps:
- script:
name: "export to coveralls"
code: |
./bin/coveralls
- script:
name: "upload to luarocks"
code: |
./bin/upload
|
box: cosyverif/lua-environments
build:
steps:
- script:
name: "install dependencies"
code: |
luarocks install luacov-coveralls
- script:
name: "check and test"
code: |
./bin/test /lua/
after-steps:
- script:
name: "export to coveralls"
code: |
./bin/coveralls
- script:
name: "upload to luarocks"
code: |
./bin/upload
|
Remove luasec dependency already in lua-environments.
|
Remove luasec dependency already in lua-environments.
|
YAML
|
mit
|
saucisson/lua-layeredata,saucisson/layeredata,cosyverif/layeredata
|
10e18eb398dd855f8425190c394f4d6d4345d048
|
ci/pipeline.yml
|
ci/pipeline.yml
|
steps:
- command: docker-compose build && docker-compose run api ci/server_cukes.sh
label: "Server Specs"
- command: docker-compose build && docker-compose run api ci/server_specs.sh
|
steps:
- command: docker-compose build && docker-compose run api ci/server_cukes.sh
label: "Server Cukes"
- command: docker-compose build && docker-compose run api ci/server_specs.sh
label: "Server Specs"
|
Add a label to CI step
|
Add a label to CI step
|
YAML
|
mit
|
anicholson/mode-mode,anicholson/mode-mode,anicholson/mode-mode,anicholson/mode-mode
|
1adc92d66bc3642b442aff4737f18702281d8c1f
|
cloudbuild.yaml
|
cloudbuild.yaml
|
# See https://cloud.google.com/cloud-build/docs/build-config
steps:
- name: gcr.io/cloud-builders/docker
entrypoint: /usr/bin/make
args:
- push-images
- TAG=$_GIT_TAG
substitutions:
# variables set by kubernetes/test-infra/images/builder
# set by image-builder to vYYYYMMDD-hash
_GIT_TAG: "12345"
|
# See https://cloud.google.com/cloud-build/docs/build-config
steps:
- name: gcr.io/cloud-builders/docker
entrypoint: "/usr/bin/make"
args:
- "push-images"
- "TAG=$_GIT_TAG"
- name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
entrypoint: "/usr/bin/gcloud"
args:
- "run"
- "services"
- "update"
- "k8s-infra-oci-proxy-us-central1"
- "--image"
- "gcr.io/k8s-staging-infra-tools/archeio:$_GIT_TAG"
- "--region"
- "us-central1"
- name: "gcr.io/google.com/cloudsdktool/cloud-sdk"
entrypoint: "/usr/bin/gcloud"
args:
- "run"
- "services"
- "update"
- "k8s-infra-oci-proxy-us-west1"
- "--image"
- "gcr.io/k8s-staging-infra-tools/archeio:$_GIT_TAG"
- "--region"
- "us-west1"
substitutions:
# variables set by kubernetes/test-infra/images/builder
# set by image-builder to vYYYYMMDD-hash
_GIT_TAG: "12345"
|
Add auto-deploy to CloudRun regions
|
Add auto-deploy to CloudRun regions
|
YAML
|
apache-2.0
|
kubernetes/registry.k8s.io,kubernetes/registry.k8s.io
|
e0ffdcbfe3889bddefa4431037f2d8357b649db8
|
meta.yaml
|
meta.yaml
|
package:
name: 3scan-shared
version: {{ environ.get('GIT_DESCRIBE_TAG', "0.0.0") }}
source:
path: "."
build:
# The build number should be incremented for new builds of the same version
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
script: python setup.py install
requirements:
# Packages required to build the package.
build:
- python
- setuptools
- patchelf # [linux]
# Packages required to run the package.
run:
- python
about:
home: https://github.com/3Scan/3scan-shared
license: Proprietary
summary: 3scan shared tools.
|
package:
name: 3scan-shared
version: {{ environ.get('GIT_DESCRIBE_TAG', "0.0.0") }}
source:
git_url: "."
build:
# The build number should be incremented for new builds of the same version
number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }}
script: python setup.py install
requirements:
# Packages required to build the package.
build:
- python
- setuptools
- patchelf # [linux]
# Packages required to run the package.
run:
- python
about:
home: https://github.com/3Scan/3scan-shared
license: Proprietary
summary: 3scan shared tools.
|
Change git url to .
|
Change git url to .
|
YAML
|
bsd-2-clause
|
meawoppl/conda-git-regression
|
2318fa00e4c66d6a0b46dcc4d2a99e716d363d7e
|
.kitchen.yml
|
.kitchen.yml
|
driver:
name: vagrant
provisioner:
name: chef_zero
verifier:
name: inspec
platforms:
- name: centos-5.11
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
- name: debian-8.5
- name: fedora-24
run_list: yum::dnf_yum_compat
- name: opensuse-13.2
- name: opensuse-42.1
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: default
run_list: test::default
- name: create
run_list: test::create
|
driver:
name: vagrant
provisioner:
name: chef_zero
verifier:
name: inspec
platforms:
- name: centos-5.11
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
- name: debian-8.6
- name: fedora-25
run_list: yum::dnf_yum_compat
- name: opensuse-13.2
- name: opensuse-42.1
- name: ubuntu-12.04
- name: ubuntu-14.04
- name: ubuntu-16.04
suites:
- name: default
run_list: test::default
- name: create
run_list: test::create
|
Update Test Kitchen platforms to the latest
|
Update Test Kitchen platforms to the latest
|
YAML
|
apache-2.0
|
opscode-cookbooks/sudo,cringdahl/sudo,opscode-cookbooks/sudo,juliandunn/sudo,bcg62/sudo,autarchprinceps/sudo,cringdahl/sudo,chef-cookbooks/sudo,opscode-cookbooks/sudo,chef-cookbooks/sudo,bcg62/sudo,juliandunn/sudo,autarchprinceps/sudo
|
3b9f4b2cf8e527725c14187e6bb843598d542692
|
.kitchen.yml
|
.kitchen.yml
|
---
driver:
name: ec2
aws_access_key_id: <%= ENV['AWS_ACCESS_KEY'] %>
aws_secret_access_key: <%= ENV['AWS_SECRET_KEY'] %>
aws_ssh_key_id: aws_dev
ssh_key: <%= ENV['HOME'] %>/.ssh/aws_dev.pem
region: us-east-1
availability_zone: us-east-1b
security_group_ids: ['ci-testing']
flavor_id: c3.xlarge
require_chef_omnibus: true
username: ubuntu
provisioner:
name: chef_zero
encrypted_data_bag_secret_key_path: <%= ENV['HOME'] %>/.chef/encrypted_data_bag_secret
platforms:
- name: ubuntu-12.04
driver:
image_id: ami-e002a788
tags:
Name: vagrant-default-ubuntu-1204
Env: public
suites:
- name: ec2
run_list:
- recipe[storage::ec2test]
- recipe[storage::default]
attributes:
|
---
driver:
name: ec2
aws_access_key_id: <%= ENV['AWS_ACCESS_KEY'] %>
aws_secret_access_key: <%= ENV['AWS_SECRET_KEY'] %>
aws_ssh_key_id: aws_dev
ssh_key: <%= ENV['HOME'] %>/.ssh/aws_dev.pem
region: us-east-1
availability_zone: us-east-1b
security_group_ids: ['ci-testing']
flavor_id: c3.xlarge
require_chef_omnibus: true
username: ubuntu
provisioner:
name: chef_zero
encrypted_data_bag_secret_key_path: <%= ENV['HOME'] %>/.chef/encrypted_data_bag_secret
platforms:
- name: ubuntu-12.04
driver:
image_id: ami-e002a788
tags:
Name: storage-default-ubuntu-1204
Env: public
- name: ubuntu-14.04
driver:
image_id: ami-d0ba0cb8
tags:
Name: storage-default-ubuntu-1404
Env: public
suites:
- name: ec2
run_list:
- recipe[storage::ec2test]
- recipe[storage::default]
attributes:
|
Add testing for Ubuntu 14.04, use better EC2 names
|
Add testing for Ubuntu 14.04, use better EC2 names
|
YAML
|
apache-2.0
|
evertrue/storage-cookbook
|
c19ec33f0073ef7aea7f35fe7f280fd9f9fc6d5e
|
.rubocop.yml
|
.rubocop.yml
|
inherit_from: .rubocop_todo.yml
# Exclude any vendored gems
AllCops:
Exclude:
- 'vendor/**/*'
NewCops: enable
TargetRubyVersion: 2.4
# Be lenient with line length
Layout/LineLength:
Max: 92
# Multi-line method calls should be simply indented. Aligning them makes it
# even harder to keep a sane line length.
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
# Multi-line assignment should be simply indented. Aligning them makes it even
# harder to keep a sane line length.
Layout/MultilineOperationIndentation:
EnforcedStyle: indented
# Allow test classes to have any length
Metrics/ClassLength:
Exclude:
- 'test/**/*'
# Allow test methods to have any length
Metrics/MethodLength:
Exclude:
- 'test/**/*'
# In guard clauses, if ! is often more immediately clear
Style/NegatedIf:
Enabled: false
# Do not commit to use of interpolation
Style/StringLiterals:
EnforcedStyle: double_quotes
# Prefer symbols to look like symbols
Style/SymbolArray:
EnforcedStyle: brackets
|
inherit_from: .rubocop_todo.yml
# Exclude any vendored gems
AllCops:
Exclude:
- 'vendor/**/*'
NewCops: enable
TargetRubyVersion: 2.4
# Be lenient with line length
Layout/LineLength:
Max: 92
# Multi-line method calls should be simply indented. Aligning them makes it
# even harder to keep a sane line length.
Layout/MultilineMethodCallIndentation:
EnforcedStyle: indented
# Multi-line assignment should be simply indented. Aligning them makes it even
# harder to keep a sane line length.
Layout/MultilineOperationIndentation:
EnforcedStyle: indented
# Allow test classes to have any length
Metrics/ClassLength:
Exclude:
- 'test/**/*'
# Allow test methods to have any length
Metrics/MethodLength:
Exclude:
- 'test/**/*'
# Allow else clauses with explicit nil value
Style/EmptyElse:
EnforcedStyle: empty
# In guard clauses, if ! is often more immediately clear
Style/NegatedIf:
Enabled: false
# Do not commit to use of interpolation
Style/StringLiterals:
EnforcedStyle: double_quotes
# Prefer symbols to look like symbols
Style/SymbolArray:
EnforcedStyle: brackets
|
Allow else clauses with explicit nil value
|
Allow else clauses with explicit nil value
|
YAML
|
mit
|
ActsAsParanoid/acts_as_paranoid
|
b2433b5ceffd8cbeca3ea115dd63546908f82040
|
.rubocop.yml
|
.rubocop.yml
|
# Don't enforce top-level class and module documentation
Style/Documentation:
Enabled: false
# Don't enforce underscores for large numeric values
Style/NumericLiterals:
Enabled: false
# Don't enforce implicit return
Style/RedundantReturn:
Enabled: false
# Don't enforce implicit self
Style/RedundantSelf:
Enabled: false
# Prefer double quoted string literals
Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes
# Don't enforce attr_* for trivial readers/writers
Style/TrivialAccessors:
Enabled: false
# Don't enforce %w and %W for word arrays
Style/WordArray:
Enabled: false
|
# Allow methods of up to 20 lines of code
Metrics/MethodLength:
Max: 20
# Don't enforce top-level class and module documentation
Style/Documentation:
Enabled: false
# Don't enforce underscores for large numeric values
Style/NumericLiterals:
Enabled: false
# Don't enforce implicit return
Style/RedundantReturn:
Enabled: false
# Don't enforce implicit self
Style/RedundantSelf:
Enabled: false
# Prefer double quoted string literals
Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes
# Don't enforce attr_* for trivial readers/writers
Style/TrivialAccessors:
Enabled: false
# Don't enforce %w and %W for word arrays
Style/WordArray:
Enabled: false
|
Allow lines of up to 20 lines of code
|
Rubocop: Allow lines of up to 20 lines of code
|
YAML
|
mit
|
codeunion/ruby-exercises,TravisIngram/javascript_code_katas,TravisIngram/javascript_code_katas,chrisswk/ruby-exercises
|
f357fb4ea7221ef49fb224d28278e0ed4fe4bcd4
|
.rubocop.yml
|
.rubocop.yml
|
AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
TargetRubyVersion: 2.0
Style/ClassAndModuleChildren:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/SpaceAroundEqualsInParameterDefault:
EnforcedStyle: no_space
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/TrivialAccessors:
AllowPredicates: true
|
AllCops:
DisplayCopNames: true
DisplayStyleGuide: true
TargetRubyVersion: 2.0
Style/ClassAndModuleChildren:
Enabled: false
Style/DoubleNegation:
Enabled: false
Style/HashSyntax:
EnforcedStyle: hash_rockets
Style/SpaceAroundEqualsInParameterDefault:
EnforcedStyle: no_space
Style/StringLiterals:
EnforcedStyle: double_quotes
Style/TrivialAccessors:
AllowPredicates: true
# Need discussion
Style/AndOr:
Enabled: false
Style/Documentation:
Enabled: false
Style/RedundantSelf:
Enabled: false
Style/RedundantReturn:
Enabled: false
Style/SpaceAfterComma:
Enabled: false
Style/ParallelAssignment:
Enabled: false
Style/RegexpLiteral:
Enabled: false
Style/SignalException:
Enabled: false
Style/AccessorMethodName:
Enabled: false
Performance/RedundantMerge:
Enabled: false
Style/PercentLiteralDelimiters:
Enabled: false
Style/BlockDelimiters:
Enabled: false
Style/ConditionalAssignment:
Enabled: false
Style/AlignParameters:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
Style/Next:
Enabled: false
Style/Lambda:
Enabled: false
Style/EmptyLiteral:
Enabled: false
Style/RaiseArgs:
Enabled: false
Style/SingleLineBlockParams:
Enabled: false
Style/Not:
Enabled: false
Style/WhileUntilModifier:
Enabled: false
Style/RescueModifier:
Enabled: false
Style/SpecialGlobalVars:
Enabled: false
Style/ModuleFunction:
Enabled: false
Style/DotPosition:
Enabled: false
Style/BlockEndNewline:
Enabled: false
Style/AlignArray:
Enabled: false
Style/MultilineBlockLayout:
Enabled: false
Style/TrailingCommaInLiteral:
Enabled: false
Style/Proc:
Enabled: false
Style/CommandLiteral:
Enabled: false
Style/AlignHash:
Enabled: false
# Needs refactors
Metrics/PerceivedComplexity:
Enabled: false
Metrics/CyclomaticComplexity:
Enabled: false
Metrics/MethodLength:
Enabled: false
Style/PredicateName:
Enabled: false
Metrics/LineLength:
Enabled: false
Metrics/AbcSize:
Enabled: false
Style/PerlBackrefs:
Enabled: false
Metrics/ClassLength:
Enabled: false
Metrics/ModuleLength:
Enabled: false
|
Disable a couple of cops for discussion
|
Disable a couple of cops for discussion
|
YAML
|
mit
|
kylerippey/capistrano,ngpestelos/capistrano,jdelStrother/capistrano,capistrano/capistrano,kylerippey/capistrano,maliqq/capistrano,harrykiselev/capistrano,jdelStrother/capistrano,ngpestelos/capistrano,maliqq/capistrano,harrykiselev/capistrano,capistrano/capistrano
|
d511af5a3e041f68568dd78be7de3b2ce5dd6609
|
Resources/config/routing/product_attribute.yml
|
Resources/config/routing/product_attribute.yml
|
sylius_admin_product_attribute:
resource: |
alias: sylius.product_attribute
section: admin
templates: SyliusAdminBundle:Crud
except: ['show', 'create']
redirect: update
grid: sylius_admin_product_attribute
vars:
all:
subheader: sylius.ui.manage_attributes_of_your_produts
templates:
form: SyliusAdminBundle:ProductAttribute:_form.html.twig
index:
icon: cubes
type: sylius.resource
sylius_admin_product_attribute_create:
path: /product-attributes/{type}/new
methods: [GET, POST]
defaults:
_controller: sylius.controller.product_attribute:createAction
type: text
_sylius:
section: admin
factory:
method: createTyped
arguments:
type: $type
template: SyliusAdminBundle:Crud:create.html.twig
redirect: sylius_admin_product_attribute_update
vars:
subheader: sylius.ui.manage_attributes_of_your_produts
templates:
form: SyliusAdminBundle:ProductAttribute:_form.html.twig
sylius_admin_get_attribute_types:
path: /attribute-types
methods: [GET]
defaults:
_controller: sylius.controller.product_attribute:getAttributeTypesAction
template: SyliusAdminBundle:ProductAttribute/Types:attributeTypes.html.twig
|
sylius_admin_product_attribute:
resource: |
alias: sylius.product_attribute
section: admin
templates: SyliusAdminBundle:Crud
except: ['show', 'create']
redirect: update
grid: sylius_admin_product_attribute
vars:
all:
subheader: sylius.ui.manage_attributes_of_your_products
templates:
form: SyliusAdminBundle:ProductAttribute:_form.html.twig
index:
icon: cubes
type: sylius.resource
sylius_admin_product_attribute_create:
path: /product-attributes/{type}/new
methods: [GET, POST]
defaults:
_controller: sylius.controller.product_attribute:createAction
type: text
_sylius:
section: admin
factory:
method: createTyped
arguments:
type: $type
template: SyliusAdminBundle:Crud:create.html.twig
redirect: sylius_admin_product_attribute_update
vars:
subheader: sylius.ui.manage_attributes_of_your_products
templates:
form: SyliusAdminBundle:ProductAttribute:_form.html.twig
sylius_admin_get_attribute_types:
path: /attribute-types
methods: [GET]
defaults:
_controller: sylius.controller.product_attribute:getAttributeTypesAction
template: SyliusAdminBundle:ProductAttribute/Types:attributeTypes.html.twig
|
Fix typo in the translation key for product attributes
|
[Admin] Fix typo in the translation key for product attributes
|
YAML
|
mit
|
Sylius/SyliusAdminBundle,Sylius/SyliusAdminBundle
|
c1fd7280d4ddac10b2c436bdbde0bf7f88cee1db
|
zuul.d/project.yaml
|
zuul.d/project.yaml
|
- project:
templates:
- openstack-lower-constraints-jobs-neutron
- openstack-python3-victoria-jobs-neutron
- publish-openstack-docs-pti
- check-requirements
- release-notes-jobs-python3
|
- project:
templates:
- openstack-lower-constraints-jobs-neutron
- openstack-python3-wallaby-jobs-neutron
- publish-openstack-docs-pti
- check-requirements
- release-notes-jobs-python3
|
Add Python3 wallaby unit tests
|
Add Python3 wallaby unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for wallaby.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: Ie34dda6a1cf2a844a9c3e92162c2eea066824750
|
YAML
|
apache-2.0
|
openstack/networking-sfc,openstack/networking-sfc
|
5989563bf8815601024fe11250168b853fbe92f5
|
zuul.d/project.yaml
|
zuul.d/project.yaml
|
- project:
check:
jobs:
- bifrost-integration-tinyipa
- bifrost-integration-tinyipa-opensuse-423
# Non-voting jobs
- bifrost-integration-dhcp:
voting: false
- bifrost-integration-dhcp-opensuse-423:
voting: false
- bifrost-integration-dhcp-centos-7:
voting: false
- bifrost-integration-dibipa-debian-centos-7:
voting: false
- bifrost-integration-dibipa-debian:
voting: false
- bifrost-integration-dibipa-debian-opensuse-423:
voting: false
- bifrost-integration-tinyipa-centos-7:
voting: false
- bifrost-integration-tinyipa-fedora26:
voting: false
gate:
jobs:
- bifrost-integration-tinyipa
- bifrost-integration-tinyipa-opensuse-423
|
- project:
check:
jobs:
- bifrost-integration-tinyipa
- bifrost-integration-tinyipa-fedora26
- bifrost-integration-tinyipa-opensuse-423
# Non-voting jobs
- bifrost-integration-dhcp:
voting: false
- bifrost-integration-dhcp-opensuse-423:
voting: false
- bifrost-integration-dhcp-centos-7:
voting: false
- bifrost-integration-dibipa-debian-centos-7:
voting: false
- bifrost-integration-dibipa-debian:
voting: false
- bifrost-integration-dibipa-debian-opensuse-423:
voting: false
- bifrost-integration-tinyipa-centos-7:
voting: false
gate:
jobs:
- bifrost-integration-tinyipa
- bifrost-integration-tinyipa-fedora26
- bifrost-integration-tinyipa-opensuse-423
|
Make Fedora26 CI job voting
|
Make Fedora26 CI job voting
Change-Id: I4a37c7533628418f23582db225b8a679e7a04f8c
|
YAML
|
apache-2.0
|
openstack/bifrost,openstack/bifrost
|
aa0d60443521f4b3e396489bad34ab4ab7926937
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
working_directory: ~/pundle
docker:
- image: circleci/node:8
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
- yarn-packages-{{ .Branch }}
- yarn-packages-master
- yarn-packages-
- run:
name: Packager Version
command: yarn --version
- run:
name: Install Dependencies
command: yarn install
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
paths:
- node_modules/
test:
docker:
- image: circleci/node:8
steps:
- checkout
- run:
name: Test
command: yarn test
workflows:
version: 2
build_and_test:
jobs:
- build
- test:
requires:
- build
|
version: 2
jobs:
build:
working_directory: ~/pundle
docker:
- image: node:8-jessie
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
keys:
- yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
- yarn-packages-{{ .Branch }}
- yarn-packages-master
- yarn-packages-
- run:
name: Packager Version
command: yarn --version
- run:
name: Install Dependencies
command: yarn install
- save_cache:
name: Save Yarn Package Cache
key: yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
paths:
- node_modules/
test:
working_directory: ~/pundle
docker:
- image: node:8-jessie
steps:
- checkout
- restore_cache:
name: Restore Yarn Package Cache
key: yarn-packages-{{ .Branch }}-{{ checksum "yarn.lock" }}
- run:
name: Test
command: yarn test
workflows:
version: 2
build_and_test:
jobs:
- build
- test:
requires:
- build
|
Use node official docker images instead
|
:art: Use node official docker images instead
|
YAML
|
mit
|
steelbrain/pundle,steelbrain/pundle,steelbrain/pundle,motion/pundle
|
c7f34f10721c39d28025abdace4852f34ca45c2e
|
.circleci/config.yml
|
.circleci/config.yml
|
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.1@sha256:d6f063b0a12ec7059d866f0819e8453c90a05710e26266e91a1dd5d8d3678dbb
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
python setup.py dev_persistent_pip_sync
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
|
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.1@sha256:3f14ef64bad2cca6fc88c9e497ef8032bac44f8f8a8f213135592413ea699e15
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
python setup.py dev_persistent_pip_sync
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
|
Update circleci/python:3.7.1 Docker digest to 3f14ef6
|
Update circleci/python:3.7.1 Docker digest to 3f14ef6
|
YAML
|
bsd-3-clause
|
kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler
|
681cb1d628c6ec564e632085a6dd360cfd1b1d62
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2.1 # use CircleCI 2.0
jobs: # a collection of steps
build:
# Remove if parallelism is not desired
parallelism: 2
environment:
_JAVA_OPTIONS: "-Xmx3g"
GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dorg.gradle.workers.max=2"
docker:
- image: circleci/openjdk:11.0.3-jdk-stretch
steps:
- checkout
- restore_cache:
key: v1-gradle-wrapper-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}
- restore_cache:
key: v1-gradle-cache-{{ checksum "build.gradle" }}
- run:
name: Run Tests and SonarCloud
command: |
./gradlew test sonarqube
- save_cache:
paths:
- ~/.gradle/wrapper
key: v1-gradle-wrapper-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}
- save_cache:
paths:
- ~/.gradle/caches
key: v1-gradle-cache-{{ checksum "build.gradle" }}
- store_test_results:
# Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
path: build/test-results/test
- store_artifacts: # Upload test results for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
path: build/test-results/test
when: always
workflows:
version: 2
workflow:
jobs:
- build
context: SonarCloud
|
version: 2.1
workflows:
version: 2
workflow:
jobs:
- build
context:
- SonarCloud
jobs: # a collection of steps
build:
# Remove if parallelism is not desired
parallelism: 2
environment:
_JAVA_OPTIONS: "-Xmx3g"
GRADLE_OPTS: "-Dorg.gradle.daemon=false -Dorg.gradle.workers.max=2"
docker:
- image: circleci/openjdk:11.0.3-jdk-stretch
steps:
- checkout
- restore_cache:
key: v1-gradle-wrapper-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}
- restore_cache:
key: v1-gradle-cache-{{ checksum "build.gradle" }}
- run:
name: Run Tests and SonarCloud
command: |
./gradlew test sonarqube
- save_cache:
paths:
- ~/.gradle/wrapper
key: v1-gradle-wrapper-{{ checksum "gradle/wrapper/gradle-wrapper.properties" }}
- save_cache:
paths:
- ~/.gradle/caches
key: v1-gradle-cache-{{ checksum "build.gradle" }}
- store_test_results:
# Upload test results for display in Test Summary: https://circleci.com/docs/2.0/collect-test-data/
path: build/test-results/test
- store_artifacts: # Upload test results for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
path: build/test-results/test
when: always
|
Return of the retard CircleCIâworkflows:ix™ - Round 2
|
fix: Return of the retard CircleCIâworkflows:ix™ - Round 2
|
YAML
|
apache-2.0
|
Hexworks/zircon,Hexworks/zircon,Hexworks/zircon
|
d3235f9b5e4bc028ae3475c7b34af2e230050676
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2.1
orbs:
orb: invocations/[email protected]
workflows:
main:
jobs:
- orb/lint:
name: Lint
- orb/format:
name: Style check
- orb/coverage:
name: Test 3.6 (w/ coverage)
- orb/test-release:
name: Release test
- orb/test:
name: Test << matrix.version >>
# It's not worth testing on other interpreters if the baseline one
# failed. Can't run >4 jobs at a time anyhow!
requires: ["Test 3.6 (w/ coverage)"]
matrix:
parameters:
version: ["3.7", "3.8", "3.9"]
|
version: 2.1
orbs:
orb: invocations/[email protected]
workflows:
main:
jobs:
- orb/lint:
name: Lint
- orb/format:
name: Style check
# Main test run, w/ coverage, and latest-supported cryptography
- orb/coverage:
name: Test 3.6 (w/ coverage, latest crypto)
# Non-coverage runs w/ other crypto versions.
# (Phrased as 2-dimensional matrix but 3.6 only for now to save credits)
- orb/test:
name: Test << matrix.version >> w/ << matrix.pip-overrides >>
matrix:
parameters:
version: ["3.6"]
# TODO: I don't see a nicer way to do this that doesn't require
# making the orb know too much about its client code...
pip-overrides: ["cryptography==2.5", "cryptography==3.4"]
- orb/test-release:
name: Release test
- orb/test:
name: Test << matrix.version >>
# It's not worth testing on other interpreters if the baseline one
# failed. Can't run >4 jobs at a time anyhow!
requires: ["Test 3.6 (w/ coverage, latest crypto)"]
matrix:
parameters:
version: ["3.7", "3.8", "3.9"]
|
Add some older crypto versions to new 2nd py3.6 test step
|
Add some older crypto versions to new 2nd py3.6 test step
(no coverage for this one tho)
|
YAML
|
lgpl-2.1
|
paramiko/paramiko
|
a51b0761fc0c87a16fc45123b001f9cef6bf4b71
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
working_directory: ~/iypm
docker:
- image: minn/node-awscli:latest
steps:
- checkout
- restore_cache:
key: deps-{{ checksum "package.json" }}
- run: yarn install
- save_cache:
key: deps-{{ checksum "package.json" }}
paths:
- ~/.cache
- run: yarn build
- run: yarn test
- deploy:
name: Deploy release or release candidate
command: |
if git log -1 --pretty=%B | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+-rc\.[0-9]\+$";
then
echo "Deploying release candidate..."
$(yarn bin)/now -t ${ZEIT_TOKEN} switch ${ZEIT_TEAM}
$(yarn bin)/now -t ${ZEIT_TOKEN}
elif git log -1 --pretty=%B | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+$";
then
echo "Deploying release onto production..."
aws s3 sync build s3://${S3_BUCKET_PROD} --delete --acl public-read
aws configure set preview.cloudfront true
aws cloudfront create-invalidation --distribution-id ${CF_DIST_ID} --paths "/*"
else
echo "Skipping deploy..."
fi
|
version: 2
jobs:
build:
working_directory: ~/iypm
docker:
- image: minn/node-awscli:latest
steps:
- checkout
- restore_cache:
key: deps-{{ checksum "package.json" }}
- run: yarn install
- save_cache:
key: deps-{{ checksum "package.json" }}
paths:
- ~/.cache
- run: yarn build
- run: yarn test
- deploy:
name: Deploy release or release candidate
command: |
if git log -1 --pretty=%B | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+-rc\.[0-9]\+$";
then
echo "Deploying release candidate..."
$(yarn bin)/now -t ${ZEIT_TOKEN} switch ${ZEIT_TEAM}
$(yarn bin)/now -t ${ZEIT_TOKEN}
elif git log -1 --pretty=%B | grep "^[0-9]\+\.[0-9]\+\.[0-9]\+$";
then
echo "Deploying release onto production..."
aws s3 sync build s3://${S3_BUCKET_PROD} --delete --acl public-read
aws configure set preview.cloudfront true
aws cloudfront create-invalidation --distribution-id ${CF_DIST_ID} --paths "/*"
else
echo "Skipping deploy..."
fi
deployment:
fake_deploy_for_cci2:
tag: /.*/
commands:
- echo "make tags run in 2.0"
|
Add workaround to allow CircleCI to trigger on tag push
|
Add workaround to allow CircleCI to trigger on tag push
|
YAML
|
mpl-2.0
|
MinnSoe/ifyoupayme,MinnSoe/ifyoupayme,MinnSoe/ifyoupayme
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.