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] ... | {%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] ... |
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... | 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-submod... |
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"}}
... | 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"}}
... |
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/{{ n... | {% 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/{{ n... |
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:... | 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[rsysl... |
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:... | 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... |
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... | 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... |
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... | 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... |
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
... | 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: alw... |
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'
... | 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'
... |
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 abstracti... | 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 abstracti... |
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
fo... | 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
fo... |
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-... | 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
para... |
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... | 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'
... |
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 serve... | 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 serve... |
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 depende... | ---
- 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 depende... |
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: jetbra... | ---
# 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: jetbr... |
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: 8f944b87ac4deaf39b0dce419665b40a3acb66a9ad3b07945e109246bb66fe... | {% 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: f5b0a686ff21f820c4d3f0c4edd216704cea59d79d00fa337e244a2f2ff83e... |
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: ./u... | 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: ./u... |
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
... | ---
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
... |
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 ... | 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 ... |
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: |
#... | 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: |
#... |
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:... | 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:... |
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... | 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... |
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', '']
... | 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', '']
... |
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'
ha... | 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'
ha... |
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_T... | 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_T... |
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: ... | ---
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: py... |
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: o... | - 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: os... |
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-WebSer... |
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: ... | :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: ... |
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'
rt... | 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: ... |
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 -... | 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 ... |
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-... |
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/sysct... |
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... | 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 Brud... |
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: P... | 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: P... |
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... | 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... |
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
ch... | 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
ch... |
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('... | 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('... |
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: c... | # 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: c... |
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 compose... | 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 ... |
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
persiste... | 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: -an... |
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 ... | # 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... |
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
- doc... | 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 doc... |
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+WRrUhUTLQrOelJBmZlCEov... | 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+WRrUhUTLQrOelJBmZlCEov... |
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... | 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 g... |
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://local... | 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=htt... |
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: Advan... | 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: Advan... |
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"... | 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 [ "$TRA... |
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... | 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... |
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
lan... | 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
... |
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 M... | 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+... |
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 submodul... | 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 s... |
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
... | 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
... |
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... | 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... |
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
stackoverfl... | # 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 p... |
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
... | 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 c... |
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-g... | 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-g... |
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... | - 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... |
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... | 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... |
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-lates... | 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-lates... |
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: -... | 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: -... |
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
In... | 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.SpecialFun... |
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.*
... | 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.*
... |
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">Th... | 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 betwe... |
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-funct... | - 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-functi... |
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: 3BSbGRbJaiSxVg3D6... | 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: 3BSbGRbJaiSxVg3D6... |
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:
-... | 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-maste... |
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
- ... | 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
- ... |
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 vers... | 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... |
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
... | 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
... |
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:
- mas... | 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:
- mast... |
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 b... | 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... |
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"
ema... | 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"
ema... |
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.