Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Update pyasn1 to version 0.3.6 | {%set name = "pyasn1" %}
{%set version = "0.3.4" %}
{%set hash_type = "sha256" %}
{%set hash_val = "3946ff0ab406652240697013a89d76e388344866033864ef2b097228d1f0101a" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash_val }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- pyasn1
- pyasn1.codec
- pyasn1.codec.ber
- pyasn1.codec.cer
- pyasn1.codec.der
- pyasn1.compat
- pyasn1.type
about:
home: http://sourceforge.net/projects/pyasn1/
license: BSD 2-Clause
summary: 'ASN.1 types and codecs'
license_family: BSD
doc_url: http://pyasn1.sourceforge.net/
| {%set name = "pyasn1" %}
{%set version = "0.3.6" %}
{%set hash_type = "sha256" %}
{%set hash_val = "f0380ea97db0ede095a0dd87ce3003d46c197191f924206e43f776fc77e51f09" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash_val }}
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- pyasn1
- pyasn1.codec
- pyasn1.codec.ber
- pyasn1.codec.cer
- pyasn1.codec.der
- pyasn1.compat
- pyasn1.type
about:
home: http://sourceforge.net/projects/pyasn1/
license: BSD 2-Clause
summary: 'ASN.1 types and codecs'
license_family: BSD
doc_url: http://pyasn1.sourceforge.net/
|
Declare secret Google Static Maps token | name: Slug
description: A Slack bot that gives info about Faster Downhill
avatar: resources/avatar.png
| name: Slug
description: A Slack bot that gives info about Faster Downhill
avatar: resources/avatar.png
config:
- name: GOOGLE_MAPS_TOKEN
friendly_name: Google Maps Static Map API Token
info: Google Maps Static Map API Token
global: false
type: secret
|
Add more things to the precommit list | repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: no-commit-to-branch
args: [--branch, master, --pattern, 1_.*_X]
- id: check-yaml
- id: check-json
- id: check-symlinks
- id: check-xml
- id: end-of-file-fixer
types_or: [c, shell, python]
- id: trailing-whitespace
types_or: [c, shell, python, xml]
- id: check-docstring-first
- id: check-merge-conflict
- id: mixed-line-ending
args: [--fix=lf]
- repo: https://github.com/ambv/black
rev: 20.8b1
hooks:
- id: black
- repo: local
hooks:
- id: check-deprecated
name: check for use of any deprecated items
language: script
entry: ./contrib/ci/check-deprecated.sh
- id: check-null-false-returns
name: check for null / false return mistmatch
language: script
entry: ./contrib/ci/check-null-false-returns.py
- id: shellcheck
name: check shellscript style
language: system
entry: shellcheck --severity=error -e SC2068
types: [shell]
| repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: no-commit-to-branch
args: [--branch, master, --pattern, 1_.*_X]
- id: check-added-large-files
- id: check-byte-order-marker
- id: check-executables-have-shebangs
- id: forbid-new-submodules
- id: check-yaml
- id: check-json
- id: check-symlinks
- id: check-xml
- id: end-of-file-fixer
types_or: [c, shell, python]
- id: trailing-whitespace
types_or: [c, shell, python, xml]
- id: check-docstring-first
- id: check-merge-conflict
- id: mixed-line-ending
args: [--fix=lf]
- repo: https://github.com/ambv/black
rev: 20.8b1
hooks:
- id: black
- repo: local
hooks:
- id: check-deprecated
name: check for use of any deprecated items
language: script
entry: ./contrib/ci/check-deprecated.sh
- id: check-null-false-returns
name: check for null / false return mistmatch
language: script
entry: ./contrib/ci/check-null-false-returns.py
- id: shellcheck
name: check shellscript style
language: system
entry: shellcheck --severity=error -e SC2068
types: [shell]
|
Make sure to produce an ARM binary on Windows. | project_name: nv
before:
hooks:
- go mod tidy
builds:
- <<: &build_defaults
binary: nv
main: ./cmd/nv/
env:
- CGO_ENABLE=0
ldflags:
- -s -w -X github.com/jcouture/nv/internal/build.Version={{.Version}} -X github.com/jcouture/nv/internal/build.Date={{time "2006-01-02"}}
id: macos
goos: [darwin]
goarch: [amd64, arm64]
- <<: *build_defaults
id: linux
goos: [linux]
goarch: [386, arm, amd64, arm64]
- <<: *build_defaults
id: windows
goos: [windows]
goarch: [386, amd64]
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
-
tap:
owner: jcouture
name: homebrew-nv
folder: Formula
homepage: https://github.com/jcouture/nv
description: Lightweight utility to load context specific environment variables
test: |
system "#{bin}/nv" | project_name: nv
before:
hooks:
- go mod tidy
builds:
- <<: &build_defaults
binary: nv
main: ./cmd/nv/
env:
- CGO_ENABLE=0
ldflags:
- -s -w -X github.com/jcouture/nv/internal/build.Version={{.Version}} -X github.com/jcouture/nv/internal/build.Date={{time "2006-01-02"}}
id: macos
goos: [darwin]
goarch: [amd64, arm64]
- <<: *build_defaults
id: linux
goos: [linux]
goarch: [386, arm, amd64, arm64]
- <<: *build_defaults
id: windows
goos: [windows]
goarch: [386, amd64, arm]
checksum:
name_template: 'checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
-
tap:
owner: jcouture
name: homebrew-nv
folder: Formula
homepage: https://github.com/jcouture/nv
description: Lightweight utility to load context specific environment variables
test: |
system "#{bin}/nv" |
Replace license family by OTHER | {% set name = "visdom" %}
{% set version = "0.1.05" %}
{% set hash_type = "sha256" %}
{% set hash = "08cb193f893da6834ee1b98bda53238f72b33b3fb92c83426d994199a0e80fd8" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name.replace('-', '_') }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash }}
build:
number: 0
script: python setup.py install
requirements:
build:
- python
run:
- numpy
- pillow
- requests
- tornado
- pyzmq
- six
test:
imports:
- visdom
about:
home: https://github.com/facebookresearch/visdom
license: CC BY 4.0
license_family: CC
license_file: '{{ environ["RECIPE_DIR"] }}/LICENSE'
summary: A tool for visualizing live, rich data for Torch and Numpy.
description: |
A flexible tool for creating, organizing, and sharing visualizations
of live, rich data. Supports Torch and Numpy.
dev_url: https://github.com/facebookresearch/visdom
extra:
recipe-maintainers:
- andfoy
| {% set name = "visdom" %}
{% set version = "0.1.05" %}
{% set hash_type = "sha256" %}
{% set hash = "08cb193f893da6834ee1b98bda53238f72b33b3fb92c83426d994199a0e80fd8" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name.replace('-', '_') }}-{{ version }}.tar.gz
{{ hash_type }}: {{ hash }}
build:
number: 0
script: python setup.py install
requirements:
build:
- python
run:
- numpy
- pillow
- requests
- tornado
- pyzmq
- six
test:
imports:
- visdom
about:
home: https://github.com/facebookresearch/visdom
license: CC BY 4.0
license_family: OTHER
license_file: '{{ environ["RECIPE_DIR"] }}/LICENSE'
summary: A tool for visualizing live, rich data for Torch and Numpy.
description: |
A flexible tool for creating, organizing, and sharing visualizations
of live, rich data. Supports Torch and Numpy.
dev_url: https://github.com/facebookresearch/visdom
extra:
recipe-maintainers:
- andfoy
|
Add Fedora 20 and Ubuntu 14.04 to Test Kitchen | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.10
- name: centos-6.5
- name: fedora-19
- name: ubuntu-12.04
suites:
- name: default
run_list:
- recipe[rsyslog::default]
- name: relp
run_list:
- recipe[rsyslog::default]
attributes:
rsyslog:
use_relp: true
# CentOS and OmniOS do not support relp
excludes:
- centos-5.8
- omnios-r151006c
- name: client
run_list:
- recipe[rsyslog::client]
attributes:
rsyslog:
server_ip: 10.0.0.50
- name: server
run_list:
- recipe[rsyslog::server]
| driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.10
- name: centos-6.5
- name: fedora-19
- name: fedora-20
- name: ubuntu-12.04
- name: ubuntu-14.04
suites:
- name: default
run_list:
- recipe[rsyslog::default]
- name: relp
run_list:
- recipe[rsyslog::default]
attributes:
rsyslog:
use_relp: true
# CentOS and OmniOS do not support relp
excludes:
- centos-5.8
- omnios-r151006c
- name: client
run_list:
- recipe[rsyslog::client]
attributes:
rsyslog:
server_ip: 10.0.0.50
- name: server
run_list:
- recipe[rsyslog::server]
|
Update platforms in Test Kitchen | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.7
- name: centos-7.2
- name: debian-7.9
run_list: apt::default
- name: debian-8.2
run_list: apt::default
- name: fedora-22
run_list: yum::dnf_yum_compat
- name: fedora-23
run_list: yum::dnf_yum_compat
- name: ubuntu-12.04
run_list: apt::default
- name: ubuntu-14.04
run_list: apt::default
suites:
- name: default
run_list:
- recipe[awscreds::default]
attributes:
dev_mode: true
| driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.7
- name: centos-7.2
- name: debian-7.10
run_list: apt::default
- name: debian-8.4
run_list: apt::default
- name: fedora-22
run_list: yum::dnf_yum_compat
- name: fedora-23
run_list: yum::dnf_yum_compat
- name: ubuntu-12.04
run_list: apt::default
- name: ubuntu-14.04
run_list: apt::default
suites:
- name: default
run_list:
- recipe[awscreds::default]
attributes:
dev_mode: true
|
Bump actions/cache from v2.1.2 to v2.1.3 | name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
java: [ 11, 15 ]
experimental: [false]
include:
- java: 16-ea
experimental: true
steps:
- uses: actions/checkout@v2.3.4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1.4.3
with:
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@v2.1.2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B clean package --file pom.xml
| name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
java: [ 11, 15 ]
experimental: [false]
include:
- java: 16-ea
experimental: true
steps:
- uses: actions/checkout@v2.3.4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1.4.3
with:
java-version: ${{ matrix.java }}
- name: Cache Maven packages
uses: actions/cache@v2.1.3
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build with Maven
run: mvn -B clean package --file pom.xml
|
Add Go 1.10.x for TravisCI | language: go
install: go get golang.org/x/tools/imports/...
script: go test -v ./...
go:
- 1.2.x
- 1.3.x
- 1.4.x
- 1.5.x
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- tip
| language: go
install: go get golang.org/x/tools/imports/...
script: go test -v ./...
go:
- 1.2.x
- 1.3.x
- 1.4.x
- 1.5.x
- 1.6.x
- 1.7.x
- 1.8.x
- 1.9.x
- 1.10.x
- tip
|
Check if docusign is installed | abbreviation: dcsgn
checker: PragmaRX\Health\Checkers\DocusignChecker
username: {{ docusign.username }}
password: {{ docusign.password }}
integrator_key: {{ docusign.integrator_key }}
debug: {{ docusign.debug }}
debug_file: storage/logs/docusign.log
notify: true
api_host: {{ docusign.host }}
error_message: 'A reboot is required in this server (Uptime Checker)'
column_size: 4
| abbreviation: dcsgn
checker: PragmaRX\Health\Checkers\DocusignChecker
username: {{ docusign.username }}
password: {{ docusign.password }}
integrator_key: {{ docusign.integrator_key }}
debug: {{ docusign.debug }}
debug_file: storage/logs/docusign.log
notify: true
api_host: {{ docusign.host }}
error_message: 'A reboot is required in this server (Uptime Checker)'
not_installed_message: 'Docusign is not installed.'
column_size: 4
|
Add dependency chain for zookeeper services | version: '2'
services:
zoo1:
image: dockerized89/alpine-zookeeper
restart: always
ports:
- 2181:2181
environment:
ZOO_MY_ID: 1
ZOO_SERVERS: server.1=zoo1:2888:3888 server.2=zoo2:2888:3888 server.3=zoo3:2888:3888
zoo2:
image: dockerized89/alpine-zookeeper
restart: always
ports:
- 2182:2181
environment:
ZOO_MY_ID: 2
ZOO_SERVERS: server.1=zoo1:2888:3888 server.2=zoo2:2888:3888 server.3=zoo3:2888:3888
zoo3:
image: dockerized89/alpine-zookeeper
restart: always
ports:
- 2183:2181
environment:
ZOO_MY_ID: 3
ZOO_SERVERS: server.1=zoo1:2888:3888 server.2=zoo2:2888:3888 server.3=zoo3:2888:3888 | version: '2'
services:
zoo1:
image: dockerized89/alpine-zookeeper
restart: always
ports:
- 2181:2181
environment:
ZOO_MY_ID: 1
ZOO_SERVERS: server.1=zoo1:2888:3888 server.2=zoo2:2888:3888 server.3=zoo3:2888:3888
zoo2:
image: dockerized89/alpine-zookeeper
restart: always
ports:
- 2182:2181
environment:
ZOO_MY_ID: 2
ZOO_SERVERS: server.1=zoo1:2888:3888 server.2=zoo2:2888:3888 server.3=zoo3:2888:3888
depends_on:
- zoo1
zoo3:
image: dockerized89/alpine-zookeeper
restart: always
ports:
- 2183:2181
environment:
ZOO_MY_ID: 3
ZOO_SERVERS: server.1=zoo1:2888:3888 server.2=zoo2:2888:3888 server.3=zoo3:2888:3888
depends_on:
- zoo2 |
Reduce browsers to see if travis + sauce behaves more reliably | ui: tape
browsers:
- name: chrome
version: [35,36,beta]
- name: firefox
version: 30..latest
server: ./test/server.js
| ui: tape
browsers:
- name: chrome
version: [latest,beta]
- name: firefox
version: latest
server: ./test/server.js
|
Update from Hackage at 2016-09-11T23:33:46+0000 | homepage: https://github.com/RoboticsHS/rosmsg#readme
changelog-type: ''
hash: e343536239c3544293f2abc5d8a339d467cd1fab3bf47476cef82243458c0168
test-bench-deps: {}
maintainer: mail@akru.me
synopsis: ROS message parser, render, TH
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <1'
lens-family: ! '>=1.2 && <2'
base: ! '>=4.7 && <5'
text: ! '>=1.2 && <2'
pureMD5: ! '>=2.1 && <3'
data-default: ! '>=0.5 && <1'
binary: ! '>=0.7 && <1'
attoparsec: ! '>=0.13 && <1'
template-haskell: ! '>=2.10 && <2.12'
all-versions:
- '0.4.3.1'
- '0.4.3.2'
- '0.4.3.3'
- '0.4.4.0'
author: Alexander Krupenkin
latest: '0.4.4.0'
description-type: haddock
description: Please see README.md
license-name: BSD3
| homepage: https://github.com/RoboticsHS/rosmsg#readme
changelog-type: ''
hash: 02e36e542063b73ef3842622eff21b72b19a440e819fa7f8335c658e02c74090
test-bench-deps: {}
maintainer: mail@akru.me
synopsis: ROS message parser, render, TH
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <1'
lens-family: ! '>=1.2 && <2'
base: ! '>=4.7 && <5'
text: ! '>=1.2 && <2'
pureMD5: ! '>=2.1 && <3'
data-default: ! '>=0.5 && <1'
binary: ! '>=0.7 && <1'
attoparsec: ! '>=0.13 && <1'
template-haskell: ! '>=2.10 && <2.12'
all-versions:
- '0.4.3.1'
- '0.4.3.2'
- '0.4.3.3'
- '0.4.4.0'
- '0.5.0.0'
author: Alexander Krupenkin
latest: '0.5.0.0'
description-type: haddock
description: Please see README.md
license-name: BSD3
|
Update from Hackage at 2016-12-01T15:16:21Z | homepage: ''
changelog-type: ''
hash: ad04cbc19be911e3351091287ec485664abf5e8e3030d0a5a67cd751a7c9c229
test-bench-deps:
stm: -any
base: ! '>=4.6 && <5.0'
HDBC: -any
yeshql: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
maintainer: tdammers@gmail.com
synopsis: YesQL-style SQL database abstraction
changelog: ''
basic-deps:
base: ! '>=4.6 && <5.0'
HDBC: ! '>=2.4 && <3.0'
filepath: -any
parsec: ! '>=3.0 && <4.0'
containers: ! '>=0.5 && <1.0'
template-haskell: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.0.1'
- '0.3.0.0'
- '0.3.0.2'
- '0.3.0.3'
author: Tobias Dammers
latest: '0.3.0.3'
description-type: haddock
description: ''
license-name: MIT
| homepage: ''
changelog-type: ''
hash: eeb91514af26fe6c1822be2ed7d62b8488a22b3d645a4c648fd453c1247bab73
test-bench-deps:
stm: -any
base: ! '>=4.6 && <5.0'
HDBC: -any
yeshql: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
maintainer: tdammers@gmail.com
synopsis: YesQL-style SQL database abstraction
changelog: ''
basic-deps:
base: ! '>=4.6 && <5.0'
HDBC: ! '>=2.4 && <3.0'
filepath: -any
parsec: ! '>=3.0 && <4.0'
containers: ! '>=0.5 && <1.0'
template-haskell: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.0.1'
- '0.3.0.0'
- '0.3.0.2'
- '0.3.0.3'
- '1.0.0.0'
author: Tobias Dammers
latest: '1.0.0.0'
description-type: haddock
description: ! 'Use quasi-quotations to write SQL in SQL, while at the same time
adding type annotations to turn them into well-typed Haskell
functions.'
license-name: MIT
|
Add missing option to the blueprint | name: Error
version: 1.2.2
description: Displays the error page.
icon: warning
author:
name: Team Grav
email: devs@getgrav.org
url: http://getgrav.org
homepage: https://github.com/getgrav/grav-plugin-error
keywords: error, plugin, required
bugs: https://github.com/getgrav/grav-plugin-error/issues
license: MIT
form:
validation: strict
fields:
enabled:
type: toggle
label: Plugin status
highlight: 1
default: 0
options:
1: Enabled
0: Disabled
validate:
type: bool
| name: Error
version: 1.2.2
description: Displays the error page.
icon: warning
author:
name: Team Grav
email: devs@getgrav.org
url: http://getgrav.org
homepage: https://github.com/getgrav/grav-plugin-error
keywords: error, plugin, required
bugs: https://github.com/getgrav/grav-plugin-error/issues
license: MIT
form:
validation: strict
fields:
enabled:
type: toggle
label: Plugin status
highlight: 1
default: 0
options:
1: Enabled
0: Disabled
validate:
type: bool
routes.404:
type: text
size: medium
label: 404 Route
default: '/error'
|
Fix azure config for endpoint name change | resources:
repositories:
- repository: ci-perl-helpers
type: github
name: houseabsolute/ci-perl-helpers
endpoint: houseabsolute/ci-perl-helpers
stages:
- template: templates/helpers/build.yml@ci-perl-helpers
parameters:
debug: true
- template: templates/helpers/linux.yml@ci-perl-helpers
parameters:
coverage: codecov
debug: true
include_threads: true
test_xt: true
use_default_perls: true
- template: templates/helpers/macos.yml@ci-perl-helpers
parameters:
debug: true
include_threads: true
use_default_perls: true
- template: templates/helpers/windows.yml@ci-perl-helpers
parameters:
debug: true
use_default_perls: true
| resources:
repositories:
- repository: ci-perl-helpers
type: github
name: houseabsolute/ci-perl-helpers
endpoint: houseabsolute
stages:
- template: templates/helpers/build.yml@ci-perl-helpers
parameters:
debug: true
- template: templates/helpers/linux.yml@ci-perl-helpers
parameters:
coverage: codecov
debug: true
include_threads: true
test_xt: true
use_default_perls: true
- template: templates/helpers/macos.yml@ci-perl-helpers
parameters:
debug: true
include_threads: true
use_default_perls: true
- template: templates/helpers/windows.yml@ci-perl-helpers
parameters:
debug: true
use_default_perls: true
|
Update from Hackage at 2019-08-27T11:37:51Z | homepage: http://www.ariis.it/static/articles/gscholar-rss/page.html
changelog-type: ''
hash: 5e907ed23300dd68219b9ad53bd8d5738f99febdf2986341a3aaaeaa7fee4ff1
test-bench-deps: {}
maintainer: fa-ml@ariis.it
synopsis: scrapes google scholar, provides RSS feed
changelog: ''
basic-deps:
scalpel-core: ==0.5.*
feed: ^>=1.0.1.0
base: ==4.*
text: ==1.2.*
uri: ==0.1.*
http-conduit: ==2.3.*
all-versions:
- 0.1.0.0
- 0.2.0.0
- 0.2.1.0
author: Francesco Ariis
latest: 0.2.1.0
description-type: text
description: |
gscholar-rss, an RSS scraper for Google Scholar.
Manual in manual/ or at
http://www.ariis.it/static/articles/gscholar-rss/page.html
license-name: GPL-3.0-only
| homepage: http://www.ariis.it/static/articles/gscholar-rss/page.html
changelog-type: ''
hash: a407d9067af9990c1539232bd7a7ce48e35c0b7304e0d20da6d8073ca659aadc
test-bench-deps: {}
maintainer: fa-ml@ariis.it
synopsis: scrapes google scholar, provides RSS feed
changelog: ''
basic-deps:
scalpel-core: ! '>=0.5 && <0.7'
feed: ! '>=1.0.1.0 && <1.3'
base: ==4.*
text: ==1.2.*
uri: ==0.1.*
http-conduit: ==2.3.*
all-versions:
- 0.1.0.0
- 0.2.0.0
- 0.2.1.0
- 0.2.2.0
author: Francesco Ariis
latest: 0.2.2.0
description-type: text
description: |
gscholar-rss, an RSS scraper for Google Scholar.
Manual in manual/ or at
http://www.ariis.it/static/articles/gscholar-rss/page.html
license-name: GPL-3.0-only
|
Update from Hackage at 2019-07-16T14:04:59Z | homepage: https://github.com/haskell-trasa/trasa
changelog-type: ''
hash: 6b7d203e027e09f9e22a2dab7b3e38d62bc830ff9cf15dcfbca2a2330a3641e1
test-bench-deps: {}
maintainer: |-
Andrew Martin <andrew.thaddeus@gmail.com>
Kyle McKean <mckean.kylej@gmail.com>
chessai <chessai1996@gmail.com>
synopsis: Type safe web server
changelog: ''
basic-deps:
bytestring: ==0.10.*
wai: ==3.2.*
case-insensitive: ==1.2.*
base: ! '>=4.9 && <5'
trasa: ==0.4.*
text: ==1.2.*
containers: ! '>=0.5 && <0.7'
mtl: ==2.2.*
http-types: ! '>=0.9'
http-media: ! '>=0.6 && <0.8'
all-versions:
- '0.1'
- '0.2'
- '0.4'
author: |-
Andrew Martin
Kyle McKean
latest: '0.4'
description-type: haddock
description: WAI integration for trasa
license-name: MIT
| homepage: https://github.com/haskell-trasa/trasa
changelog-type: ''
hash: 0edb72e3cf986f095c89f45442ddb4edeb8cb248342ad199eab72f0b503b5f51
test-bench-deps: {}
maintainer: |-
Andrew Martin <andrew.thaddeus@gmail.com>
Kyle McKean <mckean.kylej@gmail.com>
chessai <chessai1996@gmail.com>
synopsis: Type safe web server
changelog: ''
basic-deps:
bytestring: ==0.10.*
wai: ==3.2.*
case-insensitive: ==1.2.*
base: ! '>=4.9 && <5'
trasa: ==0.4.*
text: ==1.2.*
containers: ! '>=0.5 && <0.7'
mtl: ==2.2.*
http-types: ! '>=0.9'
http-media: ! '>=0.6 && <0.8'
all-versions:
- '0.1'
- '0.2'
- '0.4'
- '0.5'
author: |-
Andrew Martin
Kyle McKean
latest: '0.5'
description-type: haddock
description: WAI integration for trasa
license-name: MIT
|
Build test bundle when provisioning production environment | ---
- name: Create folders for static files
file: path="{{ item }}"
state=directory
owner="{{ ansible_ssh_user }}"
group=mmw
mode=0775
with_items:
- "{{ app_static_root }}"
- "{{ app_media_root }}"
- "{{ app_static_cache }}"
- name: Install application JavaScript dependencies
command: "npm install --unsafe-perm"
args:
chdir: "{{ app_home }}"
sudo: False
- name: Create static files and run collectstatic (staging/production)
command: "./bundle.sh --vendor"
args:
chdir: "{{ app_home }}"
environment: app_config
sudo: False
when: "['development'] | is_not_in(group_names)"
- name: Create static files and run collectstatic (development)
command: "./bundle.sh --vendor --tests --debug"
args:
chdir: "{{ app_home }}"
environment: app_config
sudo: False
when: "['development'] | is_in(group_names)"
- name: Run Django collectstatic command
django_manage: command=collectstatic app_path="{{ app_home }}"
environment: app_config
sudo: False
- name: Create JavaScript test harness
template: src=testem-harness.html.j2
dest="{{ app_static_root }}/test.html"
sudo: False
when: "['development', 'test'] | some_are_in(group_names)"
| ---
- name: Create folders for static files
file: path="{{ item }}"
state=directory
owner="{{ ansible_ssh_user }}"
group=mmw
mode=0775
with_items:
- "{{ app_static_root }}"
- "{{ app_media_root }}"
- "{{ app_static_cache }}"
- name: Install application JavaScript dependencies
command: "npm install --unsafe-perm"
args:
chdir: "{{ app_home }}"
sudo: False
- name: Create static files and run collectstatic (staging/production)
command: "./bundle.sh --vendor --tests"
args:
chdir: "{{ app_home }}"
environment: app_config
sudo: False
when: "['development'] | is_not_in(group_names)"
- name: Create static files and run collectstatic (development)
command: "./bundle.sh --vendor --tests --debug"
args:
chdir: "{{ app_home }}"
environment: app_config
sudo: False
when: "['development'] | is_in(group_names)"
- name: Run Django collectstatic command
django_manage: command=collectstatic app_path="{{ app_home }}"
environment: app_config
sudo: False
- name: Create JavaScript test harness
template: src=testem-harness.html.j2
dest="{{ app_static_root }}/test.html"
sudo: False
when: "['development', 'test'] | some_are_in(group_names)"
|
Comment osx role for Yosemite tests | ---
# Configure your freshly installed software
- hosts: all
roles:
- role: osxc.repository
clone_url: https://github.com/robbyrussell/oh-my-zsh.git
dest: /Users/{{ ansible_user_id }}/.oh-my-zsh
- role: osx
- role: homedir
- role: dotfiles
- role: ssh
- role: alfred
- role: chef
- role: jetbrains
- role: legit
- role: dock
apps:
- /Applications/Google Chrome.app
- /Applications/Skype.app
- /Applications/IntelliJ IDEA 13.app
- /Applications/Sublime Text.app
- /Applications/iTerm.app
folders:
- path: ~/Downloads
sort: datemodified
| ---
# Configure your freshly installed software
- hosts: all
roles:
- role: osxc.repository
clone_url: https://github.com/robbyrussell/oh-my-zsh.git
dest: /Users/{{ ansible_user_id }}/.oh-my-zsh
#- role: osx
- role: homedir
- role: dotfiles
- role: ssh
- role: alfred
- role: chef
- role: jetbrains
- role: legit
- role: dock
apps:
- /Applications/Google Chrome.app
- /Applications/Skype.app
- /Applications/IntelliJ IDEA 13.app
- /Applications/Sublime Text.app
- /Applications/iTerm.app
folders:
- path: ~/Downloads
sort: datemodified
|
Allow specifying role of example | ---
example:
image: serfnode_example
environment:
ROLE: example
CONTACT:
ADVERTISE:
RPC_PORT:
NODE:
IP:
| ---
example:
image: serfnode_example
environment:
ROLE:
CONTACT:
ADVERTISE:
RPC_PORT:
NODE:
IP:
|
Update glob2 recipe to version 0.6 | {% set name = "glob2" %}
{% set version = "0.5" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: 8f944b87ac4deaf39b0dce419665b40a3acb66a9ad3b07945e109246bb66fe9f
build:
number: 0
noarch: python
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- glob2
about:
home: https://github.com/miracle2k/python-glob2
license: BSD-2-Clause
license_file: LICENSE
summary: Version of the glob module that supports recursion via **, and can capture patterns.
| {% set name = "glob2" %}
{% set version = "0.6" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
sha256: f5b0a686ff21f820c4d3f0c4edd216704cea59d79d00fa337e244a2f2ff83ed6
build:
number: 0
noarch: python
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
test:
imports:
- glob2
about:
home: https://github.com/miracle2k/python-glob2
license: BSD-2-Clause
license_file: LICENSE
summary: Version of the glob module that supports recursion via **, and can capture patterns.
|
Use Java 11 for upload-artifacts action | name: Java CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 15, 17]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Check Docs
run: ./util/check_docs.py
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: CI Test
run: mvn verify
- name: Upload Artifact
if: ${{ matrix.java == 8 }}
uses: actions/upload-artifact@v2
with:
name: robot.jar
path: bin/robot.jar
retention-days: 90
| name: Java CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [11, 15, 17]
name: Java ${{ matrix.java }}
steps:
- uses: actions/checkout@v2
- name: Check Docs
run: ./util/check_docs.py
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: CI Test
run: mvn verify
- name: Upload Artifact
if: ${{ matrix.java == 11 }}
uses: actions/upload-artifact@v2
with:
name: robot.jar
path: bin/robot.jar
retention-days: 90
|
Add mesa-utils and inotify-tools to apt. | ---
common_apps:
- aptitude
- build-essential
- git
- cmake
- meld
- silversearcher-ag
- vim-gnome-py2
- xclip
- tmux
| ---
common_apps:
- aptitude
- build-essential
- cmake
- git
- inotify-tools
- meld
- mesa-utils
- silversearcher-ag
- tmux
- vim-gnome-py2
- xclip
|
Add scheme to default AWS endpoint | ---
platform: linux
# TODO: change this back when submitting PR!
# image_resource:
# type: docker-image
# source:
# repository: boshcpi/gce-cpi-release
# tag: v2
image_resource:
type: docker-image
source:
repository: boshcpi/gce-cpi-release
tag: PR-add-aws-cli
inputs:
- name: light-stemcell
- name: bosh-cpi-src
run:
path: bosh-cpi-src/ci/stemcell/light/tasks/publish-stemcell-and-checksum.sh
params:
BOSHIO_TOKEN: ""
AWS_ACCESS_KEY_ID: ""
AWS_SECRET_ACCESS_KEY: ""
AWS_DEFAULT_REGION: "us-east-1"
AWS_ENDPOINT: "s3.amazonaws.com"
OUTPUT_BUCKET: ""
| ---
platform: linux
# TODO: change this back when submitting PR!
# image_resource:
# type: docker-image
# source:
# repository: boshcpi/gce-cpi-release
# tag: v2
image_resource:
type: docker-image
source:
repository: boshcpi/gce-cpi-release
tag: PR-add-aws-cli
inputs:
- name: light-stemcell
- name: bosh-cpi-src
run:
path: bosh-cpi-src/ci/stemcell/light/tasks/publish-stemcell-and-checksum.sh
params:
BOSHIO_TOKEN: ""
AWS_ACCESS_KEY_ID: ""
AWS_SECRET_ACCESS_KEY: ""
AWS_DEFAULT_REGION: "us-east-1"
AWS_ENDPOINT: "https://s3.amazonaws.com"
OUTPUT_BUCKET: ""
|
Make PgSQL happy ("ActiveRecord::StatementInvalid: PG::ProtocolViolation"). | development:
prepared_statements: false
adapter: postgresql
database: discourse_development
min_messages: warning
pool: 5
timeout: 5000
host_names:
### Don't include the port number here. Change the "port" site setting instead, at /admin/site_settings.
### If you change this setting you will need to
### - restart sidekiq if you change this setting
### - rebake all to posts using: `RAILS_ENV=production bundle exec rake posts:rebake`
- "localhost"
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
adapter: postgresql
database: discourse_test
min_messages: warning
pool: 5
timeout: 5000
host_names:
- test.localhost
# profile db is used for benchmarking using the script/bench.rb script
profile:
prepared_statements: false
adapter: postgresql
database: discourse_profile
min_messages: warning
pool: 5
timeout: 5000
host_names:
- "localhost"
# You may be surprised production is not here, it is sourced from application.rb using a monkey patch
# This is done for 2 reasons
#
# 1. we need to support blank settings correctly and rendering nothing in yaml/erb is a PITA
# 2. why go from object -> yaml -> object, pointless
| development:
prepared_statements: false
adapter: postgresql
database: discourse_development
min_messages: warning
pool: 5
timeout: 5000
host_names:
### Don't include the port number here. Change the "port" site setting instead, at /admin/site_settings.
### If you change this setting you will need to
### - restart sidekiq if you change this setting
### - rebake all to posts using: `RAILS_ENV=production bundle exec rake posts:rebake`
- "localhost"
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
# Do not set this db to the same as development or production.
test:
prepared_statements: false
adapter: postgresql
database: discourse_test
min_messages: warning
pool: 5
timeout: 5000
host_names:
- test.localhost
# profile db is used for benchmarking using the script/bench.rb script
profile:
prepared_statements: false
adapter: postgresql
database: discourse_profile
min_messages: warning
pool: 5
timeout: 5000
host_names:
- "localhost"
# You may be surprised production is not here, it is sourced from application.rb using a monkey patch
# This is done for 2 reasons
#
# 1. we need to support blank settings correctly and rendering nothing in yaml/erb is a PITA
# 2. why go from object -> yaml -> object, pointless
|
Update from Hackage at 2020-11-18T17:31:00Z | homepage: https://github.com/andrewthad/array-builder
changelog-type: markdown
hash: cdbca14ebed86b3501a2ff8c52c16ed6c0ead866f0afc1e7f8c6d329e1db37cc
test-bench-deps:
base: -any
array-builder: -any
tasty-hunit: -any
tasty: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Builders for arrays
changelog: |
# Revision history for array-builder
## 0.1.0.0 -- 2019-09-12
* First version. Released on an unsuspecting world.
basic-deps:
base: ! '>=4.12 && <5'
run-st: ! '>=0.1 && <0.2'
array-chunks: ! '>=0.1 && <0.2'
primitive: ! '>=0.6.4 && <0.8'
all-versions:
- 0.1.0.0
author: Andrew Martin
latest: 0.1.0.0
description-type: haddock
description: ''
license-name: BSD-3-Clause
| homepage: https://github.com/andrewthad/array-builder
changelog-type: markdown
hash: 68f579960f01807e7e9ee382cbacab2664ee0077ebe0dd9e3a6ba54a6d7bc86b
test-bench-deps:
base: -any
array-builder: -any
tasty-hunit: -any
tasty: -any
maintainer: andrew.thaddeus@gmail.com
synopsis: Builders for arrays
changelog: |
# Revision history for array-builder
## 0.1.1.0 -- 2020-11-18
* Add `new1`.
* Add `Data.Builder.(doubleton|tripleton)`.
## 0.1.0.0 -- 2019-09-12
* First version.
basic-deps:
base: '>=4.12 && <5'
run-st: '>=0.1 && <0.2'
array-chunks: '>=0.1 && <0.2'
primitive: '>=0.6.4 && <0.8'
all-versions:
- 0.1.0.0
- 0.1.1.0
author: Andrew Martin
latest: 0.1.1.0
description-type: haddock
description: ''
license-name: BSD-3-Clause
|
Use AdoptOpenJDK to build the plugin. | name: 'Generate coverage report'
on:
push:
branches:
- master
pull_request:
jobs:
coverage:
runs-on: [ubuntu-latest]
name: Coverage on Ubuntu
steps:
- uses: actions/checkout@v2.3.4
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: 11
- name: Generate coverage with JaCoCo
run: mvn -V -ntp clean verify jacoco:prepare-agent test integration-test jacoco:report --file pom.xml '-Dgpg.skip'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1.5.0
with:
token: ${{secrets.CODECOV_TOKEN}}
| name: 'Generate coverage report'
on:
push:
branches:
- master
pull_request:
jobs:
coverage:
runs-on: [ubuntu-latest]
name: Coverage on Ubuntu
steps:
- uses: actions/checkout@v2.3.4
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '11'
check-latest: true
- name: Generate coverage with JaCoCo
run: mvn -V -ntp clean verify jacoco:prepare-agent test integration-test jacoco:report --file pom.xml '-Dgpg.skip'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1.5.0
with:
token: ${{secrets.CODECOV_TOKEN}}
|
Install np then do optional. | name: Pymatgen linting
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements-optional.txt
- name: Lint with pycodestyle
run: |
pycodestyle pymatgen
- name: Lint with mypy
run: |
mypy pymatgen
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 --count --select=E9,F63,F7,F82 --show-source --statistics pymatgen
flake8 --count --show-source --statistics pymatgen/core
# exit-zero treats all errors as warnings.
flake8 --count --exit-zero --max-complexity=10 --statistics pymatgen
- name: Test with pytest
run: |
pip install -e .
pytest pymatgen
| name: Pymatgen linting
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.7]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-optional.txt
- name: Lint with pycodestyle
run: |
pycodestyle pymatgen
- name: Lint with mypy
run: |
mypy pymatgen
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
flake8 --count --select=E9,F63,F7,F82 --show-source --statistics pymatgen
flake8 --count --show-source --statistics pymatgen/core
# exit-zero treats all errors as warnings.
flake8 --count --exit-zero --max-complexity=10 --statistics pymatgen
- name: Test with pytest
run: |
pip install -e .
pytest pymatgen
|
Prepare hypervisors for Ansible configuration management. | # file: managed_servers.yml
#
# Prepares new hosts for Ansible configuration management. Usually run as:
#
# ansible-playbook -vvv managed_servers.yml -ki bootstrap
#
- hosts: managed_servers
roles:
- admin_access
- admin_tools
- firewall
| # file: managed_servers.yml
#
# Prepares new hosts for Ansible configuration management. Usually run as:
#
# ansible-playbook -vv managed_servers.yml -ki bootstrap
#
- hosts: libvirt_hosts
roles:
- admin_access
- admin_tools
- firewall
|
Use Checkout v2 to fix CI | name: nf-core CI
# This workflow is triggered on pushes and PRs to the repository.
# It runs the pipeline with the minimal test dataset to check that it completes without any syntax errors
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
nxf_ver: ['19.10.0', '']
aligner: ["--aligner 'hisat2'", "--aligner 'star'", "--pseudo_aligner 'salmon'"]
options: ['--skipQC', '--remove_rRNA', '--saveUnaligned', '--skipTrimming', '--star_index false']
steps:
- uses: actions/checkout@v1
- name: Install Nextflow
run: |
export NXF_VER=${{ matrix.nxf_ver }}
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
- name: Pull docker image
run: |
docker pull nfcore/rnaseq:dev
docker tag nfcore/rnaseq:dev nfcore/rnaseq:dev
- name: Basic workflow tests
run: |
nextflow run ${GITHUB_WORKSPACE} -profile test,docker ${{ matrix.aligner }} ${{ matrix.options }}
- name: Basic workflow, gzipped input
run: |
nextflow run ${GITHUB_WORKSPACE} -profile test_gz,docker ${{ matrix.aligner }} ${{ matrix.options }}
| name: nf-core CI
# This workflow is triggered on pushes and PRs to the repository.
# It runs the pipeline with the minimal test dataset to check that it completes without any syntax errors
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
nxf_ver: ['19.10.0', '']
aligner: ["--aligner 'hisat2'", "--aligner 'star'", "--pseudo_aligner 'salmon'"]
options: ['--skipQC', '--remove_rRNA', '--saveUnaligned', '--skipTrimming', '--star_index false']
steps:
- uses: actions/checkout@v2
- name: Install Nextflow
run: |
export NXF_VER=${{ matrix.nxf_ver }}
wget -qO- get.nextflow.io | bash
sudo mv nextflow /usr/local/bin/
- name: Pull docker image
run: |
docker pull nfcore/rnaseq:dev
docker tag nfcore/rnaseq:dev nfcore/rnaseq:dev
- name: Basic workflow tests
run: |
nextflow run ${GITHUB_WORKSPACE} -profile test,docker ${{ matrix.aligner }} ${{ matrix.options }}
- name: Basic workflow, gzipped input
run: |
nextflow run ${GITHUB_WORKSPACE} -profile test_gz,docker ${{ matrix.aligner }} ${{ matrix.options }}
|
Add migrations to test exclude paths | engines:
pep8:
enabled: true
ratings:
paths:
- "**.py"
exclude_paths:
- tests/*
- examples/*
| engines:
pep8:
enabled: true
ratings:
paths:
- "**.py"
exclude_paths:
- tests/*
- examples/*
- chatterbot/ext/django_chatterbot/migrations/*
|
Update from Hackage at 2017-04-06T21:03:59Z | homepage: http://github.com/bennofs/tasty-th
changelog-type: ''
hash: 964a332f0400c18ea5cccb0974799d3fe4bc2640e544ae67ea2d02c6f6642dc6
test-bench-deps: {}
maintainer: Benno Fünfstück <benno.fuenfstueck@gmail.com>
synopsis: Automatic tasty test case discovery using TH
changelog: ''
basic-deps:
base: ! '>=4 && <5'
haskell-src-exts: ! '>=1.18.0'
tasty: -any
template-haskell: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
- '0.1.5'
author: Oscar Finnsson & Emil Nordling & Benno Fünfstück
latest: '0.1.5'
description-type: haddock
description: Generate tasty TestTrees automatically with TemplateHaskell. See the
README for example usage.
license-name: BSD3
| homepage: http://github.com/bennofs/tasty-th
changelog-type: ''
hash: d4554a41fd79a42c7e414a2cd04dfe4863bf8b8772f9c0e916030a1f56915b39
test-bench-deps: {}
maintainer: Benno Fünfstück <benno.fuenfstueck@gmail.com>
synopsis: Automatic tasty test case discovery using TH
changelog: ''
basic-deps:
base: ! '>=4 && <5'
haskell-src-exts: ! '>=1.18.0'
tasty: -any
template-haskell: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
- '0.1.4'
- '0.1.5'
- '0.1.6'
author: Oscar Finnsson & Emil Nordling & Benno Fünfstück
latest: '0.1.6'
description-type: haddock
description: Generate tasty TestTrees automatically with TemplateHaskell. See the
README for example usage.
license-name: BSD3
|
Bump ridedott/merge-me-action from 2.8.19 to 2.8.20 | name: Merge me!
on:
check_suite:
types:
- completed
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- name: Merge me!
uses: ridedott/merge-me-action@v2.8.19
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_TOKEN_WORKAROUND` environment variable with permissions to
# push to a protected branch must be used. This variable can have an
# arbitrary name, as an example, this repository uses
# `GITHUB_TOKEN_DOTTBOTT`.
#
# When using a custom token, it is recommended to leave the following
# comment for other developers to be aware of the reasoning behind it:
#
# This must be used as GitHub Actions token does not support
# pushing to protected branches.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_METHOD: MERGE
| name: Merge me!
on:
check_suite:
types:
- completed
jobs:
merge-me:
name: Merge me!
runs-on: ubuntu-latest
steps:
- name: Merge me!
uses: ridedott/merge-me-action@v2.8.20
with:
# Depending on branch protection rules, a manually populated
# `GITHUB_TOKEN_WORKAROUND` environment variable with permissions to
# push to a protected branch must be used. This variable can have an
# arbitrary name, as an example, this repository uses
# `GITHUB_TOKEN_DOTTBOTT`.
#
# When using a custom token, it is recommended to leave the following
# comment for other developers to be aware of the reasoning behind it:
#
# This must be used as GitHub Actions token does not support
# pushing to protected branches.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_METHOD: MERGE
|
Use slim instead of alpine | ---
kind: pipeline
name: test
steps:
- name: build
image: python:2.7-alpine
environment:
VIRTUAL_ENV: "/opt/venv"
commands:
- export PATH="$VIRTUAL_ENV/bin:$PATH"
- pip install virtualenv
- virtualenv $VIRTUAL_ENV
- pip install -r requirements.txt
- name: test
image: python:2.7-alpine
environment:
VIRTUAL_ENV: "/opt/venv"
commands:
- export PATH="$VIRTUAL_ENV/bin:$PATH"
- ./manage.py check
- ./manage.py test
| ---
kind: pipeline
name: test
steps:
- name: build
image: python:2.7-slim
environment:
VIRTUAL_ENV: "/opt/venv"
commands:
- export PATH="$VIRTUAL_ENV/bin:$PATH"
- pip install virtualenv
- virtualenv $VIRTUAL_ENV
- pip install -r requirements.txt
- name: test
image: python:2.7-slim
environment:
VIRTUAL_ENV: "/opt/venv"
commands:
- export PATH="$VIRTUAL_ENV/bin:$PATH"
- ./manage.py check
- ./manage.py test
|
Add Python3 zed unit tests | - project:
check:
jobs:
- oslo.versionedobjects-src-grenade-multinode
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-yoga-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
- job:
name: oslo.versionedobjects-src-grenade-multinode
parent: grenade-multinode
voting: false
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
required-projects:
- opendev.org/openstack/oslo.versionedobjects
| - project:
check:
jobs:
- oslo.versionedobjects-src-grenade-multinode
templates:
- check-requirements
- lib-forward-testing-python3
- openstack-python3-zed-jobs
- periodic-stable-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
- job:
name: oslo.versionedobjects-src-grenade-multinode
parent: grenade-multinode
voting: false
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
required-projects:
- opendev.org/openstack/oslo.versionedobjects
|
Exclude test and vendored code | exclude_patterns:
- "app/assets/javascripts/*.js"
| exclude_patterns:
- "app/assets/javascripts/*.js"
- "tests/"
- "spec/"
- "features/"
- "config/"
- "db/"
- "**/vendor/"
|
Update meta information for Ansible Galaxy 2.0. | ---
galaxy_info:
author: Martin Etmajer
company: Dynatrace
license: MIT
min_ansible_version: 1.8
galaxy_tags:
- monitoring
dependencies:
- role: Dynatrace.Dynatrace-WebServer-Agent
dynatrace_wsagent_name: "{{ dynatrace_apache_agent_name }}" | ---
galaxy_info:
author: Martin Etmajer
company: Dynatrace
license: MIT
min_ansible_version: 1.8
platforms:
- name: EL
versions:
- 6
- 7
- name: Debian
versions:
- all
- name: Ubuntu
versions:
- all galaxy_tags:
- monitoring
dependencies:
- role: Dynatrace.Dynatrace-WebServer-Agent
dynatrace_wsagent_name: "{{ dynatrace_apache_agent_name }}" |
Modify example config by removing absolute paths | :tasks:
:increment_version:
:run: true
:options:
:decorate_icon:
:run: true
:options:
:xcode_build:
:run: true
:options:
:log: true
:run_tests:
:run: true
:options:
:log: true
:create_ipa:
:run: true
:options:
:log: false
:configuration:
:app_name: "BuildKit"
:workspace: "/Users/adamwaite/iOS/Lib/BuildKit/iOS-Build-Kit/example/BuildKit.xcworkspace"
:info_plist: "/Users/adamwaite/iOS/Lib/BuildKit/iOS-Build-Kit/example/BuildKit/BuildKit-Info.plist"
:build_configuration: "Release"
:scheme: "BuildKit"
:sdk: "iphoneos"
:provisioning_profile: "/Users/adamwaite/iOS/Lib/BuildKit/iOS-Build-Kit/example/Provisioning/BuildKitTest.mobileprovision"
:code_sign: "iPhone Distribution: Alpaca Labs"
:icon_dir: "/Users/adamwaite/iOS/Lib/BuildKit/iOS-Build-Kit/example/BuildKit/Icon/"
:build_dir: "/Users/adamwaite/iOS/Lib/BuildKit/iOS-Build-Kit/example/Builds/"
:preferences:
:reports: "/Users/adamwaite/iOS/Lib/BuildKit/iOS-Build-Kit/example/Reports/" | :tasks:
:increment_version:
:run: true
:options:
:decorate_icon:
:run: true
:options:
:xcode_build:
:run: true
:options:
:log: true
:run_tests:
:run: true
:options:
:log: true
:create_ipa:
:run: true
:options:
:log: false
:configuration:
:app_name: "BuildKit"
:workspace: "BuildKit.xcworkspace"
:info_plist: "BuildKit/BuildKit-Info.plist"
:build_configuration: "Release"
:scheme: "BuildKit"
:sdk: "iphoneos"
:provisioning_profile: "Provisioning/BuildKitTest.mobileprovision"
:code_sign: "iPhone Distribution: Alpaca Labs"
:icon_dir: "BuildKit/Icon"
:build_dir: "Builds"
:preferences:
:reports: "Reports/" |
Update from Hackage at 2022-05-05T15:07:55Z | homepage: ''
changelog-type: ''
hash: 26fa2972b4137447891f8c8aca85100c9328452f7f817ae96912cc6d129b7c86
test-bench-deps: {}
maintainer: libraries@haskell.org
synopsis: Functions for walking GHC's heap
changelog: ''
basic-deps:
base: '>=4.9.0 && <4.16.1'
containers: '>=0.6.2.1 && <0.7'
ghc-prim: '>0.2 && <0.9'
rts: ==1.0.*
all-versions:
- 9.0.1
- 9.2.1
author: ''
latest: 9.2.1
description-type: haddock
description: |-
This package provides functions for walking the GHC heap data structures
and retrieving information about those data structures.
license-name: BSD-3-Clause
| homepage: ''
changelog-type: ''
hash: 03b9b1db02c02db279a9cdbf9589966a869a5537103199bc507bcb5169999117
test-bench-deps: {}
maintainer: libraries@haskell.org
synopsis: Functions for walking GHC's heap
changelog: ''
basic-deps:
base: '>=4.9.0 && <5.0'
containers: '>=0.6.2.1 && <0.7'
ghc-prim: '>0.2 && <0.9'
rts: ==1.0.*
all-versions:
- 9.0.1
- 9.2.1
- 9.2.2
author: ''
latest: 9.2.2
description-type: haddock
description: |-
This package provides functions for walking the GHC heap data structures
and retrieving information about those data structures.
license-name: BSD-3-Clause
|
Revert "Upgrade to CircleCI 2.0" | version: 2
jobs:
build:
docker:
- image: circleci/golang:2.0
working_directory: /go/src/github.com/codelingo/codelingo
steps:
- checkout
- run: go get -u github.com/golang/dep/cmd/dep
- run: dep ensure -v
- run: go test $(go list ./... 2>/dev/null | grep -v /tenets/ | grep -v /vendor)
| version: 2
jobs:
build:
docker:
- image: circleci/golang:1.10
working_directory: /go/src/github.com/codelingo/codelingo
steps:
- checkout
- run: go get -u github.com/golang/dep/cmd/dep
- run: dep ensure -v
- run: go test $(go list ./... 2>/dev/null | grep -v /tenets/ | grep -v /vendor)
|
Increase external code coverage time, travis is taking more than 5 min | filter:
excluded_paths:
- 'tests/'
- 'vendor/'
tools:
external_code_coverage: true
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run --enable-security-analysis
| filter:
excluded_paths:
- 'tests/'
- 'vendor/'
tools:
external_code_coverage:
timeout: 600 # default is 300 seconds, travis build can take more than that
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run --enable-security-analysis
|
Add missing haproxy restart handler | ---
- name: refresh CAs
command: update-ca-certificates
- name: restart rsyslog
service: name=rsyslog state=restarted
- name: update timezone
command: dpkg-reconfigure --frontend noninteractive tzdata
- name: apply-sysctl
shell: "cat /etc/sysctl.conf /etc/sysctl.d/*.conf | sysctl -e -p -"
- include: ssh.yml
| ---
- name: refresh CAs
command: update-ca-certificates
- name: restart rsyslog
service: name=rsyslog state=restarted
- name: restart haproxy
service: name=haproxy state=restarted
- name: update timezone
command: dpkg-reconfigure --frontend noninteractive tzdata
- name: apply-sysctl
shell: "cat /etc/sysctl.conf /etc/sysctl.d/*.conf | sysctl -e -p -"
- include: ssh.yml
|
Update from Hackage at 2018-09-05T04:48:49Z | homepage: ''
changelog-type: ''
hash: d03baa3b393854504d85cde3c9012c8ffe55b601f75c30231a40fc8d7df12ef2
test-bench-deps: {}
maintainer: muesli4@gmail.com
synopsis: Provides zips where the combining doesn't stop premature, but instead uses
default values.
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.9'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Moritz Bruder
latest: '0.1.0.1'
description-type: markdown
description: ! "# list-zip-def\n\nProvides zip functions that use a given default
value, whenever one list is exhausted, but not all.\n\n Prelude> import Data.List.Zip\n
\ Prelude Data.List.Zip> zipDef 0 'x' [1, 2, 3] \"a\"\n [(1,'a')(2,'x')(3,'x')]\n\n"
license-name: PublicDomain
| homepage: ''
changelog-type: ''
hash: 2bbd57e04eb7266dda77ff6134d10af2fb96b36402ee78612df62a96e898d224
test-bench-deps: {}
maintainer: muesli4@gmail.com
synopsis: Provides zips with default values.
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.12'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Moritz Bruder
latest: '0.1.0.2'
description-type: markdown
description: ! "# list-zip-def\n\nProvides zip functions that use a given default
value, whenever one list is exhausted, but not all.\n\n Prelude> import Data.List.Zip\n
\ Prelude Data.List.Zip> zipDef 0 'x' [1, 2, 3] \"a\"\n [(1,'a')(2,'x')(3,'x')]\n\nThe
resulting list spine is also lazy:\n\n Prelude Data.List.Zip> let xs = zipDef
0 'x' [1, 2, 3 :: Int] \"a\"\n Prelude Data.List.Zip> :sprint xs\n xs = _\n
\ Prelude Data.List.Zip> import Data.Maybe\n Prelude Data.List.Zip Data.Maybe>
listToMaybe xs \n Just (1,'a')\n Prelude Data.List.Zip Data.Maybe> :sprint
xs\n xs = (1,'a') : _\n"
license-name: LicenseRefPublicDomain
|
Update from Hackage at 2018-01-20T07:14:46Z | homepage: https://github.com/vmchale/language-ats#readme
changelog-type: ''
hash: 8d02ecd8f89882c39a090109095a9e072ff740b2c5c7b8b18c2b1c29eacbc048
test-bench-deps:
base: -any
hspec: -any
criterion: -any
language-ats: -any
hspec-dirstream: -any
system-filepath: -any
maintainer: vamchale@gmail.com
synopsis: Parser and pretty-printer for ATS.
changelog: ''
basic-deps:
ansi-wl-pprint: ! '>=0.6.8'
composition-prelude: -any
base: ! '>=4.10 && <5'
unordered-containers: -any
array: -any
ansi-terminal: -any
lens: -any
deepseq: -any
recursion-schemes: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Vanessa McHale
latest: '0.1.0.1'
description-type: markdown
description: ! '# language-ats
## Installation
## Configuration
'
license-name: BSD3
| homepage: https://github.com/vmchale/language-ats#readme
changelog-type: ''
hash: 47a8d631f8a80cb1a9970329fb9434cf88aa806ce9f468344acda93f46827eaa
test-bench-deps:
base: -any
hspec: -any
criterion: -any
language-ats: -any
hspec-dirstream: -any
system-filepath: -any
maintainer: vamchale@gmail.com
synopsis: Parser and pretty-printer for ATS.
changelog: ''
basic-deps:
ansi-wl-pprint: ! '>=0.6.8'
composition-prelude: ! '>=0.1.1.2'
base: ! '>=4.10 && <5'
unordered-containers: -any
array: -any
ansi-terminal: -any
lens: -any
deepseq: -any
recursion-schemes: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.3'
author: Vanessa McHale
latest: '0.1.0.3'
description-type: markdown
description: ! '# language-ats
## Installation
## Configuration
'
license-name: BSD3
|
Update from Hackage at 2016-05-19T13:19:30+0000 | homepage: https://github.com/atzedijkstra/logict-state
changelog-type: ''
hash: 1df5e5b6a46f12d16d33b5de42ac9c444dc853b08435e1387b6fa170eac43897
test-bench-deps: {}
maintainer: atzedijkstra@gmail.com
synopsis: Library for logic programming based on haskell package logict
changelog: ''
basic-deps:
logict: ! '>=0.6.0.2'
base: ! '>=4.8 && <4.10'
mtl: ! '>=2.1'
transformers: ! '>=0.4.2'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: Atze Dijkstra
latest: '0.1.0.1'
description-type: haddock
description: Logic programming built on top of part of logict library, in particular
for dealing with backtrackable state
license-name: BSD3
| homepage: https://github.com/atzedijkstra/logict-state
changelog-type: ''
hash: ec67877fb354427a19cebe75de799fcdd9cd8e5372ffbd9afc873537df37bd42
test-bench-deps: {}
maintainer: atzedijkstra@gmail.com
synopsis: Library for logic programming based on haskell package logict
changelog: ''
basic-deps:
logict: ! '>=0.6.0.2'
base: ! '>=4.8 && <4.10'
mtl: ! '>=2.1'
transformers: ! '>=0.4.2'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
author: Atze Dijkstra
latest: '0.1.0.2'
description-type: haddock
description: Logic programming built on top of part of logict library, in particular
for dealing with backtrackable state
license-name: BSD3
|
Fix the fixtures for counter_cache | parent1:
id: 1
body: Top Level
lft: 1
rgt: 10
children_count: 2
child_1:
id: 2
body: Child 1
parent_id: 1
lft: 2
rgt: 3
children_count: 0
child_2:
id: 3
body: Child 2
parent_id: 1
lft: 4
rgt: 7
children_count: 0
child_2_1:
id: 4
body: Child 2.1
parent_id: 3
lft: 8
rgt: 9
children_count: 0
| parent1:
id: 1
body: Top Level
lft: 1
rgt: 10
children_count: 2
child_1:
id: 2
body: Child 1
parent_id: 1
lft: 2
rgt: 3
children_count: 0
child_2:
id: 3
body: Child 2
parent_id: 1
lft: 4
rgt: 7
children_count: 1
child_2_1:
id: 4
body: Child 2.1
parent_id: 3
lft: 8
rgt: 9
children_count: 0
|
Update Workflows to use repository secrets and the correct endpoint URL. | name: Run AAA SDK CI
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: $HOME/.m2
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: '8'
- name: Verify Maven installation
run: mvn -v
- name: Run AAA SDK tests
run: mvn -Dhere.token.endpoint.url=$HERE_TOKEN_ENDPOINT_URL -Dhere.access.key.id=$ACCESS_KEY_ID -Dhere.access.key.secret=$ACCESS_KEY_SECRET clean install
| name: Run AAA SDK CI
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: $HOME/.m2
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Setup Java
uses: actions/setup-java@v1
with:
java-version: '8'
- name: Verify Maven installation
run: mvn -v
- name: Run AAA SDK tests
run: mvn -Dhere.token.endpoint.url=https://stg.account.api.here.com/oauth2/token -Dhere.access.key.id=${{ secrets.ACCESS_KEY_ID }} -Dhere.access.key.secret=${{ secrets.ACCESS_KEY_SECRET }} clean install |
Load user id from config file | users:
Adam Sharp:
id: 1164143
Steph Sharp:
id: 1367622
David Underwood:
id: 131066
Daniel Beauchamp:
id: 208314
Edward Ocampo-Gooding:
id: 95705
Jeff Atwood:
id: 1
| user_id: 131066
users:
- id: 1164143
name: Adam Sharp
- id: 1367622
name: Steph Sharp
- id: 131066
name: David Underwood
- id: 208314
name: Daniel Beauchamp
- id: 95705
name: Edward Ocampo-Gooding
- id: 1
name: Jeff Atwood
- id: 1493368
name: (Eligible for Reversal)
|
Use both ros and ros-testing | # Travis Continuous Integration Configuration File For ROS Control Projects
# Author: Dave Coleman
sudo: required
dist: trusty
language: generic
notifications:
email:
recipients:
- enrique.fernandez.perdomo@gmail.com
- bence.magyar.robotics@gmail.com
- gennaro.raiola@gmail.com
on_success: change #[always|never|change] # default: change
on_failure: change #[always|never|change] # default: always
env:
global:
- UPSTREAM_WORKSPACE=file
- ROSINSTALL_FILENAME=ros_control.rosinstall
- ROS_PARALLEL_TEST_JOBS=-j1
matrix:
- ROS_DISTRO=melodic ROS_REPO=ros-testing
install:
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
script:
- .ci_config/travis.sh
| # Travis Continuous Integration Configuration File For ROS Control Projects
# Author: Dave Coleman
sudo: required
dist: trusty
language: generic
notifications:
email:
recipients:
- enrique.fernandez.perdomo@gmail.com
- bence.magyar.robotics@gmail.com
- gennaro.raiola@gmail.com
on_success: change #[always|never|change] # default: change
on_failure: change #[always|never|change] # default: always
env:
global:
- UPSTREAM_WORKSPACE=file
- ROSINSTALL_FILENAME=ros_control.rosinstall
- ROS_PARALLEL_TEST_JOBS=-j1
matrix:
- ROS_DISTRO=melodic ROS_REPO=ros
- ROS_DISTRO=melodic ROS_REPO=ros-testing
install:
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
script:
- .ci_config/travis.sh
|
Test on stable PHP 8.0 | language: php
dist: focal
php:
- '7.4'
- nightly
matrix:
include:
- php: '7.4'
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
- php: nightly
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
fast_finish: true
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction
- travis_retry wget https://scrutinizer-ci.com/ocular.phar
- mkdir -p build/logs
script:
- vendor/bin/phpstan --level=max analyse src tests
- vendor/bin/phpunit --coverage-clover=build/logs/clover.xml
- vendor/bin/phpcs --standard=Doctrine src
after_script:
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
| language: php
dist: focal
php:
- '7.4'
- nightly
matrix:
include:
- php: '7.4'
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
- php: '8.0'
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
fast_finish: true
before_script:
- travis_retry composer self-update
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction
- travis_retry wget https://scrutinizer-ci.com/ocular.phar
- mkdir -p build/logs
script:
- vendor/bin/phpstan --level=max analyse src tests
- vendor/bin/phpunit --coverage-clover=build/logs/clover.xml
- vendor/bin/phpcs --standard=Doctrine src
after_script:
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
|
Add Ruby 1.9.2 to Travis CI configuration. | language: ruby
rvm:
- 1.9.3
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
| language: ruby
rvm:
- 1.9.2
- 1.9.3
before_script:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- "sleep 5"
|
Update from Hackage at 2018-01-14T06:50:10Z | homepage: https://github.com/leptonyu/yam/yam-app#readme
changelog-type: ''
hash: 7bf9d3898b4b76729260b9ab7561b0379ff0bc797990fbc12f8987bdfc78a72f
test-bench-deps: {}
maintainer: Daniel YU <leptonyu@gmail.com>
synopsis: Yam App
changelog: ''
basic-deps:
exceptions: -any
base: ! '>=4.7 && <5'
time: -any
persistent: -any
unordered-containers: -any
text: -any
monad-control: -any
resource-pool: -any
conduit: -any
data-default: -any
ctrie: -any
fast-logger: -any
containers: -any
monad-logger: -any
transformers: -any
random: -any
string-conversions: -any
wai-logger: -any
resourcet: -any
persistent-sqlite: -any
aeson: -any
yaml: -any
directory: -any
all-versions:
- '0.1.5'
author: Daniel YU
latest: '0.1.5'
description-type: markdown
description: ! '# yam-app
'
license-name: BSD3
| homepage: https://github.com/leptonyu/yam/tree/master/yam-app#readme
changelog-type: ''
hash: b32f25ab3444f2629ea741bcd30e0484f733a5707bac67d229465633ace8ec58
test-bench-deps: {}
maintainer: Daniel YU <leptonyu@gmail.com>
synopsis: Yam App
changelog: ''
basic-deps:
exceptions: -any
base: ! '>=4.7 && <5'
time: -any
persistent: -any
unordered-containers: -any
text: -any
monad-control: -any
resource-pool: -any
conduit: -any
data-default: -any
ctrie: -any
fast-logger: -any
containers: -any
mtl: -any
monad-logger: -any
transformers: -any
random: -any
string-conversions: -any
wai-logger: -any
resourcet: -any
persistent-sqlite: -any
aeson: -any
yaml: -any
directory: -any
all-versions:
- '0.1.5'
- '0.1.6'
author: Daniel YU
latest: '0.1.6'
description-type: markdown
description: ! '# yam-app
'
license-name: BSD3
|
Configure Travis CI to use latest stable version of Node.js | # See https://code.visualstudio.com/Docs/extensions/testing-extensions
sudo: false
os:
- osx
- linux
cache:
yarn: true
# Ensure xvfb is available on Linux test hosts
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
install:
- npm install
- npm run vscode:prepublish
script:
- npm test --silent
| # See https://code.visualstudio.com/Docs/extensions/testing-extensions
sudo: false
os:
- osx
- linux
language: node_js
node_js:
- node
cache:
yarn: true
# Ensure xvfb is available on Linux test hosts
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
fi
install:
- npm install
- npm run vscode:prepublish
script:
- npm test --silent
|
Update docker compose on Travis CI | sudo: required
services:
- docker
language: python
python:
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
before_install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
- docker --version
- docker-compose --version
- ./csu start
install:
- pip3 install -r requirements/test.txt
# Runs test suite
script: flake8
# Stop email notifications but post to organisation Slack channel
notifications:
email: false
slack:
rooms: deptfunstuff:abJKvzApk5SKtcEyAgtswXAv
on_success: change
on_failure: change
| sudo: required
services:
- docker
env:
DOCKER_COMPOSE_VERSION: 1.11.2
language: python
python:
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
before_install:
- sudo apt-get update
- sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-engine
- docker --version
- docker-compose --version
- sudo rm /usr/local/bin/docker-compose
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
- docker-compose --version
- ./csu start
install:
- pip3 install -r requirements/test.txt
# Runs test suite
script: flake8
# Stop email notifications but post to organisation Slack channel
notifications:
email: false
slack:
rooms: deptfunstuff:abJKvzApk5SKtcEyAgtswXAv
on_success: change
on_failure: change
|
Remove 3.2 from Travis build | language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script: nosetests
| language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
- "3.5"
# command to install dependencies
install:
- "pip install ."
# command to run tests
script: nosetests
|
Make Travis notify more sparingly. | language: scala
scala:
- 2.10.4
jdk:
- openjdk7
branches:
only:
- master
after_success:
- sbt publishMasterOnTravis
cache:
directories:
- $HOME/.ivy2
notifications:
hipchat:
rooms:
secure: BP7hxRHo+YUKjOpbRsA16247KKb7CTWu/U7wPI1QHjMA9ACNzlDDSyyTyYGKizAQMhlLZi21AIlFEvHXpRyk8FRM+WRrUhUTLQrOelJBmZlCEovPYHS+deFd3Is0/hbmT7gXPOQ2FvVkASCIKfGIiYPYGVwuciqVfwZqnrMZ1mc=
| language: scala
scala:
- 2.10.4
jdk:
- openjdk7
branches:
only:
- master
after_success:
- sbt publishMasterOnTravis
cache:
directories:
- $HOME/.ivy2
notifications:
hipchat:
rooms:
secure: BP7hxRHo+YUKjOpbRsA16247KKb7CTWu/U7wPI1QHjMA9ACNzlDDSyyTyYGKizAQMhlLZi21AIlFEvHXpRyk8FRM+WRrUhUTLQrOelJBmZlCEovPYHS+deFd3Is0/hbmT7gXPOQ2FvVkASCIKfGIiYPYGVwuciqVfwZqnrMZ1mc=
on_success: change
on_failure: always
|
Add Ruby 2.0.0 to Travis CI | language: ruby
rvm:
- 1.9.3
- 2.1.5
- 2.2.3
before_install: gem install bundler -v 1.10.6
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.3
before_install: gem install bundler -v 1.10.6
|
Fix the Tools tests for Travis | language: go
os:
- linux
- osx
before_script:
- python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)" # https://github.com/travis-ci/travis-ci/issues/8920#issuecomment-352661024
# Run gofmt and lint serially to avoid confusing output. Run tests in parallel
# for speed.
script:
- cd grumpy-tools-src
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo pip2 install . ; fi
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then pip2 install . --user ; fi
- which grumpy
- cd ../grumpy-runtime-src
- make gofmt lint && make -j2 test
# OSX swallows error logs: https://github.com/travis-ci/travis-ci/issues/6018
after_error:
- echo "== End of test log ==""
| language: go
os:
- linux
- osx
before_script:
- python -c "import fcntl; fcntl.fcntl(1, fcntl.F_SETFL, 0)" # https://github.com/travis-ci/travis-ci/issues/8920#issuecomment-352661024
# Run gofmt and lint serially to avoid confusing output. Run tests in parallel
# for speed.
script:
# Install the thing
- cd grumpy-tools-src
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo pip2 install . ; fi
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then pip2 install . --user ; fi
- which grumpy
- cd ../grumpy-runtime-src
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then sudo pip2 install . ; fi
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then pip2 install . --user ; fi
# Test the thing
- cd ../grumpy-tools-src
- pytest
- cd ../grumpy-runtime-src
- make gofmt lint && make -j2 test
# OSX swallows error logs: https://github.com/travis-ci/travis-ci/issues/6018
after_error:
- echo "== End of test log ==""
|
Revert "Update for new credentials file method" | language: python
python:
- "2.7"
before_install:
- openssl aes-256-cbc -K $encrypted_84a2848b3b48_key -iv $encrypted_84a2848b3b48_iv -in tests/travisci-gcloud_requests.json.enc -out travisci-gcloud_requests.json -d
- export JSON_CREDENTIALS_FILE=travisci-gcloud_requests.json
- export DATASTORE_HOST=http://localhost:8080
- export DATASTORE_DATASET=gcloud
- mkdir ./datastore
- curl -o gcd.zip http://storage.googleapis.com/gcd/tools/$GCD_VERSION.zip
- unzip gcd.zip
- ./$GCD_VERSION/gcd.sh create -d gcloud ./datastore
- ./$GCD_VERSION/gcd.sh start --port=8080 ./datastore &
install: "pip install -r requirements.txt"
script: "env PYTHONPATH=. python tests/test_datastore.py"
addons:
code_climate:
repo_token: 1ae0e51788ad23c845e353566a8b245c4c2929035709105e2b8407d6ae2e2b51
| language: python
python:
- "2.7"
before_install:
- openssl aes-256-cbc -K $encrypted_84a2848b3b48_key -iv $encrypted_84a2848b3b48_iv -in tests/travisci-gcloud_requests.json.enc -out travisci-gcloud_requests.json -d
- export GOOGLE_APPLICATION_CREDENTIALS=travisci-gcloud_requests.json
- export DATASTORE_HOST=http://localhost:8080
- export DATASTORE_DATASET=gcloud
- mkdir ./datastore
- curl -o gcd.zip http://storage.googleapis.com/gcd/tools/$GCD_VERSION.zip
- unzip gcd.zip
- ./$GCD_VERSION/gcd.sh create -d gcloud ./datastore
- ./$GCD_VERSION/gcd.sh start --port=8080 ./datastore &
install: "pip install -r requirements.txt"
script: "env PYTHONPATH=. python tests/test_datastore.py"
addons:
code_climate:
repo_token: 1ae0e51788ad23c845e353566a8b245c4c2929035709105e2b8407d6ae2e2b51
|
Use container-based infrastructure on Travis | language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
| language: ruby
rvm:
- 2.2.3
before_install: gem install bundler -v 1.10.6
sudo: false
|
Add Swift package tests to Travis | language: swift
osx_image: xcode10.2
xcode_project: Advance.xcodeproj
jobs:
include:
- xcode_scheme: Advance-iOS
xcode_sdk: iphonesimulator12.2
xcode_destination: platform=iOS Simulator,OS=12.2,name=iPhone Xs
- xcode_scheme: Advance-macOS
xcode_sdk: macosx10.14
- xcode_scheme: Advance-tvOS
xcode_sdk: appletvos12.2
xcode_destination: platform=tvOS Simulator,OS=12.2,name=Apple TV 4K
- stage: deploy
script: skip
after_success:
- ./build_docs.sh
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
keep_history: true
local_dir: docs
on:
branch: master
| language: swift
osx_image: xcode10.2
xcode_project: Advance.xcodeproj
jobs:
include:
- xcode_scheme: Advance-iOS
xcode_sdk: iphonesimulator12.2
xcode_destination: platform=iOS Simulator,OS=12.2,name=iPhone Xs
- xcode_scheme: Advance-macOS
xcode_sdk: macosx10.14
- xcode_scheme: Advance-tvOS
xcode_sdk: appletvos12.2
xcode_destination: platform=tvOS Simulator,OS=12.2,name=Apple TV 4K
- script:
- swift test
- stage: deploy
script: skip
after_success:
- ./build_docs.sh
deploy:
provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
keep_history: true
local_dir: docs
on:
branch: master
|
Add PHP 7.2 & 7.3 to build matrix | language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
env:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
matrix:
fast_finish: true
include:
- php: 7.1
env:
- TEST_COVERAGE=true
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi;
- composer self-update
install:
- composer update --prefer-dist --no-interaction ${COMPOSER_FLAGS}
script:
- if [[ $TEST_COVERAGE ]]; then phpdbg -qrr bin/phpunit --coverage-clover clover.xml; else bin/phpunit; fi;
after_success:
- if [[ $TEST_COVERAGE ]]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover ./clover.xml; fi
notifications:
on_success: never
on_failure: always
| language: php
sudo: false
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
env:
- COMPOSER_FLAGS="--prefer-lowest"
- COMPOSER_FLAGS=""
matrix:
fast_finish: true
include:
- php: 7.1
env:
- TEST_COVERAGE=true
cache:
directories:
- $HOME/.composer/cache/files
before_install:
- if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then phpenv config-rm xdebug.ini; fi;
- composer self-update
install:
- composer update --prefer-dist --no-interaction ${COMPOSER_FLAGS}
script:
- if [[ $TEST_COVERAGE ]]; then phpdbg -qrr bin/phpunit --coverage-clover clover.xml; else bin/phpunit; fi;
after_success:
- if [[ $TEST_COVERAGE ]]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover ./clover.xml; fi
notifications:
on_success: never
on_failure: always
|
Use before_install in TravisCI config | language: python
python:
- "3.3"
- "3.4"
install:
- "sudo apt-get -q update"
- "sudo apt-get -yV install libxml2-dev libxslt1-dev" # lxml dependencies
- "pip install -r requirements.txt"
- "pip install coveralls"
- "sudo apt-get -yV install optipng jpegoptim"
- "sudo apt-get -yV install wine p7zip-full"
script:
- "coverage run --source=sacad setup.py test"
- "pushd win && make all && popd"
after_success:
- "coveralls"
| language: python
python:
- "3.3"
- "3.4"
before_install:
- "sudo apt-get -q update"
install:
- "sudo apt-get -yV install libxml2-dev libxslt1-dev" # lxml dependencies
- "pip install -r requirements.txt"
- "pip install coveralls"
- "sudo apt-get -yV install optipng jpegoptim"
- "sudo apt-get -yV install wine p7zip-full"
script:
- "coverage run --source=sacad setup.py test"
- "pushd win && make all && popd"
after_success:
- "coveralls"
|
Copy config files on build | language: node_js
node_js:
- 0.10
install:
- cd $TRAVIS_BUILD_DIR/
- npm install
script:
- cd $TRAVIS_BUILD_DIR/
- npm run check
| language: node_js
node_js:
- 0.10
before_install:
- cd $TRAVIS_BUILD_DIR
- cp config/config.sample.json config/config.json
- cp config/credentials.sample.json config/credentials.json
install:
- cd $TRAVIS_BUILD_DIR/
- npm install
script:
- cd $TRAVIS_BUILD_DIR/
- npm run check
|
Fix coverage reporting in CodeClimate | language: node_js
node_js:
- 6.9
before_install:
- npm install -g grunt-cli
before_script:
- npm install -g codeclimate-test-reporter
script:
- npm run qa
after_script:
- codeclimate < test/coverage/*/lcov.info
| language: node_js
node_js:
- 6.9
before_script:
- npm install -g codeclimate-test-reporter
script:
- npm run qa
after_script:
- codeclimate-test-reporter < coverage/lcov.info
|
Update Java and Android SDKs | sudo: required
dist: trusty
language: python
branches:
except:
- docker-integration
- docker-test
env:
global:
- ANDROID_SDK=3859397
matrix:
fast_finish: true
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.7-dev
- os: osx
language: cpp
env: PY=/usr/bin/python2.7
allow_failures:
- os: osx
language: cpp
env: PY=/usr/bin/python2.7
before_install:
- . travis/before_install.sh
install:
- yes | "$ANDROID_HOME/tools/bin/sdkmanager" 'build-tools;26.0.3' 'platforms;android-24'
- pip install -r travis/requirements.txt
script:
- travis/script.sh
| sudo: required
dist: trusty
language: python
branches:
except:
- docker-integration
- docker-test
env:
global:
- ANDROID_SDK=4333796
- JAVA_OPTS='-XX:+IgnoreUnrecognizedVMOptions --add-modules java.se.ee'
jdk: oracalejdk9
matrix:
fast_finish: true
include:
- os: linux
python: 2.7
- os: linux
python: 3.3
- os: linux
python: 3.7-dev
- os: osx
language: cpp
env: PY=/usr/bin/python2.7
allow_failures:
- os: osx
language: cpp
env: PY=/usr/bin/python2.7
before_install:
- . travis/before_install.sh
install:
- yes | "$ANDROID_HOME/tools/bin/sdkmanager" 'build-tools;28.0.2' 'platforms;android-28'
- pip install -r travis/requirements.txt
script:
- travis/script.sh
|
Use gcc 4.8 for compiling | language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository ppa:kalakris/cmake -y
- sudo add-apt-repository ppa:boost-latest/ppa -y
- sudo apt-get -qq -d update
install:
- sudo apt-get -qq install libboost1.55-all-dev cmake
script:
- bin/configlet-linux-amd64 .
- cmake -G "Unix Makefiles"
- make
| language: cpp
compiler:
- gcc
- clang
before_install:
- sudo add-apt-repository -y ppa:kalakris/cmake
- sudo add-apt-repository -y ppa:boost-latest/ppa
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq -d update
install:
- sudo apt-get -qq install libboost1.55-all-dev cmake g++-4.8
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
script:
- bin/configlet-linux-amd64 .
- cmake -G "Unix Makefiles"
- make
|
Add new target to Travis CI. | dist: trusty
sudo: required
language: c
notifications:
email:
on_success: never
branches:
only:
- master
cache:
directories:
- "${HOME}/persist"
matrix:
include:
- env: TARGET=OPENMV2
- env: TARGET=OPENMV3
- env: TARGET=OPENMV4
before_install:
# update submodules
- git submodule update --init --recursive
# install ARM GCC
- pushd .
- cd ~ && mkdir gcc && cd gcc
- GCC_URL="https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2017q4/gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2"
- wget -O gcc.tar.bz2 ${GCC_URL}
- tar -jxf gcc.tar.bz2 --strip 1
- exportline="export PATH=\$HOME/gcc/bin:\$PATH"
- if grep -Fxq "$exportline" ~/.profile; then echo nothing to do ; else echo $exportline >> ~/.profile; fi
- . ~/.profile
- popd
before_script:
- arm-none-eabi-gcc --version
script:
- make -j5 TARGET=$TARGET -C src
| dist: trusty
sudo: required
language: c
notifications:
email:
on_success: never
branches:
only:
- master
cache:
directories:
- "${HOME}/persist"
matrix:
include:
- env: TARGET=OPENMV2
- env: TARGET=OPENMV3
- env: TARGET=OPENMV4
- env: TARGET=OPENMV4R
before_install:
# update submodules
- git submodule update --init --recursive
# install ARM GCC
- pushd .
- cd ~ && mkdir gcc && cd gcc
- GCC_URL="https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2017q4/gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2"
- wget -O gcc.tar.bz2 ${GCC_URL}
- tar -jxf gcc.tar.bz2 --strip 1
- exportline="export PATH=\$HOME/gcc/bin:\$PATH"
- if grep -Fxq "$exportline" ~/.profile; then echo nothing to do ; else echo $exportline >> ~/.profile; fi
- . ~/.profile
- popd
before_script:
- arm-none-eabi-gcc --version
script:
- make -j5 TARGET=$TARGET -C src
|
Exclude older rubies from latest rails | sudo: false
cache: bundler
language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
- jruby-19mode
- jruby-head
- rbx-2
- ruby-head
gemfile:
- gemfiles/actionpack3.2.gemfile
- gemfiles/actionpack4.0.gemfile
- gemfiles/actionpack4.1.gemfile
- gemfiles/actionpack4.2.gemfile
- gemfiles/actionpack.edge.gemfile
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
| sudo: false
cache: bundler
language: ruby
script: "bundle exec rspec"
rvm:
- 1.9.3
- 2.0.0
- 2.1.5
- 2.2.0
- jruby-19mode
- jruby-head
- rbx-2
- ruby-head
gemfile:
- gemfiles/actionpack3.2.gemfile
- gemfiles/actionpack4.0.gemfile
- gemfiles/actionpack4.1.gemfile
- gemfiles/actionpack4.2.gemfile
- gemfiles/actionpack.edge.gemfile
matrix:
allow_failures:
- rvm: ruby-head
- rvm: jruby-head
- rvm: rbx-2
exclude:
- rvm: 1.9.3
gemfile: gemfiles/actionpack.edge.gemfile
- rvm: 2.0.0
gemfile: gemfiles/actionpack.edge.gemfile
- rvm: jruby-19mode
gemfile: gemfiles/actionpack.edge.gemfile
|
Switch OracleJDK to OpenJDK on Travis | language: java
jdk:
- oraclejdk8
- openjdk11
- openjdk12
install: ./gradlew assemble --stacktrace --info
script: ./gradlew check --stacktrace --info --continue
| language: java
jdk:
- openjdk8
- openjdk11
- openjdk12
install: ./gradlew assemble --stacktrace --info
script: ./gradlew check --stacktrace --info --continue
|
Update the com.google.code.findbugs dependency coordinates. | repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_javaee: javax:javaee-api:jar:7.0
javax_annotation: com.google.code.findbugs:jsr305:jar:3.0.1
gwt_user: com.google.gwt:gwt-user:jar:2.8.2
gwt_dev: com.google.gwt:gwt-dev:jar:2.8.2
javax_validation: javax.validation:validation-api:jar:1.0.0.GA
javax_validation_sources: javax.validation:validation-api:jar:sources:1.0.0.GA
gwt_eventsource: org.realityforge.gwt.eventsource:gwt-eventsource:jar:1.0
jersey_server: org.glassfish.jersey.core:jersey-server:jar:2.0
jersey_sse: org.glassfish.jersey.media:jersey-media-sse:jar:2.0
| repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_javaee: javax:javaee-api:jar:7.0
javax_annotation: org.realityforge.javax.annotation:javax.annotation:jar:1.0.0
gwt_user: com.google.gwt:gwt-user:jar:2.8.2
gwt_dev: com.google.gwt:gwt-dev:jar:2.8.2
javax_validation: javax.validation:validation-api:jar:1.0.0.GA
javax_validation_sources: javax.validation:validation-api:jar:sources:1.0.0.GA
gwt_eventsource: org.realityforge.gwt.eventsource:gwt-eventsource:jar:1.0
jersey_server: org.glassfish.jersey.core:jersey-server:jar:2.0
jersey_sse: org.glassfish.jersey.media:jersey-media-sse:jar:2.0
|
Update url in config to forward slash | # Site settings
title: Ayush's Blog
description: "#Tech posts from Ayush"
url: "https://ayushgoel.github.io" # the base hostname & protocol for your site
author:
name: Ayush Goel
email: ayushgoel111@gmail.com
twitter: named_none
github: ayushgoel
linkedIn:
country: in
username: ayushgoel
stackoverflowID: 1685709
# include pages folder for generation
include: ['_pages']
liquid:
error_mode: warn
# Build settings
kramdown:
syntax_highlighter_opts:
block:
line_numbers: true
# Pagination
paginate: 5
paginate_path: /page:num/
#Defaults
defaults:
-
scope:
path: "" # an empty string here means all files in the project
type: "posts"
values:
layout: "post"
-
scope:
path: "" # an empty string here means all files in the project
type: "pages"
values:
layout: "page"
author: "Ayush Goel"
gems: [
'jekyll-paginate',
'jekyll-gist'
]
| # Site settings
title: Ayush's Blog
description: "#Tech posts from Ayush"
url: "/" # the base hostname & protocol for your site
author:
name: Ayush Goel
email: ayushgoel111@gmail.com
twitter: named_none
github: ayushgoel
linkedIn:
country: in
username: ayushgoel
stackoverflowID: 1685709
# include pages folder for generation
include: ['_pages']
liquid:
error_mode: warn
# Build settings
kramdown:
syntax_highlighter_opts:
block:
line_numbers: true
# Pagination
paginate: 5
paginate_path: /page:num/
#Defaults
defaults:
-
scope:
path: "" # an empty string here means all files in the project
type: "posts"
values:
layout: "post"
-
scope:
path: "" # an empty string here means all files in the project
type: "pages"
values:
layout: "page"
author: "Ayush Goel"
gems: [
'jekyll-paginate',
'jekyll-gist'
]
|
Build docker image when merging to develop. This allows testing the develop branch | name: Build docker container for the SP Dashboard
on:
pull_request:
branches: [ develop ]
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Build the php-fpm container and push to GitHub Packages
uses: docker/build-push-action@v1
with:
dockerfile: docker/Dockerfile
username: ${{ github.actor }}
password: ${{ secrets.GH_CONTAINER_REGISTRY_PAT }}
registry: ghcr.io
repository: surfnet/sp-dashboard/spdashboard_php-fpm
tag_with_ref: true
push: true
target: phpfpm-build
- name: Build the Apache container and push to GitHub Packages
uses: docker/build-push-action@v1
with:
dockerfile: docker/Dockerfile
username: ${{ github.actor }}
password: ${{ secrets.GH_CONTAINER_REGISTRY_PAT }}
registry: ghcr.io
repository: surfnet/sp-dashboard/spdashboard_web
tag_with_ref: true
push: true
target: httpd-build
| name: Build docker container for the SP Dashboard
on:
pull_request:
branches: [ develop ]
release:
types: [ published ]
push:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v2
- name: Build the php-fpm container and push to GitHub Packages
uses: docker/build-push-action@v1
with:
dockerfile: docker/Dockerfile
username: ${{ github.actor }}
password: ${{ secrets.GH_CONTAINER_REGISTRY_PAT }}
registry: ghcr.io
repository: surfnet/sp-dashboard/spdashboard_php-fpm
tag_with_ref: true
push: true
target: phpfpm-build
- name: Build the Apache container and push to GitHub Packages
uses: docker/build-push-action@v1
with:
dockerfile: docker/Dockerfile
username: ${{ github.actor }}
password: ${{ secrets.GH_CONTAINER_REGISTRY_PAT }}
registry: ghcr.io
repository: surfnet/sp-dashboard/spdashboard_web
tag_with_ref: true
push: true
target: httpd-build
|
Update codecov/codecov-action action to v2.1.0 | name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: test
run: |
export DEBIAN_FRONTEND=noninteractive && \
echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections && \
sudo apt-get update && \
sudo apt-get install -yq --no-install-recommends libev-dev python3.7 python3-dev python3-setuptools dialog apt-utils tshark libpcap0.8 libpcap-dev p0f tcpdump && \
pip3 install -U pip && \
pip3 install codecov pytype pytest-cov && \
find . -name requirements.txt -type f -exec pip3 install -r {} \; && \
export PATH=/home/runner/.local/bin:$PATH && \
make test && \
coverage report && coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.0.3
if: github.repository == 'iqtlabs/network-tools'
| name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: test
run: |
export DEBIAN_FRONTEND=noninteractive && \
echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections && \
sudo apt-get update && \
sudo apt-get install -yq --no-install-recommends libev-dev python3.7 python3-dev python3-setuptools dialog apt-utils tshark libpcap0.8 libpcap-dev p0f tcpdump && \
pip3 install -U pip && \
pip3 install codecov pytype pytest-cov && \
find . -name requirements.txt -type f -exec pip3 install -r {} \; && \
export PATH=/home/runner/.local/bin:$PATH && \
make test && \
coverage report && coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0
if: github.repository == 'iqtlabs/network-tools'
|
Add Python3 yoga unit tests | - project:
templates:
- openstack-cover-jobs
- openstack-python3-xena-jobs
- check-requirements
- release-notes-jobs-python3
- publish-openstack-docs-pti
- openstackclient-plugin-jobs
check:
jobs:
- muranoclient-functional-test-mysql-backend
gate:
jobs:
- muranoclient-functional-test-mysql-backend
- job:
name: muranoclient-functional-test-mysql-backend
parent: devstack-tox-functional
timeout: 4200
vars:
openrc_enable_export: true
devstack_plugins:
heat: https://opendev.org/openstack/heat
murano: https://opendev.org/openstack/murano
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
- ^doc/.*$
- ^.*\.rst$
- ^releasenotes/.*$
- ^muranoclient/tests/.*$
required-projects:
- openstack/heat
- openstack/murano
- openstack/murano-dashboard
- openstack/python-heatclient
- openstack/python-muranoclient
| - project:
templates:
- openstack-cover-jobs
- openstack-python3-yoga-jobs
- check-requirements
- release-notes-jobs-python3
- publish-openstack-docs-pti
- openstackclient-plugin-jobs
check:
jobs:
- muranoclient-functional-test-mysql-backend
gate:
jobs:
- muranoclient-functional-test-mysql-backend
- job:
name: muranoclient-functional-test-mysql-backend
parent: devstack-tox-functional
timeout: 4200
vars:
openrc_enable_export: true
devstack_plugins:
heat: https://opendev.org/openstack/heat
murano: https://opendev.org/openstack/murano
irrelevant-files:
- ^(test-|)requirements.txt$
- ^setup.cfg$
- ^doc/.*$
- ^.*\.rst$
- ^releasenotes/.*$
- ^muranoclient/tests/.*$
required-projects:
- openstack/heat
- openstack/murano
- openstack/murano-dashboard
- openstack/python-heatclient
- openstack/python-muranoclient
|
Use installed package in Circle tests. | dependencies:
pre:
- pip install numpy
- pip install scipy
- pip install scikit-learn | dependencies:
pre:
- pip install numpy
- pip install scipy
- pip install scikit-learn
test:
pre:
- pip install pytest
override:
- mv ~/lightfm/lightfm ~/lightfm/_lightfm && py.test -xv ~/lightfm/tests |
Use node 0.12 and global env vars | machine:
node:
version: 0.10.33
dependencies:
override:
- gem install scss-lint
- npm install
test:
override:
- node_modules/.bin/gulp lint
- node_modules/.bin/gulp build:
environment:
NODE_ENV: test
deployment:
gh-pages:
branch: website
commands:
- git init:
pwd: ./build
- git add -A .:
pwd: ./build
- git config user.email "ci@planetary.io":
pwd: ./build
- git config user.name "CircleCI Bot":
pwd: ./build
- git commit -m "Sync with website [ci skip]":
pwd: ./build
- git push git@github.com:planetary/airframe master:gh-pages --force:
pwd: ./build
| machine:
node:
version: 0.12.4
environment:
NODE_ENV: testing
DISABLE_NOTIFIER: true
dependencies:
override:
- gem install scss-lint
- npm install
test:
override:
- node_modules/.bin/gulp lint
- node_modules/.bin/gulp build
deployment:
gh-pages:
branch: website
commands:
- git init:
pwd: ./build
- git add -A .:
pwd: ./build
- git config user.email "ci@planetary.io":
pwd: ./build
- git config user.name "CircleCI Bot":
pwd: ./build
- git commit -m "Sync with website [ci skip]":
pwd: ./build
- git push git@github.com:planetary/airframe master:gh-pages --force:
pwd: ./build
|
Adjust node version to fix ci issue | name: Continuous Integration
on:
schedule:
- cron: '0 0 * * *'
pull_request:
push:
branches:
- master
jobs:
build:
strategy:
matrix:
include:
- os: macos-latest
test-unit: test-unit
test-integration: test-integration
- os: windows-latest
test-unit: test-unit
test-integration: test-integration
- os: ubuntu-latest
test-unit: test-unit-headless
test-integration: test-integration-headless
runs-on: ${{ matrix.os }}
env:
CI: true
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14.x
- run: npm ci
- run: npm run build
- run: npm run ${{ matrix.test-unit }}
- run: npm run ${{ matrix.test-integration }}
| name: Continuous Integration
on:
schedule:
- cron: '0 0 * * *'
pull_request:
push:
branches:
- master
jobs:
build:
strategy:
matrix:
include:
- os: macos-latest
test-unit: test-unit
test-integration: test-integration
- os: windows-latest
test-unit: test-unit
test-integration: test-integration
- os: ubuntu-latest
test-unit: test-unit-headless
test-integration: test-integration-headless
runs-on: ${{ matrix.os }}
env:
CI: true
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 14.18
- run: npm ci
- run: npm run build
- run: npm run ${{ matrix.test-unit }}
- run: npm run ${{ matrix.test-integration }}
|
Update from Hackage at 2015-12-01T11:16:28+0000 | homepage: http://khibino.github.io/haskell-relational-record/
changelog-type: ''
hash: 01ba633dd78980f78645fd8ef1b325854cb22e3de78e7d4d90be1598b2a30534
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: Binding between SQL database values and haskell records.
changelog: ''
basic-deps:
base: <5
dlist: -any
array: -any
containers: -any
names-th: -any
transformers: -any
template-haskell: -any
all-versions:
- '0.0.1.0'
- '0.0.1.1'
- '0.0.1.2'
- '0.0.1.3'
- '0.1.0.0'
- '0.1.0.1'
author: Kei Hibino
latest: '0.1.0.1'
description-type: haddock
description: ! 'This package contiains types to represent table constraints and
interfaces to bind between SQL database values and Haskell records.'
license-name: BSD3
| homepage: http://khibino.github.io/haskell-relational-record/
changelog-type: ''
hash: 9a6a05e49310f8f4644e28a3ff97accbe1a92983a029dd9867e09da7e2a0f760
test-bench-deps: {}
maintainer: ex8k.hibino@gmail.com
synopsis: Binding between SQL database values and haskell records.
changelog: ''
basic-deps:
base: <5
dlist: -any
array: -any
containers: -any
names-th: -any
transformers: -any
template-haskell: -any
all-versions:
- '0.0.1.0'
- '0.0.1.1'
- '0.0.1.2'
- '0.0.1.3'
- '0.1.0.0'
- '0.1.0.1'
- '0.2.0.0'
author: Kei Hibino
latest: '0.2.0.0'
description-type: haddock
description: ! 'This package contiains types to represent table constraints and
interfaces to bind between SQL database values and Haskell records.'
license-name: BSD3
|
Update from Hackage at 2022-02-07T14:14:15Z | homepage: ''
changelog-type: markdown
hash: 3a42b23d137a2cf8e9e995ed9ff10576a38cd1e058ae340348c6d6b42a9c11f7
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: Hypergeometric functions
changelog: |
# hypergeometric
## 0.1.1.0
* Add `Math.SpecialFunction` with `gamma`, `beta` etc.
## 0.1.0.0
Initial release
basic-deps:
base: '>=4.3 && <5'
all-versions:
- 0.1.0.0
- 0.1.1.0
author: Vanessa McHale
latest: 0.1.1.0
description-type: markdown
description: |
# Hypergeometric
Various statistical functions including `erf`, [computed via hypergeometric functions](http://vmchale.com/static/serve/hypergeometric.pdf)
license-name: AGPL-3.0-only
| homepage: ''
changelog-type: markdown
hash: e17359ae9bbe53bb2975d72e950733b6c85d7d81a40bbd9c879a5b9f06db0046
test-bench-deps: {}
maintainer: vamchale@gmail.com
synopsis: Hypergeometric functions
changelog: |
# hypergeometric
## 0.1.2.0
* Add `tcdf`, `chisqcdf`, `fcdf`
## 0.1.1.0
* Add `Math.SpecialFunction` with `gamma`, `beta` etc.
## 0.1.0.0
Initial release
basic-deps:
base: '>=4.3 && <5'
all-versions:
- 0.1.0.0
- 0.1.1.0
- 0.1.2.0
author: Vanessa McHale
latest: 0.1.2.0
description-type: markdown
description: |
# Hypergeometric
Various statistical functions including `erf`, [computed via hypergeometric functions](http://vmchale.com/static/serve/hypergeometric.pdf)
license-name: AGPL-3.0-only
|
Update from Hackage at 2017-02-22T23:57:15Z | homepage: https://github.com/githubuser/skylark-client#readme
changelog-type: ''
hash: ea582a9ef93689de2fe7178dc236cf95f953b1352257226520a5db2125ab6714
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: Skylark client.
changelog: ''
basic-deps:
optparse-generic: -any
stm: -any
base: ==4.8.*
shakers: -any
preamble: -any
conduit: -any
stm-conduit: -any
skylark-client: -any
conduit-extra: -any
lifted-async: -any
http-conduit: -any
http-types: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
author: Swift Navigation Inc.
latest: '0.1.2'
description-type: haddock
description: Skylark network client.
license-name: BSD3
| homepage: https://github.com/githubuser/skylark-client#readme
changelog-type: ''
hash: e128475589c27ac4efa107f1e546ff8db5adc5030950de56e4727bdaea3765c8
test-bench-deps: {}
maintainer: Mark Fine <dev@swiftnav.com>
synopsis: Skylark client.
changelog: ''
basic-deps:
optparse-generic: -any
stm: -any
base: ==4.8.*
shakers: -any
preamble: -any
conduit: -any
stm-conduit: -any
skylark-client: -any
conduit-extra: -any
lifted-async: -any
http-conduit: -any
http-types: -any
all-versions:
- '0.1.0'
- '0.1.1'
- '0.1.2'
- '0.1.3'
author: Swift Navigation Inc.
latest: '0.1.3'
description-type: haddock
description: Skylark network client.
license-name: BSD3
|
Update Transition checker alerts signup copy | en:
brexit_checker:
email_signup:
title: "How to get ready for new rules in 2021"
sign_up_heading: "Get email alerts"
sign_up_message: |
<p class="govuk-body">You are signing up for email updates about how to prepare for new rules from 1 January 2021.</p>
<p class="govuk-body">This will include information about the transition period including what you, your family, or your business can do to prepare for new rules.</p>
sign_up_button: Subscribe
| en:
brexit_checker:
email_signup:
title: "How to get ready for new rules in 2021"
sign_up_heading: "Get email alerts about your results"
sign_up_message: |
<p class="govuk-body">You're signing up for email updates about changes to your results because of any additional arrangements between the UK and EU.</p>
<p class="govuk-body">The emails will tell you what you, your family, or your business should do to prepare for new rules from 1 January 2021.</p>
<p class="govuk-body">You will only get updates based on your results.</p>
sign_up_button: Subscribe
|
Remove unnecessary before_script from Gitlab CI |
before_script:
stages:
- build
build_job:
stage: build
script:
- ./waf configure clean build
only:
- master
|
stages:
- build
build_job:
stage: build
script:
- ./waf configure clean build
only:
- master
|
Add Python3 wallaby unit tests | - project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python3-victoria-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- ironicclient-functional
- ironicclient-tempest
gate:
queue: ironic
jobs:
- ironicclient-functional
- ironicclient-tempest
| - project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python3-wallaby-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- ironicclient-functional
- ironicclient-tempest
gate:
queue: ironic
jobs:
- ironicclient-functional
- ironicclient-tempest
|
Update FitoTrack to 4.0 (401) | Categories:
- Sports & Health
License: GPL-3.0-or-later
WebSite: https://codeberg.org/jannis/FitoTrack
SourceCode: https://codeberg.org/jannis/FitoTrack
IssueTracker: https://codeberg.org/jannis/FitoTrack/issues
Changelog: https://codeberg.org/jannis/FitoTrack/src/branch/master/CHANGELOG.md
Bitcoin: 3BSbGRbJaiSxVg3D6nVRK5C1SZEezhjtK5
AutoName: FitoTrack
RepoType: git
Repo: https://codeberg.org/jannis/FitoTrack.git
Builds:
- versionName: 1.0.2
versionCode: 102
commit: v1.0.2
subdir: app
gradle:
- yes
- versionName: '2.1'
versionCode: 210
commit: v2.1
subdir: app
gradle:
- yes
- versionName: '3.0'
versionCode: 300
commit: v3.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '3.0'
CurrentVersionCode: 300
| Categories:
- Sports & Health
License: GPL-3.0-or-later
WebSite: https://codeberg.org/jannis/FitoTrack
SourceCode: https://codeberg.org/jannis/FitoTrack
IssueTracker: https://codeberg.org/jannis/FitoTrack/issues
Changelog: https://codeberg.org/jannis/FitoTrack/src/branch/master/CHANGELOG.md
Bitcoin: 3BSbGRbJaiSxVg3D6nVRK5C1SZEezhjtK5
AutoName: FitoTrack
RepoType: git
Repo: https://codeberg.org/jannis/FitoTrack.git
Builds:
- versionName: 1.0.2
versionCode: 102
commit: v1.0.2
subdir: app
gradle:
- yes
- versionName: '2.1'
versionCode: 210
commit: v2.1
subdir: app
gradle:
- yes
- versionName: '3.0'
versionCode: 300
commit: v3.0
subdir: app
gradle:
- yes
- versionName: '4.0'
versionCode: 401
commit: v4.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '4.0'
CurrentVersionCode: 401
|
Send CircleCI failures to Zulip | version: 2
jobs:
vs-ponyc-release:
docker:
- image: ponylang/ponyc:release
steps:
- checkout
- run: make test integration
vs-ponyc-master:
docker:
- image: ponylang/ponyc:latest
steps:
- checkout
- run: make test integration
verify-changelog:
docker:
- image: ponylang/changelog-tool:release
steps:
- checkout
- run: changelog-tool verify CHANGELOG.md
workflows:
version: 2
commit:
jobs:
- verify-changelog
- vs-ponyc-release
nightly:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only: master
jobs:
- vs-ponyc-master
| version: 2.1
orbs:
zulip: ponylang/zulip@1.0.0
jobs:
vs-ponyc-release:
docker:
- image: ponylang/ponyc:release
steps:
- run: apt-get update
- run: apt-get install -y curl
- checkout
- run: make test integration
- zulip/status:
fail_only: true
vs-ponyc-master:
docker:
- image: ponylang/ponyc:latest
steps:
- checkout
- run: make test integration
- zulip/status:
fail_only: true
verify-changelog:
docker:
- image: ponylang/changelog-tool:release
steps:
- run: apt-get update
- run: apt-get install -y curl
- checkout
- run: changelog-tool verify CHANGELOG.md
- zulip/status:
fail_only: true
workflows:
version: 2
commit:
jobs:
- verify-changelog:
context: org-global
- vs-ponyc-release:
context: org-global
nightly:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only: master
jobs:
- vs-ponyc-master:
context: org-global
|
Add banking holidays for Betalingsservice for 2018 and 2019. | working_days:
- monday
- tuesday
- wednesday
- thursday
- friday
holidays:
- January 1st, 2017
- April 13th, 2017
- April 14th, 2017
- April 16th, 2017
- April 17th, 2017
- May 12th, 2017
- May 25th, 2017
- May 26th, 2017
- June 5th, 2017
- December 24th, 2017
- December 25th, 2017
- December 26th, 2017
| working_days:
- monday
- tuesday
- wednesday
- thursday
- friday
holidays:
- January 1st, 2017
- April 13th, 2017
- April 14th, 2017
- April 16th, 2017
- April 17th, 2017
- May 12th, 2017
- May 25th, 2017
- May 26th, 2017
- June 5th, 2017
- December 25th, 2017
- December 26th, 2017
- January 1st, 2018
- March 29th, 2018
- March 30th, 2018
- April 2nd, 2018
- April 27th, 2018
- May 10th, 2018
- May 11th, 2018
- May 21st, 2018
- June 5th, 2018
- December 24th, 2018
- December 25th, 2018
- December 26th, 2018
- December 31st, 2018
- January 1st, 2019
- April 18th, 2019
- April 19th, 2019
- April 22nd, 2019
- May 17th, 2019
- May 30th, 2019
- May 31st, 2019
- June 5th, 2019
- June 10th, 2019
- December 24th, 2019
- December 25th, 2019
- December 26th, 2019
- December 31st, 2019
|
Update from Hackage at 2017-02-16T11:03:30Z | homepage: http://github.com/aelve/Spock-lucid
changelog-type: markdown
hash: 16831ab4f6e6a32d12e5d929643085110a7d13d144e45e5c7191e58ec8349a21
test-bench-deps: {}
maintainer: yom@artyom.me
synopsis: Lucid support for Spock
changelog: ! '# 0.3.0.0
* Added `lucidT`.
# 0.2.0.0
* Changed types (the previous version was unusable).
* Now the value returned by the Lucid action is *actually* returned.
# 0.1.0.0 (deprecated)
First release.
'
basic-deps:
Spock: ! '>=0.9'
lucid: ==2.*
base: ! '>=4.7 && <4.10'
blaze-builder: -any
transformers: -any
all-versions:
- '0.2.0.0'
- '0.3.0.0'
author: Artyom
latest: '0.3.0.0'
description-type: haddock
description: Lucid support for Spock
license-name: BSD3
| homepage: http://github.com/aelve/Spock-lucid
changelog-type: markdown
hash: a25681c56da492d03b176c51b7e40fa2021393b52dfd696f6a9f8fbfbb3c7814
test-bench-deps: {}
maintainer: yom@artyom.me
synopsis: Lucid support for Spock
changelog: ! '# 0.4.0.0
* Generalized all types by not returning the value (since it can''t be used anyway).
# 0.3.0.0
* Added `lucidT`.
# 0.2.0.0
* Changed types (the previous version was unusable).
* Now the value returned by the Lucid action is *actually* returned.
# 0.1.0.0 (deprecated)
First release.
'
basic-deps:
Spock: ! '>=0.9'
lucid: ==2.*
base: ! '>=4.7 && <4.10'
transformers: -any
all-versions:
- '0.2.0.0'
- '0.3.0.0'
- '0.4.0.0'
author: Artyom
latest: '0.4.0.0'
description-type: haddock
description: Lucid support for Spock
license-name: BSD3
|
Add Python3 xena unit tests | - project:
templates:
- check-requirements
- horizon-non-primary-django-jobs
- horizon-nodejs10-jobs
- openstack-lower-constraints-jobs-horizon
- openstack-python3-wallaby-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
| - project:
templates:
- check-requirements
- horizon-non-primary-django-jobs
- horizon-nodejs10-jobs
- openstack-lower-constraints-jobs-horizon
- openstack-python3-xena-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
|
Add doctest fix to TravisCI too | language: python
python:
- "2.7"
- "3.5"
- "3.6"
install:
- "pip install ."
- "pip install -r test_requirements.txt"
script:
- "pytest -v -s --doctest-modules --cov httpie_asap_auth --cov-report term-missing tests/"
- "flake8 httpie_asap_auth.py"
ater_success:
- "coveralls"
| language: python
python:
- "2.7"
- "3.5"
- "3.6"
install:
- "pip install ."
- "pip install -r test_requirements.txt"
script:
- "pytest -v -s --doctest-modules --cov httpie_asap_auth --cov-report term-missing httpie_asap_auth.py tests/"
- "flake8 httpie_asap_auth.py"
ater_success:
- "coveralls"
|
Stop testing NodeJS 0.10 because of Mocha+Lodash incompatibility. (Everything should still work.) | language: node_js
node_js:
- "5.1"
- "5"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "0.10"
- "iojs" | language: node_js
node_js:
- "5.1"
- "5"
- "4.2"
- "4.1"
- "4.0"
- "0.12"
- "0.11"
- "iojs" |
Build with only Node.js 12 on Travis CI. | sudo: false
language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
- '5'
- '6'
branches:
only:
- master
- development
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| sudo: false
language: node_js
node_js:
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc prove
script:
- nyc npm test
|
Remove point numbers from the Travis specification | sudo: required
env:
- GHCVER=7.8.4
- GHCVER=7.10.3
- GHCVER=8.0.2
- GHCVER=8.2.2
- GHCVER=8.4.4
- GHCVER=8.6.1
- GHCVER=head
script:
- curl -sSL https://raw.github.com/ndmitchell/neil/master/travis.sh | sh
| sudo: required
env:
- GHCVER=7.8
- GHCVER=7.10
- GHCVER=8.0
- GHCVER=8.2
- GHCVER=8.4
- GHCVER=8.6
- GHCVER=head
script:
- curl -sSL https://raw.github.com/ndmitchell/neil/master/travis.sh | sh
|
Fix Travis deployment - only deploy from 3.6 | language: python
dist: xenial
sudo: false
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- '3.7'
before_install:
- pip install -U setuptools pip
- pip install coveralls
install:
- pip install -e .[testing]
script:
- pylint --rcfile=.pylintrc pact tests setup.py
- pytest tests --cov=pact
after_success:
- coveralls
deploy:
provider: pypi
user: vmalloc
password:
secure: Sru8c67ASNA+JRqtBtxDyQIJyRlHyNhcGdLen6HisGnh27YBmLYpgoYUem3YAwNkIneKgggnafOwhQpyVLGh6qkGtUiUJ76yN/57MrWabqq2N/xjvxpMDvCdB+Y/FeMOxkaEzzkCOauHrsUws/ePX/u65K4GgVQXZB17sDxAGwc=
on:
tags: true
repo: getslash/pact
| language: python
dist: xenial
sudo: false
python:
- '2.7'
- '3.4'
- '3.5'
- '3.6'
- '3.7'
before_install:
- pip install -U setuptools pip
- pip install coveralls
install:
- pip install -e .[testing]
script:
- pylint --rcfile=.pylintrc pact tests setup.py
- pytest tests --cov=pact
after_success:
- coveralls
deploy:
provider: pypi
user: vmalloc
password:
secure: Sru8c67ASNA+JRqtBtxDyQIJyRlHyNhcGdLen6HisGnh27YBmLYpgoYUem3YAwNkIneKgggnafOwhQpyVLGh6qkGtUiUJ76yN/57MrWabqq2N/xjvxpMDvCdB+Y/FeMOxkaEzzkCOauHrsUws/ePX/u65K4GgVQXZB17sDxAGwc=
on:
tags: true
repo: getslash/pact
python: "3.6"
|
Switch back to stable ChefDK builds for testing | sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-trusty to install the stable release
addons:
apt:
sources:
- chef-current-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/bin/chef exec rake
| sudo: required
dist: trusty
# install the pre-release chef-dk. Use chef-stable-trusty to install the stable release
addons:
apt:
sources:
- chef-stable-trusty
packages:
- chefdk
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
branches:
only:
- master
# Ensure we make ChefDK's Ruby the default
before_script:
- eval "$(/opt/chefdk/bin/chef shell-init bash)"
script:
- /opt/chefdk/embedded/bin/chef --version
- /opt/chefdk/embedded/bin/cookstyle --version
- /opt/chefdk/embedded/bin/foodcritic --version
- /opt/chefdk/bin/chef exec rake
|
Install Elm and run tests on Travis CI. | sudo: false
language: python
python:
- "3.4"
cache:
directories:
- $HOME/.cache/pip
install:
- pip install pip setuptools wheel --upgrade
- pip install -r requirements.txt
- pip install coveralls
script:
coverage run manage.py test
after_success:
- coveralls
| sudo: false
language: python
python:
- "3.4"
cache:
directories:
- $HOME/.cache/pip
install:
- pip install pip setuptools wheel --upgrade
- pip install -r requirements.txt
- pip install coveralls
- npm install -g elm elm-test
script:
- make coverage
- make elm-test
after_success:
- coveralls
|
Remove HHVM from the Travis CI build matrix | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
before_script:
- mkdir -p build/logs
script:
- ./vendor/bin/parallel-lint src tests
- ./vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
- ./vendor/bin/phpcs src tests --standard=psr2 -sp
after_success:
- travis_retry php vendor/bin/coveralls
| language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- nightly
matrix:
fast_finish: true
allow_failures:
- php: nightly
sudo: false
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install --no-interaction --prefer-dist
before_script:
- mkdir -p build/logs
script:
- ./vendor/bin/parallel-lint src tests
- ./vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
- ./vendor/bin/phpcs src tests --standard=psr2 -sp
after_success:
- travis_retry php vendor/bin/coveralls
|
Add ruby-head to the allowed failures matrix | bundler_args: --without yard guard metrics benchmarks
branches:
only:
- /^release-.*$/
script: "bundle exec rake spec"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- ree
- rbx-19mode
env:
- "GIT_BRANCH=release-1.2"
notifications:
irc: "irc.freenode.org#datamapper"
email:
- dan.kubb@gmail.com
matrix:
allow_failures:
- rvm: rbx-19mode
| bundler_args: --without yard guard metrics benchmarks
branches:
only:
- /^release-.*$/
script: "bundle exec rake spec"
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- ruby-head
- jruby-19mode
- jruby-head
- ree
- rbx-19mode
env:
- "GIT_BRANCH=release-1.2"
notifications:
irc: "irc.freenode.org#datamapper"
email:
- dan.kubb@gmail.com
matrix:
allow_failures:
- rvm: ruby-head
|
Add 2.2.5 and 2.3.1 to Travis | language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
before_script: bundle install
script: bundle exec rake
| language: ruby
rvm:
- 1.9.3
- 2.0.0
- 2.1.0
- 2.2.5
- 2.3.1
before_script: bundle install
script: bundle exec rake
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.