Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Disable git shallow clone for check license script | env:
global:
TEST_BRANCH: $TRAVIS_BRANCH
before_script:
# Rename the branch we're on, so that it's not in the way for the
# subsequent fetch. It's ok if this fails, it just means we're not on any
# branch.
- git branch -m temp-branch || true
# Git trick: Fetch directly into our local branches instead of remote
# branches.
- git fetch origin 'refs/heads/*:refs/heads/*'
# Get last remaining tags, if any.
- git fetch --tags origin
- git clone git://github.com/mendersoftware/mendertesting
script:
# Check commit compliance.
- mendertesting/check_commits.sh
# Check changelog-generator test.
- ( cd extra/changelog-generator && ./test-changelog-generator )
| # Disable git shallow clone. We need full history for validating copyright year of each file.
git:
depth: false
env:
global:
TEST_BRANCH: $TRAVIS_BRANCH
before_script:
# Rename the branch we're on, so that it's not in the way for the
# subsequent fetch. It's ok if this fails, it just means we're not on any
# branch.
- git branch -m temp-branch || true
# Git trick: Fetch directly into our local branches instead of remote
# branches.
- git fetch origin 'refs/heads/*:refs/heads/*'
# Get last remaining tags, if any.
- git fetch --tags origin
- git clone git://github.com/mendersoftware/mendertesting
script:
# Check commit compliance.
- mendertesting/check_commits.sh
# Check changelog-generator test.
- ( cd extra/changelog-generator && ./test-changelog-generator )
|
Update to use Docker Container | language: node_js
node_js:
- "0.10"
script:
- "npm run-script ci"
| language: node_js
node_js:
- "0.10"
sudo: false
script:
- "npm run-script ci"
|
Add boost_system to continuous build | before_script:
- sudo apt-get install libboost-program-options-dev
- sudo apt-get install libboost-regex-dev
- sudo apt-get install libboost-test-dev
- sudo apt-get install flex
- autoreconf -ifv
- ./configure
script: make
after_script:
- make check
- ./tests/run-system-tests.pl
| before_script:
- sudo apt-get install libboost-program-options-dev
- sudo apt-get install libboost-regex-dev
- sudo apt-get install libboost-test-dev
- sudo apt-get install libboost-system-dev
- sudo apt-get install flex
- autoreconf -ifv
- ./configure
script: make
after_script:
- make check
- ./tests/run-system-tests.pl
|
Add ability to unittest puppet 4 | ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
notifications:
email: false
| ---
sudo: false
language: ruby
bundler_args: --without system_tests
script: "bundle exec rake validate && bundle exec rake lint && bundle exec rake spec SPEC_OPTS='--format documentation'"
matrix:
fast_finish: true
include:
- rvm: 1.8.7
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 1.9.3
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0"
- rvm: 2.1.5
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes"
allow_failures:
- rvm: 2.1.6
env: PUPPET_GEM_VERSION="~> 4.0" STRICT_VARIABLES="yes"
notifications:
email: false
|
Update from Hackage at 2019-03-08T19:02:08Z | homepage: http://github.com/bgamari/svm-light-utils
changelog-type: ''
hash: 9bfaa73ed833c07e4e166e7638eb656f497d8279be6289893f9b076462ca1bfb
test-bench-deps: {}
maintainer: bgamari@gmail.com
synopsis: Parsers and formatters for the SVMlight input file format
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
base: ! '>=4.7 && <4.11'
containers: ! '>=0.5 && <0.6'
attoparsec: ! '>=0.12 && <0.14'
all-versions:
- 0.1.0.0
- 0.1.1
- 0.1.2
- 0.1.3
- 0.1.4
author: Ben Gamari
latest: 0.1.4
description-type: haddock
description: Parsers and formatters for the SVMlight input file format
license-name: BSD-3-Clause
| homepage: http://github.com/bgamari/svm-light-utils
changelog-type: ''
hash: aa5adc315ae6be09b79e5e44951d43969898eaa1105991425fb90e185e773657
test-bench-deps: {}
maintainer: bgamari@gmail.com
synopsis: Parsers and formatters for the SVMlight input file format
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
base: ! '>=4.7 && <4.13'
containers: ! '>=0.5 && <0.7'
attoparsec: ! '>=0.12 && <0.14'
all-versions:
- 0.1.0.0
- 0.1.1
- 0.1.2
- 0.1.3
- 0.1.4
author: Ben Gamari
latest: 0.1.4
description-type: haddock
description: Parsers and formatters for the SVMlight input file format
license-name: BSD-3-Clause
|
Add group write permissions to rotated logs. | # Documentation: https://galaxy.ansible.com/list#/roles/1117
logrotate_scripts:
- name: wordpress-sites
path: "{{ www_root }}/**/logs/*.log"
options:
- weekly
- maxsize 50M
- missingok
- rotate 8
- compress
- delaycompress
- notifempty
- create 0640 {{ web_user }} {{ web_group }}
- sharedscripts
scripts:
prerotate: |
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
run-parts /etc/logrotate.d/httpd-prerotate; \
fi \
postrotate: service nginx rotate
| # Documentation: https://galaxy.ansible.com/list#/roles/1117
logrotate_scripts:
- name: wordpress-sites
path: "{{ www_root }}/**/logs/*.log"
options:
- weekly
- maxsize 50M
- missingok
- rotate 8
- compress
- delaycompress
- notifempty
- create 0660 {{ web_user }} {{ web_group }}
- sharedscripts
scripts:
prerotate: |
if [ -d /etc/logrotate.d/httpd-prerotate ]; then \
run-parts /etc/logrotate.d/httpd-prerotate; \
fi \
postrotate: service nginx rotate
|
Update the readthedocs table of content | site_name: Ada Database Objects
docs_dir: docs
pages:
- Introduction: index.md
- Installation: Installation.md
- Tutorial: Tutorial.md
- Session: ADO_Sessions.md
- Database Statement: ADO_Statements.md
- Model Mapping: Model.md
- Trouble shotting: Debugging.md
theme: readthedocs
| site_name: Ada Database Objects
docs_dir: docs
pages:
- Introduction: index.md
- Installation: Installation.md
- Tutorial: Tutorial.md
- Session: ADO_Sessions.md
- Database Statement: ADO_Statements.md
- Model Mapping: ADO_Model.md
- Trouble shotting: Debugging.md
theme: readthedocs
|
Change back to original Postgres image | version: '2'
services:
jekyll:
#image: codefordc2/housing-insights-jekyll
build:
context: docs
command:
- jekyll serve --watch --incremental --force_polling
volumes:
- ./docs:/srv/jekyll
ports:
- "4000:4000"
web:
image: sosedoff/pgweb
environment:
- DATABASE_URL=postgres://codefordc:codefordc@postgres:5432/housinginsights_docker?sslmode=disable
links:
- postgres
ports:
- "8081:8081"
restart: "on-failure:10"
postgres:
image: mdillon/postgis
environment:
- POSTGRES_PASSWORD=codefordc
- POSTGRES_USER=codefordc
- POSTGRES_DB=housinginsights_docker
ports:
- "5432:5432"
restart: "on-failure:3"
sandbox:
build:
context: python
volumes:
- .:/repo
command: tail -f /dev/null
ports:
- "5000:5000" | version: '2'
services:
jekyll:
#image: codefordc2/housing-insights-jekyll
build:
context: docs
command:
- jekyll serve --watch --incremental --force_polling
volumes:
- ./docs:/srv/jekyll
ports:
- "4000:4000"
web:
image: sosedoff/pgweb
environment:
- DATABASE_URL=postgres://codefordc:codefordc@postgres:5432/housinginsights_docker?sslmode=disable
links:
- postgres
ports:
- "8081:8081"
restart: "on-failure:10"
postgres:
image: codefordc2/housing-insights-postgres
environment:
- POSTGRES_PASSWORD=codefordc
- POSTGRES_USER=codefordc
- POSTGRES_DB=housinginsights_docker
ports:
- "5432:5432"
restart: "on-failure:3"
sandbox:
build:
context: python
volumes:
- .:/repo
command: tail -f /dev/null
ports:
- "5000:5000" |
Fix some docker development environment issues. | version: "2"
services:
db:
image: mdillon/postgis:10-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- "9001:5432"
web:
build:
context: .
environment:
PORT: 9000
DB_HOSTNAME: db
DB_PORT: 5432
DB_USERNAME: postgres
DB_PASSWORD: password
DB_NAME: sahc_development
volumes:
- .:/app
- bundle_cache:/usr/local/bundle
- rails_tmp_cache:/usr/local/rails_tmp_cache
- yarn_cache:/usr/local/node_modules
ports:
- "9000:9000"
depends_on:
- db
delayed_job:
build:
context: .
command: bundle exec rake jobs:work
environment:
DB_HOSTNAME: db
DB_PORT: 5432
DB_USERNAME: postgres
DB_PASSWORD: password
DB_NAME: sahc_development
volumes:
- .:/app
- bundle_cache:/usr/local/bundle
- rails_tmp_cache:/usr/local/rails_tmp_cache
- yarn_cache:/usr/local/node_modules
depends_on:
- db
volumes:
bundle_cache:
rails_tmp_cache:
yarn_cache:
| version: "2"
services:
db:
image: mdillon/postgis:10-alpine
environment:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: password
ports:
- "9001:5432"
web:
build:
context: .
environment:
PORT: 9000
DB_HOSTNAME: db
DB_PORT: 5432
DB_USERNAME: postgres
DB_PASSWORD: password
DB_NAME: sahc_development
volumes:
- .:/app
# Don't mount tmp directory to fix bootsnap issues between the 2
# different web and delayed_job containers:
# https://github.com/Shopify/bootsnap/issues/177#issuecomment-491711481
- /app/tmp
- bundle_cache:/usr/local/bundle
- rails_tmp_cache:/usr/local/rails_tmp_cache
- yarn_cache:/usr/local/node_modules
ports:
- "9000:9000"
depends_on:
- db
delayed_job:
build:
context: .
command: bundle exec rake jobs:work
environment:
DB_HOSTNAME: db
DB_PORT: 5432
DB_USERNAME: postgres
DB_PASSWORD: password
DB_NAME: sahc_development
volumes:
- .:/app
- /app/tmp
- bundle_cache:/usr/local/bundle
- rails_tmp_cache:/usr/local/rails_tmp_cache
- yarn_cache:/usr/local/node_modules
depends_on:
- db
volumes:
bundle_cache:
rails_tmp_cache:
yarn_cache:
|
Disable some modules by default | # velox: velox.yaml
%YAML 1.1
---
modules:
- layout_tile
- layout_grid
- wallpaper
- spawn
- mpd
border_width: 2
--- !velox:layout_tile
master_factor: 0.5
master_count: 1
column_count: 1
--- !velox:mpd
host: localhost
port: 6600
timeout: 2000
--- !velox:wallpaper
# NOTE: This path is relative to the directory in which velox was executed. If
# you want to be more specific, include the absolute path
path: wallpaper
--- !velox:spawn
- command: [urxvtc]
binding: terminal
arguments: []
- command: [
"dmenu_run",
"-b",
"-nb", "#222222",
"-nf", "#999999",
"-sb", "#338833",
"-sf", "#FFFFFF"
]
binding: dmenu
...
| # velox: velox.yaml
%YAML 1.1
---
modules:
- layout_tile
- layout_grid
# - wallpaper
# - spawn
# - mpd
border_width: 2
--- !velox:layout_tile
master_factor: 0.5
master_count: 1
column_count: 1
# --- !velox:mpd
# host: localhost
# port: 6600
# timeout: 2000
# --- !velox:wallpaper
# # NOTE: This path is relative to the directory in which velox was executed. If
# # you want to be more specific, include the absolute path
# path: wallpaper
# --- !velox:spawn
# - command: [urxvtc]
# binding: terminal
# arguments: []
# - command: [
# "dmenu_run",
# "-b",
# "-nb", "#222222",
# "-nf", "#999999",
# "-sb", "#338833",
# "-sf", "#FFFFFF"
# ]
# binding: dmenu
...
|
Stop testing against Ruby 1.9.3 in Travis | language: ruby
rvm:
- 2.1.4
- 1.9.3
gemfile:
- gemfiles/Gemfile.rails3
- gemfiles/Gemfile.rails4
addons:
code_climate:
repo_token: 7ec6fd701b7d2b206cdd233c2202b6e11c8ba6af01f8a93f5e24595008ac20a0
| language: ruby
rvm:
- 2.1.4
gemfile:
- gemfiles/Gemfile.rails3
- gemfiles/Gemfile.rails4
addons:
code_climate:
repo_token: 7ec6fd701b7d2b206cdd233c2202b6e11c8ba6af01f8a93f5e24595008ac20a0
|
Drop Go 1.7.5, 1.8, add 1.7.6, 1.8.3, 1.9rc2 | language: go
go:
- 1.7.5
- 1.8
install:
- go get github.com/golang/lint/golint
script:
- golint -set_exit_status
- go vet $(go list ./...)
- go test $(go list ./...)
sudo: false
| language: go
go:
- 1.7.6
- 1.8.3
- 1.9rc2
install:
- go get github.com/golang/lint/golint
script:
- golint -set_exit_status
- go vet $(go list ./...)
- go test $(go list ./...)
sudo: false
|
Use generic "beta" version for testing in Travis. | language: rust
sudo: true
rust:
- nightly
- 1.0.0-beta.3
after_success: |
cargo clean;
cargo test --no-run;
sudo apt-get update &&
sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev binutils-dev &&
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
mkdir kcov-master/build &&
cd kcov-master/build &&
cmake .. &&
make &&
sudo make install &&
cd ../.. &&
kcov --exclude-pattern=/.cargo target/kcov_a target/debug/stream-* &&
kcov --exclude-pattern=/.cargo target/kcov_b target/debug/utp-* &&
kcov --coveralls-id=$TRAVIS_JOB_ID --merge target/kcov target/kcov_a target/kcov_b
| language: rust
sudo: true
rust:
- nightly
- beta
after_success: |
cargo clean;
cargo test --no-run;
sudo apt-get update &&
sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev binutils-dev &&
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
mkdir kcov-master/build &&
cd kcov-master/build &&
cmake .. &&
make &&
sudo make install &&
cd ../.. &&
kcov --exclude-pattern=/.cargo target/kcov_a target/debug/stream-* &&
kcov --exclude-pattern=/.cargo target/kcov_b target/debug/utp-* &&
kcov --coveralls-id=$TRAVIS_JOB_ID --merge target/kcov target/kcov_a target/kcov_b
|
Use Node.js 15 for build | language: node_js
node_js:
- "stable"
cache:
directories:
- node_modules
script:
- yarn build
- yarn test
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
local_dir: build
on:
branch: master
| language: node_js
node_js:
- 15
cache:
directories:
- node_modules
script:
- yarn build
- yarn test
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
local_dir: build
on:
branch: master
|
Update Travis-CI to correct an error | language: java
jdk:
- oraclejdk8
branches:
only:
- master
- develop
install: ./gradlew assemble -P -PsonatypeUsername=argius -PsonatypePassword=''
script: ./gradlew test -P -PsonatypeUsername=argius -PsonatypePassword=''
| language: java
jdk:
- oraclejdk8
branches:
only:
- master
- develop
install: ./gradlew assemble -P -PsonatypeUsername=argius -PsonatypePassword=dummy
script: ./gradlew test -P -PsonatypeUsername=argius -PsonatypePassword=dummy
|
Fix unit tests with lowest dependencies | sudo: false
language: php
php:
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
env:
matrix:
- PREFER_LOWEST = "--prefer-lowest --prefer-stable"
- PREFER_LOWEST = ""
before_script:
- travis_retry composer self-update
- travis_retry composer update $PREFER_LOWEST --no-interaction
script:
- make travis
after_success:
- then bash <(curl -s https://codecov.io/bash)
cache:
directories:
- $HOME/.composer/cache
| sudo: false
language: php
php:
- 7.1
- 7.2
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
env:
matrix:
- PREFER_LOWEST="--prefer-lowest --prefer-stable"
- PREFER_LOWEST=""
before_script:
- travis_retry composer self-update
- travis_retry composer update $PREFER_LOWEST --no-interaction
script:
- make travis
after_success:
- then bash <(curl -s https://codecov.io/bash)
cache:
directories:
- $HOME/.composer/cache
|
Use the recommended preset from eslint-plugin-chai-expect | env:
mocha: true
plugins:
- chai-expect
- chai-friendly
- mocha
extends:
- plugin:chai-friendly/recommended
# Override from root `.eslintrc.yml`
rules:
# Disabling this rule in favor of mocha/prefer-arrow-callback
# https://github.com/lo1tuma/eslint-plugin-mocha/blob/master/docs/rules/prefer-arrow-callback.md
prefer-arrow-callback: off
## eslint-plugin-chai-expect
## https://github.com/Turbo87/eslint-plugin-chai-expect
chai-expect/no-inner-compare: error
chai-expect/missing-assertion: error
chai-expect/terminating-properties: error
## eslint-plugin-mocha
## https://github.com/lo1tuma/eslint-plugin-mocha
mocha/handle-done-callback: error
mocha/max-top-level-suites: error
mocha/no-exclusive-tests: error
mocha/no-global-tests: error
mocha/no-hooks: error
mocha/no-identical-title: error
mocha/no-mocha-arrows: error
mocha/no-nested-tests: error
mocha/no-pending-tests: error
mocha/no-return-and-callback: error
mocha/no-sibling-hooks: error
mocha/no-skipped-tests: error
mocha/prefer-arrow-callback: error
mocha/valid-suite-description: error
| env:
mocha: true
plugins:
- chai-friendly
- mocha
extends:
- plugin:chai-expect/recommended
- plugin:chai-friendly/recommended
# Override from root `.eslintrc.yml`
rules:
# Disabling this rule in favor of mocha/prefer-arrow-callback
# https://github.com/lo1tuma/eslint-plugin-mocha/blob/master/docs/rules/prefer-arrow-callback.md
prefer-arrow-callback: off
## eslint-plugin-mocha
## https://github.com/lo1tuma/eslint-plugin-mocha
mocha/handle-done-callback: error
mocha/max-top-level-suites: error
mocha/no-exclusive-tests: error
mocha/no-global-tests: error
mocha/no-hooks: error
mocha/no-identical-title: error
mocha/no-mocha-arrows: error
mocha/no-nested-tests: error
mocha/no-pending-tests: error
mocha/no-return-and-callback: error
mocha/no-sibling-hooks: error
mocha/no-skipped-tests: error
mocha/prefer-arrow-callback: error
mocha/valid-suite-description: error
|
Switch to release version of xctool to fix Travis build errors | language: objective-c
before_install:
- brew update
- brew uninstall xctool
- brew install xctool --HEAD
script:
- rake server:start test test:building_without_core_data
| language: objective-c
before_install:
- brew update
- brew uninstall xctool
- brew install xctool
script:
- rake server:start test test:building_without_core_data
|
Drop pypy and pypy3 support, as support was dropped by Django | language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.4"
- "3.5"
- "pypy"
- "pypy3"
env:
matrix:
- DJANGO="Django<1.9,>=1.8"
- DJANGO="Django<1.10,>=1.9"
- DJANGO="-e git+https://github.com/django/django.git@master#egg=Django"
matrix:
allow_failures:
- env: DJANGO="-e git+https://github.com/django/django.git@master#egg=Django"
install:
- pip install --upgrade pip
- pip install -r requirements-dev.txt
- pip install $DJANGO
script:
- flake8 --jobs=2 .
- py.test
| language: python
sudo: false
cache:
- pip
python:
- "2.7"
- "3.4"
- "3.5"
env:
matrix:
- DJANGO="Django<1.9,>=1.8"
- DJANGO="Django<1.10,>=1.9"
- DJANGO="-e git+https://github.com/django/django.git@master#egg=Django"
matrix:
allow_failures:
- env: DJANGO="-e git+https://github.com/django/django.git@master#egg=Django"
install:
- pip install --upgrade pip
- pip install -r requirements-dev.txt
- pip install $DJANGO
script:
- flake8 --jobs=2 .
- py.test
|
Test also srcdeps-maven on Travis CI | language: java
# Enable container-based infrastructure
# see http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2/repository
- $HOME/.m2/wrapper
script:
- ./mvnw -Prun-its clean install | language: java
# Enable container-based infrastructure
# see http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.m2/repository
- $HOME/.m2/wrapper
install:
- ./mvnw -version
# license plugin requires full git history
- git fetch --unshallow
script:
- ./mvnw clean install -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
# - cd $HOME/build/srcdeps
# - git clone https://github.com/ppalaga/srcdeps-maven.git
# - cd srcdeps-maven
# - git checkout -b 180603-hash
# - ./mvnw clean install -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
|
Add more recent Ruby to the build matrix | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
branches:
only:
- master
| rvm:
- 1.8.7
- 1.9.3
- 2.1.0
- jruby
branches:
only:
- master
|
Disable Chef 12 & Ruby 2.1 | language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.4
cache: bundler
env:
- CHEF_VERSION="~> 11.0"
- CHEF_VERSION="~> 12.0"
- CHEF_VERSION="~> 13.0"
matrix:
exclude:
- rvm: 2.0.0
env: CHEF_VERSION="~> 12.0"
- rvm: 2.0.0
env: CHEF_VERSION="~> 13.0"
- rvm: 2.1
env: CHEF_VERSION="~> 13.0"
- rvm: 2.2
env: CHEF_VERSION="~> 13.0"
sudo: false
| language: ruby
rvm:
- 2.0.0
- 2.1
- 2.2
- 2.3.4
cache: bundler
env:
- CHEF_VERSION="~> 11.0"
- CHEF_VERSION="~> 12.0"
- CHEF_VERSION="~> 13.0"
matrix:
exclude:
- rvm: 2.0.0
env: CHEF_VERSION="~> 12.0"
- rvm: 2.0.0
env: CHEF_VERSION="~> 13.0"
- rvm: 2.1
env: CHEF_VERSION="~> 12.0"
- rvm: 2.1
env: CHEF_VERSION="~> 13.0"
- rvm: 2.2
env: CHEF_VERSION="~> 13.0"
sudo: false
|
Update mono versions to build | language: csharp
sudo: false
mono:
- 4.8.1
- latest
os:
- linux
- osx
matrix:
exclude:
- os: osx
mono: latest
allow_failures:
- os: osx
- mono: latest
fast_finish: true
script:
- ./build.sh --target "Travis" | language: csharp
sudo: false
mono:
- 4.6.2 # in most common distros
- 4.2.1 # in Ubuntu LTS
- 5.0.1 # latest stable
os:
- linux
- osx
matrix:
exclude:
- os: osx
mono: 5.0.1
allow_failures:
- os: osx
- mono: 5.0.1
fast_finish: true
script:
- ./build.sh --target "Travis" |
Test on io.js 2.5.0 or later | sudo: false
cache:
directories:
- node_modules
git:
depth: 1
language: node_js
node_js:
- "0.12"
- "iojs-v2.4.0"
before_install:
- npm install -g grunt-cli
script: grunt travis
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/7a0fcab3f65f36d44ac5
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false | sudo: false
cache:
directories:
- node_modules
git:
depth: 1
language: node_js
node_js:
- "0.12"
- "iojs-v2.4.0"
- "iojs"
before_install:
- npm install -g grunt-cli
script: grunt travis
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/7a0fcab3f65f36d44ac5
on_success: always # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: false # default: false |
Fix MAF dependency pip install | sudo: required
dist: trusty
language: c++
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libhdf5-7 libhdf5-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install hdf5 || echo "a brew error code when installing gcc is expected"; fi
- git clone https://github.com/ComparativeGenomicsToolkit/sonLib.git
- pip install newick attrs pytest
install:
- sh -c 'cd sonLib && make'
script:
- export sonLibRootDir=`pwd`/sonLib
- make && PYTHONPATH=..:.:$PYTHONPATH PATH=./bin:$PATH make -k test
os:
- linux
- osx
env:
- CGL_DEBUG=1
- CGL_DEBUG=ultra ASAN_OPTIONS=detect_leaks=0
matrix:
exclude:
# The default OSX env doesn't have a version that supports
# -fsanitize=address.
- env: CGL_DEBUG=ultra ASAN_OPTIONS=detect_leaks=0
os: osx
| sudo: required
dist: trusty
language: c++
before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get -qq update; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo apt-get install -y libhdf5-7 libhdf5-dev; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install hdf5 || echo "a brew error code when installing gcc is expected"; fi
- git clone https://github.com/ComparativeGenomicsToolkit/sonLib.git
- sudo pip install newick attrs pytest
install:
- sh -c 'cd sonLib && make'
script:
- export sonLibRootDir=`pwd`/sonLib
- make && PYTHONPATH=..:.:$PYTHONPATH PATH=./bin:$PATH make -k test
os:
- linux
- osx
env:
- CGL_DEBUG=1
- CGL_DEBUG=ultra ASAN_OPTIONS=detect_leaks=0
matrix:
exclude:
# The default OSX env doesn't have a version that supports
# -fsanitize=address.
- env: CGL_DEBUG=ultra ASAN_OPTIONS=detect_leaks=0
os: osx
|
Allow build failures on Ruby 1.8 and head | language: ruby
rvm:
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
- rbx-head
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
notifications:
email:
- dendoh@gmail.com
| language: ruby
rvm:
- jruby-18mode
- jruby-19mode
- jruby-head
- rbx-18mode
- rbx-19mode
- rbx-head
- ree
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
matrix:
allow_failures:
- rvm: jruby-18mode
- rvm: rbx-18mode
- rvm: rbx-head
- rvm: ree
- rvm: 1.8.7
- rvm: ruby-head
notifications:
email:
- dendoh@gmail.com
|
Update Travis CI to Node 4.4 | language: node_js
node_js:
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
before_script:
- npm install -g grunt-cli
script: grunt test
after_script:
- codeclimate-test-reporter < coverage/lcov.info
addons:
code_climate:
repo_token: 55d134419444a71f8a409bfe7e0fe1c2cfcce91260612924a1fe731dfa577a0e
| language: node_js
node_js:
- "4.4"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
before_script:
- npm install -g grunt-cli
script: grunt test
after_script:
- codeclimate-test-reporter < coverage/lcov.info
addons:
code_climate:
repo_token: 55d134419444a71f8a409bfe7e0fe1c2cfcce91260612924a1fe731dfa577a0e
|
Update Meshenger to 2.1.0 (210) | Categories:
- Phone & SMS
- Connectivity
- Internet
License: GPL-3.0-only
WebSite: https://github.com/meshenger-app/meshenger-android
SourceCode: https://github.com/meshenger-app/meshenger-android
IssueTracker: https://github.com/meshenger-app/meshenger-android/issues
AutoName: Meshenger
RepoType: git
Repo: https://github.com/meshenger-app/meshenger-android
Builds:
- versionName: 1.0.0
versionCode: 1
commit: 28b55f7e69d92bbb6c8f34a64be7822cf48b1473
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 2
commit: 1.1.0
subdir: app
gradle:
- yes
- versionName: 2.0.0
versionCode: 200
commit: v2.0.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 2.0.0
CurrentVersionCode: 200
| Categories:
- Phone & SMS
- Connectivity
- Internet
License: GPL-3.0-only
WebSite: https://github.com/meshenger-app/meshenger-android
SourceCode: https://github.com/meshenger-app/meshenger-android
IssueTracker: https://github.com/meshenger-app/meshenger-android/issues
AutoName: Meshenger
RepoType: git
Repo: https://github.com/meshenger-app/meshenger-android
Builds:
- versionName: 1.0.0
versionCode: 1
commit: 28b55f7e69d92bbb6c8f34a64be7822cf48b1473
subdir: app
gradle:
- yes
- versionName: 1.1.0
versionCode: 2
commit: 1.1.0
subdir: app
gradle:
- yes
- versionName: 2.0.0
versionCode: 200
commit: v2.0.0
subdir: app
gradle:
- yes
- versionName: 2.1.0
versionCode: 210
commit: v2.1.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 2.1.0
CurrentVersionCode: 210
|
Remove zuul merger datadog monitor setup | - name: install zuul check
copy:
src: zuul_server.py
dest: "{{ datadog_file_dir }}/zuul_server.py"
notify: restart dd-agent
- name: monitor zuul merger count
datadog_monitor:
api_key: "{{ secrets.datadog.api_key }}"
app_key: "{{ secrets.datadog.ansible_app_key }}"
name: zuul merger count
state: present
type: "metric alert"
message: "no zuul mergers"
query: 'min(last_5m):avg:gearman.workers_by_task{host:zuul,task:merger:merge} < 1'
vars:
ansible_python_interpreter: /opt/datadog/bin/python
tags: ddapi
| - name: install zuul check
copy:
src: zuul_server.py
dest: "{{ datadog_file_dir }}/zuul_server.py"
notify: restart dd-agent
|
Add nightly Python to Travis | dist: xenial
language: python
python:
- "3.6"
- "3.7"
script:
- python setup.py build install
| dist: xenial # required for Python >= 3.7
language: python
python:
- "3.6"
- "3.7"
- "nightly"
script:
- python setup.py build install
|
Use Firefox 50.1.0 for Travis | sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="49.0.2"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "49.0.2" ]; then
wget -O tarball "https://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-release-linux64-add-on-devel/1476892163/firefox-49.0.2.en-US.linux-x86_64-add-on-devel.tar.bz2";
fi
- tar xf tarball
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- test/runtests.sh -x firefox/firefox
| sudo: false
language: cpp
compiler:
- gcc
env:
- FX_VERSION="50.1.0"
matrix:
fast_finish: true
#allow_failures:
# - env: FX_CHANNEL="beta"
notifications:
email: false
install:
- if [ $FX_VERSION = "50.1.0" ]; then
wget -O tarball "http://archive.mozilla.org/pub/firefox/tinderbox-builds/mozilla-release-linux64-add-on-devel/1481240107/firefox-50.1.0.en-US.linux-x86_64-add-on-devel.tar.bz2";
fi
- tar xf tarball
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- test/runtests.sh -x firefox/firefox
|
Set the LD_LIBRARY_PATH env var | language: rust
rust:
- stable
env:
global:
- LIBSODIUM_VERSION="1.0.16"
- SODIUM_LIB_DIR="$HOME/libsodium-$LIBSODIUM_VERSION/lib"
- SODIUM_INC_DIR="$HOME/libsodium-$LIBSODIUM_VERSION/include"
install:
- ./.travis/install-libsodium.sh
cache:
cargo: true
apt: true
directories:
- $HOME/libsodium-$LIBSODIUM_VERSION
| language: rust
rust:
- stable
env:
global:
- LIBSODIUM_VERSION="1.0.16"
- SODIUM_LIB_DIR="$HOME/libsodium-$LIBSODIUM_VERSION/lib"
- SODIUM_INC_DIR="$HOME/libsodium-$LIBSODIUM_VERSION/include"
- LD_LIBRARY_PATH="$SODIUM_LIB_DIR:$LD_LIBRARY_PATH"
install:
- ./.travis/install-libsodium.sh
cache:
cargo: true
apt: true
directories:
- $HOME/libsodium-$LIBSODIUM_VERSION
|
Test on Nod.js 12 and teh ios, plz | language: node_js
node_js:
- "0.10"
| language: node_js
node_js:
- "0.10"
- "0.12"
- iojs
|
Add ruby-2.1.3 to rvm versions | language: ruby
rvm:
- 1.9.3
- 2.0.0
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.3
|
Switch to macOS for the builds | ---
language: node_js
node_js:
- '6'
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-5
- g++-5
cache:
directories:
- node_modules
before_script:
- sh -e /etc/init.d/xvfb start
- sleep 5
script:
- make compile
- make lint
- make test
env:
global:
- DISPLAY=99.0
- CXX=g++-5
| ---
os:
- osx
language: node_js
node_js:
- '6'
cache:
directories:
- node_modules
script:
- make compile
- make lint
- make test
|
Send the test server to the bg | language: node_js
node_js:
- 0.10
env:
matrix:
- BROWSER=chrome BVER=stable
- BROWSER=chrome BVER=beta
- BROWSER=chrome BVER=unstable
# - BROWSER=firefox BVER=stable
# - BROWSER=firefox BVER=beta
# - BROWSER=firefox BVER=aurora
before_script:
node test/server.js
before_install:
- mkdir -p .travis
- curl -s https://codeload.github.com/rtc-io/webrtc-testing-on-travis/tar.gz/master | tar -xz --strip-components=1 --directory .travis
- ./.travis/setup.sh
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_failure:
- for file in *.log; do echo $file; echo "======================"; cat $file; done || true
notifications:
email:
- damon.oehlman@nicta.com.au
irc: irc.freenode.org#rtc.io
| language: node_js
node_js:
- 0.10
env:
matrix:
- BROWSER=chrome BVER=stable
- BROWSER=chrome BVER=beta
- BROWSER=chrome BVER=unstable
# - BROWSER=firefox BVER=stable
# - BROWSER=firefox BVER=beta
# - BROWSER=firefox BVER=aurora
before_script:
- node test/server.js &
before_install:
- mkdir -p .travis
- curl -s https://codeload.github.com/rtc-io/webrtc-testing-on-travis/tar.gz/master | tar -xz --strip-components=1 --directory .travis
- ./.travis/setup.sh
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
after_failure:
- for file in *.log; do echo $file; echo "======================"; cat $file; done || true
notifications:
email:
- damon.oehlman@nicta.com.au
irc: irc.freenode.org#rtc.io
|
Call different mvn goals upon builds | language: java
sudo: false
cache:
directories:
- $HOME/.m2
jdk:
- openjdk7
| language: java
sudo: false
cache:
directories:
- $HOME/.m2
jdk:
- openjdk7
install: mvn clean install -DskipTests=true -q
# Run unit and integration tests
script: mvn verify -B -q
|
Change Node version from 0.11 to .0.12 in Travis | language: node_js
node_js:
- "0.11"
- "0.10"
script: make test
| language: node_js
node_js:
- "0.12"
- "0.10"
script: make test
|
Move to condaci 0.2.1, quieter CI notifications | env:
global:
- BINSTAR_USER: menpo
- PYTHON_VERSION: 2.7
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
script:
- python condaci.py auto ./conda --binstarchannel main --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
- PYTHON_VERSION: 2.7
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
script:
- python condaci.py auto ./conda --binstarchannel main --binstaruser $BINSTAR_USER --binstarkey $BINSTAR_KEY
notifications:
slack:
rooms:
- menpo:19gyWImMkOfCj0iDAgTbDlDA
on_success: :change
on_failure: :change
email: false
|
Add pwd to the log chmod | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer install -n
- chmod 0777 tests/_log -R
script: "`pwd`/bin/codecept run -c `pwd`/codeception.yml" | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- composer install -n
- "chmod 0777 `pwd`/tests/_log -R"
script: "`pwd`/bin/codecept run -c `pwd`/codeception.yml" |
Drop support for deprecated rubies (1.8.7, ree, etc) | # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
language: "ruby"
script: "bundle exec rake"
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx-18mode
- rbx-19mode
- ree
| # https://github.com/travis-ci/travis-ci/wiki/.travis.yml-options
language: "ruby"
script: "bundle exec rake"
rvm:
- 1.9.2
- 1.9.3
- jruby-19mode
- rbx
|
Install Istanbul and Proof at Travis CI. | sudo: false
language: node_js
node_js:
- '12'
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:
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
|
Remove php 5.5 from allowed Travis build failures | language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
before_install:
- composer self-update --no-interaction --ansi
- composer config notify-on-install false
install:
- composer install --dev --no-progress --no-interaction --ansi --prefer-source
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist
after_script:
- vendor/bin/coveralls --verbose --no-interaction --ansi
| language: php
php:
- 5.3
- 5.4
- 5.5
before_install:
- composer self-update --no-interaction --ansi
- composer config notify-on-install false
install:
- composer install --dev --no-progress --no-interaction --ansi --prefer-source
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist
after_script:
- vendor/bin/coveralls --verbose --no-interaction --ansi
|
Make Travis test only with the current LTS versions of node | sudo: false
branches:
only:
- master
language: node_js
cache:
directories:
- node_modules
node_js:
- "7"
- "8"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run test | sudo: false
branches:
only:
- master
language: node_js
cache:
directories:
- node_modules
node_js:
- "10"
- "12"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run test |
Test against JRuby in both Ruby 1.8 and 1.9 mode | rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- rbx
- ree
| rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby-18mode
- jruby-19mode
- rbx
- ree
|
Remove ruby 1.9.3 from Travis CI build | language: ruby
rvm:
- 2.1.1
- 2.0.0
- 1.9.3
script: bundle exec rake
addons:
code_climate:
repo_token: fb989d7074228d42d517d6eaae724e7d4ce1a0c5e7cd3ba38e7433fa63c646eb | language: ruby
rvm:
- 2.1.1
- 2.0.0
script: bundle exec rake
addons:
code_climate:
repo_token: fb989d7074228d42d517d6eaae724e7d4ce1a0c5e7cd3ba38e7433fa63c646eb
|
Fix Travis by installing GhostScript. | language: perl
install: ""
script: make -j `nproc` && make test && make release
sudo: false
env:
global:
secure: jK5oSckHD3h+gKlkzB81TGdFmhO78HiUKk/BCV5PMWVeEwJfS+FeA8Sxj52atnE5BP8pIIWt50uxhZZ0WM3QmXZeo7LCBm5YWj+EHFIf/N157YOV710B7biyesydPvSScHFdwapgv8b7TlyBPn24Gm6bW+daynVE03BgRYK4Klc=
after_success: travis-github-release/github-release.sh "$TRAVIS_REPO_SLUG" "`head -1 CHANGES`" build/release/*
| language: perl
install: ""
script: make -j `nproc` && make test && make release
sudo: false
addons:
apt:
packages: ghostscript
env:
global:
secure: jK5oSckHD3h+gKlkzB81TGdFmhO78HiUKk/BCV5PMWVeEwJfS+FeA8Sxj52atnE5BP8pIIWt50uxhZZ0WM3QmXZeo7LCBm5YWj+EHFIf/N157YOV710B7biyesydPvSScHFdwapgv8b7TlyBPn24Gm6bW+daynVE03BgRYK4Klc=
after_success: travis-github-release/github-release.sh "$TRAVIS_REPO_SLUG" "`head -1 CHANGES`" build/release/*
|
Fix TravisCI to apt-get protoc behind the scenes so the build can continue | language: java
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
# Allow running on a container instead of a traditional VM
sudo: false
# show the logging of tests, and there's no need to run the daemon on a single-use container
script: ./gradlew check -iS --no-daemon
| language: groovy
addons:
apt:
packages:
- protobuf-compiler
jdk:
- oraclejdk7
- oraclejdk8
- openjdk7
# Allow running on a container instead of a traditional VM
sudo: false
# show the logging of tests, and there's no need to run the daemon on a single-use container
script: ./gradlew check -iS --no-daemon
|
Configure Travis for Firefox required by tests | language: ruby
rvm:
- 2.3.1
script:
- bundle exec rake db:migrate --trace
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- bundle exec rspec -fd spec/
| language: ruby
rvm:
- 2.3.1
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- sleep 3 # give xvfb some time to start
script:
- bundle exec rake db:migrate --trace
- RAILS_ENV=test bundle exec rake db:migrate --trace
- bundle exec rake db:test:prepare
- bundle exec rspec -fd spec/
|
Add dependency to TravisCI for ruby-magic. | language: ruby
rvm:
- 2.2
services:
- postgresql
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
script:
- bundle exec rake spec
- bundle exec rake cucumber
| language: ruby
rvm:
- 2.2
addons:
apt_packages:
- libmagic-dev
services:
- postgresql
before_script:
- cp config/database.yml.travis config/database.yml
- psql -c 'create database travis_ci_test;' -U postgres
script:
- bundle exec rake spec
- bundle exec rake cucumber
|
Test Node 9 instead of 7 on Travis | language: node_js
node_js:
- 8
- 7
- 6
- 4
before_install:
- yarn config set no-progress
- yarn global add greenkeeper-lockfile@1
install:
- yarn
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
notifications:
email: true
after_success: npm run coverage
| language: node_js
node_js:
- 9
- 8
- 6
- 4
before_install:
- yarn config set no-progress
- yarn global add greenkeeper-lockfile@1
install:
- yarn
before_script: greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload
notifications:
email: true
after_success: npm run coverage
|
Update golang version in CI | language: go
sudo: false
go:
- 1.4.3
- 1.5.1
- tip
install:
- go get github.com/golang/lint/golint
script:
- test -z "$(golint ./... | tee /dev/stderr)"
- go test -v ./...
- go test -v -bench .
matrix:
allow_failures:
- go: tip
| language: go
sudo: false
go:
- 1.5
- 1.5.1
- 1.5.2
- 1.5.3
- 1.6
- tip
install:
- go get github.com/golang/lint/golint
script:
- test -z "$(golint ./... | tee /dev/stderr)"
- go test -v ./...
- go test -v -bench .
matrix:
allow_failures:
- go: tip
|
Test python versions upto 3.8 | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
install:
- pip install .
script:
- python setup.py test | language: python
python:
- "2.7"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- pip install .
script:
- python setup.py test |
Test on 1.13 and kill sshd after tests | language: rust
cache: cargo
rust:
- nightly
- beta
- 1.10.0
before_script:
- ssh-keygen -t rsa -b 2048 -N "" -f ~/.ssh/id_rsa
- cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys
- ssh -oStrictHostKeyChecking=no -Nf -D 127.0.0.1:8080 localhost
script:
- cargo test
| language: rust
cache: cargo
rust:
- nightly
- 1.13.0
before_script:
- ssh-keygen -t rsa -b 2048 -N "" -f ~/.ssh/id_rsa
- cp ~/.ssh/id_rsa.pub ~/.ssh/authorized_keys
- ssh -oStrictHostKeyChecking=no -Nf -D 127.0.0.1:8080 localhost
script:
- cargo test
after_script:
- killall sshd
|
Use Rubygems 1.8.25 for now... | before_install: gem update --system 2.0.2
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
script: bundle exec rspec --color --format documentation
| before_install: gem update --system 1.8.25
rvm:
- 2.0.0
- 1.9.3
- 1.9.2
- 1.8.7
- ree
script: bundle exec rspec --color --format documentation
|
Change Travis config to build on Linux/OSX | language: cpp
compiler:
- clang
- gcc
env:
- DEFINES=standard
- DEFINES=PUGIXML_WCHAR_MODE
script: make test defines=$DEFINES -j2
| language: cpp
os:
- linux
- osx
env:
- DEFINES=standard
- DEFINES=PUGIXML_WCHAR_MODE
script: make test defines=$DEFINES -j2
|
Fix OSX build on Travis. | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.1
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
script:
- ./build.sh --quiet verify | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
mono:
- 4.0.5
os:
- linux
- osx
osx_image: xcode7.1
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == "osx"; then brew update; brew install openssl; brew link --force openssl; fi
script:
- ./build.sh --quiet verify |
Remove support for Ruby 1.9.2 | before_install: gem install bundler -v 1.2.3
rvm:
- 1.9.3
- 1.9.2
- 1.8.7
- jruby
# whitelist
branches:
only:
- master
notifications:
email:
- cukes-devs@googlegroups.com
irc:
- "irc.freenode.org#cucumber"
| before_install: gem install bundler -v 1.2.3
rvm:
- 1.9.3
- 1.8.7
- jruby
# whitelist
branches:
only:
- master
notifications:
email:
- cukes-devs@googlegroups.com
irc:
- "irc.freenode.org#cucumber"
|
Hide Travis notification email from forks | # Doc: http://manuel.manuelles.nl/blog/2012/06/22/integrate-travis-ci-into-grunt/
sudo: false
language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
notifications:
email:
recipients:
- developer@onsip.com
on_success: change
on_failure: always
| # Doc: http://manuel.manuelles.nl/blog/2012/06/22/integrate-travis-ci-into-grunt/
sudo: false
language: node_js
node_js:
- "0.10"
cache:
directories:
- node_modules
notifications:
email:
recipients:
secure: fe88XKh8U+bt2eSkZFKPG//d1i/pYEcG9WqXGRwRd1YzrhM9DVOUPXN5xhNADgfBK0PNZUEga+UMlAcrtt6PgBDZQhQsGWDb720wGLA4UoyerFInYeqb8Pue9V1FJnniys5APwxHAreYONDBRwerKx3OZ0Jz64vHyG1XNaBzlqU=
on_success: change
on_failure: always
|
Exclude LICENSE.txt from the build |
# SEO settings
title: "Markdown Guide"
description: "A concise introduction to Markdown designed for novice and intermediate users."
keywords: "Markdown, Markdown language, Markdown syntax, Markdown guide, Markdown cheatsheet, Markdown help, Markdown tutorial"
url: https://markdownguide.org # site url
baseurl: "" # apply repo name if use it under gh-pages branch
# baseurl: null # apply null if repo name is something like username.github.io
repo: http://github.com/mattcone/markdown-guide
comments: false
# Build settings
permalink : /:year/:title/
markdown : kramdown
highlighter : rouge
source: ./
destination: ./_site
# Sass configuration
sass:
sass_dir: assets/scss
style: compressed # expanded
# Author settings
author:
name : "Matt Cone"
# social settings
og_locale: "en_US"
gems:
- bourbon
kramdown:
auto_ids: true
toc_levels: 1..3
# navbar pages
navbar:
- slug : about
title: About
exclude: ["gulp", "node_modules", "bower", "bower_components", "config.rb", "src", "Gemfile", "Gemfile.lock", ".rvmrc", ".rbenv-version", "package.json", "gulpfile.js", "README.md", "Rakefile", "changelog.md"]
|
# SEO settings
title: "Markdown Guide"
description: "A concise introduction to Markdown designed for novice and intermediate users."
keywords: "Markdown, Markdown language, Markdown syntax, Markdown guide, Markdown cheatsheet, Markdown help, Markdown tutorial"
url: https://markdownguide.org # site url
baseurl: "" # apply repo name if use it under gh-pages branch
# baseurl: null # apply null if repo name is something like username.github.io
repo: http://github.com/mattcone/markdown-guide
comments: false
# Build settings
permalink : /:year/:title/
markdown : kramdown
highlighter : rouge
source: ./
destination: ./_site
# Sass configuration
sass:
sass_dir: assets/scss
style: compressed # expanded
# Author settings
author:
name : "Matt Cone"
# social settings
og_locale: "en_US"
gems:
- bourbon
kramdown:
auto_ids: true
toc_levels: 1..3
# navbar pages
navbar:
- slug : about
title: About
exclude: ["gulp", "node_modules", "bower", "bower_components", "config.rb", "src", "Gemfile", "Gemfile.lock", ".rvmrc", ".rbenv-version", "package.json", "gulpfile.js", "README.md", "LICENSE.txt", "Rakefile", "changelog.md"]
|
Make release URLs pretty - it is impossible to make the URLs match the old site 100%. |
# Site settings
title: Apache Guacamole
# Build settings
markdown: kramdown
# Custom collections
collections:
# All Apache Guacamole releases
releases:
output: true
permalink: /release/release-notes-:title
# Pseudo-pages describing direct links to other pages (possibly external)
links:
output: false
# Site-wide defaults
defaults:
# All releases should use the "release" layout
- scope: { type: releases }
values: { layout: release }
|
# Site settings
title: Apache Guacamole
# Build settings
markdown: kramdown
# Custom collections
collections:
# All Apache Guacamole releases
releases:
output: true
permalink: /releases/:title/
# Pseudo-pages describing direct links to other pages (possibly external)
links:
output: false
# Site-wide defaults
defaults:
# All releases should use the "release" layout
- scope: { type: releases }
values: { layout: release }
|
Update from Hackage at 2020-07-08T21:37:51Z | homepage: ''
changelog-type: markdown
hash: 955dd661c455fcdee191d640fb23b8fad60d7accd2af2f349e3119505945364b
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Curated list of CDN imports for lucid.
changelog: |
# Changelog for lucid-cdn
## (v0.1.0.0)
* Add bootstrap CSS and JS v.4.5.0.
* Add bootstrap CSS and JS v5.0.0-alpha1.
* Add fontawesome v4.7.0
* Add jquery v3.5.1
* Add mathjax v3.0.5
* Add popper v2.4.4
basic-deps:
lucid: -any
base: '>=4.7 && <5'
all-versions:
- 0.1.0.0
- 0.1.0.1
author: Daniel Firth
latest: 0.1.0.1
description-type: markdown
description: |
# Lucid CDN
Curated collection of CDN scripts and stylesheets with integrity shas for use
with [lucid](https://hackage.haskell.org/package/lucid). Please open a PR if
you'd like to add or update anything.
license-name: BSD-3-Clause
| homepage: ''
changelog-type: markdown
hash: 9a43ddebf5bd020f8f7065345d659d7fb91ddd39b8fffc3ad92884fb7b36249f
test-bench-deps: {}
maintainer: dan.firth@homotopic.tech
synopsis: Curated list of CDN imports for lucid.
changelog: |
# Changelog for lucid-cdn
## (v0.1.0.0)
* Add bootstrap CSS and JS v.4.5.0.
* Add bootstrap CSS and JS v5.0.0-alpha1.
* Add fontawesome v4.7.0
* Add jquery v3.5.1
* Add mathjax v3.0.5
* Add popper v2.4.4
basic-deps:
lucid: -any
base: '>=4.7 && <5'
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.1.0
author: Daniel Firth
latest: 0.1.1.0
description-type: markdown
description: |
# Lucid CDN
Curated collection of CDN scripts and stylesheets with integrity shas for use
with [lucid](https://hackage.haskell.org/package/lucid). Please open a PR if
you'd like to add or update anything.
license-name: MIT
|
Update for the new Travis containers | # Travis CI configuration file
language: c
script: make check
compiler:
- clang
- gcc
| # Travis CI configuration file
sudo: false
language: c
script: make check
compiler:
- clang
- gcc
os:
- linux
- osx
|
Make coverity run only on coverity_check branch | language: c
script: make
compiler:
- clang
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libusb-1.0-0-dev
env:
global:
- secure: CtAND8k/8Lfs6o4dmrD9Jp4yLjLQRrv5TZA1MkhSO/LRfViKlbzy7ENv1/ku0xgtnsegFRDFY75/dLHxZUiax5TGNVrHqpkkGSE9h2a5YYHxbOtINb8Hdzk+S2/EN9YPmrOEX1ZjMg/wH08c3MntdW6gDUuddQhjCuaNnH+8fUc=
- secure: foN6qnWGy6p47PEutfZtUYUcg3DVHtuY3hfODDLDjc3TF7w7W9p/Mf/w4u++rkLuoKu/hESoiyj7/bSePx98EJgXsDprS/JkT8KKCaSsyViaIizrnF4YTQac/FC+A+7BUdg6xil0FI1xMipHQ/Z+nSwMT2ueeRThApNgufz66qw=
addons:
coverity_scan:
project:
name: daniel-dressler/ippusbxd
description: IPP over USB daemon driver for linux
notification_email: danieru.dressler@gmail.com
build_command_prepend:
build_command: make
branch_pattern: master
| language: c
script: make
compiler:
- clang
- gcc
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y libusb-1.0-0-dev
env:
global:
- secure: CtAND8k/8Lfs6o4dmrD9Jp4yLjLQRrv5TZA1MkhSO/LRfViKlbzy7ENv1/ku0xgtnsegFRDFY75/dLHxZUiax5TGNVrHqpkkGSE9h2a5YYHxbOtINb8Hdzk+S2/EN9YPmrOEX1ZjMg/wH08c3MntdW6gDUuddQhjCuaNnH+8fUc=
- secure: foN6qnWGy6p47PEutfZtUYUcg3DVHtuY3hfODDLDjc3TF7w7W9p/Mf/w4u++rkLuoKu/hESoiyj7/bSePx98EJgXsDprS/JkT8KKCaSsyViaIizrnF4YTQac/FC+A+7BUdg6xil0FI1xMipHQ/Z+nSwMT2ueeRThApNgufz66qw=
addons:
coverity_scan:
project:
name: daniel-dressler/ippusbxd
description: IPP over USB daemon driver for linux
notification_email: danieru.dressler@gmail.com
build_command_prepend:
build_command: make
branch_pattern: coverity_check
|
Simplify Travis configuration, add retry for pip | language: python
python: 2.7
env:
- TOX_ENV=py27
- TOX_ENV=py34
install:
- pip install -e '.[develop]'
script:
- tox -e $TOX_ENV
| language: python
env:
- TOXENV=py27
- TOXENV=py34
install:
- travis_retry pip install -e '.[develop]'
script:
- tox
|
Enable Gradle build scan on Travis | language: java
jdk:
- oraclejdk8
script:
- ./gradlew build -s
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
| language: java
jdk:
- oraclejdk8
script:
- ./gradlew build -s --scan
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
|
Fix Travis to use coverage | language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
install:
- make deps
- make deps-test
script:
- make test
after_success:
- coveralls
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "pypy"
- "pypy3"
install:
- make deps
- make deps-test
script:
- coverage run --source=yarg runtest.py
after_success:
- coveralls
|
Add support for PHP 7.4 | language: php
php:
- 7.2
- 7.3
cache:
directories:
- ~/.composer/cache/files
before_install:
- phpenv config-rm xdebug.ini || true
install:
- composer update
script:
- composer validate --strict
- composer analyse
- composer test
| language: php
php:
- 7.2
- 7.3
- 7.4
cache:
directories:
- ~/.composer/cache/files
before_install:
- phpenv config-rm xdebug.ini || true
install:
- composer update
script:
- composer validate --strict
- composer analyse
- composer test
|
Disable doc test until Travis provides appledoc | ---
language: objective-c
before_script:
- sudo easy_install cpp-coveralls
script:
- xctool -project genstrings2.xcodeproj -scheme "Static Library" test -arch x86_64 ONLY_ACTIVE_ARCH=NO
- appledoc -o /tmp .
after_success:
- ./coveralls.rb --extension m --exclude-folder Demo --exclude-folder Test --exclude-folder Externals
| ---
language: objective-c
before_script:
- sudo easy_install cpp-coveralls
script:
- xctool -project genstrings2.xcodeproj -scheme "Static Library" test -arch x86_64 ONLY_ACTIVE_ARCH=NO
# - appledoc -o /tmp .
after_success:
- ./coveralls.rb --extension m --exclude-folder Demo --exclude-folder Test --exclude-folder Externals
|
Use build matrix to do OSX. | language: python
os:
- linux
- osx
python:
- "2.7"
- "3.5"
sudo: required
install:
- source install_conda.sh
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda install conda-build anaconda-client
- conda config --add channels matsci
- conda config --set anaconda_upload yes
- pip install pip --upgrade
- pip install -q -r requirements.txt --upgrade
before_script:
- anaconda login --username $ANACONDA_USER --password $ANACONDA_PASSWORD
script: invoke build_all --nopy27
notifications:
email:
recipients:
- shyuep@gmail.com
on_success: always
on_failure: always
| language: python
matrix:
include:
- os: linux
sudo: required
python: 2.7
env: TOXENV=py27
- os: linux
sudo: required
python: 3.5
env: TOXENV=py35
- os: osx
language: generic
env: TOXENV=py27
- os: osx
language: generic
env: TOXENV=py35
install:
- source install_conda.sh
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda install conda-build anaconda-client
- conda config --add channels matsci
- conda config --set anaconda_upload yes
- pip install pip --upgrade
- pip install -q -r requirements.txt --upgrade
before_script:
- anaconda login --username $ANACONDA_USER --password $ANACONDA_PASSWORD
script: invoke build_all --nopy27
notifications:
email:
recipients:
- shyuep@gmail.com
on_success: always
on_failure: always
|
Stop trying to uninstall xquartz | language: objective-c
osx_image: xcode7.3
rvm: system
install:
# Travis comes with Postgres 9.4 data, so we much clear it out
- rm -rf /usr/local/var/postgres
# We are testing installation of homebrew, so should uninstall everything
- brew cask list | xargs -t -I % brew cask zap %
- brew list | xargs -t -I % brew uninstall --force %
- ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
- rvm implode --force # We are testing installation of Rubies, so should uninstall everything
- sudo rm -rf /Users/travis/.vim # Gets in the way of sprout-vim::config recipe
script:
- ./sprout exec rake ci
| language: objective-c
osx_image: xcode7.3
rvm: system
install:
# Travis comes with Postgres 9.4 data, so we much clear it out
- rm -rf /usr/local/var/postgres
# We are testing installation of homebrew, so should uninstall everything (except xquartz)
- brew cask list | grep -v xquartz | xargs -t -I % brew cask zap %
- brew list | xargs -t -I % brew uninstall --force %
- ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/uninstall)"
- rvm implode --force # We are testing installation of Rubies, so should uninstall everything
- sudo rm -rf /Users/travis/.vim # Gets in the way of sprout-vim::config recipe
script:
- ./sprout exec rake ci
|
Remove HHVM and PHP 5.6 from Travis configuration | sudo: false
language: php
dist: trusty
matrix:
include:
- php: 5.6
- php: 7.0
- php: 7.1
env: ANALYSIS='true'
- php: hhvm
- php: 5.6
env: COMPOSER_ARGS='--prefer-lowest'
- php: nightly
allow_failures:
- php: nightly
before_script:
- composer update $COMPOSER_ARGS
script:
- if [[ "$ANALYSIS" != 'true' ]]; then vendor/bin/phpunit ; fi
- if [[ "$ANALYSIS" == 'true' ]]; then vendor/bin/phpunit --coverage-clover clover.xml ; fi
- if [[ "$ANALYSIS" == 'true' ]]; then vendor/bin/phpcs ; fi
after_script:
- if [[ "$ANALYSIS" == 'true' ]]; then php vendor/bin/coveralls --coverage_clover=clover.xml -v ; fi
notifications:
slack: slimphp:0RNzx2JuhkAqIf0MXcUZ0asT
| sudo: false
language: php
dist: trusty
matrix:
include:
- php: 7.0
- php: 7.1
env: ANALYSIS='true'
- php: nightly
allow_failures:
- php: nightly
before_script:
- composer update $COMPOSER_ARGS
script:
- if [[ "$ANALYSIS" != 'true' ]]; then vendor/bin/phpunit ; fi
- if [[ "$ANALYSIS" == 'true' ]]; then vendor/bin/phpunit --coverage-clover clover.xml ; fi
- if [[ "$ANALYSIS" == 'true' ]]; then vendor/bin/phpcs ; fi
after_script:
- if [[ "$ANALYSIS" == 'true' ]]; then php vendor/bin/coveralls --coverage_clover=clover.xml -v ; fi
notifications:
slack: slimphp:0RNzx2JuhkAqIf0MXcUZ0asT
|
Set JOBS=2 (best build time) | language: cpp
matrix:
include:
- compiler: clang
env: CXX_SCONS="-Qunused-arguments -fcolor-diagnostics" WARNING_CXXFLAGS="-Wno-unused-function -Wno-uninitialized -Wno-array-bounds -Wno-parentheses -Wno-char-subscripts -Wno-internal-linkage-in-inline"
before_install:
- echo 'yes' | sudo add-apt-repository ppa:mapnik/boost
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-dev libboost-filesystem-dev libboost-program-options-dev libboost-python-dev libboost-regex-dev libboost-system-dev libboost-thread-dev python-nose libicu-dev libpng-dev libjpeg-dev libtiff-dev libz-dev libfreetype6-dev libxml2-dev libproj-dev libpq-dev libgdal-dev libcairomm-1.0-dev python-cairo-dev libsqlite3-dev
script: scons configure JOBS=4 FAST=True CXX="$CXX $CXX_SCONS" WARNING_CXXFLAGS=$WARNING_CXXFLAGS && sudo make install && make test
| language: cpp
matrix:
include:
- compiler: clang
env: CXX_SCONS="-Qunused-arguments -fcolor-diagnostics" WARNING_CXXFLAGS="-Wno-unused-function -Wno-uninitialized -Wno-array-bounds -Wno-parentheses -Wno-char-subscripts -Wno-internal-linkage-in-inline"
before_install:
- echo 'yes' | sudo add-apt-repository ppa:mapnik/boost
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-dev libboost-filesystem-dev libboost-program-options-dev libboost-python-dev libboost-regex-dev libboost-system-dev libboost-thread-dev python-nose libicu-dev libpng-dev libjpeg-dev libtiff-dev libz-dev libfreetype6-dev libxml2-dev libproj-dev libpq-dev libgdal-dev libcairomm-1.0-dev python-cairo-dev libsqlite3-dev
script: scons configure JOBS=2 FAST=True CXX="$CXX $CXX_SCONS" WARNING_CXXFLAGS=$WARNING_CXXFLAGS && sudo make install && make test
|
Enable node 0.6 on Travis CI. | language: "node_js"
node_js:
- "0.10"
- "0.8"
# - "0.6"
# - "0.4"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
| language: "node_js"
node_js:
- "0.10"
- "0.8"
- "0.6"
before_install:
- "npm install istanbul -g"
- "npm install coveralls -g"
script: "make ci-travis"
after_success:
- "make submit-cov-to-coveralls"
|
Test with latest Ruby version | language: ruby
cache: bundler
sudo: false
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
after_success:
- bundle exec codeclimate-test-reporter
| language: ruby
cache: bundler
sudo: false
rvm:
- 2.4.1
- 2.3.3
- 2.2.6
after_success:
- bundle exec codeclimate-test-reporter
|
Test against Python 3.4 on Travis | language: python
python: 2.7
env:
- TOX_ENV=pypy
- TOX_ENV=py33
- TOX_ENV=py27
- TOX_ENV=py26
- TOX_ENV=flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
| language: python
python: 2.7
env:
- TOX_ENV=pypy
- TOX_ENV=py34
- TOX_ENV=py33
- TOX_ENV=py27
- TOX_ENV=py26
- TOX_ENV=flake8
install:
- pip install tox
script:
- tox -e $TOX_ENV
|
Simplify CI matrix (think about the environment) | language: elixir
elixir:
- 1.6
- 1.7
- 1.8
- 1.9
otp_release:
- 19.3
- 20.3
- 21.0
- 22.0
matrix:
exclude:
- elixir: 1.6
otp_release: 21.0
- elixir: 1.6
otp_release: 22.0
- elixir: 1.7
otp_release: 19.3
- elixir: 1.7
otp_release: 20.3
- elixir: 1.8
otp_release: 19.3
- elixir: 1.8
otp_release: 20.3
- elixir: 1.9
otp_release: 19.3
- elixir: 1.9
otp_release: 20.3
sudo: false
env:
global:
- ELIXIR_ASSERT_TIMEOUT=2000
matrix:
- COWBOY_VERSION=1.0
- COWBOY_VERSION=2.0
before_script:
- mix deps.get
- nvm install 6.2 && nvm use 6.2
script:
- mix test
- cd installer && elixir -S mix test
- cd ../assets && npm install && npm test
after_script:
- cd $TRAVIS_BUILD_DIR
- MIX_ENV=docs mix inch.report
cache:
directories:
- assets/node_modules
| language: elixir
matrix:
include:
- elixir: 1.6
otp_release: 19.3
- elixir: 1.7
otp_release: 21.0
- elixir: 1.8
otp_release: 21.0
- elixir: 1.9
otp_release: 22.0
sudo: false
env:
global:
- ELIXIR_ASSERT_TIMEOUT=2000
matrix:
- COWBOY_VERSION=1.0
- COWBOY_VERSION=2.0
before_script:
- mix deps.get
- nvm install 6.2 && nvm use 6.2
script:
- mix test
- cd installer && elixir -S mix test
- cd ../assets && npm install && npm test
after_script:
- cd $TRAVIS_BUILD_DIR
- MIX_ENV=docs mix inch.report
cache:
directories:
- assets/node_modules
|
Make build steps explicit and include docs | language: rust
env:
global:
- secure: M4HTVbFfu9zsmkOJwW7o01lNZmVDaAbfIqHRAp9bFvPoDZCsjEZclAqGAq+l3TYCKqyuWjYI5qRn/h6YScI69/Kd0ocGktKlqzf36GnsMweUNRYWii8iTNDW6Bf/aKFfn/WYWPX7T9gVMpHLJ4jWxQL90xg7pmceeTsgoMfIqMo=
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
| language: rust
env:
global:
- secure: M4HTVbFfu9zsmkOJwW7o01lNZmVDaAbfIqHRAp9bFvPoDZCsjEZclAqGAq+l3TYCKqyuWjYI5qRn/h6YScI69/Kd0ocGktKlqzf36GnsMweUNRYWii8iTNDW6Bf/aKFfn/WYWPX7T9gVMpHLJ4jWxQL90xg7pmceeTsgoMfIqMo=
script:
- rustc --version
- cargo --version
- cargo build --verbose
- cargo test --verbose
- cargo bench --verbose
- cargo doc --verbose
after_script:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
|
Use xenial for all builds | language: python
cache: pip
install: travis_retry pip install -U tox
script: tox
jobs:
fast_finish: true
include:
- { python: '3.6', env: TOXENV=lint }
- { python: '2.7', env: TOXENV=py27 }
- { python: '3.5', env: TOXENV=py35 }
- { python: '3.6', env: TOXENV=py36 }
- { python: '3.7', env: TOXENV=py37, dist: xenial }
- stage: PyPI Release
if: tag IS present
python: "3.6"
env: []
install: skip
script: skip
deploy:
provider: pypi
user: sloria
on:
tags: true
distributions: sdist bdist_wheel
password:
secure: D0c2PYyI06+N5/inLaPHkEaM/GVgKVPCBDm2asmQvCTs14ory9KK17cnS+tOmrTNyMzw2tYSvD1Ar5a7MQAfcJ+p2bOnr/UCLqzt98H2LlE/2NJdzQtI3FtNCkhRVx20LK85G8ZWaHCecGIkgGmbIDZ56u1Aj+G16z0PqEz5i7s=
| language: python
dist: xenial
cache: pip
install: travis_retry pip install -U tox
script: tox
jobs:
fast_finish: true
include:
- { python: '3.6', env: TOXENV=lint }
- { python: '2.7', env: TOXENV=py27 }
- { python: '3.5', env: TOXENV=py35 }
- { python: '3.6', env: TOXENV=py36 }
- { python: '3.7', env: TOXENV=py37 }
- stage: PyPI Release
if: tag IS present
python: "3.6"
env: []
install: skip
script: skip
deploy:
provider: pypi
user: sloria
on:
tags: true
distributions: sdist bdist_wheel
password:
secure: D0c2PYyI06+N5/inLaPHkEaM/GVgKVPCBDm2asmQvCTs14ory9KK17cnS+tOmrTNyMzw2tYSvD1Ar5a7MQAfcJ+p2bOnr/UCLqzt98H2LlE/2NJdzQtI3FtNCkhRVx20LK85G8ZWaHCecGIkgGmbIDZ56u1Aj+G16z0PqEz5i7s=
|
Remove incompatible node versions from testing | language: node_js
node_js:
- "0.12"
- "0.10"
- "0.8"
- "0.6"
| language: node_js
node_js:
- "0.12"
- "0.10"
|
Use go v1.4 instead of v1.3.3 | language: go
go: 1.3.3
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
install:
- export PATH=$PATH:${GOPATH%%:*}/bin:${GOPATH##:*}/bin
- go get -t github.com/anonx/sunplate/... # Getting the dependencies for the repo.
- go test -v github.com/anonx/sunplate/...
script:
- cd ${GOPATH%%:*}/src/github.com/anonx/sunplate
- COVERALLS="-service=travis-ci -repotoken $COVERALLS_TOKEN" sh ./coverage.sh
| language: go
go: 1.4
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- if ! go get code.google.com/p/go.tools/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi
install:
- export PATH=$PATH:${GOPATH%%:*}/bin:${GOPATH##:*}/bin
- go get -t github.com/anonx/sunplate/... # Getting the dependencies for the repo.
- go test -v github.com/anonx/sunplate/...
script:
- cd ${GOPATH%%:*}/src/github.com/anonx/sunplate
- COVERALLS="-service=travis-ci -repotoken $COVERALLS_TOKEN" sh ./coverage.sh
|
Add 2.5.1 to test matrix | language: ruby
rvm:
- 2.3.1
- 2.4.2
script: rake test TESTOPTS="-v"
| language: ruby
rvm:
- 2.3.1
- 2.4.2
- 2.5.1
script: rake test TESTOPTS="-v"
|
Update Travis config with an explicit script | language: go
go:
- tip
- 1.5
- 1.4
- 1.3
sudo: false
| language: go
go:
- tip
- 1.5
- 1.4
- 1.3
sudo: false
install:
- go get golang.org/x/tools/cmd/cover
script:
- go test -v -cover .
|
Use Travis standard email notification scheme | language: java
script: ./.travis-build.sh
sudo: false
jdk:
- oraclejdk8
# - oraclejdk7
- openjdk7
notifications:
email:
- annotation-tools-dev@googlegroups.com
after_success:
- |
if [[ ($TRAVIS_BRANCH == master) &&
($TRAVIS_PULL_REQUEST == false) &&
( (! $TRAVIS_JOB_NUMBER == *.*) || ($TRAVIS_JOB_NUMBER == *.1) ) ]] ; then
curl -LO https://raw.github.com/mernst/plume-lib/master/bin/trigger-travis.sh
sh trigger-travis.sh typetools checker-framework $TRAVISTOKEN
fi
git:
depth: 3
| language: java
script: ./.travis-build.sh
sudo: false
jdk:
- oraclejdk8
# - oraclejdk7
- openjdk7
after_success:
- |
if [[ ($TRAVIS_BRANCH == master) &&
($TRAVIS_PULL_REQUEST == false) &&
( (! $TRAVIS_JOB_NUMBER == *.*) || ($TRAVIS_JOB_NUMBER == *.1) ) ]] ; then
curl -LO https://raw.github.com/mernst/plume-lib/master/bin/trigger-travis.sh
sh trigger-travis.sh typetools checker-framework $TRAVISTOKEN
fi
git:
depth: 3
|
Test Python 3.8 and simplify matrix as Xenial is the default | language: python
matrix:
include:
- python: 2.7
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
install:
- python setup.py install
script:
python src/tests/test.py -v
| language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
- 3.7
- 3.8
install:
- python setup.py install
script:
python src/tests/test.py -v
|
Drop Django 1.7 test support | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO="django==1.7.10"
- DJANGO="django==1.8.7"
install:
- pip install $DJANGO
- pip install celery==3.1.16
- pip install django-enumfield==1.2
- pip install django-extensions==1.5.1
- pip install django-model-utils==2.4
- pip install shortuuid==0.4.2
- pip install coveralls mock factory_boy
script:
- coverage run --source=umeboshi runtests.py
after_success:
coveralls
notifications:
email:
recipients:
- zach.smith@makespace.com
on_success: change
on_failure: change
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
env:
- DJANGO="django==1.8.7"
install:
- pip install $DJANGO
- pip install celery==3.1.16
- pip install django-enumfield==1.2
- pip install django-extensions==1.5.1
- pip install django-model-utils==2.4
- pip install shortuuid==0.4.2
- pip install coveralls mock factory_boy
script:
- coverage run --source=umeboshi runtests.py
after_success:
coveralls
notifications:
email:
recipients:
- zach.smith@makespace.com
on_success: change
on_failure: change
|
Remove bundler install line from Travis config. | language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
notifications:
email: false
| language: ruby
rvm:
- 2.2.3
notifications:
email: false
|
Update Travis CI script to build OpenCV from scratch | language: node_js
before_install: sudo apt-get update && sudo apt-get install opencv | language: node_js
before_install:
- sudo apt-get update
- sudo apt-get install build-essential cmake pkg-config
- git clone --branch=master https://github.com/Itseez/opencv.git opencv
- mkdir opencv-build
- cd opencv-build/
- cmake -DCMAKE_BUILD_TYPE=RELEASE -DBUILD_DOCS=OFF -DBUILD_EXAMPLES=OFF -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=OFF -DBUILD_PERF_TESTS=OFF -DWITH_OPENEXR=OFF ../opencv/
- make install
|
Add Appraisal support to Travis | sudo: false
language: ruby
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
before_install:
- gem install bundler -v 1.15.3
addons:
code_climate:
repo_token: 9706e71f85fc2b64de770bd8964808d70b0ddfcbc78beaadcc96fd7fc26f5903
after_success:
- bundle exec codeclimate-test-reporter
| sudo: false
language: ruby
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
before_install:
- gem install bundler -v 1.15.3
gemfile:
- gemfiles/rails_4.0.gemfile
- gemfiles/rails_4.1.gemfile
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rspec_3.0.gemfile
- gemfiles/rspec_3.1.gemfile
- gemfiles/rspec_3.2.gemfile
- gemfiles/rspec_3.3.gemfile
- gemfiles/rspec_3.4.gemfile
- gemfiles/rspec_3.5.gemfile
- gemfiles/rspec_3.6.gemfile
addons:
code_climate:
repo_token: 9706e71f85fc2b64de770bd8964808d70b0ddfcbc78beaadcc96fd7fc26f5903
after_success:
- bundle exec codeclimate-test-reporter
|
Make something that can be found just knowing the branch and sha. | sudo: false
language: go
go: 1.4.2
before_install:
- export PATH=$HOME/gopath/bin:$PATH
- go get github.com/tools/godep
script:
- godep go test ./...
- make deb-local
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then pip install --user awscli && ~/.local/bin/aws s3 cp --acl public-read deb/*.deb s3://heroku-hsup; fi
notifications:
email: false
cache:
directories:
- $HOME/.local
| sudo: false
language: go
go: 1.4.2
before_install:
- export PATH=$HOME/gopath/bin:$PATH
- go get github.com/tools/godep
script:
- godep go test ./...
- make deb-local
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then b="build-$TRAVIS_BRANCH-$TRAVIS_COMMIT.tgz"; pip install --user awscli && cd deb && tar -czf $b *.deb && ~/.local/bin/aws s3 cp --acl public-read $b s3://heroku-hsup; fi
notifications:
email: false
cache:
directories:
- $HOME/.local
|
Delete branch info from Travis config | language: python
python:
- "3.5"
- "3.6"
branches:
- master
- readme_bages
install:
- pip install -r requirements.txt
- pip install codecov
script:
- python3 -m pytest tests --cov app --cov-report html
- coverage run -m pytest tests --cov app --cov-report html
after_success:
- codecov
| language: python
python:
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
- pip install codecov
script:
- python3 -m pytest tests --cov app --cov-report html
- coverage run -m pytest tests --cov app --cov-report html
after_success:
- codecov
|
Fix the repo name for deployment | sudo: false
language: erlang
otp_release:
- 17.5
addons:
apt:
packages:
- xsltproc
env:
- BUILD_DIR=$HOME/rabbitmq-public-umbrella CONSUL_VERSION=0.5.2 RABBIT_TAG=v3_5_4
install:
- $TRAVIS_BUILD_DIR/travis-umbrella-setup.sh
- $TRAVIS_BUILD_DIR/travis-install-consul.sh
script: cd $BUILD_DIR/autocluster && make test
after_script:
- rm -rf $BUILD_DIR/autocluster
before_deploy:
- cd $BUILD_DIR/autocluster
- VERSION=$TRAVIS_TAG make
deploy:
provider: releases
api_key:
secure: O24Nny5B1Xzs/tMW9qQrwIhvdaJ7gRc5moESXufCry7nlwunYSjCF/ukleZbL/ZjW4JwNHeUGCNvd0qX/fTx2IMzEkIBnxmYkWGfRNMeTZ9hKvmJiwML15BHCVPDxmw46ZMXPBKdDR46aXNJExuJ0QHUmT4FYvKUZdlHmk8rzvw=
file: $BUILD_DIR/autocluster/dist/autocluster-${TRAVIS_TAG}.ez
on:
tags: true
repo: aweber/rabbitmq-autocluster-consul
cache:
apt: true
directories:
- $HOME/consul
- $BUILD_DIR
| sudo: false
language: erlang
otp_release:
- 17.5
addons:
apt:
packages:
- xsltproc
env:
- BUILD_DIR=$HOME/rabbitmq-public-umbrella CONSUL_VERSION=0.5.2 RABBIT_TAG=v3_5_4
install:
- $TRAVIS_BUILD_DIR/travis-umbrella-setup.sh
- $TRAVIS_BUILD_DIR/travis-install-consul.sh
script: cd $BUILD_DIR/autocluster && make test
after_script:
- rm -rf $BUILD_DIR/autocluster
before_deploy:
- cd $BUILD_DIR/autocluster
- VERSION=$TRAVIS_TAG make
deploy:
provider: releases
api_key:
secure: O24Nny5B1Xzs/tMW9qQrwIhvdaJ7gRc5moESXufCry7nlwunYSjCF/ukleZbL/ZjW4JwNHeUGCNvd0qX/fTx2IMzEkIBnxmYkWGfRNMeTZ9hKvmJiwML15BHCVPDxmw46ZMXPBKdDR46aXNJExuJ0QHUmT4FYvKUZdlHmk8rzvw=
file: $BUILD_DIR/autocluster/dist/autocluster-${TRAVIS_TAG}.ez
on:
tags: true
repo: aweber/rabbitmq-autocluster
cache:
apt: true
directories:
- $HOME/consul
- $BUILD_DIR
|
Test Ruby 2.7 on CI | sudo: false
language: ruby
install: gem install minitest timecop coveralls
rvm:
- 2.3.5
- 2.4.9
- 2.5.7
- 2.6.5
script: rake test
| sudo: false
language: ruby
install: gem install minitest timecop coveralls
rvm:
- 2.3.5
- 2.4.10
- 2.5.8
- 2.6.6
- 2.7.2
script: rake test
|
Use sudo and trusty on Travis CI for shellcheck | language: python
# Use container-based infrastructure
sudo: false
addons:
apt:
packages:
- shellcheck
- libffi-dev
- libssl-dev
- nodejs
matrix:
include:
- env: TOX_ENV=py27
- env: TOX_ENV=py35
cache:
directories:
- $HOME/.cache/pip
before_install:
- curl -sL https://deb.nodesource.com/setup_6.x | bash -
install:
- npm install -g jscs eslint csslint sass-lint jsonlint stylelint eslint-plugin-react eslint-plugin-react-native babel-eslint
- pip install -U tox
script: tox -e $TOX_ENV
after_success:
- pip install codecov
- codecov
| language: python
sudo: required
dist: trusty
matrix:
include:
- env: TOX_ENV=py27
- env: TOX_ENV=py35
cache:
directories:
- $HOME/.cache/pip
before_install:
- curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
- sudo apt-get install -y libffi-dev libssl-dev nodejs shellcheck
install:
- npm install -g jscs eslint csslint sass-lint jsonlint stylelint eslint-plugin-react eslint-plugin-react-native babel-eslint
- pip install -U tox
script: tox -e $TOX_ENV
after_success:
- pip install codecov
- codecov
|
Add 17.01-rc1 Erlang version to build on Travis-CI | language: erlang
notifications:
recipients:
- eduardo@gurgel.me
otp_release:
- R16B
- R16B01
- R16B02
script: mix test
install: mix deps.get
before_install:
- mkdir -p vendor/elixir
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.12.4/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
- export PATH="$PATH:$PWD/vendor/elixir/bin"
- export MIX_ENV=test
| language: erlang
notifications:
recipients:
- eduardo@gurgel.me
otp_release:
- R16B
- R16B01
- R16B02
- 17.0-rc1
script: mix test
install: mix deps.get
before_install:
- mkdir -p vendor/elixir
- wget -q https://github.com/elixir-lang/elixir/releases/download/v0.12.4/Precompiled.zip && unzip -qq Precompiled.zip -d vendor/elixir
- export PATH="$PATH:$PWD/vendor/elixir/bin"
- export MIX_ENV=test
|
Make Travis cache the directory where Go Modules are stored | version: ~> 1.0
language: go
go_import_path: github.com/google/monologue
go:
- 1.13
env:
global:
- GO111MODULE=on
jobs:
include:
- name: go mod tidy
install: skip
before_script: go mod tidy -v
script: git diff --exit-code -- go.mod go.sum
- name: test with coverage
env:
- WITH_COVERAGE=true
after_success:
# Upload coverage info as per https://docs.codecov.io/docs/about-the-codecov-bash-uploader
- bash <(curl -s https://codecov.io/bash)
- name: test with race detection
env:
- GOFLAGS='-race'
install:
# Install golangci-lint as per https://github.com/golangci/golangci-lint#install
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.18.0
script:
- ./scripts/presubmit.sh ${WITH_COVERAGE:+--coverage}
| version: ~> 1.0
language: go
go_import_path: github.com/google/monologue
go:
- 1.13
cache:
directories:
- $GOPATH/pkg/mod
env:
global:
- GO111MODULE=on
jobs:
include:
- name: go mod tidy
install: skip
before_script: go mod tidy -v
script: git diff --exit-code -- go.mod go.sum
- name: test with coverage
env:
- WITH_COVERAGE=true
after_success:
# Upload coverage info as per https://docs.codecov.io/docs/about-the-codecov-bash-uploader
- bash <(curl -s https://codecov.io/bash)
- name: test with race detection
env:
- GOFLAGS='-race'
install:
# Install golangci-lint as per https://github.com/golangci/golangci-lint#install
- curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.18.0
script:
- ./scripts/presubmit.sh ${WITH_COVERAGE:+--coverage}
|
Add auto deploy to heroku | language: node_js
node_js:
- 0.10
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm start > /dev/null &
- npm run update-webdriver
- sleep 1 # give server time to start
script:
- node_modules/.bin/karma start test/karma.conf.js --no-auto-watch --single-run --reporters=dots --browsers=Firefox
- node_modules/.bin/protractor test/protractor-conf.js --browser=firefox | language: node_js
node_js:
- 0.1
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm start > /dev/null &
- npm run update-webdriver
- sleep 1
script:
- node_modules/.bin/karma start test/karma.conf.js --no-auto-watch --single-run --reporters=dots
--browsers=Firefox
- node_modules/.bin/protractor test/protractor-conf.js --browser=firefox
deploy:
provider: heroku
api_key:
secure: dH3TSI7j0PPAg4fjekgZiiO5nO9kQLBD/uslRZIi21WPc3sIMyymStGHfe4T4+F3O8eBFkxbSQzMybj5dDJ8ZEUzVsZXL+H0MvLWsviOPPHx6u07CpVZQi68uBUgXojAJ5DGv+7upTQbcqx76uSq38cH39xkCQ1TvQTl3qRp3sQ=
app: GameOfLife
on:
repo: velcrin/GameOfLife
branch: vincent
|
Remove deprecated Sudo key from TravisCI config | language: csharp
mono: none
sudo: required
dotnet: 3.1
matrix:
include:
- os: linux
dist: bionic
- os: osx
dotnet: 3.1.100
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
script:
- dotnet restore ./LiteDB/LiteDB.csproj
- dotnet build ./LiteDB/LiteDB.csproj -f netstandard2.0
- dotnet test ./LiteDB.Tests/LiteDB.Tests.csproj --logger:console --verbosity=minimal
notifications:
email: false
| language: csharp
mono: none
dotnet: 3.1
matrix:
include:
- os: linux
dist: bionic
- os: osx
dotnet: 3.1.100
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
script:
- dotnet restore ./LiteDB/LiteDB.csproj
- dotnet build ./LiteDB/LiteDB.csproj -f netstandard2.0
- dotnet test ./LiteDB.Tests/LiteDB.Tests.csproj --logger:console --verbosity=minimal
notifications:
email: false
|
Clean up ruby versions to test | language: ruby
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
- 2.1.2
- 2.1.3
- 2.1.4
- 2.1.5
| language: ruby
rvm:
- 2.0
- 2.1
- 2.2
|
Test Node.js v6 (LTS) instead of v5 | sudo: false
language: node_js
os:
- linux
- osx
node_js:
- node
- "5"
- "4"
- "0.12"
script: npm run travis
after_success:
- cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
- cat ./coverage/coverage.json | node_modules/codecov.io/bin/codecov.io.js
- rm -rf ./coverage
| sudo: false
language: node_js
os:
- linux
- osx
node_js:
- "7"
- "6"
- "4"
- "v0.12.17"
script: npm run travis
after_success:
- cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
- cat ./coverage/coverage.json | node_modules/codecov.io/bin/codecov.io.js
- rm -rf ./coverage
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.