Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Set lower bound for `python` and added a sha256 checksum | {% set name = "p-winds" %}
{% set version = "0.5.2b" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/ladsantos/p-winds/archive/refs/tags/v0.5.2-beta.tar.gz
build:
noarch: python
number: 0
script: "{{ PYTHON }} -m pip install . -vv"
requirements:
host:
- p... | {% set name = "p-winds" %}
{% set version = "0.5.2b" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/ladsantos/p-winds/archive/refs/tags/v0.5.2-beta.tar.gz
sha256: 2e517ff6408f541baf2b948202d2a92d00ee0ba5b31c6b146b889cce30ceedda
build:
noarch: python>=3.6
number... |
Change redis to apcu for metadata cache | imports:
- { resource: config.yml }
fos_http_cache:
proxy_client:
default: varnish
framework:
router:
strict_requirements: false
# Doctrine Configuration
doctrine:
orm:
metadata_cache_driver: redis
query_cache_driver: redis
result_cache_driver: redis
monolog:
... | imports:
- { resource: config.yml }
fos_http_cache:
proxy_client:
default: varnish
framework:
router:
strict_requirements: false
# Doctrine Configuration
doctrine:
orm:
metadata_cache_driver: apcu
query_cache_driver: apcu
result_cache_driver: apcu
monolog:
... |
Update flutter.widgets package version to 0.1.3 | name: flutter_widgets
version: 0.1.2
description: >
Flutter widgets that are developed by Google but not by the core
Flutter team.
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/google/flutter.widgets
environment:
sdk: ">=2.0.0 <3.0.0"
dependencies:
collection: ^1.14.5
flutter:
sdk: ... | name: flutter_widgets
version: 0.1.3
description: >
Flutter widgets that are developed by Google but not by the core
Flutter team.
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/google/flutter.widgets
environment:
sdk: ">=2.0.0 <3.0.0"
dependencies:
collection: ^1.14.5
flutter:
sdk: ... |
Create le ruotes, il controller e due templates per la sezione "Clients" | home:
pattern: /
defaults: { _controller: AgileInvoiceBundle:Default:index }
invoices:
pattern: /invoices
defaults: { _controller: AgileInvoiceBundle:Invoices:index }
invoices_archive:
pattern: /invoices/archive
defaults: { _controller: AgileInvoiceBundle:Invoices:archive }
clients:
pa... | home:
pattern: /
defaults: { _controller: AgileInvoiceBundle:Default:index }
invoices:
pattern: /invoices
defaults: { _controller: AgileInvoiceBundle:Invoices:index }
clients:
pattern: /clients
defaults: { _controller: AgileInvoiceBundle:Clients:index }
clients_new:
pattern: /clients/n... |
Update CircleCI for more fine grained reporting | defaults: &defaults
working_directory: ~/unparser
steps:
- checkout
- run: bundle install
- run: bundle exec rake ci
version: 2
jobs:
ruby_2_5:
<<: *defaults
docker:
- image: circleci/ruby:2.5.3
workflows:
version: 2
test:
jobs:
- ruby_2_5
| defaults: &defaults
working_directory: ~/unparser
docker:
- image: circleci/ruby:2.5.3
version: 2
jobs:
unit_specs:
<<: *defaults
steps:
- checkout
- run: bundle install
- run: bundle exec rspec spec/unit
integration_specs:
<<: *defaults
steps:
- checkout
- run:... |
Move skip selector to the proper group | {% set name = "pyxid" %}
{% set version = "1.0" %}
{% set sha256 = "e689bce2ed8ed4bff7174a3a79f8b639ebf6356807aec7e9da481217313214ff" %}
package:
name: pyxid
version: "1.0"
source:
fn: pyxid-{{ version }}.tar.gz
url: https://github.com/cedrus-opensource/pyxid/archive/{{ version }}.tar.gz
sha256: {{ sha256 }... | {% set name = "pyxid" %}
{% set version = "1.0" %}
{% set sha256 = "e689bce2ed8ed4bff7174a3a79f8b639ebf6356807aec7e9da481217313214ff" %}
package:
name: pyxid
version: "1.0"
source:
fn: pyxid-{{ version }}.tar.gz
url: https://github.com/cedrus-opensource/pyxid/archive/{{ version }}.tar.gz
sha256: {{ sha256 }... |
Add support for PHP 7.2 | language: php
php:
- 5.6
- 7.0
- 7.1
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update --snapshot
- composer update $COMPOSER_OPTS
script:
- vendor/bin/phpunit --coverage-clover=clover.xml
- tests/lint.... | language: php
php:
- 5.6
- 7.0
- 7.1
- 7.2
- nightly
matrix:
allow_failures:
- php: nightly
env:
- COMPOSER_OPTS=""
- COMPOSER_OPTS="--prefer-lowest"
install:
- composer self-update --snapshot
- composer update $COMPOSER_OPTS
script:
- vendor/bin/phpunit --coverage-clover=clover.xml
- tes... |
Remove autoload files before caching | sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
cache:
directories:
- vendor
- $HOME/.composer/cache
before_install:
- composer selfupdate
- composer config --global github-oauth.github.com $GITHUB_OAUTH_TOKEN
install:
- composer install --no-interaction --prefer-dist
script:
- ph... | sudo: false
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
cache:
directories:
- vendor
- $HOME/.composer/cache
before_install:
- composer selfupdate
- composer config --global github-oauth.github.com $GITHUB_OAUTH_TOKEN
install:
- composer install --no-interaction --prefer-dist
script:
- ph... |
Add long running label to the exemptLables section | # Configuration for probot-stale - https://github.com/probot/stale
# Number of days of inactivity before an Issue or Pull Request becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale Issue or Pull Request is closed
daysUntilClose: 7
# Issues or Pull Requests with these labels will never be co... | # Configuration for probot-stale - https://github.com/probot/stale
# Number of days of inactivity before an Issue or Pull Request becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale Issue or Pull Request is closed
daysUntilClose: 7
# Issues or Pull Requests with these labels will never be co... |
Remove end of life Python 3 releases | name: websocket-client build and test
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Check out source repository
uses: actions/c... | name: websocket-client build and test
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [2.7, 3.6, 3.7, 3.8, 3.9]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
- name: Check out source repository
uses: actions/checkout@v2... |
Enable the "fileinfo" extension in workflow | name: Tests (PHP)
on: [push, pull_request]
jobs:
phpunit:
name: PHP ${{ matrix.php }} on ${{ matrix.os }} (${{ matrix.composer_flags }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
php: [7.3, 7.4]
... | name: Tests (PHP)
on: [push, pull_request]
jobs:
phpunit:
name: PHP ${{ matrix.php }} on ${{ matrix.os }} (${{ matrix.composer_flags }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
php: [7.3, 7.4]
... |
Correct session name when copied from mal.yaml. | session_name: mal
windows:
- window_name: mal
focus: 'false'
options:
automatic-rename: 'on'
panes:
- shell_command:
- cd /Users/steven.knight/src/dotfiles
| session_name: dotfiles
windows:
- window_name: dotfiles
focus: 'false'
options:
automatic-rename: 'on'
panes:
- shell_command:
- cd /Users/steven.knight/src/dotfiles
|
Update redis-server port number to the default for travis.org. | default_connection: redis
connections:
redis:
test:
adapter: redis
host: localhost
port: 4000
| default_connection: redis
connections:
redis:
test:
adapter: redis
host: localhost
port: 6379
|
Update Notes to 1.1 (2) | Categories:
- Science & Education
License: GPL-3.0-only
SourceCode: https://codeberg.org/jonas-l/musical-notes-android
IssueTracker: https://codeberg.org/jonas-l/musical-notes-android/issues
AutoName: Musical Notes
RepoType: git
Repo: https://codeberg.org/jonas-l/musical-notes-android.git
Builds:
- versionName: ... | Categories:
- Science & Education
License: GPL-3.0-only
SourceCode: https://codeberg.org/jonas-l/musical-notes-android
IssueTracker: https://codeberg.org/jonas-l/musical-notes-android/issues
AutoName: Notes
RepoType: git
Repo: https://codeberg.org/jonas-l/musical-notes-android.git
Builds:
- versionName: '1.0'
... |
Update CV of Timber${appNameSuffix} to 1.6 (20) | Categories:
- Multimedia
License: GPL-3.0-or-later
SourceCode: https://github.com/fabmazz/Timber
IssueTracker: https://github.com/fabmazz/Timber/issues
Summary: Material Design Music Player
Description: |-
This app has been developed by naman14 and had been removed from F-Droid
because of non-free dependenci... | Categories:
- Multimedia
License: GPL-3.0-or-later
SourceCode: https://github.com/fabmazz/Timber
IssueTracker: https://github.com/fabmazz/Timber/issues
AutoName: Timber${appNameSuffix}
Summary: Material Design Music Player
Description: |-
This app has been developed by naman14 and had been removed from F-Droid
... |
Switch to testing via Travis CI on c5 machines | ---
driver:
name: ec2
aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %>
security_group_ids:
- ci-testing
instance_type: c3.large
interface: public
tags:
Env: public
Type: test
created-by: test-kitchen
Operator: <%= ENV['USER'] %>
transport:
name: sftp
ssh_key: <%= ENV['EC2_SSH_KEY_PATH... | ---
driver:
name: ec2
aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %>
security_group_ids:
- ci-testing
instance_type: c5.large
interface: public
tags:
Env: public
Type: test
created-by: test-kitchen
Operator: <%= ENV['USER'] %>
transport:
name: sftp
ssh_key: <%= ENV['EC2_SSH_KEY_PATH... |
Update from Hackage at 2016-03-09T00:20:50+0000 | homepage: https://github.com/Teaspot-Studio/gore-and-ash
changelog-type: ''
hash: f5f3d33b03349f99a1786602e2042b46196cb39ae044e48fa3bbce028b837051
test-bench-deps: {}
maintainer: ncrashed@gmail.com
synopsis: Core of FRP game engine called Gore&Ash
changelog: ''
basic-deps:
exceptions: ! '>=0.8.0.2'
base: ! '>=4.7 &... | homepage: https://github.com/Teaspot-Studio/gore-and-ash
changelog-type: ''
hash: ebbece87308317fdc83a6ecf1737ff3ebc2c716378af862ac1e45e9a5689c624
test-bench-deps: {}
maintainer: ncrashed@gmail.com
synopsis: Core of FRP game engine called Gore&Ash
changelog: ''
basic-deps:
exceptions: ! '>=0.8.0.2'
base: ! '>=4.7 &... |
Update from Hackage at 2017-04-16T19:54:48Z | homepage: https://github.com/minad/wl-pprint-console#readme
changelog-type: ''
hash: 673ab31afef9ea36533c11b315bbd58dde28ffbbecf09b7646735ceb8b008844
test-bench-deps: {}
maintainer: Daniel Mendler <mail@daniel-mendler.de>
synopsis: Wadler/Leijen pretty printer supporting colorful console output.
changelog: ''
basic-dep... | homepage: https://github.com/minad/wl-pprint-console#readme
changelog-type: ''
hash: 45b92029f969643191e9902ad781b63781d80ea857bb8d7f9763c35aa6948bd6
test-bench-deps: {}
maintainer: Daniel Mendler <mail@daniel-mendler.de>
synopsis: Wadler/Leijen pretty printer supporting colorful console output.
changelog: ''
basic-dep... |
Add task to upgrade bash | ---
- name: install libselinux-python to handle files
sudo: yes
yum:
name: libselinux-python
state: latest
- name: update OpenSSL to avoid Heartbleed
sudo: yes
yum:
name: openssl-1.0.1e-30.el6_6.2.x86_64
state: present
| ---
- name: install libselinux-python to handle files
sudo: yes
yum:
name: libselinux-python
state: latest
- name: update OpenSSL to avoid Heartbleed
sudo: yes
yum:
name: openssl-1.0.1e-30.el6_6.2.x86_64
state: present
- name: update bash to avoid Shellshock
sudo: yes
yum:
name: bash-4... |
Add support for responsive asset uploads | backend:
name: github
repo: simonyiszk/mvk-web
branch: master
media_folder: static/images/uploads
public_folder: /images/uploads
collections:
- name: news
label: News
folder: src/pages/news
create: true
slug: "{{year}}-{{month}}-{{day}}-{{slug}}"
fields:
- {label: "Title", name: "title... | backend:
name: github
repo: simonyiszk/mvk-web
branch: master
media_folder: src/assets/uploads
public_folder: /assets/uploads
collections:
- name: news
label: News
folder: src/pages/news
create: true
slug: "{{year}}-{{month}}-{{day}}-{{slug}}"
fields:
- {label: "Title", name: "title", ... |
Update from Hackage at 2021-11-23T00:30:36Z | homepage: ''
changelog-type: ''
hash: 732e60572a352de3387b2bc809db10a99b6b30e73d80b81233aedb62c9a03101
test-bench-deps:
base: -any
filepath: -any
hls-test-utils: '>=1.0 && <1.2'
hls-rename-plugin: -any
maintainer: madine.oliver@gmail.com
synopsis: Rename plugin for Haskell Language Server
changelog: ''
basic-de... | homepage: ''
changelog-type: ''
hash: d815063deae2cb0ef84ab7a82d7e09b3fbe3d9c94db9bb43e59b0e533e2e78a4
test-bench-deps:
base: -any
filepath: -any
hls-test-utils: '>=1.0 && <1.2'
hls-rename-plugin: -any
maintainer: madine.oliver@gmail.com
synopsis: Rename plugin for Haskell Language Server
changelog: ''
basic-de... |
Add semicolon error rule for eslint | ecmaVersion: 6
extends: airbnb
installedESLint: true
plugins:
- react
- jsx-a11y
- import
globals:
atom: true
| env:
es6: true
node: true
extends: 'eslint:recommended'
globals:
atom: true
rules:
semi:
- error
- always
|
Add 6 cells to London, bringing it to 102 | ---
uaa_instances: 3
nats_instances: 3
diego_api_instances: 3
cell_instances: 96
router_instances: 15
api_instances: 12
doppler_instances: 39
log_api_instances: 18
scheduler_instances: 4
cc_worker_instances: 4
cc_hourly_rate_limit: 20000
cc_staging_timeout_in_seconds: 2700
paas_region_name: london
prometheus_disk_size... | ---
uaa_instances: 3
nats_instances: 3
diego_api_instances: 3
cell_instances: 102
router_instances: 15
api_instances: 12
doppler_instances: 39
log_api_instances: 18
scheduler_instances: 4
cc_worker_instances: 4
cc_hourly_rate_limit: 20000
cc_staging_timeout_in_seconds: 2700
paas_region_name: london
prometheus_disk_siz... |
Add code coverage for Scrutinizer | build:
dependencies:
before:
- find . -delete
- git clone https://github.com/octobercms/october.git .
- composer self-update
- composer install --no-interaction --prefer-source
- mkdir -p ./plugins/vojtasvoboda/cnbrates
- cd plugins/voj... | build:
dependencies:
before:
- find . -delete
- git clone https://github.com/octobercms/october.git .
- composer self-update
- composer install --no-interaction --prefer-source
- mkdir -p ./plugins/vojtasvoboda/cnbrates
- cd plugins/voj... |
Add post request for prebuild action | name: Create Prebuild
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
createPrebuild:
runs-on: ubuntu-latest
steps:
- id: create-prebuild-production
run: |
$splat = @{
ErrorAction = 'Stop'
Uri = 'https://api.github.com/vscs_internal/user/vsco... | name: Create Prebuild
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
createPrebuild:
runs-on: ubuntu-latest
steps:
- id: create-prebuild-production
run: |
$splat = @{
ErrorAction = 'Stop'
Uri = 'https://api.github.com/vscs_internal/user/vsco... |
Update from Hackage at 2016-12-10T11:40:11Z | homepage: https://github.com/ciez/conf-json
changelog-type: markdown
hash: d91d00eae3cb78d2afed77c013ebc8dc7f185b2bfa2d12cc0cd0ea6f1531c1cd
test-bench-deps:
bytestring: -any
base: ! '>=4.8'
hspec: ! '>=2.1.7'
conf-json: -any
binary: -any
QuickCheck: ! '>=2.8.1'
aeson: -any
directory: -any
maintainer: Im... | homepage: https://github.com/ciez/conf-json
changelog-type: markdown
hash: c72972481be53c7bd4eab25246d5872051d1e05414842c34c372230ffb9fa499
test-bench-deps:
bytestring: -any
base: ! '>=4.8'
hspec: ! '>=2.1.7'
conf-json: -any
binary: -any
QuickCheck: ! '>=2.8.1'
aeson: -any
directory: -any
maintainer: Im... |
Update from Hackage at 2016-10-11T05:07:06+00:00 | homepage: http://github.com/slpopejoy/fadno-xml
changelog-type: ''
hash: 2000963acf6517eda8ba494256fcff9483c7ea8f35375b0f7680104253571899
test-bench-deps: {}
maintainer: spopejoy@panix.com
synopsis: XML/XSD combinators/schemas/codegen
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
parsec: ! '>=3.1.9 && <3.2'
x... | homepage: http://github.com/slpopejoy/fadno-xml
changelog-type: ''
hash: b4667ae58a0b84cdf5588657ad73218ac7023be4401e2bf1590184ae0e82ffa7
test-bench-deps: {}
maintainer: spopejoy@panix.com
synopsis: XML/XSD combinators/schemas/codegen
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.10'
parsec: ! '>=3.1.9 && <3.2'
... |
Update Powershell to latest binary name and syntax | - name: Install Microsoft .NET Core
homebrew_cask: name=dotnet
- name: Install Microsoft PowerShell
homebrew_cask: name=powershell
- name: Azure RM NetCore Module Install
command: powershell Install-Module AzureRM.NetCore.Preview -Force -Scope CurrentUser
- name: Azure RM NetCore Module Import
command: power... | - name: Install Microsoft .NET Core
homebrew_cask: name=dotnet
- name: Install Microsoft PowerShell
homebrew_cask: name=powershell
- name: Install Rollup Module for ARM Cmdlets
command: pwsh -c "{Install-Module AzureRM}"
- name: Import Rollup Module for ARM Cmdlets
command: pwsh -c "{Import-Module AzureRM}"
... |
Fix twig extension class name | services:
# Search Engine
iakumai.sphinxsearch.search:
class: %iakumai.sphinxsearch.search.class%
file: %iakumai.sphinxsearch.sphinx_api.file%
arguments:
- %iakumai.sphinxsearch.searchd.host%
- %iakumai.sphinxsearch.searchd.port%
- %iakumai.sphinxsearc... | services:
# Search Engine
iakumai.sphinxsearch.search:
class: %iakumai.sphinxsearch.search.class%
file: %iakumai.sphinxsearch.sphinx_api.file%
arguments:
- %iakumai.sphinxsearch.searchd.host%
- %iakumai.sphinxsearch.searchd.port%
- %iakumai.sphinxsearc... |
Update CV of FakeGapps to 1.1 (2) | Categories:
- System
License: GPL-3.0-only
SourceCode: https://github.com/thermatk/FakeGApps
IssueTracker: https://github.com/thermatk/FakeGApps/issues
Changelog: https://github.com/thermatk/FakeGApps/releases
LiberapayID: '27901'
AutoName: FakeGapps
Description: |-
'''XPosed Module''', get [[de.robv.android.xpo... | Categories:
- System
License: GPL-3.0-only
SourceCode: https://github.com/thermatk/FakeGApps
IssueTracker: https://github.com/thermatk/FakeGApps/issues
Changelog: https://github.com/thermatk/FakeGApps/releases
LiberapayID: '27901'
AutoName: FakeGapps
Description: |-
'''XPosed Module''', get [[de.robv.android.xpo... |
Revert to use latest MR release | version: '3.6'
services:
cocoa-maze-runner:
image: 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner:add-more-devices-cli
command: ["--tags", "not @skip"]
environment:
APP_LOCATION: /app/build/iOSTestApp.ipa
BROWSER_STACK_USERNAME:
BROWSER_STACK_ACCESS_KEY:
BROWSER_STACK_LOC... | version: '3.6'
services:
cocoa-maze-runner:
image: 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner:latest-v2-cli
command: ["--tags", "not @skip"]
environment:
APP_LOCATION: /app/build/iOSTestApp.ipa
BROWSER_STACK_USERNAME:
BROWSER_STACK_ACCESS_KEY:
BROWSER_STACK_LOCAL_IDEN... |
Update from Hackage at 2019-05-20T20:46:49Z | homepage: http://hspec.github.io/
changelog-type: ''
hash: d41ebaf2f80c6ae149a944cd77e31fce98c0eea45cf47a561c5c25d48e03107f
test-bench-deps: {}
maintainer: Simon Hengel <sol@typeful.net>
synopsis: Alpha version of Hspec 2.0
changelog: ''
basic-deps:
base: ==4.*
hspec: ==2.*
hspec-discover: ==2.*
all-versions:
- 0... | homepage: http://hspec.github.io/
changelog-type: ''
hash: 7200bea6db0946b6e101646426710aa22e4a2998c2b128d340f0c4f95ee017e0
test-bench-deps: {}
maintainer: Simon Hengel <sol@typeful.net>
synopsis: Alpha version of Hspec 2.0
changelog: ''
basic-deps:
base: ==4.*
hspec: ! '>=2 && <2.6'
hspec-discover: ==2.*
all-ver... |
Fix line ending to be unix instead of dos | ---
# Copyright 2015, Jean-Philippe Evrard <jean-philippe@evrard.me>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless req... | ---
# Copyright 2015, Jean-Philippe Evrard <jean-philippe@evrard.me>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by ... |
Improve the example config yaml. | ---
daemonize: false
pidfile: ~/.cognizant/cognizantd.pid
logfile: ~/.cognizant/cognizantd.log
socket: ~/.cognizant/cognizantd.sock
pids_dir: ~/.cognizant/pids/
logs_dir: ~/.cognizant/logs/
monitor: {
redis-server-1: {
start_command: /usr/local/bin/redis-server -,
start_with_input: "daemonize no\nport 6666",... | ---
daemonize: false
pidfile: ~/.cognizant/cognizantd.pid
logfile: ~/.cognizant/cognizantd.log
socket: ~/.cognizant/cognizantd.sock
pids_dir: ~/.cognizant/pids/
logs_dir: ~/.cognizant/logs/
monitor: {
redis-server-1: {
group: redis,
start_command: /usr/local/bin/redis-server -,
start_with_input: "daemoni... |
Update from Hackage at 2018-04-14T05:09:38Z | homepage: ''
changelog-type: ''
hash: 67b2dede49482e2765d1248d23f7271884f1cc9cff8a41f40d5dedcfd23c47ba
test-bench-deps: {}
maintainer: Bardur Arantsson <bardur@scientician.net>
synopsis: Data.Pool generalized to MonadUnliftIO.
changelog: ''
basic-deps:
base: ! '>=4.10 && <4.11'
time: ! '>=1.8 && <2'
resource-pool... | homepage: ''
changelog-type: ''
hash: c822807443ddcc21f4fd233e642f2e8c89b67842268844bddf9d04df86585df9
test-bench-deps: {}
maintainer: Bardur Arantsson <bardur@scientician.net>
synopsis: Data.Pool generalized to MonadUnliftIO.
changelog: ''
basic-deps:
base: ! '>=4.10 && <4.11'
time: ! '>=1.8 && <2'
resource-pool... |
Add make test to circleci | # CircleCI 2.0 configuration file. See <https://circleci.com/docs/2.0/language-python/>.
version: 2
jobs:
build:
docker:
- image: python:3.7
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "requirements.txt" }}
- run:
name: Create a virtualenv... | # CircleCI 2.0 configuration file. See <https://circleci.com/docs/2.0/language-python/>.
version: 2
jobs:
build:
docker:
- image: python:3.7
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "requirements.txt" }}
- run:
name: Create a virtualenv... |
Update to latest versions of GitHub actions | name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy2", "pypy3"]
steps:
- uses: actions/checkout@v2
- name: Use Python ${{ ... | name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy2.7", "pypy3.9"]
steps:
- uses: actions/checkout@v3
- name: Use Python ... |
Use a stable URL for jetty. | ---
jetty_version: '9.3.8.v20160314'
jetty_basename: 'jetty-distribution-{{ jetty_version }}'
jetty_filename: '{{ jetty_basename }}.tar.gz'
jetty_mirror: 'http://ftp.acc.umu.se/mirror/eclipse.org/jetty/stable-9/dist/{{ jetty_filename }}'
jetty_checksum: 'fc4136c0abf8f86d99de1b11b3d2323bffda0d538a0f654bf741f5e84ea992bf'... | ---
jetty_version: '9.3.8.v20160314'
jetty_basename: 'jetty-distribution-{{ jetty_version }}'
jetty_filename: '{{ jetty_basename }}.tar.gz'
jetty_mirror: 'http://ftp.acc.umu.se/mirror/eclipse.org/jetty/{{ jetty_version }}/dist/{{ jetty_filename }}'
jetty_checksum: 'fc4136c0abf8f86d99de1b11b3d2323bffda0d538a0f654bf741f5... |
Fix bliss-automorphism license SPDX identifier | {% set version = "0.73.1" %}
package:
name: bliss-automorphism
version: {{ version }}
source:
url: https://github.com/ds4dm/Bliss/archive/v{{ version }}.tar.gz
sha256: 59425cf35d8da7db61e73674edb97bded0767485a24aa33836a1f3c08a017695
build:
number: 0
skip: True # [win]
requirements:
build: &build-requ... | {% set version = "0.73.1" %}
package:
name: bliss-automorphism
version: {{ version }}
source:
url: https://github.com/ds4dm/Bliss/archive/v{{ version }}.tar.gz
sha256: 59425cf35d8da7db61e73674edb97bded0767485a24aa33836a1f3c08a017695
build:
number: 0
skip: True # [win]
requirements:
build: &build-requ... |
Tidy up, just copy from the version folder in /usr/share instead of copying across the folder itself, just cleaner | ---
- include: redhat.yml
when: ansible_os_family == "RedHat"
- include: debian.yml
when: ansible_os_family == "Debian"
- name: make easy-rsa directory
file: path=/etc/easy-rsa state=directory mode=0770
tags:
- ca
- name: copy across easy-rsa scripts to our new home
command: cp -r /usr/share/easy-rsa/... | ---
- include: redhat.yml
when: ansible_os_family == "RedHat"
- include: debian.yml
when: ansible_os_family == "Debian"
- name: make easy-rsa directory
file: path=/etc/easy-rsa state=directory mode=0770
register: easy_rsa_dir
tags:
- ca
- name: copy across easy-rsa scripts to our new home
command: "... |
Add scikit-image to python39 test matrix | name: glymur
channels:
- conda-forge
dependencies:
- python=3.9.*
- gdal
- lxml
- numpy
- openjpeg
| name: glymur
channels:
- conda-forge
dependencies:
- python=3.9.*
- gdal
- lxml
- numpy
- openjpeg
- scikit-image
|
Add node v16 to CI environments | name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 12, 14]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@master
- name: Use Node.js
uses: actions/setup-... | name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [10, 12, 14, 16]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@master
- name: Use Node.js
uses: actions/se... |
Update from Hackage at 2017-11-03T04:04:03Z | homepage: https://github.com/schell/gelatin
changelog-type: ''
hash: 8605a20120555f89822c577ef016f29fc88176a11b103b299f6c610d567b0f70
test-bench-deps: {}
maintainer: schell@takt.com
synopsis: A graphics description language.
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
base: ! '>=4.8 && <4.11'
contai... | homepage: https://github.com/schell/gelatin
changelog-type: ''
hash: 46c06c15fb2e61e5b741b9e9f8106d7018a2a98d04456fbe131d317394a7abd6
test-bench-deps: {}
maintainer: schell@takt.com
synopsis: A graphics description language.
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.11'
base: ! '>=4.8 && <4.11'
contai... |
Update from Hackage at 2021-12-25T16:53:00Z | homepage: https://github.com/emilaxelsson/hzenity
changelog-type: ''
hash: 5bf5c289a9c25b9fa07471e32409020d784f2cba7bc6eb23e204b5f1b6fa6785
test-bench-deps: {}
maintainer: 78emil@gmail.com
synopsis: Haskell interface to Zenity dialogs
changelog: ''
basic-deps:
process-extras: <0.8
base: <5
time: <1.12
text: <1.... | homepage: https://github.com/emilaxelsson/hzenity
changelog-type: ''
hash: 394b5ce16c22cd43fadaa6043a3c41122ebf7c2ae84dc34ca23506d54f284f27
test-bench-deps: {}
maintainer: 78emil@gmail.com
synopsis: Haskell interface to Zenity dialogs
changelog: ''
basic-deps:
process-extras: <0.8
base: <5
time: <1.13
text: <2.... |
Add redirect for elasticsearch page | dictionary.html: manual/dictionary.html
guides.html: manual.html
opsmanual.html: manual.html
opsmanual/ab_testing.html: manual/ab-testing.html
opsmanual/content-preview.html: manual/content-preview.html
opsmanual/dictionary.html: manual/dictionary.html
opsmanual/emergency-publishing.html: manual/emergency-publishing.ht... | dictionary.html: manual/dictionary.html
guides.html: manual.html
opsmanual.html: manual.html
opsmanual/ab_testing.html: manual/ab-testing.html
opsmanual/content-preview.html: manual/content-preview.html
opsmanual/dictionary.html: manual/dictionary.html
opsmanual/emergency-publishing.html: manual/emergency-publishing.ht... |
Update from Hackage at 2022-05-03T12:47:24Z | homepage: https://github.com/unfoldml/jsonl
changelog-type: ''
hash: 17ee5a0628d645e1ab11b333c27ae8fca757ad83cf25b87a6b89940b29636cc6
test-bench-deps:
jsonl-conduit: -any
bytestring: -any
base: -any
hspec: -any
conduit: -any
aeson: -any
maintainer: UnfoldML AB
synopsis: Conduit interface to JSONL-encoded da... | homepage: https://github.com/unfoldml/jsonl
changelog-type: ''
hash: 86bd3bee1fb164a570632698b50bc36997f46b38637766026576d0fbf26717a9
test-bench-deps:
jsonl-conduit: -any
bytestring: -any
base: -any
hspec: -any
conduit: -any
aeson: -any
maintainer: UnfoldML AB
synopsis: Conduit interface to JSONL-encoded da... |
Add simple and secure digest example and test. | repo_token: 8gupj6GxIYn1FB8t6zKorniVFWBphtrAK
| repo_token: S7oV6cDGukMKQDOYQLj09cnLIGINHX5YB
|
Build with Node.js 16 on GitHub Actions. | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,15.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-ver... | name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x,14.x,16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-ver... |
Add workflow to save e2e test artifacts | name: e2e-tests
on:
push:
branches:
- master
pull_request:
jobs:
run-e2e-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: make -f x.mk e2e-local NODES=2
| name: e2e-tests
on:
push:
branches:
- master
pull_request:
jobs:
run-e2e-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: make -f x.mk e2e-local NODES=2 JUNIT_DIRECTORY=./artifacts/
- name: Archive production artifacts # test results are only uploaded if ... |
Update npm to 3.6.0 before running npm install | ---
- command: bower install chdir={{ project_dir }} --allow-root
- composer: working_dir={{ project_dir }}
- npm: path={{ project_dir }}
- npm: path={{ project_dir }}/api
- git:
repo=https://github.com/YOURLS/YOURLS.git
dest=/home/{{ user }}/modsn.us
version=1.5.1
accept_hostkey=yes
- git:
repo=htt... | ---
- command: bower install chdir={{ project_dir }} --allow-root
- composer: working_dir={{ project_dir }}
- npm: name=npm version=3.6.0 global=yes
- npm: path={{ project_dir }}
- npm: path={{ project_dir }}/api
- git:
repo=https://github.com/YOURLS/YOURLS.git
dest=/home/{{ user }}/modsn.us
version=1.5.1
... |
Migrate API version to latest | ---
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: {{ .Values.name }}
labels:
app: {{ .Values.name }}
namespace: {{ .Values.namespace }}
spec:
replicas: {{ .Values.replicas }}
selector:
matchLabels:
app: {{ .Values.name }}
template:
metadata:
annotations:
iam... | ---
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ .Values.name }}
labels:
app: {{ .Values.name }}
namespace: {{ .Values.namespace }}
spec:
replicas: {{ .Values.replicas }}
selector:
matchLabels:
app: {{ .Values.name }}
template:
metadata:
annotations:
iam.amazonaws.... |
Add obake as an explicit dep. | {% set version = "1.3" %}
package:
name: dcgp-python
version: {{ version }}
source:
url: https://github.com/darioizzo/dcgp/archive/v{{ version }}.tar.gz
sha256: 85c5318cdb514dcd3fc91ba45b9f112bdd4c0a321c311b7b6bd115cf7d03f294
build:
number: 0
skip: true # [(win and py<35)]
requirements:
build:
- ... | {% set version = "1.3" %}
package:
name: dcgp-python
version: {{ version }}
source:
url: https://github.com/darioizzo/dcgp/archive/v{{ version }}.tar.gz
sha256: 85c5318cdb514dcd3fc91ba45b9f112bdd4c0a321c311b7b6bd115cf7d03f294
build:
number: 0
skip: true # [(win and py<35)]
requirements:
build:
- ... |
Move cask to optional roles. | ---
- name: core roles
hosts: all
roles:
- bootstrap
- cask
- tmux
- vim
- zsh
- name: optional roles
hosts: all
roles:
- heroku
- mongodb
- node
- osx
- postgresql
- ruby
- shell
#- drupal
vars:
# Uncomment the cask variable and any apps you would li... | ---
- name: core roles
hosts: all
roles:
- bootstrap
- tmux
- vim
- zsh
- name: optional roles
hosts: all
roles:
- cask
- heroku
- mongodb
- node
- osx
- postgresql
- ruby
- shell
#- drupal
vars:
# Uncomment the cask variable and any apps you would li... |
Fix indentation in Dependabot config file | version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: weekly
time: "03:00"
open-pull-requests-limit: 10
allow:
- dependency-type: production
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: weekly
time: "03:00"
ignored_updates:
- match:
... | version: 2
updates:
- package-ecosystem: pip
directory: "/"
schedule:
interval: weekly
time: "03:00"
open-pull-requests-limit: 10
allow:
- dependency-type: production
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: weekly
time: "03:00"
ignored_updates:
- match:
... |
Use workflow from docker repo | name: release
on:
push:
branches:
- master
workflow_dispatch:
jobs:
dockerhub:
uses: akilli/workflow/.github/workflows/dockerhub.yml@master
secrets: inherit
| name: release
on:
push:
branches:
- master
workflow_dispatch:
jobs:
dockerhub:
uses: akilli/docker/.github/workflows/dockerhub.yml@master
secrets: inherit
|
Use minimum 1 ngram (ie: for Gantz O) | ---
settings:
analysis:
analyzer:
# Don't use ngram for search otherwise 'horribleexample' would match
# 'horriblesubs'
nyaapantsu_search_analyzer:
tokenizer: standard
filter:
- standard
- lowercase
char_filter:
- dash_to_underscore
ny... | ---
settings:
analysis:
analyzer:
# Don't use ngram for search otherwise 'horribleexample' would match
# 'horriblesubs'
nyaapantsu_search_analyzer:
tokenizer: standard
filter:
- standard
- lowercase
char_filter:
- dash_to_underscore
ny... |
Set default menu adaptor priorities enabled bundle order doesn't matter | parameters:
kunstmaan_user_management.user_admin_list_configurator.class: Kunstmaan\UserManagementBundle\AdminList\UserAdminListConfigurator
kunstmaan_user_management.menu.adaptor.class: Kunstmaan\UserManagementBundle\Helper\Menu\UserManagementMenuAdaptor
services:
kunstmaan_user_management.menu.adaptor:
... | parameters:
kunstmaan_user_management.user_admin_list_configurator.class: Kunstmaan\UserManagementBundle\AdminList\UserAdminListConfigurator
kunstmaan_user_management.menu.adaptor.class: Kunstmaan\UserManagementBundle\Helper\Menu\UserManagementMenuAdaptor
services:
kunstmaan_user_management.menu.adaptor:
... |
Remove trailing whitespace for lint | ---
- include: go-server.yml
- include: server-config.yml
when: GOCD_CONFIGURE
| ---
- include: go-server.yml
- include: server-config.yml
when: GOCD_CONFIGURE
|
Use explicit Q-specific options in DataPartialsTest | en-GB:
flow:
data-partial-sample:
| en-GB:
flow:
data-partial-sample:
what_are_you_testing?:
options:
data_partial_with_scalar: 'Data partial with scalar'
data_partial_with_array: 'Data partial with array'
|
Revert "corrected stacks mount path for python service" | version: '3'
services:
andes:
image: obitech/andes:latest
expose:
- "5000"
- "5001"
volumes:
- "./system/api/data:/andes/system/api/data"
- "./stacks:/andes/stacks"
networks:
andes_default:
ipv4_address: 172.42.0.2
restart: always
web:
cap_add:
- N... | version: '3'
services:
andes:
image: obitech/andes:latest
expose:
- "5000"
- "5001"
volumes:
- "./system/api/data:/andes/api/data"
- "./stacks:/andes/stacks"
networks:
andes_default:
ipv4_address: 172.42.0.2
restart: always
web:
cap_add:
- NET_ADMI... |
Add app, use .env, specifiy cmd to bin/application | worker:
build: .
env_file: .env.compose
links:
- db
db:
image: postgres
env_file: .env.compose
ports:
- "5432:5432"
| app:
build: .
volumes:
- .:/app
env_file:
- .env
links:
- db
ports:
- "3000:3000"
command: web
environment:
VIRTUAL_HOST: crier.docker
worker:
image: crierprxorg_app
volumes:
- .:/app
env_file:
- .env
links:
- db
command: worker
db:
image: postgres
env_file:
... |
Update from Hackage at 2019-01-09T15:00:35Z | homepage: https://github.com/purebred-mua/hs-notmuch
changelog-type: ''
hash: ddcf6c1d7b91acd6b35af7f97bd9b7f5695302b8061e908fd96169fa7e699afd
test-bench-deps: {}
maintainer: frase@frase.id.au
synopsis: Haskell binding to Notmuch, the mail indexer
changelog: ''
basic-deps:
bytestring: ==0.10.*
base: ! '>=4.9 && <5'... | homepage: https://github.com/purebred-mua/hs-notmuch
changelog-type: ''
hash: b3d1f8ce16eaf09c848b539517e2b9a6dcc24b2bc0fc758133ce695071f868e2
test-bench-deps: {}
maintainer: frase@frase.id.au
synopsis: Haskell binding to Notmuch, the mail indexer
changelog: ''
basic-deps:
bytestring: ==0.10.*
base: ! '>=4.9 && <5'... |
Update docs and tests for /eureka path | debug: true
spring:
application:
name: eureka
management:
context-path: /admin
eureka:
server:
waitTimeInMsWhenSyncEmpty: 1000
client:
serviceUrl:
defaultZone: http://localhost:8080/v2/
default.defaultZone: http://localhost:8080/v2/
registerWithEureka: false
fetchRegistry: false | debug: true
spring:
application:
name: eureka
management:
context-path: /admin
eureka:
server:
waitTimeInMsWhenSyncEmpty: 1000
client:
serviceUrl:
defaultZone: http://localhost:8080/eureka/api/
default.defaultZone: http://localhost:8080/eureka/api/
registerWithEureka: false
fetch... |
Configure Travis to update SwiftLint | language: objective-c
osx_image: xcode9
jobs:
include:
# testing
- script: xcodebuild -workspace Vienna.xcworkspace -scheme Vienna test | xcpretty
# linting
- before_script: swiftlint version
script: swiftlint --lenient --reporter emoji
notifications:
slack:
rooms:
- secure: G/L2f... | language: objective-c
osx_image: xcode9
jobs:
include:
# testing
- script: xcodebuild -workspace Vienna.xcworkspace -scheme Vienna test | xcpretty
# linting
- before_script:
- brew outdated swiftlint || brew upgrade swiftlint
- swiftlint version
script: swiftlint --lenient --re... |
Fix Travis error invalid ELF header on node 0.10 | language: node_js
node_js:
- "0.10"
- "4.2"
before_install:
- "sudo apt-get update"
- "sudo apt-get install zookeeperd"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
| language: node_js
node_js:
- "0.10"
- "4.2"
before_install:
- sudo apt-get update
- sudo apt-get install zookeeperd
- npm -g install npm@latest-2
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
|
Use xvfb to emulate gui in tests | language: node_js
os:
- linux
dist: xenial
node_js:
- node
addons:
apt:
packages:
- xvfb
before_script:
- export DISPLAY=':99.0'
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- sleep 3
cache:
directories:
- node_modules
branches:
only:
- master
| language: node_js
os:
- linux
dist: xenial
node_js:
- node
services:
- xvfb
script: xvfb-run --server-args="-screen 0 1024x768x24" make test
cache:
directories:
- node_modules
branches:
only:
- master
|
Add Node v4 to CI suite to check backward compatibility | # Travis CI config
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/migrating-from-legacy/
dist: trusty
sudo: false
language: node_js
matrix:
include:
- node_js: 6
- node_js: 8
- node_js: 10
scr... | # Travis CI config
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
# https://docs.travis-ci.com/user/customizing-the-build/
# https://docs.travis-ci.com/user/migrating-from-legacy/
dist: trusty
sudo: false
language: node_js
matrix:
include:
- node_js: 4
- node_js: 6
- node_js: 8
-... |
Remove PHP version 5.2 from Travis builds | language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- 5.2
- hhvm
| language: php
php:
- 5.6
- 5.5
- 5.4
- 5.3
- hhvm
|
Revert to default Ubuntu distro. | language: php
dist: trusty
php:
- '5.6'
- '7.0'
- nightly
install:
- composer update | language: php
php:
- '5.6'
- '7.0'
- nightly
install:
- composer update |
Update Travis config to add python endpoints | dist: xenial
language: python
python:
- 2.7
- 3.5
install:
- pip install -r "pip_reqs.txt"
# - python setup.py install
script:
- python -m pytest tests/test_libnotify.py
after_success:
- coverage run src/libnotify_terminal.py
- coverage xml
- python-codacy-coverage | os: linux
dist: xenial
language: python
python:
- 2.7
- 3.5
before_install:
- sudo apt-get install python-gi python3-gi python-dbus python3-dbus
install:
- pip install -r "pip_reqs.txt"
# - python setup.py install
script:
- python -m pytest tests/test_libnotify.py
after_success:
- coverage run src/libn... |
Remove OS X workers from CI build matrix | notifications:
email:
on_success: never
on_failure: change
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
git:
depth: 10
sudo: false
os:
- linux
- osx
env:
global:
- APM_TEST_PACKAGES=""
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
ad... | notifications:
email:
on_success: never
on_failure: change
script: 'curl -s https://raw.githubusercontent.com/atom/ci/master/build-package.sh | sh'
git:
depth: 10
sudo: false
os:
- linux
#- osx
env:
global:
- APM_TEST_PACKAGES=""
matrix:
- ATOM_CHANNEL=stable
- ATOM_CHANNEL=beta
a... |
Drop organization name in Travis build | language: java
jdk:
- oraclejdk8
script:
- mvn clean jacoco:prepare-agent install sonar:sonar -P quality
addons:
sonarqube:
organization: cereebro
branches:
- master
| language: java
jdk:
- oraclejdk8
script:
- mvn clean jacoco:prepare-agent install sonar:sonar -P quality
addons:
sonarqube:
branches:
- master
|
Raise min ruby version to 2.2.2 | language: ruby
rvm:
- 2.1.2
before_install: gem install bundler -v 1.11.2
addons:
code_climate:
repo_token: 0b8e41ecbc26637a7db4e6e9d4581c445441674f689016ab45fb5c51242b59bf
after_success:
- bundle exec codeclimate-test-reporter | language: ruby
rvm:
- 2.2.2
before_install: gem install bundler -v 1.11.2
addons:
code_climate:
repo_token: 0b8e41ecbc26637a7db4e6e9d4581c445441674f689016ab45fb5c51242b59bf
after_success:
- bundle exec codeclimate-test-reporter |
Install test requirements on Travis. | sudo: false
language: python
python:
- "2.7"
before_install:
- pip install codecov
install:
- python setup.py -q develop
- pip install -q psycopg2
before_script:
- psql -c 'create database modoboa_test;' -U postgres
script:
- python ./tests.py
- cd test_project
- coverage run --source ../modoboa ... | sudo: false
language: python
python:
- "2.7"
before_install:
- pip install codecov
install:
- python setup.py -q develop
- pip install -q psycopg2
- pip install -q -r test-requirements.txt
before_script:
- psql -c 'create database modoboa_test;' -U postgres
script:
- python ./tests.py
- cd test_p... |
Add different splunk versions to build matrix | sudo: required
services:
- docker
before_install:
- echo host=localhost >> $HOME/.splunkrc
- echo username=admin >> $HOME/.splunkrc
- echo password=changeme >> $HOME/.splunkrc
- export SPLUNK_HOME="/opt/splunk"
- docker pull adamryman/splunk-travis-ci:latest
- d... | sudo: required
services:
- docker
before_install:
- echo host=localhost >> $HOME/.splunkrc
- echo username=admin >> $HOME/.splunkrc
- echo password=changeme >> $HOME/.splunkrc
- export SPLUNK_HOME="/opt/splunk"
- docker pull adamryman/splunk-travis-ci:$SPLUNK_VERSION
... |
Add clang to the list of tested compilers | language: cpp
os:
- linux
dist: bionic
compiler:
- gcc
before_install:
- FASTORPATH=$(pwd)
- echo $FASTORPATH
install:
# build the tests
- cd ~
- cd $FASTORPATH/tests
- mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=Debug ../
- make -j2
script:
# Run the test suite
- cd ~
- cd $FASTO... | language: cpp
os:
- linux
dist: bionic
compiler:
- gcc
- clang
before_install:
- FASTORPATH=$(pwd)
- echo $FASTORPATH
install:
# build the tests
- cd ~
- cd $FASTORPATH/tests
- mkdir build && cd build
- cmake -DCMAKE_BUILD_TYPE=Debug ../
- make -j2
script:
# Run the test suite
- cd ~
-... |
Fix path to test build script | language: php
php:
- "5.5"
- "5.6"
- "7.0"
- "nightly"
sudo: false
install:
- travis_retry composer self-update && composer --version
- travis_retry composer update --prefer-dist --no-interaction
script:
- ant -keep-going
- test-compile.sh
# Hack to make things work again - we can not use a shallow... | language: php
php:
- "5.5"
- "5.6"
- "7.0"
- "nightly"
sudo: false
install:
- travis_retry composer self-update && composer --version
- travis_retry composer update --prefer-dist --no-interaction
script:
- ant -keep-going
- ./test-compile.sh
# Hack to make things work again - we can not use a shall... |
Test on rust 1.0.0, nightly, and beta | language: rust
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success: ! '[ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ]
&& echo ''<meta http-equiv=refresh content=0;url=conduit-static/index.html>'' >
target/doc/index.html && sudo pip install ghp-import && ghp-import -n ta... | language: rust
rust:
- 1.0.0
- beta
- nightly
sudo: false
script:
- cargo build --verbose
- cargo test --verbose
- cargo doc
after_success: |
[ $TRAVIS_BRANCH = master ] &&
[ $TRAVIS_PULL_REQUEST = false ] &&
[ $TRAVIS_RUST_VERSION = nightly ] &&
echo '<meta http-equiv=refresh content=0;url=conduit-... |
Test using newer Mono on a Mac | language: c
before_install:
- git submodule update --init --recursive
install:
- sudo apt-get install mono-devel mono-gmcs nunit-console
- mozroots --import --sync
- export EnableNuGetPackageRestore="true"
script:
- xbuild
- nunit-console -framework=4.0.30319.1 ./MaxMind.DB.Test/bin/Debug/MaxMind.DB.Test... | language: objective-c
before_install:
- wget http://download.mono-project.com/archive/3.2.3/macos-10-x86/MonoFramework-MDK-3.2.3.macos10.xamarin.x86.pkg
- sudo installer -pkg "MonoFramework-MDK-3.2.3.macos10.xamarin.x86.pkg" -target /
- export EnableNuGetPackageRestore="true"
- git submodule update --init --recurs... |
Update default provided stemcell for BOSH Lite | ---
deployment-name: cf-rabbitmq
stemcell-version: 3363.29
haproxy-instances: 2
rabbitmq-management-username: admin
rabbitmq-management-password: admin
rabbitmq-broker-username: broker
rabbitmq-broker-password: broker
haproxy-stats-username: haproxy
haproxy-stats-password: haproxy
use-native-clustering-formation:... | ---
deployment-name: cf-rabbitmq
stemcell-version: 3421.24
haproxy-instances: 2
rabbitmq-management-username: admin
rabbitmq-management-password: admin
rabbitmq-broker-username: broker
rabbitmq-broker-password: broker
haproxy-stats-username: haproxy
haproxy-stats-password: haproxy
use-native-clustering-formation:... |
Use two checksums to include yarn.lock | version: 2
jobs:
build:
working_directory: ~/mocha-suite
docker:
- image: kkarczmarczyk/node-yarn
steps:
- checkout
- restore_cache:
key: mocha-suite-{{ .Branch }}-{{ checksum "package.json" "yarn.lock" }}
- run:
name: Install
command: yarn
- sa... | version: 2
jobs:
build:
working_directory: ~/mocha-suite
docker:
- image: kkarczmarczyk/node-yarn
steps:
- checkout
- restore_cache:
key: mocha-suite-{{ .Branch }}-{{ checksum "package.json" }}-{{ checksum "yarn.lock" }}
- run:
name: Install
command: ... |
Use Ruby 2.4 on CI | version: 2
workflows:
version: 2
build:
jobs:
- build:
context: tuist
jobs:
build:
macos:
xcode: "10.2.0"
steps:
- checkout
- restore_cache:
keys:
- 1-gems-{{ checksum "Gemfile.lock" }}
- run:
name: Install Tools
command... | version: 2
workflows:
version: 2
build:
jobs:
- build:
context: tuist
jobs:
build:
macos:
xcode: "10.2.0"
steps:
- checkout
- restore_cache:
keys:
- 1-gems-{{ checksum "Gemfile.lock" }}
- run:
name: Set Ruby Version
comm... |
Add cache-control header to S3 assets |
machine:
node:
version: 8.9.3
dependencies:
pre:
- bash ./circleci/set-configs.sh
test:
override:
- npm run build
- npm run test
deployment:
production:
branch: deploy
commands:
- npm run build
- aws s3 sync build/ s3://cookbook-club-site/
|
machine:
node:
version: 8.9.3
dependencies:
pre:
- bash ./circleci/set-configs.sh
test:
override:
- npm run build
- npm run test
deployment:
production:
branch: deploy
commands:
- npm run build
- aws s3 sync build/ s3://cookbook-club-site/ --delete --cache-control max-age... |
Upgrade setuptools to install mock | machine:
services:
- docker
node:
version:
6.1.0
python:
version:
2.7.3
dependencies:
pre:
- pip install -r requirements_dev.txt
- pip install -r requirements.txt
- pip install pymongo==3.2.1
- make deps
cache_directories:
- node_modules/
- client/node_modules/
... | machine:
services:
- docker
node:
version:
6.1.0
python:
version:
2.7.3
dependencies:
pre:
- pip install --upgrade setuptools
- pip install -r requirements_dev.txt
- pip install -r requirements.txt
- pip install pymongo==3.2.1
- make deps
cache_directories:
- no... |
Change Facebook URLs to HTTPS | ---
- provider_name: YouTube
provider_url: http://www.youtube.com/
endpoints:
- url: http://www.youtube.com/oembed
discovery: true
example_urls:
- http://www.youtube.com/oembed?url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DiwGFalTRHDA
- http://www.youtube.com/oembed?url=http%3A%2F%2Fwww.youtube.c... | ---
- provider_name: YouTube
provider_url: https://www.youtube.com/
endpoints:
- url: https://www.youtube.com/oembed
discovery: true
example_urls:
- https://www.youtube.com/oembed?url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DiwGFalTRHDA
- https://www.youtube.com/oembed?url=http%3A%2F%2Fwww.youtu... |
Update from Hackage at 2018-05-11T15:24:12Z | homepage: ''
changelog-type: markdown
hash: 033b6a036356bc6edd836a3db7f1bb0a83f5fee7694066a80d1efbdb736bf827
test-bench-deps: {}
maintainer: alex@xn--wxa.email
synopsis: Nuxeo
changelog: ! '# Revision history for nuxeo
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
... | homepage: ''
changelog-type: markdown
hash: de6da942741d276ad4ef84eb0418a9f07791d61b871150bb7a660b21a8a30536
test-bench-deps: {}
maintainer: alex@xn--wxa.email
synopsis: Nuxeo
changelog: ! '# Revision history for nuxeo
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
... |
Fix BC break with WebPush library 1.4 | parameters:
minishlink_web_push.class: Minishlink\WebPush\WebPush
services:
minishlink_web_push:
class: '%minishlink_web_push.class%'
arguments: ['%minishlink_web_push.auth%', '%minishlink_web_push.default_options%', '%minishlink_web_push.timeout%', null]
calls:
- [setAutomaticPadding, ['%minishl... | parameters:
minishlink_web_push.class: Minishlink\WebPush\WebPush
services:
minishlink_web_push:
class: '%minishlink_web_push.class%'
arguments: ['%minishlink_web_push.auth%', '%minishlink_web_push.default_options%', '%minishlink_web_push.timeout%', []]
calls:
- [setAutomaticPadding, ['%minishlin... |
Work on the mail server | ---
- name: Install postfix
yum: name=postfix state=latest
- name: Allow smtp through the firewall
firewalld: port=smtp permanent=true state=enabled immediate=yes
| ---
- name: Install postfix
yum: name={{ item }} state=latest
with_items:
- postfix
- dovecot
- dovecot-msql
- name: Allow smtp through the firewall
firewalld: port=smtp permanent=true state=enabled immediate=yes
|
Update from Hackage at 2018-05-28T16:36:39Z | homepage: http://happstack.com
changelog-type: ''
hash: b1056aa4737cf713fba40c5e3e88116c2673cbc68de91ee91496b56a1836446f
test-bench-deps: {}
maintainer: Happstack team <happs@googlegroups.com>
synopsis: Efficient relational queries on Haskell sets.
changelog: ''
basic-deps:
base: ! '>=4 && <5'
syb: -any
container... | homepage: http://happstack.com
changelog-type: ''
hash: 160aeed9c855a247c599adf6a966ccd680f3dc7b2ca6145f2c4cbf062d2bb714
test-bench-deps:
Cabal: ! '>=1.10'
base: -any
ixset: -any
HUnit: -any
containers: -any
random: -any
QuickCheck: -any
maintainer: Happstack team <happs@googlegroups.com>
synopsis: Effici... |
Update actions/setup-node action to v2 | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
push:
branches:
- master
jobs:
build:
run... | # This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Node.js Package
on:
push:
branches:
- master
jobs:
build:
run... |
Update section title to match current outline. | title: LitElement Documentation
toc:
introduction:
title: Introduction
url: /guide
toplevel: true
getting started:
title: Getting Started
url: /guide/start
toplevel: true
components:
title: Building components
header: true
templates:
title: Templates
url: /guide/templ... | title: LitElement Documentation
toc:
introduction:
title: Introduction
url: /guide
toplevel: true
getting started:
title: Getting Started
url: /guide/start
toplevel: true
components:
title: Writing components
header: true
templates:
title: Templates
url: /guide/templa... |
Increase Metrics/AbcSize max value so that it's not too low for controllers and helpers | AllCops:
TargetRubyVersion: 2.3
DisplayCopNames: true
DisplayStyleGuide: true
Exclude:
- 'config/environments/*'
- 'config/initializers/*'
- 'db/schema.rb'
- 'db/migrate/*'
- 'db/seeds.rb'
- 'test/test_helper.rb'
- 'spec/**/*'
- 'bin/update'
- 'bin/setup'
- 'app/views/**/... | AllCops:
TargetRubyVersion: 2.3
DisplayCopNames: true
DisplayStyleGuide: true
Exclude:
- 'config/environments/*'
- 'config/initializers/*'
- 'db/schema.rb'
- 'db/migrate/*'
- 'db/seeds.rb'
- 'test/test_helper.rb'
- 'spec/**/*'
- 'bin/update'
- 'bin/setup'
- 'app/views/**/... |
Include `monitor` into the Buildbucket GAE tarball. | name: luci-go/buildbucket-go
extends: ../gae.yaml
inputsdir: ../../buildbucket/appengine
sources:
- ../../buildbucket
build:
- go_gae_bundle: ${inputsdir}/frontend/service-default-go.yaml
dest: ${contextdir}/frontend
| name: luci-go/buildbucket-go
extends: ../gae.yaml
inputsdir: ../../buildbucket/appengine
sources:
- ../../buildbucket
build:
- go_gae_bundle: ${inputsdir}/frontend/service-default-go.yaml
dest: ${contextdir}/frontend
- go_gae_bundle: ${inputsdir}/monitor/service-monitor.yaml
dest: ${contextdir}/monitor... |
Use main branch for Exercism GitHub Actions | name: Configlet CI
on:
push:
pull_request:
jobs:
configlet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Fetch configlet
uses: exercism/github-actions/configlet-ci@master
- name: Configlet Linter
run: configlet lint .
| name: Configlet CI
on:
push:
pull_request:
jobs:
configlet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Fetch configlet
uses: exercism/github-actions/configlet-ci@main
- name: Configlet Linter
run: configlet lint .
|
Fix issue where it says dpeends instead of depend | name: ${project.name}
main: vg.civcraft.mc.civmenu.CivMenu
version: ${project.version}
author: ['BlackXnt', 'Maxopoly', 'Rourke750']
depends: [CivModCore]
commands:
help:
description: Help command.
aliases: [help]
permission: CivMenu.*
usage: /help plugin
sign:
description: Command to sign agree... | name: ${project.name}
main: vg.civcraft.mc.civmenu.CivMenu
version: ${project.version}
author: ['BlackXnt', 'Maxopoly', 'Rourke750']
depend: [CivModCore]
commands:
help:
description: Help command.
aliases: [help]
permission: CivMenu.*
usage: /help plugin
sign:
description: Command to sign agreem... |
Fix version name for nightly builds | name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
name: Test code
runs-on: ubuntu-latest
strategy:
matrix:
go:
- ^1.13
- ^1.14
- ^1.15
- ^1
steps:
- name: Set up Go
uses: actions/se... | name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
name: Test code
runs-on: ubuntu-latest
strategy:
matrix:
go:
- ^1.13
- ^1.14
- ^1.15
- ^1
steps:
- name: Set up Go
uses: actions/se... |
Switch to synchronize module instead of rsync | ---
# Perform rsync deployment
- name: ANSISTRANO | Ensure current folder is a directory
file: state=directory path={{ ansistrano_deploy_to }}/{{ ansistrano_current_dir }}
- name: ANSISTRANO | Sync release to new current path
command: rsync -a --copy-links --delete-after "{{ ansistrano_release_path.stdout }}/" "{{... | ---
# Perform rsync deployment
- name: ANSISTRANO | Ensure current folder is a directory
file: state=directory path={{ ansistrano_deploy_to }}/{{ ansistrano_current_dir }}
- name: ANSISTRANO | Sync release to new current path
synchronize: src="{{ ansistrano_release_path.stdout }}/" dest="{{ ansistrano_deploy_to }}... |
Add create database in before_script | language: php
php:
# - '5.4'
- '5.5'
- '5.6'
- '7.0'
# - hhvm
- nightly
services:
- mysql
before_script:
- composer install
- mysql -u root -e "CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret'; GRANT ALL PRIVILEGES ON * . * TO 'homestead'@'localhost'; FLUSH PRIVILEGES;"
script: ./vendo... | language: php
php:
# - '5.4'
- '5.5'
- '5.6'
- '7.0'
# - hhvm
- nightly
services:
- mysql
before_script:
- composer install
- mysql -e "create database base_repo_test_db;"
- mysql -u root -e "CREATE USER 'homestead'@'localhost' IDENTIFIED BY 'secret'; GRANT ALL PRIVILEGES ON * . * TO 'homestead'@... |
Migrate to container-based infrastructure of Travis CI | language: c
compiler:
- gcc
- clang
sudo: required
addons:
apt:
packages:
- scons
- check
- python
- libjansson-dev
- libcurl3-openssl-dev
python:
- "2.7"
before_install:
- whereis clang
- sudo apt-get update -qq
- sudo apt-get install -y check scons python-virtualen... | language: c
compiler:
- gcc
- clang
sudo: false
addons:
apt:
packages:
- scons
- check
- python
- libjansson-dev
- libcurl3-openssl-dev
python:
- "2.7"
before_install:
- whereis clang
- sudo apt-get update -qq
- sudo apt-get install -y check scons python-virtualenv l... |
Test on `stable` instead of `iojs` | language: node_js
node_js:
- 'iojs'
- '0.12'
- '0.10'
before_script:
- chmod +x test/fixtures/optipng-linux
- chmod 755 test/fixtures/optipng-linux
- chmod +x test/fixtures/optipng-osx
- chmod 755 test/fixtures/optipng-osx
| language: node_js
node_js:
- 'stable'
- '0.12'
- '0.10'
before_script:
- chmod +x test/fixtures/optipng-linux
- chmod 755 test/fixtures/optipng-linux
- chmod +x test/fixtures/optipng-osx
- chmod 755 test/fixtures/optipng-osx
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.