Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Exclude irrelevant directories from Scrutinizer config | ---
checks:
php:
code_rating: true
duplication: true
| ---
filter:
excluded_paths: [vendor/*, app/*, web/*]
checks:
php:
code_rating: true
duplication: true
tools:
php_cpd: true
php_pdepend:
excluded_dirs: [vendor]
|
Use dheles fork of chruby role to support jruby | ---
# REM: maunally install before using with
# $ ansible-galaxy install -r requirements.yml
- src: https://github.com/dheles/ansible-role-login-user
name: login-user
- src: https://github.com/dheles/ansible-role-secure-ssh
name: secure-ssh
- src: https://github.com/dheles/deploy-keys-ansible-role
name: deploy-keys
- src: https://github.com/dheles/ansible-role-java.git
name: java
- src: https://github.com/dheles/ansible-role-apache.git
name: apache
- src: https://github.com/dheles/ansible-role-passenger.git
name: passenger
- src: https://github.com/farooqsadiq/ansible-chruby.git
name: chruby
- src: https://github.com/jhu-sheridan-libraries/ansible-role-mysql
name: mysql
- src: https://github.com/dheles/jetty-ansible-role
name: jetty
# git
# node
# open jdk 8
# apache
# passenger
# ruby (2.2.2) (and rails 4.2.4 via bundler)
# MariaDB or MySQL, if there is not a staging db server available
# solr (external, if possible)
# jetty 8 or 9
# capistrano (2.15.9?)
| ---
# REM: maunally install before using with
# $ ansible-galaxy install -r requirements.yml
- src: https://github.com/dheles/ansible-role-login-user
name: login-user
- src: https://github.com/dheles/ansible-role-secure-ssh
name: secure-ssh
- src: https://github.com/dheles/deploy-keys-ansible-role
name: deploy-keys
- src: https://github.com/dheles/ansible-role-java.git
name: java
- src: https://github.com/dheles/ansible-role-apache.git
name: apache
- src: https://github.com/dheles/ansible-role-passenger.git
name: passenger
- src: https://github.com/dheles/ansible-chruby.git
name: chruby
- src: https://github.com/jhu-sheridan-libraries/ansible-role-mysql
name: mysql
- src: https://github.com/dheles/jetty-ansible-role
name: jetty
|
Build Java 1.8 and 11. | name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [1.8, 11]
steps:
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Gradle
run: ./gradlew
| name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11.0.x ]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@master
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
run: ./gradlew
|
Revert "build only master branch, not publish package" | version: 1.2.0.{build}
branches:
only:
- master
pull_requests:
do_not_increment_build_number: true
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
before_build:
- cmd: >-
cd src
nuget restore
cd ..
build:
publish_nuget: false
verbosity: minimal
deploy:
- provider: NuGet
api_key:
secure: Uft/AgWL0ObDUb6hWLhsftRR1sNhLa5vONUcVa/2KjVAYZApxZD6ckJ+ABFQs3bB
skip_symbols: true
artifact: /.*\.nupkg/ | version: 1.2.0.{build}
pull_requests:
do_not_increment_build_number: true
configuration: Release
platform: Any CPU
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
before_build:
- cmd: >-
cd src
nuget restore
cd ..
build:
publish_nuget: true
verbosity: minimal
deploy:
- provider: NuGet
api_key:
secure: Uft/AgWL0ObDUb6hWLhsftRR1sNhLa5vONUcVa/2KjVAYZApxZD6ckJ+ABFQs3bB
skip_symbols: true
artifact: /.*\.nupkg/ |
Add AppSignal to app instrumentation category | name: App Instrumentation
description:
projects:
- better_errors
- bullet
- dashing
- dashing-rails
- fnordmetric
- fozzie
- fozzie_rails
- harness
- meta_request
- metriks
- metriksd
- newrelic_rpm
- peek
- query_trace
- rack-bug
- rack-insight
- rackamole
- rails-footnotes
- rails_instrument
- rails_metrics
- rails_view_annotator
- scout_apm
- slowgrowl
- system-metrics
| name: App Instrumentation
description:
projects:
- appsignal
- better_errors
- bullet
- dashing
- dashing-rails
- fnordmetric
- fozzie
- fozzie_rails
- harness
- meta_request
- metriks
- metriksd
- newrelic_rpm
- peek
- query_trace
- rack-bug
- rack-insight
- rackamole
- rails-footnotes
- rails_instrument
- rails_metrics
- rails_view_annotator
- scout_apm
- slowgrowl
- system-metrics
|
Upgrade RTD build to Python 3.8 | version: 2
sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: true
python:
version: 3.7
install:
- requirements: docs/requirements.txt
| version: 2
sphinx:
builder: html
configuration: docs/conf.py
fail_on_warning: true
python:
version: 3.8
install:
- requirements: docs/requirements.txt
|
Make it build with go-importpath | name: heroku-elopio
version: "5.2.19"
summary: The Heroku CLI is used to manage Heroku apps from the command line.
description: |
This is the next generation Go/Node-based Heroku CLI. Currently, it is not
feature complete with the existing CLI and not intended to be used
standalone.
apps:
heroku:
command: bin/cli
plugs: [network]
parts:
heroku-cli:
source: https://github.com/heroku/cli.git
plugin: go
| name: heroku-elopio
version: "5.2.19"
summary: The Heroku CLI is used to manage Heroku apps from the command line.
description: |
This is the next generation Go/Node-based Heroku CLI. Currently, it is not
feature complete with the existing CLI and not intended to be used
standalone.
apps:
heroku:
command: bin/cli
plugs: [network]
parts:
heroku-cli:
source: https://github.com/heroku/cli.git
plugin: go
go-importpath: github.com/heroku/cli
|
Fix sandbox wand having no mana max | base_bound:
hidden: true
bound: true
keep: true
invulnerable: true
immortal: true
track: true
undroppable: true
indestructible: true
base_wand:
hidden: true
inherit: base_bound
mode: inventory
drop: cycle_hotbar
left_click: cast
right_click: toggle
swap: cycle_hotbar
quiet: 1
effect_bubbles: false
item_attributes:
GENERIC_ATTACK_SPEED: 10
item_attribute_slot: mainhand
base_sword:
hidden: true
inherit: base_bound
mode: inventory
drop: cycle_hotbar
left_click: none
right_click: toggle
swap: cycle_hotbar
quick_cast: true
quiet: 1
base_bow:
hidden: true
inherit: base_bound
mode: inventory
drop: toggle
left_click: none
right_click: none
swap: cycle_hotbar
quiet: 1
sandbox:
inherit: base_wand
name: Sandbox Wand
icon: wood_hoe:6
description: Contains all of the spells you have created
mana: 1000
mana_regeneration: 10
fill: true | base_bound:
hidden: true
bound: true
keep: true
invulnerable: true
immortal: true
track: true
undroppable: true
indestructible: true
base_wand:
hidden: true
inherit: base_bound
mode: inventory
drop: cycle_hotbar
left_click: cast
right_click: toggle
swap: cycle_hotbar
quiet: 1
effect_bubbles: false
item_attributes:
GENERIC_ATTACK_SPEED: 10
item_attribute_slot: mainhand
base_sword:
hidden: true
inherit: base_bound
mode: inventory
drop: cycle_hotbar
left_click: none
right_click: toggle
swap: cycle_hotbar
quick_cast: true
quiet: 1
base_bow:
hidden: true
inherit: base_bound
mode: inventory
drop: toggle
left_click: none
right_click: none
swap: cycle_hotbar
quiet: 1
sandbox:
inherit: base_wand
name: Sandbox Wand
icon: wood_hoe:6
description: Contains all of the spells you have created
mana: 1000
mana_max: 1000
mana_regeneration: 10
fill: true |
Update the CHANGELOG when push-client is promoted to stable | product_key: push-jobs-client
# Slack channel in Chef Software slack to send notifications about build failures, etc
slack:
notify_channel: chef-server-notify
github:
maintainer_group: chef/sustaining-eng-team
merge_actions:
built_in:bump_version:
ignore_labels: "Version: Skip Bump"
bash:.expeditor/update_version.sh:
only_if: built_in:bump_version
built_in:update_changelog:
ignore_labels: "Changelog: Skip Update"
built_in:trigger_omnibus_release_build:
ignore_labels: "Omnibus: Skip Build"
only_if: built_in:bump_version
| product_key: push-jobs-client
# Slack channel in Chef Software slack to send notifications about build failures, etc
slack:
notify_channel: chef-server-notify
github:
maintainer_group: chef/sustaining-eng-team
merge_actions:
built_in:bump_version:
ignore_labels: "Version: Skip Bump"
bash:.expeditor/update_version.sh:
only_if: built_in:bump_version
built_in:update_changelog:
ignore_labels: "Changelog: Skip Update"
built_in:trigger_omnibus_release_build:
ignore_labels: "Omnibus: Skip Build"
only_if: built_in:bump_version
artifact_actions:
promoted_to_stable:
built_in:rollover_changelog:
|
Update from Hackage at 2020-08-11T04:46:16Z | homepage: ''
changelog-type: ''
hash: 1b995e3173d352278a67709b9d03d409005c1177a61295ce058384c4c9202d1b
test-bench-deps:
hlint: -any
yesod-test: -any
base: ==4.*
hspec: ! '>=1.3'
text: -any
yesod: -any
yesod-auth-basic: -any
maintainer: creichert07@gmail.com
synopsis: Yesod Middleware for HTTP Basic Authentication
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
wai: -any
base: ==4.*
base64-bytestring: -any
text: -any
word8: -any
yesod: -any
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.0.2
author: Christopher Reichert
latest: 0.1.0.2
description-type: haddock
description: ! 'An efficient Yesod middleware middleware for HTTP Basic
Authentication.
Utilizes Yesod request-local caching mechanisms to store valid auth
credentials found in the Authorization header.'
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: fa29eae24f9eb7983eb263701a76bf5729cc0bb7081859ad0bcf648ddca5c77a
test-bench-deps:
yesod-test: -any
base: ==4.*
hspec: '>=1.3'
text: -any
yesod: -any
yesod-auth-basic: -any
maintainer: creichert07@gmail.com
synopsis: Yesod Middleware for HTTP Basic Authentication
changelog: ''
basic-deps:
exceptions: -any
bytestring: -any
wai: -any
base: ==4.*
base64-bytestring: -any
text: -any
monad-control: -any
word8: -any
yesod: -any
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.0.2
- 0.1.0.3
author: Christopher Reichert
latest: 0.1.0.3
description-type: haddock
description: |-
An efficient Yesod middleware middleware for HTTP Basic
Authentication.
Utilizes Yesod request-local caching mechanisms to store valid auth
credentials found in the Authorization header.
license-name: BSD-3-Clause
|
Update from Forestry.io - Updated Forestry configuration | ---
label: Gallery
hide_body: true
fields:
- type: field_group_list
name: Sp94 guide montage
label: Sp94 guide montage
fields:
- type: file
name: file
label: file
- type: text
name: description
label: description
| ---
label: Gallery
hide_body: true
fields:
- type: field_group_list
name: photo
label: Photo
fields:
- type: file
name: file
label: File
- type: text
name: description
label: Description
config:
labelField: description
|
Update from Hackage at 2019-01-24T18:26:46Z | homepage: http://github.com/GregorySchwartz/spectral-clustering#readme
changelog-type: ''
hash: 51c49936026dd60bd1fe4690ea97042154c160acd27ce814ab475146ef1cf2d0
test-bench-deps: {}
maintainer: gsch@mail.med.upenn.edu
synopsis: Library for spectral clustering.
changelog: ''
basic-deps:
mwc-random: ! '>=0.13.6.0'
clustering: ! '>=0.4.0'
base: ! '>=4.7 && <5'
eigen: ==3.3.4.1
sparse-linear-algebra: ! '>=0.3.1'
statistics: ! '>=0.14.0.2'
hmatrix-svdlibc: ! '>=0.5.0.1'
hmatrix: ! '>=0.19.0.0'
safe: ! '>=0.3.17'
vector: ! '>=0.12.0.1'
all-versions:
- 0.2.1.1
- 0.2.1.2
- 0.2.1.3
- 0.2.1.4
author: Gregory W. Schwartz
latest: 0.2.1.4
description-type: haddock
description: Spectral clustering of a matrix.
license-name: GPL-3.0-only
| homepage: http://github.com/GregorySchwartz/spectral-clustering#readme
changelog-type: ''
hash: 6e248180bcd1fc586f7bb5ec6ff3452f32daa9eaf6fb846b3fb6940c6cd4efcb
test-bench-deps: {}
maintainer: gsch@mail.med.upenn.edu
synopsis: Library for spectral clustering.
changelog: ''
basic-deps:
mwc-random: ! '>=0.13.6.0'
clustering: ! '>=0.4.0'
base: ! '>=4.7 && <5'
eigen: ==3.3.4.1
sparse-linear-algebra: ! '>=0.3.1'
statistics: ! '>=0.14.0.2'
hmatrix-svdlibc: ! '>=0.5.0.1'
hmatrix: ! '>=0.19.0.0'
safe: ! '>=0.3.17'
vector: ! '>=0.12.0.1'
all-versions:
- 0.2.1.1
- 0.2.1.2
- 0.2.1.3
- 0.2.1.4
- 0.2.2.0
author: Gregory W. Schwartz
latest: 0.2.2.0
description-type: haddock
description: Spectral clustering of a matrix.
license-name: GPL-3.0-only
|
Update build matrix to ensure both builds are run | language: php
sudo: false
php:
- 7.2
env:
global:
- DRIVER_VERSION="stable"
- COMPOSER_FLAGS="--prefer-dist"
matrix:
include:
- php: 7.2
env: DRIVER_VERSION="1.5.0" COMPOSER_FLAGS="--prefer-dist --prefer-lowest" PHPUNIT_FLAGS="--coverage-clover=coverage.clover"
cache:
directories:
- $HOME/.composer/cache
services: mongodb
install:
- composer self-update
- pecl install -f mongodb-${DRIVER_VERSION}
- composer update ${COMPOSER_FLAGS}
script:
- ./vendor/bin/phpunit ${PHPUNIT_FLAGS}
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
| language: php
sudo: false
php:
- 7.2
env:
global:
- DRIVER_VERSION="stable"
- COMPOSER_FLAGS="--prefer-dist"
matrix:
include:
- php: 7.2
env: DRIVER_VERSION="stable" COMPOSER_FLAGS="--prefer-dist"
- php: 7.2
env: DRIVER_VERSION="1.5.0" COMPOSER_FLAGS="--prefer-dist --prefer-lowest" PHPUNIT_FLAGS="--coverage-clover=coverage.clover"
cache:
directories:
- $HOME/.composer/cache
services: mongodb
install:
- composer self-update
- pecl install -f mongodb-${DRIVER_VERSION}
- composer update ${COMPOSER_FLAGS}
script:
- ./vendor/bin/phpunit ${PHPUNIT_FLAGS}
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
|
Update text to include v/j filter | language:
- java
- groovy
jdk:
- oraclejdk8
before_install:
- git clone https://github.com/mikessh/vdjtools.git
- cd vdjtools/
- git checkout tags/1.0.7
- mvn clean install -q
- cd ..
script:
- java -Xmx4G -jar `ls build/libs/vdjdb-*.jar` -S human -R TRB src/test/resources/sergey_anatolyevich.gz test
- if [[ ! -s test.sergey_anatolyevich.annot.txt ]]; then exit 1; fi | language:
- java
- groovy
jdk:
- oraclejdk8
before_install:
- git clone https://github.com/mikessh/vdjtools.git
- cd vdjtools/
- git checkout tags/1.0.7
- mvn clean install -q
- cd ..
script:
- java -Xmx4G -jar `ls build/libs/vdjdb-*.jar` -v -j -S human -R TRB src/test/resources/sergey_anatolyevich.gz test
- if [[ ! -s test.sergey_anatolyevich.annot.txt ]]; then exit 1; fi |
Switch the Python 3.3 Travis special-casing from exclude to include | # Use the faster container-based infrastructure.
sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
install: travis_retry pip install 'requests>=2.9,<2.10' $DJANGO_VERSION
env:
global:
- PYTHONWARNINGS=all DJANGO_SETTINGS_MODULE=tests.django_settings
matrix:
- DJANGO_VERSION='Django>=1.8,<1.9'
- DJANGO_VERSION='Django>=1.9,<1.10'
matrix:
exclude:
- python: 3.3
env: DJANGO_VERSION='Django>=1.9,<1.10'
fast_finish: true
script: python -m unittest discover
| # Use the faster container-based infrastructure.
sudo: false
language: python
python:
- 2.7
- 3.4
- 3.5
- pypy
install: travis_retry pip install 'requests>=2.9,<2.10' $DJANGO_VERSION
env:
global:
- PYTHONWARNINGS=all DJANGO_SETTINGS_MODULE=tests.django_settings
matrix:
- DJANGO_VERSION='Django>=1.8,<1.9'
- DJANGO_VERSION='Django>=1.9,<1.10'
matrix:
include:
- python: 3.3
env: DJANGO_VERSION='Django>=1.8,<1.9'
fast_finish: true
script: python -m unittest discover
|
Use sudo: false on Travis | language: python
install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
- conda config --add channels conda-forge
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment python=3.5 pip mpmath matplotlib pytest pyflakes numpy scipy pyne
- source activate test-environment
# Change to git+git://github.com/sympy/sympy.git when
# https://github.com/sympy/sympy/pull/12088 is merged.
- pip install git+git://github.com/asmeurer/sympy.git@Float-prec-fix
script:
- pyflakes transmutagen py_solve setup.py
- py.test transmutagen
| language: python
sudo: false
install:
- sudo apt-get update
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no --set show_channel_urls yes
- conda config --add channels conda-forge
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment python=3.5 pip mpmath matplotlib pytest pyflakes numpy scipy pyne
- source activate test-environment
# Change to git+git://github.com/sympy/sympy.git when
# https://github.com/sympy/sympy/pull/12088 is merged.
- pip install git+git://github.com/asmeurer/sympy.git@Float-prec-fix
script:
- pyflakes transmutagen py_solve setup.py
- py.test transmutagen
|
Build a NuGet package after every build. | services:
- mysql
build_script:
- ps: .\.ci\build.ps1
before_test:
- cmd: |-
"C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql.exe" -u root --password=Password12! < .ci\server\init.sql
test_script:
- ps: .\.ci\test.ps1
notifications:
- provider: Slack
incoming_webhook:
secure: SRJ5fYQE4tvelyqeX3Lkv0gXta3O2pl4/+wNaqmqmcFkmYBe+U31T5YCGhipBOVhHBIZLevihOJZ78sFVJrmAFV5bHgtX/VPIKEXN+7ytis=
| services:
- mysql
build_script:
- ps: .\.ci\build.ps1
before_test:
- cmd: |-
"C:\Program Files\MySQL\MySQL Server 5.7\bin\mysql.exe" -u root --password=Password12! < .ci\server\init.sql
test_script:
- ps: .\.ci\test.ps1
after_test:
- cmd: dotnet pack src\MySqlConnector\MySqlConnector.csproj --configuration Release
notifications:
- provider: Slack
incoming_webhook:
secure: SRJ5fYQE4tvelyqeX3Lkv0gXta3O2pl4/+wNaqmqmcFkmYBe+U31T5YCGhipBOVhHBIZLevihOJZ78sFVJrmAFV5bHgtX/VPIKEXN+7ytis=
|
Add New Scenarios to Travis | ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
| ---
language: node_js
node_js:
- "0.12"
sudo: false
cache:
directories:
- node_modules
env:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-1.13
- EMBER_TRY_SCENARIO=ember-2.0
- EMBER_TRY_SCENARIO=ember-2.1
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- "npm config set spin false"
- "npm install -g npm@^2"
install:
- npm install -g bower
- npm install
- bower install
script:
- ember try $EMBER_TRY_SCENARIO test
|
Add some perl dependencies before_install | language: perl
perl:
- "5.20"
- "5.18"
- "5.16"
- "5.14"
before_install:
- ./setup.sh
install: true
script:
- prove -I src/perl5 -r tests/perl_tests
| language: perl
perl:
- "5.20"
- "5.18"
- "5.16"
- "5.14"
before_install:
- cpanm PerlIO::gzip
- cpanm GD::Image
- ./setup.sh
install: true
script:
- prove -I src/perl5 -r tests/perl_tests
|
Upgrade pip and setuptools in Travis | language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
install: pip install tox-travis coveralls
script: tox
after_success: coveralls
deploy:
provider: pypi
user: ${PYPI_USERNAME}
password: ${PYPI_PASSWORD}
distributions: sdist bdist_wheel
on:
tags: true
| language: python
python:
- 2.7
- 3.4
- 3.5
- 3.6
install: pip install --upgrade pip setuptools tox-travis coveralls
script: tox
after_success: coveralls
deploy:
provider: pypi
user: ${PYPI_USERNAME}
password: ${PYPI_PASSWORD}
distributions: sdist bdist_wheel
on:
tags: true
|
Send me emails with testing results | language: python
python:
- 2.7
- 3.4
notifications:
email: false
# Setup anaconda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
# Install packages
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib nose seaborn
# Run test
script:
- nosetests
# Calculate coverage
after_success:
- coveralls --config_file .coveragerc | language: python
python:
- 2.7
- 3.4
notifications:
email: true
# Setup anaconda
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- chmod +x miniconda.sh
- ./miniconda.sh -b
- export PATH=/home/travis/miniconda/bin:$PATH
- conda update --yes conda
# The next couple lines fix a crash with multiprocessing on Travis and are not specific to using Miniconda
- sudo rm -rf /dev/shm
- sudo ln -s /run/shm /dev/shm
# Install packages
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy matplotlib nose seaborn
# Run test
script:
- nosetests
# Calculate coverage
after_success:
- coveralls --config_file .coveragerc |
Stop testing on Travis/JRuby, bring back 1.9.3 | language: ruby
rvm:
#- 1.8.7 # no, since it doesn't get fun(a, *b, c) or fun0\n.fun1
#- 1.9.3 # started breaking on Travis September 2017
#- 2.1.1
- 2.2.2
- 2.3.1
- 2.4.1
- jruby-19mode
- jruby-20mode
script: bundle exec rspec
branches:
only:
- master
#except:
# - master
sudo: false
cache: bundler
#env:
# - FLOR_DEFAULT_TIMEOUT=7
| language: ruby
rvm:
#- 1.8.7 # no, since it doesn't get fun(a, *b, c) or fun0\n.fun1
- 1.9.3 # Travis broken September 2017
#- 2.1.1
- 2.2.2
- 2.3.1
- 2.4.1
#- jruby-19mode # Travis broken September 2017
#- jruby-20mode # Travis broken September 2017
script: bundle exec rspec
branches:
only:
- master
#except:
# - master
sudo: false
cache: bundler
#env:
# - FLOR_DEFAULT_TIMEOUT=7
|
Use ruby 2.1.5 instead of 2.1.0 on Travis | language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
| language: ruby
cache: bundler
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
|
Increase Node.js version to 10 | language: node_js
node_js:
- "8"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3
- export PATH=$HOME/.yarn/bin:$PATH
install: yarn
jobs:
include:
- stage: test
script: yarn test
- stage: deploy
script: bash ./.travis-deploy.sh
cache:
yarn: true
directories:
- node_modules
| language: node_js
node_js:
- "10"
before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.12.3
- export PATH=$HOME/.yarn/bin:$PATH
install: yarn
jobs:
include:
- stage: test
script: yarn test
- stage: deploy
script: bash ./.travis-deploy.sh
cache:
yarn: true
directories:
- node_modules
|
Correct the Python/Django version matrix for Travis. | language: python
sudo: false
python:
- "3.5"
- "3.4"
- "3.3"
- "2.7"
env:
- DJANGO_VERSION=1.8.7
- DJANGO_VERSION=1.9
install:
- pip install coverage>=4.0
- pip install flake8
- pip install -q Django==$DJANGO_VERSION
matrix:
exclude:
- python: "3.2"
env: DJANGO_VERSION=1.9
script:
- coverage run setup.py test
- flake8 registration
- coverage report -m
| language: python
sudo: false
python:
- "3.5"
- "3.4"
- "3.3"
- "3.2"
- "2.7"
env:
- DJANGO_VERSION=1.8.7
- DJANGO_VERSION=1.9
install:
- pip install coverage>=4.0
- pip install flake8
- pip install -q Django==$DJANGO_VERSION
matrix:
exclude:
- python: "3.2"
env: DJANGO_VERSION=1.9
- python: "3.3"
env: DJANGO_VERSION=1.9
script:
- coverage run setup.py test
- flake8 registration
- coverage report -m
|
Build using multicore by adding '-j4' option to make command | language: cpp
os:
- linux
- osx
sudo: required
dist: trusty
compiler:
- gcc
- clang
env:
- BUILD_TYPE=Debug COVERALLS=OFF
- BUILD_TYPE=Release COVERALLS=OFF
matrix:
include:
- os: linux
compiler: gcc
env: BUILD_TYPE=Debug COVERALLS=ON COVERALLS_REPO_TOKEN=FKh1HgwfV5uzNrYxIT6ZWjcFqybYZSUym
exclude:
- os: osx
compiler: gcc
install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then 'ci/install_linux.sh' ; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then 'ci/install_osx.sh' ; fi
script:
- mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DDART_COVERALLS=$COVERALLS ..
- make all tutorials examples tests test
- if [ $COVERALLS = ON ]; then make coveralls; fi
after_failure:
- cat Testing/Temporary/LastTest.log
- cat Testing/Temporary/LastTestsFailed.log
| language: cpp
os:
- linux
- osx
sudo: required
dist: trusty
compiler:
- gcc
- clang
env:
- BUILD_TYPE=Debug COVERALLS=OFF
- BUILD_TYPE=Release COVERALLS=OFF
matrix:
include:
- os: linux
compiler: gcc
env: BUILD_TYPE=Debug COVERALLS=ON COVERALLS_REPO_TOKEN=FKh1HgwfV5uzNrYxIT6ZWjcFqybYZSUym
exclude:
- os: osx
compiler: gcc
install:
- if [ "$TRAVIS_OS_NAME" = "linux" ]; then 'ci/install_linux.sh' ; fi
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then 'ci/install_osx.sh' ; fi
script:
- mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DDART_COVERALLS=$COVERALLS ..
- make -j4 all tutorials examples tests test
- if [ $COVERALLS = ON ]; then make -j4 coveralls; fi
after_failure:
- cat Testing/Temporary/LastTest.log
- cat Testing/Temporary/LastTestsFailed.log
|
Make Travis use Node 6.1 | sudo: false
language: node_js
node_js:
- "5.6"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run lint && npm test
notifications:
slack:
secure: bDwO2uce5JAZvjrvWj4+/+yEXJAIK4O0RcgUWvZ2IMbi7Q9I89Mw40JmkLWL6x2gWZwxr8+FoLtErJA7RVrsfImjrX+NmMyAB7AydLdrBJtkLozNnuacnhcnBRyp1gGCa1ymxCEXGbgC6onAD3kiJJhggr70T+2lu3IuJYXENhc=
env:
- CXX=g++-4.8 NODE_ENV=test
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- xvfb
- g++-4.8
- libgnome-keyring-dev
| sudo: false
language: node_js
node_js:
- "6.1"
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script:
- npm run lint && npm test
notifications:
slack:
secure: bDwO2uce5JAZvjrvWj4+/+yEXJAIK4O0RcgUWvZ2IMbi7Q9I89Mw40JmkLWL6x2gWZwxr8+FoLtErJA7RVrsfImjrX+NmMyAB7AydLdrBJtkLozNnuacnhcnBRyp1gGCa1ymxCEXGbgC6onAD3kiJJhggr70T+2lu3IuJYXENhc=
env:
- CXX=g++-4.8 NODE_ENV=test
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- xvfb
- g++-4.8
- libgnome-keyring-dev
|
Use the latest rubies on Travis CI | language: ruby
rvm:
- 2.2.4
- 2.3.0
- jruby-9.0.0.0
before_install: gem update bundler
script: bundle exec rake ci
sudo: false
cache: bundler
| language: ruby
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
- jruby-9.1.10.0
before_install: gem update bundler
script: bundle exec rake ci
sudo: false
cache: bundler
|
Remove support for PHP 7.1 | language: php
php:
- 7.1
- 7.2
- 7.3
env:
matrix:
- COMPOSER_FLAGS=""
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- vendor/bin/phpstan analyse
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml
| language: php
php:
- 7.2
- 7.3
env:
matrix:
- COMPOSER_FLAGS=""
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-source
script:
- vendor/bin/phpstan analyse
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.xml
|
Change PHPunit for hhvm test | language: php
php:
- 5.4
- 5.5
- hhvm
before_script:
- alias composer="hhvm -v ResourceLimit.SocketDefaultTimeout=30 -v Http.SlowQueryThreshold=30000 -v Eval.Jit=false /usr/local/bin/composer"
- composer self-update
- composer install --dev
- psql -c 'DROP DATABASE IF EXISTS code_generator;' -U postgres
- psql -c 'create database code_generator; ' -U postgres
- psql -U postgres -d code_generator -a -f ./tests/pg-table.sql
script:
- mkdir -p build
- mkdir -p build/logs
- phpunit --coverage-clover coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
matrix:
allow_failures:
- php: hhvm
notifications:
email:
- demonchaux.stephane@gmail.com | language: php
php:
- 5.4
- 5.5
- hhvm
before_script:
- alias composer="hhvm -v ResourceLimit.SocketDefaultTimeout=30 -v Http.SlowQueryThreshold=30000 -v Eval.Jit=false /usr/local/bin/composer"
- composer self-update
- composer require 'phpunit/phpunit=4.0.*'
- alias phpunit='hhvm -v Eval.Jit=false ./vendor/bin/phpunit'
- composer install --dev
- psql -c 'DROP DATABASE IF EXISTS code_generator;' -U postgres
- psql -c 'create database code_generator; ' -U postgres
- psql -U postgres -d code_generator -a -f ./tests/pg-table.sql
script:
- mkdir -p build
- mkdir -p build/logs
- phpunit --coverage-clover coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
matrix:
allow_failures:
- php: hhvm
notifications:
email:
- demonchaux.stephane@gmail.com |
Build using Java 8 as Java 7 has been removed from some TravisCI nodes | language: ruby
jdk:
- oraclejdk7
sudo: false
rvm:
- 2.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
| language: ruby
jdk:
- oraclejdk8
sudo: false
rvm:
- 2.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr clean package
git:
depth: 10
|
Update Travis CI ruby versions | language: ruby
rvm:
- 2.0.0
- 2.1.5
- 2.2.1
| language: ruby
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
|
Revert "use script for tests" | language: ruby
script:
- script/testsuite
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
| language: ruby
script:
- bundle exec rake test
rvm:
- 1.9.3
- 2.0.0
- 2.1.2
|
Use the default Rake task | language: ruby
cache: bundler
sudo: false
before_install:
- gem install bundler
rvm:
- 2.3
- 2.7
- 3.0
- jruby
script: 'bundle exec rspec spec/idn_spec.rb'
| language: ruby
cache: bundler
sudo: false
before_install:
- gem install bundler
rvm:
- 2.3
- 2.7
- 3.0
- jruby
|
Test on 2.3 instead of ruby-head | sudo: false
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- '2.0'
- 2.1
- 2.2
- ruby-head
- jruby-18mode
- jruby-19mode
- jruby-9.0.4.0
env:
- BUNDLE_WITHOUT=secondary:development
- BUNDLE_WITHOUT=primary:development
matrix:
allow_failures:
- env: BUNDLE_WITHOUT=primary:development
| sudo: false
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- '2.0'
- 2.1
- 2.2
- 2.3
- jruby-18mode
- jruby-19mode
- jruby-9.0.4.0
env:
- BUNDLE_WITHOUT=secondary:development
- BUNDLE_WITHOUT=primary:development
matrix:
allow_failures:
- env: BUNDLE_WITHOUT=primary:development
|
Use node 0.10.48 on Travis CI. | sudo: false
language: node_js
node_js:
- "0.10.40"
install:
- "npm install"
script:
- "npm test"
| sudo: false
language: node_js
node_js:
- "0.10.48"
install:
- "npm install"
script:
- "npm test"
|
Add node 4.2.1 to Travis config | language: node_js
node_js:
- 0.8
- 0.9
| language: node_js
node_js:
- 0.8
- 0.9
- 4.2.1
|
Update git before trying to unshallow | language: cpp
compiler:
- gcc
notifications:
email: false
before_install:
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
- sudo add-apt-repository ppa:staticfloat/julianightlies -y
- sudo apt-get update -qq -y
- sudo apt-get install libpcre3-dev julia -y
- git config --global user.name "Travis User"
- git config --global user.email "travis@example.net"
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
script:
- julia -e 'versioninfo(); Pkg.init(); Pkg.clone(pwd())'
- julia ./run_tests.jl
| language: cpp
compiler:
- gcc
notifications:
email: false
before_install:
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
- sudo add-apt-repository ppa:staticfloat/julianightlies -y
- sudo apt-get update -qq -y
- sudo apt-get install git libpcre3-dev julia -y
- git config --global user.name "Travis User"
- git config --global user.email "travis@example.net"
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
script:
- julia -e 'versioninfo(); Pkg.init(); Pkg.clone(pwd())'
- julia ./run_tests.jl
|
Add PHP 5.5 to testsuite | language: php
php:
- 5.3
- 5.4
before_script:
- composer self-update
- composer install --dev --prefer-source
script:
- phpunit
- ./vendor/bin/phpcs --standard=PSR2 ./src/
notifications:
irc: "irc.freenode.org#zftalk.modules"
email: false
| language: php
php:
- 5.3
- 5.4
- 5.5
before_script:
- composer self-update
- composer install --dev --prefer-source
script:
- phpunit
- ./vendor/bin/phpcs --standard=PSR2 ./src/
notifications:
irc: "irc.freenode.org#zftalk.modules"
email: false
|
Use ^2.1.0 for satooshi/php-coveralls when building | language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
- 7.2
matrix:
allow_failures:
- php: 7.0
fast_finish: true
include:
- php: 5.6
env:
- COVERALLS=1
before_script:
- composer self-update
- rm composer.lock
- composer install --prefer-dist --no-interaction
- sh -c "if [ '$COVERALLS' = '1' ]; then composer require --dev satooshi/php-coveralls:dev-master; fi"
- sh -c "if [ '$COVERALLS' = '1' ]; then mkdir -p build/logs; fi"
script:
- phpunit
- sh -c "if [ '$COVERALLS' = '1' ]; then phpunit --stderr --coverage-clover build/logs/clover.xml; fi"
- sh -c "if [ '$COVERALLS' = '1' ]; then php vendor/bin/coveralls -c .coveralls.yml -v; fi"
notifications:
email: false
| language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
- 7.2
matrix:
allow_failures:
- php: 7.0
fast_finish: true
include:
- php: 5.6
env:
- COVERALLS=1
before_script:
- composer self-update
- rm composer.lock
- composer install --prefer-dist --no-interaction
- sh -c "if [ '$COVERALLS' = '1' ]; then composer require --dev satooshi/php-coveralls:"^2.1.0"; fi"
- sh -c "if [ '$COVERALLS' = '1' ]; then mkdir -p build/logs; fi"
script:
- phpunit
- sh -c "if [ '$COVERALLS' = '1' ]; then phpunit --stderr --coverage-clover build/logs/clover.xml; fi"
- sh -c "if [ '$COVERALLS' = '1' ]; then php vendor/bin/coveralls -c .coveralls.yml -v; fi"
notifications:
email: false
|
Remove rbx from rubies, will not work | language: ruby
rvm:
- '2.2'
- '2.3'
- jruby
- rbx-2
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
| language: ruby
rvm:
- '2.2'
- '2.3'
- jruby
# uncomment this line if your project needs to run something other than `rake`:
# script: bundle exec rspec spec
|
Disable compiling extension for HHVM | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer selfupdate
- composer install --prefer-source --dev
install:
- |
git clone git://github.com/bitcoin/secp256k1.git libsecp256k1 \
&& cd libsecp256k1 \
&& ./autogen.sh && ./configure && make && sudo make install \
&& cd ..
- |
git clone git://github.com/Bit-Wasp/secp256k1-php
cd secp256k1-php/secp256k1 \
&& phpize && ./configure && make && sudo make install \
&& cd ../..
- composer update
script:
- php bin/phpunit --coverage-clover build/logs/clover.xml
- php bin/phpcs -n --standard=PSR1,PSR2 --report=full src/
## - php bin/phpmd src/ text build/rulesets/phpmd.xml
after_script:
- php vendor/bin/coveralls
- wget https://scrutinizer-ci.com/ocular.phar
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi;'
matrix:
fast_finish: true
| language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
before_script:
- composer selfupdate
- composer install --prefer-source --dev
install:
- | sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; \
git clone git://github.com/bitcoin/secp256k1.git libsecp256k1 \
&& cd libsecp256k1 \
&& ./autogen.sh && ./configure && make && sudo make install \
&& cd ..'
fi
- |
sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; \
git clone git://github.com/Bit-Wasp/secp256k1-php
&& cd secp256k1-php/secp256k1 \
&& phpize && ./configure && make && sudo make install \
&& cd ../..
fi
- composer update
script:
- php bin/phpunit --coverage-clover build/logs/clover.xml
- php bin/phpcs -n --standard=PSR1,PSR2 --report=full src/
## - php bin/phpmd src/ text build/rulesets/phpmd.xml
after_script:
- php vendor/bin/coveralls
- wget https://scrutinizer-ci.com/ocular.phar
- sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi;'
matrix:
fast_finish: true
|
Use a version of coverage compatible with Python 3.2 | sudo: false
language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
env:
- REQUIREMENTS="django>=1.7,<1.8"
- REQUIREMENTS="django>=1.8,<1.9"
- REQUIREMENTS="https://github.com/django/django/archive/master.tar.gz"
matrix:
exclude:
- python: 3.2
env: REQUIREMENTS="https://github.com/django/django/archive/master.tar.gz"
allow_failures:
- env: REQUIREMENTS="https://github.com/django/django/archive/master.tar.gz"
cache: pip
install: pip install $REQUIREMENTS mock flake8 coveralls
script: python -R -Wonce `which coverage` run `which django-admin.py` test colorful --pythonpath=`pwd` --settings=colorful.tests.settings -v2
after_success:
- flake8
- coverage report -m
- coveralls
| sudo: false
language: python
python:
- 2.7
- 3.2
- 3.3
- 3.4
env:
- REQUIREMENTS="django>=1.7,<1.8"
- REQUIREMENTS="django>=1.8,<1.9"
- REQUIREMENTS="https://github.com/django/django/archive/master.tar.gz"
matrix:
exclude:
- python: 3.2
env: REQUIREMENTS="https://github.com/django/django/archive/master.tar.gz"
allow_failures:
- env: REQUIREMENTS="https://github.com/django/django/archive/master.tar.gz"
cache: pip
install: pip install $REQUIREMENTS "coverage<4.0" mock flake8 coveralls
script: python -R -Wonce `which coverage` run `which django-admin.py` test colorful --pythonpath=`pwd` --settings=colorful.tests.settings -v2
after_success:
- flake8
- coverage report -m
- coveralls
|
Fix allowed failures in Travis CI and add jruby/rails4 | language: ruby
script: "bundle exec rspec spec"
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_BRANCH="4-0-stable"
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERSION="~> 3.2.0"
- ACTIVE_RECORD_VERSION="~> 3.1.0"
- ACTIVE_RECORD_VERSION="~> 3.0.0"
matrix:
allow_failures:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_BRANCH="4-0-stable"
| language: ruby
script: "bundle exec rspec spec"
rvm:
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
env:
- ACTIVE_RECORD_BRANCH="master"
- ACTIVE_RECORD_BRANCH="4-0-stable"
- ACTIVE_RECORD_VERSION="~> 4.0.0"
- ACTIVE_RECORD_VERSION="~> 3.2.0"
- ACTIVE_RECORD_VERSION="~> 3.1.0"
- ACTIVE_RECORD_VERSION="~> 3.0.0"
matrix:
allow_failures:
- env: ACTIVE_RECORD_BRANCH="master"
- env: ACTIVE_RECORD_BRANCH="4-0-stable"
- rvm: jruby-19mode
env: ACTIVE_RECORD_VERSION="~> 4.0.0"
|
Add Node.js 6.3.1 to Travis build. | language: node_js
node_js:
- "5.0.0"
- "4.1.1"
- "4.1.1"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
- "iojs-v1.0.4"
| language: node_js
node_js:
- "6.3.1"
- "5.0.0"
- "4.1.1"
- "4.1.1"
- "0.12"
- "0.11"
- "0.10"
- "iojs"
- "iojs-v1.0.4"
|
Enable Xdebug for code coverage support | language: php
php:
- 7.0
- 7.1
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_install:
- phpenv config-rm xdebug.ini
- travis_retry composer self-update
install:
- composer install --no-interaction --prefer-dist --no-suggest
script: vendor/bin/phpunit
| language: php
php:
- 7.0
- 7.1
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_install:
- travis_retry composer self-update
install:
- composer install --no-interaction --prefer-dist --no-suggest
script: vendor/bin/phpunit
|
Allow failure on jruby on Travis | bundler_args: --without development
language: ruby
rvm:
- jruby-19mode
- rbx-19mode
- 1.9.3
- 2.0.0
matrix:
allow_failures:
- rvm: rbx-19mode
env:
- OCTONAUT_TEST_LOGIN="api-padawan" OCTONAUT_TEST_TOKEN="6a21f190e3422bf89afa8b360d923b0c30e8fbfa"
before_script:
- chmod 600 tmp/fakehome/.netrc
| bundler_args: --without development
language: ruby
rvm:
- jruby-19mode
- rbx-19mode
- 1.9.3
- 2.0.0
- 2.1.0
matrix:
allow_failures:
- rvm:
- rbx-19mode
- jruby-19mode
env:
- OCTONAUT_TEST_LOGIN="api-padawan" OCTONAUT_TEST_TOKEN="6a21f190e3422bf89afa8b360d923b0c30e8fbfa"
before_script:
- chmod 600 tmp/fakehome/.netrc
|
Add more testing to Travis CI | language: go
go:
- 1.x
| language: go
go:
- 1.x
- master
matrix:
allow_failures:
- go: master
fast_finish: true
before_script :
- go get github.com/golang/lint/golint
- go get honnef.co/go/tools/cmd/megacheck
- go get github.com/fzipp/gocyclo
script:
- go test -v -race ./...
- go vet ./...
- megacheck ./...
- gocyclo -over 19 .
- golint -set_exit_status $(go list ./...)
|
Add ruby 1.9.2 to the build matrix | bundler_args: --without=release doc
rvm:
- 1.8.7
- 1.9.2
- jruby
- ruby-head
- rbx
- rbx-2.0
| bundler_args: --without=release doc
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- jruby
- ruby-head
- rbx
- rbx-2.0
|
Add 1.6. Drop 1.1. More checks. | language: go
go:
- 1.1
- 1.2
- 1.3
- 1.4
- 1.5
- release
- tip
install:
- go get gopkg.in/check.v1
script:
- go test
- go test -tags appengine
sudo: false
| language: go
go:
- 1.2
- 1.3
- 1.4
- 1.5
- 1.6
- tip
before_install:
- go get -v golang.org/x/tools/cmd/vet
- go get -v github.com/golang/lint/golint
install:
- go get gopkg.in/check.v1
script:
- go test -race -cpu 1,4 -v
- go test -race -v -tags appengine
- go vet ./...
- golint .
sudo: false
|
Test against Ruby 1.9.3, 2.0.0, 2.1.8, 2.2.4, 2.3.0 and ruby-head on Travis CI | language: ruby
rvm:
- 2.3.0
before_install: gem install bundler -v 1.11.2
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.8
- 2.2.4
- 2.3.0
- ruby-head
before_install: gem install bundler -v 1.11.2
|
Use '2.3.0' since '2.3' doesn't seem to work on Travis | sudo: false
bundler_args: --without development
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- '2.0'
- '2.1'
- '2.2'
- '2.3'
- jruby-head
- rbx-2
- ruby-head
gemfile:
- Gemfile
- Gemfile-0.7.rb
- Gemfile-0.8.rb
matrix:
allow_failures:
- rvm: jruby-head
- rvm: rbx-2
- rvm: ruby-head
fast_finish: true
| sudo: false
bundler_args: --without development
language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- '2.0'
- '2.1'
- '2.2'
- '2.3.0'
- jruby-head
- rbx-2
- ruby-head
gemfile:
- Gemfile
- Gemfile-0.7.rb
- Gemfile-0.8.rb
matrix:
allow_failures:
- rvm: jruby-head
- rvm: rbx-2
- rvm: ruby-head
fast_finish: true
|
Install bower and broccoli-cli globally in Travis | language: node_js
node_js:
- 0.10
sudo: false
cache:
directories:
- bower_components
- node_modules
before_script:
- node_modules/.bin/bower install --config.interactive=false
| language: node_js
node_js:
- 0.10
sudo: false
cache:
directories:
- bower_components
- node_modules
before_script:
- npm install -g bower broccoli-cli
- bower install --config.interactive=false
- broccoli build release
|
Add Node.js 9.x and 10.x to the Travis CI test matrix | sudo: false
language: node_js
node_js:
- '8'
- '7'
- '6'
- '5'
- '4'
- iojs
- '0.12'
- '0.10'
matrix:
include:
- node_js: '4'
env: RUN_ZUUL=true
env:
global:
- secure: MyFpgZfZRqz8WoASol6z2oz03JUjFcx3xuDV5iS9WRhyPqKHtWzQuQVjtL4rW15auxT3LaLY+5ygtSnhgpczpG5WUGzwQJCdDZs+a4GvCRqS59D45QuM0WB/gHjRKmBrQLm1AfYU6wWx5dC7wS/UKByTiASqEvUQJibsEIg25WY=
- secure: hYFSQNqf/y1IV1eGXth4w+uju+ZXDHqLv9Q7+tTd+uwSleqmwvNaGDFgDInJieKKYo4Fxn8s2ls6EToavHaDy0LS8nDruArudhwTsXL7abdx++laz/+81363lwWsc9tR0qCgjG38XLCyk5+JEyZiBU82OYEi2cY/bItdY7oHgCU=
| sudo: false
language: node_js
node_js:
- '10'
- '9'
- '8'
- '7'
- '6'
- '5'
- '4'
- iojs
- '0.12'
- '0.10'
matrix:
include:
- node_js: '4'
env: RUN_ZUUL=true
env:
global:
- secure: MyFpgZfZRqz8WoASol6z2oz03JUjFcx3xuDV5iS9WRhyPqKHtWzQuQVjtL4rW15auxT3LaLY+5ygtSnhgpczpG5WUGzwQJCdDZs+a4GvCRqS59D45QuM0WB/gHjRKmBrQLm1AfYU6wWx5dC7wS/UKByTiASqEvUQJibsEIg25WY=
- secure: hYFSQNqf/y1IV1eGXth4w+uju+ZXDHqLv9Q7+tTd+uwSleqmwvNaGDFgDInJieKKYo4Fxn8s2ls6EToavHaDy0LS8nDruArudhwTsXL7abdx++laz/+81363lwWsc9tR0qCgjG38XLCyk5+JEyZiBU82OYEi2cY/bItdY7oHgCU=
|
Install stdeb to build packages | language: python
python:
- "2.6"
- "2.7"
install:
- "pip install lxml"
- "pip install pytest"
- "python setup.py develop"
- python setup.py --command-packages=stdeb.command bdist_deb
script: py.test
deploy:
provider: packagecloud
repository: "wirecurly"
username: "fedecastro"
token: "18e4aa85a6d6b92479a46a47de5fcf852c2a5b9e33f086ce"
dist: "debian/wheezy" | language: python
python:
- "2.6"
- "2.7"
install:
- "pip install lxml"
- "pip install pytest"
- "pip install stdeb"
- "python setup.py develop"
- python setup.py --command-packages=stdeb.command bdist_deb
script: py.test
deploy:
provider: packagecloud
repository: "wirecurly"
username: "fedecastro"
token: "18e4aa85a6d6b92479a46a47de5fcf852c2a5b9e33f086ce"
dist: "debian/wheezy" |
Use latest ruby patches for CI. | language: ruby
rvm:
- 2.2.5
- 2.3.1
- 2.4.0
| language: ruby
rvm:
- 2.2.7
- 2.3.4
- 2.4.1
|
Use bower directly from Travis | language: ruby
rvm:
- 2.1.5
env:
matrix:
- DB=mysql MODE=plos SEARCH=plos
- DB=mysql MODE=default SEARCH=crossref
- DB=mysql MODE=default SEARCH=plos
global:
secure: drRsnsZAyBEb99FBPXPl2GrIJ0QRNvT6BxVnDG/BVulW1DJIRM3rUQYJBPxJIRn+SyEUF5q/z7LYs1alxuTrj0DHeIMY5PGWpm/aQXvUQvQSj5CNfRNdQVWUwjs4xdmg4fJ9anz29CShBo2DfLWvMqWpwX2I/dh6IZQrWmdiI9o=
services:
- memcached
before_script:
- cp .env.travis .env
- mkdir -p tmp/pids
script:
- bundle exec rake db:setup RAILS_ENV=test
- npm install -g bower
- bundle exec rake bower:install:deployment
- bundle exec rspec
addons:
code_climate:
repo_token: 996e94d9a86097c853b5bd92197c07cca653d962528e10406f1e75d78517438c
after_failure: cat /home/travis/build/articlemetrics/alm-report/tmp/capybara/*.html
| language: ruby
rvm:
- 2.1.5
env:
matrix:
- DB=mysql MODE=plos SEARCH=plos
- DB=mysql MODE=default SEARCH=crossref
- DB=mysql MODE=default SEARCH=plos
global:
secure: drRsnsZAyBEb99FBPXPl2GrIJ0QRNvT6BxVnDG/BVulW1DJIRM3rUQYJBPxJIRn+SyEUF5q/z7LYs1alxuTrj0DHeIMY5PGWpm/aQXvUQvQSj5CNfRNdQVWUwjs4xdmg4fJ9anz29CShBo2DfLWvMqWpwX2I/dh6IZQrWmdiI9o=
services:
- memcached
before_script:
- cp .env.travis .env
- mkdir -p tmp/pids
script:
- bundle exec rake db:setup RAILS_ENV=test
- npm install -g bower
- bundle exec bower install
- bundle exec rspec
addons:
code_climate:
repo_token: 996e94d9a86097c853b5bd92197c07cca653d962528e10406f1e75d78517438c
after_failure: cat /home/travis/build/articlemetrics/alm-report/tmp/capybara/*.html
|
Add package source for gcc5 | language: cpp
script: make && ./example
matrix:
include:
- compiler: gcc
addons:
apt:
packages:
- g++-5
env: CXX=g++-5
| language: cpp
script: make && ./example
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
env: CXX=g++-5
|
Switch to container based builds | language: ruby
rvm:
- 1.9.3
- 2.0.0
before_install: gem install bundler
git:
depth: 1
| sudo: false
language: ruby
rvm:
- 1.9.3
- 2.0.0
before_install: gem install bundler
git:
depth: 1
|
Create database for Travis Build | sudo: required
dist: trusty
language: php
php:
- 7.1.9
addons:
chrome: stable
services:
- mysql
install:
- mv .env.example .env
- travis_retry composer install --no-interaction --prefer-dist --no-suggest
- php artisan key:generate
before_script:
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
- php artisan serve &
script:
- php artisan dusk
- phpunit | sudo: required
dist: trusty
language: php
php:
- 7.1.9
addons:
chrome: stable
services:
- mysql
before_install:
- mysql -e 'CREATE DATABASE `ehosp-services`;'
install:
- mv .env.example .env
- travis_retry composer install --no-interaction --prefer-dist --no-suggest
- php artisan key:generate
- php artisan db:seed
before_script:
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
- php artisan serve &
script:
- php artisan dusk
- phpunit |
Test on some more recent Node.JS versions | language: node_js
node_js:
- "8"
- "6"
- "5"
- "4"
install:
- npm install
| language: node_js
node_js:
- "12"
- "11"
- "10"
- "9"
- "8"
- "7"
- "6"
- "5"
- "4"
install:
- npm install
|
Add PHPStan to Travis builds | language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
env:
global:
- setup=basic
before_script:
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
script:
- ./vendor/bin/phpunit -c phpunit.xml.dist --verbose
| language: php
php:
- 7.1
- 7.2
- 7.3
- 7.4
env:
global:
- setup=basic
before_script:
- composer config discard-changes true
- if [[ $setup = 'basic' ]]; then travis_retry composer install --prefer-dist --no-interaction; fi
- if [[ $setup = 'stable' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-stable; fi
- if [[ $setup = 'lowest' ]]; then travis_retry composer update --prefer-dist --no-interaction --prefer-lowest --prefer-stable; fi
script:
- ./vendor/bin/phpstan analyse -c .phpstan.neon
- ./vendor/bin/phpunit -c phpunit.xml.dist --verbose
|
Work for getting this passing on ruby 2.7 | before_install:
- gem update --system
- gem update bundler
rvm:
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
- 2.7.0
- rbx-2
- ruby-head
- jruby-9.1.17.0
- jruby-9.2.7.0
- jruby-head
jdk: openjdk8
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-2
| before_install:
- gem update --system -N
rvm:
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
- 2.7.0
- rbx-2
- ruby-head
- jruby-9.1.17.0
- jruby-9.2.7.0
- jruby-head
jdk: openjdk8
matrix:
allow_failures:
- rvm: jruby-head
- rvm: ruby-head
- rvm: rbx-2
|
Disable email notifications for Travis tests | language: python
sudo: required
python:
- "2.7"
env: PGVERSION=9.2
cache: pip
install:
- bash bin/travis-build.bash
- pip install coveralls
script:
- sh bin/travis-run.sh
- pycodestyle --count ./ckanext/tayside
after_success:
- coveralls
| language: python
sudo: required
python:
- "2.7"
env: PGVERSION=9.2
cache: pip
notifications:
email: false
install:
- bash bin/travis-build.bash
- pip install coveralls
script:
- sh bin/travis-run.sh
- pycodestyle --count ./ckanext/tayside
after_success:
- coveralls
|
Exclude Vendor Directory for Travis Compatability | # Site settings
title: Tohuw.Net
email: ron@tohuw.net
description: >
Ron Scott-Adams is a Systems Architect and Administrator, with a passion for
creating, maintaining and explaining well-designed data centers,
virtualization solutions, and information technology systems.
baseurl: ""
url: "https://tohuw.net"
timezone: America/New_York
# Taxonomy
permalink: /articles/:title/
paginate_path: /pages/:num/
# Default extension for new posts and pages
post_ext: md
page_ext: html
# Default templates for posts and pages
# Found in _templates/
post_layout: post
page_layout: page
# Format titles with titlecase?
titlecase: true
# Change default template file (in _templates/)
post_template: post
page_template: page
draft_template: draft
# Build settings
markdown: kramdown
highlighter: rouge
# Social
twitter_username: tohuw
github_username: tohuw
| # Site settings
title: Tohuw.Net
email: ron@tohuw.net
description: >
Ron Scott-Adams is a Systems Architect and Administrator, with a passion for
creating, maintaining and explaining well-designed data centers,
virtualization solutions, and information technology systems.
baseurl: ""
url: "https://tohuw.net"
timezone: America/New_York
# Taxonomy
permalink: /articles/:title/
paginate_path: /pages/:num/
# Default extension for new posts and pages
post_ext: md
page_ext: html
# Default templates for posts and pages
# Found in _templates/
post_layout: post
page_layout: page
# Format titles with titlecase?
titlecase: true
# Change default template file (in _templates/)
post_template: post
page_template: page
draft_template: draft
# Build settings
exclude: [vendor]
markdown: kramdown
highlighter: rouge
# Social
twitter_username: tohuw
github_username: tohuw
|
Update config to match new jekyll conventions | safe: false
#auto: false
#server: false
port: 4000
baseurl: /jekyll_demo
url: http://localhost:4000
source: .
destination: ./_site
plugins: ./_plugins
future: true
lsi: false
highlighter: pygments
markdown: Pandoc
#markdown: maruku
permalink: date
#maruku:
# use_tex: false
# use_divs: false
# png_engine: blahtex
# png_dir: images/latex
# png_url: /images/latex
pandoc:
format: html5
extensions: [smart, html-q-tags, mathml]
rdiscount:
extensions: []
redcarpet:
extensions: []
kramdown:
auto_ids: true,
footnote_nr: 1
entity_output: as_char
toc_levels: 1..6
use_coderay: false
coderay:
coderay_wrap: div
coderay_line_numbers: inline
coderay_line_numbers_start: 1
coderay_tab_width: 4
coderay_bold_every: 10
coderay_css: style
| 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: Pandoc
#markdown: maruku
permalink: date
#maruku:
# use_tex: false
# use_divs: false
# png_engine: blahtex
# png_dir: images/latex
# png_url: /images/latex
pandoc:
format: html5
extensions: [smart, html-q-tags, mathml]
rdiscount:
extensions: []
redcarpet:
extensions: []
kramdown:
auto_ids: true,
footnote_nr: 1
entity_output: as_char
toc_levels: 1..6
enable_coderay: false
coderay:
coderay_wrap: div
coderay_line_numbers: inline
coderay_line_numbers_start: 1
coderay_tab_width: 4
coderay_bold_every: 10
coderay_css: style
|
Update from Hackage at 2018-07-17T17:44:48Z | homepage: http://ivorylang.org
changelog-type: ''
hash: 6f85429ff3122a4ec3e1b5c7f5effb6d4d8e97a8d854c72e9ca728f6c12fc656
test-bench-deps: {}
maintainer: jamesjb@galois.com, leepike@galois.com
synopsis: Ivory hardware model (STM32F4).
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
ivory-artifact: -any
ivory: -any
filepath: -any
all-versions:
- '0.1.0.0'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
author: Galois, Inc.
latest: '0.1.0.5'
description-type: haddock
description: Hardware model for Ivory. Currently, the STM32F4 is supported; others
may be added.
license-name: BSD3
| homepage: http://ivorylang.org
changelog-type: ''
hash: b184139af2c31b65a7f7f7610fe949a1f4a26b8ab63955914893f69d76cdb5fc
test-bench-deps: {}
maintainer: jamesjb@galois.com, leepike@galois.com
synopsis: Ivory hardware model (STM32F4).
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
ivory-artifact: -any
ivory: -any
filepath: -any
all-versions:
- '0.1.0.0'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
- '0.1.0.6'
author: Galois, Inc.
latest: '0.1.0.6'
description-type: haddock
description: Hardware model for Ivory. Currently, the STM32F4 is supported; others
may be added.
license-name: BSD3
|
Change password to one that RabbitMQ likes | ---
domain_name: perfplat.dev
environment: development
ssl::params::ssl_path: '/etc/ssl'
ssl::params::ssl_cert_file: 'certs/ssl-cert-snakeoil.pem'
ssl::params::ssl_key_file: 'private/ssl-cert-snakeoil.key'
ufw_rules:
allowsshfromanywhere:
port: 22
ip: 'any'
# modify in pp-deployment to add more
fail2ban::whitelist_ips: 127.0.0.1
rabbitmq_sensu_password: 'IEn^yM>O,x6,oU+C335(j$5k)L{nmX'
| ---
domain_name: perfplat.dev
environment: development
ssl::params::ssl_path: '/etc/ssl'
ssl::params::ssl_cert_file: 'certs/ssl-cert-snakeoil.pem'
ssl::params::ssl_key_file: 'private/ssl-cert-snakeoil.key'
ufw_rules:
allowsshfromanywhere:
port: 22
ip: 'any'
# modify in pp-deployment to add more
fail2ban::whitelist_ips: 127.0.0.1
rabbitmq_sensu_password: 'iP2O51333kzask7'
|
Add ssh_private_keys default to common | ---
common:
hwraid:
enabled: True
clients:
- tw-cli
- megacli
ipmi:
enabled: True
python_extra_packages: []
| ---
common:
hwraid:
enabled: True
clients:
- tw-cli
- megacli
ipmi:
enabled: True
python_extra_packages: []
ssh_private_keys: []
|
Update from Hackage at 2016-12-09T20:31:09Z | homepage: https://github.com/mvv/transformers-abort
changelog-type: ''
hash: 14cbb06afae6b23aa07d3131b21bd236b285b9ada80b507aae572a7239a36310
test-bench-deps: {}
maintainer: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
synopsis: A better error monad transformer
changelog: ''
basic-deps:
semigroupoids: ! '>=1.2'
base: ! '>=4 && <5'
data-default-class: ! '>=0.0.1'
pointed: ! '>=2.0.1'
monad-control: ! '>=0.3'
transformers-base: ! '>=0.4'
transformers: ! '>=0.2'
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4'
- '0.5'
- '0.5.0.1'
author: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
latest: '0.5.0.1'
description-type: haddock
description: ! 'This package provides a better error monad transformer for
the @transformers@ package.'
license-name: BSD3
| homepage: https://github.com/mvv/transformers-abort
changelog-type: ''
hash: 4b9653cbed495f71374cc65c15cafcd4edd77106b181a5373d3a09eee8336a76
test-bench-deps: {}
maintainer: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
synopsis: Error and short-circuit monad transformers
changelog: ''
basic-deps:
semigroupoids: ! '>=1.2'
base: ! '>=4 && <5'
pointed: ! '>=2.0.1'
monad-control: ! '>=0.3'
transformers-base: ! '>=0.4'
transformers: ! '>=0.2'
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4'
- '0.5'
- '0.5.0.1'
- '0.6'
author: Mikhail Vorozhtsov <mikhail.vorozhtsov@gmail.com>
latest: '0.6'
description-type: haddock
description: This package provides error and short-circuit monad transformers.
license-name: BSD3
|
Update from Forestry.io - Updated Forestry configuration | ---
label: The Data Visualisation Catalogue
hide_body:
is_partial:
fields:
- name: layout
label: Layout
type: text
hidden: false
default: ''
- name: title
label: Title
type: text
hidden: false
default: ''
- name: date
label: Date
type: datetime
hidden: false
default: ''
- name: modified
label: Modified
type: datetime
hidden: false
default: ''
| ---
label: Default
hide_body: false
is_partial: false
fields:
- name: layout
label: Layout
type: text
hidden: false
default: single
config:
required: true
- name: title
label: Title
type: text
hidden: false
default: ''
config:
required: true
- name: date
label: Date
type: datetime
hidden: false
default: ''
config:
required: true
- name: modified
label: Modified
type: datetime
hidden: false
default: ''
config:
required: true
|
Change the route of the new EventBundle instead. | expense_homepage:
path: /
defaults: { _controller: ExpenseBundle:Default:index }
| expense_homepage:
path: /event
defaults: { _controller: ExpenseBundle:Default:index }
|
Fix run script path for verify-buildpack-binaries | ---
platform: linux
image_resource:
type: docker-image
source:
repository: cfbuildpacks/ci
inputs:
- name: buildpacks-ci
- name: verification-whitelist
- name: nodejs-buildpack
- name: ruby-buildpack
- name: go-buildpack
- name: python-buildpack
- name: staticfile-buildpack
- name: binary-buildpack
- name: php-buildpack
outputs:
- name: buildpack-artifacts
run:
path: buildpacks-ci/verify-buildpack-binaries/run.rb
| ---
platform: linux
image_resource:
type: docker-image
source:
repository: cfbuildpacks/ci
inputs:
- name: buildpacks-ci
- name: verification-whitelist
- name: nodejs-buildpack
- name: ruby-buildpack
- name: go-buildpack
- name: python-buildpack
- name: staticfile-buildpack
- name: binary-buildpack
- name: php-buildpack
outputs:
- name: buildpack-artifacts
run:
path: buildpacks-ci/tasks/verify-buildpack-binaries/run.rb
|
Update trigger and fix API key usage | jobs:
build:
runs-on: windows-latest
steps:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
version: 3.0.100
- name: Download Artifacts
uses: actions/download-artifact@master
with:
name: Nuget Package
path: ./
- name: Publish NuGet Package
run: dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_API_KEY }}
| on:
release
types: [published]
jobs:
build:
runs-on: windows-latest
steps:
- env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
version: 3.0.100
- name: Download Artifacts
uses: actions/download-artifact@master
with:
name: Nuget Package
path: ./
- name: Publish NuGet Package
run: dotnet nuget push **/*.nupkg -k $NUGET_API_KEY
|
Bump actions/setup-node from 2 to 3 | name: CI
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node:
- 12
- 14
- 16
- 17
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install packages
run: npm ci
- name: Lint and run tests
run: npm run precommit
| name: CI
on:
push:
branches-ignore:
- "dependabot/**"
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node:
- 12
- 14
- 16
- 17
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
- name: Install packages
run: npm ci
- name: Lint and run tests
run: npm run precommit
|
Include Windows jobs in the CI | name: ci
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [macOS-latest, ubuntu-latest]
toolchain: [stable, beta, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Run cargo check --all
env:
RUSTFLAGS: -D warnings
run: |
cargo check --all --all-targets
- name: Compile the tests
env:
RUSTFLAGS: -D warnings
run: |
cargo test --all --all-targets --no-run
- name: Run cargo doc
run: |
cargo doc --all --all-features
| name: ci
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest]
toolchain: [stable, beta, nightly]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
override: true
- name: Run cargo check --all
env:
RUSTFLAGS: -D warnings
run: |
cargo check --all --all-targets
- name: Compile the tests
env:
RUSTFLAGS: -D warnings
run: |
cargo test --all --all-targets --no-run
- name: Run cargo doc
run: |
cargo doc --all --all-features
|
Remove step for auto deploy | box: wercker/rvm
services:
- wercker/postgresql
build:
steps:
- bundle-install
- rails-database-yml
- script:
name: echo ruby information
code: |
echo "ruby version $(ruby --version) running"
echo "from location $(which ruby)"
echo -p "gem list: $(gem list)"
- script:
name: Set up db
code: bundle exec rake db:schema:load RAILS_ENV=test
- script:
name: rspec
code: bundle exec rspec
after-steps:
- wantedly/pretty-slack-notify:
webhook_url: $SLACK_WEBHOOK_URL
deploy:
steps:
- heroku-deploy:
key-name:
| box: wercker/rvm
services:
- wercker/postgresql
build:
steps:
- bundle-install
- rails-database-yml
- script:
name: echo ruby information
code: |
echo "ruby version $(ruby --version) running"
echo "from location $(which ruby)"
echo -p "gem list: $(gem list)"
- script:
name: Set up db
code: bundle exec rake db:schema:load RAILS_ENV=test
- script:
name: rspec
code: bundle exec rspec
after-steps:
- wantedly/pretty-slack-notify:
webhook_url: $SLACK_WEBHOOK_URL
|
Update from Forestry.io - Updated Forestry configuration | ---
label: news
hide_body: true
is_partial: false
fields:
- type: include
name: defaults
label: defaults
template: partial-default
- type: text
name: link_to_original
label: Link to Original
description: e.g. https://www.example.com
- type: include
name: date
label: date
template: partial-date
- type: include
name: image
label: image
template: partial-images-w-credit
hidden: true
- type: tag_list
label: Topics
name: tags
hidden: true
- type: tag_list
label: Category
name: categories
hidden: true
default:
- News
| ---
label: news
hide_body: true
is_partial: false
fields:
- type: include
name: defaults
label: defaults
template: partial-default
- type: text
name: link_to_original
label: Link to Original
description: e.g. https://www.example.com
- type: include
name: date
label: date
template: partial-date
- type: include
name: image
label: image
template: partial-images-w-credit
hidden: true
- type: tag_list
label: Topics
name: tags
hidden: true
- type: tag_list
label: Category
name: categories
hidden: false
default:
- News
- Interviews
|
Update from Hackage at 2019-10-13T17:33:42Z | homepage: https://github.com/athanclark/zeromq4-simple#readme
changelog-type: markdown
hash: 36c3040e897e9fa1cae5071fe69e4ef7c318df65adc637a56e928f087088f250
test-bench-deps: {}
maintainer: athan.clark@gmail.com
synopsis: More constrained extensions to zeromq4-haskell
changelog: |
# Changelog for zeromq4-simple
## Unreleased changes
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
uuid: -any
constraints: -any
hashable: -any
zeromq4-haskell: -any
aeson: -any
all-versions:
- 0.0.0
- 0.0.0.1
author: Athan Clark
latest: 0.0.0.1
description-type: markdown
description: |
# zeromq4-simple
Some extra type-level constraints over [zeromq4-haskell](https://hackage.haskell.org/package/zeromq4-haskell)'s design.
license-name: BSD-3-Clause
| homepage: https://github.com/athanclark/zeromq4-simple#readme
changelog-type: markdown
hash: 95f6419e19ec0f6898ab72e5569894b63439a8c41597fcf752d1ed3c7ad7ee40
test-bench-deps: {}
maintainer: athan.clark@gmail.com
synopsis: More constrained extensions to zeromq4-haskell
changelog: |
# Changelog for zeromq4-simple
## Unreleased changes
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
uuid: -any
constraints: -any
hashable: -any
zeromq4-haskell: -any
aeson: -any
all-versions:
- 0.0.0
- 0.0.0.1
- 0.0.0.2
author: Athan Clark
latest: 0.0.0.2
description-type: markdown
description: |
# zeromq4-simple
Some extra type-level constraints over [zeromq4-haskell](https://hackage.haskell.org/package/zeromq4-haskell)'s design.
license-name: BSD-3-Clause
|
Disable SafeNavigation cop to support more rubies | require: rubocop-rspec
AllCops:
TargetRubyVersion: 2.3
RSpec/NestedGroups:
Max: 3
RSpec/MessageExpectation:
EnforcedStyle: 'expect'
RSpec/ContextWording:
Exclude:
- "spec/support/shared_contexts/*rb"
- "spec/features/*rb"
Metrics/BlockLength:
Exclude:
- "spec/**/*.rb"
| require: rubocop-rspec
AllCops:
TargetRubyVersion: 2.3
RSpec/NestedGroups:
Max: 3
RSpec/MessageExpectation:
EnforcedStyle: 'expect'
RSpec/ContextWording:
Exclude:
- "spec/support/shared_contexts/*rb"
- "spec/features/*rb"
Metrics/BlockLength:
Exclude:
- "spec/**/*.rb"
Style/SafeNavigation:
Enabled: false
|
Add base url env var to docker compose | version: '2'
services:
app:
build: ./app
volumes:
- uwsgi:/tmp/uwsgi
environment:
- POSTGRES_DB
- POSTGRES_USER
- POSTGRES_PASSWORD
- LEAGUE_ROOT_PASS
- SLACK_CHANNEL
- SLACK_WEBHOOK
depends_on:
- db
webserver:
build: ./webserver
volumes_from:
- app:rw
ports:
- '8080:80'
depends_on:
- app
volumes:
- uwsgi:/tmp/uwsgi
db:
build: ./db
environment:
- POSTGRES_DB
- POSTGRES_USER
- POSTGRES_PASSWORD
ports:
- '5432:5432'
volumes:
- db_data:/var/lib/league/db
volumes:
uwsgi:
db_data:
| version: '2'
services:
app:
build: ./app
volumes:
- uwsgi:/tmp/uwsgi
environment:
- POSTGRES_DB
- POSTGRES_USER
- POSTGRES_PASSWORD
- LEAGUE_ROOT_PASS
- SLACK_CHANNEL
- SLACK_WEBHOOK
- SLACK_BASE_URL
depends_on:
- db
webserver:
build: ./webserver
volumes_from:
- app:rw
ports:
- '8080:80'
depends_on:
- app
volumes:
- uwsgi:/tmp/uwsgi
db:
build: ./db
environment:
- POSTGRES_DB
- POSTGRES_USER
- POSTGRES_PASSWORD
ports:
- '5432:5432'
volumes:
- db_data:/var/lib/league/db
volumes:
uwsgi:
db_data:
|
Add SLA to Designate scenarios | ---
DesignateBasic.create_and_delete_domain:
-
runner:
type: "constant"
times: 10
concurrency: 10
context:
users:
tenants: 2
users_per_tenant: 2
DesignateBasic.create_and_delete_records:
-
args:
records_per_domain: 10
runner:
type: "constant"
times: 10
concurrency: 10
context:
users:
tenants: 2
users_per_tenant: 2
DesignateBasic.create_and_list_domains:
-
runner:
type: "constant"
times: 10
concurrency: 10
context:
users:
tenants: 2
users_per_tenant: 2
DesignateBasic.create_and_list_records:
-
args:
records_per_domain: 10
runner:
type: "constant"
times: 10
concurrency: 10
context:
users:
tenants: 2
users_per_tenant: 2
DesignateBasic.list_domains:
-
runner:
type: "constant"
times: 3
concurrency: 2
context:
users:
tenants: 2
users_per_tenant: 2
| ---
DesignateBasic.create_and_delete_domain:
-
runner:
type: "constant"
times: 10
concurrency: 10
context:
users:
tenants: 2
users_per_tenant: 2
sla:
max_failure_percent: 0
DesignateBasic.create_and_delete_records:
-
args:
records_per_domain: 10
runner:
type: "constant"
times: 10
concurrency: 10
context:
users:
tenants: 2
users_per_tenant: 2
sla:
max_failure_percent: 0
DesignateBasic.create_and_list_domains:
-
runner:
type: "constant"
times: 10
concurrency: 10
context:
users:
tenants: 2
users_per_tenant: 2
sla:
max_failure_percent: 0
DesignateBasic.create_and_list_records:
-
args:
records_per_domain: 10
runner:
type: "constant"
times: 10
concurrency: 10
context:
users:
tenants: 2
users_per_tenant: 2
sla:
max_failure_percent: 0
DesignateBasic.list_domains:
-
runner:
type: "constant"
times: 3
concurrency: 2
context:
users:
tenants: 2
users_per_tenant: 2
sla:
max_failure_percent: 0
|
Comment out setting zsh part (just to avoid prompting password). | ---
- name: Create bin directory
file: path=~/bin state=directory
- name: Copy provision script
template: src=provision.sh dest=~/bin/provision.sh mode=0744
- name: Set zsh as default shell
command: chsh -s '/bin/zsh'
- name: Copy .zshenv
template: src=.zshenv dest=~/.zshenv
- name: Copy vizshenv script
template: src=vizshenv.sh dest=~/bin/vizshenv.sh mode=0744
- name: Copy .zshrc
template: src=.zshrc dest=~/.zshrc
- name: Copy vizshrc script
template: src=vizshrc.sh dest=~/bin/vizshrc.sh mode=0744
- name: Copy .vimrc
template: src=.vimrc dest=~/.vimrc
- name: Copy vimrc script
template: src=vimrc.sh dest=~/bin/vimrc.sh mode=0744
- name: Create Development directory
file: path=~/Development state=directory
- name: Copy jenkins configuration
template: src=homebrew.mxcl.jenkins.plist dest=~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist
- name: Copy .gitconfig
template: src=.gitconfig dest=~/.gitconfig
| ---
- name: Create bin directory
file: path=~/bin state=directory
- name: Copy provision script
template: src=provision.sh dest=~/bin/provision.sh mode=0744
# - name: Set zsh as default shell
# command: chsh -s '/bin/zsh'
- name: Copy .zshenv
template: src=.zshenv dest=~/.zshenv
- name: Copy vizshenv script
template: src=vizshenv.sh dest=~/bin/vizshenv.sh mode=0744
- name: Copy .zshrc
template: src=.zshrc dest=~/.zshrc
- name: Copy vizshrc script
template: src=vizshrc.sh dest=~/bin/vizshrc.sh mode=0744
- name: Copy .vimrc
template: src=.vimrc dest=~/.vimrc
- name: Copy vimrc script
template: src=vimrc.sh dest=~/bin/vimrc.sh mode=0744
- name: Create Development directory
file: path=~/Development state=directory
- name: Copy jenkins configuration
template: src=homebrew.mxcl.jenkins.plist dest=~/Library/LaunchAgents/homebrew.mxcl.jenkins.plist
- name: Copy .gitconfig
template: src=.gitconfig dest=~/.gitconfig
|
Rename master branch to main in CI config | name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.1', '7.2', '7.3', '7.4' ]
steps:
- uses: actions/checkout@v2
- uses: nanasess/setup-php@master
with:
php-version: ${{ matrix.php }}
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: composer test
| name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.1', '7.2', '7.3', '7.4' ]
steps:
- uses: actions/checkout@v2
- uses: nanasess/setup-php@master
with:
php-version: ${{ matrix.php }}
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v2
with:
path: vendor
key: ${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}
- name: Install dependencies
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run test suite
run: composer test
|
Update build_runner and build_web_compilers deps | name: benchmark_harness
version: 1.0.6-dev
author: Dart Team <misc@dartlang.org>
description: The official Dart project benchmark harness.
homepage: https://github.com/dart-lang/benchmark_harness
environment:
sdk: ">=2.0.0-dev <3.0.0"
dev_dependencies:
build_runner: ^0.9.0
build_web_compilers: ^0.4.0
mockito: ^3.0.0
path: ^1.1.0
pedantic: ^1.4.0
test: ^1.0.0
| name: benchmark_harness
version: 1.0.6-dev
author: Dart Team <misc@dartlang.org>
description: The official Dart project benchmark harness.
homepage: https://github.com/dart-lang/benchmark_harness
environment:
sdk: ">=2.0.0 <3.0.0"
dev_dependencies:
build_runner: ^1.1.0
build_web_compilers: ^1.0.0
mockito: ^3.0.0
path: ^1.1.0
pedantic: ^1.4.0
test: ^1.0.0
|
Allow to merge pry | # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdependencies)
update_type: "all"
automerged_updates:
- match:
dependency_type: "development"
update_type: "all"
- match:
dependency_type: "production"
update_type: "semver:patch"
- match:
dependency_name: "rubocop*"
update_type: "all"
- match:
dependency_name: "parser"
update_type: "all"
# Enable. Only lockfile updates (ignore updates that require Gemfile changes)
version_requirement_updates: "off"
| # c.f. https://dependabot.com/docs/config-file/
version: 1
update_configs:
- package_manager: "ruby:bundler"
directory: "/"
update_schedule: "daily"
default_assignees:
- sue445
allowed_updates:
- match:
# Disable. Only top-level dependencies (and security patches for subdependencies)
update_type: "all"
automerged_updates:
- match:
dependency_type: "development"
update_type: "all"
- match:
dependency_type: "production"
update_type: "semver:patch"
- match:
dependency_name: "rubocop*"
update_type: "all"
- match:
dependency_name: "parser"
update_type: "all"
- match:
dependency_name: "pry"
update_type: "all"
# Enable. Only lockfile updates (ignore updates that require Gemfile changes)
version_requirement_updates: "off"
|
Add scripting as a run requirement. | {% set data = load_setup_py_data() %}
package:
name: bmi-tester
version: {{ data.get('version') }}
source:
path: ..
requirements:
build:
- python
run:
- python
- numpy
- pytest
- cfunits-python
- standard_names
build:
number: 0
entry_points:
- bmi-test=bmi_tester.bmipytest:main
script: python -m pip install --no-deps --ignore-installed .
test:
imports:
- bmi_tester
commands:
- bmi-test -h
about:
home: http://github.com/csdms/bmi-tester
license: MIT
summary: Test BMI implementation in Python
doc_url: http://bmi-tester.readthedocs.io/en/latest/
dev_url: http://github.com/csdms/bmi-tester
| {% set data = load_setup_py_data() %}
package:
name: bmi-tester
version: {{ data.get('version') }}
source:
path: ..
requirements:
build:
- python
run:
- python
- numpy
- pytest
- scripting
- cfunits-python
- standard_names
build:
number: 0
entry_points:
- bmi-test=bmi_tester.bmipytest:main
script: python -m pip install --no-deps --ignore-installed .
test:
imports:
- bmi_tester
commands:
- bmi-test -h
about:
home: http://github.com/csdms/bmi-tester
license: MIT
summary: Test BMI implementation in Python
doc_url: http://bmi-tester.readthedocs.io/en/latest/
dev_url: http://github.com/csdms/bmi-tester
|
Revert changes in AppVeyor conf | # AppVeyor.com is a Continuous Integration service to build and run tests under
# Windows
# File shamelessly inspired by Astropy
version: 0.7.dev0-{build}
branches:
only:
- master
- 0.3.x
- 0.4.x
- 0.5.x
- 0.6.x
environment:
matrix:
- PYTHON: 35
- PYTHON: 36
matrix:
fast_finish: true
install:
- "set PYTHON_BIN=C:\\Python%PYTHON%-x64\\python.exe"
- "set PIP_BIN=C:\\Python%PYTHON%-x64\\Scripts\\pip.exe"
- "set SPHINX_BIN=C:\\Python%PYTHON%-x64\\Scripts\\sphinx-build.exe"
# Check that we have the expected version of Python
- "%PYTHON_BIN% --version"
# Install dependencies
- "%PIP_BIN% install numpy" # Required
- "%PIP_BIN% install ." # Test installation correctness
build: off
test_script:
- "%PYTHON_BIN% setup.py test -vv" # Test against installed code
- "%SPHINX_BIN% -vW -b html docs/source _HTMLTest" # Test docs build
| # AppVeyor.com is a Continuous Integration service to build and run tests under
# Windows
# File shamelessly inspired by Astropy
version: 0.7.dev0-{build}
branches:
only:
- master
- 0.3.x
- 0.4.x
- 0.5.x
- 0.6.x
environment:
matrix:
- PYTHON: 3.5
- PYTHON: 3.6
matrix:
fast_finish: true
install:
- "set PATH=C:\\Miniconda3-x64;C:\\Miniconda3-x64\\Scripts;%PATH%"
# Install the build and runtime dependencies of the project.
- "conda config --set always_yes yes --set changeps1 no"
- "conda config --add channels conda-forge"
- "conda update -q conda"
- "conda info -a"
- "conda create -q -n test-environment python=%PYTHON%"
- "activate test-environment"
# Check that we have the expected version of Python
- "python --version"
# Install testing dependencies
- "pip install pytest codecov pytest-benchmark sphinx sphinx_rtd_theme nbsphinx IPython ipykernel"
# Install dependencies
- "conda install -q numpy scipy numba"
- "pip install ." # Test installation correctness
build: off
test_script:
- "pytest -vv --benchmark-skip" # Test against installed code
- "sphinx-build -vW -b html docs/source _HTMLTest" # Test docs build
|
Update AppVeyor Image to use for build | #---------------------------------#
# general configuration #
#---------------------------------#
version: '{build}-{branch}'
image: Visual Studio 2017 Preview
branches:
except:
- gh-pages
#---------------------------------#
# environment configuration #
#---------------------------------#
environment:
COVERALLS_REPO_TOKEN:
secure: Pn67B/ELnBY8YWJUBE4s4oIx98wS5NRLTOrP7AP/EiuU2l9brndSCF2cPL6+JUBe
NUGET_API_KEY:
secure: cJV4lINlVi8J4NOZBAS5GnaaugKWWO0Zi5jCSKfkDOgs5mEpPDjIf9K0D8hB4bTU
#---------------------------------#
# build configuration #
#---------------------------------#
configuration: Release
nuget:
disable_publish_on_pr: true
build_script:
- ps: .\build.ps1 -target AppVeyor
test: off
#---------------------------------#
# deployment configuration #
#---------------------------------#
deploy:
- provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
auth_token:
secure: y4qyCzCMLVH/DEwqh0WpXYryveAR7kuSSe25yd3PlLJms3dw7rB2gJpYc7HKW37y
artifact: nuget
draft: true
on:
branch: master
appveyor_repo_tag: true
#---------------------------------#
# notifications #
#---------------------------------#
notifications: | #---------------------------------#
# general configuration #
#---------------------------------#
version: '{build}-{branch}'
image: Visual Studio 2019
branches:
except:
- gh-pages
#---------------------------------#
# environment configuration #
#---------------------------------#
environment:
COVERALLS_REPO_TOKEN:
secure: Pn67B/ELnBY8YWJUBE4s4oIx98wS5NRLTOrP7AP/EiuU2l9brndSCF2cPL6+JUBe
NUGET_API_KEY:
secure: cJV4lINlVi8J4NOZBAS5GnaaugKWWO0Zi5jCSKfkDOgs5mEpPDjIf9K0D8hB4bTU
#---------------------------------#
# build configuration #
#---------------------------------#
configuration: Release
nuget:
disable_publish_on_pr: true
build_script:
- ps: .\build.ps1 -target AppVeyor
test: off
#---------------------------------#
# deployment configuration #
#---------------------------------#
deploy:
- provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
auth_token:
secure: y4qyCzCMLVH/DEwqh0WpXYryveAR7kuSSe25yd3PlLJms3dw7rB2gJpYc7HKW37y
artifact: nuget
draft: true
on:
branch: master
appveyor_repo_tag: true
#---------------------------------#
# notifications #
#---------------------------------#
notifications:
|
Add setuptools-rust to host requirements | {% set name = "watchfiles" %}
{% set version = "0.12" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 962aa5fcc212fe4d838f9b28fcf70b6a5c850930fc4d389f444edb821d264110
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
entry_points:
- watchfiles = watchfiles.cli:cli
requirements:
host:
- pip
- python >=3.7
run:
- python >=3.7
- anyio >=3.0.0,<4
test:
imports:
- watchfiles
commands:
- watchfiles -h
about:
home: https://watchfiles.helpmanual.io
summary: Simple, modern and high performance file watching and code reload in python.
dev_url: https://github.com/samuelcolvin/watchfiles
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- davidbrochart
| {% set name = "watchfiles" %}
{% set version = "0.12" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 962aa5fcc212fe4d838f9b28fcf70b6a5c850930fc4d389f444edb821d264110
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
entry_points:
- watchfiles = watchfiles.cli:cli
requirements:
host:
- pip
- setuptools-rust >=1.2.0,<2
- python >=3.7
run:
- python >=3.7
- anyio >=3.0.0,<4
test:
imports:
- watchfiles
commands:
- watchfiles -h
about:
home: https://watchfiles.helpmanual.io
summary: Simple, modern and high performance file watching and code reload in python.
dev_url: https://github.com/samuelcolvin/watchfiles
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- davidbrochart
|
Use correct path when removing net/trace from garden | ---
platform: linux
image_resource:
type: docker-image
source:
repository: concourse/git-resource
inputs:
- name: garden-runc
- name: garden-runc-src
outputs:
- name: garden-runc-release
run:
path: sh
args:
- -exc
- |
tag=v$(cat garden-runc/version)
git -C ./garden-runc-src fetch --tags
git clone --branch $tag --recursive ./garden-runc-src ./garden-runc-release
# prune golang.org/x/net/trace
# https://stackoverflow.com/questions/47938005/panic-http-multiple-registrations-for-debug-requests
find . -path '*/vendor/x/net/trace' | xargs -n1 rm -r
| ---
platform: linux
image_resource:
type: docker-image
source:
repository: concourse/git-resource
inputs:
- name: garden-runc
- name: garden-runc-src
outputs:
- name: garden-runc-release
run:
path: sh
args:
- -exc
- |
tag=v$(cat garden-runc/version)
git -C ./garden-runc-src fetch --tags
git clone --branch $tag --recursive ./garden-runc-src ./garden-runc-release
# prune golang.org/x/net/trace
# https://stackoverflow.com/questions/47938005/panic-http-multiple-registrations-for-debug-requests
find . -path '*/vendor/golang.org/x/net/trace' | xargs --no-run-if-empty -n1 rm -r
|
Add variantcalling and fusion calling to STAR test | upload:
dir: upload
fc_date: '110907'
fc_name: ERP000591
details:
- analysis: RNA-seq
algorithm:
transcriptome_align: True
aligner: star
quality_format: Standard
trim_reads: read_through
adapters: [truseq, polya]
expression_caller: [sailfish]
description: Test1
files: [1_110907_ERP000591_1_fastq.txt, 1_110907_ERP000591_2_fastq.txt]
genome_build: mm9
lane: 1
| upload:
dir: upload
fc_date: '110907'
fc_name: ERP000591
details:
- analysis: RNA-seq
algorithm:
fusion_mode: True
variantcaller: [gatk]
transcriptome_align: True
aligner: star
quality_format: Standard
trim_reads: read_through
adapters: [truseq, polya]
expression_caller: [sailfish]
description: Test1
files: [1_110907_ERP000591_1_fastq.txt, 1_110907_ERP000591_2_fastq.txt]
genome_build: mm9
lane: 1
|
Add an example of local connector. | ---
- name: the last task will throw an error
hosts: localhost
gather_facts: no
tasks:
- name: create files - that will work
copy:
content: "test"
dest: "/tmp/{{ item }}"
with_items:
- testfile1
- testfile2
- name: create links - that will crash
become: yes
file:
src: "/tmp/{{ item }}"
dest: "/tmp/{{ item }}link"
state: link
with_items:
- testfile1
- testfile2
- name: create links - no sudo
become: no
file:
src: "/tmp/{{ item }}"
dest: "/tmp/{{ item }}link-no-sudo"
state: link
with_items:
- testfile1
- testfile2
- name: create links - sudo again
become: yes
file:
src: "/tmp/{{ item }}"
dest: "/tmp/{{ item }}link-sudo-again"
state: link
with_items:
- testfile1
- testfile2
- name: create links - sudo again but no with_items
become: yes
file:
src: "/tmp/testfile1"
dest: "/tmp/testfile1link-sudo-again-no-with"
state: link
| ---
- name: the last task will throw an error
hosts: localhost
gather_facts: no
tasks:
- name: create files - that will work
copy:
content: "test"
dest: "/tmp/{{ item }}"
with_items:
- testfile1
- testfile2
- testfile3
- name: create links - that will crash
become: yes
file:
src: "/tmp/{{ item }}"
dest: "/tmp/{{ item }}link"
state: link
with_items:
- testfile1
- testfile2
- testfile3
- name: create links - no sudo
become: no
file:
src: "/tmp/{{ item }}"
dest: "/tmp/{{ item }}link-no-sudo"
state: link
with_items:
- testfile1
- testfile2
- name: create links - sudo again
become: yes
file:
src: "/tmp/{{ item }}"
dest: "/tmp/{{ item }}link-sudo-again"
state: link
with_items:
- testfile1
- testfile2
- name: create links - sudo again but no with_items
become: yes
file:
src: "/tmp/testfile1"
dest: "/tmp/testfile1link-sudo-again-no-with"
state: link
|
Update from Hackage at 2015-07-05T18:19:25+0000 | homepage: ''
changelog-type: ''
hash: 0f699a53cdfc72c8c53c6b1ebd4d1bcda648f7567ed8854670a5d3d6ab7594f6
test-bench-deps: {}
maintainer: alfredo.dinapoli@gmail.com
synopsis: Automatic (re)compilation of purescript projects
changelog: ''
basic-deps:
snap: <1.0.0.0
shelly: ! '>=0.4.1 && <1.7'
base: ! '>=4.6 && <5.0'
configurator: ! '>=0.2.0.0'
text: ! '>0.11 && <1.2.0.0'
snap-core: <1.0.0.0
raw-strings-qq: ! '>=1.0.2'
mtl: <2.3
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Alfredo Di Napoli
latest: '0.2.0.0'
description-type: haddock
description: Automatic (re)compilation of purescript projects
license-name: MIT
| homepage: ''
changelog-type: ''
hash: 066b1ae1191dbe17b168ece37478dcc04d769a57d2be554fe927179575ff8749
test-bench-deps: {}
maintainer: alfredo.dinapoli@gmail.com
synopsis: Automatic (re)compilation of purescript projects
changelog: ''
basic-deps:
snap: <1.0.0.0
shelly: ! '>=0.4.1 && <1.7'
base: ! '>=4.6 && <5.0'
configurator: ! '>=0.2.0.0'
text: ! '>0.11 && <1.3.0.0'
snap-core: <1.0.0.0
raw-strings-qq: ! '>=1.0.2'
mtl: <2.3
transformers: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.3.0.0'
author: Alfredo Di Napoli
latest: '0.3.0.0'
description-type: haddock
description: Automatic (re)compilation of purescript projects
license-name: MIT
|
Add production tag to default | version: 2
jobs:
build:
docker:
- image: kairosaero/dkr-circleci
entrypoint: . $(which kairos_env_init) && /bin/bash
working_directory: /opt/kairos/build-home/repo
steps:
- checkout
- run:
name: environment setup
command: kairos_env_init
- run:
name: python dependencies
command: kairos_python_dependencies
- run:
name: python build
command: kairos_python_build
- run:
name: python tests
command: kairos_python_tests
- run:
name: python package
command: kairos_python_package
- run:
name: python deploy
command: kairos_python_deploy
- run:
name: python lambda publish
command: kairos_lambda_publish
- run:
name: build cleanup
command: kairos_python_cleanup
- store_artifacts:
path: test-output
destination: test-output
- store_artifacts:
path: dist
destination: build-artifacts
- store_artifacts:
path: logs
destination: logs
- store_test_results:
path: test-output
notify:
webhooks:
- url: https://bdoa77w3h0.execute-api.us-west-2.amazonaws.com/webhook/
| version: 2
jobs:
build:
docker:
- image: kairosaero/dkr-circleci:production
entrypoint: . $(which kairos_env_init) && /bin/bash
working_directory: /opt/kairos/build-home/repo
steps:
- checkout
- run:
name: environment setup
command: kairos_env_init
- run:
name: python dependencies
command: kairos_python_dependencies
- run:
name: python build
command: kairos_python_build
- run:
name: python tests
command: kairos_python_tests
- run:
name: python package
command: kairos_python_package
- run:
name: python deploy
command: kairos_python_deploy
- run:
name: python lambda publish
command: kairos_lambda_publish
- run:
name: build cleanup
command: kairos_python_cleanup
- store_artifacts:
path: test-output
destination: test-output
- store_artifacts:
path: dist
destination: build-artifacts
- store_artifacts:
path: logs
destination: logs
- store_test_results:
path: test-output
notify:
webhooks:
- url: https://bdoa77w3h0.execute-api.us-west-2.amazonaws.com/webhook/
|
Update from Hackage at 2021-05-29T16:59:17Z | homepage: ''
changelog-type: ''
hash: 07b8a44f0a536b10e065407e556d5f94972374ac3f2afc8b76315a3986369331
test-bench-deps: {}
maintainer: michel.boucey@gmail.com
synopsis: NanoID generator
changelog: ''
basic-deps:
bytestring: '>=0.10 && <0.12'
mwc-random: '>=0.13 && <0.16'
extra: '>=1.6 && <1.8'
base: '>=4.7 && <4.15'
NanoID: -any
optparse-applicative: '>=0.14 && <0.17'
all-versions:
- 1.0.0
author: Michel Boucey
latest: 1.0.0
description-type: haddock
description: Library and CLI tool for NanoID generation
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: f2b256568dcc83ceb49ba36919604bdbdfe23d698a5eda3830d18f85d28bb042
test-bench-deps: {}
maintainer: michel.boucey@gmail.com
synopsis: NanoID generator
changelog: ''
basic-deps:
bytestring: '>=0.10 && <0.12'
mwc-random: '>=0.13 && <0.16'
extra: '>=1.6 && <1.8'
base: '>=4.7 && <4.16'
NanoID: -any
optparse-applicative: '>=0.14 && <0.17'
all-versions:
- 1.0.0
- 1.0.1
author: Michel Boucey
latest: 1.0.1
description-type: haddock
description: Library and CLI tool for NanoID generation
license-name: BSD-3-Clause
|
Add a Python 3.6 unit test job | - job:
name: ironic-staging-drivers-dsvm-all-drivers
parent: legacy-dsvm-base
run: playbooks/legacy/ironic-staging-drivers-dsvm-all-drivers/run.yaml
post-run: playbooks/legacy/ironic-staging-drivers-dsvm-all-drivers/post.yaml
timeout: 4800
irrelevant-files:
- ^test-requirements.txt$
- ^setup.cfg$
- ^doc/.*$
- ^releasenotes/.*$
- ^ironic-staging-drivers/tests/.*$
required-projects:
- openstack-infra/devstack-gate
- openstack/ironic
- openstack/ironic-staging-drivers
- project:
vars:
rtd_webhook_id: '44747'
templates:
- openstack-python-jobs
- openstack-python35-jobs
- openstack-lower-constraints-jobs
- docs-on-readthedocs
- check-requirements
check:
jobs:
- ironic-staging-drivers-dsvm-all-drivers
gate:
jobs:
- ironic-staging-drivers-dsvm-all-drivers
| - job:
name: ironic-staging-drivers-dsvm-all-drivers
parent: legacy-dsvm-base
run: playbooks/legacy/ironic-staging-drivers-dsvm-all-drivers/run.yaml
post-run: playbooks/legacy/ironic-staging-drivers-dsvm-all-drivers/post.yaml
timeout: 4800
irrelevant-files:
- ^test-requirements.txt$
- ^setup.cfg$
- ^doc/.*$
- ^releasenotes/.*$
- ^ironic-staging-drivers/tests/.*$
required-projects:
- openstack-infra/devstack-gate
- openstack/ironic
- openstack/ironic-staging-drivers
- project:
vars:
rtd_webhook_id: '44747'
templates:
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- openstack-lower-constraints-jobs
- docs-on-readthedocs
- check-requirements
check:
jobs:
- ironic-staging-drivers-dsvm-all-drivers
gate:
jobs:
- ironic-staging-drivers-dsvm-all-drivers
|
Add Python 3.9 to tests runner | name: Mahjong bot
on:
push:
branches: [master, dev]
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: '3.7'
- name: Install libs
run: pip install -r requirements/dev.txt
- name: Lint files
run: make lint
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install libs
run: pip install -r requirements/dev.txt
- name: Run tests
run: make tests | name: Mahjong bot
on:
push:
branches: [master, dev]
pull_request:
types: [opened, synchronize, reopened]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: '3.7'
- name: Install libs
run: pip install -r requirements/dev.txt
- name: Lint files
run: make lint
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install libs
run: pip install -r requirements/dev.txt
- name: Run tests
run: make tests |
Set minimum python required version for fica | {% set name = "fica" %}
{% set version = "0.2.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/fica-{{ version }}.tar.gz
sha256: aa4e79f827129bdffc6dd2b4dd9f4ca24f4141b6e19311764493874dcdfa0ada
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
host:
- python >=3.7
- pip
run:
- python >=3.7
- pyyaml
- docutils
- sphinx
test:
imports:
- fica
commands:
- pip check
requires:
- pip
about:
home: https://github.com/chrispyles/confit
summary: User configuration manager and documenter
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- yuvipanda
| {% set name = "fica" %}
{% set version = "0.2.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/fica-{{ version }}.tar.gz
sha256: aa4e79f827129bdffc6dd2b4dd9f4ca24f4141b6e19311764493874dcdfa0ada
build:
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0
requirements:
host:
- python >=3.8
- pip
run:
- python >=3.8
- pyyaml
- docutils
- sphinx
test:
imports:
- fica
commands:
- pip check
requires:
- pip
about:
home: https://github.com/chrispyles/confit
summary: User configuration manager and documenter
license: MIT
license_file: LICENSE
extra:
recipe-maintainers:
- yuvipanda
|
Disable pip check to bypass earthengine-api issue | {% set name = "wxee" %}
{% set version = "0.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/wxee-{{ version }}.tar.gz
sha256: 1bc76e8cac39f48b3e11c1a60d6ac137809054eb532590ebb47ece210c81f718
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >=3.7
run:
- earthengine-api
- netcdf4
- python >=3.7
- rasterio
- requests
- tqdm
- xarray
test:
imports:
- wxee
commands:
- pip check
requires:
- pip
about:
home: https://github.com/aazuspan/wxee
summary: Earth Engine to xarray interface
license: GPL-3.0-or-later
license_file: LICENSE
doc_url: https://wxee.readthedocs.io/
extra:
recipe-maintainers:
- aazuspan
| {% set name = "wxee" %}
{% set version = "0.0.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/wxee-{{ version }}.tar.gz
sha256: 1bc76e8cac39f48b3e11c1a60d6ac137809054eb532590ebb47ece210c81f718
build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
requirements:
host:
- pip
- python >=3.7
run:
- earthengine-api
- netcdf4
- python >=3.7
- rasterio
- requests
- tqdm
- xarray
test:
imports:
- wxee
about:
home: https://github.com/aazuspan/wxee
summary: Earth Engine to xarray interface
license: GPL-3.0-or-later
license_file: LICENSE
doc_url: https://wxee.readthedocs.io/
extra:
recipe-maintainers:
- aazuspan
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.