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
|
---|---|---|---|---|---|---|---|---|---|
f5d94963e4caa7bc785ef94a2719c8394f8f0393
|
.travis.yml
|
.travis.yml
|
language: erlang
env:
- LUAROCKS_VERSION="2.1.2"
branches:
only:
- master
install:
- sudo apt-get install npm
- sudo npm update npm -g
- sudo npm config set registry http://registry.npmjs.org/
- sudo npm install -g docco
- sudo apt-get install lua5.2
- sudo apt-get install lua5.2-dev
- wget http://luarocks.org/releases/luarocks-${LUAROCKS_VERSION}.tar.gz
- tar zxvpf luarocks-${LUAROCKS_VERSION}.tar.gz
- cd luarocks-${LUAROCKS_VERSION}
- ./configure --prefix=${HOME} --lua-version=5.2 --with-lua-include="/usr/include/lua5.2"
- make bootstrap
- cd ..
- ${HOME}/bin/luarocks install luassert
- ${HOME}/bin/luarocks install luacov
- ${HOME}/bin/luarocks install luacheck
script: "./bin/make-all"
notifications:
recipients:
- [email protected]
email:
on_success: change
on_failure: always
|
language: erlang
env:
- LUAROCKS_VERSION="2.1.2"
- PATH=${PATH}:${HOME}/bin
branches:
only:
- master
install:
- sudo apt-get install npm
- sudo npm update npm -g
- sudo npm config set registry http://registry.npmjs.org/
- sudo npm install -g docco
- sudo apt-get install lua5.2
- sudo apt-get install lua5.2-dev
- wget http://luarocks.org/releases/luarocks-${LUAROCKS_VERSION}.tar.gz
- tar zxvpf luarocks-${LUAROCKS_VERSION}.tar.gz
- cd luarocks-${LUAROCKS_VERSION}
- ./configure --prefix=${HOME} --lua-version=5.2 --with-lua-include="/usr/include/lua5.2"
- make bootstrap
- cd ..
- ${HOME}/bin/luarocks install luassert
- ${HOME}/bin/luarocks install luacov
- ${HOME}/bin/luarocks install luacheck
script: "./bin/make-all"
notifications:
recipients:
- [email protected]
email:
on_success: change
on_failure: always
|
Add /home/alinard/bin to path for Travis.
|
Add /home/alinard/bin to path for Travis.
|
YAML
|
mit
|
CosyVerif/library,CosyVerif/library,CosyVerif/library
|
c2ab5f2bbf57484a3761023061222e6b96b6eca5
|
.travis.yml
|
.travis.yml
|
language: c
sudo: false
services:
- docker
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-docker.sh
script: bash ./.travis-docker.sh
env:
global:
- PACKAGE=pkcs11
- DISTRO=debian-stable
matrix:
- OCAML_VERSION=4.02.3
- OCAML_VERSION=4.03.0
- OCAML_VERSION=4.04.0
|
language: c
sudo: false
services:
- docker
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-docker.sh
script: bash ./.travis-docker.sh
env:
global:
- PACKAGE=pkcs11
- DISTRO=debian-stable
matrix:
- OCAML_VERSION=4.02.3
- OCAML_VERSION=4.03.0
- OCAML_VERSION=4.04.0
- OCAML_VERSION=4.03.0 DISTRO=alpine-3.5
|
Add a CI job on Alpine
|
Add a CI job on Alpine
|
YAML
|
bsd-2-clause
|
cryptosense/pkcs11
|
61772e71c0caefeae40b067a82b592628e151553
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
|
Build with Node.js 10 on Travis CI.
|
Build with Node.js 10 on Travis CI.
|
YAML
|
mit
|
bigeasy/turnstile
|
ae96a0b23bfa809a2bfa25d49c7244ce8b781e7f
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.1.7
- 2.3.1
# User container based travis infrastructure which allows caching
# features for open source projects.
sudo: false
cache:
bundler: true
directories:
- node_modules
env:
- PAGEFLOW_RAILS_VERSION=4.2.6 PUBLISH_THEME_DOC=true COVERALLS_PARALLEL=true
services:
- redis-server
before_install:
- nvm install stable
before_script:
- bin/npm install
- bin/npm run build
- bin/rake pageflow:dummy
- bin/rake app:assets:precompile
script:
- bin/rspec
- bin/teaspoon
- bin/npm test
after_success:
- bundle exec publish-pageflow-theme-doc
notifications:
webhooks: https://coveralls.io/webhook?service_name=travis-ci
|
language: ruby
rvm:
- 2.1.7
- 2.3.1
# User container based travis infrastructure which allows caching
# features for open source projects.
sudo: false
cache:
bundler: true
directories:
- node_modules
env:
- PAGEFLOW_RAILS_VERSION=4.2.6 PUBLISH_THEME_DOC=true COVERALLS_PARALLEL=true
services:
- redis-server
before_install:
- nvm install stable
before_script:
- bin/npm install
- bin/npm run build
# We need to use "bundle exec" instead of binstubs until
# https://github.com/rubygems/rubygems/issues/2055 is fixed
- bundle exec rake pageflow:dummy
- bin/rake app:assets:precompile
script:
- bin/rspec
- bin/teaspoon
- bin/npm test
after_success:
- bundle exec publish-pageflow-theme-doc
notifications:
webhooks: https://coveralls.io/webhook?service_name=travis-ci
|
Fix dummy app generation on Travis for Rubygems 2.7
|
Fix dummy app generation on Travis for Rubygems 2.7
Calling `bundle exec` from a ruby script after Bundler has been set up
fails for vendored Bundler version that comes with Rubygems 2.7.
https://github.com/rubygems/rubygems/issues/2055
`rake pageflow:dummy` invokes `bundle exec rails new`. Calling `rake`
via `bundle exec` can be used as a temporary workaround.
|
YAML
|
mit
|
tf/pageflow,codevise/pageflow,codevise/pageflow,Modularfield/pageflow,Modularfield/pageflow,codevise/pageflow,codevise/pageflow,Modularfield/pageflow,tf/pageflow,Modularfield/pageflow,tf/pageflow,tf/pageflow
|
a81b45dd5ac17e90104f6ecc6727459902dfa790
|
.travis.yml
|
.travis.yml
|
language: python
matrix:
include:
- python: 3.3
- python: 3.4
- python: 3.5
- python: 3.5-dev
- python: nightly
allow_failures:
- python: 3.3
fast_finish: true
install: python setup.py install
services: rabbitmq
before_script:
- pushd test_project
- celery -A cosmic_ray.tasks.worker worker &
- popd
script:
- py.test cosmic_ray/test
- cd test_project
- bash run_tests.sh
|
language: python
matrix:
include:
- python: 3.4
- python: 3.5
- python: 3.5-dev
- python: nightly
fast_finish: true
install: python setup.py install
services: rabbitmq
before_script:
- pushd test_project
- celery -A cosmic_ray.tasks.worker worker &
- popd
script:
- py.test cosmic_ray/test
- cd test_project
- bash run_tests.sh
|
Remove Python 3.3 from test matrix
|
Remove Python 3.3 from test matrix
`cosmic_ray/importing.py` makes use of
`importlib.machinery.ModuleSpec` which was introduced in 3.4 and
we don't want to backport and support that for now.
|
YAML
|
mit
|
sixty-north/cosmic-ray
|
69e15b6ae6326692a411e13ff0ffc2334fffdcdd
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "7"
after_success:
- npm install -g codeclimate-test-reporter lcov-result-merger
- lcov-result-merger 'coverage/*.info' coverage.info
- codeclimate-test-reporter < coverage.info
services:
- mongodb
addons:
code_climate:
repo_token: 456ad90bfb6a7127443d64b5100c75db696e939578004596a8adab9c9c15a1e5
chrome: stable
notifications:
slack: momentum-js:6TmOdr6hT41DKexW452oc4L7
|
language: node_js
node_js:
- "7"
script:
- npm run test-client && npm run test-server
after_success:
- npm install -g codeclimate-test-reporter lcov-result-merger
- lcov-result-merger 'coverage/*.info' coverage.info
- codeclimate-test-reporter < coverage.info
services:
- mongodb
addons:
code_climate:
repo_token: 456ad90bfb6a7127443d64b5100c75db696e939578004596a8adab9c9c15a1e5
chrome: stable
notifications:
slack: momentum-js:6TmOdr6hT41DKexW452oc4L7
|
Remove spec cleanup from Travis-CI build
|
Remove spec cleanup from Travis-CI build
|
YAML
|
mit
|
kylekatarnls/momentum,kylekatarnls/momentum
|
284bc287638253ece54a3042302ed2d71bf2c58d
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
notifications:
email:
recipients:
- [email protected]
|
Stop spamming the mailing list :).
|
Stop spamming the mailing list :).
|
YAML
|
mit
|
agoragames/oembedr,llxff/oembedr
|
8b8062a38d4af77458220e82deecb680052f8f79
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob --loglevel error
script: "bob build"
|
language: node_js
node_js:
- "0.11"
- "0.10"
before_install:
- npm update -g npm
- npm install -g bob coveralls --loglevel error
script:
- bob build
- cat .bob/coverage/buster-istanbul/lcov.info | coveralls
|
Add coveralls report to CI run.
|
Add coveralls report to CI run.
|
YAML
|
mit
|
cliffano/bagofrequest
|
fba176e250661c5dcee01f16b81e8e8ee333a19e
|
.travis.yml
|
.travis.yml
|
# Currently fails on JRuby, partly due to Nokogiri behaving differently,
# and partly for some other reason I'm not sure about regarding
# Hexp::Node::Normalize
language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1
- rbx
- jruby
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: jruby
- rvm: ruby-head
- rvm: jruby-head
|
# Currently fails on JRuby, partly due to Nokogiri behaving differently,
# and partly for some other reason I'm not sure about regarding
# Hexp::Node::Normalize
language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1
- rbx
- jruby
- jruby-head
- ruby-head
matrix:
allow_failures:
- rvm: jruby
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx
|
Allow rbx to fail on Travis
|
Allow rbx to fail on Travis
|
YAML
|
mit
|
plexus/hexp
|
a3f3da4aa945fba096ac7780b9124f8de0fd6e26
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
before_install:
# install GCC v4.8 with better C++11 support, required to build Brotli extension
# See: https://github.com/travis-ci/travis-ci/issues/1379
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get install -qq gcc-4.8
- sudo apt-get install -qq g++-4.8
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- g++ --version
install:
# To compile Brotli for pypy3 we also need to link libstdc++.
# See: https://github.com/behdad/fonttools/issues/339
- if [[ $TRAVIS_PYTHON_VERSION == pypy3 ]]; then
pip install --global-option build_ext --global-option --libraries=stdc++ -vr requirements.txt;
else
pip install -vr requirements.txt;
fi
- make install
script:
- make check
notifications:
irc: "irc.freenode.org##fonts"
email: [email protected]
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "pypy"
# - "pypy3" # Disable pypy3 until Travis updates it to >= 3.3
before_install:
# install GCC v4.8 with better C++11 support, required to build Brotli extension
# See: https://github.com/travis-ci/travis-ci/issues/1379
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get install -qq gcc-4.8
- sudo apt-get install -qq g++-4.8
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
- g++ --version
install:
# To compile Brotli for pypy3 we also need to link libstdc++.
# See: https://github.com/behdad/fonttools/issues/339
- if [[ $TRAVIS_PYTHON_VERSION == pypy3 ]]; then
pip install --global-option build_ext --global-option --libraries=stdc++ -vr requirements.txt;
else
pip install -vr requirements.txt;
fi
- make install
script:
- make check
notifications:
irc: "irc.freenode.org##fonts"
email: [email protected]
|
Disable pypy3 until Travis updates it to >= 3.3
|
[Travis] Disable pypy3 until Travis updates it to >= 3.3
|
YAML
|
mit
|
googlefonts/fonttools,fonttools/fonttools
|
a395bb09df89e6bfce48ac95eed275aeeb650055
|
.travis.yml
|
.travis.yml
|
language: perl
services:
- docker
env:
global:
- ES="localhost:9200"
sudo: false
matrix:
fast_finish: true
include:
- perl: dev
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.30
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.28
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.26
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.24
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
allow_failures:
- perl: dev
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
before_install:
- cpanm LWP::Simple # optional dependency
- ./travis/run_es_docker.sh
- ./travis/checkout_yaml_test.pl
script:
- prove -l t/{1,2,3,4,5,6,9}*/*.t
- prove -l t/Client_$CLIENT_VER/*.t
- ./test/run_yaml_tests.pl
|
language: perl
services:
- docker
env:
global:
- ES="localhost:9200"
sudo: false
matrix:
fast_finish: true
include:
- perl: dev
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.30
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.28
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.26
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
- perl: 5.24
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
allow_failures:
- perl: dev
env: CLIENT_VER="6_0" ES_VERSION="6.0.0"
before_install:
- cpanm Dist::Zilla
- cd ./dist && dzil --authordeps --missing | cpanm && dzil --listdeps --missing | cpanm
- ./travis/run_es_docker.sh
- ./travis/checkout_yaml_test.pl
script:
- cd ./dist-client-6_0 && dzil test --all
- cd ./dist-client-6_0-async && dzil test --all
|
Use of dzil test command
|
Use of dzil test command
|
YAML
|
apache-2.0
|
elastic/elasticsearch-perl,elastic/elasticsearch-perl
|
ebf3a5744668b270106756147abc147050b876ac
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- "2.0.0"
- "2.1.0"
addons:
code_climate:
repo_token: "3fa15641f89d7fce5dde29b03abaa3a07225b6f1509b3046cdbf4c64e22619f4"
|
language: ruby
rvm:
- "2.0.0"
- "2.1.0"
- "2.1.1"
- "2.1.2"
- "2.1.3"
- "2.1.4"
- "2.1.5"
addons:
code_climate:
repo_token: "3fa15641f89d7fce5dde29b03abaa3a07225b6f1509b3046cdbf4c64e22619f4"
|
Add coverage for all ruby 2.1.x's
|
[dependencies] Add coverage for all ruby 2.1.x's
|
YAML
|
mit
|
jedcn/reveal-ck,jedcn/reveal-ck,jedcn/reveal-ck
|
6d525c528f9a187672344b26852d4e49f0d368f6
|
.travis.yml
|
.travis.yml
|
language: ruby
bundler_args: --without extras
script:
- bundle
- rake appraisal:install
- rake appraisal
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
gemfile:
- gemfiles/activerecord-3.0.gemfile
- gemfiles/activerecord-3.1.gemfile
- gemfiles/activerecord-master.gemfile
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-19mode
|
language: ruby
bundler_args: --without extras
script:
- bundle
- rake appraisal:install
- rake appraisal
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx-19mode
gemfile:
- gemfiles/activerecord-3.0.gemfile
- gemfiles/activerecord-3.1.gemfile
- gemfiles/activerecord-3.2.gemfile
matrix:
allow_failures:
- rvm: jruby-19mode
- rvm: rbx-19mode
|
Fix gemfiles in Travis config
|
Fix gemfiles in Travis config
|
YAML
|
mit
|
gizmore/validate_as_email,mariochavez/validate_as_email,jcf/validate_as_email,lmars/validate_as_email,jcf/validate_as_email,change/validate_as_email
|
1a4b996da01260fcbc700f6dd854a37257c159b5
|
.travis.yml
|
.travis.yml
|
# .travis.yml
# Build Options
language: ruby
rvm:
- 2.3.3
gemfile:
- gemfiles/rails_5_0.gemfile
before_script:
- cp .rspec.example .rspec
script:
- bundle exec appraisal thor ci:steps
# Travis-CI Configuration
cache: bundler
sudo: false # Enable containerized builds.
|
# .travis.yml
# Build Options
language: ruby
rvm:
- 2.3.3
gemfile:
- gemfiles/rails_5_0.gemfile
before_script:
- cp .rspec.example .rspec
script:
- bundle exec thor ci:steps
# Travis-CI Configuration
cache: bundler
sudo: false # Enable containerized builds.
|
Remove Appraisal dependency in CI environment.
|
Remove Appraisal dependency in CI environment.
|
YAML
|
mit
|
sleepingkingstudios/bronze-rails
|
784b61878dfddd44e6ba2e72cad84cca3abfc4fa
|
.travis.yml
|
.travis.yml
|
sudo: required
services:
- docker
cache:
directories:
- $HOME/.m2
dist: trusty
language: java
before_install:
- nvm install 9.5.0
addons:
chrome: stable
hosts:
- dataflow.local
jdk:
- oraclejdk8
install: true
script:
- '[ "${TRAVIS_PULL_REQUEST}" != "false" ] || ./mvnw package'
- '[ "${TRAVIS_PULL_REQUEST}" = "false" ] || ./mvnw package'
after_success:
- bash <(curl -s https://codecov.io/bash)
deploy:
local_dir: ui/documentation
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
on:
branch: master
jobs:
include:
- stage: Maven
script: ./run-maven-build.sh
- stage: Unit Tests SauceLabs + BrowserStack
script: ./run-npm-test-saucelabs.sh
if: type != pull_request
after_success: skip
- script: ./run-npm-test-browserstack.sh
if: type != pull_request
after_success: skip
- stage: E2E Local + SauceLabs + BrowserStack
script: ./run-npm-e2e-local.sh
after_success: skip
- script: ./run-npm-e2e-saucelabs.sh
if: type != pull_request
after_success: skip
- script: ./run-npm-e2e-browserstack.sh
if: type != pull_request
after_success: skip
|
sudo: required
services:
- docker
cache:
directories:
- $HOME/.m2
dist: trusty
language: java
before_install:
- nvm install 9.5.0
addons:
chrome: stable
hosts:
- dataflow.local
jdk:
- oraclejdk8
install: true
script:
- '[ "${TRAVIS_PULL_REQUEST}" != "false" ] || ./mvnw package'
- '[ "${TRAVIS_PULL_REQUEST}" = "false" ] || ./mvnw package'
after_success:
- bash <(curl -s https://codecov.io/bash)
deploy:
local_dir: ui/documentation
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
on:
branch: master
jobs:
include:
- stage: Maven
script: ./run-maven-build.sh
- script: ./run-npm-test-browserstack.sh
if: type != pull_request
after_success: skip
- stage: E2E Local + SauceLabs + BrowserStack
script: ./run-npm-e2e-local.sh
after_success: skip
- script: ./run-npm-e2e-saucelabs.sh
if: type != pull_request
after_success: skip
- script: ./run-npm-e2e-browserstack.sh
if: type != pull_request
after_success: skip
|
Disable Unit tests saucelabs + browserstack
|
Disable Unit tests saucelabs + browserstack
|
YAML
|
apache-2.0
|
ghillert/spring-cloud-dataflow-ui,cppwfs/spring-cloud-dataflow-ui,spring-cloud/spring-cloud-dataflow-ui,cppwfs/spring-cloud-dataflow-ui,BoykoAlex/spring-cloud-dataflow-ui,BoykoAlex/spring-cloud-dataflow-ui,spring-cloud/spring-cloud-dataflow-ui,ghillert/spring-cloud-dataflow-ui,BoykoAlex/spring-cloud-dataflow-ui,ghillert/spring-cloud-dataflow-ui,BoykoAlex/spring-cloud-dataflow-ui,spring-cloud/spring-cloud-dataflow-ui,cppwfs/spring-cloud-dataflow-ui,spring-cloud/spring-cloud-dataflow-ui,cppwfs/spring-cloud-dataflow-ui,ghillert/spring-cloud-dataflow-ui
|
181aa25a00af3c30adb8d1f13058184a8d701ecd
|
examples/champion.yaml
|
examples/champion.yaml
|
initial_walls:
x: [29, 50]
y: [31]
z: [264]
intra_node_shape: [64,46,512]
monitor_interval: 32
mpi_grid_shape: [2,2,2]
temporal_blocking_interval: 8
option_strings: ['stick-single-comp', 'omp', 'omp-collapse', 'no-subroutine', 'nbux2']
|
initial_walls:
x: [29, 50]
y: [31]
z: [264]
intra_node_shape: [64,46,512]
monitor_interval: 32
mpi_grid_shape: [2,2,2]
temporal_blocking_interval: 8
option_strings: ['stick-single-comp', 'omp', 'omp-collapse', 'no-subroutine', 'nbux2', 'bench-fine-collection', 'bench-fine-fapp']
|
Set benchmark mode in C++
|
Set benchmark mode in C++
|
YAML
|
mit
|
nushio3/formura,nushio3/formura,nushio3/formura,nushio3/formura,nushio3/formura,nushio3/formura
|
e630453acb7fd8f0e68e0e31075074bfcb36e0e3
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
before_install:
- sudo apt-get update -qq
- sudo apt-get install gcc libffi-dev libldap2-dev libsasl2-dev libssl-dev python-dev
install:
# Build/test dependencies
- python setup.py install
script:
- python setup.py test
|
language: python
python:
- '2.7'
before_install:
- sudo apt-get update -qq
- sudo apt-get install gcc libffi-dev libldap2-dev libsasl2-dev libssl-dev python-dev
install:
- python setup.py install
script:
- python setup.py test
deploy:
provider: pypi
user: opennode
password:
secure: K4nUGpELCyhmEvqVh7Q74W+9tOYO/btsj9q2MdiUTbxIQHBeRTsN2UIsi4CJD8CoVwD95x/6Cfxqh86sHEOpU3sRYV7W5wKH4OJ1n5f/KRuKFqQ7VR6KVap9hWg1HvXkT/XIfprom5dYeHv+fvhF5hryk1V5fPF2pTdjP/pUS9E=
on:
tags: true
repo: opennode/nodeconductor
|
Add a proof of concept pypi uploader
|
Add a proof of concept pypi uploader
|
YAML
|
mit
|
opennode/nodeconductor,opennode/nodeconductor,opennode/nodeconductor
|
7058205935cd9928d8467981da137080ec7fc7c6
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.8"
|
language: node_js
node_js:
- "stable"
- "5"
- "4"
- "0.10"
|
Update TravisCI to modern versions of Node.js
|
Update TravisCI to modern versions of Node.js
Also remove 0.8, as it's ancient.
|
YAML
|
mit
|
felixge/node-dirty,felixge/node-dirty
|
7dd6d95ec5d2c4d3741184c5ca4b9431f0952759
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.4
- hhvm
before_script:
- composer update --prefer-source
script:
- ./vendor/bin/phpcs --standard=./phpcs.xml -np --report=summary .
- phpunit
notifications:
irc: "irc.freenode.org#zftalk.modules"
|
language: php
php:
- 5.4
- 5.5
- hhvm
before_script:
- composer update --prefer-source
script:
- ./vendor/bin/phpcs --standard=./phpcs.xml -np --report=summary .
- phpunit
notifications:
irc: "irc.freenode.org#zftalk.modules"
|
Maintain sensible order of PHP versions
|
Fix: Maintain sensible order of PHP versions
|
YAML
|
bsd-3-clause
|
PatidarWeb/modules.zendframework.com,ins0/modules.zendframework.com,vrkansagara/modules.zendframework.com,PatidarWeb/modules.zendframework.com,localheinz/modules.zendframework.com,nomaanp/modules.zendframework.com,zendframework/modules.zendframework.com,ins0/modules.zendframework.com,nomaanp/modules.zendframework.com,vrkansagara/modules.zendframework.com,walberjefferson/modules.zendframework.com,AICIDNN/modules.zendframework.com,zendframework/modules.zendframework.com,AICIDNN/modules.zendframework.com,walberjefferson/modules.zendframework.com,localheinz/modules.zendframework.com
|
9e357fb1adecc24acf2bc41af4f655e3afc51e8e
|
.travis.yml
|
.travis.yml
|
language: node_js
env:
- CXX=g++-4.8
services:
- memcached
node_js:
- "4.0.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
sudo: false
before_script:
- npm install
script:
- NODE_ENV=production mocha -R spec test/spec/server --recursive
after_script:
- grunt deploy
|
language: node_js
env:
- CXX=g++-4.8
services:
- memcached
node_js:
- "5.x"
- "4.x"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
sudo: false
before_script:
- npm install
script:
- NODE_ENV=production mocha -R spec test/spec/server --recursive
after_script:
- grunt deploy
|
Build only on node 4.x and node 5.x
|
Build only on node 4.x and node 5.x
|
YAML
|
mit
|
ripliveit/riplive.it,ripliveit/riplive.it
|
59a80f278adc64945036cac08a74bfd64ce041dc
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.6"
- "3.6-dev"
- "3.7"
- "3.7-dev"
- "3.8-dev"
- "nightly"
install:
- pip install pipenv
- pipenv install
script:
- python tests.py
- mypy parsenvy/parsenvy.py
|
language: python
python:
- "3.6"
- "3.6-dev"
- "3.7-dev"
- "nightly"
install:
- pip install pipenv
- pipenv install
script:
- python tests.py
- mypy parsenvy/parsenvy.py
|
Remove Python versions not yet supported by Travis
|
Remove Python versions not yet supported by Travis
|
YAML
|
bsd-3-clause
|
nkantar/Parsenvy
|
ae811c978dc7b18cdeb1e7c695a5dc930283b797
|
.travis.yml
|
.travis.yml
|
language: java
jdk:
- oraclejdk8
script:
- ant all
|
language: java
jdk:
- oraclejdk8
script:
- ant all
deploy:
provider: releases
api_key:
secure: OkS1oQ39WbXQMRDmKkC3VB4rWzyJdpmXRMMnGIpPc3CSvVS8WFroVs9mYXOqvD/y33bnzTY2p84roYLrYkr6C1G0v5gS7SfQVfhmV2/DiooBpaSB414VfBLftmRiVNs8M9nwXjLp7F84TOE9weJgbiu//J91FrKe0z5XH3ETFX5QbnkoTA38XHfVwaWeylERy+O7sKOcPbD6Jcxs4BrWHcQin6F3TivzuQNFNWjRr2KT49sJXJbBPwbqrlXPoW9UUIo07aMV+2SInkv7dTnpBvIYV836w9edIDcarmMlc1MRt/6T+/r1yZHpuREdr/gfaykI94N6DbQZU1DProq3nYEpdGeB5haP36V1HxXtURCbICrjWCymdmmX/m1wDodpDHUtdNSNlGBZU0LKmAz0k7Pq988ZrkB4Kv/Fp2HJGnBjNZnfBVAxR1hpme+zP6SCO3IXFZ6fXLCFqlMYBnlb4gWctTycZpQ23T9fyQHo28QHucCs4b2yiCYvtUaigBUj+LYNSUMYlGmZIFc8UiWNHHG8U1s098KGOHjObm1WAYLlOsdZBAEz5rjgKrICDyRRo5kE1G0OOqLf0OEX1CVJtCPi06s4KUooWKYGTExcd8nj3XGfa8LV6GV0XwvdChH1MnUEzUuUJFFQWxjF0VlIDQL+fahhXbazkcL+2oWknOg=
file: out/artifacts/octopus_build_trigger_plugin_zip/octopus-build-trigger.zip
on:
repo: matt-richardson/teamcity-octopus-build-trigger-plugin
|
Add automated publishing to github releases
|
Add automated publishing to github releases
|
YAML
|
apache-2.0
|
matt-richardson/teamcity-octopus-build-trigger-plugin,matt-richardson/teamcity-octopus-build-trigger-plugin
|
dff84d6a20d4ab1cedaf96b2e43d25d425362f53
|
.travis.yml
|
.travis.yml
|
language: python
python:
- '2.7'
before_install:
- sudo apt-get update -qq
- sudo apt-get install gcc libffi-dev libsasl2-dev libssl-dev python-dev
install:
- pip install --upgrade -e .
- python setup.py install
script:
- python setup.py test
deploy:
provider: pypi
user: opennode
distributions: "sdist bdist_wheel"
password:
secure: K4nUGpELCyhmEvqVh7Q74W+9tOYO/btsj9q2MdiUTbxIQHBeRTsN2UIsi4CJD8CoVwD95x/6Cfxqh86sHEOpU3sRYV7W5wKH4OJ1n5f/KRuKFqQ7VR6KVap9hWg1HvXkT/XIfprom5dYeHv+fvhF5hryk1V5fPF2pTdjP/pUS9E=
on:
tags: true
repo: opennode/nodeconductor
|
language: python
python:
- '2.7'
before_install:
- sudo apt-get update -qq
- sudo apt-get install gcc libffi-dev libsasl2-dev libssl-dev python-dev
install:
- pip install --upgrade -e .
- python setup.py install
script:
- python setup.py test
deploy:
provider: pypi
user: opennode
distributions: "sdist bdist_wheel"
password:
secure: K4nUGpELCyhmEvqVh7Q74W+9tOYO/btsj9q2MdiUTbxIQHBeRTsN2UIsi4CJD8CoVwD95x/6Cfxqh86sHEOpU3sRYV7W5wKH4OJ1n5f/KRuKFqQ7VR6KVap9hWg1HvXkT/XIfprom5dYeHv+fvhF5hryk1V5fPF2pTdjP/pUS9E=
on:
tags: true
repo: opennode/waldur-core
|
Fix release branch for pypi
|
Fix release branch for pypi
|
YAML
|
mit
|
opennode/nodeconductor,opennode/nodeconductor,opennode/nodeconductor
|
e1ae5ad4c609afeeb137f1398d4b17bd50e517fc
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
before_script: make jshint
|
language: node_js
node_js:
- '0.10'
before_script: make jshint
deploy:
provider: npm
email: [email protected]
api_key:
secure: l2yoeQUCu6ZGVPQ8m9HaAjLqfezAUyfv2Mdqulr4XGiwavNhlUYL0cS45s+6wzrfIW0t/GnZwJJ1XZDV8M+pydgSTkSh9UfQZbRf6H+j6HNFVWtP+VW//GNmObfOP5HuitsE1/gl8hM2CGy/MFZ7yGtW4oNmOvn6LyPyKo+qtJ4=
on:
tags: true
|
Configure Travis to auto-deploy to npmjs.org
|
Configure Travis to auto-deploy to npmjs.org
|
YAML
|
mit
|
twistedstream/singleton-process
|
a887312728e698780c5be3ebe6f5f2cee9aecfa6
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
install:
- "sudo apt-get update"
- "sudo apt-get install python-numpy python-scipy"
# Fetch and install ASE
- "curl https://wiki.fysik.dtu.dk/ase-files/python-ase-3.8.1.3440.tar.gz | tar -zvx ; cd python-ase-3.8.1.3440 ; python setup.py install ; cd .."
- "python setup.py install"
script:
- "cd tests ; python run_tests.py"
|
language: python
python:
- "2.6"
- "2.7"
install:
- "sudo apt-get update"
- "sudo apt-get install python-numpy python-scipy"
# Fetch and install ASE
- "curl https://wiki.fysik.dtu.dk/ase-files/python-ase-3.8.1.3440.tar.gz | tar -zvx ; cd python-ase-3.8.1.3440 ; python setup.py install ; cd .."
- "python setup.py install"
script:
- "cd tests ; python run_tests.py"
|
Test on Python 2.6 as well as 2.7
|
Test on Python 2.6 as well as 2.7
|
YAML
|
lgpl-2.1
|
libAtoms/matscipy,libAtoms/matscipy,libAtoms/matscipy,libAtoms/matscipy
|
6abadbbd7e7abbdbc811b907b61cdb0dea0d111a
|
.travis.yml
|
.travis.yml
|
# Use Docker environment
sudo: false
# Setup build matrix
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm-nightly
# Special environments
matrix:
fast_finish: true
allow_failures:
- php: hhvm-nightly
include:
- php: 5.4
env: dependencies=lowest
# Dependencies
before_script:
- composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --prefer-stable -n; fi;
script: phpunit
# Cache dependencies
cache:
directories:
- vendor
- $HOME/.composer/cache
|
# Use Docker environment
sudo: false
# Setup build matrix
language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm-nightly
# Special environments
matrix:
fast_finish: true
include:
- php: 5.4
env: dependencies=lowest
# Dependencies
before_script:
- composer self-update
- travis_retry composer install --no-interaction --prefer-source --dev
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest --prefer-stable -n; fi;
script: phpunit
# Cache dependencies
cache:
directories:
- vendor
- $HOME/.composer/cache
|
Remove allowed failures for HHVM
|
Remove allowed failures for HHVM
|
YAML
|
mit
|
rocketeers/rocketeer
|
d4bcb018a61964502a5e5f25107e3a722a90a122
|
.travis.yml
|
.travis.yml
|
on:
tags: true
sudo: required
services:
- docker
before_install:
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USER" -p="$DOCKER_PASSWORD"
script:
- ALPINE_ID=$(docker build -t "carbonsrv/carbon:${TRAVIS_TAG:-latest}" -f Dockerfile . | tail -1 | sed 's/.*Successfully built \(.*\)$/\1/') # Build with Alpine
- docker tag $ALPINE_ID "carbonsrv/carbon:${TRAVIS_TAG:-latest}-alpine"
- docker build -t "carbonsrv/carbon:${TRAVIS_TAG:-latest}-alpine_edge" -f Dockerfile .
- docker build -t "carbonsrv/carbon:${TRAVIS_TAG:-latest}-arch" -f Dockerfile.arch . # Build with Arch
- docker build -t "carbonsrv/carbon:${TRAVIS_TAG:-latest}-golang" -f Dockerfile.golang . # Build with Golang
after_success:
- docker push carbonsrv/carbon
|
on:
tags: true
sudo: required
services:
- docker
before_install:
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USER" -p="$DOCKER_PASSWORD"
script:
- ALPINE_ID=$(docker build -t "carbonsrv/carbon:${TRAVIS_TAG:-latest}" -f Dockerfile . | tee /dev/stderr | tail -1 | sed 's/.*Successfully built \(.*\)$/\1/') # Build with Alpine
- docker tag $ALPINE_ID "carbonsrv/carbon:${TRAVIS_TAG:-latest}-alpine"
- docker build -t "carbonsrv/carbon:${TRAVIS_TAG:-latest}-alpine_edge" -f Dockerfile .
- docker build -t "carbonsrv/carbon:${TRAVIS_TAG:-latest}-arch" -f Dockerfile.arch . # Build with Arch
- docker build -t "carbonsrv/carbon:${TRAVIS_TAG:-latest}-golang" -f Dockerfile.golang . # Build with Golang
after_success:
- docker push carbonsrv/carbon
|
Copy build output to stderr too, so you can see it.
|
Docker: Copy build output to stderr too, so you can see it.
|
YAML
|
mit
|
carbonsrv/carbon,vifino/carbon,carbonsrv/carbon,vifino/carbon,carbonsrv/carbon,vifino/carbon
|
109b874c83051de7337501540077c03ba756cc18
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
script:
- if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then phpunit; fi
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpunit --coverage-text --coverage-clover=coverage.clover; fi
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
notifications:
email:
on_success: never
on_failure: change
|
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 7.0
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
script:
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then phpunit; fi
- if [ "$TRAVIS_PHP_VERSION" != "7.0" ] && [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpunit --coverage-text --coverage-clover=coverage.clover; fi
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi
notifications:
email:
on_success: never
on_failure: change
|
Disable code coverage for PHP 7
|
Disable code coverage for PHP 7
|
YAML
|
mit
|
Lykegenes/laravel-datagrid-builder
|
8682d06d958d9d0dba741db6b43ad563b515999a
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0
- 2.1
- 2.2
- rbx
gemfile:
- gemfiles/ar3.1.gemfile
- gemfiles/ar3.2.gemfile
- gemfiles/ar4.0.gemfile
- gemfiles/ar4.1.gemfile
- gemfiles/ar4.2.gemfile
- gemfiles/mongoid2.gemfile
- gemfiles/mongoid3.gemfile
- gemfiles/mongoid4.gemfile
- gemfiles/mongoid5.gemfile
- gemfiles/noorm.gemfile
sudo: false
services:
- mongodb
before_script:
- mysql -e 'create database blueprints_boy_test;'
|
language: ruby
rvm:
- 2.1
- 2.2
- rbx
gemfile:
- gemfiles/ar3.1.gemfile
- gemfiles/ar3.2.gemfile
- gemfiles/ar4.0.gemfile
- gemfiles/ar4.1.gemfile
- gemfiles/ar4.2.gemfile
- gemfiles/mongoid2.gemfile
- gemfiles/mongoid3.gemfile
- gemfiles/mongoid4.gemfile
- gemfiles/mongoid5.gemfile
- gemfiles/noorm.gemfile
sudo: false
services:
- mongodb
before_script:
- mysql -e 'create database blueprints_boy_test;'
|
Drop support for 1.9 and 2.0
|
Drop support for 1.9 and 2.0
|
YAML
|
mit
|
andriusch/blueprints_boy
|
ce803370a80fb4da68586748496bf533d6cbf53a
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
notifications:
email:
- [email protected]
- [email protected]
|
language: ruby
before_install: gem install bundler
bundler_args: --without yard guard benchmarks
script: "bundle exec rake ci"
rvm:
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
notifications:
irc: "irc.freenode.org#datamapper"
email:
- [email protected]
- [email protected]
|
Add IRC notification on successful builds
|
Add IRC notification on successful builds
|
YAML
|
mit
|
sferik/devtools,mvz/devtools,zaidan/devtools,JonathonMA/devtools,backus/devtools,mbj/devtools
|
4f610e18b3d88a238859e7f5081ea4487c2dac02
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 3.4
- 3.5
install:
- pip install --upgrade setuptools
- pip install coveralls
- pip install -r requirements.txt
script:
py.test --cov=aiohttp_jinja2 tests
after_success:
coveralls
env:
matrix:
- PYTHONASYNCIODEBUG=x
- PYTHONASYNCIODEBUG=
|
language: python
python:
- 3.4
- 3.5
install:
- pip install --upgrade setuptools
- pip install coveralls
- pip install -r requirements-dev.txt
script:
py.test --cov=aiohttp_jinja2 tests
after_success:
coveralls
env:
matrix:
- PYTHONASYNCIODEBUG=x
- PYTHONASYNCIODEBUG=
|
Fix error in requirements file name
|
Fix error in requirements file name
|
YAML
|
apache-2.0
|
aio-libs/aiohttp_jinja2
|
7360e13d62df72c046d76613f927e505ea37a900
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.2
script: script/cibuild
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
|
language: ruby
rvm:
- 2.2.2
script: script/cibuild
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer
sudo: false # migrate to container-based infrastructure
|
Use container-based infrastructure for CI
|
Use container-based infrastructure for CI
|
YAML
|
mit
|
alykhank/alykhank.github.io,alykhank/alykhank.github.io,alykhank/alykhank.github.io
|
91c46fa7a939efe2d67175c7fddb1d44b44f0ab2
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4.0"
- "5.0"
- "6.0"
|
language: node_js
node_js:
- "6.0"
- "7.0"
|
Update node versions for koa2 syntax
|
Update node versions for koa2 syntax
|
YAML
|
mit
|
dlau/koa-body
|
3172f3f0850ac4a41ded4643f3f73c5d8b773dc0
|
.travis.yml
|
.travis.yml
|
language: c
install:
- autoreconf --install
script:
- ./configure && make
|
language: c
env:
global:
- MAKEFLAGS="-j 2"
install:
- autoreconf --install
script:
- ./configure && make
|
Speed up the build, according to Travis
|
Speed up the build, according to Travis
|
YAML
|
bsd-3-clause
|
dharple/detox,dharple/detox,dharple/detox
|
2e43cad7801a0e0f4eff6fd263aa6ab3c5f1e408
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.1
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache/files
- tmp/components
before_script:
- composer install
script:
- ./bin/build
deploy:
provider: pages
skip_cleanup: true
local_dir: ./tmp/build
project_name: "ReactPHP Website"
fqdn: $DEPLOY_FQDN
repo: $DEPLOY_REPO
target_branch: $DEPLOY_TARGET_BRANCH
github_token: $GITHUB_TOKEN
on:
branch: master
|
language: php
sudo: false
php:
- 7.1
branches:
only:
- master
cache:
directories:
- $HOME/.composer/cache/files
- tmp/components
before_script:
- composer install
script:
- ./bin/build
deploy:
provider: pages
skip_cleanup: true
local_dir: ./tmp/build
project_name: "ReactPHP Website"
fqdn: $DEPLOY_FQDN
repo: $DEPLOY_REPO
target_branch: $DEPLOY_TARGET_BRANCH
github_token: $GITHUB_TOKEN
on:
branch: master
|
Add sudo:false to run on container infrastructure
|
Add sudo:false to run on container infrastructure
|
YAML
|
mit
|
jsor-labs/website,jsor-labs/website
|
bb78ad28cca72f0a5e1133da6dabb6847c5d7ea5
|
.travis.yml
|
.travis.yml
|
language: go
script:
- go test -check.vv ./...
install:
- go get gopkg.in/check.v1
env:
global:
- secure: RsNugq1R2VlLqa8hZzcccagr+4D6fMeoxt2T7YK4nzSiFA3zkw0IwCDO9oMSuDHcVrmuPVUJIi8QUsGNOzp0uffuSNtc8RLIXRZuGbeb0v8joSSdYyDXB2O6RrW6gipmq8JGgBm4KOp+QFLw1VH4ilPfZ/gHsyMA171TVjicyAc=
|
language: go
script:
- go test -v ./...
install:
- go get gopkg.in/check.v1
env:
global:
- secure: RsNugq1R2VlLqa8hZzcccagr+4D6fMeoxt2T7YK4nzSiFA3zkw0IwCDO9oMSuDHcVrmuPVUJIi8QUsGNOzp0uffuSNtc8RLIXRZuGbeb0v8joSSdYyDXB2O6RrW6gipmq8JGgBm4KOp+QFLw1VH4ilPfZ/gHsyMA171TVjicyAc=
|
Remove -check.v flags from go test because it causes subpackages to be skipped
|
Remove -check.v flags from go test because it causes subpackages to be skipped
|
YAML
|
apache-2.0
|
tmlbl/oanda,santegoeds/oanda
|
bed0477cb3b9064cf362b5e2a047b50304092f26
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
os:
- osx
- linux
node_js:
- 8
- 10
after_success: npm run coverage
|
sudo: false
language: node_js
os:
- osx
- linux
node_js:
- 8
- 10
after_success: npm run coverage
notifications:
email: false
|
Disable email notifications from Travis
|
Disable email notifications from Travis
Ref Level/community#40
|
YAML
|
mit
|
Level/level
|
ed889d94865d22d4c8a87acf51a43cde94112601
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.5
- 2.2.0
- jruby
|
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.1.5
- 2.2.0
- jruby
|
Enable tests to run on new (much faster) Travis architecture
|
Enable tests to run on new (much faster) Travis architecture
|
YAML
|
mit
|
codebender/its_business_time,kantox/business_time,bokmann/business_time,bokmann/business_time
|
2a53186223517ac05bdf9eeeae087e05acf138e0
|
.travis.yml
|
.travis.yml
|
# This is necessary until https://github.com/travis-ci/travis-ci/issues/3120 is
# fixed
sudo: required
language: scala
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
scala:
- 2.10.5
- 2.11.6
jdk:
- oraclejdk7
# Note: not currently testing on JDK 8 internally
- oraclejdk8
- openjdk7
before_script:
# default $SBT_OPTS is irrelevant to sbt lancher
- unset SBT_OPTS
- travis_retry ./sbt ++$TRAVIS_SCALA_VERSION update
script: ./sbt ++$TRAVIS_SCALA_VERSION coverage test && ./sbt ++$TRAVIS_SCALA_VERSION coverageAggregate
after_success: ./sbt ++$TRAVIS_SCALA_VERSION coveralls
|
# This is necessary until https://github.com/travis-ci/travis-ci/issues/3120 is
# fixed
sudo: required
language: scala
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/scala-$TRAVIS_SCALA_VERSION
scala:
- 2.10.5
- 2.11.6
- 2.12.0-M1
jdk:
- oraclejdk7
# Note: not currently testing on JDK 8 internally
- oraclejdk8
- openjdk7
before_script:
# default $SBT_OPTS is irrelevant to sbt lancher
- unset SBT_OPTS
- travis_retry ./sbt ++$TRAVIS_SCALA_VERSION update
script: ./sbt ++$TRAVIS_SCALA_VERSION coverage test && ./sbt ++$TRAVIS_SCALA_VERSION coverageAggregate
after_success: ./sbt ++$TRAVIS_SCALA_VERSION coveralls
|
Add 2.12.0-M1 testing to Travis
|
Add 2.12.0-M1 testing to Travis
|
YAML
|
apache-2.0
|
travisbrown/util,travisbrown/util,travisbrown/util,travisbrown/util
|
fb6dce8c9fcdc164f704cf6400fcbd18323360b8
|
.travis.yml
|
.travis.yml
|
language: php
addons:
apt:
packages:
- language-pack-nl
php:
- 5.6
- 7.0
- 7.1
branches:
only:
- master
install:
- composer install
- wget https://scrutinizer-ci.com/ocular.phar -O "$HOME/ocular.phar"
script:
- vendor/bin/phpunit --coverage-clover cache/logs/clover.xml
after_success:
- php "$HOME/ocular.phar" code-coverage:upload --format=php-clover cache/logs/clover.xml
|
language: php
addons:
apt:
packages:
- language-pack-nl
php:
- 7.0
- 7.1
branches:
only:
- master
install:
- composer install
- wget https://scrutinizer-ci.com/ocular.phar -O "$HOME/ocular.phar"
script:
- vendor/bin/phpunit --coverage-clover cache/logs/clover.xml
after_success:
- php "$HOME/ocular.phar" code-coverage:upload --format=php-clover cache/logs/clover.xml
|
Remove PHP 5.6 as Twig 2.x only supports ^7.0
|
Remove PHP 5.6 as Twig 2.x only supports ^7.0
|
YAML
|
mit
|
jasny/twig-extensions
|
fe8a6fdd1cc8193898bd010884e13cfbd53e37cd
|
.travis.yml
|
.travis.yml
|
language: objective-c
cache: cocoapods
podfile: Example/Podfile
osx_image: xcode8
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- npm install ios-sim -g
script:
# OCSlimProject Example Acceptance Tests
- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace -scheme OCSlimProject_AcceptanceUnitTestBundle_SimulatorWarmUpExcercise -destination 'platform=iOS Simulator,name=iPhone 6s' -destination-timeout 300 test
- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace -scheme OCSlimProject_Example -destination 'platform=iOS Simulator,name=iPhone 6s' test
#- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace -scheme OCSlimProject_ExampleMac test
# OCSlimProjectTestBundleSupport Pod Unit Tests
#- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace -scheme OCSlimProjectTestBundleSupportTests -destination 'platform=iOS Simulator,name=iPhone 6s' test
#- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace -scheme OCSlimProjectTestBundleSupportTestsMac test
# Pod Lib Lint
#- pod lib lint OCSlimProject.podspec --allow-warnings
#- pod lib lint OCSlimProjectTestBundleSupport.podspec --use-libraries --allow-warnings
|
language: objective-c
cache: cocoapods
podfile: Example/Podfile
osx_image: xcode8
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- npm install ios-sim -g
- ios-sim start --devicetypeid iPhone-6s
script:
# OCSlimProject Example Acceptance Tests (iOS, macOS)
- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace -scheme OCSlimProject_AcceptanceUnitTestBundle_SimulatorWarmUpExcercise -destination 'platform=iOS Simulator,name=iPhone 6s' -destination-timeout 300 test
- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace -scheme OCSlimProject_Example -destination 'platform=iOS Simulator,name=iPhone 6s' test
- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace -scheme OCSlimProject_ExampleMac test
# OCSlimProjectTestBundleSupport Pod Unit Tests (iOS, macOS)
- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace -scheme OCSlimProjectTestBundleSupportTests -destination 'platform=iOS Simulator,name=iPhone 6s' test
- set -o pipefail && xcodebuild -workspace Example/OCSlimProject.xcworkspace -scheme OCSlimProjectTestBundleSupportTestsMac test
# Pod Lib Lint (unavailable on xcode 8)
#- pod lib lint OCSlimProject.podspec --allow-warnings
#- pod lib lint OCSlimProjectTestBundleSupport.podspec --use-libraries --allow-warnings
|
Add all the xcodebuild steps to fully excercise and verify all mac,ios and pod setups
|
Add all the xcodebuild steps to fully excercise and verify all mac,ios and pod setups
|
YAML
|
mit
|
paulstringer/OCSlimProject,paulstringer/OCSlimProject,paulstringer/OCSlimProject,ncoelle/Slim-iOS-TestRunner,ncoelle/Slim-iOS-TestRunner,ncoelle/Slim-iOS-TestRunner,paulstringer/OCSlimProject,ncoelle/Slim-iOS-TestRunner
|
ea6b39bfa21fb990fbd4b4700478498eeae0944f
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
script: "npm run-script travis"
|
language: node_js
node_js:
- "6"
- "8"
- "9"
script: "npm run-script travis"
|
Drop node.js 4 support (semver-major)
|
Drop node.js 4 support (semver-major)
|
YAML
|
bsd-3-clause
|
unexpectedjs/unexpected-messy
|
229c820eb0721dcbaf79dfdc82fa8ef380a84b16
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
addons:
apt:
packages:
- libqtwebkit-dev
- xvfb
code_climate:
repo_token:
secure: "cT2wvWS2Uk2trYGwZ38Qo9XWCeL+OOXH0lVmLfNb1Xy/tWAXycDdZsc9CN8igjhD+/cKvvh529/qdDm2PJnb1Hux1bxHSTuMuE2xQWlfJqaOR/IX0z96MbP1eITKjhGv9vccmIPdV3Rh/OQLeHkyqyHvXio9NXiARMJUZDTpRuA="
branches:
only:
- 1.0.x # stable
- master
install:
- wget -c "ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.31/ncbi-blast-2.2.31+-x64-linux.tar.gz"
- tar xvf ncbi-blast-2.2.31+-x64-linux.tar.gz
- export PATH="ncbi-blast-2.2.31+/bin:$PATH"
- gem install bundler && bundle
script: xvfb-run bundle exec rake spec
cache:
directories:
- vendor/bundle
- ncbi-blast-2.2.31+
sudo: false
|
language: ruby
rvm:
- 2.3
- 2.4
- 2.5
addons:
apt:
packages:
- libqtwebkit-dev
- xvfb
code_climate:
repo_token:
secure: "cT2wvWS2Uk2trYGwZ38Qo9XWCeL+OOXH0lVmLfNb1Xy/tWAXycDdZsc9CN8igjhD+/cKvvh529/qdDm2PJnb1Hux1bxHSTuMuE2xQWlfJqaOR/IX0z96MbP1eITKjhGv9vccmIPdV3Rh/OQLeHkyqyHvXio9NXiARMJUZDTpRuA="
branches:
only:
- 1.0.x # stable
- master
install:
- wget -c "ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.6.0/ncbi-blast-2.6.0+-x64-linux.tar.gz"
- tar xvf ncbi-blast-2.6.0+-x64-linux.tar.gz
- export PATH="ncbi-blast-2.6.0+/bin:$PATH"
- gem install bundler && bundle
script: xvfb-run bundle exec rake spec
cache:
directories:
- vendor/bundle
- ncbi-blast-2.6.0+
sudo: false
|
Use BLAST 2.6.0+ on Travis
|
Use BLAST 2.6.0+ on Travis
Signed-off-by: Anurag Priyam <[email protected]>
|
YAML
|
agpl-3.0
|
yeban/sequenceserver,yeban/sequenceserver,yeban/sequenceserver,yeban/sequenceserver
|
432f52a019785cc8820c84244ce1ba6aaa2c619a
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.0.0
- 1.9.3
before_install:
- "mkdir ~/.gemcert && cd ~/.gemcert && gem cert --build [email protected] && cp gem-public_cert.pem $TRAVIS_BUILD_DIR/"
install: bundle install
script: rspec
|
language: ruby
rvm:
- 2.0.0
- 1.9.3
before_install:
- "mkdir ~/.gemcert && cd ~/.gemcert && gem cert --build [email protected] && cp gem-public_cert.pem $TRAVIS_BUILD_DIR/"
- "cd $TRAVIS_BUILD_DIR"
install: bundle install
script: rspec
|
Move back to the project directory
|
Move back to the project directory
|
YAML
|
mit
|
collectiveidea/travis_bundle_cache
|
0f578f747968b1d90d9b4b1e08c1c43ab82e3930
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7.0
- hhvm
sudo: required
before_install:
- printf "\n" | pecl install yaml-beta
- echo "extension = yaml.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
|
language: php
php:
- 5.6
- 7.0
- hhvm
sudo: required
before_install:
- if [[ $TRAVIS_PHP_VERSION < 7.0 ]]; then printf "\n" | pecl install yaml; fi
- if [[ $TRAVIS_PHP_VERSION >= 7.0 ]]; then printf "\n" | pecl install yaml-beta; fi
install:
- travis_retry composer install --no-interaction --prefer-source
script: vendor/bin/phpunit
|
Install pecl yaml based on PHP version.
|
Install pecl yaml based on PHP version.
Still trial and error for HHVM.
|
YAML
|
mit
|
samrap/gestalt
|
9bb2ca73163a74a44d9df61b2bba882791a8b19a
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.2
env:
global:
- CC_TEST_REPORTER_ID=9302884ead7bad6d1cc81026ba78b5cd8551024643cf14c72fe2d42eaaef36e6
before_install:
- gem update --system
- gem install bundler
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
cache: bundler
|
language: ruby
rvm:
- 2.4.5
- 2.5.3
env:
global:
- CC_TEST_REPORTER_ID=9302884ead7bad6d1cc81026ba78b5cd8551024643cf14c72fe2d42eaaef36e6
before_install:
- gem update --system
- gem install bundler
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
cache: bundler
|
Build for current Ruby versions
|
Build for current Ruby versions
|
YAML
|
mit
|
padde/stateoscope,padde/stateoscope
|
b030574c84c58bcebdc7749c31c96f31435910f8
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5.9
- 5.5
- 5.6
- 7.0
- 7.1
env:
global:
- setup=basic
matrix:
include:
- php: 5.5.9
env: setup=lowest
- php: 5.5.9
env: setup=stable
sudo: false
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi
script: vendor/bin/phpunit
|
language: php
php:
- 5.5.9
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
env:
global:
- setup=basic
matrix:
include:
- php: 5.5.9
env: setup=lowest
- php: 5.5.9
env: setup=stable
sudo: false
install:
- if [[ $setup = 'basic' ]]; then travis_retry composer install --no-interaction --prefer-source; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-source --no-interaction --prefer-lowest --prefer-stable; fi
script: vendor/bin/phpunit
|
Add PHP 7.2 to the Travis test matrix
|
Add PHP 7.2 to the Travis test matrix
|
YAML
|
mit
|
JosephSilber/bouncer,grantholle/bouncer
|
bcb89a3ccb30aebb72ef774ac2e5943cdb9e6d44
|
.travis.yml
|
.travis.yml
|
language: cpp
compiler:
- gcc
- clang
before_install:
- sudo apt-get update -qq
- sudo apt-get install -yqq libevent-dev
script: mkdir build && cd build && cmake .. && make && ./test/test
|
language: cpp
compiler:
- gcc
before_install:
# We need GCC 4.8 for the unit tests
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
install:
- sudo apt-get install -yqq g++-4.8 libevent-dev
- export CXX="g++-4.8"
script: mkdir build && cd build && cmake .. && make && ./test/test
|
Install GCC 4.8 for C++11 support in tests
|
Install GCC 4.8 for C++11 support in tests
Removes clang from the builds.
|
YAML
|
mit
|
flandr/pproxy,flandr/pproxy,flandr/pproxy
|
75108adcf1ac766899e3c5052a2e2f8146c46b9e
|
.travis.yml
|
.travis.yml
|
language: ruby
addons:
postgresql: "9.3"
rvm:
- '2.2.0'
before_install:
- sudo apt-get install -qq phantomjs
before_script:
- bundle exec rake db:test:prepare
notifications:
email: false
env:
|
language: ruby
addons:
postgresql: "9.3"
rvm:
- '2.1.5'
before_install:
- sudo apt-get install -qq phantomjs
before_script:
- bundle exec rake db:test:prepare
notifications:
email: false
env:
|
Use Ruby 2.1.5 for CI.
|
Use Ruby 2.1.5 for CI.
|
YAML
|
mit
|
ministryofjustice/scs_performance,ministryofjustice/scs_performance,ministryofjustice/scs_performance,ministryofjustice/scs_performance
|
72da0febc0dd3a3d88329c7a775d1b0fd849cafe
|
.travis.yml
|
.travis.yml
|
language: scala
scala:
- 2.11.12
- 2.12.8
- 2.12.9
- 2.12.10
- 2.13.1
script:
- sbt clean test
jdk:
- oraclejdk11
before_script:
- "echo $JAVA_OPTS"
- "export JAVA_OPTS=-Xmx1024m"
before_cache:
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" -delete
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
|
language: scala
scala:
- 2.11.12
- 2.12.8
- 2.12.9
- 2.12.10
- 2.13.0
- 2.13.1
script:
- sbt clean test
jdk:
- oraclejdk11
before_script:
- "echo $JAVA_OPTS"
- "export JAVA_OPTS=-Xmx1024m"
before_cache:
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" -delete
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete
# These directories are cached to S3 at the end of the build
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
|
Add 2.13.0 back to the build matrix.
|
Add 2.13.0 back to the build matrix.
|
YAML
|
apache-2.0
|
sksamuel/scalac-scapegoat-plugin,sksamuel/scapegoat
|
90840d5d9cdcd8ca3d27d05f55e3a7ad6899082f
|
.travis.yml
|
.travis.yml
|
language: node_js
install:
- npm install -g bower broccoli-cli
- npm install
- bower install
script:
- npm test
|
language: node_js
install:
- npm install -g bower broccoli-cli
- npm install
- bower install
script:
- npm test
after_success:
- "./bin/bower_build"
|
Add build hook for Travis
|
Add build hook for Travis
|
YAML
|
apache-2.0
|
SaladFork/ember-mocha,cowboyd/ember-mocha,jeffreybiles/ember-mocha,SaladFork/ember-mocha,switchfly/ember-mocha,emberjs/ember-mocha,cowboyd/ember-mocha,alexgb/ember-mocha,jeffreybiles/ember-mocha,Robdel12/ember-mocha,alexgb/ember-mocha,Robdel12/ember-mocha,cowboyd/ember-mocha,Robdel12/ember-mocha,rwjblue/ember-mocha,rwjblue/ember-mocha,alexgb/ember-mocha,switchfly/ember-mocha,emberjs/ember-mocha,jeffreybiles/ember-mocha,SaladFork/ember-mocha,switchfly/ember-mocha
|
630c6f9d98fb14412992a6708e0a01eb2bc876b9
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- nightly
before_install:
- sudo apt-get update
- sudo apt-get install python3
script:
- cargo build
- cargo test
- cd examples/ ; make
|
language: rust
rust:
- nightly
before_install:
- sudo apt-get update
- sudo apt-get install python3 ruby
script:
- cargo build
- cargo test
- gem install test-unit
- cd examples/ ; make
|
Add dependency on test-unit gem for Ruby example
|
Add dependency on test-unit gem for Ruby example
|
YAML
|
mit
|
androm3da/libfaultinj,androm3da/libfaultinj
|
7e2695f44da56db2fea55c9c660e19ae9e40bb06
|
.travis.yml
|
.travis.yml
|
env:
global:
- BINSTAR_USER: menpo
matrix:
- PYTHON_VERSION: 2.7
- PYTHON_VERSION: 3.4
matrix:
allow_failures:
- env: PYTHON_VERSION=3.4 # waiting for menpo Python 3 support
install:
- wget https://raw.githubusercontent.com/jabooth/condaci/v0.2.0/condaci.py -O condaci.py
- python condaci.py setup $PYTHON_VERSION --channel $BINSTAR_USER
- export PATH=$HOME/miniconda/bin:$PATH
- conda config --add channels $BINSTAR_USER/channel/master
script:
- python condaci.py auto ./conda --binstaruser $BINSTAR_USER --binstarkey $BINSTAR_KEY
notifications:
slack: menpo:19gyWImMkOfCj0iDAgTbDlDA
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/7599ff4870c99ba51310
on_success: always
on_failure: always
on_start: never
|
env:
global:
- BINSTAR_USER: menpo
matrix:
- PYTHON_VERSION: 2.7
- PYTHON_VERSION: 3.4
matrix:
allow_failures:
- env: PYTHON_VERSION=3.4 # waiting for menpo Python 3 support
install:
- wget https://raw.githubusercontent.com/jabooth/condaci/v0.2.1/condaci.py -O condaci.py
- python condaci.py setup $PYTHON_VERSION --channel $BINSTAR_USER
- export PATH=$HOME/miniconda/bin:$PATH
- conda config --add channels $BINSTAR_USER/channel/master
script:
- python condaci.py auto ./conda --binstaruser $BINSTAR_USER --binstarkey $BINSTAR_KEY
notifications:
slack:
rooms:
- menpo:19gyWImMkOfCj0iDAgTbDlDA
on_success: :change
on_failure: :change
email: false
|
Move to condaci 0.2.1, quieter CI notifications
|
Move to condaci 0.2.1, quieter CI notifications
|
YAML
|
bsd-3-clause
|
yuxiang-zhou/menpodetect,jabooth/menpodetect,yuxiang-zhou/menpodetect,jabooth/menpodetect
|
4c70d38282cb5caed7afba9c710db571e2d4d4f1
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.6"
- "2.7"
services: mysql
install:
- pip install -r requirements/dev.txt --use-mirrors
script: python manage.py test --noinput
|
language: python
python:
- "2.6"
- "2.7"
services: mysql
install:
- pip install -r requirements/dev.txt --use-mirrors
before_script:
- mysql -e 'create database captain;'
script: python manage.py test --noinput
|
Create database before running tests.
|
Create database before running tests.
|
YAML
|
mpl-2.0
|
mozilla/captain,mozilla/captain
|
a181c510bb1836ef482ab20488e0421e188a51e6
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "stable"
- "iojs"
after_success:
- "npm run update-gh-pages"
notifications:
slack:
secure: f5QSFkke3kvTa0Li+PT5qgFozTmY0inw0PPWJn5FXeg+P1PGIG4ksL8ACKxtwO+repbrdrLYX9kt/AQaLnktXXvuylgI5wqt+YQYIwTP8WV91SkBVJotz4+0UxRk0O47lM/IGBSV5lU6Oon0gr8zz4PPwpZw4xjWEinWmWi+ZLo=
|
language: node_js
node_js:
- "stable"
- "iojs"
notifications:
slack:
secure: f5QSFkke3kvTa0Li+PT5qgFozTmY0inw0PPWJn5FXeg+P1PGIG4ksL8ACKxtwO+repbrdrLYX9kt/AQaLnktXXvuylgI5wqt+YQYIwTP8WV91SkBVJotz4+0UxRk0O47lM/IGBSV5lU6Oon0gr8zz4PPwpZw4xjWEinWmWi+ZLo=
on_success: change
|
Remove "after_success" task for now.
|
Travis: Remove "after_success" task for now.
|
YAML
|
mit
|
coopsource/ohm,coopsource/ohm,anfedorov/ohm,harc/ohm,DanielTomlinson/ohm,coopsource/ohm,anfedorov/ohm,cdglabs/ohm,cdglabs/ohm,anfedorov/ohm,DanielTomlinson/ohm,DanielTomlinson/ohm,harc/ohm,harc/ohm,cdglabs/ohm
|
aa6d9dc98928c2b3a5f1f398de3780bd982a7a97
|
.travis.yml
|
.travis.yml
|
language: python
python:
- 3.6
cache:
pip: true
directories:
- ${VIRTUAL_ENV}
env:
global:
- RANDOM_SEED=0
before_install:
- curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
- source $HOME/.poetry/env
- make doctor
install:
- make install
script:
- make check
- make test
after_success:
- pip install coveralls scrutinizer-ocular
- coveralls
- ocular
notifications:
email:
on_success: never
on_failure: never
|
dist: xenial
language: python
python:
- 3.6
- 3.7
cache:
pip: true
directories:
- ${VIRTUAL_ENV}
env:
global:
- RANDOM_SEED=0
before_install:
- curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
- source $HOME/.poetry/env
- make doctor
install:
- make install
script:
- make check
- make test
after_success:
- pip install coveralls scrutinizer-ocular
- coveralls
- ocular
notifications:
email:
on_success: never
on_failure: never
|
Test against Python 3.6 on Travis CI
|
Test against Python 3.6 on Travis CI
|
YAML
|
mit
|
jacebrowning/mine
|
5632360a5aac6c583b46d2f09fce4a5d3de46e0a
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install:
- gem install bundler -v 1.17.3
matrix:
include:
- rvm: 2.5.1 # Pre-installed Ruby version
script: bundle exec rake rubocop # ONLY lint once, first
- rvm: 2.1
- rvm: 2.2
- rvm: 2.3.5
- rvm: 2.4.6
- rvm: 2.5.5
- rvm: 2.6.3
- rvm: jruby-9.1.8.0
env:
- JRUBY_OPTS="--debug"
jdk: openjdk8
- rvm: jruby-9.2.8.0
env:
- JRUBY_OPTS="--debug"
|
language: ruby
before_install:
- gem install bundler -v 1.17.3
matrix:
include:
- rvm: 2.5.3 # Pre-installed Ruby version
script: bundle exec rake rubocop # ONLY lint once, first
- rvm: 2.1
- rvm: 2.2
- rvm: 2.3.5
- rvm: 2.4.6
- rvm: 2.5.5
- rvm: 2.6.3
- rvm: jruby-9.1.8.0
env:
- JRUBY_OPTS="--debug"
jdk: openjdk8
- rvm: jruby-9.2.8.0
env:
- JRUBY_OPTS="--debug"
|
Update default CI ruby version
|
Update default CI ruby version
The point of this initial build is to be fast and to run rubocop by
using the default, without building a ruby version. However, since the
default version has now changed, we're always building a ruby version
for that check.
The default version can be seen here:
https://docs.travis-ci.com/user/reference/xenial/#ruby-support
|
YAML
|
mit
|
elabs/pundit
|
ab2ed3f2f00a14e62bd93ebde74146aef6c5753f
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
branches:
only:
- master
script: rake
env:
- DB=mysql
- DB=postgresql
- RAILS_VERSION=4.1.0.rc2
notifications:
irc:
on_success: change
on_failure: always
use_notice: true
channels:
- "irc.freenode.org#alchemy_cms"
matrix:
allow_failures:
- env: RAILS_VERSION=4.1.0.rc2
|
language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
branches:
only:
- master
script: rake
env:
- DB=mysql
- DB=postgresql
- RAILS_VERSION=4.1.0
notifications:
irc:
on_success: change
on_failure: always
use_notice: true
channels:
- "irc.freenode.org#alchemy_cms"
matrix:
allow_failures:
- env: RAILS_VERSION=4.1.0
|
Build against Rails 4.1.0, without allowing it to fail.
|
Build against Rails 4.1.0, without allowing it to fail.
|
YAML
|
bsd-3-clause
|
mamhoff/alchemy_cms,akra/alchemy_cms,watg/alchemy_cms,kinsomicrote/alchemy_cms,heisam/alchemy_cms,getkiwicom/alchemy_cms,AlchemyCMS/alchemy_cms,getkiwicom/alchemy_cms,mixandgo/alchemy_cms,chalmagean/alchemy_cms,phaedryx/alchemy_cms,paperculture/alchemy_cms,paperculture/alchemy_cms,mtomov/alchemy_cms,robinboening/alchemy_cms,getkiwicom/alchemy_cms,nielspetersen/alchemy_cms,cygnus6/alchemy_cms,jsqu99/alchemy_cms,Domenoth/alchemy_cms,paperculture/alchemy_cms,phaedryx/alchemy_cms,jsqu99/alchemy_cms,paperculture/alchemy_cms,cygnus6/alchemy_cms,IngoAlbers/alchemy_cms,Domenoth/alchemy_cms,nielspetersen/alchemy_cms,nielspetersen/alchemy_cms,IngoAlbers/alchemy_cms,getkiwicom/alchemy_cms,nielspetersen/alchemy_cms,Domenoth/alchemy_cms,IngoAlbers/alchemy_cms,akra/alchemy_cms,thomasjachmann/alchemy_cms,clst/alchemy_cms,cygnus6/alchemy_cms,phaedryx/alchemy_cms,mamhoff/alchemy_cms,mixandgo/alchemy_cms,robinboening/alchemy_cms,IngoAlbers/alchemy_cms,mtomov/alchemy_cms,kinsomicrote/alchemy_cms,thomasjachmann/alchemy_cms,chalmagean/alchemy_cms,heisam/alchemy_cms,robinboening/alchemy_cms,clst/alchemy_cms,akra/alchemy_cms,cygnus6/alchemy_cms,mixandgo/alchemy_cms,watg/alchemy_cms,AlchemyCMS/alchemy_cms,mixandgo/alchemy_cms,heisam/alchemy_cms,watg/alchemy_cms,heisam/alchemy_cms,jsqu99/alchemy_cms,clst/alchemy_cms,clst/alchemy_cms,Domenoth/alchemy_cms,chalmagean/alchemy_cms,mtomov/alchemy_cms,thomasjachmann/alchemy_cms,kinsomicrote/alchemy_cms,jsqu99/alchemy_cms,akra/alchemy_cms,mamhoff/alchemy_cms,phaedryx/alchemy_cms,chalmagean/alchemy_cms,kinsomicrote/alchemy_cms,mtomov/alchemy_cms,AlchemyCMS/alchemy_cms,watg/alchemy_cms,thomasjachmann/alchemy_cms
|
385c8cd9d09a9267e133c6bbcda36e0e5051be56
|
.travis.yml
|
.travis.yml
|
branches:
only:
- 'master'
language: ruby
rvm:
- 1.9.2
- 1.9.3
env:
- DB=postgres BUILD_TYPE=other
- DB=postgres BUILD_TYPE=cucumber
bundler_args: "--without development production heroku"
before_script: "./script/ci/before.sh"
script: "bundle exec rake travis"
notifications:
irc:
channels:
- 'irc.freenode.org:6667#codeforamerica'
|
branches:
only:
- 'master'
language: ruby
rvm:
- 1.9.2
- 1.9.3
env:
- DB=postgres BUILD_TYPE=other
bundler_args: "--without development production heroku"
before_script: "./script/ci/before.sh"
script: "bundle exec rake travis"
notifications:
irc:
channels:
- 'irc.freenode.org:6667#codeforamerica'
|
Remove cucumber tests for now
|
Remove cucumber tests for now
|
YAML
|
bsd-3-clause
|
milafrerichs/brigade,milafrerichs/brigade,milafrerichs/brigade
|
a8addc4c4061f2e478773ae0c5bf183ed2910d71
|
.travis.yml
|
.travis.yml
|
sudo: false
language: c
matrix:
include:
- env: CC=gcc-5
addons:
apt:
packages: ['g++-5', 'cmake', 'ninja-build']
sources: ['ubuntu-toolchain-r-test', 'kalakris-cmake']
- env: CC=clang-3.8
addons:
apt:
packages: ['clang-3.8', 'cmake', 'ninja-build']
sources: ['ubuntu-toolchain-r-test', 'kalakris-cmake']
before_script:
- mkdir build
- cd build
script:
- cmake -G"Ninja" ..
- ninja
|
sudo: false
language: c
matrix:
include:
- env: CC=gcc-5
addons:
apt:
packages: ['g++-5', 'ninja-build']
sources: ubuntu-toolchain-r-test
- env: CC=clang-3.8
addons:
apt:
packages: ['clang-3.8', 'ninja-build']
sources: ubuntu-toolchain-r-test
before_install:
- export PATH="$HOME/bin:$PATH"
- mkdir ~/bin
- wget --no-check-certificate --no-clobber -O /tmp/tools/cmake https://cmake.org/files/v3.4/cmake-3.4.0-rc3-Linux-x86_64.sh || true
- chmod -R +x /tmp/tools
install:
- /tmp/tools/cmake --prefix="$HOME" --exclude-subdir
before_script:
- mkdir build
- cd build
script:
- cmake -G"Ninja" ..
- ninja
|
Use newer version of CMake on Travis.
|
Use newer version of CMake on Travis.
|
YAML
|
mit
|
skorezore/tdpi
|
da7a0c7db3cc5379a54bf1560e8cb3f026ed2ca5
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.10"
- "0.11"
|
language: node_js
node_js:
- "0.10"
- "0.12"
|
Update Travis config to use Node 0.12
|
Update Travis config to use Node 0.12
|
YAML
|
mit
|
helmetjs/ienoopen
|
6eaeded6a6c2a47e47b38c54b2165488950edde4
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
|
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
|
Test on more recent Ruby versions
|
Test on more recent Ruby versions
|
YAML
|
mit
|
hybridgroup/taskmapper-pivotal
|
4cb36c2fbb381d8148cfd048a2152160c7ac29e3
|
.travis.yml
|
.travis.yml
|
language: php
dist: precise
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- nightly
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer install --no-interaction --prefer-dist
script: make sniff test
|
language: php
dist: precise
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
cache:
directories:
- $HOME/.composer/cache
before_script:
- travis_retry composer install --no-interaction --prefer-dist
script: make sniff test
|
Use 7.4snapshot to build on PHP 7.4
|
Fix: Use 7.4snapshot to build on PHP 7.4
|
YAML
|
mit
|
stof/Faker,matriphe/Faker,localheinz/Faker
|
56a8ab8db74a9472279ef60432a9cb2c54845393
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
- "pypy3"
install:
- pip install -r dev_requirements.txt
script:
- check-manifest
- nosetests --rednose --with-coverage --cover-package=transip
- pylint --rcfile=.pylintrc transip
# Deploy a new release to PyPi for every new tag on the 'master' branch on the
# repository 'benkonrath/transip-api'.
deploy:
provider: pypi
user: roaldnefs
password:
secure: "ahpUlrwDpSzVETim897QkLZNGdK3MUZJWghAd3U9idPaIo/Ax21jgPJ0emRQxBOEmK+ztcxVkm5GKU5IZQYbBbTZeppi+xV0a3MeCwmMIrwDZCYxc8uZPjbqmqLjaO3dd5lNcpOXkDXXhr5LGtUIsRKhI9oLb6l+ZfbmuF4niBw="
on:
repo: benkonrath/transip-api
tags: true
branch: master
python: 3.6
|
sudo: false
language: python
cache: pip
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
# Not currently working in travisci.org:
#- "pypy3"
install:
- pip install -r dev_requirements.txt
script:
- check-manifest
- nosetests --rednose --with-coverage --cover-package=transip
- pylint --rcfile=.pylintrc transip
# Deploy a new release to PyPi for every new tag on the 'master' branch on the
# repository 'benkonrath/transip-api'.
deploy:
provider: pypi
user: roaldnefs
password:
secure: "ahpUlrwDpSzVETim897QkLZNGdK3MUZJWghAd3U9idPaIo/Ax21jgPJ0emRQxBOEmK+ztcxVkm5GKU5IZQYbBbTZeppi+xV0a3MeCwmMIrwDZCYxc8uZPjbqmqLjaO3dd5lNcpOXkDXXhr5LGtUIsRKhI9oLb6l+ZfbmuF4niBw="
on:
repo: benkonrath/transip-api
tags: true
branch: master
python: 3.6
|
Remove CI test runs with pypy3
|
Remove CI test runs with pypy3
|
YAML
|
mit
|
benkonrath/transip-api,benkonrath/transip-api
|
e6eb9ba6d433c086976e3470dc3401d0d7ecc337
|
.travis.yml
|
.travis.yml
|
sudo: false
dist: trusty
language: node_js
node_js:
- 12
stages:
- test
- deploy
env:
- TEST_SUITE=main
- TEST_SUITE=tz TZ_LENGTH=2 TZ_INDEX=0
- TEST_SUITE=tz TZ_LENGTH=2 TZ_INDEX=1
- TEST_SUITE=node
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g yarn
branches:
only:
- master
- "/v\\d+\\.\\d+\\.\\d+(-\\w+)?/"
script:
- ./scripts/test/travis.sh
jobs:
include:
- stage: deploy
if: tag IS present
script: ./scripts/release/release.sh
- stage: Coverage report
script: ./scripts/test/coverageReport.sh
cache: yarn
addons:
chrome: stable
# sauce_connect: true
|
sudo: false
dist: trusty
language: node_js
node_js:
- 14
stages:
- test
- deploy
env:
- TEST_SUITE=main
- TEST_SUITE=tz TZ_LENGTH=2 TZ_INDEX=0
- TEST_SUITE=tz TZ_LENGTH=2 TZ_INDEX=1
- TEST_SUITE=node
before_install:
- export CHROME_BIN=chromium-browser
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g yarn
branches:
only:
- master
- "/v\\d+\\.\\d+\\.\\d+(-\\w+)?/"
script:
- ./scripts/test/travis.sh
jobs:
include:
- stage: deploy
if: tag IS present
script: ./scripts/release/release.sh
- stage: Coverage report
script: ./scripts/test/coverageReport.sh
cache: yarn
addons:
chrome: stable
# sauce_connect: true
|
Update Node.js to the latest LTS
|
Update Node.js to the latest LTS
|
YAML
|
mit
|
date-fns/date-fns,date-fns/date-fns,date-fns/date-fns
|
74f1f8d248c53ae803a48101b926511053328ebd
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
env:
- CC=clang CXX=clang++
- ""
install:
- npm install --no-save --ignore-scripts
before_script:
- tmp=$(mktemp --directory)
- bash -O dotglob -O extglob -c 'mv !(node_modules|test) "$1"/' bash "$tmp"
- pack=$(npm pack "$tmp")
- node -p '"sha512-" + Buffer.from(process.argv[1], "hex").toString("base64")' $(sha512sum -- "$pack")
- tar --strip-components=1 -x -v -f "$pack"
- npm install --no-save
|
language: node_js
node_js:
- "4"
- "6"
- "8"
- "9"
- "10"
env:
- CC=clang CXX=clang++
- ""
install:
- npm install --no-save --ignore-scripts
before_script:
- tmp=$(mktemp --directory)
- bash -O dotglob -O extglob -c 'mv !(node_modules|test) "$1"/' bash "$tmp"
- pack=$(npm pack "$tmp")
- node -p '"sha512-" + Buffer.from(process.argv[1], "hex").toString("base64")' $(sha512sum -- "$pack")
- tar --strip-components=1 -x -v -f "$pack"
- npm install --no-save
|
Add Node 10 to CI
|
Add Node 10 to CI
|
YAML
|
isc
|
charmander/bcrypt-small,charmander/bcrypt-small,charmander/bcrypt-small
|
a568ec01a14f98c7ef1b89b7f08d6aa612313bcb
|
.travis.yml
|
.travis.yml
|
os: linux
dist: trusty
language: java
install: true
jdk:
- openjdk7
- openjdk8
- openjdk9
cache:
directories:
- $HOME/.m2
script: ./mvnw clean verify
|
os: linux
dist: trusty
language: java
install: true
jdk:
- openjdk7
- openjdk8
- oraclejdk11
cache:
directories:
- $HOME/.m2
script: ./mvnw clean verify
|
Test against OpenJDK7, OpenJDK8 and OracleJDK11
|
Test against OpenJDK7, OpenJDK8 and OracleJDK11
|
YAML
|
mit
|
deliverymind/wiremock-maven-plugin,deliverymind/wiremock-maven-plugin
|
8094e66a0bd7f129459bc580be924bb670184fb3
|
.travis.yml
|
.travis.yml
|
dist: bionic
language: python
matrix:
include:
- python: "3.8"
- python: "3.7"
- python: "3.6"
- python: "3.5"
- python: "3.4"
- python: "2.7"
- python: "nightly"
- python: "pypy3"
- os: osx
language: generic
- name: build docs and check for broken links
install:
- pip install -r doc/requirements.txt
script:
- python setup.py build_sphinx -b linkcheck -W
addons:
apt:
packages:
- pandoc
- libportaudio2
install:
- pip install .
script:
- cd /tmp
- python -m sounddevice
- python -c "import sounddevice as sd; print(sd._libname)"
- python -c "import sounddevice as sd; print(sd.get_portaudio_version())"
notifications:
email: false
|
dist: bionic
language: python
matrix:
include:
- python: "3.8"
- python: "3.7"
- python: "3.6"
- python: "3.5"
- python: "2.7"
- python: "nightly"
- python: "pypy3"
- os: osx
language: generic
- name: build docs and check for broken links
install:
- pip install -r doc/requirements.txt
script:
- python setup.py build_sphinx -b linkcheck -W
addons:
apt:
packages:
- pandoc
- libportaudio2
install:
- pip install .
script:
- cd /tmp
- python -m sounddevice
- python -c "import sounddevice as sd; print(sd._libname)"
- python -c "import sounddevice as sd; print(sd.get_portaudio_version())"
notifications:
email: false
|
Remove tests for Python 3.4
|
Travis-CI: Remove tests for Python 3.4
|
YAML
|
mit
|
spatialaudio/python-sounddevice,spatialaudio/python-sounddevice
|
e31bd354df16641df3f2802089d9b1e156c15766
|
.travis.yml
|
.travis.yml
|
rvm:
- "2.1.0"
- "2.2.0"
- "2.3.0"
|
rvm:
- "2.1.8"
- "2.2.4"
- "2.3.0"
|
Use latest minor versions for each Ruby on Travis
|
Use latest minor versions for each Ruby on Travis
|
YAML
|
mit
|
KitaitiMakoto/epub-parser
|
45bd8bb9c09bd1f63ad839575d1b7b128e393073
|
.travis.yml
|
.travis.yml
|
### Project specific config ###
language: php
matrix:
include:
- os: linux
php: '5.6'
- os: linux
php: '7.0'
- os: linux
php: '7.0'
env:
- ATOM_CHANNEL=beta
after_failure:
- php --syntax-check --define display_errors=On --define log_errors=Off ./spec/files/good.php
- php --syntax-check --define display_errors=On --define log_errors=Off ./spec/files/bad.php
before_script:
- php --version
### Generic setup follows ###
script:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
- ./build-package.sh
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- master
- /^greenkeeper/.*$/
git:
depth: 10
sudo: false
addons:
apt:
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot
|
### Project specific config ###
language: php
matrix:
include:
- os: linux
php: '5.6'
- os: linux
php: '7.0'
- os: linux
php: '7.1'
env:
- ATOM_CHANNEL=beta
after_failure:
- php --syntax-check --define display_errors=On --define log_errors=Off ./spec/files/good.php
- php --syntax-check --define display_errors=On --define log_errors=Off ./spec/files/bad.php
before_script:
- php --version
### Generic setup follows ###
script:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
- ./build-package.sh
notifications:
email:
on_success: never
on_failure: change
branches:
only:
- master
- /^greenkeeper/.*$/
git:
depth: 10
sudo: false
addons:
apt:
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot
|
Update beta channel test to run on PHP v7.1
|
Update beta channel test to run on PHP v7.1
|
YAML
|
mit
|
AtomLinter/linter-php,AtomLinter/linter-php
|
b3895026b6ce5a07b1fb2c79867fb2780a7e4aa0
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- '0.12'
- '0.10'
- '0.8'
- 'iojs'
before_install:
- npm install -g npm@~1.4.6
|
language: node_js
node_js:
- '9'
- '8'
- '7'
- '6'
- '5'
- '4'
- 'iojs'
- '0.12'
- '0.10'
- '0.8'
before_install:
- 'if [ "${TRAVIS_NODE_VERSION}" == "0.8" ]; then npm install -g npm@~1.4.6; fi'
|
Test on all newer node versions
|
Test on all newer node versions
|
YAML
|
mit
|
watson/cheerio-advanced-selectors
|
f317090e6ddc0faf42432143722a942b9bfce056
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- "10"
- "12"
cache:
directories:
- node_modules
script:
- npm run lint
- npm test
matrix:
fast_finish: true
after_script: "npm run coverage"
|
# https://docs.travis-ci.com/user/build-config-validation/
version: ~> 1.0
language: node_js
node_js:
- "10"
- "12"
cache:
directories:
- node_modules
script:
- npm run lint
- npm test
jobs:
fast_finish: true
after_script: "npm run coverage"
|
Validate Travis CI config file from now on
|
Validate Travis CI config file from now on
|
YAML
|
mit
|
paazmaya/shuji
|
24ce2bcfc132d8d380629cdc4c860acfe921448b
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
- ree
|
language: ruby
rvm:
- "1.9.2"
- "1.9.3"
- ruby-head
- jruby-19mode
- jruby-head
- rbx-19mode
|
Remove ree from Travis build
|
Remove ree from Travis build
|
YAML
|
mit
|
abevoelker/nomen
|
9dd5d1a8a1d3529f63a87c20ee6497aaa8dda694
|
.travis.yml
|
.travis.yml
|
language: rust
rust:
- stable
- beta
- nightly
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
sudo: required
before_install:
- bash ./travis/install_cfitsio.sh
cache: cargo
matrix:
allow_failures:
- rust: nightly
after_success: |
wget https://github.com/SimonKagstrom/kcov/archive/v31.zip &&
unzip v31.zip && mkdir kcov-31/build && cd kcov-31/build && cmake .. && make &&
sudo make install && cd ../.. &&
kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo --verify target/kcov target/debug/fitsio-*
|
language: rust
rust:
- stable
- beta
- nightly
sudo: required
before_install:
- bash ./travis/install_cfitsio.sh
cache: cargo
matrix:
allow_failures:
- rust: nightly
after_success: |
sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev binutils-dev libbfd-dev libiberty-dev
wget https://github.com/SimonKagstrom/kcov/archive/v31.zip &&
unzip v31.zip && mkdir kcov-31/build && cd kcov-31/build && cmake .. && make &&
sudo make install && cd ../.. &&
kcov --coveralls-id=$TRAVIS_JOB_ID --exclude-pattern=/.cargo --verify target/kcov target/debug/fitsio-*
|
Update to install packages at after_success level
|
Update to install packages at after_success level
|
YAML
|
apache-2.0
|
mindriot101/rust-fitsio,mindriot101/rust-cfitsio,mindriot101/rust-fitsio,mindriot101/rust-fitsio,mindriot101/rust-fitsio,mindriot101/rust-fitsio,mindriot101/rust-cfitsio
|
9ac3938852402640511e2fa980621c1c671dd5d7
|
.travis.yml
|
.travis.yml
|
language: ruby
dist: trusty
sudo: false
cache: bundler
bundler_args: --without tools benchmarks
script:
- bundle exec rake
after_success:
# Send coverage report from the job #1 == current MRI release
- '[ "${TRAVIS_JOB_NUMBER#*.}" = "1" ] && [ "$TRAVIS_BRANCH" = "master" ] && bundle exec codeclimate-test-reporter'
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
- 2.1.10
- jruby-9.1.5.0
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
addons:
code_climate:
repo_token: c1c8f334714254acf5da901ca4da6afe24b15408074faae27159e3d14a450b62
|
language: ruby
dist: trusty
sudo: false
cache: bundler
bundler_args: --without tools benchmarks
script:
- bundle exec rake
after_success:
# Send coverage report from the job #1 == current MRI release
- '[ "${TRAVIS_JOB_NUMBER#*.}" = "1" ] && [ "$TRAVIS_BRANCH" = "master" ] && bundle exec codeclimate-test-reporter'
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
- 2.1.10
- jruby-9.1.6.0
env:
global:
- JRUBY_OPTS='--dev -J-Xmx1024M'
matrix:
allow_failures:
- rvm: jruby-9.1.6.0
notifications:
email: false
webhooks:
urls:
- https://webhooks.gitter.im/e/19098b4253a72c9796db
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
addons:
code_climate:
repo_token: c1c8f334714254acf5da901ca4da6afe24b15408074faae27159e3d14a450b62
|
Allow JRuby to fail on Travis (it’s having trouble with installing json)
|
Allow JRuby to fail on Travis (it’s having trouble with installing json)
|
YAML
|
mit
|
lotus/view,dry-rb/dry-view,hanami/view,dry-rb/dry-view,hanami/view
|
f6ca031b3f349549997864c9b3584a3cecbbd7c2
|
.travis.yml
|
.travis.yml
|
language: c
compiler:
- gcc
- clang
env:
- VER_NGINX=1.6.3
- VER_NGINX=1.8.1
- VER_NGINX=1.9.15
- VER_NGINX=1.10.0
sudo: false
addons:
apt:
packages:
- libzmq3-dev
install:
- mkdir ./vendor && cd ./vendor
- wget "http://nginx.org/download/nginx-${VER_NGINX}.tar.gz" && tar -xf "nginx-${VER_NGINX}.tar.gz"
- cd nginx-${VER_NGINX}
- ./configure --add-module=../..
script: make
|
language: c
compiler:
- gcc
- clang
env:
- VER_NGINX=1.6.3
- VER_NGINX=1.8.1
- VER_NGINX=1.9.15
- VER_NGINX=1.10.1
- VER_NGINX=1.11.3
sudo: false
addons:
apt:
packages:
- libzmq3-dev
install:
- mkdir ./vendor && cd ./vendor
- wget "http://nginx.org/download/nginx-${VER_NGINX}.tar.gz" && tar -xf "nginx-${VER_NGINX}.tar.gz"
- cd nginx-${VER_NGINX}
- ./configure --add-module=../..
script: make
|
Add 1.10.1 and 1.11.3 to Travis
|
Add 1.10.1 and 1.11.3 to Travis
|
YAML
|
mit
|
danielfbento/nginx-log-zmq,danifbento/nginx-log-zmq
|
c4f600a1b089f666475290d406f4bdea6f9f4da0
|
.travis.yml
|
.travis.yml
|
language: python
cache: pip
matrix:
include:
- os: linux
dist: xenial
sudo: false
python: '2.6'
- os: linux
dist: xenial
sudo: false
python: '2.7'
- os: linux
dist: xenial
sudo: false
python: '3.2'
- os: linux
dist: xenial
sudo: false
python: '3.3'
- os: linux
dist: xenial
sudo: false
python: '3.4'
- os: linux
dist: xenial
sudo: false
python: '3.5'
- os: linux
dist: xenial
sudo: false
python: '3.6'
- os: linux
dist: xenial
sudo: false
python: '3.7-dev'
- os: linux
dist: xenial
sudo: false
python: 'nightly'
- os: linux
dist: xenial
sudo: false
python: 'pypy'
- os: linux
dist: xenial
sudo: false
python: 'pypy3'
install:
- pip install codecov
- pip install -r requirements.txt
- pip install -e .
script:
- PYTHONPATH=.:$PYTHONPATH python tests/__main__.py
after_success:
- PYTHONPATH=.:$PYTHONPATH coverage run --omit=*test* tests/__main__.py
- codecov
|
language: python
cache: pip
matrix:
include:
- os: linux
dist: xenial
sudo: false
python: '2.6'
- os: linux
dist: xenial
sudo: false
python: '2.7'
- os: linux
dist: xenial
sudo: false
python: '3.2'
- os: linux
dist: xenial
sudo: false
python: '3.3'
- os: linux
dist: xenial
sudo: false
python: '3.4'
- os: linux
dist: xenial
sudo: false
python: '3.5'
- os: linux
dist: xenial
sudo: false
python: '3.6'
- os: linux
dist: xenial
sudo: true
python: '3.7'
- os: linux
dist: xenial
sudo: false
python: 'nightly'
- os: linux
dist: xenial
sudo: false
python: 'pypy'
- os: linux
dist: xenial
sudo: false
python: 'pypy3'
install:
- pip install codecov
- pip install -r requirements.txt
- pip install -e .
script:
- PYTHONPATH=.:$PYTHONPATH python tests/__main__.py
after_success:
- PYTHONPATH=.:$PYTHONPATH coverage run --omit=*test* tests/__main__.py
- codecov
|
Switch back to offical Python 3.7 build
|
Switch back to offical Python 3.7 build
It appears that Python 3.7 use in Travis-CI is finally
fixed. However, it requires use of xenial distribution
and sudo: true. Those have now been added to the matrix.
|
YAML
|
bsd-2-clause
|
etingof/pyasn1-modules
|
7f5123e4d115bb978c82cfdc9b43616d79f1d296
|
.travis.yml
|
.travis.yml
|
language: node_js
os:
- linux
node_js:
- "8"
- "6"
- "4"
after_script:
- npm run coverage
- cat coverage/lcov.info | node_modules/.bin/coveralls
|
language: node_js
os:
- linux
node_js:
- "8"
- "6"
after_script:
- npm run coverage
- cat coverage/lcov.info | node_modules/.bin/coveralls
|
Revert "Task: Add node4 support."
|
Revert "Task: Add node4 support."
This reverts commit ae4a77211bb50494095d182fb3b523390883c8fb.
|
YAML
|
mit
|
nspragg/filehound
|
58e1f9166a6e9ab96fdc84d76665f13f2fc9697b
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.11.x
- master
sudo: false
services:
- rabbitmq
# safelist branch to build
branches:
only:
- master
addons:
apt:
packages:
- rabbitmq-server
env:
- AMQP_URL=amqp://guest:[email protected]:5672/
script:
- make jenkins
notifications:
email:
- [email protected]
|
language: go
go:
- 1.11.x
- 1.17.x
sudo: false
services:
- rabbitmq
# safelist branch to build
branches:
only:
- master
addons:
apt:
packages:
- rabbitmq-server
env:
- AMQP_URL=amqp://guest:[email protected]:5672/
script:
- make jenkins
notifications:
email:
- [email protected]
|
Fix latest version compatible 1.17.X
|
[FIX] Fix latest version compatible 1.17.X
|
YAML
|
mit
|
aleasoluciones/simpleamqp
|
bf884697e758d0f965c8b58ef579e017615ecc56
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
|
language: ruby
cache: bundler
rvm:
- 2.0.0
- 2.1.7
- 2.2.3
before_install: gem install bundler -v 1.10.6
|
Test on more Ruby versions
|
Test on more Ruby versions
|
YAML
|
mit
|
everypolitician/jekyll-google_analytics,everypolitician/jekyll-google_analytics
|
b72953e5638c702eaab00466c56ce4ecdbeff549
|
.travis.yml
|
.travis.yml
|
language: cpp
script:
- git submodule update --init --recursive
- export CXX="clang++ -isystem /usr/include/x86_64-linux-gnu/c++/4.8/ -isystem /usr/include/x86_64-linux-gnu"
- cd bin/ninja && ./bootstrap.py && ./configure.py && cd -
- ./bin/ninja/ninja -f bootstrap.ninja
- cat build.ninja
- ./bin/ninja/ninja
compiler:
- clang
before_install:
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ saucy main universe"
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ raring main universe"
- sudo add-apt-repository -y "deb http://llvm.org/apt/raring/ llvm-toolchain-raring main"
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo apt-get -qq update
- sudo apt-get -qq install g++-4.8 libboost1.53-all-dev clang-3.4 re2c
|
language: cpp
script:
- git submodule update --init --recursive
- export CXX="clang++ -isystem /usr/include/x86_64-linux-gnu/c++/4.8/ -isystem /usr/include/x86_64-linux-gnu"
- cd bin/ninja && ./bootstrap.py && ./configure.py && cd -
- ./bin/ninja/ninja -f bootstrap.ninja
- ./bin/ninja/ninja
compiler:
- clang
before_install:
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ saucy main universe"
- sudo add-apt-repository -y "deb http://archive.ubuntu.com/ubuntu/ raring main universe"
- sudo add-apt-repository -y "deb http://llvm.org/apt/raring/ llvm-toolchain-raring main"
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo apt-get -qq update
- sudo apt-get -qq install g++-4.8 libboost1.53-all-dev clang-3.4 re2c
|
Remove the display of build.ninja contents.
|
Remove the display of build.ninja contents.
|
YAML
|
unlicense
|
automeka/automeka,automeka/automeka
|
e000076030ad042a9001c9b2b0088e2b823dc226
|
.travis.yml
|
.travis.yml
|
before_install:
- gem update bundler rake
branches:
only:
- master
env:
global:
- secure: | # CODECLIMATE_REPO_TOKEN
LANA2wEG+eJ4a+Sl0Uhw343XutMp00m/+IV4n7T+AYpFmzmBPB8k5kVP1SZR
lhqpkdWuJlpaSUyP1EvODyS3Ryg+UtCXXKa0vX6AQseYZqMzXoWWWS1UPHx5
R5/Dvko4JIPfOeeXwyPGnBhzewdQSqXcQR5UnPIWPG7jvfoCd/Q=
gemfile:
- gemfiles/rails30.gemfile
- gemfiles/rails31.gemfile
- gemfiles/rails32.gemfile
- gemfiles/rails40.gemfile
- gemfiles/rails41.gemfile
- gemfiles/rails42.gemfile
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
include:
- rvm: 2.2.2
gemfile: gemfiles/rails50.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails50.gemfile
rvm:
- 1.9.3
- "2.0"
- "2.1"
- 2.2.2
- 2.3.0
- ruby-head
script: bundle exec rspec
|
before_install:
- gem update bundler rake
branches:
only:
- master
cache: bundler
env:
global:
- secure: | # CODECLIMATE_REPO_TOKEN
LANA2wEG+eJ4a+Sl0Uhw343XutMp00m/+IV4n7T+AYpFmzmBPB8k5kVP1SZR
lhqpkdWuJlpaSUyP1EvODyS3Ryg+UtCXXKa0vX6AQseYZqMzXoWWWS1UPHx5
R5/Dvko4JIPfOeeXwyPGnBhzewdQSqXcQR5UnPIWPG7jvfoCd/Q=
gemfile:
- gemfiles/rails30.gemfile
- gemfiles/rails31.gemfile
- gemfiles/rails32.gemfile
- gemfiles/rails40.gemfile
- gemfiles/rails41.gemfile
- gemfiles/rails42.gemfile
language: ruby
matrix:
allow_failures:
- rvm: ruby-head
include:
- rvm: 2.2.2
gemfile: gemfiles/rails50.gemfile
- rvm: 2.3.0
gemfile: gemfiles/rails50.gemfile
rvm:
- 1.9.3
- "2.0"
- "2.1"
- 2.2.2
- 2.3.0
- ruby-head
script: bundle exec rspec
sudo: false
|
Use container-based infrastructure and cache bundle
|
Use container-based infrastructure and cache bundle
|
YAML
|
mit
|
JDutil/interactor-rails,collectiveidea/interactor-rails,collectiveidea/interactor-rails,JDutil/interactor-rails
|
c5b5191d98957ecd239fd17de835f651800f63b3
|
.travis.yml
|
.travis.yml
|
language: ruby
script: "bundle exec rspec spec"
rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ree
env:
- ACTIVE_RECORD_VERSION="~> 4.0.0.rc1"
- ACTIVE_RECORD_VERSION="~> 3.2.0"
- ACTIVE_RECORD_VERSION="~> 3.1.0"
- ACTIVE_RECORD_VERSION="~> 3.0.0"
matrix:
allow_failures:
- env: ACTIVE_RECORD_VERSION="~> 4.0.0.rc1"
exclude:
- rvm:
- 1.8.7
- jruby-18mode
- rbx-18mode
- ree
env: ACTIVE_RECORD_VERSION="~> 4.0.0.rc1"
|
language: ruby
script: "bundle exec rspec spec"
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
env:
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERSION="~> 3.2.0"
- ACTIVE_RECORD_VERSION="~> 3.1.0"
- ACTIVE_RECORD_VERSION="~> 3.0.0"
|
Test against Active Record 4.0
|
Test against Active Record 4.0
Don't test against Ruby 1.8
|
YAML
|
mit
|
Casecommons/with_model
|
65d5e595827f17ecd2b401b3808eded6583ca123
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.12"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/c77e712c44b0a4914b7c
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
language: node_js
node_js:
- "0.12"
sudo: false
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/c77e712c44b0a4914b7c
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Make Travis use Docker for faster builds
|
Make Travis use Docker for faster builds
|
YAML
|
apache-2.0
|
cbornet/generator-jhipster,atomfrede/generator-jhipster,xetys/generator-jhipster,hdurix/generator-jhipster,sohibegit/generator-jhipster,ctamisier/generator-jhipster,rifatdover/generator-jhipster,baskeboler/generator-jhipster,deepu105/generator-jhipster,siliconharborlabs/generator-jhipster,sendilkumarn/generator-jhipster,ziogiugno/generator-jhipster,robertmilowski/generator-jhipster,JulienMrgrd/generator-jhipster,jkutner/generator-jhipster,sohibegit/generator-jhipster,maniacneron/generator-jhipster,duderoot/generator-jhipster,ctamisier/generator-jhipster,ziogiugno/generator-jhipster,liseri/generator-jhipster,liseri/generator-jhipster,nkolosnjaji/generator-jhipster,nkolosnjaji/generator-jhipster,mraible/generator-jhipster,dynamicguy/generator-jhipster,pascalgrimaud/generator-jhipster,pascalgrimaud/generator-jhipster,wmarques/generator-jhipster,ramzimaalej/generator-jhipster,siliconharborlabs/generator-jhipster,dimeros/generator-jhipster,hdurix/generator-jhipster,dynamicguy/generator-jhipster,robertmilowski/generator-jhipster,jkutner/generator-jhipster,erikkemperman/generator-jhipster,Tcharl/generator-jhipster,deepu105/generator-jhipster,nkolosnjaji/generator-jhipster,stevehouel/generator-jhipster,PierreBesson/generator-jhipster,gmarziou/generator-jhipster,Tcharl/generator-jhipster,mraible/generator-jhipster,gzsombor/generator-jhipster,JulienMrgrd/generator-jhipster,dynamicguy/generator-jhipster,duderoot/generator-jhipster,jhipster/generator-jhipster,gmarziou/generator-jhipster,JulienMrgrd/generator-jhipster,dynamicguy/generator-jhipster,gzsombor/generator-jhipster,rkohel/generator-jhipster,jkutner/generator-jhipster,dimeros/generator-jhipster,vivekmore/generator-jhipster,robertmilowski/generator-jhipster,ctamisier/generator-jhipster,jkutner/generator-jhipster,dalbelap/generator-jhipster,JulienMrgrd/generator-jhipster,sohibegit/generator-jhipster,duderoot/generator-jhipster,cbornet/generator-jhipster,erikkemperman/generator-jhipster,ruddell/generator-jhipster,sohibegit/generator-jhipster,cbornet/generator-jhipster,rifatdover/generator-jhipster,jhipster/generator-jhipster,xetys/generator-jhipster,maniacneron/generator-jhipster,hdurix/generator-jhipster,dimeros/generator-jhipster,gmarziou/generator-jhipster,danielpetisme/generator-jhipster,dalbelap/generator-jhipster,jhipster/generator-jhipster,dalbelap/generator-jhipster,sendilkumarn/generator-jhipster,PierreBesson/generator-jhipster,atomfrede/generator-jhipster,deepu105/generator-jhipster,rkohel/generator-jhipster,atomfrede/generator-jhipster,lrkwz/generator-jhipster,danielpetisme/generator-jhipster,dimeros/generator-jhipster,hdurix/generator-jhipster,mosoft521/generator-jhipster,ruddell/generator-jhipster,cbornet/generator-jhipster,dalbelap/generator-jhipster,jhipster/generator-jhipster,vivekmore/generator-jhipster,lrkwz/generator-jhipster,rifatdover/generator-jhipster,siliconharborlabs/generator-jhipster,atomfrede/generator-jhipster,maniacneron/generator-jhipster,wmarques/generator-jhipster,yongli82/generator-jhipster,ramzimaalej/generator-jhipster,xetys/generator-jhipster,sendilkumarn/generator-jhipster,erikkemperman/generator-jhipster,erikkemperman/generator-jhipster,nkolosnjaji/generator-jhipster,deepu105/generator-jhipster,eosimosu/generator-jhipster,gzsombor/generator-jhipster,duderoot/generator-jhipster,yongli82/generator-jhipster,ziogiugno/generator-jhipster,erikkemperman/generator-jhipster,nkolosnjaji/generator-jhipster,maniacneron/generator-jhipster,mosoft521/generator-jhipster,siliconharborlabs/generator-jhipster,rkohel/generator-jhipster,ctamisier/generator-jhipster,cbornet/generator-jhipster,vivekmore/generator-jhipster,sendilkumarn/generator-jhipster,yongli82/generator-jhipster,pascalgrimaud/generator-jhipster,siliconharborlabs/generator-jhipster,deepu105/generator-jhipster,rkohel/generator-jhipster,eosimosu/generator-jhipster,danielpetisme/generator-jhipster,robertmilowski/generator-jhipster,PierreBesson/generator-jhipster,sohibegit/generator-jhipster,baskeboler/generator-jhipster,duderoot/generator-jhipster,eosimosu/generator-jhipster,danielpetisme/generator-jhipster,pascalgrimaud/generator-jhipster,gmarziou/generator-jhipster,ruddell/generator-jhipster,baskeboler/generator-jhipster,lrkwz/generator-jhipster,Tcharl/generator-jhipster,PierreBesson/generator-jhipster,wmarques/generator-jhipster,gzsombor/generator-jhipster,eosimosu/generator-jhipster,gzsombor/generator-jhipster,mosoft521/generator-jhipster,pascalgrimaud/generator-jhipster,Tcharl/generator-jhipster,mosoft521/generator-jhipster,liseri/generator-jhipster,wmarques/generator-jhipster,eosimosu/generator-jhipster,maniacneron/generator-jhipster,rkohel/generator-jhipster,stevehouel/generator-jhipster,ramzimaalej/generator-jhipster,liseri/generator-jhipster,baskeboler/generator-jhipster,stevehouel/generator-jhipster,jhipster/generator-jhipster,lrkwz/generator-jhipster,atomfrede/generator-jhipster,ziogiugno/generator-jhipster,sendilkumarn/generator-jhipster,danielpetisme/generator-jhipster,JulienMrgrd/generator-jhipster,wmarques/generator-jhipster,robertmilowski/generator-jhipster,PierreBesson/generator-jhipster,jkutner/generator-jhipster,ruddell/generator-jhipster,ruddell/generator-jhipster,mraible/generator-jhipster,lrkwz/generator-jhipster,baskeboler/generator-jhipster,liseri/generator-jhipster,mraible/generator-jhipster,xetys/generator-jhipster,mosoft521/generator-jhipster,Tcharl/generator-jhipster,yongli82/generator-jhipster,dalbelap/generator-jhipster,vivekmore/generator-jhipster,stevehouel/generator-jhipster,hdurix/generator-jhipster,gmarziou/generator-jhipster,yongli82/generator-jhipster,vivekmore/generator-jhipster,ctamisier/generator-jhipster,dimeros/generator-jhipster,stevehouel/generator-jhipster,mraible/generator-jhipster,ziogiugno/generator-jhipster
|
08835433ef30a6cf38744dafc16988ed262ba000
|
.travis.yml
|
.travis.yml
|
language: node_js
cache: yarn
node_js:
- stable
- "8"
- "6"
- "4"
|
language: node_js
cache: yarn
node_js:
- stable
- "8"
- "6"
|
Remove Node 4 from Travis
|
Remove Node 4 from Travis
|
YAML
|
mit
|
postcss/postcss-nested
|
8041989c25bf1bc9b844a5923290f1600b8a77c8
|
.travis.yml
|
.travis.yml
|
---
branches:
only:
- master
services:
- mongodb
language: node_js
node_js:
- "6.9.2"
sudo: true
addons:
hosts:
- www.koaton.test
- koaton.test
- koaton.t3st
- origin.koaton.test
apt:
packages:
- nginx
cache:
directories:
- node_modules
before_install:
- npm config set spin false
- npm install -g [email protected]
install:
- git clone https://github.com/gerard2p/koaton-demoapp.git testingapp
- cd testingapp
- npm i --only=prod
- cd ..
- npm i .
script:
- npm run eslint
- npm run cover
- npm run codeclimate_cov
- npm run semantic-release
|
---
branches:
only:
- master
services:
- mongodb
language: node_js
node_js:
- "6.9.2"
sudo: true
addons:
hosts:
- www.koaton.test
- koaton.test
- koaton.t3st
- origin.koaton.test
cache:
directories:
- node_modules
before_install:
- npm config set spin false
- npm install -g [email protected]
install:
- git clone https://github.com/gerard2p/koaton-demoapp.git testingapp
- cd testingapp
- npm i --only=prod
- cd ..
- npm i .
script:
- npm run eslint
- npm run cover
- npm run codeclimate_cov
- npm run semantic-release
|
Remove nginx from Travis CI
|
ci: Remove nginx from Travis CI
|
YAML
|
agpl-3.0
|
gerard2p/koaton
|
8fdb503d53a1450e288a8589d844233e5eb99aa7
|
.travis.yml
|
.travis.yml
|
language: d
sudo: false
matrix:
include:
- d: dmd-2.068.0-rc1
- d: dmd-2.067.1
env:
- COVERAGE=true
- d: dmd-2.066.1
- d: dmd-2.064.2
- d: dmd-2.065.0
- d: ldc-0.15.1
- d: ldc-0.14.0
- d: gdc-4.9.0
script:
- ./travis-ci.sh
|
language: d
sudo: false
matrix:
include:
- d: dmd-2.068.2-b1
- d: dmd-2.068.1
- d: dmd-2.067.1
env:
- COVERAGE=true
- d: dmd-2.066.1
- d: dmd-2.065.0
- d: dmd-2.064.2
- d: ldc-0.15.1
- d: ldc-0.14.0
- d: gdc-4.9.2
- d: gdc-4.9.0
script:
- ./travis-ci.sh
|
Test with the latest DMD and GDC versions.
|
Test with the latest DMD and GDC versions.
|
YAML
|
mit
|
p0nce/dub,Geod24/dub,D-Programming-Language/dub,grogancolin/dub,rjframe/dub,Flamaros/dub,jeanbaptistelab/dub,nazriel/dub,xentec/dub,jelmansouri/dub,gedaiu/dub
|
e1fb3154b7fbc9550a1018c51993b47991542347
|
.travis.yml
|
.travis.yml
|
# .travis.yml
# Do not set the language to c++, this over rides our environment variable CXX
# below.
language: C++
sudo: false
git:
depth: 1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
os:
- linux
cache:
ccache: true
directories:
- node_modules
install:
- npm install
- pip install --user cpp-coveralls
before_script:
- export CXX="ccache g++-5"
script:
- mkdir build && cd build
- cmake -DB9_GCOV=ON ..
- make -j8 || echo "RETRYING BUILD!" && make -j1 VERBOSE=1 # On failure, retry with verbose output
- ctest --output-on-failure
after_script:
- coveralls --exclude third_party --gcov /usr/bin/gcov-5 --gcov-options '\-lp' --build-root build
|
# .travis.yml
# Do not set the language to c++, this over rides our environment variable CXX
# below.
language: C++
sudo: false
git:
depth: 1
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
os:
- linux
cache:
ccache: true
directories:
- node_modules
install:
- npm install
- pip install --user cpp-coveralls
before_script:
- export CXX="ccache g++-5"
script:
- mkdir build && cd build
- cmake -DB9_GCOV=ON ..
- make -j8 || echo "RETRYING BUILD!" && make -j1 VERBOSE=1 # On failure, retry with verbose output
- ctest --output-on-failure
after_script:
- echo $PWD
- coveralls --exclude third_party --gcov /usr/bin/gcov-5 --gcov-options '\-lp'
|
Remove the build directory from the coveralls line
|
Remove the build directory from the coveralls line
For some reason, the build doesn't exist?
Signed-off-by: Robert Young <[email protected]>
|
YAML
|
apache-2.0
|
jduimovich/Base9,youngar/Base9,jduimovich/Base9,youngar/Base9,youngar/Base9
|
aac7e7225ee1642d821d7221dc20c363e9b08b80
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
before_install:
- sudo apt-get install libnetcdf-dev libhdf5-dev
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib
- travis_retry pip install astropy
- travis_retry pip install netCDF4
- python setup.py install
# command to run tests, e.g. python setup.py test
script:
- python tests/utests.py
|
language: python
python:
- "2.7"
- "3.3"
- "3.4"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
before_install:
- sudo apt-get install libnetcdf-dev libhdf5-serial-dev
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib
- travis_retry pip install astropy
- travis_retry pip install netCDF4
- python setup.py install
# command to run tests, e.g. python setup.py test
script:
- python tests/utests.py
|
Add HDF5 to requirements for Travis
|
Add HDF5 to requirements for Travis
|
YAML
|
bsd-3-clause
|
matteobachetti/MaLTPyNT
|
51c06ff9b3bec89c397ff2c6726bafa896376d5a
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "5.5.0"
addons:
code_climate:
repo_token: e738d6a0d77f8e8d47da02e058b8e47ec8719288247d6d117ecbe6692a6aa84b
after_script:
- codeclimate-test-reporter < lcov.info
|
language: node_js
node_js:
- "5.5.0"
addons:
code_climate:
repo_token: e738d6a0d77f8e8d47da02e058b8e47ec8719288247d6d117ecbe6692a6aa84b
before_script:
- npm install -g codeclimate-test-reporter
after_script:
- codeclimate-test-reporter < lcov.info
|
Install codeclimate-test-reporter before run script on TravisCI
|
Install codeclimate-test-reporter before run script on TravisCI
|
YAML
|
mit
|
Altoros/refill-them-api
|
7acc702871a30ee25e88c2881a089820efcd495e
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.6
- 7.0
install: composer install
|
language: php
php:
- 5.6
- 7.0
- 7.1
install: composer install
|
Add php 7.1 to Travis.
|
Add php 7.1 to Travis.
|
YAML
|
mit
|
zachleigh/laravel-lang-bundler
|
51e1720d412c70da4f97f232d23c093f6a43a6d5
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 8.0
install: composer install
script: ./vendor/bin/phpunit
after_success:
- travis_retry php ./vendor/bin/php-coveralls -v
|
language: php
php:
- 8.0
install: composer install
script: XDEBUG_MODE=coverage ./vendor/bin/phpunit
after_success:
- travis_retry php ./vendor/bin/php-coveralls -v
|
Enable code coverage for xDebug
|
Enable code coverage for xDebug
|
YAML
|
mit
|
procurios/JsonRpc
|
761233ec987e373e6c01c3a1b0a9588814650ffc
|
.travis.yml
|
.travis.yml
|
language: lisp
env:
matrix:
- LISP=abcl
- LISP=allegro
- LISP=sbcl
- LISP=sbcl32
- LISP=ccl
- LISP=ccl32
- LISP=clisp
- LISP=clisp32
- LISP=cmucl
- LISP=ecl
- LISP=ecl
matrix:
allow_failures:
- env: LISP=cmucl
install:
- curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh
script:
- cl -e '(ql:quickload :trivial-features-tests)
(unless (trivial-features-tests:run)
(uiop:quit 1))'
|
language: lisp
env:
matrix:
- LISP=abcl
- LISP=allegro
- LISP=sbcl
- LISP=sbcl32
- LISP=ccl
- LISP=ccl32
- LISP=clisp
- LISP=clisp32
- LISP=cmucl
- LISP=ecl
- LISP=ecl
matrix:
allow_failures:
- env: LISP=cmucl
install:
- curl -L https://github.com/luismbo/cl-travis/raw/master/install.sh | sh
script:
- cl -e '(ql:quickload :cffi-grovel)
(ql:quickload :trivial-features-tests)
(unless (trivial-features-tests:run)
(uiop:quit 1))'
|
Work around Quicklisp bug re :DEFSYSTEM-DEPENDS-ON
|
Work around Quicklisp bug re :DEFSYSTEM-DEPENDS-ON
|
YAML
|
mit
|
trivial-features/trivial-features
|
fb7853d14890afba8cba4e4ee7d1dad1acecec29
|
.travis.yml
|
.travis.yml
|
dist: xenial
language: clojure
sudo: required
lein: lein
jdk:
- openjdk8
services:
- docker
branches:
only:
- master
- wip
- develop
install:
- ./manage.sh help
- nvm install $NODE_VERSION
- node --version
before_script:
- env | sort
script:
- ./manage.sh $COMMAND
after_script:
- docker images
- docker ps
notifications:
email: false
env:
- NODE_VERSION=7.7.1 COMMAND=build
- NODE_VERSION=7.7.1 COMMAND=test
- NODE_VERSION=7.7.1 COMMAND=release-local
- NODE_VERSION=7.7.1 COMMAND=release-docker
- NODE_VERSION=7.7.1 COMMAND=run-release
- NODE_VERSION=8.15.0 COMMAND=build
- NODE_VERSION=8.15.0 COMMAND=test
- NODE_VERSION=8.15.0 COMMAND=release-local
- NODE_VERSION=8.15.0 COMMAND=release-docker
- NODE_VERSION=8.15.0 COMMAND=run-release
|
dist: xenial
language: clojure
sudo: required
lein: lein
jdk:
- openjdk8
services:
- docker
branches:
only:
- master
- wip
- develop
- build-refactor
install:
- ./manage.sh help
- nvm install $NODE_VERSION
- node --version
before_script:
- env | sort
script:
- ./manage.sh $COMMAND
after_script:
- docker images
- docker ps
notifications:
email: false
env:
- NODE_VERSION=10.16.0 COMMAND=clean
- NODE_VERSION=10.16.0 COMMAND=build-devenv
#- NODE_VERSION=10.16.0 COMMAND=run-devenv
#- NODE_VERSION=10.16.0 COMMAND=test
- NODE_VERSION=10.16.0 COMMAND=build-release
#- NODE_VERSION=10.16.0 COMMAND=run-release
|
Update CI node and tasks
|
:construction_worker: Update CI node and tasks
|
YAML
|
mpl-2.0
|
uxbox/uxbox,uxbox/uxbox,uxbox/uxbox
|
1c2b981a4d823ac2772a3583d12fbc2538252153
|
.travis.yml
|
.travis.yml
|
sudo: false
addons:
apt:
sources:
- sourceline: 'ppa:git-core/ppa'
packages:
- git
language: go
go:
- 1.8.x
- master
branches:
only:
- master
matrix:
allow_failures:
- go: master
|
sudo: false
addons:
apt:
sources:
- sourceline: 'ppa:git-core/ppa'
packages:
- git
language: go
go:
- 1.8.x
- 1.9.x
- master
branches:
only:
- master
matrix:
allow_failures:
- go: master
|
Add Go 1.9 to Travis
|
Add Go 1.9 to Travis
|
YAML
|
mpl-2.0
|
missedone/go-getter,hashicorp/go-getter
|
d9a8ad2c8f0ad1538395678e9427390ba90b4dd2
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '6'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '6'
- '7'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
|
Build with Node.js 7 on Travis CI.
|
Build with Node.js 7 on Travis CI.
|
YAML
|
mit
|
bigeasy/rescue
|
cc91eca1d40cd2349e0f21007c07dc2b03e6d116
|
.travis.yml
|
.travis.yml
|
language: php
php: [5.3, 5.4, 5.5]
before_script:
- curl -s https://getcomposer.org/installer | php
- php composer.phar install
script: phpunit -v
|
language: php
php: [5.3, 5.4, 5.5]
before_script:
- composer install
script: phpunit -v
|
Use composer installation from Travis box
|
Use composer installation from Travis box
Related to https://github.com/Behat/Mink/issues/413
|
YAML
|
mit
|
stof/SahiClient,minkphp/SahiClient,Behat/SahiClient
|
7c00054a41ff93b5d014b51cd2096a20d2303463
|
.travis.yml
|
.travis.yml
|
dist: bionic
language: ruby
gemfile:
- Gemfile
services:
- postgresql
- redis-server
addons:
postgresql: 10
script: bundle exec rake test
before_install:
- createdb searchkick_test || true
- ./test/ci/install_elasticsearch.sh
cache:
directories:
- $HOME/elasticsearch
env:
- ELASTICSEARCH_VERSION=7.9.2
jdk: openjdk11
jobs:
include:
- rvm: 2.7
gemfile: Gemfile
- rvm: 2.6
gemfile: test/gemfiles/activerecord52.gemfile
env: ELASTICSEARCH_VERSION=7.0.0
- rvm: 2.5
gemfile: test/gemfiles/activerecord51.gemfile
env: ELASTICSEARCH_VERSION=6.8.12
- rvm: 2.4
gemfile: test/gemfiles/activerecord50.gemfile
env: ELASTICSEARCH_VERSION=6.0.0
- rvm: 2.7
gemfile: test/gemfiles/mongoid7.gemfile
services:
- mongodb
- redis-server
- rvm: 2.6
gemfile: test/gemfiles/mongoid6.gemfile
services:
- mongodb
- redis-server
notifications:
email:
on_success: never
on_failure: change
|
dist: bionic
language: ruby
gemfile:
- Gemfile
services:
- postgresql
- redis-server
addons:
postgresql: 10
script: bundle exec rake test
before_install:
- createdb searchkick_test || true
- ./test/ci/install_elasticsearch.sh
cache:
directories:
- $HOME/elasticsearch
env:
- ELASTICSEARCH_VERSION=7.9.3
jdk: openjdk11
jobs:
include:
- rvm: 2.7
gemfile: Gemfile
- rvm: 2.6
gemfile: test/gemfiles/activerecord52.gemfile
env: ELASTICSEARCH_VERSION=7.0.0
- rvm: 2.5
gemfile: test/gemfiles/activerecord51.gemfile
env: ELASTICSEARCH_VERSION=6.8.13
- rvm: 2.4
gemfile: test/gemfiles/activerecord50.gemfile
env: ELASTICSEARCH_VERSION=6.0.0
- rvm: 2.7
gemfile: test/gemfiles/mongoid7.gemfile
services:
- mongodb
- redis-server
- rvm: 2.6
gemfile: test/gemfiles/mongoid6.gemfile
services:
- mongodb
- redis-server
notifications:
email:
on_success: never
on_failure: change
|
Test against Elasticsearch 7.9.3 and 6.8.13 on Travis
|
Test against Elasticsearch 7.9.3 and 6.8.13 on Travis
|
YAML
|
mit
|
ankane/searchkick
|
74427490cb8f8b555f8a999d25201885a2d71143
|
.travis.yml
|
.travis.yml
|
language: php
sudo: true
php:
- 5.6
services:
- mysql
before_install:
- composer self-update
install:
- composer install
before_script:
- cp app/config/parameters.yml.dist app/config/parameters_test.yml
- cp behat.yml.dist behat.yml
- php bin/console server:start
- php bin/console doctrine:database:create --env=test
- php bin/console doctrine:schema:create --env=test
- php bin/console doctrine:fixtures:load -n --env=test
- vendor/bin/phpcs --config-set installed_paths vendor/escapestudios/symfony2-coding-standard
script:
- vendor/bin/behat features/browser.feature
- vendor/bin/phpcs --standard=Symfony2 -n src
- vendor/bin/phpunit tests/ClientBundle --coverage-clover=coverage.xml
after_script:
- php bin/console server:stop
after_success:
- bash <(curl -s https://codecov.io/bash)
|
language: php
sudo: true
php:
- 5.6
services:
- mysql
before_install:
- composer self-update
install:
- composer install
before_script:
- cp app/config/parameters.yml.dist app/config/parameters_test.yml
- cp behat.yml.dist behat.yml
- php bin/console server:start
- php bin/console doctrine:database:create --env=test
- php bin/console doctrine:schema:create --env=test
- vendor/bin/phpcs --config-set installed_paths vendor/escapestudios/symfony2-coding-standard
script:
- vendor/bin/phpcs --standard=Symfony2 -n src
- vendor/bin/phpunit tests/ClientBundle --coverage-clover=coverage.xml
- vendor/bin/behat features/browser.feature
after_script:
- php bin/console server:stop
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Edit delete dotrine:fixtures:load row and replace script rows
|
Edit delete dotrine:fixtures:load row and replace script rows
|
YAML
|
mit
|
AndrewTomMet/clientBase,AndrewTomMet/clientBase
|
97cd7846f87cc5f012330faf4a166eb024ea2bb7
|
.travis.yml
|
.travis.yml
|
language: scala
scala:
- 2.11.6
jdk:
- oraclejdk8
before_install:
- "sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10"
- "echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list"
- "sudo apt-get update"
- "sudo apt-get install mongodb-org-server"
|
language: scala
scala:
- 2.11.6
jdk:
- oraclejdk8
before_install:
- "sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 7F0CEB10"
- "echo 'deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen' | sudo tee /etc/apt/sources.list.d/mongodb.list"
- "sudo apt-get update"
- "sudo apt-get install mongodb-org-server"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/2d84278b921c52e848d4
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false
|
Configure Travis to send notifications to gitter.im
|
Configure Travis to send notifications to gitter.im
|
YAML
|
apache-2.0
|
danielwegener/tepkin
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.