Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Replace multinode jobs with image builds | - project:
templates:
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- openstack-python37-jobs
- tripleo-multinode-container-minimal
- release-notes-jobs-python3
post:
jobs:
- publish-openstack-python-branch-tarball
| - project:
templates:
- tripleo-buildimage-jobs
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- openstack-python37-jobs
- release-notes-jobs-python3
post:
jobs:
- publish-openstack-python-branch-tarball
|
Fix names of tox environments. | language: python
python:
- "3.5"
sudo: false
env:
- TOXENV=py27-lint
- TOXENV=py27-docs
- TOXENV=py35-django19
- TOXENV=py34-django19
- TOXENV=py27-django19
- TOXENV=py35-django18
- TOXENV=py34-django18
- TOXENV=py33-django18
- TOXENV=py32-django18
- TOXENV=py27-django18
... | language: python
python:
- "3.5"
sudo: false
env:
- TOXENV=py27-lint
- TOXENV=py27-docs
- TOXENV="py35-django1.9"
- TOXENV="py34-django1.9"
- TOXENV="py27-django1.9"
- TOXENV="py35-django1.8"
- TOXENV="py34-django1.8"
- TOXENV="py33-django1.8"
- TOXENV="py32-django1.8"
- T... |
Update TravisCI configuration to use Ubuntu 18.04 | language: python
python:
- '3.7'
- '3.8'
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
before_install:
- pip install -U pip
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
before_script:
- mv secrets_dummy.yaml secrets.yaml
- pre-commit install-hooks
scr... | dist: bionic
language: python
python:
- '3.7'
- '3.8'
cache:
pip: true
directories:
- $HOME/.cache/pre-commit
before_install:
- pip install -U pip
install:
- pip install -r requirements.txt
- pip install -r requirements_test.txt
before_script:
- mv secrets_dummy.yaml secrets.yaml
- pre-commit inst... |
Test against latest patch level rubies | ---
sudo: false
language: ruby
before_install:
- rvm reinstall $TRAVIS_RUBY_VERSION --patch
http://github.com/k0kubun/ruby/commit/6747055326e634899f0efb0ba7cf46.patch
install:
- gem update --system --no-document || test true
- gem install bundler --no-document || test true
- bundle install --jobs 3 --... | ---
sudo: false
language: ruby
before_install:
- rvm reinstall $TRAVIS_RUBY_VERSION --patch
http://github.com/k0kubun/ruby/commit/6747055326e634899f0efb0ba7cf46.patch
install:
- gem update --system --no-document || test true
- gem install bundler --no-document || test true
- bundle install --jobs 3 --... |
Add auto-deployment stage to Travis config | language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
sudo: false
script:
- npm run test-with-cov
after_success:
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_TOKEN ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info
git:
depth: 10
| language: node_js
node_js:
- "9"
- "8"
- "7"
- "6"
- "5"
sudo: false
test:
- npm run test-with-cov
deploy:
provider: npm
email: peter@reidweb.com
api_key:
secure: HtlC7Ylj1Pv7iQHAvmRsClO26jOHfe/s+JUWZwNSbMM7x49XQxjSEuP+XD1kWNBlZ4SM432qRoSgojtBusXXWPcJ7OzH9kAnvHafmR9t70lNXW0yazycIhFooxAzYZvhRTRmP... |
Allow failure on stable and beta, since nightly is required for lazy_static doc test | language: rust
rust:
- stable
- beta
- nightly
| language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: stable
- rust: beta
|
Build doc with relevant feaures flags. | language: rust
sudo: false
notifications:
irc: "irc.mozilla.org#piston-internals"
os:
- linux
- osx
rust:
- stable
- beta
- nightly
env:
global:
- secure: "WI/r7hbDhenb7zPXht8J0mhcx5aUgY22cCrwYmNksMmgIK9hYfPjZ68XzaQ7+Ity8b12TlHM8lGRN9bIsyAZEiRIkxkZAArY9bXAOExJaAT+yOyxhEs/QdrGB6iRhC6F... | language: rust
sudo: false
notifications:
irc: "irc.mozilla.org#piston-internals"
os:
- linux
- osx
rust:
- stable
- beta
- nightly
env:
global:
- secure: "WI/r7hbDhenb7zPXht8J0mhcx5aUgY22cCrwYmNksMmgIK9hYfPjZ68XzaQ7+Ity8b12TlHM8lGRN9bIsyAZEiRIkxkZAArY9bXAOExJaAT+yOyxhEs/QdrGB6iRhC6F... |
Fix vendor bin path in after_success | language: php
php:
- 7.1
install:
- composer install
after_success:
- travis_retry php vendor/bin/coveralls -v
| language: php
php:
- 7.1
install:
- composer install
after_success:
- travis_retry php bin/coveralls -v
|
Remove obsolete --dev composer option | language: php
sudo: false
cache:
directories:
- vendor/
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: nightly
notifications:
email: false
irc: "irc.iiens.net#Clicky"
before_script:
- rm composer.lock... | language: php
sudo: false
cache:
directories:
- vendor/
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- nightly
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: nightly
notifications:
email: false
irc: "irc.iiens.net#Clicky"
before_script:
- rm composer.lock... |
Add CI target rvm version from 2.0 to 2.4 | sudo: false
language: ruby
rvm:
- 2.3.1
before_install: gem install bundler -v 1.13.2
script: rake spec
| sudo: false
language: ruby
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
- 2.1.10
- 2.0.0
before_install: gem update bundler --no-document
script: rake spec
|
Add further install steps after deployment | language: node_js
node_js:
- "0.10"
install:
- "npm install -g grunt-cli"
- "npm install"
- "bower install"
script:
- "grunt test"
- "grunt build"
deploy:
provider: heroku
api_key:
secure: c/wHTZAzJUgWBm1w7KLlEDq6o9a/tbgzaZctJ+SkwwpqEIAJPEEeFzteRDzcQgGIRsws+C3m/zzWvqoQMmIoKvgJoNyoObZQazUCImly6hQM... | language: node_js
node_js:
- "0.10"
install:
- "npm install -g grunt-cli bower"
- "npm install"
- "bower install"
script:
- "grunt test"
- "grunt build"
deploy:
provider: heroku
api_key:
secure: c/wHTZAzJUgWBm1w7KLlEDq6o9a/tbgzaZctJ+SkwwpqEIAJPEEeFzteRDzcQgGIRsws+C3m/zzWvqoQMmIoKvgJoNyoObZQazUCIm... |
Rework Rcheck to support any Docker image | language: general
services:
- docker
branches:
only:
- master
install:
- curl -sSL https://raw.githubusercontent.com/acidgenomics/Rcheck/master/install | bash
jobs:
include:
- stage: test
name: "bioc-release"
script: image="bcbiornaseq" tag="bioc-release" ./.Rcheck/docker
- stage: te... | language: general
services:
- docker
branches:
only:
- master
install:
- curl -sSL https://raw.githubusercontent.com/acidgenomics/Rcheck/master/install | bash
jobs:
include:
- stage: test
name: "bioc-release"
script: image="acidgenomics/bcbiornaseq" tag="bioc-release" ./.Rcheck/docker
... |
Add system user credentials upload to S3. | ---
- name: AEM Author CloudFormation Stack
hosts: all
gather_facts: no
connection: local
tasks:
- name: Create random credentials for system users
system_users_credentials:
register: credentials
tags:
- create
- name: Ensure data bucket exists
s3_bucket:
name: "... | ---
- name: AEM Author CloudFormation Stack
hosts: all
gather_facts: no
connection: local
tasks:
- name: Generate random credentials for system users
system_users_credentials:
register: credentials
tags:
- create
- name: Ensure stage directory exists
file:
path: ... |
Update scheduler-plugins CI To Go 1.15.8 | # sigs.k8s.io/scheduler-plugins presubmits
presubmits:
kubernetes-sigs/scheduler-plugins:
- name: pull-scheduler-plugins-verify-gofmt
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.15.5
command:
- make
... | # sigs.k8s.io/scheduler-plugins presubmits
presubmits:
kubernetes-sigs/scheduler-plugins:
- name: pull-scheduler-plugins-verify-gofmt
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.15.8
command:
- make
... |
Rename PIA and STRA status | name: compliance
description: |
This document is used to track a projects PIA and STRA
compliance.
spec:
- name: PIA
status: exempt
last-updated: '2020-01-20T19:03:49.823Z'
- name: STRA
status: exempt
last-updated: '2020-01-20T19:03:49.824Z'
| name: compliance
description: |
This document is used to track a projects PIA and STRA
compliance.
spec:
- name: PIA
status: not-required
last-updated: '2020-04-15T00:13:51.653Z'
- name: STRA
status: not-required
last-updated: '2020-04-15T00:13:51.653Z'
|
Allow failure on security scan job | image: node:latest
stages:
- test
- publish
code quality:
stage: test
script:
- npm ci
- npm run lint
npm outdated:
stage: test
script:
- npm outdated
allow_failure: true
security scan:
stage: test
script:
- npm audit --only=prod
allow_failure: true
test on nodejs lts:
stage: ... | image: node:latest
stages:
- test
- publish
code quality:
stage: test
script:
- npm ci
- npm run lint
npm outdated:
stage: test
script:
- npm outdated
allow_failure: true
security scan:
stage: test
script:
- npm audit --production
test on nodejs lts:
stage: test
image: node:lt... |
Fix url, and set repo as a trigger | resources:
- name: jsselman-repo
type: git
source:
uri: https://github.com/selmanj/terraform-provider-google.git
branch: master
paths:
- google/*
- name: terraform-ci
type: git
source:
uri: git@github.com:selmanj/terraform-provider-google-ci.git
branch: master
jobs:
- name: acceptance-... | resources:
- name: jsselman-repo
type: git
source:
uri: https://github.com/selmanj/terraform-provider-google.git
branch: master
paths:
- google/*
- name: terraform-ci
type: git
source:
uri: https://github.com/selmanj/terraform-provider-google-ci.git
branch: master
jobs:
- name: accepta... |
Fix indent for Elasticsearch configuration | # ===================================================================
# Spring Boot configuration for the "heroku" profile.
#
# This configuration overrides the application.yml file.
# ===================================================================
# ================================================================... | # ===================================================================
# Spring Boot configuration for the "heroku" profile.
#
# This configuration overrides the application.yml file.
# ===================================================================
# ================================================================... |
Add iojs to Travis CI. | language: node_js
node_js:
- 0.10
notifications:
email: false
| language: node_js
node_js:
- node
- iojs
notifications:
email: false
|
Drop Python 3.2 from Travis file | language: python
notifications:
email: false
addons:
apt:
packages:
- libhdf5-serial-dev
sudo: false
cache:
directories:
- $HOME/.cache/pip
env:
# Commented out since setup_requires is controlled by easy_install
# This should be uncommented when pip can use setup_requires
# - TOXENV=py26-test-... | language: python
notifications:
email: false
addons:
apt:
packages:
- libhdf5-serial-dev
sudo: false
cache:
directories:
- $HOME/.cache/pip
env:
# Commented out since setup_requires is controlled by easy_install
# This should be uncommented when pip can use setup_requires
# - TOXENV=py26-test-... |
Use the pre-release builds of chefdk | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-stable-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk... | # Use Travis's cointainer based infrastructure
sudo: false
addons:
apt:
sources:
- chef-current-precise
packages:
- chefdk
# Don't `bundle install`
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefd... |
Test the build on iOS 9.3 | # Configuration for Travis (https://travis-ci.org)
language: objective-c
xcode_workspace: OneTimePassword.xcworkspace
xcode_scheme: OneTimePassword
osx_image: xcode7.2
xcode_sdk: iphonesimulator9.2
env:
- DESTINATION="OS=8.1,name=iPhone 4S"
- DESTINATION="OS=8.2,name=iPhone 5"
- DESTINATION="OS=8.3,name=iPhon... | # Configuration for Travis (https://travis-ci.org)
language: objective-c
xcode_workspace: OneTimePassword.xcworkspace
xcode_scheme: OneTimePassword
osx_image: xcode7.2
xcode_sdk: iphonesimulator9.2
env:
- DESTINATION="OS=8.1,name=iPhone 4S"
- DESTINATION="OS=8.2,name=iPhone 5"
- DESTINATION="OS=8.3,name=iPhon... |
Check links only on PHP 5.6 | language: php
matrix:
fast_finish: true
include:
- php: 5.3.3
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- sudo apt-get -y install pypy python-sphinx graphviz
- travis_retry compo... | language: php
matrix:
fast_finish: true
include:
- php: 5.3.3
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
env: CHECK_LINKS=true
- php: 7
- php: hhvm
allow_failures:
- php: 7
before_install:
- composer selfupdate
install:
- if [[ "$CHECK_LINKS" == "true" ]]; then sudo a... |
Test on modern Ruby and remove hip chat notifications | rvm:
- 1.9.3
- 2.0.0
- 2.1.0
bundler_args: --jobs 7
branches:
only:
- master
script: bundle exec rake travis:ci
notifications:
hipchat:
on_change: true
on_failure: true
on_success: false
on_pull_requests: false
rooms:
# Build Statuses
- secure: IycrY52k8dhilnU3B2c8mem9L... | language: ruby
cache: bundler
sudo: false
rvm:
- 2.2.5
- 2.3.1
branches:
only:
- master
script: bundle exec rake travis:ci
|
Remove older version of Ruby from Travis | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
# Delete dependency locks for matrix builds.
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
env:
matrix:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"... | ---
# Verify this with: http://lint.travis-ci.org/
language: ruby
# Delete dependency locks for matrix builds.
before_install: rm Gemfile.lock || true
script: bundle exec rake test
rvm:
- 1.9.3
env:
matrix:
- PUPPET_VERSION="~> 2.7.0"
- PUPPET_VERSION="~> 3.1.0"
- PUPPET_VERSION="~> 3.2.0"
- PUPPET_VERSION=... |
Fix for postgis extension error. | language: python
python:
- "2.7"
sudo: required
dist: trusty
addons:
postgresql: "9.4"
services:
- postgresql
virtualenv:
system_site_packages: true
# install prerequisites
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y build-essential python-numpy python-scipy libgdal1h libhdf5-dev lib... | language: python
python:
- "2.7"
sudo: required
dist: trusty
addons:
postgresql: "9.4"
services:
- postgresql
virtualenv:
system_site_packages: true
# install prerequisites
before_install:
- sudo apt-get update -qq
- sudo apt-get install -y build-essential python-numpy python-scipy libgdal1h libhdf5-dev lib... |
Remove hhvm (didn't work, revisit later) | language: php
php:
- 5.6
- 7.0
- 7.1
# Use the newer stack for HHVM as HHVM does not support Precise
- php: hhvm
sudo: required
dist: trusty
group: edge
before_install:
- composer require phpunit/phpunit:4.8.* satooshi/php-coveralls:dev-master
- composer install --dev
script:
- mkdir -p build/... | language: php
php:
- 5.6
- 7.0
- 7.1
# Use the newer stack for HHVM as HHVM does not support Precise
#- php: hhvm
# sudo: required
# dist: trusty
# group: edge
before_install:
- composer require phpunit/phpunit:4.8.* satooshi/php-coveralls:dev-master
- composer install --dev
script:
- mkdir -p bu... |
Update from Hackage at 2017-02-19T22:13:29Z | homepage: ''
changelog-type: ''
hash: a707a0f0fe9f2f6be156be1bdf5b76c6b9f52b3c10dc41cf4416dbb0b67d71dd
test-bench-deps: {}
maintainer: conal@conal.net
synopsis: Generalized booleans and numbers
changelog: ''
basic-deps:
base: <5
all-versions:
- '0.0.0'
- '0.0.1'
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.2'
- '0.2.1'
- '0.2.... | homepage: ''
changelog-type: ''
hash: a16b532a00eb3f29e8e588f3ca5c225370eef3dd963ee833d88b241ac680dc71
test-bench-deps: {}
maintainer: conal@conal.net
synopsis: Generalized booleans and numbers
changelog: ''
basic-deps:
base: <5
all-versions:
- '0.0.0'
- '0.0.1'
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.2'
- '0.2.1'
- '0.2.... |
Move to official NuGet action | name: CI
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: .\build.cmd
- name: Upload binaries
uses: actions/upload-artifact@v1
with:
name: bin
path: bin
push-to-myget:
if: github.event_na... | name: CI
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Build
run: .\build.cmd
- name: Upload binaries
uses: actions/upload-artifact@v1
with:
name: bin
path: bin
push-to-myget:
if: github.event_na... |
Change redcarpet to kramdown for gh-pages | safe: false
#auto: false
#server: false
port: 4000
baseurl: /jekyll_demo
url: http://localhost:4000
source: .
destination: ./_site
plugins_dir: ./_plugins
future: true
lsi: false
#highlighter: pygments
markdown: redcarpet
permalink: date
#maruku:
# use_tex: false
... | safe: false
#auto: false
#server: false
port: 4000
baseurl: /jekyll_demo
url: http://localhost:4000
source: .
destination: ./_site
plugins_dir: ./_plugins
future: true
lsi: false
#highlighter: pygments
markdown: kramdown
permalink: date
#maruku:
# use_tex: false
#... |
Switch to 2023.1 Python3 unit tests and generic template name | ---
- project:
queue: trove
templates:
- check-requirements
- openstack-cover-jobs
# - openstack-lower-constraints-jobs
- openstack-python3-zed-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- opensta... | ---
- project:
queue: trove
templates:
- check-requirements
- openstack-cover-jobs
# - openstack-lower-constraints-jobs
- openstack-python3-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- openstack-t... |
Enable test and coverage checks in CI | name: Code quality checks
on:
push:
branches:
- main
pull_request:
jobs:
code_quality:
name: Check code quality
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
... | name: Code quality checks
on:
push:
branches:
- main
pull_request:
jobs:
code_quality:
name: Check code quality
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
... |
Exclude Python 3.9 and 3.10 from CI on Windows | name: CI
on: [push, pull_request]
jobs:
build:
name: ${{ matrix.os }} ${{ matrix.python }} ${{ matrix.name }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
# fail-fast: true
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, win... | name: CI
on: [push, pull_request]
jobs:
build:
name: ${{ matrix.os }} ${{ matrix.python }} ${{ matrix.name }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
# fail-fast: true
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, win... |
Bump ridedott/merge-me-action from v1.8.28 to v1.8.30 | name: Node CI
on: [push]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.2
with:
node-version: ... | name: Node CI
on: [push]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2.3.4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.2
with:
node-version: ... |
Update MySQL port on docker container | version: '2'
services:
app:
depends_on:
- db
image: redisforlosers/hub
volumes:
- ./:/hub
ports:
- 10000:10000
container_name: hub
hostname: hub
phpmyadmin:
depends_on:
- db
image: phpmyadmin/phpmyadmin
ports:
- 18888:80
container_name: hub-phpmyadmin
hostname: hub-phpmyadmin
d... | version: '2'
services:
app:
depends_on:
- db
image: redisforlosers/hub
volumes:
- ./:/hub
ports:
- 10000:10000
container_name: hub
hostname: hub
phpmyadmin:
depends_on:
- db
image: phpmyadmin/phpmyadmin
ports:
- 18888:80
container_name: hub-phpmyadmin
hostname: hub-phpmyadmin
d... |
Update from Forestry.io - Updated Forestry configuration | ---
hide_body: true
is_partial: false
fields:
- type: text
name: title
label: Title
- type: datetime
name: date
label: Date
- type: textarea
name: description
label: Description
- type: select
name: vendor
config:
source:
type: simple
options:
- YouTube
- Vimeo
label: Vendor
- ty... | ---
hide_body: true
is_partial: false
fields:
- type: text
name: title
label: Title
- type: datetime
name: date
label: Date
- type: textarea
name: description
label: Description
- type: select
name: vendor
config:
source:
type: simple
options:
- YouTube
- Vimeo
label: Vendor
- ty... |
Add ignoring paths for SP&Facade | codecov:
branch: master
coverage:
precision: 2
round: down
range: "70...100"
status:
project:
default:
target: auto
threshold: null
branches: null
patch:
default:
target: auto
branches: null
changes:
default:
branches: null
com... | codecov:
branch: master
coverage:
precision: 2
round: down
range: "70...100"
status:
project:
default:
target: auto
threshold: null
branches: null
patch:
default:
target: auto
branches: null
changes:
default:
branches: null
ign... |
Build only 2.0.0 and latest 2.1.x | language: ruby
rvm:
- 2.0.0
- 2.1.0
- 2.1.1
env:
- DB=mysql
- DB=postgresql
before_script:
- "cp config/database.yml.$DB config/database.yml"
- "cp config/gitlab.yml.sample config/gitlab.yml"
- "cp config/pusher.yml.sample config/pusher.yml"
- "RAILS_ENV=test bundle exec rake db:create db:migrate"
scr... | language: ruby
rvm:
- 2.0.0
- 2.1.2
env:
- DB=mysql
- DB=postgresql
before_script:
- "cp config/database.yml.$DB config/database.yml"
- "cp config/gitlab.yml.sample config/gitlab.yml"
- "cp config/pusher.yml.sample config/pusher.yml"
- "RAILS_ENV=test bundle exec rake db:create db:migrate"
script: bundl... |
Modify params for robot on gazebo such as obstacle range and footprint | obstacle_range: 12.0
raytrace_range: 15.0
# footprint for KIT-C5 new model
footprint: [[0.1, 0.4], [0.1, -0.4], [-0.4, -0.4], [-0.4, 0.4]]
# footprint: [[0.1, 0.1], [0.1, -0.1], [-0.1, -0.1], [-0.1, 0.1]]
inflation_radius: 0.55
cost_scaling_factor: 5.0
rigin_z: 0.0
z_resolution: 0.2
z_voxels: 0.2
publish_voxel_map: fa... | obstacle_range: 5.0
raytrace_range: 7.0
footprint: [[0.1, 0.1], [0.1, -0.1], [-0.1, -0.1], [-0.1, 0.1]]
inflation_radius: 0.3
cost_scaling_factor: 5.0
rigin_z: 0.0
z_resolution: 0.2
z_voxels: 0.2
publish_voxel_map: false
max_obstacle_height: 0.4
min_obstacle_height: 0.01
observation_sources: velodyne_sensor
velodyne... |
Update from Hackage at 2018-10-19T16:56:28Z | homepage: https://github.com/Tinybop/gingersnap
changelog-type: markdown
hash: 2e9198271f4c8dafed7bc7c9d615c5c43557f61ca0e0a8ee10fedc8e000da526
test-bench-deps: {}
maintainer: tom@tinybop.com
synopsis: snap-core + aeson + postgresql-simple = delicious
changelog: ! '# Revision history for gingersnap
## 0.1.0.0 -- 2... | homepage: https://github.com/Tinybop/gingersnap
changelog-type: markdown
hash: 814f00cafb430e9ac309a1887bfbceeea5fcfb52eefc1476b2d3652d3564b3ba
test-bench-deps: {}
maintainer: tom@tinybop.com
synopsis: snap-core + aeson + postgresql-simple = delicious
changelog: ! '# Revision history for gingersnap
## 0.1.0.0 -- 2... |
Remove Rubinius from Travis config | language: ruby
rvm:
- 2.3
- 2.4
- ruby-head
- jruby-9.1.13.0
- jruby-head
- rbx-3
before_install: gem install bundler
script: bundle exec rspec
| language: ruby
rvm:
- 2.3
- 2.4
- ruby-head
- jruby-9.1.13.0
- jruby-head
before_install: gem install bundler
script: bundle exec rspec
|
Update the node version numbers to ones we use | language: node_js
node_js:
- "0.10"
- "0.12"
sudo: false | language: node_js
node_js:
- "5"
- "4.4"
- "0.12"
sudo: false
|
Add godep restore to Travis build | language: go
go:
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/tools/godep
script:
- make test
- make detail
- $HOME/gopath/bin/goveralls -coverprofile=coverag... | language: go
go:
- 1.2.2
- 1.3.3
- 1.4.2
- 1.5.1
before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
- go get github.com/tools/godep
- godep restore
script:
- make test
- make detail
- $HOME/gopath/bin/goveralls -co... |
Revert "Try Trusty on Travis" | dist: trusty
sudo: false
language: php
env:
global:
- WP_CLI_BIN_DIR=/tmp/wp-cli-phar
matrix:
include:
- php: 5.3
env: WP_VERSION=3.7.11 DEPLOY_BRANCH=master
- php: 5.6
env: WP_VERSION=3.7.11
- php: 5.6
env: WP_VERSION=latest
- php: 5.6
env: WP_VERSION=latest BUILD=git... | sudo: false
language: php
env:
global:
- WP_CLI_BIN_DIR=/tmp/wp-cli-phar
matrix:
include:
- php: 5.3
env: WP_VERSION=3.7.11 DEPLOY_BRANCH=master
- php: 5.6
env: WP_VERSION=3.7.11
- php: 5.6
env: WP_VERSION=latest
- php: 5.6
env: WP_VERSION=latest BUILD=git WP_CLI_BIN_D... |
Fix composer TLS exception on PHP 5.3.3 | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- nightly
- hhvm
# run build against nightly but allow them to fail
matrix:
fast_finish: true
allow_failures:
- php: nightly
- php: hhvm
# faster builds on new travis setup not using sudo
sudo: false
install:
... | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- nightly
- hhvm
# run build against nightly but allow them to fail
matrix:
fast_finish: true
allow_failures:
- php: nightly
- php: hhvm
# faster builds on new travis setup not using sudo
sudo: false
install:
... |
Remove the need for a tagged commit to deploy It won't deploy a new version unless setup.py is updated | sudo: required
language: python
python:
- '3.8'
- '3.7'
- '3.6'
services:
- docker
before_install:
- docker version
- docker pull rocket.chat:latest
- pip install docker-compose
- pip install codecov pytest-cov pytest-flakes pytest-pep8
- docker-compose -f docker-compose-test-server.yml up -d
script:
- docker ps
-... | sudo: required
language: python
python:
- '3.8'
- '3.7'
- '3.6'
services:
- docker
before_install:
- docker version
- docker pull rocket.chat:latest
- pip install docker-compose
- pip install codecov pytest-cov pytest-flakes pytest-pep8
- docker-compose -f docker-compose-test-server.yml up -d
script:
- docker ps
-... |
Build with Node.js 14 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 nyc
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '12'
- '14'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
|
Use `build` in Travis config | language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
script:
- ./gradlew check --stacktrace
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: java
jdk:
- oraclejdk8
before_install:
- chmod +x gradlew
script:
- ./gradlew build jacocoRootReport --stacktrace
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Update Travis to macOS Sierra | language: csharp
sudo: required
dist: trusty
addons:
apt:
packages:
- gettext
- libcurl4-openssl-dev
- libicu-dev
- libssl-dev
- libunwind8
- zlib1g
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
branches:
... | language: csharp
sudo: false
dist: trusty
env:
global:
- DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
- DOTNET_CLI_TELEMETRY_OPTOUT: 1
mono: none
os:
- linux
- osx
osx_image: xcode8.2
branches:
only:
- master
- release
- dev
- /^(.*\/)?ci-.*$/
before_install:
- if test "$TRAVIS_OS_NAME" == ... |
Revert "deploy to github releases on tags" | language: java
jdk:
- oraclejdk8
after_success:
- bash <(curl -s https://codecov.io/bash)
deploy:
provider: releases
api_key: "0871e0112c8b576cf660895775e82366f61b52dc"
file: "build/distributions/JTerm.zip"
skip_cleanup: true
on:
tags: true | language: java
jdk:
- oraclejdk8
after_success:
- bash <(curl -s https://codecov.io/bash) |
Remove node 6 from running in CI | language: node_js
node_js:
- '8'
- '6'
cache:
directories:
- node_modules
script:
- 'yarn test:coverage'
- 'yarn lint'
after_success: 'yarn test:report'
| language: node_js
node_js:
- '8'
cache:
directories:
- node_modules
script:
- 'yarn test:coverage'
- 'yarn lint'
after_success: 'yarn test:report'
|
Revert "Test build with JDK6" - Travis error: Sun/Oracle JDK 6 is EOL since November 2012, and is no longer supported. Please consider upgrading... | language: java
jdk:
- oraclejdk6
- oraclejdk7
- oraclejdk8
script: mvn install
after_success:
- mvn clean test jacoco:report coveralls:report
| language: java
jdk:
- oraclejdk7
- oraclejdk8
script: mvn install
after_success:
- mvn clean test jacoco:report coveralls:report |
Purge snapshots from Travis cache, force re-download | language: java
jdk:
- oraclejdk7
- openjdk7
- oraclejdk8
env:
- GWT_VERSION=2.7.0
- GWT_VERSION=2.8.0
- GWT_VERSION=2.8.1
- GWT_VERSION=HEAD-SNAPSHOT
matrix:
allow_failures:
- jdk: oraclejdk7
env: GWT_VERSION=HEAD-SNAPSHOT
- jdk: openjdk7
env: GWT_VERSION=HEAD-SNAPSHOT
install: t... | language: java
jdk:
- oraclejdk7
- openjdk7
- oraclejdk8
env:
- GWT_VERSION=2.7.0
- GWT_VERSION=2.8.0
- GWT_VERSION=2.8.1
- GWT_VERSION=HEAD-SNAPSHOT
matrix:
allow_failures:
- jdk: oraclejdk7
env: GWT_VERSION=HEAD-SNAPSHOT
- jdk: openjdk7
env: GWT_VERSION=HEAD-SNAPSHOT
install: t... |
Downgrade to trusty for compatibility with jruby-1.7.27 and rbx-3.107. | language: ruby
dist: xenial
before_install:
- if [[ $TRAVIS_RUBY_VERSION =~ ^(1|2\.[012]|jruby-1)\. ]]; then gem install rubygems-update --version '~> 2.7' --no-document && update_rubygems; else gem update --system; fi
- gem --version
- if [[ $TRAVIS_RUBY_VERSION =~ ^(1|2\.[012]|jruby-1)\. ]]; then gem install bu... | language: ruby
dist: trusty
before_install:
- if [[ $TRAVIS_RUBY_VERSION =~ ^(1|2\.[012]|jruby-1)\. ]]; then gem install rubygems-update --version '~> 2.7' --no-document && update_rubygems; else gem update --system; fi
- gem --version
- if [[ $TRAVIS_RUBY_VERSION =~ ^(1|2\.[012]|jruby-1)\. ]]; then gem install bu... |
Add Ruby 2.7 to Travis | language: ruby
script: script/test
rvm:
- 2.3.8
- 2.4.7
- 2.5.6
- 2.6.4
gemfile:
- gemfiles/5.2.gemfile
- gemfiles/6.0.gemfile
matrix:
exclude:
- rvm: 2.3.8
gemfile: gemfiles/6.0.gemfile
- rvm: 2.4.7
gemfile: gemfiles/6.0.gemfile | language: ruby
script: script/test
rvm:
- 2.3.8
- 2.4.8
- 2.5.7
- 2.6.5
- 2.7.0
gemfile:
- gemfiles/5.2.gemfile
- gemfiles/6.0.gemfile
matrix:
exclude:
- rvm: 2.3.8
gemfile: gemfiles/6.0.gemfile
- rvm: 2.4.7
gemfile: gemfiles/6.0.gemfile
|
Add webhook for Ansible Galaxy to Travis | ---
language: python
python: "2.7"
sudo: required
services:
- docker
install:
- pip install ansible docker-py
- pip install molecule --pre
script:
- molecule test
| ---
language: python
python: "2.7"
sudo: required
services:
- docker
install:
- pip install ansible docker-py
- pip install molecule --pre
script:
- molecule test
notifications:
webhooks: https://galaxy.ansible.com/api/v1/notifications/
|
Add support for PHP 7.3 | language: php
php:
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- LARAVEL_VERSION=""
- LARAVEL_VERSION="5.5"
- LARAVEL_VERSION="5.6"
- LARAVEL_VERSION="5.7"
install:
- composer self-update --snapshot
- travis/laravel.php
- composer update
script:
- vendor/bin/phpunit
... | language: php
php:
- 7.1
- 7.2
- 7.3
- nightly
matrix:
allow_failures:
- php: nightly
env:
- LARAVEL_VERSION=""
- LARAVEL_VERSION="5.5"
- LARAVEL_VERSION="5.6"
- LARAVEL_VERSION="5.7"
install:
- composer self-update --snapshot
- travis/laravel.php
- composer update
script:
- vendor/bin/... |
Build and test also on OpenJDK 10 and 11 | language: java
jdk:
- oraclejdk8
- openjdk8
- oraclejdk9
services:
- postgresql
before_script:
- psql -c $'create role "mongo-java-server-test" login password \'mongo-java-server-test\';' -U postgres
- psql -c 'create database "mongo-java-server-test" with owner = "mongo-java-server-tes... | language: java
jdk:
- oraclejdk8
- openjdk8
- oraclejdk9
- openjdk10
- openjdk11
services:
- postgresql
before_script:
- psql -c $'create role "mongo-java-server-test" login password \'mongo-java-server-test\';' -U postgres
- psql -c 'create database "mongo-java-server-test" wit... |
Revert "Add more build targets" | language: php
os: linux
dist: xenial
branches:
except:
- v0.5
- v0.6
- v0.6-PHP_5.2
- documentation
services: redis
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
jobs:
fast_finish: true
inc... | language: php
os: linux
dist: xenial
branches:
except:
- v0.5
- v0.6
- v0.6-PHP_5.2
- documentation
services: redis
before_script:
- composer self-update
- composer install --no-interaction --prefer-source --dev
script:
- vendor/bin/phpunit -c phpunit.xml.travisci
jobs:
fast_finish: true
inc... |
Test on both osx and linux | language: r
cache: packages
warnings_are_errors: false
r_github_packages:
- jimhester/covr
after_failure:
find *Rcheck -name '*.fail' -print -exec cat '{}' \;
after_success:
- Rscript -e 'library(covr);codecov()'
| language: r
cache: packages
warnings_are_errors: false
os:
- linux
- osx
r_github_packages:
- jimhester/covr
after_failure:
find *Rcheck -name '*.fail' -print -exec cat '{}' \;
after_success:
- Rscript -e 'library(covr);codecov()'
|
Fix invalid deps and move AttributeFactory to component | language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --dev --prefer-source
script: bin/phpspec run -fpretty --verbose
| language: php
php:
- 5.5
- 5.6
- 7.0
before_script: composer install --no-interaction --prefer-source
script: bin/phpspec run -fpretty --verbose
|
Update to build faketoe properly on new Node | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "iojs"
- "iojs-v1"
- "iojs-v2"
| sudo: false
language: node_js
env:
- CXX="g++-4.8"
node_js:
- "0.10"
- "0.12"
- "4"
- "iojs"
- "iojs-v1"
- "iojs-v2"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- gcc-4.8
|
Use new Travis container-based infrastructure | language: ruby
rvm:
- 2.0
- 2.1
- 2.2
gemfile:
- gemfiles/Gemfile.activerecord-4.1
env:
- DB_ADAPTER=sqlite3
- DB_ADAPTER=mysql2
- DB_ADAPTER=postgresql
before_script:
- mysql -e 'create database microscope_test;'
- psql -c 'create database microscope_test;' -U postgres
script: "echo 'DO IT' && b... | language: ruby
sudo: false
rvm:
- 2.0
- 2.1
- 2.2
gemfile:
- gemfiles/Gemfile.activerecord-4.1
env:
- DB_ADAPTER=sqlite3
- DB_ADAPTER=mysql2
- DB_ADAPTER=postgresql
before_script:
- mysql -e 'create database microscope_test;'
- psql -c 'create database microscope_test;' -U postgres
script: "echo ... |
Revert "release from ruby 2.0" | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- rbx-18mode
deploy:
provider: rubygems
api_key:
secure: ZmZoDL1tilWvQrqRWDm2K4xQ5Grt9eRJzYVZPLANR0P1TM5BJBLk+UhWCWCPkkDVIBWMa5ANsiFYBxtH65Lw+uqMztSpVusk0l0LQXZGv9jMpT9445A8008U3vvfS0ke7IG8Q4bMAC7Sd6VGaiHDyZC7zmNvnqMpmVX7ShcgBME=
gem: dpl
on... | language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-18mode
- rbx-18mode
deploy:
provider: rubygems
api_key:
secure: ZmZoDL1tilWvQrqRWDm2K4xQ5Grt9eRJzYVZPLANR0P1TM5BJBLk+UhWCWCPkkDVIBWMa5ANsiFYBxtH65Lw+uqMztSpVusk0l0LQXZGv9jMpT9445A8008U3vvfS0ke7IG8Q4bMAC7Sd6VGaiHDyZC7zmNvnqMpmVX7ShcgBME=
gem: dpl
on... |
Add the path of the coverage file | language: node_js
node_js:
- "5.10.1"
before_script: "npm install -g codeclimate-test-reporter"
script:
- npm run lint
- $(npm bin)/nyc $(npm bin)/babel-node scripts/batchTests.js
after_script:
- "CODECLIMATE_REPO_TOKEN=27125df6192d300baf67cd5f5eab6597c998256f4883b744a1055d0f0c18e608 codeclimate-test-reporter <... | language: node_js
node_js:
- "5.10.1"
before_script: "npm install -g codeclimate-test-reporter"
script:
- npm run lint
- $(npm bin)/nyc $(npm bin)/babel-node scripts/batchTests.js
after_script:
- "CODECLIMATE_REPO_TOKEN=27125df6192d300baf67cd5f5eab6597c998256f4883b744a1055d0f0c18e608 codeclimate-test-reporter <... |
Stop testing Node 4, explicitly test React 16 | language: node_js
sudo: false
node_js:
- '10'
- '8'
- '6'
- '4'
env:
- MAIN_RUN=true
- MAIN_RUN=false && REACT_VERSION=0.14
- MAIN_RUN=false && REACT_VERSION=15.0
before_install:
- npm install -g npm@2
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- if [[ $MAIN_RUN == false ... | language: node_js
sudo: false
node_js:
- '10'
- '8'
- '6'
env:
- REACT_VERSION=0.14.9
- REACT_VERSION=15.0
- REACT_VERSION=16.0
before_install:
- npm install -g npm@6.4.1
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install react-dom@^$REACT_VERSION react@^$REACT_VERSIO... |
Use stable php7.4 for 1.4 version | language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4snapshot
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverag... | language: php
php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4
before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-source --no-interaction
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover... |
Add looser ranges for node versions | sudo: false
language: node_js
node_js:
- "4.2.4"
- "0.12"
| sudo: false
language: node_js
node_js:
- "5"
- "4"
- "0.12"
|
Fix issue with Travis-CI using old pip version | ---
sudo: false
cache:
- pip
before_cache:
- rm ~/.cache/pip/log/debug.log
language: python
python:
- "2.7"
- "3.5"
install:
- pip install tox-travis coveralls
script:
- tox
after_success:
- coveralls
| ---
sudo: false
cache:
- pip
before_cache:
- rm ~/.cache/pip/log/debug.log
language: python
python:
- "2.7"
- "3.5"
install:
- pip install --upgrade pip
- pip install tox-travis coveralls
script:
- tox
after_success:
- coveralls
|
Fix syntax of the if statement. | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == "5.3" -o "$TRAVIS_PHP_VERSION" == "5.4" ]];
then composer install --dev --prefer-lowest; else
composer install --dev;
fi
script: phpunit --configuration tools/phpunit
aft... | language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: hhvm
before_script:
- if [[ "$TRAVIS_PHP_VERSION" == "5.3" || "$TRAVIS_PHP_VERSION" == "5.4" ]];
then composer install --dev --prefer-lowest; else
composer install --dev;
fi
script: phpunit --configuration tools/phpunit
aft... |
Update from Hackage at 2015-10-08T01:17:25+0000 | homepage: https://github.com/evanrinehart/mikmod
changelog-type: ''
hash: 60237a1ff12149699ae5fe3ba78d6733771c66cd25c438d9565fb59651ae03ea
test-bench-deps: {}
maintainer: evanrinehart@gmail.com
synopsis: MikMod bindings
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <4.8'
all-versions:
- '0.1.0.1'
- '... | homepage: https://github.com/evanrinehart/mikmod
changelog-type: ''
hash: 188d22e59f36dfe68797d38582de7c72e859f2745550a09a7eb4b17c5edfa646
test-bench-deps: {}
maintainer: evanrinehart@gmail.com
synopsis: MikMod bindings
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <4.9'
all-versions:
- '0.1.0.1'
- '... |
Update from Hackage at 2015-10-25T18:16:58+0000 | homepage: http://www.gekkou.co.uk/
changelog-type: ''
hash: baf03df4fa275a3900fbdd9f6512a8cb3f612905e0a57f4abe8f3b6a48746a0c
test-bench-deps:
base: ! '>=4.5 && <5'
QuickCheck: ! '>=2.4 && <2.7'
OddWord: ! '>=1.0 && <1.1'
maintainer: Robin KAY <komadori@gekkou.co.uk>
synopsis: Provides a wrapper for deriving word ... | homepage: http://www.gekkou.co.uk/
changelog-type: ''
hash: 265eb8d268a6e45191ff180fbe14442100f5d9322a2dfd5f6ddd45f3c317bde4
test-bench-deps:
base: ! '>=4.5 && <5'
QuickCheck: ! '>=2.4 && <2.9'
OddWord: ==1.0.*
maintainer: Robin KAY <komadori@gekkou.co.uk>
synopsis: Provides a wrapper for deriving word types with... |
Add support for the openSUSE Leap distributions | ---
galaxy_info:
author: Guillaume Abrioux
description: Handles ceph-ansible initial configuration
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
categories:
- system
dependencies: []
| ---
galaxy_info:
author: Guillaume Abrioux
description: Handles ceph-ansible initial configuration
license: Apache
min_ansible_version: 2.3
platforms:
- name: Ubuntu
versions:
- xenial
- name: EL
versions:
- 7
- name: opensuse
versions:
- 42.3
categories... |
Change version from 3.2 to 3.0 for docker compose | version: '3.2'
services:
rsyslog:
image: webratio/rsyslog-docker:8.18
container_name: rsyslogd
volumes:
- /var/log/docker:/var/log/
ports:
- "10514:10514/udp"
restart: always
| version: '3.0'
services:
rsyslog:
image: webratio/rsyslog-docker:8.18
container_name: rsyslogd
volumes:
- /var/log/docker:/var/log/
ports:
- "10514:10514/udp"
restart: always
|
Exclude not class files from code coverage. | actor: Tester
paths:
tests: tests
log: tests/_output
data: tests/_data
helpers: tests/_support
settings:
bootstrap: _bootstrap.php
colors: true
memory_limit: 1024M
coverage:
remote: false
enabled: true
include:
- lib/*
modules:
config:
Db:
dsn: '... | actor: Tester
paths:
tests: tests
log: tests/_output
data: tests/_data
helpers: tests/_support
settings:
bootstrap: _bootstrap.php
colors: true
memory_limit: 1024M
coverage:
remote: false
enabled: true
include:
- lib/*
exclude:
- lib/Jivoo/Core/assets/*
... |
Change theme to Jekyll Hacker Theme | name: Derek Michael Frank
markdown: kramdown
gems:
- jekyll-coffescript
- jekyll-paginate
- jekyll-watch
- jekyll-sitemap
| name: Derek Michael Frank
markdown: kramdown
theme: jekyll-theme-hacker
gems:
- jekyll-coffescript
- jekyll-paginate
- jekyll-watch
- jekyll-sitemap
|
Fix Helm template for externalWorkloads | {{- if and (or .Values.externalWorkloads.enabled .Values.clustermesh.useAPIServer) .Values.clustermesh.apiserver.tls.auto.enabled (eq .Values.clustermesh.apiserver.tls.auto.method "helm") }}
{{- $_ := include "clustermesh-apiserver-generate-certs.helm.setup-ca" . -}}
{{- $cn := "clustermesh-apiserver.cilium.io" }}
{{- ... | {{- if and (or .Values.externalWorkloads.enabled .Values.clustermesh.useAPIServer) .Values.clustermesh.apiserver.tls.auto.enabled (eq .Values.clustermesh.apiserver.tls.auto.method "helm") }}
{{- $_ := include "clustermesh-apiserver-generate-certs.helm.setup-ca" . -}}
{{- $cn := "clustermesh-apiserver.cilium.io" }}
{{- ... |
Remove some of the version requirements | name: cats_python
dependencies:
- cycler=0.10.0=py27_0
- jpeg=8d=vc9_0
- libpng=1.6.17=vc9_1
- libtiff=4.0.6=vc9_1
- matplotlib=1.5.1=np111py27_0
- mkl=11.3.1=0
- numpy=1.11.0=py27_0
- openssl=1.0.2g=vc9_0
- pandas=0.19.2=np111py27_1
- pip=8.1.1=py27_1
- pyparsing=2.1.1=py27_0
- pyqt=4.11.4=py27_5
- python=2.7.11=4
- p... | name: cats_python
dependencies:
- cycler=0.10.0
- jpeg=8d
- libpng=1.6.17
- libtiff=4.0.6
- matplotlib=1.5.1
- mkl=11.3.1=0
- numpy=1.11.0
- openssl=1.0.2g
- pandas=0.19.2
- pip=8.1.1
- pyparsing=2.1.1
- pyqt=4.11.4
- python=2.7
- python-dateutil=2.5.2
- pytz=2016.3
- qt=4.8.7
- scipy=0.17.0
- setuptools=20.7.0
- sip=4... |
Update syntax for contains function | name: Test and Build
on:
pull_request:
branches:
master
push:
tags:
- 'v*'
jobs:
test:
name: Test GFMRUN
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v1
with:
ref: ${{ github.ref }}
- name: Set up Go 1.13
... | name: Test and Build
on:
pull_request:
branches:
master
push:
tags:
- 'v*'
jobs:
test:
name: Test GFMRUN
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v1
with:
ref: ${{ github.ref }}
- name: Set up Go 1.13
... |
Bump GitHub RSpec build to use Ruby 3 | env:
RUBY_VERSION: 2.6
name: Rails tests
on: [push,pull_request]
jobs:
rspec:
name: RSpec
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
- name: Install dependencies
run: |
... | env:
RUBY_VERSION: 3.0
name: Rails tests
on: [push,pull_request]
jobs:
rspec:
name: RSpec
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
- name: Install dependencies
run: |
... |
Add new binary task to build the jar | resources:
- name: source-code
type: git
source:
uri: https://github.com/devdays-2016/hello-spring-boot.git
branch: master
- name: cf-deploy
type: cf
source:
api: https://api.run.pivotal.io
username: {{cf-username}}
password: {{cf-password}}
organization: devdays
space: development
... | resources:
- name: source-code
type: git
source:
uri: https://github.com/devdays-2016/hello-spring-boot.git
branch: master
- name: cf-deploy
type: cf
source:
api: https://api.run.pivotal.io
username: {{cf-username}}
password: {{cf-password}}
organization: devdays
space: development
... |
Increase github action timeout time to try to get it to work | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubunt... | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubunt... |
Add a missing dependency on package:pedantic | name: flutter_widgets
version: 0.1.6-dev.1
description: >
Flutter widgets that are developed by Google but not by the core
Flutter team.
authors:
- djshuckerow@google.com
- anthony.bullard@gmail.com
- jamesdlin@google.com
- robinsontom@google.com
homepage: https://github.com/google/flutter.widgets
environm... | name: flutter_widgets
version: 0.1.6-dev.1
description: >
Flutter widgets that are developed by Google but not by the core
Flutter team.
authors:
- djshuckerow@google.com
- anthony.bullard@gmail.com
- jamesdlin@google.com
- robinsontom@google.com
homepage: https://github.com/google/flutter.widgets
environm... |
Fix Heroku Github workflow checkout | name: Heroku
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Install databases
run: sudo ... | name: Heroku
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Install databases
run: sudo ... |
Add bower back in, this is needed | machine:
node:
version: 4.4.5
dependencies:
cache_directories:
- /home/ubuntu/nvm/versions/node/v4.4.5/bin
- /home/ubuntu/nvm/versions/node/v4.4.5/lib/node_modules
override:
- npm install
- bower install
- npm rebuild node-sass
deployment:
production:
branch: master
commands:
... | machine:
node:
version: 4.4.5
dependencies:
cache_directories:
- /home/ubuntu/nvm/versions/node/v4.4.5/bin
- /home/ubuntu/nvm/versions/node/v4.4.5/lib/node_modules
override:
- npm install -g bower
- npm install
- bower install
- npm rebuild node-sass
deployment:
production:
branc... |
Revert "Add PHP 7.2 and 7.3 to Travis" | language: php
sudo: false
# As of 2017-07-18 trusty is progressively replacing the default of precise.
# Until 2017-09-01, let's use this new default explicitly already.
# https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming
dist: trusty
matrix:
include:
- php: 5.3
dist: precise
en... | language: php
sudo: false
# As of 2017-07-18 trusty is progressively replacing the default of precise.
# Until 2017-09-01, let's use this new default explicitly already.
# https://blog.travis-ci.com/2017-07-11-trusty-as-default-linux-is-coming
dist: trusty
matrix:
include:
- php: 5.3
dist: precise
en... |
Remove integration tests for now | dist: trusty
sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- node_modules
os:
- linux
before_install:
# Use a virtual display.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# Install latest chrome.
- export CHROME_BIN=chromium-browser
- npm install -g npm@5.0.4
instal... | dist: trusty
sudo: false
language: node_js
node_js:
- "6"
cache:
directories:
- node_modules
os:
- linux
before_install:
# Use a virtual display.
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
# Install latest chrome.
- export CHROME_BIN=chromium-browser
- npm install -g npm@5.0.4
instal... |
Remove ENV from build configuration | language: php
sudo: false
php:
- "5.5"
- "5.6"
- "7"
- "hhvm"
matrix:
include:
- php: "5.5"
env: CHECKSTYLE="YES" COVERAGE="YES"
allow_failures:
- php: "7"
- php: "hhvm"
install: composer install
script: phpunit
| language: php
sudo: false
php:
- "5.5"
- "5.6"
- "7"
- "hhvm"
matrix:
allow_failures:
- php: "7"
- php: "hhvm"
install: composer install
script: phpunit
|
Include PPA without user input | sudo: required
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
- sudo apt-get install gcc-7 g++-7
script:
- gcc-7 --version
- mkdir -p builddir
- cd builddir
- cmake ..
- make
| sudo: required
language: c++
compiler:
- gcc-7
- gcc-8
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update
- sudo apt-get install gcc-7 g++-7
- sudo update-alternatives --set gcc /usr/bin/gcc-7
- sudo update-alternatives --set g++ /usr/bin/g++-7
script:
- gc... |
Use failfast configuration in CI | language: java
jdk: oraclejdk8
script:
- ./gradlew build
- ./gradlew shadow
- java -jar ./detekt-cli/build/libs/detekt-cli-*-all.jar --help
- java -jar ./detekt-cli/build/libs/detekt-cli-*-all.jar -i . --baseline ./reports/baseline.xml -f ".*/test/.*,.*/resources/.*, .*/build/.*" -c ./detekt-cli/src/main/resour... | language: java
jdk: oraclejdk8
script:
- ./gradlew build
- ./gradlew shadow
- java -jar ./detekt-cli/build/libs/detekt-cli-*-all.jar --help
- java -jar ./detekt-cli/build/libs/detekt-cli-*-all.jar -i . --baseline ./reports/baseline.xml -f ".*/test/.*,.*/resources/.*, .*/build/.*" -c ./detekt-cli/src/main/resour... |
Add nf-core testing to Travis config | sudo: required
language: java
jdk: openjdk8
services:
- docker
install:
- mkdir /tmp/nextflow
- cd /tmp/nextflow
- wget -qO- get.nextflow.io | bash
- sudo ln -s /tmp/nextflow/nextflow /usr/local/bin/nextflow
- cd ${TRAVIS_BUILD_DIR}/tests/
env:
- CLFLAGS="" # Basic run
- CLFLAGS="-r" # Ru... | sudo: required
language: java
jdk: openjdk8
services:
- docker
python:
- "2.7"
cache: pip
matrix:
fast_finish: true
install:
# Install Nextflow
- mkdir /tmp/nextflow
- cd /tmp/nextflow
- wget -qO- get.nextflow.io | bash
- sudo ln -s /tmp/nextflow/nextflow /usr/local/bin/nextflow
# Install nf-core/too... |
Enable Travis CI build caching | # Travis-CI configuration for Bioconductor packages
# https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
r:
- bioc-release
- bioc-devel
os:
- linux
- osx
matrix:
exclude:
- os: osx
r: bioc-devel
# blocklist
# branches:
# except:
# - develop
# safelist
# branches:
# only:... | # Travis-CI configuration for Bioconductor packages
# https://docs.travis-ci.com/user/languages/r
language: r
cache: packages
r:
- bioc-release
- bioc-devel
os:
- linux
- osx
matrix:
exclude:
- os: osx
r: bioc-devel
# blocklist
# branches:
# except:
# - develop
# safelist
# branches:
# only:... |
Remove selfupdater and improve coveralls client | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
env:
- COMPOSER_ARGUMENTS=--prefer-lowest
- php: 5.6
env:
- EXECUTE_TEST_COVERALLS=true
- php: 7.0
env:
- EXECUTE_CS_CHECK=t... | sudo: false
language: php
cache:
directories:
- $HOME/.composer/cache
- vendor
matrix:
fast_finish: true
include:
- php: 5.5
env:
- COMPOSER_ARGUMENTS=--prefer-lowest
- php: 5.6
env:
- EXECUTE_TEST_COVERALLS=true
- php: 7.0
env:
- EXECUTE_CS_CHECK=t... |
Use a fixed simulator for Travis. | osx_image: xcode8.2
language: objective-c
cache: bundler
rvm:
- 2.3.1
before_install:
- gem install xcpretty -N --no-ri --no-rdoc
- gem install cocoapods -v '1.2.0' -N --no-ri --no-rdoc
script:
- set -o pipefail
- xcodebuild test -workspace Example/Delirium.xcworkspace -scheme Delirium-Example -destination ... | osx_image: xcode8.2
language: objective-c
cache: bundler
rvm:
- 2.3.1
before_install:
- gem install xcpretty -N --no-ri --no-rdoc
- gem install cocoapods -v '1.2.0' -N --no-ri --no-rdoc
script:
- set -o pipefail
- xcodebuild test -workspace Example/Delirium.xcworkspace -scheme Delirium-Example -destination ... |
Test again JDK 7 + 8 | language: groovy
groovy:
- 2.4.5
jdk:
- oraclejdk7
script: ./gradlew clean build
branches:
except:
- gh-pages
notifications:
email: false
| language: groovy
groovy:
- 2.4.5
jdk:
- oraclejdk8
- oraclejdk7
script: ./gradlew clean build
branches:
except:
- gh-pages
notifications:
email: false
|
Install on Travis with latest npm. | language: node_js
node_js:
- 4
install:
- npm install
script:
- npm run check
| language: node_js
node_js:
- 4
install:
- npm install npm
- npm install
script:
- npm run check
|
Configure Travis to update composer before install | language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
env:
global:
secure: "2RoFj0l11RstXSJZKtTCGksMRVy2b1ecA0Kp96PM7hbGZ6W3sslvemSD6YWN\nLEbKLZlHrbld98x1z0vXGqMTU6FCaXdYNjym59yOgD8caGBgEzmrs3RmgW5l\n3Q/ZVwB6Ld17tlOrGa6igyJ+P8kWvZP0AcriVZJDW5pH49XEAjU="
install:
- ./.travis.install... | language: php
php:
- 5.3
- 5.4
- 5.5
matrix:
allow_failures:
- php: 5.5
env:
global:
secure: "2RoFj0l11RstXSJZKtTCGksMRVy2b1ecA0Kp96PM7hbGZ6W3sslvemSD6YWN\nLEbKLZlHrbld98x1z0vXGqMTU6FCaXdYNjym59yOgD8caGBgEzmrs3RmgW5l\n3Q/ZVwB6Ld17tlOrGa6igyJ+P8kWvZP0AcriVZJDW5pH49XEAjU="
before_install:
- composer s... |
Test on various versions of Shibboleth | sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.7.1
DEBIAN_FRONTEND: noninteractive
before_install:
- sudo apt-get update
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine
- sudo service docker restart
- sudo rm /usr/local/bin/docker-compose
- curl -L https://... | env:
- _SHIBBOLETH_VERSION=2.5.6
- _SHIBBOLETH_VERSION=2.6.0
- _SHIBBOLETH_VERSION=
sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.7.1
DEBIAN_FRONTEND: noninteractive
before_install:
- sudo apt-get update
- sudo apt-get -o Dpkg::Options::="--force-confnew" install -y docker-engine
- ... |
Remove 1.6.x in CI testing | language: go
go:
- 1.6.x
- 1.8.x
- 1.9.x
- tip
go_import_path: go.mercari.io/go-httpdoc
os:
- linux
- osx
sudo: false
install:
- go get -v ./...
script:
- go vet
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
| language: go
go:
- 1.8.x
- 1.9.x
- tip
go_import_path: go.mercari.io/go-httpdoc
os:
- linux
- osx
sudo: false
install:
- go get -v ./...
script:
- go vet
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
|
Install all dependencies in a single command | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
before_install:
- pip install codecov
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt
before_script:
- pip install -r test_requirements.txt
... | # Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install -r requirements.txt -r test_requirements.txt codecov coveralls
# command to run tests, e.g. python setup.py test
scri... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.