Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Fix IOErrors in Travis, create the dir before running tests | language: python
python:
- "2.7"
install:
- "pip install -r requirements.txt"
- "pip install -r requirements-dev.txt"
- "pip install coveralls"
script: "py.test --cov pre_commit_hook tests/"
after_success:
- coveralls
| language: python
python:
- "2.7"
install:
- "pip install -r requirements.txt"
- "pip install -r requirements-dev.txt"
- "pip install coveralls"
before_script:
- "mkdir -p /home/travis/pre-commit-python-sorter/tests/resources"
script: "py.test --cov pre_commit_hook tests/"
after_success:
- coveralls
|
Use trusty image and edge to use the latest available image | ---
language: ruby
before_install:
- rvm get head
- gem install bundler
rvm:
- 2.2.4
- 2.3.1
- ruby-head
- rbx-2
- jruby-9.1.0.0
- jruby-head
sudo: false
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
notifications:
recipients:
- mail@zzak.io
slack: si... | ---
language: ruby
dist: trusty
group: edge
before_install:
- rvm get head
- gem install bundler
rvm:
- 2.2.4
- 2.3.1
- ruby-head
- rbx-2
- jruby-9.1.0.0
- jruby-head
sudo: false
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
notifications:
recipients:
... |
Add redis setting for Travis | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
sudo: false
script: "npm run test-ci"
after_success: "npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/71b86a81f31bbfba21a1
on_success: always # options: [alway... | language: node_js
node_js:
- "0.12"
- "0.11"
- "0.10"
services:
- redis-server
sudo: false
script: "npm run test-ci"
after_success: "npm install coveralls@2.10.0 && cat ./coverage/lcov.info | coveralls"
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/71b86a81f31bbfba21a1
on_success... |
Test against node.js 4 and 5 and Ruby 2.2. | language: node_js
sudo: false
git:
depth: 10
node_js:
- "0.12"
env:
matrix:
- RUBY_VERSION=2.0
before_install:
- rvm install $RUBY_VERSION
- rvm use $RUBY_VERSION --fuzzy
- export GEMDIR=$(rvm gemdir)
install:
- travis_retry npm install -g grunt-cli
- travis_retry npm install
- travis_retry ... | language: node_js
sudo: false
git:
depth: 10
node_js:
- "4"
- "5"
env:
matrix:
- RUBY_VERSION=2.2
before_install:
- rvm install $RUBY_VERSION
- rvm use $RUBY_VERSION --fuzzy
- export GEMDIR=$(rvm gemdir)
install:
- travis_retry npm install -g grunt-cli
- travis_retry npm install
- travis_r... |
Change directory to TRAVIS_BUILD_DIR before commit | language: java
jdk:
- oraclejdk8
install:
# Build iPST core
- git clone https://github.com/itesla/ipst-core itesla/ipst-core
- cd itesla/ipst-core && mvn install
script:
- mvn clean test jacoco:report coveralls:report
| language: java
jdk:
- oraclejdk8
install:
# Build iPST core
- git clone https://github.com/itesla/ipst-core itesla/ipst-core
- cd itesla/ipst-core && mvn install
script:
- cd ${TRAVIS_BUILD_DIR}
- mvn clean test jacoco:report coveralls:report
|
Set the GitHub OAuth token to make use of the 6000 per hour rate limit | language: php
php:
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
- composer install --no-interaction
- cp config/app_travis.php config/app.php
- cp config/oauth_example.php config/oauth.php
- mysql -e 'create database pmaerr;'
- wget https://scrutinizer-ci.com/ocular.phar
script:
- bin/cake ... | language: php
php:
- "5.6"
- "nightly"
- "hhvm"
sudo: false
before_script:
# Set the GitHub OAuth token to make use of the 6000 per hour rate limit
- echo "{\"config\": { \"github-oauth\": { \"github.com\": \"$COMPOSER_GITHUB_API\" } } }" > ~/.composer/config.json
- composer install --no-interaction
- cp... |
Update Travis for supported Ruby versions. | language: ruby
rvm:
- 2.3.1
- 2.2
- 2.1
- 2.0
| language: ruby
rvm:
- 2.4
- 2.3
- 2.2
- 2.1
|
Test on `stable` instead of `iojs` | sudo: false
language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
| sudo: false
language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
|
Drop Jruby and Rbx; taking ages, Drop 2.0 (old), Exclude <2.3 fo Rails Head (5+) | language: ruby
bundler_args: --without development
rvm:
- '2.3.0'
- '2.2'
- '2.1'
- '2.0'
- jruby
- rbx-2
gemfile:
- gemfiles/Gemfile.rails-head
- gemfiles/Gemfile.rails-4-2
- gemfiles/Gemfile.rails-4-1
- gemfiles/Gemfile.rails-4-0
matrix:
allow_failures:
- rvm: jruby
- rvm: rbx-2
- gemfile: gemfiles/Gemf... | language: ruby
bundler_args: --without development
rvm:
- '2.3.0'
- '2.2'
- '2.1'
gemfile:
- gemfiles/Gemfile.rails-head
- gemfiles/Gemfile.rails-4-2
- gemfiles/Gemfile.rails-4-1
- gemfiles/Gemfile.rails-4-0
matrix:
exclude:
- rvm: '2.2'
gemfile: gemfiles/Gemfile.rails-head
- rvm: '2.1'
gemfile: g... |
Add memcached service to build | language: ruby
sudo: false
services:
- redis
addons:
postgresql: 9.3
artifacts:
paths:
- log/
cache:
directories:
- vendor/bundle
sudo: false
rvm:
- "2.0"
- "2.1"
matrix:
fast_finish: true
before_install:
- gem install bundler -v 1.9.0
install:
- bundle _1.9.0_ install --jobs=3 --... | language: ruby
sudo: false
services:
- redis
- memcached
addons:
postgresql: 9.3
artifacts:
paths:
- log/
cache:
directories:
- vendor/bundle
sudo: false
rvm:
- "2.0"
- "2.1"
matrix:
fast_finish: true
before_install:
- gem install bundler -v 1.9.0
install:
- bundle _1.9.0_ insta... |
Remove MRI 2.2 from allowed failures | language: ruby
script: 'bundle exec rake test:coverage --trace'
install:
- bundle install --retry=3
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
- 2.2
- rbx-2
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="--2.0"
- rvm: jruby-head
env: JRUBY_OPTS="--2.1"
allo... | language: ruby
script: 'bundle exec rake test:coverage --trace'
install:
- bundle install --retry=3
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
- 2.2
- rbx-2
matrix:
include:
- rvm: jruby
env: JRUBY_OPTS="--2.0"
- rvm: jruby-head
env: JRUBY_OPTS="--2.1"
allo... |
Change bundler_args to Travis bundler environment | anguage: ruby
rvm:
- 2.0.0
- 2.1.2
- 2.1.3
env:
- GITHUB_CLIENT_ID=foo GITHUB_CLIENT_SECRET=foo SOUNDCLOUD_CLIENT_ID=foo
before_script:
- psql -c 'create database jukebuzz_test;' -U postgres
| language: ruby
rvm:
- 2.0.0
- 2.1
- ruby-head
bundler_args: --without development production --jobs=3 --retry=3
env:
- GITHUB_CLIENT_ID=foo GITHUB_CLIENT_SECRET=foo SOUNDCLOUD_CLIENT_ID=foo
before_script:
- psql -c 'create database jukebuzz_test;' -U postgres
|
Comment out the Stack nightly build in the Travis config | # Use new container infrastructure to enable caching
sudo: false
# Choose a lightweight base image; we provide our own build tools.
language: c
# GHC depends on GMP. You can add other dependencies here as well.
addons:
apt:
packages:
- libgmp-dev
# The different configurations we want to test. You could al... | # Use new container infrastructure to enable caching
sudo: false
# Choose a lightweight base image; we provide our own build tools.
language: c
# GHC depends on GMP. You can add other dependencies here as well.
addons:
apt:
packages:
- libgmp-dev
# The different configurations we want to test. You could al... |
Install electron-prebuilt required by electron-mocha | language: node_js
node_js:
- "5"
- "4"
before_script:
- export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start
- npm install -g electron-mocha
notifications:
email:
on_success: never
on_failure: change
| language: node_js
node_js:
- "5"
- "4"
before_script:
- export DISPLAY=:99.0; sh -e /etc/init.d/xvfb start
- npm install -g electron-prebuilt
- npm install -g electron-mocha
notifications:
email:
on_success: never
on_failure: change
|
Add configuration for generating documentation | language: rust
rust:
- stable
- beta
os:
- linux
- osx
sudo: false
| language: rust
rust:
- stable
- beta
os:
- linux
- osx
before_script:
- |
pip install 'travis-cargo<0.2' --user &&
export PATH=$HOME/.local/bin:$PATH
# Only build and upload documentation once. The current configure for
# `travis-cargo` is with stable rust, of a non-pull requests, on the master
# ... |
Use openjdk instead of oracle jdk | language: java
jdk:
- oraclejdk8
install: true
script: "./build-via-travis.sh"
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
after_success:
- bash <(curl -s ht... | language: java
jdk:
- openjdk8
install: true
script: "./build-via-travis.sh"
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
after_success:
- bash <(curl -s http... |
Drop Node.js 0.12 from supported versions | language: node_js
node_js:
- 0.12
- 4
- 5
- 6
- 7
before_script:
- npm install -g gulp
script: gulp
| language: node_js
node_js:
- 4
- 5
- 6
- 7
before_script:
- npm install -g gulp
script: gulp
|
Add code climate env variable | language: ruby
rvm:
- 2.1.9
- 2.2.5
- 2.3.1
- jruby-9.0.5.0
- jruby-9.1.5.0
before_install:
- sh sudo add-apt-repository ppa:fontforge/fontforge; sudo apt-get update; sudo apt-get install fontforge
script: bundle exec rspec
| language: ruby
rvm:
- 2.1.9
- 2.2.5
- 2.3.1
- jruby-9.0.5.0
- jruby-9.1.5.0
env:
- CODECLIMATE_REPO_TOKEN=0ff7f7fb2cfa2a18667c4e2655dcf773f91faff8d6f1642a3af3897d888bc2c7
before_install:
- sh sudo add-apt-repository ppa:fontforge/fontforge; sudo apt-get update; sudo apt-get install fontforge
script: bun... |
Add rubies on ci to run test | language: ruby
sudo: false
cache: bundler
rvm:
- 2.3.4
- 2.4.1
branches:
only:
- master
script:
- "bundle exec rake"
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.3
- 2.4
- 2.5
- 2.6
- ruby-head
branches:
only:
- master
script:
- "bundle exec rake"
|
Revert `Workaround for broke Travis with RubyGems 2.7` | sudo: false
cache: bundler
language: ruby
dist: trusty
rvm:
- jruby-9.1.15.0
- jruby-head
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- ruby-head
env:
global:
- JRUBY_OPTS='--debug -J-Xmx1000M' # get more accurate coverage data in JRuby
matrix:
- 'TASK=spec'
- 'TASK=ascii_spec'
- 'TASK=internal_i... | sudo: false
cache: bundler
language: ruby
dist: trusty
rvm:
- jruby-9.1.15.0
- jruby-head
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- ruby-head
env:
global:
- JRUBY_OPTS='--debug -J-Xmx1000M' # get more accurate coverage data in JRuby
matrix:
- 'TASK=spec'
- 'TASK=ascii_spec'
- 'TASK=internal_i... |
Update TravisCI ruby versions to latest point releases. | sudo: false
language: ruby
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
- ruby-head
env:
- RUST=yes
- RUST=no
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- if [[ "$RUST" == "yes" ]]; then curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable; export PATH="$HOME/.cargo/bin:$PATH"; fi
... | sudo: false
language: ruby
rvm:
- 2.4.2
- 2.3.5
- 2.2.8
- ruby-head
env:
- RUST=yes
- RUST=no
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- if [[ "$RUST" == "yes" ]]; then curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable; export PATH="$HOME/.cargo/bin:$PATH"; fi
... |
Install rasterio build-dependencies as superuser | language: python
python:
- "2.7"
- "3.5"
- "3.6"
# - "nightly"
script: pytest
before_install:
- export CPPFLAGS=`gdal-config --cflags`
- export LDFLAGS=`gdal-config --libs`
- export PROJ_LIB=/usr/share/proj
install:
- apt-get build-dep rasterio
- pip install -r dev-requirements.txt
- pip install .
... | language: python
python:
- "2.7"
- "3.5"
- "3.6"
# - "nightly"
script: pytest
before_install:
- export CPPFLAGS=`gdal-config --cflags`
- export LDFLAGS=`gdal-config --libs`
- export PROJ_LIB=/usr/share/proj
install:
- sudo apt-get build-dep rasterio
- pip install -r dev-requirements.txt
- pip insta... |
Add back email notifications for builds | sudo: false
rvm:
- 2.2
- 2.1
- 2.0
- 1.9.3
- jruby-1.7.12
# whitelist
branches:
only:
- master
- v1.3.x-bugfix
notifications:
webhooks:
urls: # gitter
- https://webhooks.gitter.im/e/dc010332f9d40fcc21c4
| sudo: false
rvm:
- 2.2
- 2.1
- 2.0
- 1.9.3
- jruby-1.7.12
# whitelist
branches:
only:
- master
- v1.3.x-bugfix
notifications:
email:
- cukes-devs@googlegroups.com
webhooks:
urls: # gitter
- https://webhooks.gitter.im/e/dc010332f9d40fcc21c4
|
Use Python 3.6 instead of 3.7: latter doesn't seem to be supported by Travis | language: python
python:
- 'pypy2.7'
- 'pypy3.5'
- '2.7'
- '3.3'
- '3.7'
- 'nightly'
install:
- pip install mock==2.0
- pip install requests
script:
- python -m unittest discover -s tests/ -p test_*.py -v
matrix:
allow_failures:
- python: 'nightly'
| language: python
python:
- 'pypy2.7'
- 'pypy3.5'
- '2.7'
- '3.3'
- '3.6'
- 'nightly'
install:
- pip install mock==2.0
- pip install requests
script:
- python -m unittest discover -s tests/ -p test_*.py -v
matrix:
allow_failures:
- python: 'nightly'
|
Replace Java 14 with 15. No need for a PPC build. One Java 11 build. | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... |
Add integration Slack with TravisCI | language: go
go:
- 1.6.2
- tip
env:
- GIMME_OS=linux GIMME_ARCH=amd64
- GIMME_OS=darwin GIMME_ARCH=amd64
- GIMME_OS=windows GIMME_ARCH=amd64
install:
- go get -d -v ./...
script:
- go test -v ./...
- go build -v ./...
| language: go
go:
- 1.6.2
- tip
env:
- GIMME_OS=linux GIMME_ARCH=amd64
- GIMME_OS=darwin GIMME_ARCH=amd64
- GIMME_OS=windows GIMME_ARCH=amd64
install:
- go get -d -v ./...
script:
- go test -v ./...
- go build -v ./...
notifications:
slack: miracloud:5r69ZAasA5mX50aig27LVKrs
|
Fix 5.1 beta version used on linux CI | language: generic
osx_image: xcode10.2
sudo: false
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- FASTLANE_LANE=ci_commit
matrix:
include:
- os: osx
env: FASTLANE_LANE=code_coverage FASTLANE_ENV=default
- os: osx
env: FASTLANE_ENV=ios93
- os: osx
env: FASTLANE_ENV=tvos9... | language: generic
osx_image: xcode10.2
sudo: false
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
- FASTLANE_LANE=ci_commit
matrix:
include:
- os: osx
env: FASTLANE_LANE=code_coverage FASTLANE_ENV=default
- os: osx
env: FASTLANE_ENV=ios93
- os: osx
env: FASTLANE_ENV=tvos9... |
Fix python niveau de log pour eviter des probleme de d'espace disque sur Travis | language: python
python:
- "3.5"
before_install:
- sudo apt-get install -y libgdal1-dev libgdal-dev
- sudo apt-get install -y python-gdal
# install dependencies
install:
- cd backend
- pip install -r requirements-dev.txt
- cd tests/travis_test
- ./travis_test.sh
# install frontend
- cd ../../../fro... | language: python
python:
- "3.5"
before_install:
- sudo apt-get install -y libgdal1-dev libgdal-dev
- sudo apt-get install -y python-gdal
- python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)"
# install dependencies
install:
- cd backend
- pip install -r requirements-dev.txt
- cd tests/travis_tes... |
Drop support for Node.js 6 | language: node_js
matrix:
include:
- node_js: "node"
- node_js: "8"
- node_js: "6"
sudo: false
cache:
directories:
- node_modules
dist: trusty
addons:
chrome: stable
before_script:
# dump the current versions
- google-chrome-stable --version
- npm list
# start a fresh new Chrome instance
... | language: node_js
matrix:
include:
- node_js: "node"
- node_js: "8"
sudo: false
cache:
directories:
- node_modules
dist: trusty
addons:
chrome: stable
before_script:
# dump the current versions
- google-chrome-stable --version
- npm list
# start a fresh new Chrome instance
- google-chrome-st... |
Move setup into install section | language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
script:
- pip install -r requirements.txt
- nosetests --with-timer --with-coverage ./
| language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
script:
- nosetests --with-timer --with-coverage ./
|
Exclude some corner cases from Travis. | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
gemfile:
- .travis/Gemfile
env:
- conn=ruby
- conn=hiredis
- conn=synchrony
matrix:
exclude:
- rvm: 1.8.7
gemfile: .travis/Gemfile
env: conn=synchrony
- rvm: jruby-18mode
gemfile: .travis/Gemfile
... | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
gemfile:
- .travis/Gemfile
env:
- conn=ruby
- conn=hiredis
- conn=synchrony
matrix:
exclude:
- rvm: 1.8.7
gemfile: .travis/Gemfile
env: conn=synchrony
- rvm: jruby-18mode
gemfile: .travis/Gemfile
... |
Test against JRuby head as well on Travis | language: ruby
rvm:
- jruby-19mode
jdk:
- openjdk7
env: DEBUG=true
install: travis_retry bundle install
before_script: bundle exec rake build
script:
- bundle exec rake rubocop
- bundle exec rake spec
- cd integration-tests && bundle exec rake spec:all
branches:
only:
- torqbox
| language: ruby
rvm:
- jruby-19mode
- jruby-head
jdk:
- openjdk7
env: DEBUG=true
install: travis_retry bundle install
before_script: bundle exec rake build
script:
- bundle exec rake rubocop
- bundle exec rake spec
- cd integration-tests && bundle exec rake spec:all
branches:
only:
- torqbox
|
Remove email when docker connect | sudo: required
services:
- docker
script:
- docker build -t dlecan/rust-crosscompiler-arm:stable rust-crosscompiler-armv6
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push dlecan/rust-crosscompiler-arm:stable
| sudo: required
services:
- docker
script:
- docker build -t dlecan/rust-crosscompiler-arm:stable rust-crosscompiler-armv6
- docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
- docker push dlecan/rust-crosscompiler-arm:stable
|
Revert Travis CI to Csound 6.09.1 | language: node_js
node_js:
- node
- '8'
- '6'
- '4'
before_install:
# Build Csound.
- sudo apt-get build-dep csound
- wget https://github.com/csound/csound/archive/6.10.0.tar.gz
- tar -xf 6.10.0.tar.gz
- mkdir csound
- cd csound
- cmake ../csound-6.10.0
- make
- sudo make install
- sudo ld... | language: node_js
node_js:
- node
- '8'
- '6'
- '4'
before_install:
# Build Csound.
- sudo apt-get install -y libsndfile1-dev
- wget https://github.com/csound/csound/archive/6.09.1.tar.gz
- tar -xf 6.09.1.tar.gz
- mkdir csound
- cd csound
- cmake ../csound-6.09.1
- make
- sudo make install
... |
Enable pip cache in Travis CI | dist: xenial
sudo: false
language: python
matrix:
include:
- python: '2.7'
env: TOXENV=py27
- python: '3.5'
env: TOXENV=py35
- python: '3.6'
env: TOXENV=py36
- python: '3.7'
env: TOXENV=py37
- python: 'pypy'
env: TOXENV=pypy
dist: trusty
- python: 'pypy3'
... | dist: xenial
sudo: false
language: python
cache: pip
matrix:
include:
- python: '2.7'
env: TOXENV=py27
- python: '3.5'
env: TOXENV=py35
- python: '3.6'
env: TOXENV=py36
- python: '3.7'
env: TOXENV=py37
- python: 'pypy'
env: TOXENV=pypy
dist: trusty
- python... |
Install the dev-requirements.txt on TravisCI | language: python
python:
- "3.4"
- "3.5"
- "3.6"
sudo: required
services:
- docker
install:
- pip install -r requirements.txt
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
-... | language: python
python:
- "3.4"
- "3.5"
- "3.6"
sudo: required
services:
- docker
install:
- pip install -r dev-requirements.txt
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
... |
Update Ruby version for TravisCi | language: ruby
rvm:
- 2.0.0
bundler_args: --without development
before_script:
- psql -c 'create database restful_test;' -U postgres
| language: ruby
rvm:
- 2.2.2
bundler_args: --without development
before_script:
- psql -c 'create database restful_test;' -U postgres
|
Use the android-wait-for-emulator before_script hook. | language: android
jdk: oraclejdk8
android:
components:
- tools
- tools # See https://github.com/travis-ci/travis-ci/issues/6040#issuecomment-219367943
- platform-tools
- build-tools-25.0.2
- android-24
- android-25
- sys-img-armeabi-v7a-android-24
- extra-android-support
- extra-an... | language: android
jdk: oraclejdk8
android:
components:
- tools
- tools # See https://github.com/travis-ci/travis-ci/issues/6040#issuecomment-219367943
- platform-tools
- build-tools-25.0.2
- android-24
- android-25
- sys-img-armeabi-v7a-android-24
- extra-android-support
- extra-an... |
Drop support for old Node | language: node_js
matrix:
include:
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
| language: node_js
matrix:
include:
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 6
- node_js: node
|
Add node 0.11 as allowed failure | language: node_js
node_js:
- "0.10"
- "0.11"
install:
- npm install -g gulp
- npm install
script:
- npm test
| language: node_js
node_js:
- "0.10"
- "0.11"
matrix:
allow_failures:
- node_js: "0.11"
install:
- npm install -g gulp
- npm install
script:
- npm test
|
Increase sleep time to 10 seconds | sudo: true
dist: trusty
language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
install:
- ./bin/composer install --no-interaction --no-progress --no-suggest
- ./bin/build app:install CHOWN_USER=$USER,CHGRP_GROUP=$USER,DB_NAME=a... | sudo: true
dist: trusty
language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
install:
- ./bin/composer install --no-interaction --no-progress --no-suggest
- ./bin/build app:install CHOWN_USER=$USER,CHGRP_GROUP=$USER,DB_NAME=a... |
Support route _tail also in path function. | name: clean_router
version: 0.1.1
authors:
- Samuel Hapák <samuel.hapak@vacuumapps.com>
- Peter Csiba <petherz@gmail.com>
- Jozef Brandys <jozef.brandys@gmail.com>
description: Routing requests both on client and server side.
homepage: https://github.com/cleandart/clean_router
dependencies:
browser: any
clean_data:... | name: clean_router
version: 0.1.2
authors:
- Samuel Hapák <samuel.hapak@vacuumapps.com>
- Peter Csiba <petherz@gmail.com>
- Jozef Brandys <jozef.brandys@gmail.com>
description: Routing requests both on client and server side.
homepage: https://github.com/cleandart/clean_router
dependencies:
browser: any
clean_data:... |
Test against multiple versions of Django and Tastypie. | language: python
python: 2.7
services: mongodb
install: "python setup.py install"
script: "python -Wall setup.py test"
| language: python
python:
- 2.6
- 2.7
env:
- BEFORE_DJANGO_VERSION=1.5 TASTYPIE_VERSION="==0.9.12"
- BEFORE_DJANGO_VERSION=1.5 TASTYPIE_VERSION=">=0.9.12,<=0.10.0"
- BEFORE_DJANGO_VERSION=1.6 TASTYPIE_VERSION="==0.9.12"
- BEFORE_DJANGO_VERSION=1.6 TASTYPIE_VERSION=">=0.9.12,<=0.10.0"
- BEFORE_DJANGO_VERSION=1.7 T... |
Change Travis over to OS X based VM, as that seems to produce a more stable build environment. Disable Node 10 build for now (we can test locally for that and we're not defining 10 as a valid hosting version for now) | language: node_js
sudo: required
dist: trusty
node_js:
- "8"
- "10"
before_install: if [[ `npm --version` != "5.8.0" ]]; then npm install -g npm@latest; npm --version; fi
matrix:
fast_finish: true
services:
- mongodb
- docker
script: make travis
after_success:
- nvm version
- if [[ ! -z "$DOCKER_USER" ]];... | language: node_js
os: osx
node_js:
- "8"
before_install:
- if [[ `npm --version` != "5.8.0" ]]; then npm install -g npm@latest; npm --version; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
# https://github.com/Homebrew/homebrew-core/issues/26358
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then bre... |
Update Xcode version for Travis CI | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode8
language: objective-c
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod repo update # Uncomment this when t... | # references:
# * http://www.objc.io/issue-6/travis-ci.html
# * https://github.com/supermarin/xcpretty#usage
osx_image: xcode9
language: objective-c
cache: cocoapods
podfile: Example/Podfile
before_install:
- gem install cocoapods # Since Travis is not always on latest version
- pod repo update # Uncomment this when t... |
Add more ruby 2.2.x versions | language: ruby
rvm:
- 2.2.1
- 2.2.2
| language: ruby
rvm:
- 2.2.1
- 2.2.2
- 2.2.3
- 2.2.4
|
Test against the Mapcache 1.2.1 release in Travis | # Configuration file for Travis-CI testing
language: node_js
node_js:
- "0.8"
- "0.10"
env:
- MAPCACHE_COMMIT=11e85095a39010f953b34077b7f0824e234e9423 # minimum supported version
- MAPCACHE_COMMIT=rel-1-0-0 # v1.0.0
- MAPCACHE_COMMIT=rel-1-2-0 # v1.2.0
- MAPCACHE_COMMIT= # repository HEAD
befor... | # Configuration file for Travis-CI testing
language: node_js
node_js:
- "0.8"
- "0.10"
env:
- MAPCACHE_COMMIT=11e85095a39010f953b34077b7f0824e234e9423 # minimum supported version
- MAPCACHE_COMMIT=rel-1-0-0 # v1.0.0
- MAPCACHE_COMMIT=rel-1-2-0 # v1.2.0
- MAPCACHE_COMMIT=rel-1-2-1 # v1.2.1
- MAPCACHE_C... |
Install dep that Travis could not find before installing assert | language: go
install:
- go get github.com/bmizerany/assert
notifications:
email: false
| language: go
install:
- go get github.com/kr/pty
- go get github.com/bmizerany/assert
notifications:
email: false
|
Change to use the latest 2.4 | language: ruby
cache:
bundler: true
rvm:
- 2.4.1
script: bundle exec rake test
gemfile:
- Gemfile
| language: ruby
cache:
bundler: true
rvm:
- 2.4
script: bundle exec rake test
gemfile:
- Gemfile
|
Add clean to Jazzy config | module: Fischer
module_version: 1.0.0
github_url: https://github.com/nvzqz/Fischer
swift_version: 3
author: Nikolai Vazquez
author_url: https://github.com/nvzqz
theme: fullwidth
| module: Fischer
module_version: 1.0.0
github_url: https://github.com/nvzqz/Fischer
swift_version: 3
author: Nikolai Vazquez
author_url: https://github.com/nvzqz
theme: fullwidth
clean: true
|
Allow CI failure on 1.9.2 | rvm:
- 1.9.2
- 1.9.3
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
| rvm:
- 1.9.2
- 1.9.3
- ruby-head
matrix:
allow_failures:
- rvm: 1.9.2
- rvm: ruby-head
|
Remove Ruby versions unsupported on Ubuntu 20.04 | language: ruby
dist: focal
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.4.10
- 2.5.9
- 2.6.8
- 2.7.4
- 3.0.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- gem update --system 2.1.11
- git config --global user.email 'user@example.com'
- git config --global user.name 'Test User'... | language: ruby
dist: focal
rvm:
- 2.4.10
- 2.5.9
- 2.6.8
- 2.7.4
- 3.0.1
- ruby-head
matrix:
allow_failures:
- rvm: ruby-head
before_install:
- gem update --system 2.1.11
- git config --global user.email 'user@example.com'
- git config --global user.name 'Test User'
|
Use bundler on TravisCI explicitly | language: ruby
rvm:
- 2.2.2
- 2.1.6
- 2.0.0
- 1.9.3
| language: ruby
rvm:
- 2.2.2
- 2.1.6
- 2.0.0
- 1.9.3
script: 'bundle exec rake spec'
|
Build on Travis CI without `sudo`. | language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm install istanb... | sudo: false
language: node_js
node_js:
- '0.10'
branches:
only:
- master
- travis-ci
# Not using `npm install --dev` because it is recursive. It will pull in the all
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
# build output.
before_install:
- npm install
- npm i... |
Update Travis for Go 1.13 | ---
language: go
go:
- "1.11.x"
- "1.12.x"
services:
- redis-server
before_install:
# update to latest version of redis
- sudo apt-get install -y redis-server
- GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.17.1
script:
# for some reason go test -v -race ./... doesn't wor... | ---
language: go
go:
- "1.12.x"
- "1.13.x"
services:
- redis-server
before_install:
# update to latest version of redis
- sudo apt-get install -y redis-server
- GO111MODULE=on go get github.com/golangci/golangci-lint/cmd/golangci-lint@v1.18.0
script:
# for some reason go test -v -race ./... doesn't wor... |
Remove nightly from master due to PhpUnit issue | language: php
php:
- '5.6'
- '7.0'
- hhvm
- nightly
cache:
directories:
- ./vendor
install:
- composer --prefer-source install
script:
- vendor/bin/phpunit
- bin/psalm | language: php
php:
- '5.6'
- '7.0'
- hhvm
cache:
directories:
- ./vendor
install:
- composer --prefer-source install
script:
- vendor/bin/phpunit
- bin/psalm
|
Add more versions to CI matrix | language: elixir
elixir:
- 1.1.1
- 1.2.0
otp_release:
- 18.1
after_script:
- mix deps.get --only docs
- MIX_ENV=docs mix inch.report
| language: elixir
matrix:
include:
- otp_release: 18.3
elixir: 1.1.1
- otp_release: 18.3
elixir: 1.2.6
- otp_release: 18.3
elixir: 1.3.2
- otp_release: 19.0
elixir: 1.3.2
sudo: false
after_script:
- mix deps.get --only docs
- MIX_ENV=docs mix inch.report
|
Remove CI testing for node 4 and 9, add for node 10 | language: node_js
node_js:
- 4
- 6
- 8
- 9
before_install:
- npm install -g npm@latest
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
script: npm run lint && npm run test-coveralls
| language: node_js
node_js:
- 6
- 8
- 10
before_install:
- npm install -g npm@latest
- npm install -g greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
script: npm run lint && npm run test-coveralls
|
Add logging to grunt task | language: node_js
node_js:
- "0.10"
before_install:
- npm install -g grunt-cli
install:
- npm install
before_script:
- grunt travis
script:
- grunt coveralls:dijit_coverage | language: node_js
node_js:
- "0.10"
before_install:
- npm install -g grunt-cli
install:
- npm install
before_script:
- grunt travis
script:
- grunt coveralls:dijit_coverage --verbose |
Use precise dist to continue PHP 5.3 support | # See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
matrix:
include:
- php: 5.3
env: DB=MYSQL CORE_RELEASE=3.4
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.5
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
env: DB=MYSQL... | # See https://github.com/silverstripe/silverstripe-travis-support for setup details
sudo: false
language: php
dist: precise
matrix:
include:
- php: 5.3
env: DB=MYSQL CORE_RELEASE=3.4
- php: 5.4
env: DB=MYSQL CORE_RELEASE=3.5
- php: 5.6
env: DB=MYSQL CORE_RELEASE=3
- php: 5.6
... |
Add initial Travis CI configuration | language: objective-c
script: 'curl -s -H "Authorization: token $ATOM_ACCESS_TOKEN" -H "Accept: application/vnd.github.v3.raw"
https://api.github.com/repos/atom/apm/contents/script/build-package | sh'
env:
global:
secure: JRVQXRPtCp4hvyLGhNDnTB2vc5mEme7Y/LeNekuX3tT2IEwz7hd4PdIEjzEgqiW10LewKuvzeXFg2Dvku/dDXcG07e... | language: objective-c
script: 'curl -s -H "Authorization: token $ATOM_ACCESS_TOKEN" -H "Accept: application/vnd.github.v3.raw"
https://api.github.com/repos/atom/apm/contents/script/build-package | sh'
env:
global:
secure: K8BJ6HXSFxHC4AVSGdrdK4RNfHGXWK6N0T8mBAJQ+eyjppyGnZUC+S+1GhLtfnXpmVDcc1v0kJp/tyIARhkOb9fC67... |
Switch the 1.x.x builds to use default openjdk8 and install openjfx package | # use java support.
language: java
# run in container.
sudo: false
# use linux as operating system.
os: linux
matrix:
fast_finish: true
include:
- jdk: oraclejdk8
if: branch = master OR tag =~ ^v1\.[0-9]+\.[0-9]+ # match v1.x.x
- jdk: openjdk11
if: branch = jdk10 OR tag =~ ^v2\.[0-9]+\.[0-9]+... | # use java support.
language: java
# run in container.
sudo: false
# use linux as operating system.
os: linux
matrix:
fast_finish: true
include:
- jdk: openjdk8
if: branch = master OR tag =~ ^v1\.[0-9]+\.[0-9]+ # match v1.x.x
- jdk: openjdk11
if: branch = jdk10 OR tag =~ ^v2\.[0-9]+\.[0-9]+ #... |
Add explicit Python environments to Travis CI | language: python
python: '3.5'
sudo: false
env:
global:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
matrix:
- TOXENV=check
- TOXENV=docs
- TOXENV=py27,codecov
- TOXENV=py33,codecov
- TOXENV=py34,codecov
- TOXENV=py35,codecov
- TOXENV=py36,codecov
... | dist: xenial
language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- '3.7'
sudo: false
env:
global:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
matrix:
- TOXENV=check
- TOXENV=docs
- TOXENV=py27,codecov
- TOXENV=py33,codecov
- TOXENV=p... |
Update Ruby versions in TravisCI configuration | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.6
- 2.2.2
gemfile:
- gemfiles/Gemfile.ci
script:
- bundle exec rspec
- bundle exec rubocop
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.7
- 2.2.3
gemfile:
- gemfiles/Gemfile.ci
script:
- bundle exec rspec
- bundle exec rubocop
|
Revert "Ignore SCons files from code coverage report." | language: c
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y gfortran scons
script:
- scons --clean
- scons
- scons test
- ./test-udsp
- scons test --clean
- scons --clean
- export CFLAGS="-coverage -g -O0 $CFLAGS"
- export LDFLAGS="-coverage $LDFLAGS"
- scons test
- ... | language: c
before_install:
- sudo apt-get update -qq
install:
- sudo apt-get install -y gfortran scons
script:
- scons --clean
- scons
- scons test
- ./test-udsp
- scons test --clean
- scons --clean
- export CFLAGS="-coverage -g -O0 $CFLAGS"
- export LDFLAGS="-coverage $LDFLAGS"
- scons test
- ... |
Use available node js version. | language:
- node_js
node_js:
- 0.10.13
before_install:
- npm install grunt-cli bower -g
- npm install
- bower install
# install CasperJS
- git clone git://github.com/n1k0/casperjs.git ~/casperjs
- cd ~/casperjs
- git checkout tags/1.0.2
- export PATH=$PATH:`pwd`/bin
- cd -
before_script:
- p... | language:
- node_js
node_js:
- 0.10.12
before_install:
- npm install grunt-cli bower -g
- npm install
- bower install
# install CasperJS
- git clone git://github.com/n1k0/casperjs.git ~/casperjs
- cd ~/casperjs
- git checkout tags/1.0.2
- export PATH=$PATH:`pwd`/bin
- cd -
before_script:
- p... |
Disable Ruby 2.5.0 (for now) | language: ruby
sudo: false
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
- 2.5.0
gemfile: Gemfile.travis
script: bundle exec rake test
| language: ruby
sudo: false
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.10
- 2.2.9
- 2.3.6
- 2.4.3
gemfile: Gemfile.travis
script: bundle exec rake test
|
Remove bundler update from Travis config | ---
language: ruby
rvm:
- 2.1.2
before_script:
- gem update bundler
script:
- bundle exec rspec --no-drb --format progress
| ---
language: ruby
rvm:
- 2.1.2
script:
- bundle exec rspec --no-drb --format progress
|
Fix The command "phpenv config-rm xdebug.ini" failed and exited with 1 during . | language: php
php:
- '7.0'
- '7.1'
- nightly
matrix:
allow_failures:
- php: 7.1
- php: nightly
services:
- postgresql
addons:
postgresql: "9.2"
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini
- echo "no" | pecl install apcu... | language: php
php:
- '7.0'
- '7.1'
- nightly
matrix:
allow_failures:
- php: 7.1
- php: nightly
services:
- postgresql
addons:
postgresql: "9.2"
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini || true
- echo "no" | pecl inst... |
Fix typo in script path | matrix:
include:
- os: linux
language: android
sudo: false
android:
components:
- build-tools-23.0.1
- android-23
- extra-google-m2repository
- extra-android-m2repository
env: TERM=dumb
- os: ... | matrix:
include:
- os: linux
language: android
sudo: false
android:
components:
- build-tools-23.0.1
- android-23
- extra-google-m2repository
- extra-android-m2repository
env: TERM=dumb
- os: ... |
Put 3.10 in Quotes for Travis | language: python
sudo: false
script: ./scripts/travis.sh
os:
- linux
python:
- 3.5
- 3.6
matrix:
include:
- python: 3.7
dist: xenial
sudo: true
- python: 3.8
dist: xenial
sudo: true
- python: 3.9
dist: xenial
sudo: true
- python: 3.10
dist: focal
s... | language: python
sudo: false
script: ./scripts/travis.sh
os:
- linux
python:
- "3.5"
- "3.6"
matrix:
include:
- python: "3.7"
dist: "xenial"
sudo: true
- python: "3.8"
dist: "xenial"
sudo: true
- python: "3.9"
dist: "xenial"
sudo: true
- python: "3.10"
d... |
Test colorguard on angr pushes | before_script:
- which angr-test && angr-test sync hard
### local
angr:
script: "angr-test angr"
tags: [angr]
lint:
script: "angr-test lint"
tags: [angr]
### first level
fidget:
script: "angr-test fidget"
tags: [angr]
angrop:
script: "angr-test angrop"
tags: [angr]
topsecret:
... | before_script:
- which angr-test && angr-test sync hard
### local
angr:
script: "angr-test angr"
tags: [angr]
lint:
script: "angr-test lint"
tags: [angr]
### first level
fidget:
script: "angr-test fidget"
tags: [angr]
angrop:
script: "angr-test angrop"
tags: [angr]
topsecret:
... |
Sort checked files to avoid random order | dist: trusty
sudo: false
language: php
php:
- 7.1
- 7.2
- nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{,.disabled} || echo "xdebug not available"
- composer self-update
install: travis_retry composer update -... | dist: trusty
sudo: false
language: php
php:
- 7.1
- 7.2
- nightly
cache:
directories:
- $HOME/.composer/cache
before_install:
- mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini{,.disabled} || echo "xdebug not available"
- composer self-update
install: travis_retry composer update -... |
Add ruby 2.7 to CI matrix | name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
mongodb: [4.4]
ruby: [2.4, 2.5, 2.6]
gemfile:
- carrierwave-0.10
- carrierwave-0.11
- carrierwave-1.1
- carrierwave-1.2
- carrierwave-1.3
... | name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
mongodb: [4.4]
ruby: [2.4, 2.5, 2.6, 2.7]
gemfile:
- carrierwave-1.1
- carrierwave-1.2
- carrierwave-1.3
- carrierwave-2.0
- carrierwave-2.1
... |
Update the Travis configuration for Ruby 2.3.0 | language: ruby
rvm:
- 2.0.0
services: postgres
before_script:
- rm config/database.yml
- cp config/database.travis.yml config/database.yml
- psql -c 'create database books_test;' -U postgres
- bundle exec rake db:migrate
| language: ruby
rvm:
- 2.3.0
services: postgres
before_script:
- rm config/database.yml
- cp config/database.travis.yml config/database.yml
- psql -c 'create database books_test;' -U postgres
- bundle exec rake db:migrate
|
Update to JRuby 9.1.12.0 and Rubinius 3.84. | language: ruby
dist: trusty
sudo: false
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
- jruby-1.7.26
- jruby-9.1.9.0
- jruby-head
- rbx-3.82
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
| language: ruby
dist: trusty
sudo: false
before_script:
- bundle update
cache: bundler
rvm:
- 1.9.3-p551
- 2.0.0-p648
- 2.1.10
- 2.2.7
- 2.3.4
- 2.4.1
- ruby-head
- jruby-1.7.26
- jruby-9.1.12.0
- jruby-head
- rbx-3.84
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
|
Update config for domain name | url: https://appnearme.github.io/micronfcboard
baseurl: /micronfcboard
# Site settings
title: MicroNFCBoard - NFC made easy
company: AppNearMe Ltd
email: contact@appnearme.com
description: "MicroNFCBoard - NFC made easy; read and write tags, transfer data with NFC phones"
# Color settings (hex-codes without the leadi... | url: http://www.micronfcboard.com
baseurl: /
# Site settings
title: MicroNFCBoard - NFC made easy
company: AppNearMe Ltd
email: contact@appnearme.com
description: "MicroNFCBoard - NFC made easy; read and write tags, transfer data with NFC phones"
# Color settings (hex-codes without the leading hash-tag)
color:
prim... |
Update elixir & erlang tested versions | language: elixir
elixir:
- 1.3.3
otp_release:
- 18.2
script:
- MIX_ENV=test mix test --trace --cover
services:
- redis-server
sudo: false
| language: elixir
elixir:
- 1.6.6
- 1.7.3
otp_release:
- 21.0
script:
- MIX_ENV=test mix test --trace --cover
services:
- redis-server
sudo: false
|
Exclude only tests/examples directory in Travis | language: php
php:
- 5.3.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- composer require jakub-onderka/php-console-highlighter 0.3
script:
- ./vendor/bin/tester tests
- ./parallel-lint --exclude vendor --exclude tests --no-colors .
- ... | language: php
php:
- 5.3.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
- composer require jakub-onderka/php-console-highlighter 0.3
script:
- ./vendor/bin/tester tests
- ./parallel-lint --exclude vendor --exclude tests/examples --no-colo... |
Change default editor to nvim | baseurl:
title: Tufte-Jekyll
subtitle: Content-centric blogging
author: Andrei Kashin
simple_search: http://google.com/search
description: A Jekyll theme for content-rich sites
name: tufte
markdown: kramdown
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
permalink: /articles/:short_year/:title
timezone: Europe/London
exce... | baseurl:
title: Tufte-Jekyll
subtitle: Content-centric blogging
author: Andrei Kashin
simple_search: http://google.com/search
description: A Jekyll theme for content-rich sites
name: tufte
markdown: kramdown
markdown_ext: "markdown,mkdown,mkdn,mkd,md"
permalink: /articles/:short_year/:title
timezone: Europe/London
exce... |
Drop support for Ruby 1.9.3 | language: ruby
before_install:
- sudo apt-get install libpcap-dev -qq
rvm:
- 2.1.1
- 2.0.0
- 1.9.3
| language: ruby
before_install:
- sudo apt-get install libpcap-dev -qq
rvm:
- 2.1.1
- 2.0.0 |
Test Go 1.7rc1 and tip | sudo: false
language: go
go:
- 1.5
- 1.6
env:
global:
- GO15VENDOREXPERIMENT=1
install:
- make install_ci
script:
- make lint_ci
- make test_ci
- travis_retry goveralls -coverprofile=cover.out -service=travis-ci || true
- rm -rf vendor/*
| sudo: false
language: go
go:
- 1.5
- 1.6
- 1.7rc1
- tip
env:
global:
- GO15VENDOREXPERIMENT=1
install:
- make install_ci
script:
- make lint_ci
- make test_ci
- travis_retry goveralls -coverprofile=cover.out -service=travis-ci || true
- rm -rf vendor/*
|
Use kramdown parser instead of redcarpet | exclude: [ "less", "gitignore", "nicoespeon.sublime-project", "nicoespeon.sublime-workspace" ]
highlighter: pygments
markdown: redcarpet
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
permalink: /:categories/:year/:month/:title/
paginate: 7
paginate_... | exclude: [ "less", "gitignore", "nicoespeon.sublime-project", "nicoespeon.sublime-workspace" ]
highlighter: pygments
markdown: kramdown
redcarpet:
extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "tables", "with_toc_data"]
permalink: /:categories/:year/:month/:title/
paginate: 7
paginate_p... |
Update Java version in Travis to avoid build issue | language: java
jdk:
- oraclejdk8 | language: java
jdk:
- oraclejdk8
script:
- sudo apt-get update && sudo apt-get install oracle-java8-installer
- java -version |
Drop back to node 0.8 for now | language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.8"
|
Remove a few JDK's that are not installed by default anymore, they're past EOL anyway | sudo: false
language: java
jdk:
- oraclejdk11
- oraclejdk10
- oraclejdk9
- oraclejdk8
- oraclejdk7
- openjdk11
- openjdk10
- openjdk9
- openjdk8
- openjdk7
- openjdk6
env:
- TERM=dumb
after_success:
- gradle cobertura coveralls
| sudo: false
language: java
jdk:
- oraclejdk11
- oraclejdk10
- oraclejdk9
- oraclejdk8
- openjdk11
- openjdk10
- openjdk9
- openjdk8
- openjdk7
env:
- TERM=dumb
after_success:
- gradle cobertura coveralls
|
Use latest stable releases of all rubies in CI | language: ruby
sudo: false
matrix:
include:
- rvm: 2.3.1
script:
- bundle exec danger
- rvm: 2.3.1
- rvm: 2.3.0
- rvm: 2.2.5
- rvm: 2.4.0
- rvm: rbx-2
- rvm: ruby-head
- rvm: jruby-head
- rvm: jruby-9.1.7.0
allow_failures:
- rvm: ruby-head
- rvm: jruby-hea... | language: ruby
sudo: false
matrix:
include:
- rvm: 2.4.1
- rvm: 2.4.1
script:
- bundle exec danger
- rvm: jruby-9.1.12.0
- rvm: jruby-head
- rvm: 2.2.7
- rvm: 2.3.4
- rvm: rbx-2
- rvm: ruby-head
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx... |
Support node 4 and 5 | language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
after_script:
- npm run coveralls
| language: node_js
node_js:
- 4
- 5
after_script:
- npm run coveralls
|
Add go 1.5 to CI run | language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
| language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
|
Update to new version of bundler every time due to ruby 2.5 issue. | language: ruby
cache: bundler
sudo: required
rvm:
- 2.3
- 2.4
- 2.5
notifications:
email:
recipients:
- fhir-testing-list@lists.mitre.org
on_failure: change
| language: ruby
cache: bundler
sudo: required
rvm:
- 2.3
- 2.4
- 2.5
notifications:
email:
recipients:
- fhir-testing-list@lists.mitre.org
on_failure: change
before_install: gem install bundler
|
Increase the Travis testing matrix, to include Illuminate 5.1 components | language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- phpunit
| language: php
php:
- 5.5.9
- 5.5
- 5.6
- 7.0
- hhvm
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... |
Add deploy with my npm account for now | language: node_js
script: make test
before_deploy:
- npm-prepublish --verbose --lax
deploy:
provider: npm
email: "replace-with-email"
api_key:
secure: "replace-with-encrypted-api-key"
on:
all_branches: true
tags: true
repo: github/fetch
| language: node_js
script: make test
before_deploy:
- npm-prepublish --verbose --lax
deploy:
provider: npm
email: matt@mattandre.ws
api_key:
secure: ij7AZPB/atfHn/MJI9T6p/awg8zSrFL/FXMorfvSNZdCck8BTZaK1eiiC2Jg1ljZiIeRnc+EEpBWTc1yTLAQUF8dIXf3oyxdSXQzz4GiGHRgqi9vyvPyUXshsqdNY2WzO6lnKJ+XLDCCYyaHcFIBeqPqtYxPe5m8ck... |
Remove unused deployments on now.sh | language: node_js
node_js:
- "8"
cache:
yarn: true
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4
- export PATH=$HOME/.yarn/bin:$PATH
install:
- yarn install
script:
- yarn build
- yarn lint
#- yarn flow
- yarn test
# Install Now CLI on Travis
before_de... | language: node_js
node_js:
- "8"
cache:
yarn: true
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.9.4
- export PATH=$HOME/.yarn/bin:$PATH
install:
- yarn install
script:
- yarn build
- yarn lint
#- yarn flow
- yarn test
# Install Now CLI on Travis
before_de... |
Update Ruby build matrix on Travis | before_script:
- sudo apt-get update
- sudo apt-get install gccxml
- gem uninstall -a --force gccxml_gem
- gem install gccxml_gem --platform ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- ruby-head
| before_script:
- sudo apt-get update
- sudo apt-get install gccxml
- gem uninstall -a --force gccxml_gem
- gem install gccxml_gem --platform ruby
rvm:
- 2.0.0
- 2.1.0
- 2.2.0
- 2.3.0
- ruby-head
|
Remove support for furure parser as it is only applies to version 3 | #This file is generated by ModuleSync, do not edit.
---
sudo: false
language: ruby
cache: bundler
script: "bundle exec rake validate lint spec"
matrix:
fast_finish: true
include:
- rvm: 2.1.6
dist: trusty
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/ubuntu-14.04
script: bundle ex... | #This file is generated by ModuleSync, do not edit.
---
sudo: false
language: ruby
cache: bundler
script: "bundle exec rake validate lint spec"
matrix:
fast_finish: true
include:
- rvm: 2.1.6
dist: trusty
env: PUPPET_INSTALL_TYPE=agent BEAKER_debug=true BEAKER_set=docker/ubuntu-14.04
script: bundle ex... |
Stop running Travis on Stable | language: dart
dart:
- dev
- stable
dart_task:
- test
- dartfmt
- dartanalyzer
# Only building master means that we don't run two builds for each pull request.
branches:
only: [master]
cache:
directories:
- $HOME/.pub-cache
| language: dart
dart:
- dev
dart_task:
- test
- dartfmt
- dartanalyzer
# Only building master means that we don't run two builds for each pull request.
branches:
only: [master]
cache:
directories:
- $HOME/.pub-cache
|
Remove duplicated bundle install instruction | language: objective-c
branches:
only:
- master
git:
submodules: false
before_install:
- git submodule update --init --recursive
- bundle install
podfile: ./Podfile
xcode_workspace: ./Devbeers.xcworkspace
xcode_scheme: Devbeers
script: xctool -workspace ./Devbeers.xcworkspace -sdk iphonesimulator -scheme Devb... | language: objective-c
branches:
only:
- master
git:
submodules: false
before_install:
- git submodule update --init --recursive
podfile: ./Podfile
xcode_workspace: ./Devbeers.xcworkspace
xcode_scheme: Devbeers
script: xctool -workspace ./Devbeers.xcworkspace -sdk iphonesimulator -scheme Devbeers build test COD... |
Print puppet version before running tests in Travis | rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
notifications:
email:
- tim@github.com
env:
- PUPPET_VERSION=2.7.25
- PUPPET_VERSION=3.0.2
- PUPPET_VERSION=3.1.1
- PUPPET_VERSION=3.2.4
- PUPPET_VERSION=3.3.2
- PUPPET_VERSION=3.4.2
before_install:
- gem --version
- gem update --system # todo: workar... | rvm:
- 1.8.7
- 1.9.3
- 2.0.0
- 2.1.0
notifications:
email:
- tim@github.com
env:
- PUPPET_VERSION=2.7.25
- PUPPET_VERSION=3.0.2
- PUPPET_VERSION=3.1.1
- PUPPET_VERSION=3.2.4
- PUPPET_VERSION=3.3.2
- PUPPET_VERSION=3.4.2
before_install:
- gem --version
- gem update --system # todo: workar... |
Test TGZ and DEB using Travis |
language: cpp
compiler: gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq cmake sqlite3 qt4-dev-tools cscope exuberant-ctags
before_script:
- mkdir build
- cd build
- cmake ..
script: make
after_script:
- make package
- export pkgfile=`ls -1 ./*.deb`
- sudo dpkg -i $pkgfile
... | language: cpp
compiler: gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq cmake sqlite3 qt4-dev-tools cscope exuberant-ctags
before_script:
- mkdir build
- cd build
- cmake ..
script: make
after_script:
- make package
- export tgzfile=`ls -1 ./*.tar.gz`
- tar -ztvf $tgzfile
-... |
Remove support for Puppet 2.7 | ---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 2.7.0" FACTER_GEM_VERSION=... | ---
language: ruby
bundler_args: --without system_tests --jobs 3 --retry 3
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
sudo: false
matrix:
fast_finish: true
include:
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.0.0
en... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.