Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Refactor Travis configuration with temporary CMF dev dependencies | language: php
php:
- 7.1
- 7.2
env:
- SYMFONY_VERSION=3.4.x
- SYMFONY_VERSION=3.4.x-dev
- SYMFONY_VERSION=4.0.x
- SYMFONY_VERSION=4.0.x-dev
- SYMFONY_VERSION=dev-master
before_script:
- composer require symfony/symfony:${SYMFONY_VERSION}
script:
- ./vendor/bin/phpunit --coverage-text
matrix:
al... | language: php
php:
- 7.1
- 7.2
env:
- SYMFONY_VERSION=3.4.x CMF_VERSION=^2.0
- SYMFONY_VERSION=4.0.x CMF_VERSION=dev-master
- SYMFONY_VERSION=dev-master CMF_VERSION=dev-master
before_install:
- composer require "symfony/config:${SYMFONY_VERSION}" --no-update
- composer require "symfony/database:${SYMFO... |
Update ash config for ash package update | name: Slapshot
callable_prefix: Slapshot
version: 0.0.1
author: Carrot Creative, Brandon Romano
license: MIT
| name: Slapshot
package: github.com/carrot/ash-slapshot
default_alias: slapshot
callable_prefix: Slapshot
|
Add defaults to keep existing sudo config unmodified | ---
sudoer_aliases: {}
sudoer_specs: []
sudoer_defaults:
# - requiretty
- "!visiblepw"
- always_set_home
- env_reset
- env_keep:
- COLORS
- DISPLAY
- HOSTNAME
- HISTSIZE
- INPUTRC
- KDEDIR
- LS_COLORS
- MAIL
- PS1
- PS2
- QTDIR
- USERNAME
- LANG
- LC_ADDR... | ---
sudoer_aliases: {}
sudoer_specs: []
sudoer_defaults:
# - requiretty
- "!visiblepw"
- always_set_home
- env_reset
- env_keep:
- COLORS
- DISPLAY
- HOSTNAME
- HISTSIZE
- INPUTRC
- KDEDIR
- LS_COLORS
- MAIL
- PS1
- PS2
- QTDIR
- USERNAME
- LANG
- LC_ADDR... |
Update from Hackage at 2021-02-22T01:15:46Z | homepage: ''
changelog-type: ''
hash: a707fe2c7d721006e1e2ef0d9cac4bf95b12379a1d7cd0eee9c3379672841087
test-bench-deps:
base: -any
data-default: -any
vector-th-unbox: -any
vector: -any
maintainer: Liyang HU <vector-th-unbox@liyang.hu>
synopsis: Deriver for Data.Vector.Unboxed using Template Haskell
changelog: '... | homepage: https://github.com/tsurucapital/vector-th-unbox
changelog-type: ''
hash: 8714e012a4a51c57d51ba31bcabf56e90cf7e601df124bf57d60fd2a77fff6aa
test-bench-deps:
base: -any
data-default: -any
vector-th-unbox: -any
vector: -any
maintainer: Fumiaki Kinoshita <fumiexcel@gmail.com>
synopsis: Deriver for Data.Vec... |
Exclude linux kernel from automatic upgrades | ---
private_ipv4: "{{ ip_address }}"
skipped_roles: []
# Blacklist the packages that cannot be automalically upgraded, either because we keep a close track of their version, or because of another reason.
unattended_package_blacklist:
- mesos
- marathon
- chronos
- zookeeper
unattended_mail: "mip.hbp@gmail.co... | ---
private_ipv4: "{{ ip_address }}"
skipped_roles: []
# Blacklist the packages that cannot be automalically upgraded, either because we keep a close track of their version, or because of another reason.
unattended_package_blacklist:
- mesos
- marathon
- chronos
- zookeeper
- linux-generic
- linux-headers... |
Adjust the sample YAML config (file based operation) to more common values | - unique_name: test1 # functions also as prefix for found DBs if using patterns/continous discovery
dbtype: postgres # postgres|pgbouncer|postgres-continuous-discovery
host: localhost
port: 5435
dbname: pgwatch2
user: krl
password: krl
sslmode: disable
stmt_timeout: 5
is_superuser: true
preset_m... | - unique_name: test1 # functions also as prefix for found DBs if using patterns/continous discovery
dbtype: postgres # postgres|pgbouncer|postgres-continuous-discovery
host: localhost
port: 5432
dbname: pgwatch2
user: krl
password: krl
sslmode: disable
stmt_timeout: 5
is_superuser: false
preset_... |
Include buymeacoffee in the funding setup | # These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: webdrivermanager
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/... | # These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: webdrivermanager
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/... |
Fix bug where `action` was output in support flow `<title>` | en-GB:
page_titles:
default: "Petitions - UK Government and Parliament"
archived_petitions:
index: "View archived petitions - Petitions"
show: "%{petition} - Petitions"
feedback:
index: "Send feedback - Petitions"
thanks: "Thank you - Petitions"
local_petitions:
index: "P... | en-GB:
page_titles:
default: "Petitions - UK Government and Parliament"
archived_petitions:
index: "View archived petitions - Petitions"
show: "%{petition} - Petitions"
feedback:
index: "Send feedback - Petitions"
thanks: "Thank you - Petitions"
local_petitions:
index: "P... |
Update target ruby version to 2.3 | inherit_from: .rubocop_u2i.yml
inherit_from: .rubocop_todo.yml
Rails:
Enabled: false
AllCops:
TargetRubyVersion: 2.1
Include:
- '**/Rakefile'
Exclude:
- spec/spec_helper.rb
- vendor/**/*
- examples/query_spec.rb
Metrics/LineLength:
Max: 120
Enabled: true
Exclude:
- spec/**/*
- e... | inherit_from: .rubocop_u2i.yml
inherit_from: .rubocop_todo.yml
Rails:
Enabled: false
AllCops:
TargetRubyVersion: 2.3
Include:
- '**/Rakefile'
Exclude:
- spec/spec_helper.rb
- vendor/**/*
- examples/query_spec.rb
Metrics/LineLength:
Max: 120
Enabled: true
Exclude:
- spec/**/*
- e... |
Update from Hackage at 2017-01-19T10:35:15Z | homepage: https://github.com/louispan/writer-cps-morph#readme
changelog-type: ''
hash: 0072fc006325d0c6dae8bfd4795f524437d0740bdce8e71a3d6d1c0f25827f9a
test-bench-deps: {}
maintainer: louis@pan.me
synopsis: MFunctor instance for CPS style WriterT and RWST
changelog: ''
basic-deps:
writer-cps-transformers: ! '>=0.1.1.... | homepage: https://github.com/louispan/writer-cps-morph#readme
changelog-type: ''
hash: 8b01cd92169adbc1960129e1cad2e7b60f67e65cfa19e5ed95f7489d7f7d6a39
test-bench-deps: {}
maintainer: louis@pan.me
synopsis: MFunctor instance for CPS style WriterT and RWST
changelog: ''
basic-deps:
writer-cps-transformers: ! '>=0.1.1.... |
Make DB connection pool as large as Sidekiq worker pool | DEFAULTS: &DEFAULTS
adapter: postgresql
encoding: unicode
password:
pool: 5
username: postgres
development:
<<: *DEFAULTS
database: diffux_development
test:
<<: *DEFAULTS
database: diffux_test
production:
database: diffux_production
username: diffux
| DEFAULTS: &DEFAULTS
adapter: postgresql
encoding: unicode
password:
pool: 25
username: postgres
development:
<<: *DEFAULTS
database: diffux_development
test:
<<: *DEFAULTS
database: diffux_test
production:
database: diffux_production
username: diffux
|
Increase the alarm thresholds on assets master disk | ---
govuk::safe_to_reboot::can_reboot: 'no'
govuk::safe_to_reboot::reason: 'Mounted by backend machines, causes attachment delivery failures'
govuk_sudo::sudo_conf:
deploy_assets_rsync:
content: 'deploy ALL=(assets) NOPASSWD:/usr/bin/rsync --server -vlogDtprze.iLsf --delete . /mnt/uploads'
lv:
data:
pv: ... | ---
govuk::safe_to_reboot::can_reboot: 'no'
govuk::safe_to_reboot::reason: 'Mounted by backend machines, causes attachment delivery failures'
govuk_sudo::sudo_conf:
deploy_assets_rsync:
content: 'deploy ALL=(assets) NOPASSWD:/usr/bin/rsync --server -vlogDtprze.iLsf --delete . /mnt/uploads'
lv:
data:
pv: ... |
Deploy the nordic migrator that doesn't remove list markers | ---
daisy_pipeline2_path: /opt/daisy-pipeline2/etc
pipeline2_deb: https://github.com/sbsdev/pipeline/releases/download/italian-ebooks-0.4/assembly-1.11.1-SNAPSHOT-all.deb
sbs_module_debs:
- https://github.com/sbsdev/pipeline/releases/download/italian-ebooks-0.4/mod-sbs_1.8.1.20211117.140355-28be3fec_all.deb
- https... | ---
daisy_pipeline2_path: /opt/daisy-pipeline2/etc
pipeline2_deb: https://github.com/sbsdev/pipeline/releases/download/leave-list-markers-0.2/assembly-1.11.1-SNAPSHOT-all.deb
sbs_module_debs:
- https://github.com/sbsdev/pipeline/releases/download/leave-list-markers-0.2/mod-sbs_1.8.1.20220330.120543-4a2e4085_all.deb
... |
Fix typo dans le chemin des properties | spring:
cloud:
config:
server:
git:
uri: https://github.com/jntakpe/initiatives-properties
username: initiativesproject
password: initiativespass123
server:
port: ${config.uri:8888}
eureka:
instance:
hostname: localhost
client:
registerWithEureka: true
... | spring:
cloud:
config:
server:
git:
uri: https://github.com/SopraSteriaGroup/initiatives_properties
username: initiativesproject
password: initiativespass123
server:
port: ${config.uri:8888}
eureka:
instance:
hostname: localhost
client:
registerWithEureka:... |
Update phone number freeswitch connects to. | # A vxfreeswitch connection to the Praekelt Foundation Twilio SIP test
# account.
#
# Note: The parameter freeswitch_auth must be set using an environment
# variable.
# transport configuration
worker_name: vxfreeswitch_transport
transport_name: vxfreeswitch_transport
twisted_endpoint: "tcp:port=8050"
freeswit... | # A vxfreeswitch connection to the Praekelt Foundation Twilio SIP test
# account.
#
# Note: The parameter freeswitch_auth must be set using an environment
# variable.
# transport configuration
worker_name: vxfreeswitch_transport
transport_name: vxfreeswitch_transport
twisted_endpoint: "tcp:port=8050"
freeswit... |
Add some new stylistic rules | parserOptions:
ecmaVersion: 2018
env:
browser: true
greasemonkey: true
extends: 'eslint:recommended'
rules:
indent:
- error
- 2
linebreak-style:
- error
- unix
quotes:
- warn
- single
semi:
- error
- always
eqeqeq:
- error
- always
no-confusing-arrow: error
n... | parserOptions:
ecmaVersion: 2018
env:
browser: true
greasemonkey: true
extends: 'eslint:recommended'
rules:
indent:
- error
- 2
linebreak-style:
- error
- unix
max-depth:
- warn
- 3
quotes:
- warn
- single
semi:
- error
- always
comma-dangle:
- error
- ... |
Add 6.1 to allowed install versions | # Plugin name
name: lbaas
title: LBaaS plugin for Neutron
# Plugin version
version: 1.0.0
# Description
description: Enables LBaaS for Neutron, works in multinode mode only
# Required fuel version
fuel_version: ['6.0']
# The plugin is compatible with releases in the list
releases:
- os: ubuntu
version: 2014.2-6.... | # Plugin name
name: lbaas
title: LBaaS plugin for Neutron
# Plugin version
version: 1.0.0
# Description
description: Enables LBaaS for Neutron, works in multinode mode only
# Required fuel version
fuel_version: ['6.0','6.1']
# The plugin is compatible with releases in the list
releases:
- os: ubuntu
version: 201... |
Add 32bit compat mdns dependency | machine:
node:
version: 4.4.1
environment:
XUNIT_FILE: $CIRCLE_TEST_REPORTS/xunit.xml
dependencies:
pre:
- sudo apt-get update
- sudo apt-get install rpm fakeroot dpkg libdbus-1-dev libglib2.0-dev libexpat1-dev libx32gcc-4.8-dev libc6-dev-i386
- sudo apt-get install gcc-4.8-multilib g++-4.8-m... | machine:
node:
version: 4.4.1
environment:
XUNIT_FILE: $CIRCLE_TEST_REPORTS/xunit.xml
dependencies:
pre:
- sudo apt-get update
- sudo apt-get install rpm fakeroot dpkg libdbus-1-dev libglib2.0-dev libexpat1-dev libx32gcc-4.8-dev libc6-dev-i386
- sudo apt-get install gcc-4.8-multilib g++-4.8-m... |
Change names in line with deps update | ---
title: FiniteMachine Ruby gem
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: ""
hig... | ---
title: FiniteMachine Ruby gem
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: ""
hig... |
Remove fixed versions of the docker images | version: '2'
services:
influxdb:
image: influxdb:1.1.1
ports:
- "8086:8086"
volumes:
- /var/lib/influxdb
- ./influxdb.conf:/etc/influxdb/influxdb.conf:ro
grafana:
image: grafana/grafana:4.0.1
ports:
- "3000:3000"
volumes:
- /var/lib/grafana
| version: '2'
services:
influxdb:
image: influxdb
ports:
- "8086:8086"
volumes:
- /var/lib/influxdb
- ./influxdb.conf:/etc/influxdb/influxdb.conf:ro
grafana:
image: grafana/grafana
ports:
- "3000:3000"
volumes:
- /var/lib/grafana
|
Add quotes to service name | services:
endroid_google_analytics.twig.extension:
class: Endroid\Bundle\GoogleAnalyticsBundle\Twig\Extension\GoogleAnalyticsExtension
calls:
- [ setContainer, [ @service_container ] ]
tags:
- { name: twig.extension }
| services:
endroid_google_analytics.twig.extension:
class: Endroid\Bundle\GoogleAnalyticsBundle\Twig\Extension\GoogleAnalyticsExtension
calls:
- [ setContainer, [ '@service_container' ] ]
tags:
- { name: twig.extension }
|
Add Ruby 2.2 to Travis | language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1
| language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1
- 2.2
|
Remove pypy3 to fix tests | language: python
python: 3.5
env:
matrix:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
- TOXENV=pypy3
- TOXENV=flake8
script:
- make test
install:
- travis_retry pip install tox
| language: python
python: 3.5
env:
matrix:
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
- TOXENV=flake8
script:
- make test
install:
- travis_retry pip install tox
|
Build with openjdk11 as well | sudo: required
language: java
script: mvn -q install --settings .travis-settings.xml
jdk:
- openjdk8
after_success:
- export TAG=`if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo $TRAVIS_BRANCH ; fi`
- docker build -t dbmaintain/dbmaintain:$TAG .
- docker login -e="$DOCKER_EMAIL" -u="$DOCKER... | sudo: required
language: java
script: mvn -q install --settings .travis-settings.xml
jdk:
- openjdk8
- openjdk11
after_success:
- export TAG=`if [ "$TRAVIS_BRANCH" == "master" ]; then echo "latest"; else echo $TRAVIS_BRANCH ; fi`
- docker build -t dbmaintain/dbmaintain:$TAG .
- docker login -e="$DOCKER_EMAI... |
Remove minitest/pride to fix travis build | AllCops:
Includes:
- 'Gemfile'
- 'Rakefile'
- 'omniauth-gplus.gemspec'
# Avoid long parameter lists
ParameterLists:
Max: 5
CountKeywordArgs: true
MethodLength:
CountComments: false
Max: 18
# Avoid more than `Max` levels of nesting.
BlockNesting:
Max: 2
# Align with the style guide.
Collectio... | # This is the configuration used to check the rubocop source code.
inherit_from: .rubocop_todo.yml |
Update from Hackage at 2017-08-01T02:06:29Z | homepage: ''
changelog-type: ''
hash: 89e02322d70363ef5425b9c6380e5f3edab21e090d97affcb39f42bcad334c0d
test-bench-deps:
base: -any
union: -any
criterion: -any
lens: -any
deepseq: ! '>=1.4.2'
maintainer: Vladislav Zavialov <vlad.z.4096@gmail.com>
synopsis: Extensible type-safe unions
changelog: ''
basic-deps:
... | homepage: ''
changelog-type: ''
hash: a8a94859504448570f32266cb314c7616421d6393a2192acf376cab54ad9b273
test-bench-deps:
base: -any
union: -any
criterion: -any
lens: -any
deepseq: ! '>=1.4.2'
maintainer: Vladislav Zavialov <vlad.z.4096@gmail.com>
synopsis: Extensible type-safe unions
changelog: ''
basic-deps:
... |
Install ninja on Azure with pip3 | jobs:
- job: Linux
timeoutInMinutes: 0
cancelTimeoutInMinutes: 60
pool:
vmImage: ubuntu-16.04
steps:
- script: |
set -x
# Azure checkout submodules options does not currently work
pushd $(Build.SourcesDirectory)
git submodule update --init --recursive
popd
... | jobs:
- job: Linux
timeoutInMinutes: 0
cancelTimeoutInMinutes: 60
pool:
vmImage: ubuntu-16.04
steps:
- script: |
set -x
# Azure checkout submodules options does not currently work
pushd $(Build.SourcesDirectory)
git submodule update --init --recursive
popd
... |
Update platforms in Test Kitchen | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.6
- name: centos-7.1
suites:
- name: default
run_list:
- recipe[yum-ius::default]
| driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.7
- name: centos-7.1
suites:
- name: default
run_list:
- recipe[yum-ius::default]
|
Update cli task to build on linux workers | platform: 'darwin'
inputs:
- name: kubernikus.builds
path: gopath/src/github.com/sapcc/kubernikus
outputs:
- name: binaries
run:
path: /bin/sh
args:
- -exc
- |
export BINARIES=$(pwd -P)/binaries
export GOPATH=$PWD/gopath
cd gopath/src/github.com/sapcc/kubernikus
make bin/... | platform: 'linux'
image_resource:
type: docker-image
source:
repository: golang
tag: 1.11.5-alpine3.8
inputs:
- name: kubernikus.builds
path: gopath/src/github.com/sapcc/kubernikus
outputs:
- name: binaries
run:
path: /bin/sh
args:
- -exc
- |
export BINARIES=$(pwd -P)/binaries
... |
Use explicit ruby versions on Travis | language: ruby
rvm:
- 2.3
- 2.2
- jruby
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/5373e574ed4e88026838
on_success: change
on_failure: always
on_start: never
| language: ruby
rvm:
- 2.4.0
- 2.3.3
- 2.2.6
- jruby-9.1.7.0
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/5373e574ed4e88026838
on_success: change
on_failure: always
on_start: never
|
Exclude 'normalizer' from scss linter. | # Default application configuration that all configurations inherit from.
linters:
BorderZero:
enabled: true
CapitalizationInSelector:
enabled: true
ColorKeyword:
enabled: true
Comment:
enabled: true
DebugStatement:
enabled: true
DeclarationOrder:
enabled: true
DuplicatePrope... | # Default application configuration that all configurations inherit from.
exclude: 'www/assets/sass/generic/_normalize.scss'
linters:
BorderZero:
enabled: true
CapitalizationInSelector:
enabled: true
ColorKeyword:
enabled: true
Comment:
enabled: true
DebugStatement:
enabled: true
D... |
Add user to gh-pages repo URL due to switch to fine-grained PAT. | ---
name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.STUDIO_GITHUB_TOKEN }}
- uses: actions/setup-node@v1
with:
node-version: '16'
- uses: ./.github/actions... | ---
name: CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.STUDIO_GITHUB_TOKEN }}
- uses: actions/setup-node@v1
with:
node-version: '16'
- uses: ./.github/actions... |
Remove - from if clause | ---
{{- if .Values.autoscaling -}}
apiVersion: autoscaling/v2beta1
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "omnitruck.fullname" . }}
labels:
{{- include "omnitruck.commonLabels" . | nindent 4 }}
spec:
{{ if .Values.autoscaling.minReplicas -}}
minReplicas: {{ .Values.autoscaling.minReplicas ... | ---
{{- if .Values.autoscaling -}}
apiVersion: autoscaling/v2beta1
kind: HorizontalPodAutoscaler
metadata:
name: {{ include "omnitruck.fullname" . }}
labels:
{{- include "omnitruck.commonLabels" . | nindent 4 }}
spec:
{{ if .Values.autoscaling.minReplicas }}
minReplicas: {{ .Values.autoscaling.minReplicas |... |
Add voice assistant apps in Services | - name: Software development
description: Idea ready? Let's turn it into a high-quality product available for millions of users.
icon: android
- name: Mobile solutions architecture
description: Keeping the pace with frameworks and platforms is a full‑time job. I do it so you don't have to.
icon: cloud
-... | - name: Software development
description: Idea ready? Let's turn it into a high-quality product available for millions of users.
icon: android
- name: Mobile solutions architecture
description: Keeping the pace with frameworks and platforms is a full‑time job. I do it so you don't have to.
icon: cloud
-... |
Apply 1 suggestion(s) to 1 file(s) | type: live
title: Contrôle gestion 2020
date: 14/12/2020
image: live-controle-gestion-2020.jpg
short: Live de controle gestion 2020-2021
peertube_id:
- 38179df7-156c-4498-9008-b8231a7ec6f2
authors:
- naisarah
description: Live de controle de gestion de l'année scolaire 2020-2021
keywords:
- formation: ing1
- cu... | type: live
title: Contrôle gestion 2020
date: 14/12/2020
image: live-controle-gestion-2020.jpg
short: Live de controle gestion 2020-2021
peertube_id:
- 38179df7-156c-4498-9008-b8231a7ec6f2
authors:
- naisarah
description: Live de controle de gestion de l'année scolaire 2020-2021
keywords:
- formation: ing1
- cu... |
Add TvoroG as maintainer of pytest-lazy-fixture | {% set name = "pytest-lazy-fixture" %}
{% set version = "0.3.0" %}
{% set hash = "80546181ed19d27a6c68b726e1a80537283ccb892b10d6ac952ba1ed670edfd1" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0]}}/{{ name }}/{{ nam... | {% set name = "pytest-lazy-fixture" %}
{% set version = "0.3.0" %}
{% set hash = "80546181ed19d27a6c68b726e1a80537283ccb892b10d6ac952ba1ed670edfd1" %}
package:
name: {{ name }}
version: {{ version }}
source:
fn: {{ name }}-{{ version }}.tar.gz
url: https://pypi.io/packages/source/{{ name[0]}}/{{ name }}/{{ nam... |
Add sir trevor as an option | parameters:
fork.form.theme: 'Core/Layout/Templates/FormLayout.html.twig'
fork.form.default_preferred_editor: 'ck-editor'
fork.form.available_editors:
ck-editor: 'CK Editor'
html: 'HTML'
services:
fork.datepicker.form:
class: Common\Form\DatePickerType
arguments:
... | parameters:
fork.form.theme: 'Core/Layout/Templates/FormLayout.html.twig'
fork.form.default_preferred_editor: 'ck-editor'
fork.form.available_editors:
ck-editor: 'CK Editor'
html: 'HTML'
sir-trevor: 'Sir Trevor'
services:
fork.datepicker.form:
class: Common\Form\DatePick... |
Test for different TF versions | jobs:
- job: 'Test'
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python36:
python.version: '3.6'
Python37:
python.version: '3.7'
steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '$(python.version)'
architecture: 'x64'
- script: python -m pip inst... | jobs:
- job: 'Test'
pool:
vmImage: 'Ubuntu-16.04'
strategy:
matrix:
Python36:
python.version: '3.6'
tensorflow.version: '1.13.1'
Python37:
python.version: '3.7'
tensorflow.version: '1.13.1'
Python37TF2:
python.version: '3.7'
tensorflow.versi... |
Build Perl CGI package for OSX | package:
name: perl-cgi
version: '4.22'
source:
fn: CGI-4.22.tar.gz
url: https://cpan.metacpan.org/authors/id/L/LE/LEEJO/CGI-4.22.tar.gz
build:
number: 2
skip: True # [osx]
requirements:
build:
- gcc
- perl-threaded
- perl-app-cpanminus
- perl-module-build
run:
- libgcc
- perl... | package:
name: perl-cgi
version: '4.22'
source:
fn: CGI-4.22.tar.gz
url: https://cpan.metacpan.org/authors/id/L/LE/LEEJO/CGI-4.22.tar.gz
build:
number: 3
requirements:
build:
- gcc
- perl-threaded
- perl-app-cpanminus
- perl-module-build
run:
- libgcc
- perl-threaded
test:
im... |
Add rustc 1.48 to CI | on: [pull_request]
name: CI
jobs:
check:
name: Check+Test
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install toolchain
uses: action... | on: [pull_request]
name: CI
jobs:
check:
name: Check+Test
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
- 1.48
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install toolchain
... |
Add PSR6 Unit Test in CI | language: php
matrix:
include:
- php: 5.3
env: PHP_VER=5
- php: 5.4
env: PHP_VER=5
- php: 5.5
env: PHP_VER=5
- php: 5.6
env: PHP_VER=5
- php: 7.0
env: PHP_VER=7
- php: hhvm
env: PHP_VER=hhvm
- php: nightly
env: PHP_VER=7
allow_failures:
- ph... | language: php
matrix:
include:
- php: 5.3
env: PHP_VER=5
- php: 5.4
env: PHP_VER=5
- php: 5.5
env: PHP_VER=5
- php: 5.6
env: PHP_VER=5
- php: 7.0
env: PHP_VER=7
- php: hhvm
env: PHP_VER=hhvm
- php: nightly
env: PHP_VER=7
allow_failures:
- ph... |
Update icons for temperature/humidity ranges | api:
mainUrl: http://localhost:8080/
endpoints:
profile:
url: profile/
nearby:
url: location/dist/
inputs:
comparison: &comparisonOperator
name: is
type: select
value: lt
options:
lt:
value: lt
display: less than
javaClass: JSONLess
leq:
... | api:
mainUrl: http://localhost:8080/
endpoints:
profile:
url: profile/
nearby:
url: location/dist/
inputs:
comparison: &comparisonOperator
name: is
type: select
value: lt
options:
lt:
value: lt
display: less than
javaClass: JSONLess
leq:
... |
Use real password for user | development:
adapter: postgresql
database: ninoxe_dev
username: chouette
password: chouette0
schema_search_path: chouette
test:
adapter: postgresql
database: ninoxe_test
username: chouette
password: chouette0
schema_search_path: chouette
production:
adapter: postgresql
database: ninoxe_prod
... | development:
adapter: postgresql
database: ninoxe_dev
username: chouette
password: chouette
schema_search_path: chouette
test:
adapter: postgresql
database: ninoxe_test
username: chouette
password: chouette
schema_search_path: chouette
production:
adapter: postgresql
database: ninoxe_prod
... |
Update from Hackage at 2019-07-21T07:38:40Z | homepage: ''
changelog-type: markdown
hash: 12c035c0062795abbc424e227d993b76767d0abf98a84106c37592cbdfe26ea7
test-bench-deps: {}
maintainer: maintainer@obsidian.systems
synopsis: Class for types with a database id
changelog: |
# Revision history for database-id-class
## 0.1.0.0
* Initial release. Contains HasId... | homepage: ''
changelog-type: markdown
hash: 2a70a78520f6e8278a9bdfc6a1bcd2d3d7eb639880175a9ec5c5b15060382cc1
test-bench-deps: {}
maintainer: maintainer@obsidian.systems
synopsis: Class for types with a database id
changelog: |
# Revision history for database-id-class
## 0.1.0.1
* Add readme
## 0.1.0.0
* I... |
Copy stuff from the internet | name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:5.7
ports:
- 3306
env:
MYSQL_DATABASE: test
MYSQL_ALLOW_EMPTY_PASSWORD: yes
strategy:
matrix:
haxe-version:
- stable
... | name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
services:
mysql:
image: mysql:5.7
ports:
- 3306
env:
MYSQL_DATABASE: test
MYSQL_ALLOW_EMPTY_PASSWORD: yes
options: --health-cmd="mysqladmin ping" --health-interval=10s --... |
Build with Node.js 10 on Travis CI. | sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
| sudo: false
language: node_js
node_js:
- '4'
- '6'
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g istanbul coveralls
|
Fix test command not found | name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['12', '10']
name: node ${{ matrix.node }}
steps:
- uses: actions/checkout@v1
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
... | name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["12", "10"]
name: node ${{ matrix.node }}
steps:
- uses: actions/checkout@v1
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
... |
Bump actions/checkout from 2.3.4 to 2.3.5 | name: Standard checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- nightly
steps:
- uses: actions/checkout@v2.3.4
- uses: actions-rs/toolchain@v1.0.7
... | name: Standard checks
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- nightly
steps:
- uses: actions/checkout@v2.3.5
- uses: actions-rs/toolchain@v1.0.7
... |
Update Node versions for CI | language: node_js
node_js:
- '4.7.3'
- '6.9.5'
- '7.5.0'
after_script:
- npm run coveralls | language: node_js
node_js:
- '4.8.4'
- '6.11.1'
- '8.2.1'
after_script:
- npm run coveralls
|
Test against Ruby 2.6, 2.7, and 3.0 on AppVeyor | version: 1.0.{build}-{branch}
environment:
matrix:
- RUBY_VERSION: 200
- RUBY_VERSION: 200-x64
- RUBY_VERSION: 21
- RUBY_VERSION: 21-x64
- RUBY_VERSION: 22
- RUBY_VERSION: 22-x64
- RUBY_VERSION: 23
- RUBY_VERSION: 23-x64
- RUBY_VERSION: 24
- RUBY_VERSION: 24-x64
- RUBY_VER... | version: 1.0.{build}-{branch}
environment:
matrix:
- RUBY_VERSION: 200
- RUBY_VERSION: 200-x64
- RUBY_VERSION: 21
- RUBY_VERSION: 21-x64
- RUBY_VERSION: 22
- RUBY_VERSION: 22-x64
- RUBY_VERSION: 23
- RUBY_VERSION: 23-x64
- RUBY_VERSION: 24
- RUBY_VERSION: 24-x64
- RUBY_VER... |
Update AppVeyor build to VS2019. | version: "2.2.2.{build}"
pull_requests:
do_not_increment_build_number: true
branches:
only:
- master
image: Visual Studio 2017
configuration: Release
environment:
snk_secret:
secure: 5q+Cyl0sRtamI4kHMyIGgRttc7aSjz+1iNbXcY3EpMNT98RYBp3/tY83y14RcNNC
install:
- if defined snk_secret (nuget install secu... | version: "2.2.2.{build}"
pull_requests:
do_not_increment_build_number: true
branches:
only:
- master
image: Visual Studio 2019
configuration: Release
environment:
snk_secret:
secure: 5q+Cyl0sRtamI4kHMyIGgRttc7aSjz+1iNbXcY3EpMNT98RYBp3/tY83y14RcNNC
install:
- if defined snk_secret (nuget install secu... |
Deploy to Fly and Heroku in parallel | name: Deploy to Fly
on:
workflow_run:
workflows: [CI]
types: [completed]
jobs:
deploy:
if: |
github.event.workflow_run.conclusion == 'success' &&
github.event.workflow_run.head_branch == github.event.repository.default_branch
concurrency: deploy
runs-on: ubuntu-latest
timeout-m... | name: Deploy to Fly
on:
workflow_run:
workflows: [CI]
types: [completed]
jobs:
deploy:
if: |
github.event.workflow_run.conclusion == 'success' &&
github.event.workflow_run.head_branch == github.event.repository.default_branch
concurrency: fly-deploy
runs-on: ubuntu-latest
timeo... |
Fix the workflow to run the full setup script | # This is a basic workflow to help you get started with Actions
name: osx-serve-install
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# * is a spec... | # This is a basic workflow to help you get started with Actions
name: osx-serve-install
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
# * is a spec... |
Update from Hackage at 2016-10-12T04:40:37+00:00 | homepage: ''
changelog-type: ''
hash: 98fa1f6a2ac7f3717c5f5adad78b8dfa7b1e5410e28a01e7ac6b03f4f8a14bb1
test-bench-deps: {}
maintainer: Adam Wick <awick@galois.com>
synopsis: Simple, pure, file-system-free reading of tar files
changelog: ''
basic-deps:
cereal: ! '>=0.5.2 && <0.7'
bytestring: ! '>=0.10.4 && <0.14'
... | homepage: ''
changelog-type: ''
hash: a699795168c276a7714a64feabbc7d75963211d6e62d0caf047ae2ae8fdeb07d
test-bench-deps: {}
maintainer: Adam Wick <awick@galois.com>
synopsis: Simple, pure, file-system-free reading of tar files
changelog: ''
basic-deps:
cereal: ! '>=0.5.2 && <0.7'
bytestring: ! '>=0.10.4 && <0.14'
... |
Remove GPG asc files from Circle CI artifact config | # ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# title Circle CI Build Configuration +
# project icecore-hashids +
# version +
# repository https://bitbucket.org/arcticice... | # ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# title Circle CI Build Configuration +
# project icecore-hashids +
# version +
# repository https://bitbucket.org/arcticice... |
Make Travis CI test also Python 3.6. | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- pypy
- pypy3
install:
- pip install flake8
- pip install coverage
- pip install coveralls
- pip install mock
- pip install nose
script:
- nosetests notify_send_tests.py --with-coverage --cover-package=notify_send --cover-erase
- flake8 --ignor... | language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- pypy
- pypy3
install:
- pip install flake8
- pip install coverage
- pip install coveralls
- pip install mock
- pip install nose
script:
- nosetests notify_send_tests.py --with-coverage --cover-package=notify_send --cover-erase
- flake8... |
Fix config for latest version of RadBundle | imports:
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
web_profiler:
toolbar: false
intercept_redirects: false
swiftmailer:
disable_delivery: true
knp_rad:
mailer_logger: true
listener:
exception_rethrow: true
| imports:
- { resource: config_dev.yml }
framework:
test: ~
session:
storage_id: session.storage.mock_file
web_profiler:
toolbar: false
intercept_redirects: false
swiftmailer:
disable_delivery: true
knp_rad:
mailer:
logger: true
listener:
exception_rethrow: tru... |
Increase the frequency of the low-cadence build to see if it runs. | name: Continuous Integration (Low Cadence)
on:
schedule:
- cron: '0 0,12 * * *'
env:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
jobs:
java-slow-test-build:
name: Java Slow Tests (JDK ${{ matrix.java }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
... | name: Continuous Integration (Low Cadence)
on:
schedule:
- cron: '0,20,40 * * * *'
env:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
jobs:
java-slow-test-build:
name: Java Slow Tests (JDK ${{ matrix.java }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
... |
Update ntp service instance to cater for changes in Oracle Solaris 11.4 SRU 45.119.2 | ntp::config: '/etc/inet/ntp.conf'
ntp::driftfile: '/var/ntp/ntp.drift'
ntp::keys_file: '/etc/inet/ntp.keys'
ntp::package_name: [ 'service/network/ntp' ]
ntp::restrict:
- 'default kod nomodify notrap nopeer noquery'
- '-6 default kod nomodify notrap nopeer noquery'
- '127.0.0.1'
- '-6 ::1'
ntp::service_name: 'ne... | ntp::config: '/etc/inet/ntp.conf'
ntp::driftfile: '/var/ntp/ntp.drift'
ntp::keys_file: '/etc/inet/ntp.keys'
ntp::package_name: [ 'service/network/ntp' ]
ntp::restrict:
- 'default kod nomodify notrap nopeer noquery'
- '-6 default kod nomodify notrap nopeer noquery'
- '127.0.0.1'
- '-6 ::1'
ntp::service_name: 'ne... |
Change Good Night and Good Morning scripts | good_morning:
alias: Good Morning
sequence:
- service: light.turn_on
data:
entity_id:
- group.kitchen_lights
- group.hall_lights
- light.living_room_ceiling_light
- delay: '00:30:00'
- service: light.turn_off
data:
entity_id:
- group.be... | good_morning:
alias: Good Morning
sequence:
- service: light.turn_on
data:
entity_id:
- group.kitchen_lights
- group.hall_lights
- light.living_room_ceiling_light
- light.bedroom_bed_light
- light.bedroom_ambient_light
- delay: '00:30:00'
-... |
Change config to release mode. | version: 3.0.0.{build}
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "{version}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"
before_build:
- nuget restore
build:
project: Exceptionless.DateTimeExtensions.sln
publish_nuget: true
publish_nuget_sy... | version: 3.0.0.{build}
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: "{version}"
assembly_file_version: "{version}"
assembly_informational_version: "{version}"
before_build:
- nuget restore
configuration: Release
build:
project: Exceptionless.DateTimeExtensions.sln
publish_nuget:... |
Install apcu only on php 5.6 | language: php
php:
- '5.6'
- '7.0'
- '7.1'
before_install:
- echo "extension = apcu.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
install:
- yes n | pecl install -f apcu-4.0.11
- composer install --prefer-dist
before_script:
- phpenv rehash
script:
- vendor/bin/phpunit | language: php
php:
- '5.6'
- '7.0'
- '7.1'
matrix:
include:
- php: '5.6'
env: INSTALL_APCU=true
- php: '7.0'
env: INSTALL_APCU=false
- php: '7.1'
env: INSTALL_APCU=false
before_install:
- echo "extension = apcu.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
insta... |
Fix wrong url of emqtt | language: elixir
elixir:
- 1.4.5
addons:
postgresql: '9.4'
services:
- postgresql
before_install:
- wget http://emqtt.com/downloads/latest/ubuntu16_04
- mv ubuntu16_04 latest_emqtt.deb
- sudo dpkg -i latest_emqtt.deb
- sudo service emqttd start
before_script:
- mix do ecto.create, ecto.migrate
env... | language: elixir
elixir:
- 1.4.5
addons:
postgresql: '9.4'
services:
- postgresql
before_install:
- wget http://emqtt.io/downloads/latest/ubuntu12_04-deb -O emqtt.deb
- sudo dpkg -i emqtt.deb
- sudo service emqttd start
before_script:
- mix do ecto.create, ecto.migrate
env:
- MIX_ENV=test
script:... |
Fix path for codeclimate lcov.info | language: node_js
sudo: false
node_js:
- 0.12
- 4
- 5
cache:
directories:
- node_modules
before_script:
- npm install -g gulp
after_success:
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_REPO_TOKEN codeclimate-test-reporter < ./coverage/lcov.info
deploy:
provider: npm
api_key: $NPM_API_KEY
email: th... | language: node_js
sudo: false
node_js:
- 0.12
- 4
- 5
cache:
directories:
- node_modules
before_script:
- npm install -g gulp
after_success:
- CODECLIMATE_REPO_TOKEN=$CODECLIMATE_REPO_TOKEN codeclimate-test-reporter < ./coverage/mocha/lcov.info
deploy:
provider: npm
api_key: $NPM_API_KEY
ema... |
Test with Ruby 2.2 and 2.3 | language: ruby
sudo: false
cache: bundler
rvm:
- 2.1.0
| language: ruby
sudo: false
cache: bundler
rvm:
- 2.1.8
- 2.2.4
- 2.3.0
|
Revert "Test on OpenJDK 8 too, because the Docker image uses it" | sudo: false
language: java
jdk:
- oraclejdk8
- openjdk8
addons:
postgresql: 9.4
before_script:
- mvn versions:display-dependency-updates
- mvn versions:display-plugin-updates
| sudo: false
language: java
jdk:
- oraclejdk8
addons:
postgresql: 9.4
before_script:
- mvn versions:display-dependency-updates
- mvn versions:display-plugin-updates
|
Use last stable 2.2 ruby. | language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- "2.1"
- ruby-head
- jruby-19mode
- jruby-head
| language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- "2.1"
- "2.2"
- ruby-head
- jruby-19mode
- jruby-head
|
Configure Travis CI not to cache node_modules | ---
language: node_js
node_js:
- 4
- 5
sudo: false
cache:
directories:
- node_modules
script:
- npm test
- npm run lint
| ---
language: node_js
node_js:
- 4
- 5
sudo: false
script:
- npm test
- npm run lint
|
Configure Travis CI to lint with all versions | ---
language: "node_js"
node_js: [ "6", "7", "8", "9", "10", "11", "node" ]
script:
- "npm run test"
- 'if [ "$TRAVIS_NODE_VERSION" = "node" ]; then npm run lint ; fi'
- "npm run licenses"
sudo: false
| ---
language: "node_js"
node_js: [ "6", "7", "8", "9", "10", "11", "node" ]
script:
- "npm run test"
- "npm run lint"
- "npm run licenses"
sudo: false
|
Use `127.0.0.1` instead of `localhost` to fix Travis error | language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
env:
- WP_VERSION=latest WP_MULTISITE=0
before_script:
- composer install
- bash vendor/frozzare/wp-test-suite/bin/install-wp-tests.sh wordpress_test root '' localhost $WP_VERSION
script: phpunit
| language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm
env:
- WP_VERSION=latest WP_MULTISITE=0
before_script:
- composer install
- bash vendor/frozzare/wp-test-suite/bin/install-wp-tests.sh wordpress_test root '' 127.0.0.1 $WP_VERSION
script: phpunit
|
Add cache of maven dependencies in Travis | language: java
jdk:
- openjdk7
script:
- mvn clean package
deploy:
provider: releases
api_key:
secure: AuN0zYIV1UQqEAc9kdxHaeP5gTFD0WFGyf777/JEp2VhoCbBuSldlfXy7r4ELK8kqr1OostlsVGIFq0bKUB9bAYTssfom3/tz2UdVtZl5BR/nJGW5eDRUcJNBG+CTVlrnsGP08eXwNjGUvqGMwVUZbXdJLYJGCU6Kh06k76x7kE=
file: target/testdroid-marionet... | language: java
jdk:
- openjdk7
script:
- mvn clean package
cache:
directories:
- $HOME/.m2
deploy:
provider: releases
api_key:
secure: AuN0zYIV1UQqEAc9kdxHaeP5gTFD0WFGyf777/JEp2VhoCbBuSldlfXy7r4ELK8kqr1OostlsVGIFq0bKUB9bAYTssfom3/tz2UdVtZl5BR/nJGW5eDRUcJNBG+CTVlrnsGP08eXwNjGUvqGMwVUZbXdJLYJGCU6Kh06k76... |
Add the json run to Travis | language: python
python: "2.7"
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=flake8
- TOX_ENV=docs
- TOX_ENV=coverage
install:
- pip install tox
script: "./.travis.sh"
matrix:
allow_failures:
- env: TOXENV=coverage
| language: python
python: "2.7"
env:
- TOX_ENV=py26
- TOX_ENV=py27
- TOX_ENV=py33
- TOX_ENV=py34
- TOX_ENV=flake8
- TOX_ENV=docs
- TOX_ENV=json
- TOX_ENV=coverage
install:
- pip install tox
script: "./.travis.sh"
matrix:
allow_failures:
- env: TOXENV=coverage
|
Update python version, organization name. | language: python
python:
- "3.4"
install: "pip install -r requirements.txt"
# command to run tests
script: bash ./test.sh
env:
global:
- TESTMODULE: sinecosine.py
- GH_REPO: github.com/HHS-IntroProgramming/tests.git
| language: python
python:
- "3.7"
install: "pip install -r requirements.txt"
# command to run tests
script: bash ./test.sh
env:
global:
- TESTMODULE: sinecosine.py
- GH_REPO: github.com/Runpython-IntroProgramming/tests.git
|
Use new Travis CI infrastructure | language: scala
scala:
- 2.10.4
- 2.11.2
| language: scala
sudo: false
scala:
- 2.10.4
- 2.11.5
|
Add Node 10 to Travis | language: node_js
node_js:
- '4'
- '5'
- '6'
- '7'
- '8'
- '9'
| language: node_js
node_js:
- '4'
- '5'
- '6'
- '7'
- '8'
- '9'
- '10'
|
Remove broken pypy3 from Travis config | language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6-dev"
- "nightly"
- "pypy"
- "pypy3"
install:
- pip install -r requirements-test.txt
- pip install nose coverage
script:
- make test
after_script:
- coveralls
| language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6-dev"
- "nightly"
- "pypy"
install:
- pip install -r requirements-test.txt
- pip install nose coverage
script:
- make test
after_script:
- coveralls
|
Update Xcode and simulator versions | language: objective-c
osx_image: xcode8.1
sudo: false
before_install:
- gem install xcpretty
install:
- tail -n +4 Sample\ iOS/Constants.h.example > Sample\ iOS/Constants.h
- echo \#define PUSHER_APP_ID @\"$(env | grep PUSHER_APP_ID | cut -d "=" -f 2)\" >> Sample\ iOS/Constants.h
- echo \#define PUSHER_API_KEY ... | language: objective-c
osx_image: xcode11.3
sudo: false
before_install:
- gem install xcpretty
install:
- tail -n +4 Sample\ iOS/Constants.h.example > Sample\ iOS/Constants.h
- echo \#define PUSHER_APP_ID @\"$(env | grep PUSHER_APP_ID | cut -d "=" -f 2)\" >> Sample\ iOS/Constants.h
- echo \#define PUSHER_API_KEY... |
Fix oss build and enable samples build in Travis. | dist: xenial
sudo: required
os:
- linux
- osx
before_install:
- |
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
OS=darwin
else
sysctl kernel.unprivileged_userns_clone=1
OS=linux
fi
BAZELISK_VERSION=v1.5.0
if [ ! -d "${HOME}/bin" ]; then
mkdir "${HOME}/bin"
fi
wget... | dist: xenial
sudo: required
os:
- linux
- osx
before_install:
- |
if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
OS=darwin
else
sysctl kernel.unprivileged_userns_clone=1
OS=linux
fi
BAZELISK_VERSION=v1.5.0
if [ ! -d "${HOME}/bin" ]; then
mkdir "${HOME}/bin"
fi
wget... |
Allow failures to ruby-head or active_record_edge.gemfile | language: ruby
rvm:
- 2.2.4
- 2.3.0
- ruby-head
gemfile:
- gemfiles/active_record_41.gemfile
- gemfiles/active_record_42.gemfile
- gemfiles/active_record_edge.gemfile
cache: bundler
| language: ruby
rvm:
- 2.2.4
- 2.3.0
- ruby-head
gemfile:
- gemfiles/active_record_41.gemfile
- gemfiles/active_record_42.gemfile
- gemfiles/active_record_edge.gemfile
cache: bundler
matrix:
allow_failures:
- rvm: ruby-head
- gemfile: gemfiles/active_record_edge.gemfile
|
Update for Chef 15 license agreement and Chef Workstation | sudo: required
dist: trusty
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
services: docker
env:
matrix:
# - INSTANCE=client-amazonlinux
- INSTANCE=c... | addons:
apt:
sources:
- chef-current-xenial
packages:
- chef-workstation
# Don't `bundle install` which takes about 1.5 mins
install: echo "skip bundle install"
env:
- CHEF_LICENSE=accept
branches:
only:
- master
services: docker
env:
matrix:
# - INSTANCE=client-amazonlinux
-... |
Disable blackfire by default in devtools role. | blackfire_server_key: "aa-bb-REPLACE THIS-cc-dd"
blackfire_server_token: "aa-bb-REPLACE THIS-cc-dd"
blackfire_client_key: "aa-bb-REPLACE THIS-cc-dd"
blackfire_client_token: "aa-bb-REPLACE THIS-cc-dd"
enable_blackfire: true
xdebug:
- section: XDebug
options:
- key: xdebug.remote_enable
val: 1
- key: x... | blackfire_server_key: "aa-bb-REPLACE THIS-cc-dd"
blackfire_server_token: "aa-bb-REPLACE THIS-cc-dd"
blackfire_client_key: "aa-bb-REPLACE THIS-cc-dd"
blackfire_client_token: "aa-bb-REPLACE THIS-cc-dd"
enable_blackfire: false
xdebug:
- section: XDebug
options:
- key: xdebug.remote_enable
val: 1
- key: ... |
Fix Travis osx image selection. | matrix:
include:
- language: android
android:
components:
- tools
- platform-tools
- tools
- extra
- build-tools-29.0.2
- android-29
script:
- ionic cordova build android --prod --release -- -- --packageType=bundle
- language: objective-c
osx_image: xcode1... | matrix:
include:
- language: android
android:
components:
- tools
- platform-tools
- tools
- extra
- build-tools-29.0.2
- android-29
script:
- ionic cordova build android --prod --release -- -- --packageType=bundle
- language: objective-c
os: osx
osx_i... |
Drop support for Go 1.8 | language: go
go:
- "1.8"
- "1.9"
- "1.10"
- "1.11"
- "1.12"
env:
# Temporary workaround for go 1.6
- GODEBUG=cgocheck=0
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-base-dev
- cd /tmp && wget http://www.csie.ntu.edu.tw/~cjlin/liblinear/oldfiles/liblinear-1.94.tar.gz && tar xf ... | language: go
go:
- "1.9"
- "1.10"
- "1.11"
- "1.12"
env:
# Temporary workaround for go 1.6
- GODEBUG=cgocheck=0
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libatlas-base-dev
- cd /tmp && wget http://www.csie.ntu.edu.tw/~cjlin/liblinear/oldfiles/liblinear-1.94.tar.gz && tar xf liblinear... |
Remove npm deployment from Travis | language: node_js
node_js:
- '4.0'
- '8.0'
sudo: false
after_success: bash <(curl -s https://codecov.io/bash)
deploy:
- provider: npm
email: tituswormer@gmail.com
api_key:
secure: KIOBGKFkJNVKaAs+f7ZrjmfQLFc1/we1Ss2lm5RzyeFbxfuIdO5jTtAB7KQeaEnry/ye9C4IklGdnwN35TZuG0qCRVBGNddV/gtB3FcfD9GxEi8MWiroC4A5F2Uv... | language: node_js
node_js:
- '4.0'
- '8.0'
sudo: false
after_success: bash <(curl -s https://codecov.io/bash)
deploy:
provider: releases
api_key:
secure: T1HM8rpCijuQ+y4ee37t3pgsufm3DIot71Ejf2n2wSKyp8PukcOflV71XOt2Sw+7DvZ2lCsL5qTwIHf7NVlXJlBse1Fd69nNTc1U2AZztVZI7gxL1kHCOwZFDJEUtJYPqwHAe8uPtDoaHBQ6u0cPysQmmDraIZ... |
Enable Ruby 1.9.2 testing. Open the flood gates!! | language: ruby
rvm:
- 1.8.7
- 1.9.3
# Rubinius in 1.8 mode on Travis does not work. It complains about st_data_t etc.
#- rbx-18mode
- rbx-19mode
install: env NOEXEC=skip bundle install --without=documentation && rake travis:setup --trace
script: bundle exec rake spec --trace
| language: ruby
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
# Rubinius in 1.8 mode on Travis does not work. It complains about st_data_t etc.
#- rbx-18mode
- rbx-19mode
install: env NOEXEC=skip bundle install --without=documentation && rake travis:setup --trace
script: bundle exec rake spec --trace
|
Add twitter icon placeholder, different from the twitter plugin | menu:
Home: /
Archives: /archives
widgets:
- search
- category
- tag
excerpt_link: Read More
twitter:
username:
show_replies: false
tweet_count: 5
github:
facebook:
google_plus:
addthis:
enable: true
pubid:
facebook: true
twitter: true
google: true
pinterest: true
fancybox: true
google_analy... | menu:
Home: /
Archives: /archives
widgets:
- search
- category
- tag
excerpt_link: Read More
twitter:
username:
show_replies: false
tweet_count: 5
twitter:
github:
facebook:
google_plus:
addthis:
enable: true
pubid:
facebook: true
twitter: true
google: true
pinterest: true
fancybox: true
go... |
Update from Hackage at 2017-12-17T17:18:04Z | homepage: http://github.com/chessai/discrete-intervals
changelog-type: ''
hash: f667299a19dbce0453105acbb009ac364922f72979f352c9ff4232ce0def9920
test-bench-deps: {}
maintainer: Daniel Cartwright <dcartwright@layer3com.com>
synopsis: Discrete Intervals
changelog: ''
basic-deps:
base: ! '>=4.9 && <=5.0'
all-versions:
-... | homepage: http://github.com/chessai/discrete-intervals
changelog-type: ''
hash: 9cc248d2a64fa79a91f1ab21a8a5309176433984263f14bc36237f7ee6199076
test-bench-deps: {}
maintainer: Daniel Cartwright <dcartwright@layer3com.com>
synopsis: Discrete Intervals
changelog: ''
basic-deps:
base: ! '>=4.9 && <=5.0'
all-versions:
-... |
Update DB dir on host | version: "2"
services:
web:
build: .
ports:
- "5001:3000"
links:
- mongo
mongo:
image: mongo
volumes:
- /data/mongodb/db:/data/db
ports:
- "27018:27017"
| version: "2"
services:
web:
build: .
ports:
- "5001:3000"
links:
- mongo
mongo:
image: mongo
volumes:
- /data/mongodb/digitalLocker:/data/db
ports:
- "27018:27017"
|
Update from Hackage at 2022-11-22T22:20:35Z | homepage: https://github.com/parsonsmatt/lift-type#readme
changelog-type: markdown
hash: 6e38e49bf086fd2203346417d96ad2e6c300d8d8f41d222780abdccc7a4e451b
test-bench-deps:
lift-type: -any
base: '>=4.7 && <5'
template-haskell: -any
maintainer: parsonsmatt@gmail.com
synopsis: Lift a type from a Typeable constraint t... | homepage: https://github.com/parsonsmatt/lift-type#readme
changelog-type: markdown
hash: 64dbe884c1c55ed8cf2277aab2da41f4a2079811cd77bf0355d1e65113a30066
test-bench-deps:
lift-type: -any
base: -any
template-haskell: -any
maintainer: parsonsmatt@gmail.com
synopsis: Lift a type from a Typeable constraint to a Templ... |
Update from Hackage at 2016-10-05T15:21:52+00:00 | homepage: ''
changelog-type: ''
hash: 320be794820807e7a35259bece62c89c2739e05eda6ad670e78482b7ebbf65c3
test-bench-deps: {}
maintainer: emax@chalmers.se
synopsis: Render trees as foldable HTML and Unicode art
changelog: ''
basic-deps:
base: <5
containers: -any
mtl: -any
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4... | homepage: ''
changelog-type: ''
hash: b456076fa5d821bbc17d2100bfcaa877979f5fe3a72852f84981305f752a0d61
test-bench-deps: {}
maintainer: emax@chalmers.se
synopsis: Render trees as foldable HTML and Unicode art
changelog: ''
basic-deps:
base: <5
containers: -any
mtl: -any
all-versions:
- '0.1'
- '0.2'
- '0.3'
- '0.4... |
Update node versions of tests | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_re... | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ master ]
pull_re... |
Fix failing tests on 20.04 | # pre test file
---
- name: install dependencies
apt:
name:
- openssh-client
state: "{{ apt_install_state | default('latest') }}"
update_cache: true
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
- name: add ssh directory
file:
path: "{{ autossh_tunnel_client_ssh_di... | # pre test file
---
- name: install dependencies
apt:
name:
- openssh-client
state: "{{ apt_install_state | default('latest') }}"
update_cache: true
cache_valid_time: "{{ apt_update_cache_valid_time | default(3600) }}"
- name: add ssh directory
file:
path: "{{ autossh_tunnel_client_ssh_di... |
Add comments for wlan0 for flash tool | # hostname for your HypriotOS device
hostname: black-pearl
| # hostname for your HypriotOS device
hostname: black-pearl
# optional wireless network settings
wifi:
interfaces:
# wlan0:
# ssid: "MyNetwork"
# password: "secret_password"
|
Update source_gen dep to ^0.8.0 | name: pageloader
version: 3.0.0
authors:
- Marc Fisher II (emeritus) <fisherii@google.com>
- Max Kim <maxkim@google.com>
- Matt Staats (emeritus)
description:
Supports the creation of page objects that can be shared between in-browser tests
and WebDriver tests.
homepage: https://github.com/google/pageloader
e... | name: pageloader
version: 3.0.0-dev
authors:
- Marc Fisher II (emeritus) <fisherii@google.com>
- Max Kim <maxkim@google.com>
- Matt Staats (emeritus)
description:
Supports the creation of page objects that can be shared between in-browser tests
and WebDriver tests.
homepage: https://github.com/google/pageload... |
Update from Hackage at 2021-12-10T18:21:46Z | homepage: ''
changelog-type: ''
hash: 7f6bf03d69849f0e32dd2e8359fdb5aba974d852a634ced685e203a62a66b51c
test-bench-deps: {}
maintainer: work.a.mulik@gmail.com
synopsis: Simple Data Processing
changelog: ''
basic-deps:
base: '>=4.9 && <5'
data-default-class: '>=0.1 && <0.2'
fmr: '>=0.2 && <1'
ghc-prim: '>=0.5 && ... | homepage: ''
changelog-type: ''
hash: b8e75f0e86158fc7d7c7f20f084cd670a0e09312cb50e6b7ff11fda353076501
test-bench-deps: {}
maintainer: work.a.mulik@gmail.com
synopsis: Simple Data Processing
changelog: ''
basic-deps:
base: '>=4.9 && <5'
data-default-class: '>=0.1 && <0.2'
fmr: '>=0.2 && <1'
ghc-prim: '>=0.5 && ... |
Remove deprecated dic service definitions | parameters:
p2_bootstrap.theme_builder.class: P2\Bundle\BootstrapBundle\Themeing\ThemeBuilder
#default_theme.class: Acme\Bundle\Themeing\DefaultTheme
services:
p2_bootstrap.theme_builder:
class: %p2_bootstrap.theme_builder.class%
| parameters:
services:
|
Scale up number of instances on api, supplier-frontend, and router | ---
domain: "digitalmarketplace.service.gov.uk"
maintenance_mode: live
instances: 5
router:
instances: 3
rate_limiting_enabled: enabled
routes:
- www.digitalmarketplace.service.gov.uk
- api.digitalmarketplace.service.gov.uk
- search-api.digitalmarketplace.service.gov.uk
- antivirus-api.digitalmar... | ---
domain: "digitalmarketplace.service.gov.uk"
maintenance_mode: live
instances: 5
router:
instances: 5
rate_limiting_enabled: enabled
routes:
- www.digitalmarketplace.service.gov.uk
- api.digitalmarketplace.service.gov.uk
- search-api.digitalmarketplace.service.gov.uk
- antivirus-api.digitalmar... |
Update to suitable kubekins image. | periodics:
- interval: 1h
name: ci-kubernetes-coverage-conformance
decorate: true
extra_refs:
- org: kubernetes
repo: kubernetes
base_ref: master
path_alias: k8s.io/kubernetes
- org: kubernetes
repo: test-infra
base_ref: master
path_alias: k8s.io/test-infra
spec:
containers:
... | periodics:
- interval: 1h
name: ci-kubernetes-coverage-conformance
decorate: true
extra_refs:
- org: kubernetes
repo: kubernetes
base_ref: master
path_alias: k8s.io/kubernetes
- org: kubernetes
repo: test-infra
base_ref: master
path_alias: k8s.io/test-infra
spec:
containers:
... |
FIX add coverage for Shippable | language: python
python:
- "2.7"
install: "pip install -r requirements.txt --use-mirrors"
script:
- nosetests --with-xunit --xunit-file=shippable/testresults/nosetests.xml --cover-package=freeboxclient
- coverage run --branch freeboxclient
- coverage xml -o shippable/testresults/nosetests.xml freeboxcli... | language: python
python:
- "2.7"
install: "pip install -r requirements.txt --use-mirrors"
script:
- nosetests --with-xunit --xunit-file=nosetests.xml --cover-package=freeboxclient
- coverage run --branch freeboxclient
- coverage xml -o nosetests.xml freeboxclient
|
Add missing authentication to clean docker hub tags | name: Clean docker hub tags
on:
delete
jobs:
clean:
runs-on: ubuntu-18.04
name: Clean docker hub tags
steps:
- uses: actions/checkout@v1
- run: ci/clean-dockerhub-tag
| name: Clean docker hub tags
on:
delete
jobs:
clean:
runs-on: ubuntu-18.04
name: Clean docker hub tags
env:
SUMMON_PROVIDER: /usr/local/bin/gopass
steps:
- uses: actions/checkout@v1
- uses: camptocamp/initialise-gopass-summon-action@v1
with:
large-secret-passphra... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.