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 |
|---|---|---|---|---|---|---|---|---|---|
5210e5462bb681276e6798e1fd522364759c9bb7 | .travis.yml | .travis.yml | language: php
env:
global:
- SYMFONY_DEPRECATIONS_HELPER: max[self]=0
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 7.2
- php: 7.2
env: COMPOSER_FLAGS='--prefer-lowest'
- php: 7.3
php:
- 7.2
before_install:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/symfony=$SYMFONY_VERSION; fi
- if [ "$TWILIO_VERSION" != "" ]; then composer require --dev --no-update twilio/sdk=$TWILIO_VERSION; fi
install: composer update $COMPOSER_FLAGS --prefer-dist
script: phpunit
| language: php
env:
global:
- SYMFONY_DEPRECATIONS_HELPER: max[self]=0
sudo: false
cache:
directories:
- $HOME/.composer/cache/files
matrix:
fast_finish: true
include:
- php: 7.2
- php: 7.2
env: COMPOSER_FLAGS='--prefer-lowest'
- php: 7.3
- php: 7.4
php:
- 7.2
before_install:
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/symfony=$SYMFONY_VERSION; fi
- if [ "$TWILIO_VERSION" != "" ]; then composer require --dev --no-update twilio/sdk=$TWILIO_VERSION; fi
install: composer update $COMPOSER_FLAGS --prefer-dist
script: phpunit
| Test also on PHP 7.4 | Test also on PHP 7.4
| YAML | mit | fazland/Notifire,fazland/Notifire |
a9505543bae5e85f16104adcbd2665fe1a58e966 | .travis.yml | .travis.yml | language: go
before_install:
- pushd $HOME
- wget -q https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.6.zip
- unzip -q go_appengine_sdk_linux_amd64-1.9.6.zip
- cd go_appengine
- export GAE=$(pwd)
- popd
install:
- cd $TRAVIS_BUILD_DIR
- export GOPATH=$TRAVIS_BUILD_DIR
- export GOHOME=$GAE
- export PATH=$GAE:$PATH
- which go
- go env
script:
- go test -v ./...
| language: go
before_install:
- pushd $HOME
- wget -q https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.6.zip
- unzip -q go_appengine_sdk_linux_amd64-1.9.6.zip
- cd go_appengine
- ls -la
- export GAE=$(pwd)
- popd
install:
- cd $TRAVIS_BUILD_DIR
- ls -la
- echo $GAE
- export GOPATH=$TRAVIS_BUILD_DIR
- export GOHOME=$GAE
- export PATH=$GAE:$PATH
- which go
- go env
script:
- go test -v ./...
| Debug why Travis isn't building correctly | Debug why Travis isn't building correctly | YAML | apache-2.0 | frankbille/gingae |
90aa2c8999aae79cbefc05494982d1cef28a380d | .travis.yml | .travis.yml | #
# This file has been generated by the Ibuildings QA-Tools
#
# Any custom Travis-ci configuration be added here
# This file should be added to your project repository
#
language: php
php:
- 7.2
env:
global:
- SYMFONY_ENV=test
cache:
directories:
- ~/.composer
before_script:
- phpenv config-add .travis.php.ini
- composer self-update 1.10.16
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
- nvm install 10.22.0
- curl --compressed -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
- composer install --prefer-dist
script:
- composer test
branches:
only:
- master
- develop
| #
# This file has been generated by the Ibuildings QA-Tools
#
# Any custom Travis-ci configuration be added here
# This file should be added to your project repository
#
language: php
php:
- 7.2
env:
global:
- SYMFONY_ENV=test
cache:
directories:
- ~/.composer
before_script:
- phpenv config-add .travis.php.ini
- composer self-update --1
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
- nvm install 10.22.0
- curl --compressed -o- -L https://yarnpkg.com/install.sh | bash
- export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
- composer install --prefer-dist
script:
- composer test
branches:
only:
- master
- develop
| Use the latest Composer 1 on Travis | Use the latest Composer 1 on Travis
Instead of the version pin, the --1 flag can be used to fetch the latest
version 1 of Composer
| YAML | apache-2.0 | SURFnet/Stepup-SelfService,SURFnet/Stepup-SelfService,SURFnet/Stepup-SelfService |
b6fb95f85c6a3ebfbccf7c1f8580b9de9f93270e | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-amazonlinux
- INSTANCE=default-centos-7
- INSTANCE=default-debian-8
- INSTANCE=default-debian-9
- INSTANCE=default-fedora-25
- INSTANCE=default-opensuse-leap
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
| sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=default-amazonlinux
- INSTANCE=default-centos-7
- INSTANCE=default-debian-8
- INSTANCE=default-debian-9
- INSTANCE=default-fedora-latest
- INSTANCE=default-opensuse-leap
- INSTANCE=default-ubuntu-1404
- INSTANCE=default-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
| Update the fedora instance name in Travis | Update the fedora instance name in Travis
Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
| YAML | apache-2.0 | svanzoest-cookbooks/apache2,svanzoest-cookbooks/apache2,svanzoest-cookbooks/apache2 |
16dbef06d72789ffc4130111db8358e46f501180 | .travis.yml | .travis.yml | language: ruby
# Ignore lock file to facilitate matrix builds.
before_install: rm Gemfile.lock
# Explicitly ensure that we run on container-based infrastructure
sudo: false
rvm:
- 1.9.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
| language: ruby
# Explicitly ensure that we run on container-based infrastructure
sudo: false
| Test Ruby 2.1.5 with Travis | Test Ruby 2.1.5 with Travis
Ruby 2.1.5 is the version that we're using in the `.ruby-version`
file, so there's no point in testing anything else.
| YAML | mit | alphagov/govuk_offsitebackups-puppet,alphagov/govuk_offsitebackups-puppet |
ea68dec3f27f60c67db250d213de314eda008156 | .travis.yml | .travis.yml | sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=disable-ubuntu-1404
- INSTANCE=disable-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml /opt/chefdk/embedded/bin/kitchen verify ${INSTANCE}
matrix:
include:
- script:
- /opt/chefdk/bin/chef exec delivery local all
env: UNIT_AND_LINT=1
| sudo: required
dist: trusty
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
services: docker
env:
matrix:
- INSTANCE=disable-ubuntu-1404
- INSTANCE=disable-ubuntu-1604
before_script:
- sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER )
- eval "$(chef shell-init bash)"
- chef --version
- cookstyle --version
- foodcritic --version
script: KITCHEN_LOCAL_YAML=.kitchen.dokken.yml kitchen verify ${INSTANCE}
matrix:
include:
- script:
- chef exec delivery local all
env: UNIT_AND_LINT=1
| Simplify Travis config and fix ChefDK 2.0 failures | Simplify Travis config and fix ChefDK 2.0 failures
| YAML | apache-2.0 | opscode-cookbooks/apparmor,opscode-cookbooks/apparmor,chef-cookbooks/apparmor |
2d806f1d27c9f1af0ae877608fcd7ffd5c0de901 | .travis.yml | .travis.yml | language: rust
sudo: true
rust:
- nightly
- beta
- stable
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
after_success: |
travis-cargo --only beta doc && travis-cargo --only beta doc-upload &&
travis-cargo coveralls
env:
global:
secure: cqq4PpUsrmCNLbWrmkkuf/SaCKET0+QN5w0lXmuOndBES5C+m/aR417T3Pb+7PR4gqibf47eSXgaVCQa64eZAI5PjgXrdZ7FtPRu/mgcsgcgiVrSUz5C/KSMsmp876Gl67csjCZ6SZXJ3YC0/Jh3jiJLiRt9Giqzn/s1v15j/CY=
| language: rust
sudo: false
rust:
- nightly
- beta
- stable
before_script:
- pip install 'travis-cargo<0.2' --user && export PATH=$HOME/.local/bin:$PATH
after_success: |
travis-cargo --only beta doc && travis-cargo --only beta doc-upload &&
travis-cargo coveralls
env:
global:
secure: cqq4PpUsrmCNLbWrmkkuf/SaCKET0+QN5w0lXmuOndBES5C+m/aR417T3Pb+7PR4gqibf47eSXgaVCQa64eZAI5PjgXrdZ7FtPRu/mgcsgcgiVrSUz5C/KSMsmp876Gl67csjCZ6SZXJ3YC0/Jh3jiJLiRt9Giqzn/s1v15j/CY=
| Remove sudo requirement in Travis CI. | Remove sudo requirement in Travis CI.
| YAML | apache-2.0 | dirvine/rust-utp |
a3beae2ba490d3b7f8ffda25ffce6e3bb878626e | _config.yml | _config.yml | # Dependencies
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
highlighter: pygments
# Permalinks
permalink: pretty
# Setup
title: Diaconesq
tagline: 'Learn & let learn'
description: 'Learn & <em>let learn</em>'
url: http://blog.diaconesq.ro
baseurl: /
defaults:
-
scope:
path: ""
type: "posts"
values:
comments: true
author:
name: 'Cristian Diaconescu'
url: https://twitter.com/diaconescu
paginate: 5
# Custom vars
version: 2.1.0
github:
# repo: https://github.com/poole/hyde
| # Dependencies
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
highlighter: pygments
# Permalinks
permalink: pretty
# Setup
title: Diaconesq
tagline: 'Learn & let learn'
description: 'Learn & <em>let learn</em>'
url: http://blog.diaconesq.ro
baseurl: /
future: false
defaults:
-
scope:
path: ""
type: "posts"
values:
comments: true
author:
name: 'Cristian Diaconescu'
url: https://twitter.com/diaconescu
paginate: 5
# Custom vars
version: 2.1.0
github:
# repo: https://github.com/poole/hyde
| Test skipping posts into the future | Test skipping posts into the future
| YAML | mit | diaconesq/diaconesq.github.io |
e5973c328779f18a159832ff71467caeac4b6e8c | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
- "iojs"
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ] ; then npm install -g npm@2.7.3; fi'
install:
- 'if [ "${CXX}" = "g++" ]; then export CXX="g++-4.8"; fi'
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script:
- "npm run test-travis"
| sudo: false
language: node_js
node_js:
- "0.8"
- "0.10"
- "0.12"
- "iojs"
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ] ; then npm install -g npm@2.7.3; fi'
script:
- "npm run test-travis"
| Revert "fixup! use g++-4.8 with io.js v3.x" | Revert "fixup! use g++-4.8 with io.js v3.x"
This reverts commit dc19b6a30605e26f7bfe531cfc9809c9944809b7.
| YAML | mit | PeterCxy/node-hashring |
38fbceb1fed4f57660585d00527fb17444f07338 | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script: "npm test && sudo npm run test-root"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
notifications:
irc:
channels:
- "chat.freenode.net#pump.io"
on_success: change
on_failure: change
| language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
script: "npm test && sudo $(which npm) run test-root"
before_script:
- "./test/hosts.sh"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq graphicsmagick
notifications:
irc:
channels:
- "chat.freenode.net#pump.io"
on_success: change
on_failure: change
| Fix "sudo: npm: command not found" error | Fix "sudo: npm: command not found" error
| YAML | apache-2.0 | pump-io/pump.io,e14n/pump.io,e14n/pump.io,pump-io/pump.io,e14n/pump.io,pump-io/pump.io |
84636c09433c8e43269a5b8a0b9e8c543dca44f8 | .travis.yml | .travis.yml | language: ruby
dist: trusty
sudo: false
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
- jruby-1.7.26
- jruby-9.1.9.0
- jruby-head
- rbx-3.82
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
dist: trusty
sudo: false
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
- jruby-1.7.26
- jruby-9.1.12.0
- jruby-head
- rbx-3.84
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| Update to JRuby 9.1.12.0 and Rubinius 3.84. | Update to JRuby 9.1.12.0 and Rubinius 3.84.
| YAML | mit | tzinfo/tzinfo |
e4bd16775d44825c9f88888c35ae7564b689feb9 | recipes/super_state_machine/meta.yaml | recipes/super_state_machine/meta.yaml | package:
name: super_state_machine
version: !!str 1.0
source:
fn: super_state_machine-1.0.tar.gz
url: https://pypi.python.org/packages/source/s/super_state_machine/super_state_machine-1.0.tar.gz
md5: 762d1009993897f8cf427df3a579c5fa
patches:
- nuke_enum34.patch [py3k]
# List any patch files here
# - fix.patch
# build:
# preserve_egg_dir: True
# entry_points:
# Put any entry points (scripts to be generated automatically) here. The
# syntax is module:function. For example
#
# - super_state_machine = super_state_machine:main
#
# Would create an entry point called super_state_machine that calls super_state_machine.main()
# If this is a new build for the same version, increment the build
# number. If you do not include this key, it defaults to 0.
# number: 1
requirements:
build:
- python
- setuptools
- enum34 [py2k]
- six
run:
- python
- enum34 [py2k]
- six
test:
# Python imports
imports:
- super_state_machine
# commands:
# You can put test commands to be run here. Use this to test that the
# entry points work.
# You can also put a file called run_test.py in the recipe that will be run
# at test time.
# requires:
# Put any additional test requirements here. For example
# - nose
about:
home: https://github.com/beregond/super_state_machine
license: BSD License
summary: 'Super State Machine gives you utilities to build finite state machines.'
# See
# http://docs.continuum.io/conda/build.html for
# more information about meta.yaml
| package:
name: super_state_machine
version: 1.0
source:
git_url: https://github.com/beregond/super_state_machine
git_rev: 1.0
patches:
- nuke_enum34.patch [py3k]
build:
number: 0
requirements:
build:
- python
- setuptools
- enum34 [py2k]
- six
run:
- python
- enum34 [py2k]
- six
test:
imports:
- super_state_machine
about:
home: https://github.com/beregond/super_state_machine
license: BSD License
summary: 'Super State Machine gives you utilities to build finite state machines.'
| Remove pypi from super state machine. Download from github | Remove pypi from super state machine. Download from github
| YAML | bsd-3-clause | NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/lightsource2-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/auto-build-tagged-recipes,NSLS-II/lightsource2-recipes |
9cbf534691d20b69505e4e4f32c530a20ee47271 | .travis.yml | .travis.yml | env:
matrix:
- RAKE_TASK=spec
global:
secure: cOCoUB1zTvnl274EftNxbbmkL8MIlXa9a2/NLXpJFfJaL39JLYLCvrj85ndLO75fl8W5j7Xnx1w3kyNCL0FUumWzrIfcJFwTADv20EggrmrrJaEJDdqi3+oxFA8/AHQK7GUXws2AEhbs1ujXO7wA44qeQmO1daWdbXmN5t2qoxc=
language: ruby
matrix:
include:
- rvm: 2.1
env: RAKE_TASK=yard
rvm:
- 1.9.3
- '2.0'
- '2.1'
- ruby-head
- jruby-19mode
- rbx
script: bundle exec rake $RAKE_TASK
| env:
matrix:
- RAKE_TASK=spec
global:
secure: cOCoUB1zTvnl274EftNxbbmkL8MIlXa9a2/NLXpJFfJaL39JLYLCvrj85ndLO75fl8W5j7Xnx1w3kyNCL0FUumWzrIfcJFwTADv20EggrmrrJaEJDdqi3+oxFA8/AHQK7GUXws2AEhbs1ujXO7wA44qeQmO1daWdbXmN5t2qoxc=
language: ruby
matrix:
include:
- rvm: 2.1
env: RAKE_TASK=yard
rvm:
- 1.9.3
- '2.0'
- '2.1'
- '2.2'
- ruby-head
- jruby-19mode
- rbx
script: bundle exec rake $RAKE_TASK
| Add ruby 2.2 as a build target | Add ruby 2.2 as a build target
MSP-11141
Ruby 2.2 was released, so ruby-head is now 2.3-dev.
| YAML | bsd-3-clause | rapid7/metasploit-cache,rapid7/metasploit-cache,rapid7/metasploit-cache,rapid7/metasploit-cache |
1ab4837c9a9bbc151199fc00c98e1be2017fe304 | .travis.yml | .travis.yml | language: rust
sudo: false
matrix:
include:
- rust: 1.29.0
- rust: stable
- rust: beta
- rust: nightly
- rust: nightly
env:
- FEATURES='nightly'
branches:
only:
- staging
- trying
- master
script:
- cargo build --verbose --features "$FEATURES"
- cargo test --verbose --features "$FEATURES"
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo bench --verbose --features "$FEATURES"; fi
- cargo doc --verbose --features "$FEATURES"
| language: rust
sudo: false
matrix:
include:
- rust: 1.29.0
- rust: stable
- rust: beta
- rust: nightly
- rust: nightly
env:
- FEATURES='nightly'
branches:
# Don't build these branches
except:
# Used by bors
- trying.tmp
- staging.tmp
script:
- cargo build --verbose --features "$FEATURES"
- cargo test --verbose --features "$FEATURES"
- if [ "$TRAVIS_RUST_VERSION" == "nightly" ]; then cargo bench --verbose --features "$FEATURES"; fi
- cargo doc --verbose --features "$FEATURES"
| Allow more branches to be built on CI | Allow more branches to be built on CI
Adapted from https://github.com/rust-lang-nursery/rust-clippy/pull/3359.
| YAML | apache-2.0 | rust-lang/hashbrown,rust-lang/hashbrown |
1092cd7322a761ef94816a3f3fa4866b3d7b21e7 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
rvm:
- "2.0.0"
- "2.1"
- "2.2"
- jruby-19mode
- rbx-19mode
env:
matrix:
- EMBER_SOURCE_VERSION="~> 1.0.0" # Uses handlebars-source 1.0.12
- EMBER_SOURCE_VERSION="~> 1.8.0" # Uses handlebars-source 1.3.0
- EMBER_SOURCE_VERSION="~> 1.9.0" # Uses handlebars-source 2.0.0
- EMBER_SOURCE_VERSION="~> 1.10.0" # Uses HTMLBars
- EMBER_SOURCE_VERSION="~> 1.13.0" # The latest Ember.js 1.x
- EMBER_SOURCE_VERSION="~> 2.2.0" # The latest Ember.js 2.x
- EMBER_SOURCE_VERSION="~> 2.0"
HANDLEBARS_SOURCE_VERSION="~> 3.0.0" # Uses handlebars-source 3.0.x
| language: ruby
sudo: false
cache: bundler
rvm:
- "2.0.0"
- "2.1"
- "2.2"
- "2.3.0"
- jruby-19mode
- rbx-19mode
env:
matrix:
- EMBER_SOURCE_VERSION="~> 1.0.0" # Uses handlebars-source 1.0.12
- EMBER_SOURCE_VERSION="~> 1.8.0" # Uses handlebars-source 1.3.0
- EMBER_SOURCE_VERSION="~> 1.9.0" # Uses handlebars-source 2.0.0
- EMBER_SOURCE_VERSION="~> 1.10.0" # Uses HTMLBars
- EMBER_SOURCE_VERSION="~> 1.13.0" # The latest Ember.js 1.x
- EMBER_SOURCE_VERSION="~> 2.2.0" # The latest Ember.js 2.x
- EMBER_SOURCE_VERSION="~> 2.0"
HANDLEBARS_SOURCE_VERSION="~> 3.0.0" # Uses handlebars-source 3.0.x
| Test against Ruby 2.3.0 on Travis CI | Test against Ruby 2.3.0 on Travis CI
| YAML | mit | tchak/barber,tchak/barber |
d8cdde0c653cc5aca920630147509cc6b1ab4c15 | .travis.yml | .travis.yml | # Travis CI config
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/migrating-from-legacy/
filter_secrets: false
language: node_js
node_js:
- 10
- 8
- 6
os:
- linux
- osx
- windows
before_script:
- npm run lint
script:
- npm run coverage
after_success:
# send code-coverage data to Coveralls
- cat ./coverage/lcov.info | coveralls
jobs:
include:
- stage: Deploy
name: Publish to npm
script: true
after_success: true
deploy:
provider: npm
email: $NPM_EMAIL
api_key: $NPM_API_KEY
skip_cleanup: true
on:
tags: true
branch: master
| # Travis CI config
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/migrating-from-legacy/
filter_secrets: false
language: node_js
node_js:
- 8
- 10
- 12
os:
- linux
- osx
- windows
before_script:
- npm run lint
script:
- npm run coverage
after_success:
# send code-coverage data to Coveralls
- cat ./coverage/lcov.info | coveralls
jobs:
include:
- stage: Deploy
name: Publish to npm
script: true
after_success: true
deploy:
provider: npm
email: $NPM_EMAIL
api_key: $NPM_API_KEY
skip_cleanup: true
on:
tags: true
branch: master
| Drop Node 6. Add Node 12 | Drop Node 6. Add Node 12
| YAML | mit | BigstickCarpet/globify |
97fcd6accdf76907c646203142515809cb11223e | _config.yml | _config.yml | url: https://appnearme.github.io/micronfcboard
baseurl: /micronfcboard
# Site settings
title: MicroNFCBoard - NFC made easy
company: AppNearMe Ltd
email: contact@appnearme.com
description: "MicroNFCBoard - NFC made easy; read and write tags, transfer data with NFC phones"
# Color settings (hex-codes without the leading hash-tag)
color:
primary: fed136
secondary: fec503
secondary-dark: 333
# Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.)
social:
- title: twitter
url: http://twitter.com/AppNearMe
- title: github
url: http://github.com/AppNearMe
# Distributors
distributors:
- name: SeeedStudio
image: seeedstudio.png
link: http://www.seeedstudio.com/depot/MicroNFCBoard-p-2431.html
# Postal address (add as many lines as necessary)
address:
- line: ideaSpace
- line: 3 Charles Babbage Rd
- line: Cambridge
- line: UK
# Build settings
markdown: kramdown
permalink: pretty | url: http://www.micronfcboard.com
baseurl: /
# Site settings
title: MicroNFCBoard - NFC made easy
company: AppNearMe Ltd
email: contact@appnearme.com
description: "MicroNFCBoard - NFC made easy; read and write tags, transfer data with NFC phones"
# Color settings (hex-codes without the leading hash-tag)
color:
primary: fed136
secondary: fec503
secondary-dark: 333
# Social networks usernames (many more available: google-plus, flickr, dribbble, pinterest, instagram, tumblr, linkedin, etc.)
social:
- title: twitter
url: http://twitter.com/AppNearMe
- title: github
url: http://github.com/AppNearMe
# Distributors
distributors:
- name: SeeedStudio
image: seeedstudio.png
link: http://www.seeedstudio.com/depot/MicroNFCBoard-p-2431.html
# Postal address (add as many lines as necessary)
address:
- line: ideaSpace
- line: 3 Charles Babbage Rd
- line: Cambridge
- line: UK
# Build settings
markdown: kramdown
permalink: pretty
| Update config for domain name | Update config for domain name
| YAML | apache-2.0 | AppNearMe/micronfcboard,AppNearMe/micronfcboard,AppNearMe/micronfcboard,AppNearMe/micronfcboard |
cff335bc005f8b77eab03212a76f3e8a4494db79 | .travis.yml | .travis.yml | os:
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode8.2
before_install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
gem install xcpretty -N --no-ri --no-rdoc;
fi
script:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
swift -version;
xcodebuild -version;
xcodebuild -showsdks;
sleep 5;
set -o pipefail;
xcodebuild -project HelloWorld.xcodeproj -scheme HelloWorld -destination "platform=iOS Simulator,OS=10.2,name=iPad Air" -configuration Debug ONLY_ACTIVE_ARCH=NO clean build | xcpretty;
xcodebuild -project HelloWorld.xcodeproj -scheme Framework -destination "platform=iOS Simulator,OS=10.2,name=iPad Air" -configuration Release ONLY_ACTIVE_ARCH=NO clean build | xcpretty;
fi
| os:
- osx
language: generic
sudo: required
dist: trusty
osx_image: xcode8.2
before_install:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
gem install xcpretty -N --no-ri --no-rdoc;
fi
script:
- if [ "$TRAVIS_OS_NAME" == "osx" ]; then
swift -version;
xcodebuild -version;
xcodebuild -showsdks;
set -o pipefail;
xcodebuild -project HelloWorld.xcodeproj -scheme HelloWorld -destination "platform=iOS Simulator,OS=10.2,name=iPad Air" -configuration Debug ONLY_ACTIVE_ARCH=NO clean build | xcpretty;
xcodebuild -project HelloWorld.xcodeproj -scheme Framework -destination "platform=iOS Simulator,OS=10.2,name=iPad Air" -configuration Release ONLY_ACTIVE_ARCH=NO clean build | xcpretty;
xcodebuild -project HelloWorld.xcodeproj -scheme Demo -destination "platform=iOS Simulator,OS=10.2,name=iPad Air" -configuration Release ONLY_ACTIVE_ARCH=NO clean build | xcpretty;
fi
| Build demo app in release mode | Build demo app in release mode
| YAML | apache-2.0 | graemer957/helloworld-swift-framework,graemer957/helloworld-swift-framework |
5cf0fd88446bc960380f09e92670cab97cb474dc | .travis.yml | .travis.yml | language: node_js
node_js:
- 4.0
- 4.1
- 4.2
- 4.3
- 4.4
- 4.5
- 4.6
- 5.0
- 5.1
- 5.2
- 5.3
- 5.4
- 5.5
- 5.6
- 5.7
- 5.8
- 5.9
- 5.10
- 5.11
- 5.12
- 6.0
- 6.1
- 6.2
- 6.3
- 6.4
- 6.5
- 6.6
- 6.7
| language: node_js
node_js:
- 4
- 5
- 6
| Test againt major versions only | Test againt major versions only
| YAML | mit | xavierdutreilh/express-remarkable,xavierdutreilh/express-remarkable |
b731f0eca2e0fd6bc12e56269d5ecaeaeea46dc0 | _config.yml | _config.yml | # Site settings
title: i am trask
subtitle: interesting
email: liamtrask@gmail.com
description: "Write your site description here. It will be used as your sites meta description as well!"
baseurl: "http://iamtrask.github.io"
url: "http://iamtrask.github.io"
twitter_username: iamtrask
github_username: iamtrask
# Build settings
markdown: kramdown
highlighter: pygments
permalink: pretty
paginate: 5
exclude: ["node_modules"]
analytics :
provider : google
google:
tracking_id : 'UA-36138203-3'
getclicky :
site_id
| # Site settings
title: i am trask
subtitle: interesting
email: liamtrask@gmail.com
description: "Write your site description here. It will be used as your sites meta description as well!"
baseurl: "https://iamtrask.github.io"
url: "https://iamtrask.github.io"
twitter_username: iamtrask
github_username: iamtrask
# Build settings
markdown: kramdown
highlighter: pygments
permalink: pretty
paginate: 5
exclude: ["node_modules"]
analytics :
provider : google
google:
tracking_id : 'UA-36138203-3'
getclicky :
site_id
| Replace HTTP with HTTPS because HTTP breaks HTTPS. | Replace HTTP with HTTPS because HTTP breaks HTTPS.
| YAML | apache-2.0 | iamtrask/iamtrask.github.io,iamtrask/iamtrask.github.io,iamtrask/iamtrask.github.io |
f87daafe256852d6b317e301f7f5f5196c13e9c5 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk11
- oraclejdk8
after_success:
- chmod -R 777 ./travis/after_success.sh
- ./travis/after_success.sh
env:
global:
- secure: "jWLfOryabB89R5v7nD3V/8ke6+B26UW8E5wjwKj7dDhjfmGUg+KbOShqWrq4\nEAnyE4GltwDLxKErZ5aAPWcT47C3GJYocKtmTcec2sblqMdVVUd3udylrM1d\n66Yb0XZoqri9JJ9pb8ObDp5XRV+ZQ5xP0w1gboNY6SynJg/1FKk="
- secure: "UV14rAITDqou5jObPInlIS3IYdf45LihGal9/+C4TLyhXLaVktbT/arFAAIF\ndpv9OM+YgeA7ZeRZLJ8vbgipO+rxizPNL1DqK1rp9s5B2F2y9+ir47nTwayL\n0RN7TgdswjzZZKOukWF2CVK1hjk+n8iFkCrorU22trmXlHc0aoE="
| language: java
jdk:
- oraclejdk11
- oraclejdk8
after_success:
- chmod -R 777 ./travis/after_success.sh
- ./travis/after_success.sh
env:
global:
- secure: OdSIcNSjG1/GVBSejmM5Y4AQTIw0+b7lYWO4dmRBCqyvNiJDTRn+LZHPrWQpJZ0bqu0R6kGpsa0xkK91V55apS2e41reo9wXJGBjVySaAVgy8tqZfWvlN89UeXTknrji07zpJFV/lFrNHpQkkmOIHt9FCn4UB/YRxigPSayl8B8=
- secure: Nuj4/iyROkt13DUgmBt55RZ7bLn9yBDSTm+TagWV5JuTFXse3fPhiqNtKftelA0pwxfD9M1zdjRb8rpeanlKFQkrf2l3fOhk12Hs6SZrKAROi4XJrKZs78ouUIS45dOSHo/FXoE3H3xZ8UNp3BAL+3Wwq3R9XwuJ81Jhxq5Pb/0=
| Update Sonatype username and password | Update Sonatype username and password
| YAML | apache-2.0 | mybatis/freemarker-scripting,hazendaz/freemarker-scripting |
a19de1546d75cd279edc7504b99354c95ef713d4 | .travis.yml | .travis.yml | sudo: false
language: ruby
cache: bundler
rvm:
- 2.1.10
- 2.2.9
- 2.3.6
- 2.5.0
- ruby-head
before_install:
- gem update --system
- gem install bundler --no-document
matrix:
include:
# Run Danger only once, on 2.4.3
- rvm: 2.4.3
before_script: bundle exec danger
| sudo: false
language: ruby
cache: bundler
rvm:
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
- ruby-head
before_install:
- gem update --system
- gem install bundler --no-document
matrix:
include:
# Run Danger only once, on 2.4.3
- rvm: 2.4.3
script: bundle exec danger
| Improve readability of Travis config | Improve readability of Travis config
| YAML | mit | mattbrictson/chandler,mattbrictson/chandler |
e137b3c95d53047ca74efec311a2ecfbc7f254da | _config.yml | _config.yml | # ---------------- #
# Main Configs #
# ---------------- #
baseurl: http://www.mazhuang.org
url: http://www.mazhuang.org
date_format: "ordinal"
title: 靠谱-ing
author: Zhuang Ma
paginate: 9
# ---------------- #
# RSS / Email #
# ---------------- #
subscribe_rss: /atom.xml
email:
# ---------------- #
# Jekyll #
# ---------------- #
#markdown: redcarpet
#redcarpet:
# extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
markdown: kramdown
kramdown:
input: GFM
pygments: true
permalink: /:year/:month/:day/:title
# ---------------- #
# Comments #
# ---------------- #
duoshuo_short_name: mazhuang
| # ---------------- #
# Main Configs #
# ---------------- #
baseurl: http://www.mazhuang.org
url: http://www.mazhuang.org
date_format: "ordinal"
title: 靠谱-ing
author: Zhuang Ma
paginate: 9
# ---------------- #
# RSS / Email #
# ---------------- #
subscribe_rss: /atom.xml
email:
# ---------------- #
# Jekyll #
# ---------------- #
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
pygments: true
permalink: /:year/:month/:day/:title
# ---------------- #
# Comments #
# ---------------- #
duoshuo_short_name: mazhuang
| Revert "switch to kramdown markdown engine" | Revert "switch to kramdown markdown engine"
This reverts commit cdc5c334ef46dcb20379d5cbf3e968c6741f279a.
modified: _config.yml
| YAML | mit | songtaohome/songtaohome.github.io,JepsonWong/JepsonWong.github.io,zxning/zxning.github.io,tiencubi/tiencubi.github.io,mzlogin/mzlogin.github.io,afterafuture/afterafuture.github.io,mzlogin/mzlogin.github.io,Duansir/Duansir.github.io,stantsang/stantsang.github.io,jiayue0107/Log,scans/scans.github.io,esonger/esonger.github.io,breakEval13/breakEval13.github.io,esonger/esonger.github.io,liuxiong21/liuxiong21.github.io,lyxiang/lyxiang.github.io,songtaohome/songtaohome.github.io,lvsazf/lvsazf.github.io,poluoluo/poluoluo.github.io,breakEval13/breakEval13.github.io,jiayue0107/Log,tiencubi/tiencubi.github.io,Lzpgithub/Lzpgithub.github.io,liuxiong21/liuxiong21.github.io,lyxiang/lyxiang.github.io,scans/scans.github.io,CloudNil/cloudnil.github.io,zxning/zxning.github.io,jpyean/jpyean.github.io,poluoluo/poluoluo.github.io,Lzpgithub/Lzpgithub.github.io,lukexwang/lukexwang.github.io,jpyean/jpyean.github.io,jiayue0107/Log,breakEval13/breakEval13.github.io,zxning/zxning.github.io,ktcer/ktcer.github.io,aaronshang/aaronshang.github.io,ktcer/ktcer.github.io,tiencubi/tiencubi.github.io,afterafuture/afterafuture.github.io,scans/scans.github.io,huanghu996/boke,lyxiang/lyxiang.github.io,sunailian/sunailian.github.io,huanghu996/boke,zmatsh/zmatsh.github.io,zmatsh/zmatsh.github.io,jpyean/jpyean.github.io,ktcer/ktcer.github.io,songtaohome/songtaohome.github.io,Duansir/Duansir.github.io,mzlogin/mzlogin.github.io,zmatsh/zmatsh.github.io,huanghu996/boke,aaronshang/aaronshang.github.io,stantsang/stantsang.github.io,CloudNil/cloudnil.github.io,AllenChyou/AllenChyou.github.io,lvsazf/lvsazf.github.io,poluoluo/poluoluo.github.io,JepsonWong/JepsonWong.github.io,JepsonWong/JepsonWong.github.io,AllenChyou/AllenChyou.github.io,sunailian/sunailian.github.io,breakEval13/breakEval13.github.io,afterafuture/afterafuture.github.io,aaronshang/aaronshang.github.io,liuxiong21/liuxiong21.github.io,CloudNil/cloudnil.github.io,Lzpgithub/Lzpgithub.github.io,zmatsh/zmatsh.github.io,Duansir/Duansir.github.io,lvsazf/lvsazf.github.io,stantsang/stantsang.github.io,esonger/esonger.github.io,CloudNil/cloudnil.github.io |
b9c3725cec44bf1e721ac0bb29907fbe37ad955d | .travis.yml | .travis.yml | sudo: required
language: scala
services:
- docker
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt
before_install:
- docker run -d -p 9200:9200 -p 9300:9300 -e "path.repo=/tmp" -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch-oss:6.1.2
before_cache:
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
before_script:
- sudo chmod +x /usr/local/bin/sbt
scala:
- 2.11.12
- 2.12.4
script:
- sbt clean test
jdk:
- oraclejdk8
| sudo: required
language: scala
services:
- docker
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt
before_install:
- docker run -d -p 9200:9200 -p 9300:9300 -e "path.repo=/tmp" -e "discovery.type=single-node" docker.elastic.co/elasticsearch/elasticsearch-oss:6.1.2
before_cache:
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
before_script:
- sudo chmod +x /usr/local/bin/sbt
scala:
- 2.11.12
- 2.12.4
script:
- sbt clean scalafmtCheck scalafmtSbtCheck test
jdk:
- oraclejdk8
| Check formatting compliance in PRs | Check formatting compliance in PRs
| YAML | apache-2.0 | sksamuel/elastic4s,stringbean/elastic4s,Tecsisa/elastic4s,sksamuel/elastic4s |
2856f0a13cf286e82d34df4cdf748891814aa314 | .travis.yml | .travis.yml | language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "1.2"
after_success: npm run coveralls
| language: node_js
sudo: false
node_js:
- "0.10"
- "0.12"
- "iojs"
after_success: npm run coveralls
| Test io.js instead of a specific version | Test io.js instead of a specific version
| YAML | mit | jstransformers/jstransformer-ejs,jstransformers/jstransformer-ejs |
c7182e22ff18e016d6e5c106cd2ac77c1a5ab046 | .travis.yml | .travis.yml | language: python
python:
- "2.5"
- "2.7"
# command to install dependencies
install:
- "pip install -r requirements.txt --use-mirrors"
- "wget http://googleappengine.googlecode.com/files/google_appengine_1.7.5.zip"
- "unzip google_appengine_1.7.5.zip"
# command to run tests
script:
- "APPENGINE_SDK=google_appengine python tests/runner.py tests"
| language: python
python:
- "2.5"
- "2.7"
# command to install dependencies
install:
- "pip install -r requirements.txt --use-mirrors"
- "wget -q http://googleappengine.googlecode.com/files/google_appengine_1.7.5.zip"
- "unzip -q google_appengine_1.7.5.zip"
# command to run tests
script:
- "APPENGINE_SDK=google_appengine python tests/runner.py tests"
| Remove unneeded info from the logs | Remove unneeded info from the logs
| YAML | mit | aminekarmouche/stashboard,mndaily/status.mndaily.com,aminekarmouche/stashboard,skynet/stashboard,twilio/stashboard,Mfellner77/stashboard,DataDog/stashboard,iSCInc/status,twilio/stashboard,DataDog/stashboard,unixboy/stashboard,skynet/stashboard,Mfellner77/stashboard,unixboy/stashboard,mndaily/status.mndaily.com,twilio/stashboard,DataDog/stashboard,tucksaun/status.tucksaun.net,tucksaun/status.tucksaun.net,pkdevbox/stashboard,Mfellner77/stashboard,iSCInc/status,mndaily/status.mndaily.com,mndaily/status.mndaily.com,tucksaun/status.tucksaun.net,DataDog/stashboard,shanma01/stashboard,skynet/stashboard,shanma01/stashboard,DataDog/stashboard,pkdevbox/stashboard,iSCInc/status,pkdevbox/stashboard,unixboy/stashboard,twilio/stashboard,twilio/stashboard,aminekarmouche/stashboard,shanma01/stashboard,mndaily/status.mndaily.com |
18dbda453466937be15d039677fa61e77071e7a5 | .travis.yml | .travis.yml | ---
language: ruby
cache: bundler
script: "bundle exec rake ci"
rvm:
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.8
- 2.6.6
- 2.7.1
- ruby-head
- jruby-9000
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
fast_finish: true
notifications:
email: false
| ---
language: ruby
before_install: "gem install bundler -v '< 2.0'"
script: "bundle exec rake ci"
rvm:
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
- 2.6
- 2.7
- ruby-head
- jruby-9.2.11.1
- jruby-head
- truffleruby
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.2.11.1
- rvm: truffleruby
fast_finish: true
notifications:
email: false
| Change to use latest Rubies and add TruffleRuby to the mix | Change to use latest Rubies and add TruffleRuby to the mix
| YAML | mit | piotrmurach/github,peter-murach/github |
47dd0f4fcc860a83640fcdc4bd1cb979bb92b324 | roles/simple/coreutils/tasks/main.yml | roles/simple/coreutils/tasks/main.yml | - name: install coreutils
homebrew:
name: coreutils
state: present
when: ansible_distribution == "macosx"
- name: install coreutils
become: yes
apt:
name: coreutils
state: present
when: ansible_os_family == "Debian"
- name: install coreutils
become: yes
pkgng:
name: coreutils
state: present
when: ansible_distribution == "FreeBSD"
| - name: install coreutils
homebrew:
name: coreutils
state: present
when: ansible_distribution == "MacOSX"
- name: install coreutils
become: yes
apt:
name: coreutils
state: present
when: ansible_os_family == "Debian"
- name: install coreutils
become: yes
pkgng:
name: coreutils
state: present
when: ansible_distribution == "FreeBSD"
| Set correct ansible_distribution value in coreutils role | Set correct ansible_distribution value in coreutils role
| YAML | mit | cmrosenberg/setup |
7309a342e2dd572a1a433408227d70ce42b685f2 | _config.yml | _config.yml | # Site settings
title: LogKit
# email:
description: >
An efficient logging library for OS X, iOS, and watchOS – written in Swift. Log to console, file, HTTP service,
or your own endpoint. Simple to get started, but smartly customizable.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://www.logkit.info" # the base hostname & protocol for your site
permalink: pretty
# twitter_username:
github_username: logkit
# Build settings
markdown: kramdown
# Custom
github_org_name: The LogKit Project
github_project_name: logkit
# Collections
collections:
docs:
output: true
permalink: /docs/:path/
releases:
output: false
| # Site settings
title: LogKit
# email:
description: >
An efficient logging library for OS X, iOS, watchOS, and tvOS – written in Swift. Log to console, file, HTTP service,
or your own endpoint. Simple to get started, but smartly customizable.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://www.logkit.info" # the base hostname & protocol for your site
permalink: pretty
# twitter_username:
github_username: logkit
# Build settings
markdown: kramdown
# Custom
github_org_name: The LogKit Project
github_project_name: logkit
# Collections
collections:
docs:
output: true
permalink: /docs/:path/
releases:
output: false
| Add tvOS to footer description | Add tvOS to footer description
| YAML | isc | logkit/logkit.github.io |
c8897e99668d7999ba60e0d3165950305488e39d | .travis.yml | .travis.yml | language: elixir
elixir:
- 1.3.3
otp_release:
- 18.2
script:
- MIX_ENV=test mix test --trace --cover
services:
- redis-server
sudo: false
| language: elixir
elixir:
- 1.6.6
- 1.7.3
otp_release:
- 21.0
script:
- MIX_ENV=test mix test --trace --cover
services:
- redis-server
sudo: false
| Update elixir & erlang tested versions | Update elixir & erlang tested versions
| YAML | mit | edgurgel/verk_web,edgurgel/verk_web |
5ee0654fb2e82a6208729f01fefcce03c9fd6488 | .travis.yml | .travis.yml | language: ruby
rvm:
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- "2.7"
script: bundle exec rspec
| language: ruby
rvm:
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- "2.7"
- "3.0"
script: bundle exec rspec
| Add Ruby 3.0 to Travis | Add Ruby 3.0 to Travis
| YAML | mit | taxjar/taxjar-ruby |
124e265bbc3989871b75dd13bbaa9f7b063d9673 | .travis.yml | .travis.yml | language: haskell
ghc:
- 7.8
- 7.6
- 7.4
| language: haskell
ghc:
- "7.10"
- "7.8"
- "7.6"
- "7.4"
| Add ghc-7.10 to build matrix. | Add ghc-7.10 to build matrix.
Fix build matrix see http://stackoverflow.com/questions/29516932
| YAML | bsd-3-clause | hackern/network-transport,haskell-distributed/network-transport |
d349f13662624e5bcaf20769215291685b70cd30 | .travis.yml | .travis.yml | language: node_js
dist: trusty
sudo: false
node_js:
- "6"
git:
submodules: false
install:
- yarn global add gitbook-cli
- npm install gitbook@3.2.2
- mkdir -p ~/.gitbook/versions
- cp node_modules/gitbook ~/.gitbook/versions/3.2.2
- cd ~/.gitbook/versions/3.2.2 && npm i
- cd $TRAVIS_BUILD_DIR
script:
- gitbook build ./docs ./docs-build
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: docs-build
fqdn: doc.iot.noahgao.net
on:
branch: master
| language: node_js
dist: trusty
sudo: false
node_js:
- "6"
git:
submodules: false
install:
- yarn global add gitbook-cli
- npm install gitbook@3.2.2
- mkdir -p ~/.gitbook/versions
- cp -r node_modules/gitbook ~/.gitbook/versions/3.2.2
- cd ~/.gitbook/versions/3.2.2 && npm i
- cd $TRAVIS_BUILD_DIR
script:
- gitbook build ./docs ./docs-build
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
local_dir: docs-build
fqdn: doc.iot.noahgao.net
on:
branch: master
| Check Travis CI support for Documentation Deployment | Check Travis CI support for Documentation Deployment
| YAML | mit | noahziheng/freeiot |
2172bfa46d237d9b99035661145dce96dcc6d7ad | .travis.yml | .travis.yml | language: php
php:
- 7.1
before_install:
- cp phpunit.xml.sample phpunit.xml
- composer install
script:
- ./vendor/bin/phpunit
| language: php
php:
- 5.5
- 7.0
before_install:
- cp phpunit.xml.sample phpunit.xml
- composer install
script:
- ./vendor/bin/phpunit
| Add PHP v5.5 to Travis | Add PHP v5.5 to Travis
| YAML | mit | HelloFax/hellosign-php-sdk |
99a39b91ceff5a6684d9a84d7bf488168f4e2f8d | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
cache:
directories:
- node_modules
matrix:
fast_finish: true
allow_failures:
- node_js: "0.12"
- node_js: "iojs"
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "3"
- "4"
cache:
directories:
- node_modules
matrix:
fast_finish: true
allow_failures:
- node_js: "3"
| Add recent Node.js to Travis CI. Future has already been here for some days... | Add recent Node.js to Travis CI. Future has already been here for some days...
| YAML | mit | paazmaya/grunt-trimtrailingspaces |
6c669cdedb046513008d233837cd397b284675b6 | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- composer require jakub-onderka/php-console-highlighter 0.3
script:
- ./vendor/bin/tester tests
- ./parallel-lint --exclude vendor --exclude tests --no-colors .
- ./parallel-lint --exclude vendor --exclude tests . | language: php
php:
- 5.3.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- composer require jakub-onderka/php-console-highlighter 0.3
script:
- ./vendor/bin/tester tests
- ./parallel-lint --exclude vendor --exclude tests/examples --no-colors .
- ./parallel-lint --exclude vendor --exclude tests/examples . | Exclude only tests/examples directory in Travis | Exclude only tests/examples directory in Travis
| YAML | bsd-2-clause | JeroenDeDauw/PHP-Parallel-Lint |
83b24af0c62232948d9e590cb2c70bb515b56a55 | .travis.yml | .travis.yml | language: node_js
node_js:
- "8"
- "7"
- "6"
install:
- yarn
script:
- yarn run ci
| language: node_js
node_js:
- 6
- 7
- 8
- 9
- stable
install:
- yarn
script:
- yarn run ci
| Add stable and 9 release of Node.js to CI config. | Add stable and 9 release of Node.js to CI config.
| YAML | mit | octet-stream/parasprite |
b3c98c2d62f1b76e436e0e6e79152b7f2413dc91 | _config.yml | _config.yml | name: imageutil
project:
version: 1.0.0
download_url: https://github.com/byjg/imageutil/releases
license:
software: MIT
software_url: https://opensource.org/licenses/MIT
docs: MIT
docs_url: https://opensource.org/licenses/MIT
git_edit_address: https://github.com/byjg/imageutil/blob/master/
links:
header:
- title: GitHub
url: https://github.com/byjg/imageutil
- title: ByJG
url: https://opensource.byjg.com/
footer:
- title: GitHub
url: https://github.com/byjg/imageutil
- title: Issues
url: https://github.com/byjg/imageutil/issues
ui:
header:
color1: "#080331"
color2: "#0033cc"
trianglify: true
social:
github:
user: byjg
repo: imageutil
twitter:
enabled: false
via:
hash: opensourcebyjg
account:
facebook:
enabled: false
profileUrl:
analytics:
google: UA-130014324-1
# Build settings
markdown: kramdown
remote_theme: allejo/jekyll-docs-theme
| name: imageutil
project:
version: 1.0.0
download_url: https://github.com/byjg/imageutil/releases
license:
software: MIT
software_url: https://opensource.org/licenses/MIT
docs: MIT
docs_url: https://opensource.org/licenses/MIT
git_edit_address: https://github.com/byjg/imageutil/blob/master/
links:
header:
- title: GitHub
url: https://github.com/byjg/imageutil
- title: ByJG
url: https://opensource.byjg.com/
footer:
- title: GitHub
url: https://github.com/byjg/imageutil
- title: Issues
url: https://github.com/byjg/imageutil/issues
ui:
header:
color1: "#080331"
color2: "#0033cc"
trianglify: true
social:
github:
user: byjg
repo: imageutil
twitter:
enabled: false
via:
hash: opensourcebyjg
account:
facebook:
enabled: false
profileUrl:
analytics:
google: UA-130014324-1
plugins:
- jekyll-seo-tag
# Build settings
markdown: kramdown
remote_theme: byjg/jekyll-docs-theme
| Add Seo Tags Github pages | Add Seo Tags Github pages
| YAML | mit | byjg/imageutil |
de9c83050a1ed565c1941e1e6bd9790d3d5241be | _config.yml | _config.yml | baseurl:
title: Tufte-Jekyll
subtitle: Content-centric blogging
author: Andrei Kashin
simple_search: http://google.com/search
description: A Jekyll theme for content-rich sites
name: tufte
markdown: kramdown
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
permalink: /articles/:short_year/:title
timezone: Europe/London
excerpt_separator: <!--more--> # you can specify your own separator, of course.
exclude: ['Gemfile', 'Rakefile', 'README.md']
post:
template: _post.txt
extension: md
page:
template: _page.txt
extension: md
editor: gvim
git:
branch: master
transfer:
command: rsync
settings: -av
source: _site/
destination: ~/Repos/akashin.me/
| baseurl:
title: Tufte-Jekyll
subtitle: Content-centric blogging
author: Andrei Kashin
simple_search: http://google.com/search
description: A Jekyll theme for content-rich sites
name: tufte
markdown: kramdown
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
permalink: /articles/:short_year/:title
timezone: Europe/London
excerpt_separator: <!--more--> # you can specify your own separator, of course.
exclude: ['Gemfile', 'Rakefile', 'README.md']
post:
template: _post.txt
extension: md
page:
template: _page.txt
extension: md
editor: nvim
git:
branch: master
transfer:
command: rsync
settings: -av
source: _site/
destination: ~/Repos/akashin.me/
| Change default editor to nvim | Change default editor to nvim
| YAML | mit | akashin/akashin.me,akashin/akashin.me |
ac4f30bc72185850d5ce2baaf1d412f773d6ae0a | .travis.yml | .travis.yml | language: python
python:
- "3.6"
- "3.7"
install:
- pip install pipenv
- pipenv install --dev
- invoke -c build_tasks build-all
script:
- invoke test
| language: python
python:
- "3.6"
matrix:
include:
- python: 3.7
dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069)
sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069)
install:
- pip install pipenv
- pipenv install --dev
- invoke -c build_tasks build-all
script:
- invoke test
| Fix Python 3.7 on CI | Fix Python 3.7 on CI | YAML | agpl-3.0 | nabla-c0d3/nassl,nabla-c0d3/nassl,nabla-c0d3/nassl |
4610445b7fa84cadb6c00a730b59d0eadef3dec4 | .travis.yml | .travis.yml | language: c
compiler:
- clang
- gcc
before_install:
- sudo apt-get install protobuf-c-compiler
- sudo apt-get install libprotobuf-c0-dev
- sudo apt-get install libjansson-dev
install: ./autogen.sh && ./configure && make
script:
- make test
- make benchmark
| language: c
compiler:
- clang
- gcc
before_install:
- sudo apt-get install libprotobuf-c0-dev libprotobuf-c0 protobuf-c-compiler
- sudo apt-get install libjansson-dev libjansson4
install: ./autogen.sh && ./configure && make
script:
- make test
- make benchmark
| Install proper Ubuntu package for testing via Travis-CI | Install proper Ubuntu package for testing via Travis-CI
| YAML | mit | Sannis/protobuf2json-c,Sannis/protobuf2json-c,Sannis/protobuf2json-c |
cf9501a2cd452792e683b04681eb0045d7d0726e | .travis.yml | .travis.yml | language: node_js
node_js:
- "4"
- "5"
- "6"
- "7"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install: "sudo apt-get update && sudo apt-get install -y optipng pngcrush pngquant graphicsmagick libjpeg-turbo-progs inkscape libcairo2-dev libgif-dev libjpeg8-dev"
script: "npm run-script travis"
| language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install: "sudo apt-get update && sudo apt-get install -y optipng pngcrush pngquant graphicsmagick libjpeg-turbo-progs inkscape libcairo2-dev libgif-dev libjpeg8-dev"
script: "npm run-script travis"
| Build with node.js 8 and 9 instead of 5 and 7 | Travis: Build with node.js 8 and 9 instead of 5 and 7
| YAML | bsd-3-clause | papandreou/express-processimage |
ed2700d332817bb9286fb2789384276cdca46a76 | .travis.yml | .travis.yml | language: ruby
cache:
bundler: true
yarn: true
directories:
- node_modules
rvm:
- 2.2.7
- 2.3.4
before_install:
- gem install bundler -v 1.15.3
install:
- bundle install --path vendor/bundle
- cd test/sample && yarn install && cd -
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
script:
- bundle exec rake
| language: ruby
cache:
bundler: true
yarn: true
directories:
- node_modules
rvm:
- 2.2.10
- 2.3.7
- 2.4.4
- 2.5.1
before_install:
- gem install bundler -v 1.15.3
install:
- bundle install --path vendor/bundle
- cd test/sample && yarn install && cd -
gemfile:
- gemfiles/rails_3.2.gemfile
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
script:
- bundle exec rake
| Test against latest rubies under maintenance | Test against latest rubies under maintenance
| YAML | mit | rossta/serviceworker-rails,rossta/serviceworker-rails,rossta/serviceworker-rails,rossta/serviceworker-rails |
7f087edd5266c958e1a0cfc2ae7c9ef2bd10994c | .travis.yml | .travis.yml | language: python
python:
- 2.6
- 2.7
- 3.3
before_install:
- git submodule update --init --recursive
- git clone git://github.com/maxmind/libmaxminddb
- cd libmaxminddb
- git checkout dave/major-refactor
- ./bootstrap
- ./configure
- make
- sudo make install
- sudo ldconfig
- cd ..
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
script:
- python setup.py test
notifications:
email:
recipients:
- dev@maxmind.com
on_success: change
on_failure: always
| language: python
python:
- 2.6
- 2.7
- 3.3
before_install:
- git submodule update --init --recursive
- git clone git://github.com/maxmind/libmaxminddb
- cd libmaxminddb
- ./bootstrap
- ./configure
- make
- sudo make install
- sudo ldconfig
- cd ..
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
script:
- python setup.py test
notifications:
email:
recipients:
- dev@maxmind.com
on_success: change
on_failure: always
| Use master branch on libmaxminddb | Use master branch on libmaxminddb
| YAML | apache-2.0 | kikinteractive/MaxMind-DB-Reader-python,maxmind/MaxMind-DB-Reader-python,maxmind/MaxMind-DB-Reader-python,maxmind/MaxMind-DB-Reader-python,kikinteractive/MaxMind-DB-Reader-python |
76180fab3b269b053d662c701f444a91bab2bca9 | .travis.yml | .travis.yml | ---
services:
- redis-server
language: rust
cache: cargo
rust:
- stable
matrix:
include:
- rust: stable
env: FMT=1
install:
before_script:
- rustup component add rustfmt
script:
- cargo fmt --all -- --check
- rust: stable
env: CLIPPY=1
before_script:
- rustup component add clippy
script:
- cargo clippy -- -D warnings -A clippy::single_match -A clippy::needless_pass_by_value
- rust: stable
env: TEST=1
script:
- cargo test
allow_failures:
- rust: stable
env: CLIPPY=1
notifications:
email:
on_success: change
on_failure: always
| ---
services:
- redis-server
language: rust
cache: cargo
rust:
- stable
matrix:
include:
- rust: stable
env: FMT=1
install:
before_script:
- rustup component add rustfmt
script:
- cargo fmt --all -- --check
- rust: stable
env: CLIPPY=1
before_script:
- rustup component add clippy
script:
- cargo clippy -- -D warnings
- rust: stable
env: TEST=1
script:
- cargo test
allow_failures:
- rust: stable
env: CLIPPY=1
notifications:
email:
on_success: change
on_failure: always
| Remove fixed clippy disabled lint | Remove fixed clippy disabled lint
| YAML | mit | spk/maman |
e417080d306e99f53aea9478d86726833f182b2a | .travis.yml | .travis.yml | # Setting "sudo" to false forces Travis-CI to use its
# container-based build infrastructure, which has shorter
# queue times.
sudo: false
# Use the newer Travis-CI build templates based on the
# Debian Linux distribution "Trusty" release.
dist: trusty
# Select Go as the language used to run the buid.
language: go
go: 1.8.3
go_import_path: github.com/thecodeteam/gocsi
jobs:
include:
# Verify GoCSI builds without errors
- stage: build
env: PROG=gocsi.a
install: true
script: make $PROG
- stage: build
env: PROG=csc
install: true
script: make -C $PROG
- stage: build
env: PROG=mock
install: true
script: make -C $PROG
# Test GoCSI's csp.sh script by creating and serving new SP and
# then using csc to invoke GetSupportedVersions and GetPluginInfo
- stage: test
env: JOB=csi-sp
go: 1.9.3
before_install: make dep
install: make -C csc
script: make csi-sp
# Test GoCSI using the Mock CSI plug-in.
- stage: test
env: JOB=test
go: 1.9.3
install: make ginkgo
script: make test
# Allow the csi-sp job to fail since it is only currently able to
# use GoCSI's master branch due to golang/dep#1583.
allow_failures:
- env: JOB=csi-sp
| # Setting "sudo" to false forces Travis-CI to use its
# container-based build infrastructure, which has shorter
# queue times.
sudo: false
# Use the newer Travis-CI build templates based on the
# Debian Linux distribution "Trusty" release.
dist: trusty
# Select Go as the language used to run the buid.
language: go
go: 1.8.3
go_import_path: github.com/thecodeteam/gocsi
jobs:
include:
# Verify GoCSI builds without errors
- stage: build
env: PROG=gocsi.a
install: true
script: make $PROG
- stage: build
env: PROG=csc
install: true
script: make -C $PROG
- stage: build
env: PROG=mock
install: true
script: make -C $PROG
# Test GoCSI's csp.sh script by creating and serving new SP and
# then using csc to invoke GetSupportedVersions and GetPluginInfo
- stage: test
env: JOB=csi-sp
go: 1.9.3
before_install: make dep
install: make -C csc
script: make csi-sp
# Test GoCSI using the Mock CSI plug-in.
- stage: test
env: JOB=test
go: 1.9.3
install: make ginkgo
script: make test
| Revert "Allow failure of csi-sp build job" | Revert "Allow failure of csi-sp build job"
This reverts commit 5f388c034fbf8db2e652fc33ca2d8fe2fb4c719e.
| YAML | apache-2.0 | akutz/gocsi,akutz/gocsi |
d316fea3e16f7aaae51f528215f18e9aa65fa761 | _config.yml | _config.yml | # Site settings
title: Bangladesh IATI – AIMS import
description: Developing a sustainable process for importing IATI data to Bangladesh's AIMS
baseurl: ""
url: "http://bd-iati.github.io" # the base hostname & protocol for your site
github_username: bd-iati
email:
# Build settings
markdown: kramdown
collections:
documentation:
output: true
background:
output: true
dpdata:
output: true
| # Site settings
title: Bangladesh IATI – AIMS import
description: Developing a sustainable process for importing IATI data to Bangladesh's AIMS
baseurl: ""
url: "http://bd-iati.github.io" # the base hostname & protocol for your site
github_username: bd-iati
email:
# Build settings
markdown: kramdown
collections:
documentation:
output: true
background:
output: true
dpdata:
output: true
sprints:
output: true
| Create development section for sprints | Create development section for sprints
| YAML | mit | BD-IATI/bd-iati.github.io,BD-IATI/bd-iati.github.io |
1cff0c3891f5f47afcba6faa524058901ba4bc2f | .travis.yml | .travis.yml | language: scala
scala:
- 2.11.6
jdk:
- oraclejdk8
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/07b062b5d97c72b6b383
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # default: never
sudo: false
before_script:
- mkdir -p $HOME/.sbt/launchers/0.13.8/
- curl -L -o $HOME/.sbt/launchers/0.13.8/sbt-launch.jar http://dl.bintray.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/0.13.8/sbt-launch.jar | language: scala
scala:
- 2.11.6
jdk:
- oraclejdk8
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/07b062b5d97c72b6b383
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # default: never
sudo: false | Revert "Temporary workaround for Travis bug. :disappointed:" | Revert "Temporary workaround for Travis bug. :disappointed:"
This reverts commit cba147b106927bfa797d20a885af7d50359ceb45.
| YAML | mit | weso/Wesby,weso/Wesby |
7192b59cda4022a381ab0b9fe0bdd670f9b083ca | .travis.yml | .travis.yml | language: php
php:
- '7.1'
services:
- mysql
install: composer install --dev
before_script:
- mysql -e 'create database activecollab_database_connection_test'
script: vendor/bin/phpunit
| language: php
php:
- '7.3'
services:
- mysql
install: composer install --dev
before_script:
- mysql -e 'create database activecollab_database_connection_test'
script: vendor/bin/phpunit
| Update test runtime to PHP 7.3 | Update test runtime to PHP 7.3
| YAML | mit | activecollab/databaseconnection |
bb083a7a515643a64b5e0e96ce4892b4909727ee | _config.yml | _config.yml | # Site settings
title: JoeNyland.me
author: Joe Nyland
description: >
I'm a developer, geek, mountain biker and dog lover from Warrington, UK and this is my web site!
blog:
description: >
Hey, I'm Joe Nyland and this is my blog!
I'll try to write about interesting things related to DevOps,
coding, SysAdmin and other things that interest me as I fumble
my way through life, laughing and learning along the way.
I can't guarantee that everything will be interesting, but I'll try!
baseurl: ""
url: "http://joenyland.me"
permalink: /blog/:title/
gems:
- jekyll-feed
- jekyll-sitemap
- jemoji
# Build settings
exclude: ['README.md','LICENSE','CNAME','Gemfile','Gemfile.lock','vendor']
markdown: kramdown
sass:
style: compressed
| # Site settings
title: JoeNyland.me
author: Joe Nyland
description: >
I'm a developer, geek, mountain biker and dog lover from Warrington, UK and this is my web site!
blog:
description: >
Hey, I'm Joe Nyland and this is my blog!
I'll try to write about interesting things related to DevOps,
coding, SysAdmin and other things that interest me as I fumble
my way through life, laughing and learning along the way.
I can't guarantee that everything will be interesting, but I'll try!
baseurl: ""
url: "http://joenyland.me"
permalink: /blog/:title/
gems:
- jekyll-feed
- jekyll-sitemap
- jemoji
# Build settings
exclude: ['README.md','LICENSE','CNAME','Gemfile','Gemfile.lock','Rakefile','vendor']
markdown: kramdown
sass:
style: compressed
| Exclude Rakefile from Jekyll build | Exclude Rakefile from Jekyll build
| YAML | mit | MasterRoot24/masterroot24.github.io,MasterRoot24/masterroot24.github.io,MasterRoot24/masterroot24.github.io |
a2e4174caf84189ab50afc4d9a842c1ea6773695 | .travis.yml | .travis.yml | sudo: false
dist: trusty
language: java
# https://github.com/travis-ci/travis-ci/issues/8408
before_install:
- unset _JAVA_OPTIONS
matrix:
include:
- os: linux
env: JDK='OpenJDK 11'
install: . ./install-jdk.sh --verbose
- os: osx
env: JDK='OpenJDK 11'
install:
- unset -f cd
- . ./install-jdk.sh --verbose
script:
- java --version
- ./build.jsh
after_success:
- cd $TRAVIS_BUILD_DIR/demo/00-bootstrap
- ./bootstrap.jsh
- cd $TRAVIS_BUILD_DIR/demo/01-hello-world
- ./build-01-hello-world.jsh
| sudo: false
dist: trusty
language: java
matrix:
include:
- os: linux
- os: osx
osx_image: xcode9.3
# https://github.com/travis-ci/travis-ci/issues/8408
before_install:
- unset _JAVA_OPTIONS
install:
- . ./install-jdk.sh --verbose
script:
- java --version
- ./build.jsh
after_success:
- cd $TRAVIS_BUILD_DIR/demo/00-bootstrap
- ./bootstrap.jsh
- cd $TRAVIS_BUILD_DIR/demo/01-hello-world
- ./build-01-hello-world.jsh
| Unify jdk installation and use xcode9.3 on OS X | Unify jdk installation and use xcode9.3 on OS X
| YAML | mit | sormuras/bach,sormuras/bach |
4ac68a620ba01b54d764978a472f341a05d480cf | .travis.yml | .travis.yml | language: ruby
bundler_args: --without development
script: "bundle exec rake ci SPEC_OPTS='--format documentation'"
rvm:
- 1.8.7
- 1.9.3
- ruby-head
env:
- PUPPET_GEM_VERSION="~> 2.6.0"
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
matrix:
allow_failures:
- rvm: ruby-head
exclude:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 2.7.0"
- rvm: ruby-head
env: PUPPET_GEM_VERSION="~> 2.7.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 2.6.0"
- rvm: ruby-head
env: PUPPET_GEM_VERSION="~> 2.6.0"
notifications:
email: false
| language: ruby
bundler_args: --without development
script: "bundle exec rake ci SPEC_OPTS='--format documentation'"
rvm:
- 1.8.7
- 1.9.3
- ruby-head
env:
- PUPPET_GEM_VERSION="~> 2.6.0"
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.0.0"
- PUPPET_GEM_VERSION="~> 3.1.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
matrix:
allow_failures:
- rvm: ruby-head
exclude:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 2.7.0"
- rvm: ruby-head
env: PUPPET_GEM_VERSION="~> 2.7.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 2.6.0"
- rvm: ruby-head
env: PUPPET_GEM_VERSION="~> 2.6.0"
- rvm: ruby-head
env: PUPPET_GEM_VERSION="~> 3.0.0"
- rvm: ruby-head
env: PUPPET_GEM_VERSION="~> 3.1.0"
notifications:
email: false
| Exclude tests for Puppet < 3.2 against ruby-head | Exclude tests for Puppet < 3.2 against ruby-head
ruby-head is currently 2.x, which Puppet only began supporting at version
3.2: http://projects.puppetlabs.com/issues/18494
This should make the "allowed failures" builds green once again.
| YAML | apache-2.0 | ianand0204/puppetlabs-firewall,jaakkosipari/puppetlabs-firewall,puppetlabs/puppetlabs-firewall |
08267b389c0fe9365687162323db468ec3bb2630 | .travis.yml | .travis.yml | language: ruby
before_install:
- sudo apt-get install libpcap-dev -qq
rvm:
- 2.1.1
- 2.0.0
- 1.9.3
| language: ruby
before_install:
- sudo apt-get install libpcap-dev -qq
rvm:
- 2.1.1
- 2.0.0 | Drop support for Ruby 1.9.3 | Drop support for Ruby 1.9.3
| YAML | bsd-3-clause | claudijd/bnat |
00176e52f4db4b6d85a6453d5b9cedfc3f379359 | .travis.yml | .travis.yml | sudo: required
language: node_js
services:
- docker
before_script:
# Remove the local, Travis-generated "node_modules" directory, because when
# we run the linters and tests, the local directory will be mounted into the
# container and its "node_modules" directory would override the one we want
# used, which is the one located at the root-level of the container.
- rm -rf node_modules
# Move TravisCI's checkout of kumascript into a submodule of kuma
- cd ..
- git clone https://github.com/mozilla/kuma --depth 2
- cd kuma
- git submodule update --init locale
- rmdir kumascript
- mv ../kumascript .
# Build the kumascript image
- make build-kumascript
# Run remaining tasks from the kumascript submodule
- cd kumascript
script:
- make lint
- make lint-macros
- make test
- make test-macros
notifications:
email:
- rjohnson@mozilla.com
| sudo: required
language: node_js
node_js:
- "6"
services:
- docker
before_script:
# Remove the local, Travis-generated "node_modules" directory, because when
# we run the linters and tests, the local directory will be mounted into the
# container and its "node_modules" directory would override the one we want
# used, which is the one located at the root-level of the container.
- rm -rf node_modules
# Move TravisCI's checkout of kumascript into a submodule of kuma
- cd ..
- git clone https://github.com/mozilla/kuma --depth 2
- cd kuma
- git submodule update --init locale
- rmdir kumascript
- mv ../kumascript .
# Build the kumascript image
- make build-kumascript
# Run remaining tasks from the kumascript submodule
- cd kumascript
script:
- make lint
- make lint-macros
- make test
- make test-macros
notifications:
email:
- rjohnson@mozilla.com
| Use node.js 6.x in TravisCI | Use node.js 6.x in TravisCI
| YAML | mpl-2.0 | jpmedley/kumascript,a2sheppy/kumascript,a2sheppy/kumascript,jpmedley/kumascript |
9e30ff2fdb7ef8a23a50f7d3f59ea1f4848fbc57 | _config.yml | _config.yml | # Site settings
description: N.B.: This is a web app created for a university course, not an operational site.
permalink: pretty
github: ethan-nelson/radarlabissuer
baseurl: #
# Build settings
markdown: kramdown
# Custom settings
imagedir: /images/
# Map settings
mapdir: /images/maptiles/{z}/{x}/{y}.png
attribution: "Map Data: Copyright OpenStreetMap contributors (https://osm.org)"
mapcenter: "[32.79, -90.18]"
mapzoom: 7
# Radar image settings
radarimg: "/images/radar/latest.png"
radarbounds: "[[32.425, -100.85], [38.25, -93.75]]"
# Storm reports
reportsfile: "/reports.geoJSON"
starttime: "20:00"
endtime: "22:00"
houroffset: 6
minuteoffset: -30
| # Site settings
description: N.B. This is a web app created for a university course, not an operational site.
permalink: pretty
github: ethan-nelson/radarlabissuer
baseurl: #
# Build settings
markdown: kramdown
# Custom settings
imagedir: /images/
# Map settings
mapdir: /images/maptiles/{z}/{x}/{y}.png
attribution: "Map Data: Copyright OpenStreetMap contributors (https://osm.org)"
mapcenter: "[32.79, -90.18]"
mapzoom: 7
# Radar image settings
radarimg: "/images/radar/latest.png"
radarbounds: "[[32.425, -100.85], [38.25, -93.75]]"
# Storm reports
reportsfile: "/reports.geoJSON"
starttime: "20:00"
endtime: "22:00"
houroffset: 6
minuteoffset: -30
| Remove unescaped colon in config | Remove unescaped colon in config
| YAML | mit | ethan-nelson/radarlabissuer,ethan-nelson/radarlabissuer,ethan-nelson/radarlabissuer |
2b2e76d560e2c46846df6962ad2684df812aec45 | .travis.yml | .travis.yml | language: objective-c
osx_image: xcode7.3
matrix:
include:
- xcode_workspace: Example-iOS/VOKBenkode.xcworkspace
xcode_scheme: VOKBenkode-Example
xcode_sdk: iphonesimulator
- xcode_workspace: Example-iOS/VOKBenkode.xcworkspace
xcode_scheme: VOKBenkode-tvOS
xcode_sdk: appletvsimulator
- xcode_workspace: Example-OSX/VOKBenkode.xcworkspace
xcode_scheme: VOKBenkode-Example
xcode_sdk: macosx
| language: objective-c
osx_image: xcode7.3
before_install:
- brew update > /dev/null; if brew outdated | grep -qx xctool; then brew upgrade xctool; fi
matrix:
include:
- xcode_workspace: Example-iOS/VOKBenkode.xcworkspace
xcode_scheme: VOKBenkode-Example
xcode_sdk: iphonesimulator
- xcode_workspace: Example-iOS/VOKBenkode.xcworkspace
xcode_scheme: VOKBenkode-tvOS
xcode_sdk: appletvsimulator
- xcode_workspace: Example-OSX/VOKBenkode.xcworkspace
xcode_scheme: VOKBenkode-Example
xcode_sdk: macosx
| Revert change to remove xctool update on Travis | Revert change to remove xctool update on Travis
| YAML | mit | chillpop/VOKBenkode,chillpop/VOKBenkode,vokal/VOKBenkode,chillpop/VOKBenkode |
c74b8c42cff950e9a4e5db39ffc81c91c01c5e30 | .travis.yml | .travis.yml | language: go
env:
NODE_VERSION="8.11.2"
go:
- 1.11
- 1.12
- master
cache:
yarn: true
directories:
- app/node_modules
before_install:
- nvm install $NODE_VERSION
- npm install -g yarn
script:
- make deps
- make dist
- cd server && go test -v ./...
- cd server && go vet ./...
- cd app && yarn lint
| language: go
env:
NODE_VERSION="8.11.2"
go:
- 1.11
- 1.12
- master
cache:
yarn: true
directories:
- app/node_modules
before_install:
- nvm install $NODE_VERSION
- npm install -g yarn
install:
- make deps
script:
- make dist
- cd server && go test -v ./...
- cd server && go vet ./...
- cd app && yarn lint
| Make deps in install step | Make deps in install step
| YAML | mit | DiscoViking/website,DiscoViking/website,DiscoViking/website,DiscoViking/website,DiscoViking/website |
3d82cbc35b4b5a2b393c50d7c493ef725ccb9928 | .travis.yml | .travis.yml | language: node_js
node_js:
- "5"
- "4"
- "0.12"
| language: node_js
node_js:
- "5"
- "4"
| Drop support for node 0.12 (in ci builds). | Drop support for node 0.12 (in ci builds).
| YAML | mit | bls/node-yafp |
9a20d202853d1322cb1d440821ff60dcebfb9323 | .travis.yml | .travis.yml | sudo: false
language: go
go:
- 1.5
- 1.6
env:
global:
- GO15VENDOREXPERIMENT=1
install:
- make install_ci
script:
- make lint_ci
- make test_ci
- travis_retry goveralls -coverprofile=cover.out -service=travis-ci || true
- rm -rf vendor/*
| sudo: false
language: go
go:
- 1.5
- 1.6
- 1.7rc1
- tip
env:
global:
- GO15VENDOREXPERIMENT=1
install:
- make install_ci
script:
- make lint_ci
- make test_ci
- travis_retry goveralls -coverprofile=cover.out -service=travis-ci || true
- rm -rf vendor/*
| Test Go 1.7rc1 and tip | Test Go 1.7rc1 and tip
| YAML | mit | crossdock/crossdock-go,crossdock/crossdock-go |
f17e7a1aef52423739ce3437410fe2709379c43e | _config.yml | _config.yml | exclude: [ "less", "gitignore", "nicoespeon.sublime-project", "nicoespeon.sublime-workspace" ]
highlighter: pygments
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
permalink: /:categories/:year/:month/:title/
paginate: 7
paginate_path: "/page:num"
paginate_per_category: true
default_category: "en"
safe: false
url: http://www.nicoespeon.com
name: "@nicoespeon's blog"
description: "Freelance web-developer and Agile coach thoughts. Lean, Kanban, scalable CSS, HTML5 games, Backbone.js, Software Craftmanship."
default_locale: "en"
authorized_locales: ["en", "fr"]
| exclude: [ "less", "gitignore", "nicoespeon.sublime-project", "nicoespeon.sublime-workspace" ]
highlighter: pygments
markdown: kramdown
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
permalink: /:categories/:year/:month/:title/
paginate: 7
paginate_path: "/page:num"
paginate_per_category: true
default_category: "en"
safe: false
url: http://www.nicoespeon.com
name: "@nicoespeon's blog"
description: "Freelance web-developer and Agile coach thoughts. Lean, Kanban, scalable CSS, HTML5 games, Backbone.js, Software Craftmanship."
default_locale: "en"
authorized_locales: ["en", "fr"]
| Use kramdown parser instead of redcarpet | Use kramdown parser instead of redcarpet
Kramdown provide nice ids for titles, which will be required to add anchors
| YAML | mit | nicoespeon/nicoespeon.github.io,nicoespeon/nicoespeon.github.io |
2f557f0b875089fb4745fc931e9bd4346af0a1b3 | .travis.yml | .travis.yml | sudo: false
language: erlang
otp_release:
- 19.3.6.1
addons:
apt:
packages:
- r-base
before_install:
- ./ci before_install ${JOB:?} "${TRAVIS_BUILD_DIR:?}"
install:
- ./ci install ${JOB:?} "${TRAVIS_BUILD_DIR:?}"
before_script:
- ./ci before_script ${JOB:?} "${TRAVIS_BUILD_DIR:?}"
script:
- ./ci script ${JOB:?} "${TRAVIS_BUILD_DIR:?}"
matrix:
allow_failures:
fast_finish: true
env:
- JOB=minloadtest
- JOB=dialyzer
- JOB=xref
cache:
directories:
- .plt
| dist: trusty
sudo: false
language: erlang
otp_release:
- 19.3.6.1
addons:
apt:
packages:
- r-base
before_install:
- ./ci before_install ${JOB:?} "${TRAVIS_BUILD_DIR:?}"
install:
- ./ci install ${JOB:?} "${TRAVIS_BUILD_DIR:?}"
before_script:
- ./ci before_script ${JOB:?} "${TRAVIS_BUILD_DIR:?}"
script:
- ./ci script ${JOB:?} "${TRAVIS_BUILD_DIR:?}"
matrix:
allow_failures:
fast_finish: true
env:
- JOB=minloadtest
- JOB=dialyzer
- JOB=xref
cache:
directories:
- .plt
| Fix for graphs on CI: prefer recent Ubuntu for finding R dependencies | Fix for graphs on CI: prefer recent Ubuntu for finding R dependencies
Prefer trusty to precise. See
https://docs.travis-ci.com/user/reference/trusty/#Routing-to-Trusty
Fixes the following error:
```
Rscript --vanilla priv/summary.r -i tests/current
[1] "plyr"
Loading required package: plyr
Installing package(s) into ‘/home/travis/build/lucafavatella/basho_bench/tmp/R_libs’
(as ‘lib’ is unspecified)
Error in library(p, character.only = TRUE) :
there is no package called ‘plyr’
Calls: source -> eval.with.vis -> eval.with.vis -> library
In addition: Warning message:
In getDependencies(pkgs, dependencies, available, lib) :
package ‘plyr’ is not available (for R version 2.14.1)
Execution halted
make: *** [results] Error 1
```
| YAML | apache-2.0 | mrallen1/basho_bench,mrallen1/basho_bench,mrallen1/basho_bench,mrallen1/basho_bench |
9d10e85e44cf5f0611909467b4656c3b9148b66b | _config.yml | _config.yml | # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Peter Wood
email: peternatewood@gmail.com
description: >
My personal website containing my projects, resume, and tech blog
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://peternatewood.com" # the base hostname & protocol for your site
headshot: "/imgs/dbc-headshot-2015-11-13.png"
github_username: peternatewood
linkedin_username: peternatewood
twitter_username: peternatewood
# Build settings
markdown: kramdown
theme: minima
include: ['_pages', '_projects']
sass:
sass_dir: _sass
| # Welcome to Jekyll!
#
# This config file is meant for settings that affect your whole blog, values
# which you are expected to set up once and rarely edit after that. If you find
# yourself editing these this file very often, consider using Jekyll's data files
# feature for the data you need to update frequently.
#
# For technical reasons, this file is *NOT* reloaded automatically when you use
# 'jekyll serve'. If you change this file, please restart the server process.
# Site settings
# These are used to personalize your new site. If you look in the HTML files,
# you will see them accessed via {{ site.title }}, {{ site.email }}, and so on.
# You can create any custom variable you would like, and they will be accessible
# in the templates via {{ site.myvariable }}.
title: Peter Wood
email: peternatewood@gmail.com
description: >
My personal website containing my projects, resume, and tech blog
baseurl: "" # the subpath of your site, e.g. /blog
url: "http://peternatewood.com" # the base hostname & protocol for your site
headshot: "/imgs/dbc-headshot-2015-11-13.png"
resume: "/assets/resume.pdf"
github_username: peternatewood
linkedin_username: peternatewood
twitter_username: peternatewood
# Build settings
markdown: kramdown
theme: minima
include: ['_pages', '_projects']
sass:
sass_dir: _sass
| Add jekyll variable for resume pdf source | Add jekyll variable for resume pdf source
| YAML | mit | peternatewood/peternatewood.github.io,peternatewood/peternatewood.github.io,RoyTuesday/RoyTuesday.github.io,RoyTuesday/RoyTuesday.github.io,peternatewood/peternatewood.github.io |
e9ceffa07517a2016e1c2036d5edefc6fb6455cd | .travis.yml | .travis.yml | ---
language: ruby
rvm:
- 2.3.7
- 2.4.4
- 2.5.1
- ruby-head
- jruby-9.2.0.0
before_install:
- gem update --system
- gem update bundler
script: bundle exec rake test
| ---
language: ruby
rvm:
- 2.3.8
- 2.4.5
- 2.5.3
- ruby-head
- jruby-9.2.0.0
before_install:
- gem update --system
- gem update bundler
script: bundle exec rake test
| Use Ruby 2.3.8, 2.4.5, and 2.5.3 for test | Use Ruby 2.3.8, 2.4.5, and 2.5.3 for test
| YAML | mit | aycabta/deviantart,aycabta/deviantart |
7ae00b4acdd7e058a7ba4c34b4d864c8a2ab8982 | .travis.yml | .travis.yml | language: java
script: bash travis.sh
notifications:
slack:
rooms:
- doctales:aauBZMfrbD04vfiHdZ3GLXgF#terminology
| language: java
jdk:
- oraclejdk8
script: bash travis.sh
notifications:
slack:
rooms:
- doctales:aauBZMfrbD04vfiHdZ3GLXgF#terminology
| Set Java JDK version to 8. | Set Java JDK version to 8.
| YAML | apache-2.0 | doctales/org.doctales.terminology |
ec6965e006d6e52deca971b4d585a322dee9b915 | _config.yml | _config.yml | title: Kamil Stasiak
author: Kamil Stasiak
email: przykladowy@adres.pl
description: >
Mój notatnik.
twitter_username: llimakk
github_username: llimakk
# Minima date format
# refer to http://shopify.github.io/liquid/filters/date/ if you want to customize this
minima:
date_format: "%b %-d, %Y"
# If you want to link only specific pages in your header, uncomment
# this and add the path to the pages in order as they should show up
header_pages:
- _pages/about.md
include: ['_pages']
# Build settings
markdown: kramdown
theme: minima
exclude:
- Gemfile
- Gemfile.lock
| title: Kamil Stasiak
author: Kamil Stasiak
email: przykladowy@adres.pl
description: >
Mój notatnik.
twitter_username: llimakk
github_username: llimakk
# Minima date format
# refer to http://shopify.github.io/liquid/filters/date/ if you want to customize this
minima:
date_format: "%b %-d, %Y"
# If you want to link only specific pages in your header, uncomment
# this and add the path to the pages in order as they should show up
header_pages:
- _pages/about.md
#My configuration
include: ['_pages']
defaults:
-
scope:
path: ""
type: "posts"
values:
author: "Kamil Stasiak"
# Build settings
markdown: kramdown
theme: minima
exclude:
- Gemfile
- Gemfile.lock
| Add default author: Kamil Stasiak | Add default author: Kamil Stasiak
| YAML | mit | llimakk/llimakk.github.io,llimakk/llimakk.github.io,llimakk/llimakk.github.io |
2f3669a8048fdd1583483663a4f3b2a4b087bf28 | .travis.yml | .travis.yml | language: ruby
sudo: false
cache: bundler
script: 'script/ci'
before_install:
- rvm @global do gem uninstall bundler -a -x
- rvm @global do gem install bundler -v 1.13.7
rvm:
- 2.3.4
- 2.4.2
- ruby-head
- jruby-9.1.13.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/fde2367248d53de4fe70
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
| language: ruby
sudo: false
cache: bundler
script: 'script/ci'
rvm:
- 2.3.5
- 2.4.2
- ruby-head
- jruby-9.1.13.0
- jruby-head
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/fde2367248d53de4fe70
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
| Remove hack to install newest bundler for Travis CI | Remove hack to install newest bundler for Travis CI
| YAML | mit | lotus/controller,hanami/controller,hanami/controller,hanami/controller |
d19fd6dae8879f63a87d4c7c22dfebc7c13eef00 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
#- "3.2"
#- "3.3"
#- "3.4"
#- "3.5"
- "3.6"
notifications:
email: false
cache: pip
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y -qq python-dev gfortran liblapack-dev libatlas-dev libblas-dev build-essential python-scipy
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy nose
- pip install -q coveralls coverage future pathos
- pip install .
script:
- nosetests --cover-branches --with-coverage --cover-package=molml --cover-erase
after_success:
- coveralls
| language: python
python:
- "2.7"
#- "3.2"
#- "3.3"
#- "3.4"
#- "3.5"
- "3.6"
notifications:
email: false
cache: pip
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y -qq python-dev gfortran liblapack-dev libatlas-dev libblas-dev build-essential python-scipy
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy nose
- pip install -q coveralls coverage future pathos
- pip install -e .
script:
- nosetests --cover-branches --with-coverage --cover-package=molml --cover-erase
after_success:
- coveralls
| Update TravisCI to use correct path | Update TravisCI to use correct path
| YAML | mit | crcollins/molml |
50f0ef9f2b2598842f7e444b8bdff15471cde607 | .travis.yml | .travis.yml | # See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.5 PHPUNIT_TEST=1 PHPCS_TEST=1
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.6 PHPUNIT_TEST=1
- php: 7.0
env: DB=PGSQL CORE_RELEASE=3 PHPUNIT_TEST=1
- php: 7.1
env: DB=PGSQL CORE_RELEASE=3 PHPUNIT_TEST=1
- php: 7.2
env: DB=MYSQL CORE_RELEASE=3 PHPUNIT_TEST=1
before_script:
# Init PHP
- phpenv rehash
- phpenv config-rm xdebug.ini
# Update and validate composer configuration
- composer self-update || true
- composer clear-cache
- composer validate --strict
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require bringyourownideas/silverstripe-composer-versions
- cd ~/builds/ss
- composer install
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit silverstripe-maintenance/tests; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/ *.php; fi
| # See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
matrix:
include:
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.5 PHPUNIT_TEST=1 PHPCS_TEST=1
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3.6 PHPUNIT_TEST=1
- php: 7.0
env: DB=PGSQL CORE_RELEASE=3 PHPUNIT_TEST=1
- php: 7.1
env: DB=PGSQL CORE_RELEASE=3 PHPUNIT_TEST=1
- php: 7.2
env: DB=MYSQL CORE_RELEASE=3 PHPUNIT_TEST=1
before_script:
# Init PHP
- phpenv rehash
- phpenv config-rm xdebug.ini
# Update and validate composer configuration
- composer self-update || true
- composer clear-cache
- composer validate --strict
- git clone git://github.com/silverstripe/silverstripe-travis-support.git ~/travis-support
- php ~/travis-support/travis_setup.php --source `pwd` --target ~/builds/ss --require bringyourownideas/silverstripe-composer-versions
- cd ~/builds/ss
- composer install
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit silverstripe-maintenance/tests; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs silverstripe-maintenance/src/ silverstripe-maintenance/tests/; fi
| Update path for SS3 Travis project structure in PHPCS linting command | Update path for SS3 Travis project structure in PHPCS linting command
| YAML | bsd-3-clause | FriendsOfSilverStripe/silverstripe-maintenance |
b7a006e0b53c46ba70f9f0aa0c5c542cee818138 | .travis.yml | .travis.yml | language: ruby
env:
- CODECLIMATE_REPO_TOKEN=f7c652b65a700fcf1032174afc5ea243b991e48bf73077cc34c148e1c800a2f7
bundler_args: --without sql benchmarks console tools
script: "bundle exec rake spec"
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/39e1225f489f38b0bd09
on_success: change
on_failure: always
on_start: false
| language: ruby
env:
- CODECLIMATE_REPO_TOKEN=f7c652b65a700fcf1032174afc5ea243b991e48bf73077cc34c148e1c800a2f7
bundler_args: --without sql benchmarks console tools
script: "bundle exec rake spec"
rvm:
- 2.0
- 2.1
- 2.2
- rbx-2
- jruby
- ruby-head
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
allow_failures:
- rvm: ruby-head
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/39e1225f489f38b0bd09
on_success: change
on_failure: always
on_start: false
| Improve JRuby's startup time on Travis | Improve JRuby's startup time on Travis
* Add --dev flag
See https://github.com/jruby/jruby/wiki/Improving-startup-time#use-the---dev-flag
* Grant more memory
This change sped up Travis: ~1m29s -> ~1m02s
https://travis-ci.org/rom-rb/rom/jobs/45789347
vs
https://travis-ci.org/rom-rb/rom/jobs/45805550
| YAML | mit | Snuff/rom,kwando/rom,dcarral/rom,pvcarrera/rom,jeremyf/rom,denyago/rom,rom-rb/rom,dekz/rom,endash/rom,vrish88/rom,pdswan/rom,pxlpnk/rom,cored/rom,rom-rb/rom,rom-rb/rom |
85d76acebbb4252c3d239cd16d0a717298ee897f | .travis.yml | .travis.yml | git:
depth: 10
notifications:
email: false
language: node_js
node_js:
- "4"
os:
- linux
- osx
env:
- TARGET_ARCH=x64
osx_image: xcode7.3
matrix:
include:
- os: linux
env: TARGET_ARCH=arm
- os: linux
env: TARGET_ARCH=ia32
allow_failures:
- os: osx
script: './script/cibuild'
branches:
only:
- master
| git:
depth: 10
notifications:
email: false
before_install:
- export BOTO_CONFIG=/dev/null
language: node_js
node_js:
- "4"
os:
- linux
- osx
env:
- TARGET_ARCH=x64
osx_image: xcode7.3
matrix:
include:
- os: linux
env: TARGET_ARCH=arm
- os: linux
env: TARGET_ARCH=ia32
allow_failures:
- os: osx
script: './script/cibuild'
branches:
only:
- master
| Fix No module named google_compute_engine error | Fix No module named google_compute_engine error
| YAML | mit | Floato/electron,seanchas116/electron,the-ress/electron,the-ress/electron,gerhardberger/electron,thomsonreuters/electron,the-ress/electron,bpasero/electron,electron/electron,the-ress/electron,Floato/electron,gerhardberger/electron,bpasero/electron,gerhardberger/electron,seanchas116/electron,shiftkey/electron,gerhardberger/electron,gerhardberger/electron,Floato/electron,bpasero/electron,electron/electron,thomsonreuters/electron,electron/electron,Floato/electron,shiftkey/electron,seanchas116/electron,electron/electron,Floato/electron,gerhardberger/electron,thomsonreuters/electron,seanchas116/electron,thomsonreuters/electron,shiftkey/electron,seanchas116/electron,thomsonreuters/electron,electron/electron,shiftkey/electron,the-ress/electron,bpasero/electron,electron/electron,bpasero/electron,bpasero/electron,Floato/electron,shiftkey/electron,gerhardberger/electron,bpasero/electron,thomsonreuters/electron,seanchas116/electron,shiftkey/electron,electron/electron,the-ress/electron,the-ress/electron |
2ee358e1ee81346d69a1fdabe3b3c2c71c3c7bf0 | _config.yml | _config.yml | markdown: kramdown
collections:
recipes:
output: true
sass:
sass_dir: _sass
| markdown: kramdown
collections:
recipes:
output: true
sass:
sass_dir: _sass
gostatic:
build:
command:
- apt-get install -y libffi-dev
- bundle exec jekyll build --trace --destination $SITE_DIR --config=_config.production.yml
| Add build instructions for GoStatic | Add build instructions for GoStatic
| YAML | mit | emberwatch/emberwatch,emberwatch/emberwatch,emberwatch/emberwatch |
dd3b693fffb66638be755f0f437fa354982d65ba | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
- 2.0.0
- 1.9.3
- 1.9.2
notifications:
email: false
slack:
secure: dSwRumGlIAdGDAaH/fzh/KsQhRqPBcNpbGYrMbAzacFMm8nGyLCShxR3EP/ZxkBp14ZsJ8ys4F5DMVlri7EbGNgBf1nOKAtzme6lV8oqrUxW2QULgvrP4W/+xTg1ULX758qF5NgwqErfS4Y1etofMbOuGriJ6kIxFWRjidmFPYo=
| language: ruby
rvm:
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.6
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.0.0
- 1.9.3
- 1.9.2
notifications:
email: false
slack:
secure: dSwRumGlIAdGDAaH/fzh/KsQhRqPBcNpbGYrMbAzacFMm8nGyLCShxR3EP/ZxkBp14ZsJ8ys4F5DMVlri7EbGNgBf1nOKAtzme6lV8oqrUxW2QULgvrP4W/+xTg1ULX758qF5NgwqErfS4Y1etofMbOuGriJ6kIxFWRjidmFPYo=
| Add test target versions 2.*.* | Add test target versions 2.*.*
| YAML | mit | atton-/noir |
e438f16aacade293f263300cc73a756bceed4770 | .travis.yml | .travis.yml | sudo: false
language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls
| sudo: false
language: perl
perl:
- "5.8"
- "5.10"
- "5.12"
- "5.14"
- "5.16"
- "5.18"
- "5.20"
- "5.22"
- "5.24"
before_install:
- git clone git://github.com/travis-perl/helpers ~/travis-perl-helpers
- source ~/travis-perl-helpers/init --auto
install:
- cpanm --quiet --installdeps --notest .
- cpanm --quiet --notest Devel::Cover::Report::Coveralls
script:
- cover -delete && cover -test
after_success:
- cover -report coveralls
| Add v5.24 to Travis config | Add v5.24 to Travis config
| YAML | artistic-2.0 | ssimms/business-us-usps-webtools,ssimms/business-us-usps-webtools |
a2ecacb1d1108d1c5c8a6f8e505bbc64bb91b9dd | Homestead.yaml | Homestead.yaml | ---
ip: "192.168.10.10"
memory: 2048
cpus: 1
authorize: /Users/me/.ssh/id_rsa.pub
keys:
- /Users/me/.ssh/id_rsa
folders:
- map: /Users/me/Code
to: /home/vagrant/Code
sites:
- map: homestead.app
to: /home/vagrant/Code/Laravel/public
variables:
- key: APP_ENV
value: local
| ---
ip: "192.168.10.10"
memory: 2048
cpus: 1
authorize: ~/.ssh/id_rsa.pub
keys:
- ~/.ssh/id_rsa
folders:
- map: ~/Code
to: /home/vagrant/Code
sites:
- map: homestead.app
to: /home/vagrant/Code/Laravel/public
variables:
- key: APP_ENV
value: local
| Use home folder as default SSH key location | Use home folder as default SSH key location | YAML | mit | wouterbulten/homestead,eranshmil/homestead,hibriiiiidge/LaravelProject,champjss/homestead,Yannik/homestead,MageParts/homestead,paulgeneres/homestead,davidrushton/homestead,patrickgoudjoako/homestead,f3rland/homestead-mssql,SecureCloud-biz/homestead,justinmoh/mockingj,gratif/homestead,tdondich/pmdev,erikbelusic/homestead-plus,alxy/homestead,johnpbloch/homestead,milkyway-multimedia/homestead,f3rland/homestead-mssql,ShaunaGordon/homestead,briankiewel/homestead,gbolahanalade/homestead,khanhicetea/homestead,NemoD503/habitat,johnpbloch/homestead,KatoPue/KatoStead,WouterJ/homestead,wardcraigj/jukebox,NemoD503/habitat,simensen/homestead,ananastech/fitnessapp,wardcraigj/jukebox,hoopyfrood/homestead,impleri/homestead,t-karim/Laravel,juan2ramos/agroseller,patrickgoudjoako/homestead,Cyruxx/homestead,gbolahanalade/homestead,leliviakid/TODO-Laravel-app,doniisetiiawan/homestead,carloct/homestead,doniisetiiawan/homestead,nennad/homestead,leliviakid/TODO-Laravel-app,tdondich/pmdev,Yannik/homestead,khanhicetea/homestead,SecureCloud-biz/homestead,eranshmil/homestead,adeubank/homestead,JoelESvensson/homestead,doniisetiiawan/homestead,wardcraigj/jukebox,hoopyfrood/homestead,gpcrocker88/homestead,justinmoh/mockingj,pedrofornaza/homestead,ananastech/fitnessapp,champjss/homestead,davidrushton/homestead,hibriiiiidge/LaravelProject,wardcraigj/jukebox,briankiewel/homestead,gpcrocker88/homestead,paulgeneres/homestead,distr0yer/laravel,erikbelusic/homestead-plus,laravel/homestead,jjpmann/homestead,Genisis/homestead,banaba0207/homestead,juan2ramos/agroseller,Genisis/homestead,SecureCloud-biz/homestead,wouterbulten/homestead,hibriiiiidge/LaravelProject,wouterbulten/homestead,crynobone/homestead,paulgeneres/homestead,theodenhollander/homestead,nickfan/homestead,alxy/homestead,theodenhollander/homestead,tdondich/pmdev,pedrofornaza/homestead,impleri/homestead,svpernova09/homestead,MageParts/homestead,laravel/homestead,ShaunaGordon/homestead,OlivierParent/homestead,t-karim/Laravel,banaba0207/homestead,carloct/homestead,distr0yer/laravel,leliviakid/TODO-Laravel-app,AndBicScadMedia/homestead,anggras/homestead,oscjack/vagrant,oscjack/vagrant,OlivierParent/homestead,hibriiiiidge/LaravelProject,JoelESvensson/homestead,hoopyfrood/homestead,Cyruxx/homestead,crynobone/homestead,gratif/homestead,jordanramstad/homestead,pedrofornaza/homestead,mdx-dev/homestead,shadow-droid/laravel-homestead,jordanramstad/homestead,shadow-droid/laravel-homestead,juan2ramos/agroseller,nickfan/homestead,carloct/homestead,svpernova09/homestead,t-karim/Laravel,alxy/homestead,jackmcgreevy/homestead,patrickgoudjoako/homestead,Cyruxx/homestead,mdx-dev/homestead,ananastech/fitnessapp,juan2ramos/agroseller,milkyway-multimedia/homestead,gbolahanalade/homestead,anggras/homestead,adeubank/homestead,gratif/homestead,jordanramstad/homestead,juan2ramos/agroseller,jjpmann/homestead,MageParts/homestead,impleri/homestead,theodenhollander/homestead,WouterJ/homestead,simensen/homestead,distr0yer/laravel,nickfan/homestead,khanhicetea/homestead,NemoD503/habitat,shadow-droid/laravel-homestead,simensen/homestead,oscjack/vagrant,AndBicScadMedia/homestead,johnpbloch/homestead,mdx-dev/homestead,nennad/homestead,gpcrocker88/homestead,briankiewel/homestead,svpernova09/homestead,jackmcgreevy/homestead,cthit/Homestead,f3rland/homestead-mssql,cthit/Homestead,KatoPue/KatoStead,champjss/homestead,milkyway-multimedia/homestead,jason-chang/centstead,WouterJ/homestead,ananastech/fitnessapp,banaba0207/homestead,laravel/homestead,AndBicScadMedia/homestead,crynobone/homestead,Yannik/homestead,jjpmann/homestead,OlivierParent/homestead,jason-chang/centstead,eranshmil/homestead,Genisis/homestead,distr0yer/laravel,ananastech/fitnessapp,ShaunaGordon/homestead,davidrushton/homestead,nennad/homestead,anggras/homestead,justinmoh/mockingj,JoelESvensson/homestead,banaba0207/homestead,distr0yer/laravel,adeubank/homestead,jackmcgreevy/homestead,leliviakid/TODO-Laravel-app,erikbelusic/homestead-plus,wardcraigj/jukebox |
0828bb22c269d90856744f80f9d0358cfc73bbda | .appveyor.yml | .appveyor.yml | #---------------------------------#
# Build Image #
#---------------------------------#
image: Visual Studio 2019
#---------------------------------#
# Build Script #
#---------------------------------#
build_script:
- ps: .\build.ps1 --target=CI
#---------------------------------#
# Tests
#---------------------------------#
test: off
#---------------------------------#
# Pull Requests #
#---------------------------------#
pull_requests:
do_not_increment_build_number: true
#---------------------------------#
# General #
#---------------------------------#
skip_branch_with_pr: true
#---------------------------------#
# Branches to build #
#---------------------------------#
branches:
# Whitelist
only:
- develop
- master
- /release/.*/
- /hotfix/.*/
#---------------------------------#
# Build Cache #
#---------------------------------#
cache:
- tools -> recipe.cake
#---------------------------------#
# Skip builds for doc changes #
#---------------------------------#
skip_commits:
# Regex for matching commit message
message: /\(doc\).*/
| #---------------------------------#
# Build Image #
#---------------------------------#
image: Ubuntu
#---------------------------------#
# Build Script #
#---------------------------------#
build_script:
- sh: ./build.sh --target=CI
#---------------------------------#
# Tests
#---------------------------------#
test: off
#---------------------------------#
# Pull Requests #
#---------------------------------#
pull_requests:
do_not_increment_build_number: true
#---------------------------------#
# General #
#---------------------------------#
skip_branch_with_pr: true
#---------------------------------#
# Branches to build #
#---------------------------------#
branches:
# Whitelist
only:
- develop
- master
- /release/.*/
- /hotfix/.*/
#---------------------------------#
# Build Cache #
#---------------------------------#
cache:
- tools -> recipe.cake
#---------------------------------#
# Skip builds for doc changes #
#---------------------------------#
skip_commits:
# Regex for matching commit message
message: /\(doc\).*/
| Use Ubuntu as build image | Use Ubuntu as build image
| YAML | apache-2.0 | Redth/Cake.Json,Redth/Cake.Json |
c3731da75ea4e2a900c5bd1a4e0a0ab75e3046ce | .appveyor.yml | .appveyor.yml | build: off
environment:
matrix:
- PYTHON_VERSION: 2.7
MINICONDA: C:\\Miniconda-x64
- PYTHON_VERSION: 3.6
MINICONDA: C:\\Miniconda36-x64
platform:
- x64
install:
- cmd: call %MINICONDA%\Scripts\activate.bat
- cmd: conda.exe update --yes --quiet conda
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- "conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy matplotlib setuptools pip cython>=0.20 pytest gsl"
- activate test-environment
# Environment variables for GSL linking
- set INCLUDE=CONDA_PREFIX\Library\include;%INCLUDE%
- set LIB=CONDA_PREFIX\Library\include;%LIB%
- set LIBPATH=CONDA_PREFIX\Library\include;%LIBPATH%
- python setup.py build_ext --coverage --single_ext --inplace
- python setup.py develop --single_ext
test_script:
- pytest -v tests\test_potential.py
| build: off
environment:
matrix:
- PYTHON_VERSION: 2.7
MINICONDA: C:\\Miniconda-x64
- PYTHON_VERSION: 3.6
MINICONDA: C:\\Miniconda36-x64
platform:
- x64
install:
- cmd: call %MINICONDA%\Scripts\activate.bat
- cmd: conda.exe update --yes --quiet conda
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
- conda info -a
- "conda create -q -n test-environment python=%PYTHON_VERSION% numpy scipy matplotlib setuptools pip cython>=0.20 pytest gsl"
- activate test-environment
# Environment variables for GSL linking
- set INCLUDE=%CONDA_PREFIX%\Library\include;%INCLUDE%
- set LIB=%CONDA_PREFIX%\Library\include;%LIB%
- set LIBPATH=%CONDA_PREFIX%\Library\include;%LIBPATH%
- python setup.py build_ext --coverage --single_ext --inplace
- python setup.py develop --single_ext
test_script:
- pytest -v tests\test_potential.py
| Fix GSL environment variables [travis skip] | Fix GSL environment variables [travis skip]
| YAML | bsd-3-clause | jobovy/galpy,jobovy/galpy,jobovy/galpy,jobovy/galpy |
a2a61214a9121204d8ccfb655dbcd61cff9b0e70 | .appveyor.yml | .appveyor.yml | image:
- Visual Studio 2015
environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
install:
- "%PYTHON%\\python.exe -m pip install --upgrade setuptools pip"
- "%PYTHON%\\python.exe -m pip install --upgrade virtualenv"
- "%PYTHON%\\python.exe -m pip --version"
- "%PYTHON%\\python.exe -m virtualenv --version"
- "git.exe --version"
- "%PYTHON%\\python.exe -m pip install --upgrade flake8 pylint codecov"
- "%PYTHON%\\python.exe -m pip install --upgrade pytest-flake8 pytest-pylint pytest-cov"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
build: off
test_script:
- "%PYTHON%\\python.exe -m pytest"
on_success:
- "%PYTHON%\\python.exe -m codecov -X gcov"
skip_branch_with_pr: true
| image:
- Visual Studio 2017
environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
install:
- "%PYTHON%\\python.exe -m pip install --upgrade setuptools pip"
- "%PYTHON%\\python.exe -m pip install --upgrade virtualenv"
- "%PYTHON%\\python.exe -m pip --version"
- "%PYTHON%\\python.exe -m virtualenv --version"
- "git.exe --version"
- "%PYTHON%\\python.exe -m pip install --upgrade flake8 pylint codecov"
- "%PYTHON%\\python.exe -m pip install --upgrade pytest-flake8 pytest-pylint pytest-cov"
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
build: off
test_script:
- "%PYTHON%\\python.exe -m pytest"
on_success:
- "%PYTHON%\\python.exe -m codecov -X gcov"
skip_branch_with_pr: true
| Switch to Visual Studio 2017 image in AppVeyor. | Switch to Visual Studio 2017 image in AppVeyor.
| YAML | mpl-2.0 | MozillaSecurity/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz,nth10sd/funfuzz,MozillaSecurity/funfuzz,nth10sd/funfuzz |
c550cb6001c9a4297c788e3bd7751b757ab3883f | .travis.yml | .travis.yml | language: php
php:
- 5.3
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
before_script:
- if [ "$TRAVIS_PHP_VERSION" = "5.3" ]; then export COVERAGE=--coverage-clover=build/logs/clover.xml; else export COVERAGE=; fi
- if ( test ! -z $COVERAGE ); then composer require codeclimate/php-test-reporter:@dev --dev; fi
script:
- phpunit $COVERAGE
after_script:
- if ( test ! -z $COVERAGE ); then wget https://scrutinizer-ci.com/ocular.phar; fi
- if ( test ! -z $COVERAGE ); then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml ;fi
- if ( test ! -z $COVERAGE ); then vendor/bin/test-reporter --stdout > build/logs/clover.json; fi
- 'if ( test ! -z $COVERAGE ); then curl -X POST -d @build/logs/clover.json -H "Content-Type: application/json" -H "User-Agent: Code Climate (PHP Test Reporter v1.0.1-dev)" https://codeclimate.com/test_reports; fi'
- if ( test ! -z $COVERAGE ); then vendor/bin/coveralls -v; fi
notifications:
email: false
| language: php
php:
- 5.3
sudo: false
install: travis_retry composer install --no-interaction --prefer-source
before_script:
- composer self-update
- if [ "$TRAVIS_PHP_VERSION" = "5.3" ]; then export COVERAGE=--coverage-clover=build/logs/clover.xml; else export COVERAGE=; fi
- if ( test ! -z $COVERAGE ); then composer require codeclimate/php-test-reporter:@dev --dev; fi
script:
- phpunit $COVERAGE
after_script:
- if ( test ! -z $COVERAGE ); then wget https://scrutinizer-ci.com/ocular.phar; fi
- if ( test ! -z $COVERAGE ); then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml ;fi
- if ( test ! -z $COVERAGE ); then vendor/bin/test-reporter --stdout > build/logs/clover.json; fi
- 'if ( test ! -z $COVERAGE ); then curl -X POST -d @build/logs/clover.json -H "Content-Type: application/json" -H "User-Agent: Code Climate (PHP Test Reporter v1.0.1-dev)" https://codeclimate.com/test_reports; fi'
- if ( test ! -z $COVERAGE ); then vendor/bin/coveralls -v; fi
notifications:
email: false
| Update composer during ci run. | Update composer during ci run.
| YAML | mit | gielfeldt/shutdownhandler |
03fd1eddd01f56db560d524c267c2001a7463739 | .travis.yml | .travis.yml | language: python
python:
- '2.6'
- '2.7'
branches:
only:
- develop
install: pip install -r requirements.txt --use-mirrors
script: python setup.py test
| language: python
python:
- '2.6'
- '2.7'
branches:
only:
- develop
install: pip install -r requirements.txt --use-mirrors
script: python setup.py test
notifications:
irc:
channels: "irc.freenode.org#salt"
on_success: change
on_failure: change
| Send Travis CI notices to IRC. | Send Travis CI notices to IRC.
| YAML | apache-2.0 | saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt,saltstack/salt |
cc4828b5da04d67a329c5e136a7daec7282e2b6f | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.8"
- "0.10"
| language: node_js
node_js:
- "0.10"
- "0.12"
| Update Travis to test Node 0.12 instead of 0.8 | Update Travis to test Node 0.12 instead of 0.8
| YAML | mit | EvanHahn/arraywrap.js |
c5ba2a36e8b21e494b7044e6ef1abcf4fa2de26e | .travis.yml | .travis.yml | language: node_js
node_js:
- node
services:
- docker
before_install:
- pip install docker-compose
after_success:
- bash ./scripts/ci-deployment/deploy.sh
script:
- docker-compose -f docker-compose-tests.yml build travis-tests
- docker-compose -f docker-compose-tests.yml run travis-tests
after_script:
- docker-compose -f docker-compose-tests.yml down -v
| language: node_js
node_js:
- node
services:
- docker
install:
- sudo sysctl -w vm.max_map_count=262144
before_install:
- pip install docker-compose
after_success:
- bash ./scripts/ci-deployment/deploy.sh
script:
- docker-compose -f docker-compose-tests.yml build travis-tests
- docker-compose -f docker-compose-tests.yml run travis-tests
after_script:
- docker-compose -f docker-compose-tests.yml down -v
| Increase virtual memory on Travis | :godmode: Increase virtual memory on Travis
https://www.elastic.co/guide/en/elasticsearch/reference/current/vm-max-map-count.html
| YAML | mit | nhsuk/gp-finder,nhsuk/gp-finder |
8f1c475347ca637417ede6b573a81aa4e8145c0b | .travis.yml | .travis.yml | language: generic
services:
- docker
cache:
directories:
- $HOME/.ccache
env:
global:
- CCACHE_DIR=$HOME/.ccache
matrix:
- ROS_DISTRO="kinetic" ROS_REPO=ros UPSTREAM_WORKSPACE=file CATKIN_LINT=true
- ROS_DISTRO="melodic" ROS_REPO=ros UPSTREAM_WORKSPACE=file CATKIN_LINT=true
- ROS_DISTRO="kinetic" CLANG_FORMAT_CHECK=file CLANG_FORMAT_VERSION=6.0
install:
- git clone --depth=1 https://github.com/ros-industrial/industrial_ci.git .ci_config
script:
- .ci_config/travis.sh
| language: generic
services:
- docker
cache:
directories:
- $HOME/.ccache
env:
global:
- CCACHE_DIR=$HOME/.ccache
matrix:
- ROS_DISTRO="kinetic" ROS_REPO=ros UPSTREAM_WORKSPACE=file
- ROS_DISTRO="melodic" ROS_REPO=ros UPSTREAM_WORKSPACE=file
- ROS_DISTRO="kinetic" CLANG_FORMAT_CHECK=file CLANG_FORMAT_VERSION=6.0
install:
- git clone --depth=1 https://github.com/ros-industrial/industrial_ci.git .ci_config
script:
- .ci_config/travis.sh
| Revert "explicitly add catkin_lint to the ci pipeline" | Revert "explicitly add catkin_lint to the ci pipeline"
This reverts commit 3108a45a6ea3fa81533e7e50f62d3b1bfdc8f864.
| YAML | apache-2.0 | UniversalRobots/Universal_Robots_Client_Library,UniversalRobots/Universal_Robots_Client_Library |
cea33492222061cc3841b927a57d40ece344b66b | .travis.yml | .travis.yml | language: objective-c
sudo: false # Enable container-based builds
before_install: brew update
install: brew install python3
before_script: python3 setup.py -q install
script:
- cd $TRAVIS_BUILD_DIR/examples/cats && ./breed.sh && clowder herd
- cd $TRAVIS_BUILD_DIR/examples/llvm-projects && ./breed.sh && clowder herd
branches:
only: # whitelist
- master
notifications:
email: false
| language: objective-c
sudo: false # Enable container-based builds
before_install:
- brew update
- echo 'Host *' >> ~/.ssh/config
- echo ' StrictHostKeyChecking no' >> ~/.ssh/config
install: brew install python3
before_script: python3 setup.py -q install
script:
- cd $TRAVIS_BUILD_DIR/examples/cats && ./breed.sh && clowder herd
- cd $TRAVIS_BUILD_DIR/examples/llvm-projects && ./breed.sh && clowder herd
branches:
only: # whitelist
- master
notifications:
email: false
| Disable ssh StrictHostKeyChecking on Travis CI | Disable ssh StrictHostKeyChecking on Travis CI
| YAML | mit | JrGoodle/clowder,JrGoodle/clowder,JrGoodle/clowder |
b85a3976e339ceddbc7723cb8db07d37afe4807b | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.1
- 1.9.2
- jruby
- rbx
- ree
| rvm:
- 1.8.7
- 1.9.1
- 1.9.2
- jruby
- rbx
- ree
- ruby-head
| Test against ruby-head (currently 1.9.3) | Test against ruby-head (currently 1.9.3)
| YAML | mit | mike-north/twitter,noahd1/twitter,travis-repos/twitter,sideci-sample/sideci-sample-twitter,jdrago999/twitter,yujinakayama/twitter,develon/twitter,megashurik/twitter,ariarijp/twitter,stkn417/twitter,producthunt/twitter,matthewtidd/twitter,DarbySmart/twitter,bdares/me2day,creeshla/ruby-twitter,backupify/twitter,timsly/twitter,chute/twitter,na-g/twitter,dantame/twitter,stefansundin/twitter,terry/twitter,tigerlily/twitter,kevinmel2000/twitter,sferik/twitter,SophieDeBenedetto/twitter,kmcmcurtis7/twitter,roschaefer/twitter,universsky/twitter,bonekost/twitter,paulgonz6/twitter,thomas-holmes/twitter,jasonbodie/twitter,istan/twitter2xx |
58f3540b81940622a98738f5e80785c0b1636e17 | .travis.yml | .travis.yml | language: java
jdk:
- oraclejdk8 | language: java
jdk:
- oraclejdk8
script:
- sudo apt-get update && sudo apt-get install oracle-java8-installer
- java -version | Update Java version in Travis to avoid build issue | Update Java version in Travis to avoid build issue
| YAML | apache-2.0 | dstl/baleen,dstl/baleen,dstl/baleen,dstl/baleen |
8ecb51bcb335d0d31a1b848387ae6963440bd4c0 | .travis.yml | .travis.yml | language: python
python: "2.7"
env:
- TOXENV=py27-d15
- TOXENV=py27-d16
- TOXENV=py27-d17
- TOXENV=py33-d15
- TOXENV=py33-d16
- TOXENV=py33-d17
- TOXENV=cov
branches:
only:
- master
- develop
install: pip install --quiet tox
script: tox
after_script:
- if [ $TOXENV == "cov" ]; then
pip install --quiet coveralls;
coveralls;
fi
| language: python
python: "2.7"
env:
- TOXENV=py27-d15
- TOXENV=py27-d16
- TOXENV=py27-d17
- TOXENV=py33-d15
- TOXENV=py33-d16
- TOXENV=py33-d17
- TOXENV=cov
sudo: false
branches:
only:
- master
- develop
install: pip install --quiet tox
script: tox
after_script:
- if [ $TOXENV == "cov" ]; then
pip install --quiet coveralls;
coveralls;
fi
| Use the new build env on Travis | Use the new build env on Travis
faster vms, more cpu, more ram, better queue management
docs coming soon | YAML | mit | pavlov99/jsonapi,pavlov99/jsonapi |
b81d3412be30eb765f53cbed93d17b926bb27aaf | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.8"
| Drop back to node 0.8 for now | Drop back to node 0.8 for now
| YAML | mit | honeybadger-io/honeybadger-js,honeybadger-io/honeybadger-js,honeybadger-io/honeybadger-js,honeybadger-io/honeybadger-js,honeybadger-io/honeybadger-js,honeybadger-io/honeybadger-js |
56c66a62343032559694588233b7139e1c62808a | .travis.yml | .travis.yml | language: generic
os:
- osx
osx_image: xcode9.3
script:
- swift build -Xswiftc -target -Xswiftc x86_64-apple-macosx10.12
- swift test -Xswiftc -target -Xswiftc x86_64-apple-macosx10.12
| language: generic
os:
- osx
osx_image: xcode10
script:
- swift build -Xswiftc -target -Xswiftc x86_64-apple-macosx10.12
- swift test -Xswiftc -target -Xswiftc x86_64-apple-macosx10.12
| Update Travis CI configuration to use Xcode 10 | Update Travis CI configuration to use Xcode 10
#4
| YAML | apache-2.0 | codebrewer/HillListsBackupLibrary,codebrewer/HillListsBackupLibrary |
b28129693c744c19651821546e46fa727f8b50c9 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.4.1
- jruby
notifications:
email:
on_failure: always
on_success: never
| language: ruby
rvm:
- 2.4.1
- jruby-1.7.26
notifications:
email:
on_failure: always
on_success: never
| Add an explicit version of JRuby to build against | Add an explicit version of JRuby to build against
| YAML | mit | chrisalley/pundit-matchers |
266247f7dad4ea7ea456dc3cee7da576880a9466 | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk11
- oraclejdk10
- oraclejdk9
- oraclejdk8
- oraclejdk7
- openjdk11
- openjdk10
- openjdk9
- openjdk8
- openjdk7
- openjdk6
env:
- TERM=dumb
after_success:
- gradle cobertura coveralls
| sudo: false
language: java
jdk:
- oraclejdk11
- oraclejdk10
- oraclejdk9
- oraclejdk8
- openjdk11
- openjdk10
- openjdk9
- openjdk8
- openjdk7
env:
- TERM=dumb
after_success:
- gradle cobertura coveralls
| Remove a few JDK's that are not installed by default anymore, they're past EOL anyway | Remove a few JDK's that are not installed by default anymore, they're past EOL anyway
| YAML | apache-2.0 | rholder/esthree,rholder/esthree |
7a1873ecd9623257584c17c7a7b29a4b6f6c7550 | .travis.yml | .travis.yml | language: node_js
node_js: 6.9.1 # latest LTS
| language: node_js
node_js:
- "node"
cache:
directories:
- "node_modules"
| Use lastest Node and cache node_modules | Use lastest Node and cache node_modules
| YAML | mit | github/time-elements,github/time-elements |
769ded11b725ddc0599de3382d638493d983566e | .travis.yml | .travis.yml | language: python
# Enable Travis container-based infrastructure
sudo: false
cache:
pip: true
directories:
- test/data/nidmresults-examples
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt
- python setup.py install # install nidmfsl from sources
- curl -sLo - https://github.com/github/git-lfs/releases/download/v1.1.2/git-lfs-linux-amd64-1.1.2.tar.gz | tar xzvf -
- export PATH=$PATH:`pwd`/git-lfs-1.1.2
- cd test/data/nidmresults-examples
- git lfs install
- cd ../../..
- pip --version
# Packages only needed for testing (others are set up in requirements.txt)
- pip install vcrpy
- pip install ddt
- pip install gitpython
- export GIT_PYTHON_TRACE='full'
# command to run tests, e.g. python setup.py test
script:
# - coverage run --source=nidmfsl -m unittest discover
- python test/export_test_battery.py
- python -m unittest discover
- cat debug.log
# Update subtree nidm from main nidm repository
before_install:
- git config --global user.name "TravisCI"
- git config --global user.email "travis@dummy.com"
# after_success:
# coveralls | language: python
# Enable Travis container-based infrastructure
sudo: false
cache:
pip: true
directories:
- test/data/nidmresults-examples
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt
- python setup.py install # install nidmfsl from sources
# Install nidmresults from source in GitHub repo
- pip install --upgrade git+https://github.com/cmaumet/nidmresults.git@032_fixes#egg=nidmresults
- curl -sLo - https://github.com/github/git-lfs/releases/download/v1.1.2/git-lfs-linux-amd64-1.1.2.tar.gz | tar xzvf -
- export PATH=$PATH:`pwd`/git-lfs-1.1.2
- cd test/data/nidmresults-examples
- git lfs install
- cd ../../..
- pip --version
# Packages only needed for testing (others are set up in requirements.txt)
- pip install vcrpy
- pip install ddt
- pip install gitpython
- export GIT_PYTHON_TRACE='full'
# command to run tests, e.g. python setup.py test
script:
# - coverage run --source=nidmfsl -m unittest discover
- python test/export_test_battery.py
- python -m unittest discover
- cat debug.log
# Update subtree nidm from main nidm repository
before_install:
- git config --global user.name "TravisCI"
- git config --global user.email "travis@dummy.com"
# after_success:
# coveralls | Test against dev version of nidmresults module | Test against dev version of nidmresults module
| YAML | mit | cmaumet/nidm-results_fsl,cmaumet/nidmresults-fsl,incf-nidash/nidmresults-fsl,incf-nidash/nidm-results_fsl |
4ce4008b463dca661f969d33fb398a820de619be | .travis.yml | .travis.yml | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.5
gemfile:
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
matrix:
exclude:
- rvm: 1.8.7
gemfile: gemfiles/4.0.gemfile
- rvm: 1.8.7
gemfile: gemfiles/4.1.gemfile
- rvm: 1.9.2
gemfile: gemfiles/4.0.gemfile
- rvm: 1.9.2
gemfile: gemfiles/4.1.gemfile | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- 2.1.5
gemfile:
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.gemfile
- gemfiles/4.2.gemfile
matrix:
exclude:
- rvm: 1.8.7
gemfile: gemfiles/4.0.gemfile
- rvm: 1.8.7
gemfile: gemfiles/4.1.gemfile
- rvm: 1.8.7
gemfile: gemfiles/4.2.gemfile
- rvm: 1.9.2
gemfile: gemfiles/4.0.gemfile
- rvm: 1.9.2
gemfile: gemfiles/4.1.gemfile
- rvm: 1.9.2
gemfile: gemfiles/4.2.gemfile | Exclude rails 4.2 from ruby < 1.9.3 build in Travis | Exclude rails 4.2 from ruby < 1.9.3 build in Travis
| YAML | mit | moiristo/deep_cloneable |
6c55d94a2539774d6a190814fa9bb996c8b68b94 | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
install:
- pip install tox-travis
script:
- tox
| sudo: false
language: python
addons:
apt:
packages:
- jsdoc-toolkit
python:
- "2.7"
- "3.3"
install:
- pip install tox-travis
script:
- tox
| Install an ancient version of jsdoc. | Install an ancient version of jsdoc.
| YAML | mit | erikrose/sphinx-js,erikrose/sphinx-js,erikrose/sphinx-js |
a8e9b105e1250ba9221258c8bb7ab849d8e4a373 | .travis.yml | .travis.yml | before_install: gem update bundler
language: ruby
rvm:
- 2.1
- 2.2
script:
- bundle exec rake test_app
- bundle exec rake spec
| before_install: gem update bundler
language: ruby
rvm:
- 2.2
- 2.3
- 2.4
- 2.5
script:
- bundle exec rake test_app
- bundle exec rake spec
| Drop Ruby 2.1 support, but allow 2.3, 2.4 and 2.5 | Drop Ruby 2.1 support, but allow 2.3, 2.4 and 2.5
| YAML | bsd-3-clause | berkes/spree_billing_sisow,berkes/spree_billing_sisow |
60fd8e1cb213e8c29d9c14c7fdcc1cff179a56e1 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1.1
branches:
only:
- master
- develop
before_script:
- mysql -e 'create database saml_test;'
script:
- RAILS_ENV=test bundle exec rake --trace db:migrate test | language: ruby
rvm:
- 2.1.1
branches:
only:
- master
- develop
before_script:
- mysql -e 'create database saml_test;'
script:
- RAILS_ENV=test bundle exec rake --trace db:migrate | Correct erronous TravisCI script command | Correct erronous TravisCI script command
| YAML | apache-2.0 | ausaccessfed/saml-service,ausaccessfed/saml-service,ausaccessfed/saml-service,ausaccessfed/saml-service |
6979cbcb95d1c72dc24fa505235c4bbe497696c1 | .travis.yml | .travis.yml | sudo: false
language: python
matrix:
include:
- dist: trusty
python: 2.6
- dist: xenial
python: 2.7
addons:
apt:
packages:
- scons
- libdbi-perl
cache:
pip: true
directories:
- $HOME/perl5
install:
- export PERL5LIB=~/perl5/lib/perl5
- export PYTHONPATH=$(echo $(dirname $(which python))/../lib/python*/site-packages)
- export PATH=~/perl5/bin:$PATH
- pip install coverage flask
- curl -L https://cpanmin.us/ -o cpanm && chmod a+x cpanm
- ./cpanm --local-lib=~/perl5 --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov Test::Exception Test::Output Devel::Cover MIME::Lite
- git clone --depth=5 https://github.com/salilab/saliweb
- (cd saliweb && scons modeller_key=UNKNOWN pythondir=$PYTHONPATH perldir=~/perl5/lib/perl5 prefix=~/usr webdir=~/www install)
script:
- scons coverage=true python=$(which python) test
after_success:
- bash <(curl -s https://codecov.io/bash)
- cover -report codecov
| sudo: false
language: python
matrix:
include:
- dist: trusty
python: 2.6
- dist: xenial
python: 2.7
addons:
apt:
packages:
- scons
- libdbi-perl
cache:
pip: true
directories:
- $HOME/perl5
install:
- export PERL5LIB=~/perl5/lib/perl5
- export PYTHONPATH=$(echo $(dirname $(which python))/../lib/python*/site-packages)
- export PATH=~/perl5/bin:$PATH
- pip install coverage flask
- curl -L https://cpanmin.us/ -o cpanm && chmod a+x cpanm
- ./cpanm --local-lib=~/perl5 --quiet --notest --skip-satisfied Devel::Cover::Report::Codecov Test::Exception Test::Output Devel::Cover MIME::Lite
- git clone --depth=5 https://github.com/salilab/saliweb
- (cd saliweb && scons modeller_key=UNKNOWN pythondir=$PYTHONPATH perldir=~/perl5/lib/perl5 prefix=~/usr webdir=~/www install && touch $PYTHONPATH/saliweb/frontend/config.py)
script:
- scons coverage=true python=$(which python) test
after_success:
- bash <(curl -s https://codecov.io/bash)
- cover -report codecov
| Make a dummy config.py for saliweb.frontend | Make a dummy config.py for saliweb.frontend
| YAML | lgpl-2.1 | salilab/modloop,salilab/modloop |
7c6790032f2d6a90cf0b25ec68af407ca156a9e6 | .travis.yml | .travis.yml | sudo: false
language: c
branches:
except:
- /^[0-9]+\.[0-9]+\.[0-9]$/
matrix:
include:
- os: linux
dist: trusty
language: python
python: "2.6"
- os: linux
dist: bionic
language: python
python: "2.7"
- os: linux
dist: trusty
language: python
python: "3.2"
- os: linux
dist: trusty
language: python
python: "3.3"
- os: linux
dist: bionic
language: python
python: "3.7"
- os: linux
dist: bionic
language: python
python: "pypy"
script:
- python run.py deps
- python run.py ci
| sudo: false
language: c
branches:
except:
- /^[0-9]+\.[0-9]+\.[0-9]$/
matrix:
include:
- os: linux
dist: trusty
language: python
python: "2.6"
- os: linux
dist: bionic
language: python
python: "2.7"
- os: linux
dist: trusty
language: python
python: "3.2"
- os: linux
dist: trusty
language: python
python: "3.3"
- os: linux
dist: bionic
language: python
python: "3.7"
- os: linux
dist: xenial
language: python
python: "pypy"
script:
- python run.py deps
- python run.py ci
| Fix PyPy tests on Travis | Fix PyPy tests on Travis
| YAML | mit | wbond/asn1crypto |
cd7645784b210c24cb43fde037562c385043d767 | .travis.yml | .travis.yml | language: ruby
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
| language: ruby
rvm:
- 1.9.3
- 2.0.0
| Drop support for Ruby 1.8.7. | Drop support for Ruby 1.8.7.
| YAML | mit | amccloud/dealer |
8b48dfe06f7cc1a017eaaa46757289b80a2eeaf4 | .travis.yml | .travis.yml | language: ruby
sudo: false
matrix:
include:
- rvm: 2.3.1
script:
- bundle exec danger
- rvm: 2.3.1
- rvm: 2.3.0
- rvm: 2.2.5
- rvm: 2.4.0
- rvm: rbx-2
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.7.0
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
before_install:
- gem update --system
- gem install bundler
bundler_args: --without development
| language: ruby
sudo: false
matrix:
include:
- rvm: 2.4.1
- rvm: 2.4.1
script:
- bundle exec danger
- rvm: jruby-9.1.12.0
- rvm: jruby-head
- rvm: 2.2.7
- rvm: 2.3.4
- rvm: rbx-2
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
before_install:
- gem update --system
- gem install bundler
bundler_args: --without development
| Use latest stable releases of all rubies in CI | Use latest stable releases of all rubies in CI
| YAML | mit | codegram/hyperclient,dblock/hyperclient,jufemaiz/hyperclient |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.