Instruction stringlengths 14 778 | input_code stringlengths 0 4.24k | output_code stringlengths 1 5.44k |
|---|---|---|
Change highliter to github's new default | safe: true
markdown: kramdown
highlighter: pygments
permalink: /:title.html
relative_permalinks: false
default_theme: ribbon
default_width: 792
default_lang: en
default_body_class: list
author:
name: Julien Tanguy
url: http://julien.jhome.fr
company:
name: Sounderbox
url: http://sounderbox.com
fork_url: https://github.com/shower/shower
progress: true
line_numbers: true
| safe: true
markdown: kramdown
highlighter: rouge
permalink: /:title.html
relative_permalinks: false
default_theme: ribbon
default_width: 792
default_lang: en
default_body_class: list
author:
name: Julien Tanguy
url: http://julien.jhome.fr
company:
name: Sounderbox
url: http://sounderbox.com
fork_url: https://github.com/shower/shower
progress: true
line_numbers: true
|
Update Test Kitchen platforms to the latest | driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
run_list: apt::default
- name: debian-8.5
run_list: apt::default
- name: fedora-24
run_list: yum::dnf_yum_compat
- name: opensuse-13.2
- name: opensuse-leap-42.1
- name: ubuntu-12.04
run_list: apt::default
- name: ubuntu-14.04
run_list: apt::default
- name: ubuntu-16.04
run_list: apt::default
suites:
- name: default
run_list:
- recipe[erlang]
- name: gui_tools
run_list:
- recipe[erlang]
attributes:
erlang:
gui_tools: true
excludes:
- centos-5.11
- centos-6.8
- centos-7.2
- fedora-24
- name: esl
run_list:
- recipe[erlang::esl]
excludes:
- centos-5.11
- name: source
run_list:
- recipe[erlang::source]
| driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: centos-5.11
- name: centos-6.8
- name: centos-7.2
- name: debian-7.11
run_list: apt::default
- name: debian-8.6
run_list: apt::default
- name: fedora-25
run_list: yum::dnf_yum_compat
- name: opensuse-13.2
- name: opensuse-leap-42.1
- name: ubuntu-12.04
run_list: apt::default
- name: ubuntu-14.04
run_list: apt::default
- name: ubuntu-16.04
run_list: apt::default
suites:
- name: default
run_list:
- recipe[erlang]
- name: gui_tools
run_list:
- recipe[erlang]
attributes:
erlang:
gui_tools: true
excludes:
- centos-5.11
- centos-6.8
- centos-7.2
- fedora-25
- name: esl
run_list:
- recipe[erlang::esl]
excludes:
- centos-5.11
- name: source
run_list:
- recipe[erlang::source]
|
Fix filter on ci branches ... my regex doesn't seem to be working :| | ---
stages:
- build
- install
- tests
- lint
- doc
- translation
default:
tags:
- yunohost-ci
# All jobs are interruptible by default
interruptible: true
# see: https://docs.gitlab.com/ee/ci/yaml/#switch-between-branch-pipelines-and-merge-request-pipelines
workflow:
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event" # If we move to gitlab one day
- if: $CI_PIPELINE_SOURCE == "external_pull_request_event" # For github PR
- if: $CI_COMMIT_TAG # For tags
- if: $CI_COMMIT_REF_NAME =~ /^ci-/ # Ignore branches names ci-* (created by those pipelines)
when: never
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE == "push" # If it's not the default branch and if it's a push, then do not trigger a build
when: never
- when: always
variables:
YNH_BUILD_DIR: "ynh-build"
include:
- local: .gitlab/ci/*.gitlab-ci.yml
| ---
stages:
- build
- install
- tests
- lint
- doc
- translation
default:
tags:
- yunohost-ci
# All jobs are interruptible by default
interruptible: true
# see: https://docs.gitlab.com/ee/ci/yaml/#switch-between-branch-pipelines-and-merge-request-pipelines
workflow:
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event" # If we move to gitlab one day
- if: $CI_PIPELINE_SOURCE == "external_pull_request_event" # For github PR
- if: $CI_COMMIT_TAG # For tags
- if: $CI_COMMIT_REF_NAME == "ci-format-dev" # Ignore black formatting branch created by the CI
when: never
- if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH && $CI_PIPELINE_SOURCE == "push" # If it's not the default branch and if it's a push, then do not trigger a build
when: never
- when: always
variables:
YNH_BUILD_DIR: "ynh-build"
include:
- local: .gitlab/ci/*.gitlab-ci.yml
|
Add GitHub Actions to Dependabot | version: 2
updates:
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"
| version: 2
updates:
- package-ecosystem: "composer"
directory: "/"
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily" |
Add EndpointMap to the ironic post_deploy template | heat_template_version: rocky
parameters:
servers:
type: json
resources:
StandaloneStandardExtraConfigPost:
type: ../../extraconfig/post_deploy/standalone_post.yaml
properties:
servers: {get_param: servers}
IronicVBMCSetup:
type: vbmc_setup.yaml
properties:
servers: {get_param: servers}
| heat_template_version: rocky
parameters:
servers:
type: json
EndpointMap:
default: {}
description: Mapping of service endpoint -> protocol. Typically set
via parameter_defaults in the resource registry.
type: json
resources:
StandaloneStandardExtraConfigPost:
type: ../../extraconfig/post_deploy/standalone_post.yaml
properties:
servers: {get_param: servers}
IronicVBMCSetup:
type: vbmc_setup.yaml
properties:
servers: {get_param: servers}
|
Remove theme we are not using | box: wercker/default
build:
steps:
- arjen/hugo-build:
version: 0.13
theme: herring-cove
flags: --buildDrafts=true
deploy:
steps:
- lukevivier/gh-pages@0.2.1:
token: $GIT_TOKEN
basedir: public
domain: test.viglug.org
| box: wercker/default
build:
steps:
- arjen/hugo-build:
version: 0.13
flags: --buildDrafts=true
deploy:
steps:
- lukevivier/gh-pages@0.2.1:
token: $GIT_TOKEN
basedir: public
domain: test.viglug.org
|
Add translations for suspend notifications | flarum-suspend:
##
# UNIQUE KEYS - The following keys are used in only one location each.
##
# Translations in this namespace are used by the admin interface.
admin:
# These translations are used in the Permissions page of the admin interface.
permissions:
suspend_users_label: Sospendere gli utenti
# Translations in this namespace are used by the forum user interface.
forum:
# These translations are used in the Suspend User modal dialog (admin function).
suspend_user:
indefinitely_label: Sospeso a tempo indeterminato
limited_time_label: Sospeso per un tempo limitato...
limited_time_days_text: " giorni"
not_suspended_label: Non sospeso
status_heading: Stato di sospensione
submit_button: => core.ref.save_changes
title: "Sospendi {username}"
# These translations are displayed as tooltips for user badges.
user_badge:
suspended_tooltip: Sospeso
# These translations are found on the user profile page (admin function).
user_controls:
suspend_button: Sospendi
| flarum-suspend:
##
# UNIQUE KEYS - The following keys are used in only one location each.
##
# Translations in this namespace are used by the admin interface.
admin:
# These translations are used in the Permissions page of the admin interface.
permissions:
suspend_users_label: Sospendere gli utenti
# Translations in this namespace are used by the forum user interface.
forum:
# These translations are used in the suspension notifications
notifications:
user_suspended_text: "{username} ti ha sospeso per {timeReadable}"
user_unsuspended_text: "{username} ti ha riabilitato"
# These translations are used in the Suspend User modal dialog (admin function).
suspend_user:
indefinitely_label: Sospeso a tempo indeterminato
limited_time_label: Sospeso per un tempo limitato...
limited_time_days_text: " giorni"
not_suspended_label: Non sospeso
status_heading: Stato di sospensione
submit_button: => core.ref.save_changes
title: "Sospendi {username}"
# These translations are displayed as tooltips for user badges.
user_badge:
suspended_tooltip: Sospeso
# These translations are found on the user profile page (admin function).
user_controls:
suspend_button: Sospendi
|
Set resource limits for ffmpeg-worker container. | apiVersion: apps/v1
kind: Deployment
metadata:
name: ffmpeg-worker
spec:
replicas: 1
selector:
matchLabels:
app: ffmpeg-worker
template:
metadata:
labels:
annotations:
cluster-autoscaler.kubernetes.io/safe-to-evict: "true"
app: ffmpeg-worker
spec:
containers:
- name: ffmpeg-worker
# Replace $GCLOUD_PROJECT with your project ID
image: gcr.io/$GCLOUD_PROJECT/ffmpeg-worker:latest
volumeMounts:
- mountPath: /buckets/
name: buckets
mountPropagation: HostToContainer
ports:
- containerPort: 8080
- name: esp
image: gcr.io/endpoints-release/endpoints-runtime:1
args: [
"--http2_port=9000",
# Replace $GCLOUD_PROJECT with your project ID
"--service=ffmpeg.endpoints.$GCLOUD_PROJECT.cloud.goog",
"--rollout_strategy=managed",
"--backend=grpc://127.0.0.1:8080",
"--service_account_key=/etc/nginx/creds/service-account-creds.json"
]
volumeMounts:
- mountPath: /etc/nginx/creds
name: service-account-creds
readOnly: true
volumes:
- name: buckets
hostPath:
path: /home/buckets/
type: Directory
- name: service-account-creds
secret:
secretName: service-account-creds
| apiVersion: apps/v1
kind: Deployment
metadata:
name: ffmpeg-worker
spec:
replicas: 1
selector:
matchLabels:
app: ffmpeg-worker
template:
metadata:
labels:
annotations:
cluster-autoscaler.kubernetes.io/safe-to-evict: "true"
app: ffmpeg-worker
spec:
containers:
- name: ffmpeg-worker
# Replace $GCLOUD_PROJECT with your project ID
image: gcr.io/$GCLOUD_PROJECT/ffmpeg-worker:latest
volumeMounts:
- mountPath: /buckets/
name: buckets
mountPropagation: HostToContainer
ports:
- containerPort: 8080
resources:
requests:
memory: "512Mi"
cpu: "500m"
limits:
memory: "4096Mi"
cpu: "1000m"
- name: esp
image: gcr.io/endpoints-release/endpoints-runtime:1
args: [
"--http2_port=9000",
# Replace $GCLOUD_PROJECT with your project ID
"--service=ffmpeg.endpoints.$GCLOUD_PROJECT.cloud.goog",
"--rollout_strategy=managed",
"--backend=grpc://127.0.0.1:8080",
"--service_account_key=/etc/nginx/creds/service-account-creds.json"
]
volumeMounts:
- mountPath: /etc/nginx/creds
name: service-account-creds
readOnly: true
volumes:
- name: buckets
hostPath:
path: /home/buckets/
type: Directory
- name: service-account-creds
secret:
secretName: service-account-creds
|
Remove stray 'app/' from requirements on Github Actions | on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run_tests:
name: Run Django Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: pip install -r app/requirements.txt
- name: Run tests
run: python manage.py test
env:
SYSTEM_ENV: GITHUB_WORKFLOW
| on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run_tests:
name: Run Django Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: python manage.py test
env:
SYSTEM_ENV: GITHUB_WORKFLOW
|
Update Rubocop versions and configuration | inherit_gem:
rubocop-shopify: rubocop.yml
require:
- ./lib/statsd/instrument/rubocop.rb
AllCops:
TargetRubyVersion: 2.6
UseCache: true
CacheRootDirectory: tmp/rubocop
Exclude:
- statsd-instrument.gemspec
Naming/FileName:
Enabled: true
Exclude:
- lib/statsd-instrument.rb
# Enable our own cops on our own repo
StatsD/MetricReturnValue:
Enabled: true
StatsD/MetricValueKeywordArgument:
Enabled: true
StatsD/PositionalArguments:
Enabled: true
StatsD/SplatArguments:
Enabled: true
StatsD/MetaprogrammingPositionalArguments:
Enabled: true
StatsD/MeasureAsDistArgument:
Enabled: true
StatsD/MetricPrefixArgument:
Enabled: true
| inherit_gem:
rubocop-shopify: rubocop.yml
require:
- ./lib/statsd/instrument/rubocop.rb
AllCops:
TargetRubyVersion: 2.6
UseCache: true
SuggestExtensions: false
CacheRootDirectory: tmp/rubocop
Exclude:
- statsd-instrument.gemspec
Naming/FileName:
Enabled: true
Exclude:
- lib/statsd-instrument.rb
# Enable our own cops on our own repo
StatsD/MetricReturnValue:
Enabled: true
StatsD/MetricValueKeywordArgument:
Enabled: true
StatsD/PositionalArguments:
Enabled: true
StatsD/SplatArguments:
Enabled: true
StatsD/MetaprogrammingPositionalArguments:
Enabled: true
StatsD/MeasureAsDistArgument:
Enabled: true
StatsD/MetricPrefixArgument:
Enabled: true
|
Create id_rsa if not exists | - name: create directories
file:
dest: '{{ home_path }}/{{ item }}'
mode: 0700
state: directory
with_items:
- '.ssh'
- '.ssh/config.d'
- '.ssh/keys'
- name: copy common config
copy:
src: '{{ item }}'
dest: '{{ home_path }}/.ssh/config.d/'
mode: 0600
with_fileglob:
- '_*'
- name: assemble config.d
assemble:
src: '{{ home_path }}/.ssh/config.d'
dest: '{{ home_path }}/.ssh/config'
mode: 0600
ignore_hidden: yes
delimiter: "\n"
| - name: create directories
file:
dest: '{{ home_path }}/{{ item }}'
mode: 0700
state: directory
with_items:
- '.ssh'
- '.ssh/config.d'
- '.ssh/keys'
- name: copy common config
copy:
src: '{{ item }}'
dest: '{{ home_path }}/.ssh/config.d/'
mode: 0600
with_fileglob:
- '_*'
- name: assemble config.d
assemble:
src: '{{ home_path }}/.ssh/config.d'
dest: '{{ home_path }}/.ssh/config'
mode: 0600
ignore_hidden: yes
delimiter: "\n"
- name: check id_rsa
stat:
path: '{{ home_path }}/.ssh/id_rsa'
register: id_rsa_stat
- block:
- name: create id_rsa
command:
ssh-keygen \
-q \
-b 2048 \
-t rsa \
-N "" \
-C "" \
-f {{ home_path | quote }}/.ssh/id_rsa
- name: set mode for id_rsa
file:
dest: '{{ home_path }}/.ssh/id_rsa'
mode: 0600
- name: create id_rsa
command:
ssh-add {{ home_path | quote }}/.ssh/id_rsa
when: not id_rsa_stat.stat.exists
|
Use Python plugin to build gitless snap | name: gitless
version: git
summary: A simple version control system built on top of Git
description: |
Version control system that is built on top of Git in
attempt to make user interface easier by playing with
underlying concepts. Gitless is fully compatible with
Git and can be used with it interchangeably.
grade: devel
confinement: devmode
parts:
gitless-cli:
plugin: nil
| name: gitless
version: git
summary: A simple version control system built on top of Git
description: |
Version control system that is built on top of Git in
attempt to make user interface easier by playing with
underlying concepts. Gitless is fully compatible with
Git and can be used with it interchangeably.
grade: devel
confinement: devmode
parts:
gitless-cli:
plugin: python
source: .
|
Revert "Exclude :display and :background-image from sass lint no-duplicate-properties" | # File Options
files:
include:
- 'src/scss/*.scss'
- 'src/scss/**/*.scss'
# Rule Configuration
rules:
no-transition-all: 0
no-vendor-prefixes: 0
no-color-literals: 2
no-color-keywords: 2
no-duplicate-properties:
- 1
-
exclude:
- display
- background-image
quotes:
- 2
-
style: single
no-css-comments: 0
no-warn: 1
no-debug: 1
no-ids: 2
no-important: 1
hex-notation:
- 2
-
style: lowercase
indentation:
- 2
-
size: 2
property-sort-order:
- 1
-
order:
- display
- margin
- padding
- width
- height
- position
- top
- right
- bottom
- left
ignore-custom-properties: true
variable-name-format:
- 2
-
convention: camelcase
space-between-parens:
- 2
-
include: false
space-after-comma:
- 2
-
include: true
space-around-operator:
- 2
-
include: true
space-after-colon:
- 2
-
include: true
space-before-brace:
- 2
-
include: true
space-before-colon:
- 2
-
include: false
trailing-semicolon:
- 2
-
include: true
class-name-format:
- 2
-
convention: hyphenatedbem
| # File Options
files:
include:
- 'src/scss/*.scss'
- 'src/scss/**/*.scss'
# Rule Configuration
rules:
no-transition-all: 0
no-vendor-prefixes: 0
no-color-literals: 2
no-color-keywords: 2
no-duplicate-properties: 1
quotes:
- 2
-
style: single
no-css-comments: 0
no-warn: 1
no-debug: 1
no-ids: 2
no-important: 1
hex-notation:
- 2
-
style: lowercase
indentation:
- 2
-
size: 2
property-sort-order:
- 1
-
order:
- display
- margin
- padding
- width
- height
- position
- top
- right
- bottom
- left
ignore-custom-properties: true
variable-name-format:
- 2
-
convention: camelcase
space-between-parens:
- 2
-
include: false
space-after-comma:
- 2
-
include: true
space-around-operator:
- 2
-
include: true
space-after-colon:
- 2
-
include: true
space-before-brace:
- 2
-
include: true
space-before-colon:
- 2
-
include: false
trailing-semicolon:
- 2
-
include: true
class-name-format:
- 2
-
convention: hyphenatedbem
|
Configure Shippable build to build all variants on multiple JDKs | language: java
jdk:
- oraclejdk7
install:
- true
script:
- ./gradlew shippableCiBuild --continue | build_image: shippableimages/ubuntu1404_java
language: java
jdk:
- openjdk6
- openjdk7
- oraclejdk8
env:
- VARIANT=2.0
- VARIANT=2.3
- VARIANT=2.4
before_script:
- if [[ $SHIPPABLE_JDK_VERSION == "openjdk6" ]] ; then export JAVA_HOME="/usr/lib/jvm/java-6-openjdk-amd64"; export PATH="$PATH:/usr/lib/jvm/java-6-openjdk-amd64/bin"; export java_path="/usr/lib/jvm/java-6-openjdk-amd64/jre/bin/java"; fi
- if [[ $SHIPPABLE_JDK_VERSION == "openjdk7" ]] ; then export JAVA_HOME="/usr/lib/jvm/java-7-openjdk-amd64"; export PATH="$PATH:/usr/lib/jvm/java-7-openjdk-amd64/bin"; export java_path="/usr/lib/jvm/java-7-openjdk-amd64/jre/bin/java"; fi
- if [[ $SHIPPABLE_JDK_VERSION == "oraclejdk7" ]] ; then export JAVA_HOME="/usr/lib/jvm/java-7-oracle"; export PATH="$PATH:/usr/lib/jvm/java-7-oracle/bin"; export java_path="/usr/lib/jvm/java-7-oracle/jre/bin/java"; fi
- if [[ $SHIPPABLE_JDK_VERSION == "oraclejdk8" ]] ; then export JAVA_HOME="/usr/lib/jvm/java-8-oracle"; export PATH="$PATH:/usr/lib/jvm/java-8-oracle/bin"; export java_path="/usr/lib/jvm/java-8-oracle/jre/bin/java"; fi
- update-alternatives --set java $java_path
- java -version
script:
- ./gradlew shippableCiBuild --continue |
Switch to using Selenium 2.53.0 as Firefox and Selenium 3 have issues with clicking on elements at the moment | version: '2'
services:
hub:
image: selenium/hub
container_name: cyber-dojo-selenium-hub
ports:
- "4444:4444"
node_firefox:
image: selenium/node-firefox
container_name: cyber-dojo-selenium-node-firefox
restart: on-failure
links:
- "hub"
environment:
- "HUB_PORT_4444_TCP_ADDR=hub"
- "HUB_PORT_4444_TCP_PORT=4444"
- "SCREEN_WIDTH=1920"
- "SCREEN_HEIGHT=1080"
networks:
- "default"
- "cyber-dojo"
ports:
- "5900:5900"
node_chrome:
image: selenium/node-chrome
container_name: cyber-dojo-selenium-node-chrome
restart: on-failure
links:
- "hub"
environment:
- "HUB_PORT_4444_TCP_ADDR=hub"
- "HUB_PORT_4444_TCP_PORT=4444"
- "SCREEN_WIDTH=1920"
- "SCREEN_HEIGHT=1080"
networks:
- "default"
- "cyber-dojo"
ports:
- "5901:5900"
networks:
cyber-dojo:
external:
name: app_default | version: '2'
services:
hub:
image: selenium/hub:2.53.0
container_name: cyber-dojo-selenium-hub
ports:
- "4444:4444"
node_firefox:
image: selenium/node-firefox:2.53.0
container_name: cyber-dojo-selenium-node-firefox
restart: on-failure
links:
- "hub"
environment:
- "HUB_PORT_4444_TCP_ADDR=hub"
- "HUB_PORT_4444_TCP_PORT=4444"
- "SCREEN_WIDTH=1920"
- "SCREEN_HEIGHT=1080"
networks:
- "default"
- "cyber-dojo"
ports:
- "5900:5900"
node_chrome:
image: selenium/node-chrome:2.53.0
container_name: cyber-dojo-selenium-node-chrome
restart: on-failure
links:
- "hub"
environment:
- "HUB_PORT_4444_TCP_ADDR=hub"
- "HUB_PORT_4444_TCP_PORT=4444"
- "SCREEN_WIDTH=1920"
- "SCREEN_HEIGHT=1080"
networks:
- "default"
- "cyber-dojo"
ports:
- "5901:5900"
networks:
cyber-dojo:
external:
name: app_default |
Add or update GitHub action | name: build-push
on:
push:
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: robertdebock/docker-centos-openssh
| name: build-push
on:
push:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set short
run: echo "short=${GITHUB_REF##*/}" >> "${GITHUB_ENV}"
- name: Set tag
run: echo "tag=${short/master/latest}" >> "${GITHUB_ENV}"
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: robertdebock/github-action-molecule:${{ env.tag }}
|
Update from Hackage at 2018-08-03T16:46:23Z | homepage: https://github.com/tsuraan/bytestring-arbitrary
changelog-type: ''
hash: e3c441c12796ce49f226fb2b9a14f9d0763bd5a40813bae8a7ff58230d3dbb98
test-bench-deps:
bytestring: ! '>=0.10 && <0.12'
base: ! '>=4.6 && <4.11'
criterion: -any
bytestring-arbitrary: -any
QuickCheck: -any
cryptohash: -any
maintainer: tsuraan@gmail.com
synopsis: Arbitrary instances for ByteStrings
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.12'
base: ! '>=4.6 && <4.11'
QuickCheck: -any
cryptohash: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.1.0'
- '0.1.1'
author: jay groven
latest: '0.1.1'
description-type: haddock
description: ''
license-name: BSD3
| homepage: https://github.com/tsuraan/bytestring-arbitrary
changelog-type: ''
hash: 047830dd5582a265228f3a70400453cdf8b138b1fd961a66f5235419da854881
test-bench-deps:
bytestring: ! '>=0.10 && <0.12'
base: ! '>=4.6 && <4.11'
criterion: -any
bytestring-arbitrary: -any
QuickCheck: -any
cryptohash: -any
maintainer: tsuraan@gmail.com
synopsis: Arbitrary instances for ByteStrings
changelog: ''
basic-deps:
bytestring: ! '>=0.10 && <0.12'
base: ! '>=4.6 && <4.12'
QuickCheck: -any
cryptohash: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
- '0.1.0'
- '0.1.1'
- '0.1.2'
author: jay groven
latest: '0.1.2'
description-type: haddock
description: ''
license-name: BSD3
|
Add a verify-build job to scheduler-plugins presubmits | # sigs.k8s.io/scheduler-plugins presubmits
presubmits:
kubernetes-sigs/scheduler-plugins:
- name: pull-scheduler-plugins-verify-gofmt
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.13
command:
- make
args:
- verify-gofmt
- name: pull-scheduler-plugins-unit-test
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.13
command:
- make
args:
- unit-test
- name: pull-scheduler-plugins-integration-test
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.13
command:
- make
args:
- integration-test
| # sigs.k8s.io/scheduler-plugins presubmits
presubmits:
kubernetes-sigs/scheduler-plugins:
- name: pull-scheduler-plugins-verify-gofmt
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.13
command:
- make
args:
- verify-gofmt
- name: pull-scheduler-plugins-verify-build
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.13
command:
- make
args:
- build
- name: pull-scheduler-plugins-unit-test
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.13
command:
- make
args:
- unit-test
- name: pull-scheduler-plugins-integration-test
decorate: true
path_alias: sigs.k8s.io/scheduler-plugins
always_run: true
spec:
containers:
- image: golang:1.13
command:
- make
args:
- integration-test
|
Fix Heroku remote deployment URL | machine:
ruby:
version:
2.3.1
checkout:
post:
- git submodule sync
- git submodule update --init # use submodules
# We need to manually git push to Heroku because Lecture Hall depends on
# submodules and Heroku only supports submodules when deploying through git.
deployment:
master:
branch: master
commands:
- git config push.default simple
- git remote add heroku ssh://git.heroku.com/lecture-hall.git
- GIT_SSH_COMMAND="ssh -i ~/.ssh/id_circleci_github" git push heroku
| machine:
ruby:
version:
2.3.1
checkout:
post:
- git submodule sync
- git submodule update --init # use submodules
# We need to manually git push to Heroku because Lecture Hall depends on
# submodules and Heroku only supports submodules when deploying through git.
deployment:
master:
branch: master
commands:
- git config push.default simple
- git remote add heroku git@heroku.com:lecture-hall.git
- GIT_SSH_COMMAND="ssh -i ~/.ssh/id_circleci_github" git push heroku
|
Rebuild python-pyghmi 1.5.14 from Fedora | packages:
| packages:
- project: python-pyghmi
buildsys-tags:
cloud8-openstack-victoria-candidate: python-pyghmi-1.5.14-1.el8
|
Use newer version of sphinx_rt_theme | name: xtensor-docs
channels:
- conda-forge
dependencies:
- python=3.5
- pip:
- breathe
| name: xtensor-docs
channels:
- conda-forge
dependencies:
- python=3.5
- sphinx_rtd_theme
- pip:
- breathe
|
Update contact email to team address | name: ASIS
description: 'Social media image indexing API, primarily for use with the DigitalGov Search system.'
license: null
openSourceProject: 1
governmentWideReuseProject: 1
tags:
- image
- search
- GSA
- DigitalGovSearch
contact:
email: dawn.mccleskey@gsa.gov
| name: ASIS
description: 'Social media image indexing API, primarily for use with the DigitalGov Search system.'
license: null
openSourceProject: 1
governmentWideReuseProject: 1
tags:
- image
- search
- GSA
- DigitalGovSearch
contact:
email: search@support.digitalgov.gov
|
Exclude /vendor folder from Code Climate | engines:
rubocop:
enabled: true
duplication:
enabled: true
config:
languages:
ruby:
javascript:
brakeman:
enabled: true
bundler-audit:
enabled: true
coffeelint:
enabled: true
scss-lint:
enabled: true
fixme:
enabled: true
markdownlint:
enabled: true
ratings:
paths:
- app/**/*
- lib/**/*
exclude_paths:
- app/assets/fonts/
- app/assets/images/
- bin/rails
- bin/rake
- db/
- files/
- public/
- tmp/
| engines:
rubocop:
enabled: true
duplication:
enabled: true
config:
languages:
ruby:
javascript:
brakeman:
enabled: true
bundler-audit:
enabled: true
coffeelint:
enabled: true
scss-lint:
enabled: true
fixme:
enabled: true
markdownlint:
enabled: true
ratings:
paths:
- app/**/*
- lib/**/*
exclude_paths:
- app/assets/fonts/
- app/assets/images/
- bin/rails
- bin/rake
- db/
- files/
- public/
- tmp/
- vendor/
|
Update from Hackage at 2017-06-13T14:31:58Z | homepage: https://bitbucket.org/borekpiotr/coin
changelog-type: ''
hash: d652c80be8aa6a05ab1cbe74feb91ed27dd34413272501a734c82cb486c41452
test-bench-deps: {}
maintainer: Piotr Borek <piotrborek@op.pl>
synopsis: Simple account manager
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.8 && <5.0'
time: -any
persistent: -any
text: -any
glib: -any
persistent-template: -any
monad-control: -any
gtk3: -any
filepath: -any
containers: -any
lens: -any
binary: -any
mtl: -any
monad-logger: -any
transformers: -any
resourcet: -any
persistent-sqlite: -any
aeson: -any
directory: -any
all-versions:
- '1.0'
- '1.1'
- '1.1.1'
- '1.2'
author: Piotr Borek <piotrborek@op.pl>
latest: '1.2'
description-type: haddock
description: Simple account manager
license-name: GPL
| homepage: https://bitbucket.org/borekpiotr/coin
changelog-type: ''
hash: 8ead4d4b34ce6ff4fb72f03799086ad9fe90aec97f4e913609c9cb0fd5e316da
test-bench-deps: {}
maintainer: Piotr Borek <piotrborek@op.pl>
synopsis: Simple account manager
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.8 && <5.0'
time: -any
persistent: -any
text: -any
glib: -any
persistent-template: -any
monad-control: -any
gtk3: -any
filepath: -any
containers: -any
lens: -any
binary: -any
mtl: -any
monad-logger: -any
transformers: -any
resourcet: -any
persistent-sqlite: -any
aeson: -any
directory: -any
all-versions:
- '1.0'
- '1.1'
- '1.1.1'
- '1.2'
- '1.2.1'
author: Piotr Borek <piotrborek@op.pl>
latest: '1.2.1'
description-type: haddock
description: Simple account manager
license-name: GPL
|
Update from Hackage at 2017-05-29T05:54:16Z | homepage: http://github.com/ekmett/hask
changelog-type: markdown
hash: 04abcba45a7fbaa11d7f3bd9834f1e70a30f356ae871e59ab472f20d4cd60026
test-bench-deps: {}
maintainer: Edward A. Kmett <ekmett@gmail.com>
synopsis: Categories
changelog: ! '0
-
* Repository Initialized
'
basic-deps:
void: ! '>=0.5.4.2 && <1'
reflection: -any
base: ! '>=4 && <5'
constraints: -any
tagged: -any
ghc-prim: -any
transformers: -any
all-versions:
- '0'
author: Edward A. Kmett
latest: '0'
description-type: markdown
description: ! 'hask
====
[](http://travis-ci.org/ekmett/hask)
Kind-indexed category theory for Haskell with a strong lens-like flavor.
Contact Information
-------------------
Contributions and bug reports are welcome!
Please feel free to contact me through github or on the #haskell IRC channel on
irc.freenode.net.
-Edward Kmett
'
license-name: BSD3
| homepage: http://github.com/ekmett/hask
changelog-type: markdown
hash: ba5f5b6c8697ae7db745f05387ad6151b33b609117c7a60848a95940ec04eba5
test-bench-deps: {}
maintainer: Edward A. Kmett <ekmett@gmail.com>
synopsis: Categories
changelog: ! '0
-
* Repository Initialized
'
basic-deps:
void: ! '>=0.5.4.2 && <1'
reflection: <2.2
base: ==4.7.0.1
constraints: <0.5
tagged: <0.9
ghc-prim: -any
transformers: <0.6
all-versions:
- '0'
author: Edward A. Kmett
latest: '0'
description-type: markdown
description: ! 'hask
====
[](http://travis-ci.org/ekmett/hask)
Kind-indexed category theory for Haskell with a strong lens-like flavor.
Contact Information
-------------------
Contributions and bug reports are welcome!
Please feel free to contact me through github or on the #haskell IRC channel on
irc.freenode.net.
-Edward Kmett
'
license-name: BSD3
|
Update to angular2 beta 18 | name: __projectName__
description: A Dart app that uses Angular 2
version: 0.0.1
environment:
sdk: '>=1.13.0 <2.0.0'
dependencies:
angular2: 2.0.0-beta.17
browser: ^0.10.0
dart_to_js_script_rewriter: ^1.0.1
transformers:
- angular2:
platform_directives:
- 'package:angular2/common.dart#COMMON_DIRECTIVES'
platform_pipes:
- 'package:angular2/common.dart#COMMON_PIPES'
entry_points: web/main.dart
- dart_to_js_script_rewriter
| name: __projectName__
description: A Dart app that uses Angular 2
version: 0.0.1
environment:
sdk: '>=1.13.0 <2.0.0'
dependencies:
angular2: 2.0.0-beta.18
browser: ^0.10.0
dart_to_js_script_rewriter: ^1.0.1
transformers:
- angular2:
platform_directives:
- 'package:angular2/common.dart#COMMON_DIRECTIVES'
platform_pipes:
- 'package:angular2/common.dart#COMMON_PIPES'
entry_points: web/main.dart
- dart_to_js_script_rewriter
|
Use race checking and go vet | machine:
environment:
GO15VENDOREXPERIMENT: 1
PROJECT_PATH: ${GOPATH%%:*}/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
pre:
- wget https://storage.googleapis.com/golang/go1.5.2.linux-amd64.tar.gz
- sudo rm -rf /usr/local/go
- sudo tar -C /usr/local -xzf go1.5.2.linux-amd64.tar.gz
post:
- ln -sf ~/${CIRCLE_PROJECT_REPONAME} $PROJECT_PATH
dependencies:
cache_directories:
- ~/go1.5.2.linux-amd64.tar.gz
override:
- go get github.com/jteeuwen/go-bindata/...
- cd $PROJECT_PATH/frontend && npm install
- cd $PROJECT_PATH/frontend && grunt build
- cd $PROJECT_PATH && go-bindata -o frontend.go -prefix "frontend/dist/" frontend/dist/...
- cd $PROJECT_PATH && go build -v
test:
override:
- go version
- cd $PROJECT_PATH/frontend && grunt test
- cd $PROJECT_PATH && go test -v $(go list ./... | grep -v /vendor/)
| machine:
environment:
GO15VENDOREXPERIMENT: 1
PROJECT_PATH: ${GOPATH%%:*}/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME
pre:
- wget https://storage.googleapis.com/golang/go1.5.2.linux-amd64.tar.gz
- sudo rm -rf /usr/local/go
- sudo tar -C /usr/local -xzf go1.5.2.linux-amd64.tar.gz
post:
- ln -sf ~/${CIRCLE_PROJECT_REPONAME} $PROJECT_PATH
dependencies:
cache_directories:
- ~/go1.5.2.linux-amd64.tar.gz
override:
- go get github.com/jteeuwen/go-bindata/...
- cd $PROJECT_PATH/frontend && npm install
- cd $PROJECT_PATH/frontend && grunt build
- cd $PROJECT_PATH && go-bindata -o frontend.go -prefix "frontend/dist/" frontend/dist/...
- cd $PROJECT_PATH && go build -v
test:
override:
- go version
- cd $PROJECT_PATH/frontend && grunt test
- cd $PROJECT_PATH && go vet $(go list ./... | grep -v /vendor/)
- cd $PROJECT_PATH && go test -v $(go list ./... | grep -v /vendor/) -race
|
Use Maven 3.1.1 to avoid false positive cyclic redundancy | image: debovema/docker-mvn
test:
script:
- mvn -gs /home/m2/settings.xml clean deploy -P t3-snapshot
except:
- tags
site:
script:
- mvn -gs /home/m2/settings.xml clean site-deploy -P t3-snapshot
except:
- tags
site-redeploy:
script:
- mvn -gs /home/m2/settings.xml clean site-deploy -P t3-archive
- mvn -gs /home/m2/settings.xml clean site-deploy -P t3-release
only:
- tags
mirror:
script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
# SSH private key must be in '/root/.ssh/teecube_github'
- eval $(ssh-agent -s) && ssh-add /root/.ssh/teecube_github && ssh-keyscan github.com | sort -u - ~/.ssh/known_hosts -o ~/.ssh/known_hosts
# git clone --mirror && git push --mirror
- GIT_REPO_URL=`git config --get remote.origin.url` && GIT_REPO_NAME=`basename $GIT_REPO_URL .git` && rm -rf tmp_mirror.git && git clone --mirror $GIT_REPO_URL tmp_mirror.git && cd tmp_mirror.git && git push --mirror git@github.com:teecube/$GIT_REPO_NAME.git
| image: jamesdbloom/docker-java7-maven
test:
script:
- mvn -gs /home/m2/settings.xml clean deploy -P t3-snapshot
except:
- tags
site:
script:
- mvn -gs /home/m2/settings.xml clean site-deploy -P t3-snapshot
except:
- tags
site-redeploy:
script:
- mvn -gs /home/m2/settings.xml clean site-deploy -P t3-archive
- mvn -gs /home/m2/settings.xml clean site-deploy -P t3-release
only:
- tags
mirror:
script:
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
# SSH private key must be in '/root/.ssh/teecube_github'
- eval $(ssh-agent -s) && ssh-add /root/.ssh/teecube_github && ssh-keyscan github.com | sort -u - ~/.ssh/known_hosts -o ~/.ssh/known_hosts
# git clone --mirror && git push --mirror
- GIT_REPO_URL=`git config --get remote.origin.url` && GIT_REPO_NAME=`basename $GIT_REPO_URL .git` && rm -rf tmp_mirror.git && git clone --mirror $GIT_REPO_URL tmp_mirror.git && cd tmp_mirror.git && git push --mirror git@github.com:teecube/$GIT_REPO_NAME.git
|
Update package version to 3.0.3. | version: 3.0.2.{build}
assembly_info:
patch: true
file: AssemblyInfo.cs
assembly_version: "3.0.0.0"
assembly_file_version: "{version}"
assembly_informational_version: "3.0.2-CI-{build}"
configuration: Release
before_build: nuget restore
build:
verbosity: minimal
publish_nuget: true
publish_nuget_symbols: true
deploy:
- provider: NuGet
server: https://www.myget.org/F/autofac/
api_key:
secure: N4KZCRegcmenMoJ0peZfQwDzqq+Wt4oxGzNTgvkrDxgWyZhw7hNwKmd4n2AsNKQX
symbol_server: https://nuget.symbolsource.org/MyGet/autofac | version: 3.0.3.{build}
assembly_info:
patch: true
file: AssemblyInfo.cs
assembly_version: "3.0.0.0"
assembly_file_version: "{version}"
assembly_informational_version: "3.0.3-CI-{build}"
configuration: Release
before_build: nuget restore
build:
verbosity: minimal
publish_nuget: true
publish_nuget_symbols: true
deploy:
- provider: NuGet
server: https://www.myget.org/F/autofac/
api_key:
secure: N4KZCRegcmenMoJ0peZfQwDzqq+Wt4oxGzNTgvkrDxgWyZhw7hNwKmd4n2AsNKQX
symbol_server: https://nuget.symbolsource.org/MyGet/autofac |
Update from Hackage at 2016-04-09T12:20:04+0000 | homepage: ''
changelog-type: ''
hash: 2458dfd287fb4c0d9346137fd40828966fc5f30adbc78755a56982e5af200d1d
test-bench-deps: {}
maintainer: Ian-Woo Kim <ianwookim@gmail.com>
synopsis: JavaScriptCore FFI from webkitgtk
changelog: ''
basic-deps:
base: ! '>=4 && <5'
webkitgtk3: ! '>=0.13.0.0 && <0.15'
glib: ! '>=0.13.0.0 && <0.14'
gtk3: ! '>=0.13.0.0 && <0.15'
all-versions:
- '0.12.5.0'
- '0.12.5.1'
- '0.13.0.0'
- '0.13.0.1'
- '0.13.0.2'
- '0.13.0.3'
- '0.13.0.4'
- '0.13.1.0'
- '0.13.1.1'
- '0.13.1.2'
author: Ian-Woo Kim
latest: '0.13.1.2'
description-type: haddock
description: FFI for JavaScriptCore module from webkitgtk
license-name: BSD3
| homepage: ''
changelog-type: ''
hash: 8c8b01fa69732a2a282f173d95aa34cafa01aa7450f7a73678b8058df6fc6d92
test-bench-deps: {}
maintainer: Ian-Woo Kim <ianwookim@gmail.com>
synopsis: JavaScriptCore FFI from webkitgtk
changelog: ''
basic-deps:
base: ! '>=4 && <5'
all-versions:
- '0.12.5.0'
- '0.12.5.1'
- '0.13.0.0'
- '0.13.0.1'
- '0.13.0.2'
- '0.13.0.3'
- '0.13.0.4'
- '0.13.1.0'
- '0.13.1.1'
- '0.13.1.2'
- '0.14.0.0'
author: Ian-Woo Kim
latest: '0.14.0.0'
description-type: haddock
description: FFI for JavaScriptCore module from webkitgtk
license-name: BSD3
|
Set www-data uid and gid. | ---
- name: Update Apt Cache
apt: update_cache=yes cache_valid_time=3600
- name: Install Prerequisites
apt: name={{ item }} state=present
with_items:
- supervisor
- name: Install Supervisor Config
template: src=../templates/supervisord.conf.j2 dest=/etc/supervisor/conf.d/supervisord.conf owner=root group=root
- name: Add www-data Group
group: name=www-data state=present
- name: Add www-data User
user: name=www-data group=www-data home=/var/www shell=/bin/bash state=present
| ---
- name: Update Apt Cache
apt: update_cache=yes cache_valid_time=3600
- name: Install Prerequisites
apt: name={{ item }} state=present
with_items:
- supervisor
- name: Install Supervisor Config
template: src=../templates/supervisord.conf.j2 dest=/etc/supervisor/conf.d/supervisord.conf owner=root group=root
- name: Add www-data Group
group: name=www-data gid=1000 state=present
- name: Add www-data User
user: name=www-data group=www-data home=/var/www shell=/bin/bash uid=1000 state=present
|
Move to Grace docker image for go 1.7 | ---
platform: linux
image_resource:
type: docker-image
source:
repository: docker:///zhanggongsw/bosh
inputs:
- name: bosh-softlayer-tools
path: gopath/src/github.com/cloudfoundry-community/bosh-softlayer-tools
- name: stemcell-info
- name: stemcell-version
outputs:
- name: new-light-stemcell
run:
path: gopath/src/github.com/cloudfoundry-community/bosh-softlayer-tools/ci/tasks/create-light-stemcell
| ---
platform: linux
image_resource:
type: docker-image
source:
repository: zhanggongsw/bosh
inputs:
- name: bosh-softlayer-tools
path: gopath/src/github.com/cloudfoundry-community/bosh-softlayer-tools
- name: stemcell-info
- name: stemcell-version
outputs:
- name: new-light-stemcell
run:
path: gopath/src/github.com/cloudfoundry-community/bosh-softlayer-tools/ci/tasks/create-light-stemcell
|
Build on AppVeyor with VS2017 | branches:
only:
- master
clone_depth: 5
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
CMAKE_GENERATOR: "Visual Studio 12 2013"
BOOST_ROOT: C:\Libraries\boost_1_60_0
CMAKE_PREFIX_PATH: C:\Qt\5.6.3\msvc2013
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"
BOOST_ROOT: C:\Libraries\boost_1_60_0
CMAKE_PREFIX_PATH: C:\Qt\5.6.3\msvc2015_64
install:
- set PATH=%PATH%;%CMAKE_PREFIX_PATH%\bin
build_script:
- mkdir build && cd build
- cmake .. -G"%CMAKE_GENERATOR%" -DBoost_INCLUDE_DIR=%BOOST_ROOT%
- cmake --build . --config Release
- cmake --build . --config Release --target install
test_script:
- ctest -C Release -V
- qmlscene --quit -I lib/qml ../examples/TestApp.qml
| branches:
only:
- master
clone_depth: 5
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
CMAKE_GENERATOR: "Visual Studio 12 2013"
BOOST_ROOT: C:\Libraries\boost_1_60_0
CMAKE_PREFIX_PATH: C:\Qt\5.6.3\msvc2013
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
CMAKE_GENERATOR: "Visual Studio 14 2015 Win64"
BOOST_ROOT: C:\Libraries\boost_1_60_0
CMAKE_PREFIX_PATH: C:\Qt\5.6.3\msvc2015_64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
CMAKE_GENERATOR: "Visual Studio 15 2017 Win64"
BOOST_ROOT: C:\Libraries\boost_1_67_0
CMAKE_PREFIX_PATH: C:\Qt\5.11.1\msvc2017_64
install:
- set PATH=%PATH%;%CMAKE_PREFIX_PATH%\bin
build_script:
- mkdir build && cd build
- cmake .. -G"%CMAKE_GENERATOR%" -DBoost_INCLUDE_DIR=%BOOST_ROOT%
- cmake --build . --config Release
- cmake --build . --config Release --target install
test_script:
- ctest -C Release -V
- qmlscene --quit -I lib/qml ../examples/TestApp.qml
|
Make artifcats on windows. Minor fix | version: '{branch} build {build}'
skip_tags: true
image: Visual Studio 2015
platform:
- x64
- Win32
configuration: Release
clone_depth: 50
clone_folder: c:\projects\sentencepiece
init:
build_script:
- cmd: call test.bat %platform%
artifacts:
- path c:\projects\sentencepiece\build\sentencepiece*.exe
- path c:\projects\sentencepiece\build\sentencepiece*.zip
| version: '{branch} build {build}'
skip_tags: true
image: Visual Studio 2015
platform:
- x64
- Win32
configuration: Release
clone_depth: 50
clone_folder: c:\projects\sentencepiece
init:
build_script:
- cmd: call test.bat %platform%
artifacts:
- path: c:\projects\sentencepiece\build\sentencepiece*.exe
- path: c:\projects\sentencepiece\build\sentencepiece*.zip
|
Use exported value in deploy script | s3_id: <%= ENV['AWS_ACCESS_KEY_ID'] %>
s3_secret: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
s3_bucket: models-resources
s3_key_prefix: seismic-explorer
s3_endpoint: us-east-1
gzip: true
<% if ENV['BRANCH_OR_TAG'] == 'production' %>
# in this case we are going to deploy this branch to the top level of the domain
# so we need to ignore the version and branch folders
ignore_on_server: ^seismic-explorer/(version/|branch/)
<% else %>
# in this case we are going to deploy this code to a subfolder of either the branch
# or version folder. So ignore everything except this folder.
ignore_on_server: ^(?!seismic-explorer/<%= Regexp.escape(ENV['DEPLOY_DIR_NAME']) %>/)
<% end %>
max_age:
"seismic-explorer/*": 600 # 10 minutes
"seismic-explorer/version/*": 31536000 # 1 year
"seismic-explorer/branch/*": 0
| s3_id: <%= ENV['AWS_ACCESS_KEY_ID'] %>
s3_secret: <%= ENV['AWS_SECRET_ACCESS_KEY'] %>
s3_bucket: models-resources
s3_key_prefix: seismic-explorer
s3_endpoint: us-east-1
gzip: true
<% if ENV['BRANCH_OR_TAG'] == 'production' %>
# in this case we are going to deploy this branch to the top level of the domain
# so we need to ignore the version and branch folders
ignore_on_server: ^seismic-explorer/(version/|branch/)
<% else %>
# in this case we are going to deploy this code to a subfolder of either the branch
# or version folder. So ignore everything except this folder.
ignore_on_server: ^(?!seismic-explorer/<%= Regexp.escape(ENV['S3_DEPLOY_DIR']) %>/)
<% end %>
max_age:
"seismic-explorer/*": 600 # 10 minutes
"seismic-explorer/version/*": 31536000 # 1 year
"seismic-explorer/branch/*": 0
|
Update jQuarks to 1.0-3 (3) | Categories:
- Internet
- Navigation
- Reading
License: Apache-2.0
SourceCode: https://gitlab.com/oF2pks/jelly
IssueTracker: https://gitlab.com/oF2pks/jelly/issues
AutoName: jQuarks
RepoType: git
Repo: https://gitlab.com/oF2pks/jelly.git
Builds:
- versionName: 1.0-2
versionCode: 2
commit: v1.0-2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0-2
CurrentVersionCode: 2
| Categories:
- Internet
- Navigation
- Reading
License: Apache-2.0
SourceCode: https://gitlab.com/oF2pks/jelly
IssueTracker: https://gitlab.com/oF2pks/jelly/issues
AutoName: jQuarks
RepoType: git
Repo: https://gitlab.com/oF2pks/jelly.git
Builds:
- versionName: 1.0-2
versionCode: 2
commit: v1.0-2
subdir: app
gradle:
- yes
- versionName: 1.0-3
versionCode: 3
commit: v1.0-3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0-3
CurrentVersionCode: 3
|
Update default etcd server to 3.2.24 for kubernetes 1.12 | apiVersion: v1
kind: ReplicationController
metadata:
name: apiextensions-server
namespace: apiextensions
labels:
apiserver: "true"
spec:
replicas: 1
selector:
apiserver: "true"
template:
metadata:
labels:
apiserver: "true"
spec:
serviceAccountName: apiserver
containers:
- name: apiextensions-server
image: apiextensions-apiserver:latest
imagePullPolicy: Never
args:
- "--etcd-servers=http://localhost:2379"
- "--audit-log-path=-"
- name: etcd
image: quay.io/coreos/etcd:v3.2.18
| apiVersion: v1
kind: ReplicationController
metadata:
name: apiextensions-server
namespace: apiextensions
labels:
apiserver: "true"
spec:
replicas: 1
selector:
apiserver: "true"
template:
metadata:
labels:
apiserver: "true"
spec:
serviceAccountName: apiserver
containers:
- name: apiextensions-server
image: apiextensions-apiserver:latest
imagePullPolicy: Never
args:
- "--etcd-servers=http://localhost:2379"
- "--audit-log-path=-"
- name: etcd
image: quay.io/coreos/etcd:v3.2.24
|
Upgrade to latest consul docker image. | # Work in Progress
consul:
image: progrium/consul
volumes:
- /data
- /config
- ./src/test/resources/consul_ui:/ui
ports:
- "8300:8300"
- "8400:8400"
- "8500:8500"
- "8600:8600"
command: -server -bootstrap -data-dir /data -ui-dir /ui
| # Work in Progress
consul:
image: library/consul
ports:
- "8300:8300"
- "8400:8400"
- "8500:8500"
- "8600:8600"
|
Replace line separator and add more time for wait-for-it script | mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=123456
- MYSQL_DATABASE=steamservice
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
mongo:
image: mongo
app:
build: .
ports:
- "443:443"
environment:
- SPRING_PROFILE=docker
links:
- mysql
- mongo
volumes:
- ./config:/config
- ./build/libs:/app
command: ./config/wait-for-it.sh mysql:3306 -- java -jar ./app/gs.jar | mysql:
image: mysql
environment:
- MYSQL_ROOT_PASSWORD=123456
- MYSQL_DATABASE=steamservice
command: mysqld --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci
mongo:
image: mongo
app:
build: .
ports:
- "443:443"
environment:
- SPRING_PROFILE=docker
links:
- mysql
- mongo
volumes:
- ./config:/config
- ./build/libs:/app
command: ./config/wait-for-it.sh mysql:3306 -t 300 -s -- java -jar ./app/gs.jar |
Update RethinkDNS to 053g (18) | Categories:
- Internet
- Security
- Connectivity
License: Apache-2.0
AuthorName: The RethinkDNS Authors
AuthorEmail: hello@celzero.com
WebSite: https://rethinkdns.com/app
SourceCode: https://github.com/celzero/rethink-app
IssueTracker: https://github.com/celzero/rethink-app/issues
Bitcoin: 35dbvH3YNbgqD2xWGXwotjHM7gbVLyno11
Litecoin: MT8EeqoAT8fM5aN93NAX9qUkF75HetBuKe
AutoName: RethinkDNS
RepoType: git
Repo: https://github.com/celzero/rethink-app
Builds:
- versionName: 0.5.3e
versionCode: 16
commit: v0.5.3e
subdir: app
gradle:
- fdroid
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.5.3e
CurrentVersionCode: 16
| Categories:
- Internet
- Security
- Connectivity
License: Apache-2.0
AuthorName: The RethinkDNS Authors
AuthorEmail: hello@celzero.com
WebSite: https://rethinkdns.com/app
SourceCode: https://github.com/celzero/rethink-app
IssueTracker: https://github.com/celzero/rethink-app/issues
Bitcoin: 35dbvH3YNbgqD2xWGXwotjHM7gbVLyno11
Litecoin: MT8EeqoAT8fM5aN93NAX9qUkF75HetBuKe
AutoName: RethinkDNS
RepoType: git
Repo: https://github.com/celzero/rethink-app
Builds:
- versionName: 0.5.3e
versionCode: 16
commit: v0.5.3e
subdir: app
gradle:
- fdroid
- versionName: 053g
versionCode: 18
commit: 63efbf6f5e014bef64b07836cc7e96aa9cf20dd8
subdir: app
gradle:
- fdroid
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 053g
CurrentVersionCode: 18
|
Revert "Enable IAD opendev.org mirror" | # This file contains ansible variables that are used by our zuul-executors.
---
# NOTE(ianw): 2019-05 this list of clouds will grow as we provision
# new opendev.org based mirrors, but then eventually be removed once
# all are updated.
zuul_site_mirror_fqdn: >-
{%- if nodepool.region + "." + nodepool.cloud in [ "IAD.rax", "DFW.rax", "ORD.rax", "regionOne.fortnebula" ] -%}
mirror.{{ nodepool.region | lower }}.{{ nodepool.cloud | lower }}.opendev.org
{%- else -%}
mirror.{{ nodepool.region | lower }}.{{ nodepool.cloud | lower }}.openstack.org
{%- endif -%}
zuul_site_traceroute_host: opendev.org
zuul_site_image_manifest_files:
- /etc/dib-builddate.txt
- /etc/image-hostname.txt
zuul_output_dir: "{{ ansible_user_dir }}/zuul-output"
bindep_command: /usr/bindep-env/bin/bindep
| # This file contains ansible variables that are used by our zuul-executors.
---
# NOTE(ianw): 2019-05 this list of clouds will grow as we provision
# new opendev.org based mirrors, but then eventually be removed once
# all are updated.
zuul_site_mirror_fqdn: >-
{%- if nodepool.region + "." + nodepool.cloud in [ "DFW.rax", "ORD.rax", "regionOne.fortnebula" ] -%}
mirror.{{ nodepool.region | lower }}.{{ nodepool.cloud | lower }}.opendev.org
{%- else -%}
mirror.{{ nodepool.region | lower }}.{{ nodepool.cloud | lower }}.openstack.org
{%- endif -%}
zuul_site_traceroute_host: opendev.org
zuul_site_image_manifest_files:
- /etc/dib-builddate.txt
- /etc/image-hostname.txt
zuul_output_dir: "{{ ansible_user_dir }}/zuul-output"
bindep_command: /usr/bindep-env/bin/bindep
|
Update from Forestry.io - Updated Forestry configuration | ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
collections:
- path: ''
label: Pages
create: all
- path: _posts
label: Posts
create: all
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
| ---
new_page_extension: md
auto_deploy: false
admin_path:
webhook_url:
sections:
- type: jekyll-pages
label: Pages
create: all
- type: jekyll-posts
label: Posts
create: all
- type: directory
path: _data
label: Data
create: none
match: "**/*.{json,yaml,yml}"
upload_dir: uploads
public_path: "/uploads"
front_matter_path: ''
use_front_matter_path: false
file_template: ":filename:"
|
Reduce required CF resource further | ---
applications:
- name: halliwell
buildpack: https://github.com/cloudfoundry/python-buildpack#v1.5.3
command: python launch.py
disk_quota: 512M
memory: 256M
no-route: true | ---
applications:
- name: halliwell
buildpack: https://github.com/cloudfoundry/python-buildpack#v1.5.3
command: python launch.py
disk_quota: 512M
memory: 128M
no-route: true |
Fix permission on acts cronfile | ---
- apt_key: url=https://packagecloud.io/gpg.key state=present
- apt_repository: repo="deb https://packagecloud.io/sr/packages/ubuntu/ wily main" state=present
- apt: name=acts={{acts_version}} state=present update_cache=yes cache_valid_time=3600
- template:
dest=/etc/acts.conf
src=acts.conf.j2
owner=root
group=root
mode=0640
- copy:
dest="/etc/cron.{{acts_cron_frequency}}/acts"
content="#!/bin/sh\nacts\n"
owner=root
group=root
mode=0640
| ---
- apt_key: url=https://packagecloud.io/gpg.key state=present
- apt_repository: repo="deb https://packagecloud.io/sr/packages/ubuntu/ wily main" state=present
- apt: name=acts={{acts_version}} state=present update_cache=yes cache_valid_time=3600
- template:
dest=/etc/acts.conf
src=acts.conf.j2
owner=root
group=root
mode=0640
- copy:
dest="/etc/cron.{{acts_cron_frequency}}/acts"
content="#!/bin/sh\nacts\n"
owner=root
group=root
mode=0774
|
Update from Hackage at 2016-12-29T21:14:49Z | homepage: http://www.bytelabs.org/hburg.html
changelog-type: ''
hash: 73bcdcbc0f5c6f7e9c7c3cbf923f4390f2700ea74c4fc6b7e4e4da350df55e11
test-bench-deps: {}
maintainer: igor@bytelabs.org
synopsis: Haskell Bottom Up Rewrite Generator
changelog: ''
basic-deps:
base: ! '>=3'
haskell98: ! '>=1.0'
filepath: -any
array: -any
containers: -any
mtl: -any
all-versions:
- '1.0'
- '1.1'
- '1.1.1'
- '1.1.2'
author: Igor Boehm <igor@bytelabs.org>
latest: '1.1.2'
description-type: haddock
description: ! 'HBURG is a program that generates tree parsers for cost-augmented
tree grammars. It is useful for writing code generators for compilers.
Given a mapping of a tree structured intermediate representation onto
target machine instructions, HBURG generates a code generator that can
be plugged into the instruction selection phase of a compiler. For more
information see "http://www.bytelabs.org/pub/papers/hburg07.pdf".'
license-name: BSD3
| homepage: https://www.bytelabs.org/project/haskell-bottom-up-rewrite-generator/
changelog-type: ''
hash: 8f9edc7e3a70c66bccdf725cdb6e243f3956a719e21bad69e0752c4ee55fef92
test-bench-deps: {}
maintainer: igor@bytelabs.org
synopsis: Haskell Bottom Up Rewrite Generator
changelog: ''
basic-deps:
base: ! '>=4.5 && <5.0'
filepath: -any
array: -any
containers: -any
utf8-string: -any
mtl: -any
pretty: -any
all-versions:
- '1.0'
- '1.1'
- '1.1.1'
- '1.1.2'
- '1.1.3'
author: Igor Boehm <igor@bytelabs.org>
latest: '1.1.3'
description-type: haddock
description: ! 'HBURG is a program that generates tree parsers for cost-augmented
tree grammars. It is useful for writing code generators for compilers.
Given a mapping of a tree structured intermediate representation onto
target machine instructions, HBURG generates a code generator that can
be plugged into the instruction selection phase of a compiler. For more
information see <https://www.bytelabs.org/pub/papers/hburg07.pdf>.'
license-name: BSD3
|
Upgrade ansi_color_palette to support Firefox | name: ansi_pixels
description: A Polymer.dart application to edit ANSI art
dependencies:
archive: '>=1.0.0 <1.1.0'
crypto: '>=0.9.0 <0.10.0'
polymer: '>=0.12.0 <0.13.0'
pixel_canvas: '>=1.0.0 <1.1.0'
ansi_color_palette: '>=1.0.0 <1.1.0'
fold_button: '>=1.0.0 <1.1.0'
#pixel_canvas: {path: '../pixel_canvas'}
#ansi_color_palette: {path: '../ansi_color_palette'}
#fold_button: {path: '../fold_button'}
dev_dependencies:
ghpages_generator: '>=0.2.0 <0.3.0'
path: '>=1.2.0 <1.3.0'
yaml: '>=1.1.0 <1.2.0'
transformers:
- polymer:
entry_points:
- web/index.html
| name: ansi_pixels
description: A Polymer.dart application to edit ANSI art
dependencies:
archive: '>=1.0.0 <1.1.0'
crypto: '>=0.9.0 <0.10.0'
polymer: '>=0.12.0 <0.13.0'
pixel_canvas: '>=1.0.0 <1.1.0'
ansi_color_palette: '>=1.1.0 <1.2.0'
fold_button: '>=1.0.0 <1.1.0'
#pixel_canvas: {path: '../pixel_canvas'}
#ansi_color_palette: {path: '../ansi_color_palette'}
#fold_button: {path: '../fold_button'}
dev_dependencies:
ghpages_generator: '>=0.2.0 <0.3.0'
path: '>=1.2.0 <1.3.0'
yaml: '>=1.1.0 <1.2.0'
transformers:
- polymer:
entry_points:
- web/index.html
|
Use studio token as part of checkout. | ---
name: Upgrade Dependencies
on: [workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: '16'
- run: git config --global user.email "pakkun@cliffano.com"
- run: git config --global user.name "pakkunbot"
- run: npm install -g bob
- run: bob updep build
- run: git commit -am "Upgrade dependencies to latest"
- uses: ad-m/github-push-action@master
with:
tags: true
github_token: ${{ secrets.STUDIO_GITHUB_TOKEN }}
branch: ${{ github.ref }}
| ---
name: Upgrade Dependencies
on: [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'
- run: git config --global user.email "pakkun@cliffano.com"
- run: git config --global user.name "pakkunbot"
- run: npm install -g bob
- run: bob updep build
- run: git commit -am "Upgrade dependencies to latest"
- uses: ad-m/github-push-action@master
with:
tags: true
github_token: ${{ secrets.STUDIO_GITHUB_TOKEN }}
branch: ${{ github.ref }}
|
Set default back to enabled | name: Breadcrumbs
version: 1.1.0
description: The **Breadcrumbs** plugin provides a simple method to display the depth of your content/navigation structure.
icon: caret-square-o-right
author:
name: Team Grav
email: devs@getgrav.org
url: http://getgrav.org
homepage: https://github.com/getgrav/grav-plugin-breadcrumbs
demo: http://demo.getgrav.org/blog-skeleton
keywords: breadcrumbs, plugin, navigation, depth
bugs: https://github.com/getgrav/grav-plugin-breadcrumbs/issues
license: MIT
validation: strict
form:
fields:
enabled:
type: toggle
label: Plugin status
highlight: 1
default: 0
options:
1: Enabled
0: Disabled
validate:
type: bool
built_in_css:
type: toggle
label: Use built in CSS
highlight: 1
default: 1
options:
1: Enabled
0: Disabled
validate:
type: bool
show_all:
type: toggle
label: Show even with one item
highlight: 1
default: 1
options:
1: Enabled
0: Disabled
validate:
type: bool | name: Breadcrumbs
version: 1.1.0
description: The **Breadcrumbs** plugin provides a simple method to display the depth of your content/navigation structure.
icon: caret-square-o-right
author:
name: Team Grav
email: devs@getgrav.org
url: http://getgrav.org
homepage: https://github.com/getgrav/grav-plugin-breadcrumbs
demo: http://demo.getgrav.org/blog-skeleton
keywords: breadcrumbs, plugin, navigation, depth
bugs: https://github.com/getgrav/grav-plugin-breadcrumbs/issues
license: MIT
validation: strict
form:
fields:
enabled:
type: toggle
label: Plugin status
highlight: 1
default: 1
options:
1: Enabled
0: Disabled
validate:
type: bool
built_in_css:
type: toggle
label: Use built in CSS
highlight: 1
default: 1
options:
1: Enabled
0: Disabled
validate:
type: bool
show_all:
type: toggle
label: Show even with one item
highlight: 1
default: 1
options:
1: Enabled
0: Disabled
validate:
type: bool |
Add GitHub Action for rails assets precompile | name: Rails assets
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
precompile:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: "14"
- name: Yarn install
run: yarn install --frozen-lockfile
- name: rails assets:precompile
run: bundle exec rails SECRET_KEY_BASE=blablabla assets:precompile
| |
Switch docker publishing to main branch | name: Docker
on:
push:
branches:
- master
env:
IMAGE_NAME: toolbox
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build image
run:
docker build -t $IMAGE_NAME .
- name: Log into github registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
- name: Push image to github registry
run: |
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
docker tag $IMAGE_NAME $IMAGE_ID:latest
docker tag $IMAGE_NAME $IMAGE_ID:${{ github.sha }}
docker push $IMAGE_ID:latest
docker push $IMAGE_ID:${{ github.sha }}
- name: Log into docker hub registry
run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u apexskier --password-stdin
- name: Push image to docker hub registry
run: |
IMAGE_ID=apexskier/$IMAGE_NAME
docker tag $IMAGE_NAME $IMAGE_ID:latest
docker tag $IMAGE_NAME $IMAGE_ID:${{ github.sha }}
docker push $IMAGE_ID:latest
docker push $IMAGE_ID:${{ github.sha }}
| name: Docker
on:
push:
branches:
- main
env:
IMAGE_NAME: toolbox
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build image
run:
docker build -t $IMAGE_NAME .
- name: Log into github registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
- name: Push image to github registry
run: |
IMAGE_ID=docker.pkg.github.com/${{ github.repository }}/$IMAGE_NAME
docker tag $IMAGE_NAME $IMAGE_ID:latest
docker tag $IMAGE_NAME $IMAGE_ID:${{ github.sha }}
docker push $IMAGE_ID:latest
docker push $IMAGE_ID:${{ github.sha }}
- name: Log into docker hub registry
run: echo "${{ secrets.DOCKER_HUB_TOKEN }}" | docker login -u apexskier --password-stdin
- name: Push image to docker hub registry
run: |
IMAGE_ID=apexskier/$IMAGE_NAME
docker tag $IMAGE_NAME $IMAGE_ID:latest
docker tag $IMAGE_NAME $IMAGE_ID:${{ github.sha }}
docker push $IMAGE_ID:latest
docker push $IMAGE_ID:${{ github.sha }}
|
Drop support for old Node | language: node_js
matrix:
include:
- node_js: '0.10'
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 5
- node_js: 6
- node_js: node
| language: node_js
matrix:
include:
- node_js: '0.12'
- node_js: iojs
- node_js: 4
- node_js: 6
- node_js: node
|
Update from Forestry.io - Updated Forestry configuration | ---
label: Project
hide_body: false
is_partial: false
fields:
- type: file
name: thumbnail
label: Thumbnail
description: This will only show up on the front page
- type: text
name: title
label: Title
config:
required: true
- type: datetime
name: date
label: Date
config:
required: true
- type: text
name: year
label: Year
config:
required: true
- type: tag_list
name: categories
label: Categories
pages:
- projects/chelsea-landmark.md
| ---
label: Project
hide_body: false
is_partial: false
fields:
- type: file
name: thumbnail
label: Thumbnail
description: This will only show up on the front page
- type: text
name: title
label: Title
config:
required: true
- type: datetime
name: date
label: Date
config:
required: true
- type: tag_list
name: categories
label: Categories
pages:
- projects/chelsea-landmark.md
|
Add config and reboot fcb | #
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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 applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
syscfg.vals:
XTAL_32768: 1
SYS_CLOCK: HFXOSC_PLL_256_MHZ
UART_0: 1
TIMER_0: 1
TIMER_1: 1
TIMER_2: 1
syscfg.defs.BUS_DRIVER_PRESENT:
BSP_FLASH_SPI_NAME:
description: 'SPIFLASH device name'
value: '"spiflash0"'
BSP_FLASH_SPI_BUS:
description: 'bus name SPIFLASH is connected to'
value:
| #
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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 applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
syscfg.vals:
XTAL_32768: 1
SYS_CLOCK: HFXOSC_PLL_256_MHZ
UART_0: 1
TIMER_0: 1
TIMER_1: 1
TIMER_2: 1
REBOOT_LOG_FLASH_AREA: FLASH_AREA_REBOOT_LOG
CONFIG_FCB_FLASH_AREA: FLASH_AREA_NFFS
syscfg.defs.BUS_DRIVER_PRESENT:
BSP_FLASH_SPI_NAME:
description: 'SPIFLASH device name'
value: '"spiflash0"'
BSP_FLASH_SPI_BUS:
description: 'bus name SPIFLASH is connected to'
value:
|
Update from Hackage at 2016-12-26T18:09:54Z | homepage: http://github.com/yairchu/generator/tree
changelog-type: ''
hash: a4d4f0b740f6bc5b90ee833f9fe8af06ceeba3f91c4aa7370f87c398691c937d
test-bench-deps: {}
maintainer: yairchu@gmail.com
synopsis: Trees and monadic trees expressed as monadic lists where the underlying
monad is a list
changelog: ''
basic-deps:
List: ! '>=0.4.0 && <0.6.0'
base: ! '>=3 && <5'
filepath: ! '>=1.1 && <2.0'
transformers: ! '>=0.2'
directory: ! '>=1.0 && <2.0'
all-versions:
- '0.1'
- '0.2.0'
- '0.2.1'
- '0.2.2'
author: Yair Chuchem
latest: '0.2.2'
description-type: haddock
description: ! 'Directory tree structure expressed as a monadic tree.
Searching, pruning, iterating, and processing trees.'
license-name: BSD3
| homepage: http://github.com/yairchu/generator/tree
changelog-type: ''
hash: 425843b79e7a9a48522f83e117163f158ad9ffd446a6ed99aa15cdb061548764
test-bench-deps: {}
maintainer: yairchu@gmail.com
synopsis: Trees and monadic trees expressed as monadic lists where the underlying
monad is a list
changelog: ''
basic-deps:
List: ! '>=0.4.0'
base: ! '>=3 && <5'
filepath: ! '>=1.1 && <2.0'
transformers: ! '>=0.2'
directory: ! '>=1.0 && <2.0'
all-versions:
- '0.1'
- '0.2.0'
- '0.2.1'
- '0.2.2'
- '0.2.3'
author: Yair Chuchem
latest: '0.2.3'
description-type: haddock
description: ! 'Directory tree structure expressed as a monadic tree.
Searching, pruning, iterating, and processing trees.'
license-name: BSD3
|
Update Text Launcher to 1.3.2 (8) | Categories:
- Theming
License: MIT
AuthorName: Ademar Alves de Oliveira
SourceCode: https://gitlab.com/ademar111190/textlauncher
IssueTracker: https://gitlab.com/ademar111190/textlauncher/-/issues
AutoName: Text Launcher
RepoType: git
Repo: https://gitlab.com/ademar111190/textlauncher.git
Builds:
- versionName: 1.3.1
versionCode: 7
commit: 1.3.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.3.1
CurrentVersionCode: 7
| Categories:
- Theming
License: MIT
AuthorName: Ademar Alves de Oliveira
SourceCode: https://gitlab.com/ademar111190/textlauncher
IssueTracker: https://gitlab.com/ademar111190/textlauncher/-/issues
AutoName: Text Launcher
RepoType: git
Repo: https://gitlab.com/ademar111190/textlauncher.git
Builds:
- versionName: 1.3.1
versionCode: 7
commit: 1.3.1
subdir: app
gradle:
- yes
- versionName: 1.3.2
versionCode: 8
commit: 9f305adc3db2d90f45a13edb535a9ce9fcee8d27
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.3.2
CurrentVersionCode: 8
|
Update CV of Spider to 0.2.0 (11) | Categories:
- Connectivity
License: AGPL-3.0-or-later
SourceCode: https://github.com/nickdurante/Spider
IssueTracker: https://github.com/nickdurante/Spider/issues
AutoName: Spider
RepoType: git
Repo: https://github.com/nickdurante/Spider
Builds:
- versionName: 0.1.6
versionCode: 7
commit: v0.1.6
subdir: app
gradle:
- yes
- versionName: 0.1.8
versionCode: 9
commit: v0.1.8
subdir: app
gradle:
- yes
- versionName: 0.1.9
versionCode: 10
commit: v0.1.9
subdir: app
gradle:
- yes
- versionName: 0.2.0
versionCode: 11
commit: v0.2.0
subdir: app
gradle:
- yes
- versionName: 0.2.1
versionCode: 12
commit: v0.2.1
subdir: app
gradle:
- yes
- versionName: 0.2.2
versionCode: 13
commit: v0.2.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.2.2
CurrentVersionCode: 13
| Categories:
- Connectivity
License: AGPL-3.0-or-later
SourceCode: https://github.com/nickdurante/Spider
IssueTracker: https://github.com/nickdurante/Spider/issues
AutoName: Spider
RepoType: git
Repo: https://github.com/nickdurante/Spider
Builds:
- versionName: 0.1.6
versionCode: 7
commit: v0.1.6
subdir: app
gradle:
- yes
- versionName: 0.1.8
versionCode: 9
commit: v0.1.8
subdir: app
gradle:
- yes
- versionName: 0.1.9
versionCode: 10
commit: v0.1.9
subdir: app
gradle:
- yes
- versionName: 0.2.0
versionCode: 11
commit: v0.2.0
subdir: app
gradle:
- yes
- versionName: 0.2.1
versionCode: 12
commit: v0.2.1
subdir: app
gradle:
- yes
- versionName: 0.2.2
versionCode: 13
commit: v0.2.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.2.0
CurrentVersionCode: 11
|
Remove dependency install pre_tasks; add curl mirror variable. | ---
- hosts: localhost
become: true
vars:
# geerlingguy.git
git_install_from_source: false
git_install_from_source_force_update: false
git_version: 2.9.3
# fubarhouse.curl
curl_configure_flags:
- disable-shared
# fubarhouse.nodejs
install_ivm: true
install_iojs: true
node_version: 7.9.0
node_versions:
- 1.0.0
- 2.0.0
- 3.0.0
- 4.0.0
- 5.0.0
- 6.0.0
- 7.0.0
node_packages:
- grunt
pre_tasks:
# Debian
- name: Update apt cache.
apt:
update_cache: yes
cache_valid_time: 600
when: ansible_os_family == 'Debian'
changed_when: false
failed_when: false
# RedHat
- shell: dnf clean all --enablerepo=\*
changed_when: false
failed_when: false
# Install dependencies
- name: Install dependencies.
package:
name:: "{{ item }}"
state: installed
with_items:
- curl
- findutils
- git
- git-svn
- rsync
- openssh-server
- openssh-client
- python
- python-dev
- unzip
- tar
- gtar
- gzip
- wget
- gettext-devel
- expat-devel
- curl-devel
- zlib-devel
- perl-devel
- openssl-devel
- subversion-perl
- make
- libdevel
- libcurl4-openssl-dev
- libexpat1-dev
- gettext
- libssl-dev
- build-essential
- zip
- xz-utils
- sudo
failed_when: false
changed_when: false
roles:
- fubarhouse.curl
- geerlingguy.git
- role_under_test
| ---
- hosts: localhost
become: true
vars:
# geerlingguy.git
git_install_from_source: false
git_install_from_source_force_update: false
# fubarhouse.curl
curl_source: http://curl.askapache.com/download
curl_configure_flags:
- disable-shared
# fubarhouse.nodejs
install_ivm: true
install_iojs: true
node_version: 7.9.0
node_versions:
- 1.0.0
- 2.0.0
- 3.0.0
- 4.0.0
- 5.0.0
- 6.0.0
- 7.0.0
node_packages:
- grunt
roles:
- fubarhouse.curl
- geerlingguy.git
- role_under_test
|
Update from Hackage at 2020-01-30T15:54:55Z | homepage: https://github.com/andrewthad/colonnade#readme
changelog-type: ''
hash: d763678b4861b6b17ac1c927338509a44af2833b1bd1321300c3637531befd31
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: Helper functions for using yesod with colonnade
changelog: ''
basic-deps:
yesod-elements: ! '>=1.1 && <1.2'
yesod-core: ! '>=1.6 && <1.7'
base: ! '>=4.9.1.0 && <4.13'
blaze-markup: ! '>=0.7 && <0.9'
text: ! '>=1.0 && <1.3'
conduit: ! '>=1.3 && <1.4'
conduit-extra: ! '>=1.3 && <1.4'
colonnade: ! '>=1.2 && <1.3'
blaze-html: ! '>=0.8 && <0.10'
all-versions:
- '0.1'
- '0.2'
- '0.4'
- 1.1.0
- 1.2.0
- 1.3.0
- 1.3.0.1
author: Andrew Martin
latest: 1.3.0.1
description-type: haddock
description: Yesod and colonnade
license-name: BSD-3-Clause
| homepage: https://github.com/andrewthad/colonnade#readme
changelog-type: ''
hash: 441e55d425755fb1b8fd9c8808ae0481cdaf748d8c31bdd657a1caa5bb637f7c
test-bench-deps: {}
maintainer: andrew.thaddeus@gmail.com
synopsis: Helper functions for using yesod with colonnade
changelog: ''
basic-deps:
yesod-elements: ! '>=1.1 && <1.2'
yesod-core: ! '>=1.6 && <1.7'
base: ! '>=4.9.1.0 && <4.14'
blaze-markup: ! '>=0.7 && <0.9'
text: ! '>=1.0 && <1.3'
conduit: ! '>=1.3 && <1.4'
conduit-extra: ! '>=1.3 && <1.4'
colonnade: ! '>=1.2 && <1.3'
blaze-html: ! '>=0.8 && <0.10'
all-versions:
- '0.1'
- '0.2'
- '0.4'
- 1.1.0
- 1.2.0
- 1.3.0
- 1.3.0.1
author: Andrew Martin
latest: 1.3.0.1
description-type: haddock
description: Yesod and colonnade
license-name: BSD-3-Clause
|
Update from Hackage at 2016-12-23T09:22:37Z | homepage: ''
changelog-type: ''
hash: 6d373617e08692207691d95405fae7c1c853939d8cf6bad9eb9fd5824b55b9d8
test-bench-deps: {}
maintainer: Hamish Mackenzie <Hamish.K.Mackenzie@googlemail.com>
synopsis: Interface for JavaScript that works with GHCJS and GHC
changelog: ''
basic-deps:
bytestring: ! '>=0.10.6.0 && <0.11'
base: <5
aeson: ! '>=0.8.0.2 && <1.1'
jsaddle: ! '>=0.8.0.0 && <0.9'
all-versions:
- '0.6.0.0'
- '0.7.0.0'
- '0.8.0.0'
author: Hamish Mackenzie
latest: '0.8.0.0'
description-type: haddock
description: ! 'This package provides an EDSL for calling JavaScript that
can be used both from GHCJS and GHC. When using GHC
the application is run using Warp and WebSockets to
drive a small JavaScipt helper.'
license-name: MIT
| homepage: ''
changelog-type: ''
hash: af07ad2af2a8c59af928edd53c942cecf576c7e8c1e9229d722d5e94237d2f1f
test-bench-deps: {}
maintainer: Hamish Mackenzie <Hamish.K.Mackenzie@googlemail.com>
synopsis: Interface for JavaScript that works with GHCJS and GHC
changelog: ''
basic-deps:
bytestring: ! '>=0.10.6.0 && <0.11'
base: <5
aeson: ! '>=0.8.0.2 && <1.1'
jsaddle: ! '>=0.8.0.0 && <0.9'
all-versions:
- '0.6.0.0'
- '0.7.0.0'
- '0.8.0.0'
- '0.8.1.0'
author: Hamish Mackenzie
latest: '0.8.1.0'
description-type: haddock
description: ! 'This package provides an EDSL for calling JavaScript that
can be used both from GHCJS and GHC. When using GHC
the application is run using Warp and WebSockets to
drive a small JavaScipt helper.'
license-name: MIT
|
Update Virtuosity to 1.0.1 (2) | Categories:
- Multimedia
- Science & Education
- Writing
License: GPL-3.0-or-later
AuthorName: Ramzan Sheikh
SourceCode: https://github.com/ramzan/virtuosity
IssueTracker: https://github.com/ramzan/virtuosity/issues
Changelog: https://github.com/ramzan/virtuosity/releases
AutoName: Virtuosity
RepoType: git
Repo: https://github.com/ramzan/virtuosity
Builds:
- versionName: 1.0.0
versionCode: 1
commit: v1.0.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.0
CurrentVersionCode: 1
| Categories:
- Multimedia
- Science & Education
- Writing
License: GPL-3.0-or-later
AuthorName: Ramzan Sheikh
SourceCode: https://github.com/ramzan/virtuosity
IssueTracker: https://github.com/ramzan/virtuosity/issues
Changelog: https://github.com/ramzan/virtuosity/releases
AutoName: Virtuosity
RepoType: git
Repo: https://github.com/ramzan/virtuosity
Builds:
- versionName: 1.0.0
versionCode: 1
commit: v1.0.0
subdir: app
gradle:
- yes
- versionName: 1.0.1
versionCode: 2
commit: 10b3bc8f7d39f9906a7c7c6ceda95cb5ce75eb74
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.1
CurrentVersionCode: 2
|
Add Python3 wallaby unit tests | - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-victoria-jobs
- release-notes-jobs-python3
gate:
queue: os-win
| - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-wallaby-jobs
- release-notes-jobs-python3
gate:
queue: os-win
|
Update default etcd server to 3.3.15 for kubernetes 1.16 | apiVersion: v1
kind: ReplicationController
metadata:
name: wardle-server
namespace: wardle
labels:
apiserver: "true"
spec:
replicas: 1
selector:
apiserver: "true"
template:
metadata:
labels:
apiserver: "true"
spec:
serviceAccountName: apiserver
containers:
- name: wardle-server
# build from staging/src/k8s.io/sample-apiserver/artifacts/simple-image/Dockerfile
# or
# docker pull gcr.io/kubernetes-e2e-test-images/sample-apiserver:1.10
# docker tag gcr.io/kubernetes-e2e-test-images/sample-apiserver:1.10 kube-sample-apiserver:latest
image: kube-sample-apiserver:latest
imagePullPolicy: Never
args: [ "--etcd-servers=http://localhost:2379" ]
- name: etcd
image: quay.io/coreos/etcd:v3.3.10
| apiVersion: v1
kind: ReplicationController
metadata:
name: wardle-server
namespace: wardle
labels:
apiserver: "true"
spec:
replicas: 1
selector:
apiserver: "true"
template:
metadata:
labels:
apiserver: "true"
spec:
serviceAccountName: apiserver
containers:
- name: wardle-server
# build from staging/src/k8s.io/sample-apiserver/artifacts/simple-image/Dockerfile
# or
# docker pull gcr.io/kubernetes-e2e-test-images/sample-apiserver:1.10
# docker tag gcr.io/kubernetes-e2e-test-images/sample-apiserver:1.10 kube-sample-apiserver:latest
image: kube-sample-apiserver:latest
imagePullPolicy: Never
args: [ "--etcd-servers=http://localhost:2379" ]
- name: etcd
image: quay.io/coreos/etcd:v3.3.15
|
Use 'npm ci' for faster installs | name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Check code formatting
run: npm run format
- name: Run tests
run: npm test
- name: Run coverage
run: npm run coverage
- name: Prepare coverage report
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
| name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: npm ci
- name: Check code formatting
run: npm run format
- name: Run tests
run: npm test
- name: Run coverage
run: npm run coverage
- name: Prepare coverage report
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
|
Update from Hackage at 2015-11-18T01:36:42+0000 | homepage: https://github.com/plredmond/GPipe-GLFW
changelog-type: ''
hash: e9861d6bc692d9d437a0c004a418a4798bd2d37934d877c3a97200d2bd74d53d
test-bench-deps: {}
maintainer: Patrick Redmond
synopsis: GLFW OpenGL context creation for GPipe
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.9'
GPipe: ! '>=2.1 && <2.2'
GLFW-b: ! '>=1.4 && <1.5'
transformers: ! '>=0.3 && <0.5'
all-versions:
- '1.0'
- '1.1'
author: Patrick Redmond
latest: '1.1'
description-type: haddock
description: ! 'A utility library to enable the use of GLFW as the OpenGL window and
context handler for GPipe.
GPipe is a typesafe functional API based on the conceptual model of OpenGL, but
without the imperative state machine.
See the GPipe package and resources for more information.'
license-name: MIT
| homepage: https://github.com/plredmond/GPipe-GLFW
changelog-type: ''
hash: 2480e69d46bb06b028df2fb251a7a844418ea785fe9de4705f65640a67a6c06c
test-bench-deps: {}
maintainer: Patrick Redmond
synopsis: GLFW OpenGL context creation for GPipe
changelog: ''
basic-deps:
base: ! '>=4.7 && <4.9'
GPipe: ! '>=2.1 && <2.2'
GLFW-b: ! '>=1.4 && <1.5'
transformers: ! '>=0.3 && <0.5'
all-versions:
- '1.0'
- '1.1'
- '1.2.1'
author: Patrick Redmond
latest: '1.2.1'
description-type: haddock
description: ! 'A utility library to enable the use of GLFW as the OpenGL window and
context handler for GPipe.
GPipe is a typesafe functional API based on the conceptual model of OpenGL, but
without the imperative state machine.
See the GPipe package and resources for more information.'
license-name: MIT
|
Add Debian 11 to supported distributions | ---
galaxy_info:
author: Musee Ullah
description: Installs and configures NetBox, a DCIM suite, in a production setting.
license: MIT
min_ansible_version: 2.5
platforms:
- name: Ubuntu
versions:
- bionic
- xenial
- focal
- name: Debian
versions:
- buster
- stretch
- name: EL
versions:
- 7
galaxy_tags:
- dcim
- ipam
- web
- networking
- datacenter
dependencies: []
| ---
galaxy_info:
author: Musee Ullah
description: Installs and configures NetBox, a DCIM suite, in a production setting.
license: MIT
min_ansible_version: 2.5
platforms:
- name: Ubuntu
versions:
- bionic
- xenial
- focal
- name: Debian
versions:
- buster
- stretch
- bullseye
- name: EL
versions:
- 7
galaxy_tags:
- dcim
- ipam
- web
- networking
- datacenter
dependencies: []
|
Migrate to compose file version 3 | version: '2'
services:
test:
image: node:7
volumes:
- .:/app
working_dir: /app
command: npm install-test
| version: '3'
services:
test:
image: node:7
volumes:
- .:/app
working_dir: /app
command: npm install-test
|
Set iscsi timeouts for root rpi disks | ---
- name: RPi netboot special | Hold kernels
dpkg_selections:
name: "{{ item }}"
selection: hold
loop:
- linux-headers-raspi
- linux-image-raspi
- linux-raspi
- name: RPi netboot special | NFS dependencies
apt:
pkg:
- nfs-common
- open-iscsi
- v4l2loopback-dkms
state: present
- name: RPi netboot special | Add v4l2loopback module
lineinfile:
dest: /etc/modules
regexp: "^v4l2loopback"
line: "v4l2loopback"
- name: RPi netboot special | Mask unwanted services
systemd:
name: "{{ item }}"
masked: true
loop:
- lvm2-lvmpolld.socket
- lvm2-monitor.service
- multipathd.service
- unattended-upgrades.service
- firewalld.service
- ufw.service
- fwupd.service
- fwupd-refresh.timer
| ---
- name: RPi netboot special | Hold kernels
dpkg_selections:
name: "{{ item }}"
selection: hold
loop:
- linux-headers-raspi
- linux-image-raspi
- linux-raspi
- name: RPi netboot special | NFS dependencies
apt:
pkg:
- nfs-common
- open-iscsi
- v4l2loopback-dkms
state: present
# https://github.com/open-iscsi/open-iscsi/blob/a8fcb3737cabcf79a3a3663f43930a158d606782/README#L1557
- name: RPi netboot special | Set iSCSI timeouts
lineinfile:
path: /etc/iscsi/iscsid.conf
regexp: "^{{ item.key }}"
line: "{{ item.key }} = {{ item.value }}"
backrefs: true
loop:
- key: node.conn[0].timeo.noop_out_interval
value: 0
- key: node.conn[0].timeo.noop_out_timeout
value: 0
- key: node.session.timeo.replacement_timeout
value: 86400
- name: RPi netboot special | Add v4l2loopback module
lineinfile:
dest: /etc/modules
regexp: "^v4l2loopback"
line: "v4l2loopback"
- name: RPi netboot special | Mask unwanted services
systemd:
name: "{{ item }}"
masked: true
loop:
- lvm2-lvmpolld.socket
- lvm2-monitor.service
- multipathd.service
- unattended-upgrades.service
- firewalld.service
- ufw.service
- fwupd.service
- fwupd-refresh.timer
|
Remove placeholder comment from pipeline file | name: PR Build
on: pull_request
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
jdk: [8, 11]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.jdk }}
- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
- name: Build with Gradle
run: ./gradlew clean build --no-daemon --stacktrace
# placeholder comment
| name: PR Build
on: pull_request
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
jdk: [8, 11]
fail-fast: false
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.jdk }}
- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
- name: Build with Gradle
run: ./gradlew clean build --no-daemon --stacktrace
|
Add Python3 wallaby unit tests | - project:
templates:
- check-requirements
- horizon-non-primary-django-jobs
- openstack-cover-jobs-horizon
- openstack-lower-constraints-jobs
- openstack-python3-victoria-jobs-horizon
| - project:
templates:
- check-requirements
- horizon-non-primary-django-jobs
- openstack-cover-jobs-horizon
- openstack-lower-constraints-jobs
- openstack-python3-wallaby-jobs-horizon
|
Reconnect to db on failure. | test:
adapter: mysql2
database: autolab_test
pool: 5
username: root
password: ''
socket: /var/run/mysqld/mysqld.sock
host: localhost
| test:
adapter: mysql2
database: autolab_test
pool: 5
username: root
password: ''
socket: /var/run/mysqld/mysqld.sock
host: localhost
reconnect: true
|
Revert "Still trying to add artifact" | image: Visual Studio 2017 Preview
environment:
msbuild: C:\Program Files (x86)\Microsoft Visual Studio\Preview\Community\MSBuild\15.0\bin
build: off
build_script:
- cmd: set PATH=%PATH%;C:\Program Files (x86)\Microsoft SDKs\F#\4.1\Framework\v4.0\
- cmd: fsi --exec ./build.fsx
test: off
artifacts:
- path: '**\*.nupkg'
| image: Visual Studio 2017 Preview
environment:
msbuild: C:\Program Files (x86)\Microsoft Visual Studio\Preview\Community\MSBuild\15.0\bin
build: off
build_script:
- cmd: set PATH=%PATH%;C:\Program Files (x86)\Microsoft SDKs\F#\4.1\Framework\v4.0\
- cmd: fsi --exec ./build.fsx
test: off
artifacts:
- path: '**\bin\*\*.nupkg'
|
Upgrade boost recipe to 1.56.0 | package:
name: boost
version: "1.55.0"
source:
fn: boost_1_55_0.zip # [win]
url: http://sourceforge.net/projects/boost/files/boost/1.55.0/boost_1_55_0.zip/download # [win]
sha1: 1d479557177c49d74001c904979b60cce8cc2d12 # [win]
fn: boost_1_55_0.tar.bz2 # [unix]
url: http://sourceforge.net/projects/boost/files/boost/1.55.0/boost_1_55_0.tar.bz2/download # [unix]
sha1: cef9a0cc7084b1d639e06cd3bc34e4251524c840 # [unix]
build:
number: 1
requirements:
build:
- python
- bzip2 1.0.6
- zlib 1.2.7
run:
- python
- bzip2 1.0.6
- zlib 1.2.7
about:
home: http://www.boost.org/
license: Boost Software License
| package:
name: boost
version: "1.56.0"
source:
fn: boost_1_56_0.zip # [win]
url: http://sourceforge.net/projects/boost/files/boost/1.56.0/boost_1_56_0.zip/download # [win]
sha1: 15b9719a92cd2a80170d54cfb9c3990a56193c56 # [win]
fn: boost_1_56_0.tar.gz # [unix]
url: http://sourceforge.net/projects/boost/files/boost/1.56.0/boost_1_56_0.tar.gz/download # [unix]
sha1: 1639723c6bdff873cdb6d747f8f8c9d9f066434d # [unix]
build:
number: 0
requirements:
build:
- python
- bzip2 1.0.6
- zlib 1.2.7
run:
- python
- bzip2 1.0.6
- zlib 1.2.7
about:
home: http://www.boost.org/
license: Boost Software License
|
Revert back to original config | dependencies:
pre:
- sudo apt-get update; sudo apt-get install pdftk
- wget https://chromedriver.storage.googleapis.com/2.36/chromedriver_linux64.zip
- unzip chromedriver_linux64.zip
- sudo cp chromedriver /usr/local/bin/chromedriver
- curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- sudo dpkg -i google-chrome.deb
- sudo sed -i 's|HERE/chrome\"|HERE/chrome\" --disable-setuid-sandbox|g' /opt/google/chrome/google-chrome
- rm google-chrome.deb
post:
- bundle exec bundle-audit update && bundle exec bundle-audit check
- bundle exec brakeman
test:
override:
- "RAILS_ENV=test bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml":
- timeout: 1200
post:
- bundle exec codeclimate-test-reporter $CIRCLE_ARTIFACTS/coverage/.resultset.json
deployment:
staging:
branch: master
commands:
- "[[ ! -s \"$(git rev-parse --git-dir)/shallow\" ]] || git fetch --unshallow"
- git push git@heroku.com:michigan-benefits-staging.git $CIRCLE_SHA1:refs/heads/master
general:
branches:
ignore:
- /WIP-.*/
| dependencies:
pre:
- sudo apt-get update; sudo apt-get install pdftk
- wget https://chromedriver.storage.googleapis.com/2.36/chromedriver_linux64.zip
- unzip chromedriver_linux64.zip
- sudo cp chromedriver /usr/local/bin/chromedriver
- curl -L -o google-chrome.deb https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- sudo dpkg -i google-chrome.deb
- sudo sed -i 's|HERE/chrome\"|HERE/chrome\" --disable-setuid-sandbox|g' /opt/google/chrome/google-chrome
- rm google-chrome.deb
post:
- bundle exec bundle-audit update && bundle exec bundle-audit check
- bundle exec brakeman
test:
override:
- RAILS_ENV=test bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml
post:
- bundle exec codeclimate-test-reporter $CIRCLE_ARTIFACTS/coverage/.resultset.json
deployment:
staging:
branch: master
commands:
- "[[ ! -s \"$(git rev-parse --git-dir)/shallow\" ]] || git fetch --unshallow"
- git push git@heroku.com:michigan-benefits-staging.git $CIRCLE_SHA1:refs/heads/master
general:
branches:
ignore:
- /WIP-.*/
|
Remove exposed mysql port which clashes with mysql on travis. | version: '2'
services:
db:
image: mysql:latest
environment:
- MYSQL_DATABASE=testdb
- MYSQL_USER=testuser
- MYSQL_PASSWORD=testpassword
- MYSQL_ROOT_PASSWORD=rootp4ssword
ports:
- "3306:3306"
app:
image: debian:jessie
volumes:
- .:/app
web:
image: rolckers/web-apache-php
ports:
- "8000:80"
depends_on:
- db
links:
- db
volumes_from:
- app
composer:
image: rolckers/web-apache-php
entrypoint:
- composer
command: --help
volumes_from:
- app
artisan:
image: rolckers/web-apache-php
entrypoint:
- php
- artisan
command: --help
links:
- db
volumes_from:
- app
phpunit:
image: rolckers/web-apache-php
entrypoint:
- vendor/bin/phpunit
links:
- db
volumes_from:
- app
npm:
image: rolckers/web-nodejs
command: --help
entrypoint:
- npm
volumes_from:
- app
gulp:
image: rolckers/web-nodejs
command: --help
entrypoint:
- gulp
volumes_from:
- app
| version: '2'
services:
db:
image: mysql:latest
environment:
- MYSQL_DATABASE=testdb
- MYSQL_USER=testuser
- MYSQL_PASSWORD=testpassword
- MYSQL_ROOT_PASSWORD=rootp4ssword
app:
image: debian:jessie
volumes:
- .:/app
web:
image: rolckers/web-apache-php
ports:
- "8000:80"
depends_on:
- db
links:
- db
volumes_from:
- app
composer:
image: rolckers/web-apache-php
entrypoint:
- composer
command: --help
volumes_from:
- app
artisan:
image: rolckers/web-apache-php
entrypoint:
- php
- artisan
command: --help
links:
- db
volumes_from:
- app
phpunit:
image: rolckers/web-apache-php
entrypoint:
- vendor/bin/phpunit
links:
- db
volumes_from:
- app
npm:
image: rolckers/web-nodejs
command: --help
entrypoint:
- npm
volumes_from:
- app
gulp:
image: rolckers/web-nodejs
command: --help
entrypoint:
- gulp
volumes_from:
- app
|
Use snake_case for service names | version: '2'
services:
girder:
build:
context: .
dockerfile: girder/Dockerfile
command: -d ${MONGODB_URL}
volumes:
- assetstore:/assetstore
nginx:
build:
context: nginx
dockerfile: Dockerfile
ports:
- 8080:80
depends_on:
- 'girder'
rabbitmq:
image: rabbitmq
celery-command:
build:
context: .
dockerfile: celery/Dockerfile
command: celery worker --app=cumulus -b ${RABBITMQ_URL} -n command --config=cumulus.celery.commandconfig --loglevel=INFO
depends_on:
- 'rabbitmq'
celery-monitor:
build:
context: .
dockerfile: celery/Dockerfile
command: celery worker --app=cumulus -b ${RABBITMQ_URL} -n monitor -Q monitor --config=cumulus.celery.monitorconfig --loglevel=INFO
depends_on:
- 'rabbitmq'
volumes:
assetstore:
| version: '2'
services:
girder:
build:
context: .
dockerfile: girder/Dockerfile
command: -d ${MONGODB_URL}
volumes:
- assetstore:/assetstore
nginx:
build:
context: nginx
dockerfile: Dockerfile
ports:
- 8080:80
depends_on:
- 'girder'
rabbitmq:
image: rabbitmq
celery_command:
build:
context: .
dockerfile: celery/Dockerfile
env_file:
- celery/celery.env
command: celery worker --app=cumulus -b ${RABBITMQ_URL} -n command --config=cumulus.celery.commandconfig --loglevel=INFO
depends_on:
- 'rabbitmq'
celery_monitor:
build:
context: .
dockerfile: celery/Dockerfile
command: celery worker --app=cumulus -b ${RABBITMQ_URL} -n monitor -Q monitor --config=cumulus.celery.monitorconfig --loglevel=INFO
depends_on:
- 'rabbitmq'
volumes:
assetstore:
|
Switch back from postgis:log to postgis:latest | # see domain-specific .yml for documentation
wu:
image: systemapic/wu:latest
environment:
SYSTEMAPIC_DOMAIN: ${SYSTEMAPIC_DOMAIN}
SYSTEMAPIC_PRODMODE: 'true'
working_dir: /systemapic/prod # todo: remove (currently needed for doing `docker run ../... grunt test`, but can be fixed with `./test.sh` script, or something better)
volumes:
- ../../modules/wu:/systemapic/dev
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
pile:
image: systemapic/pile:latest
environment:
SYSTEMAPIC_DOMAIN: ${SYSTEMAPIC_DOMAIN}
SYSTEMAPIC_PRODMODE: 'true'
volumes:
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
- ../../modules/pile:/systemapic/dev
nginx:
image: systemapic/nginx:latest
volumes:
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
redis:
image: redis:latest
volumes:
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
mongo:
image: systemapic/mongo:latest
volumes:
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
postgis:
# image: systemapic/postgis:latest
image: systemapic/postgis:log
volumes:
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
| # see domain-specific .yml for documentation
wu:
image: systemapic/wu:latest
environment:
SYSTEMAPIC_DOMAIN: ${SYSTEMAPIC_DOMAIN}
SYSTEMAPIC_PRODMODE: 'true'
working_dir: /systemapic/prod # todo: remove (currently needed for doing `docker run ../... grunt test`, but can be fixed with `./test.sh` script, or something better)
volumes:
- ../../modules/wu:/systemapic/dev
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
pile:
image: systemapic/pile:latest
environment:
SYSTEMAPIC_DOMAIN: ${SYSTEMAPIC_DOMAIN}
SYSTEMAPIC_PRODMODE: 'true'
volumes:
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
- ../../modules/pile:/systemapic/dev
nginx:
image: systemapic/nginx:latest
volumes:
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
redis:
image: redis:latest
volumes:
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
mongo:
image: systemapic/mongo:latest
volumes:
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
postgis:
# image: systemapic/postgis:latest
image: systemapic/postgis:latest
volumes:
- ../../config/${SYSTEMAPIC_DOMAIN}:/systemapic/config
|
Add versions to github workflows | name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
| name: Test
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 15.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
|
Define event triggers for GH actions | jobs:
build:
name: Test Go ${{ matrix.go }}
runs-on: ubuntu-20.04
strategy:
matrix:
go: ['1.17', '1.16']
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go test ./...
| on: [push, pull_request]
name: Test
jobs:
test:
name: Test Go ${{ matrix.go }}
runs-on: ubuntu-20.04
strategy:
matrix:
go: ['1.17', '1.16']
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test ./...
|
Remove VS2010, add VS2017 from CI | configuration:
- Debug
- Release
environment:
matrix:
- generator: "Visual Studio 14 2015"
- generator: "Visual Studio 14 2015 Win64"
- generator: "Visual Studio 10 2010"
- generator: "Visual Studio 10 2010 Win64"
- generator: "MinGW Makefiles"
dialect: mingw
- generator: "MinGW Makefiles"
dialect: mingw-w64
matrix:
fast_finish: true
shallow_clone: true
before_build:
# Workaround for CMake not wanting sh.exe on PATH for MinGW
- set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
- if "%dialect%"=="mingw" set PATH=c:\MinGW\bin;%PATH%
- if "%dialect%"=="mingw-w64" set PATH=c:\msys64\mingw64\bin;%PATH%
- cmake -H. -Bbuild -G"%generator%" -DCMAKE_BUILD_TYPE=%configuration%
build_script:
- if "%generator:~0,6%"=="Visual" set CMAKE_BUILD_FLAGS=--config %configuration% -- /m /v:m
- if "%generator:~0,5%"=="MinGW" set CMAKE_BUILD_FLAGS=-- -j
- cmake --build build %CMAKE_BUILD_FLAGS% | configuration:
- Debug
- Release
environment:
matrix:
- generator: "Visual Studio 14 2015"
- generator: "Visual Studio 14 2015 Win64"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
generator: "Visual Studio 15 2017 Win64"
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
generator: "Visual Studio 15 2017"
- generator: "MinGW Makefiles"
dialect: mingw
- generator: "MinGW Makefiles"
dialect: mingw-w64
matrix:
fast_finish: true
shallow_clone: true
before_build:
# Workaround for CMake not wanting sh.exe on PATH for MinGW
- set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
- if "%dialect%"=="mingw" set PATH=c:\MinGW\bin;%PATH%
- if "%dialect%"=="mingw-w64" set PATH=c:\msys64\mingw64\bin;%PATH%
- cmake . -Bbuild -G"%generator%" -DCMAKE_BUILD_TYPE=%configuration%
build_script:
- if "%generator:~0,6%"=="Visual" set CMAKE_BUILD_FLAGS=--config %configuration% -- /m /v:m
- if "%generator:~0,5%"=="MinGW" set CMAKE_BUILD_FLAGS=-- -j
- cmake --build build %CMAKE_BUILD_FLAGS% |
Define the right version on the hiera data | ---
git::configdir: "%{::boxen::config::configdir}/git"
git::package: 'boxen/brews/git'
git::version: '1.8.4-boxen2'
git::credentialhelper: "%{::boxen::config::repodir}/script/boxen-git-credential"
git::global_credentialhelper: "%{boxen::config::home}/bin/boxen-git-credential"
git::global_excludesfile: "%{hiera('git::configdir')}/gitignore"
| ---
git::configdir: "%{::boxen::config::configdir}/git"
git::package: 'boxen/brews/git'
git::version: '2.0.0-boxen1'
git::credentialhelper: "%{::boxen::config::repodir}/script/boxen-git-credential"
git::global_credentialhelper: "%{boxen::config::home}/bin/boxen-git-credential"
git::global_excludesfile: "%{hiera('git::configdir')}/gitignore"
|
Update from Hackage at 2017-06-18T11:48:19Z | homepage: https://github.com/paolino/kmp-dfa
changelog-type: markdown
hash: 5b61a0c6096026bfb53728bce1610c6c5050d2c13e670534a52c3181a3be4ec0
test-bench-deps: {}
maintainer: paolo.veronelli@gmail.com
synopsis: KMP algorithm implementation based on Deterministic Finite State Automata
changelog: ! '# Revision history for kmp-dfa
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
base: ! '>=4.9 && <4.10'
array: ! '>=0.5 && <0.6'
all-versions:
- '0.1.0.0'
author: paolo veronelli
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: BSD3
| homepage: https://github.com/paolino/kmp-dfa
changelog-type: markdown
hash: 45c90e44e6426f7841a75494a33d8b28ac7aec46b326f347d34244da04378798
test-bench-deps:
base: ! '>=4.9 && <4.10'
array: ! '>=0.5 && <0.6'
kmp-dfa: -any
QuickCheck: -any
maintainer: paolo.veronelli@gmail.com
synopsis: KMP algorithm implementation, based on Deterministic Finite State Automata
changelog: ! '# Revision history for kmp-dfa
## 0.1.0.0 -- YYYY-mm-dd
* First version. Released on an unsuspecting world.
'
basic-deps:
base: ! '>=4.9 && <4.10'
array: ! '>=0.5 && <0.6'
QuickCheck: -any
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: paolo veronelli
latest: '0.1.0.1'
description-type: haddock
description: ''
license-name: BSD3
|
Update from Hackage at 2016-09-14T20:31:58+0000 | homepage: https://github.com/erebe/systemd
changelog-type: ''
hash: 00adb479fc086413f7f638387c0cdb585f3ff15868981278126248db7e428641
test-bench-deps:
base: ! '>=4.7 && <=4.8.1.0'
systemd: -any
maintainer: romain.gerard@erebe.eu
synopsis: Systemd facilities (Socket activation, Notify)
changelog: ''
basic-deps:
bytestring: ! '>=0.10'
unix: ! '>=2.5'
base: ==4.*
network: ! '>=2.3'
transformers: ! '>=0.3'
all-versions:
- '0.1.0.1'
- '1.0.0'
- '1.0.1'
- '1.0.2'
author: Erèbe
latest: '1.0.2'
description-type: markdown
description: ! '#Haskell implementation for systemd
Systemd offers some functionnalities to developpers for creating daemons process
- Whatchdog (http://www.freedesktop.org/software/systemd/man/sd_notify.html)
- Socket activation (http://0pointer.de/blog/projects/socket-activation.html)
- journal log
Available on hackage
http://hackage.haskell.org/package/systemd-1.0.0/docs/System-Systemd-Daemon.html
'
license-name: BSD3
| homepage: https://github.com/erebe/systemd
changelog-type: ''
hash: 081b70b912f0df3a16efa58c6cb5950c9543078fece213828949e4a7a6e3fc93
test-bench-deps:
base: ==4.*
systemd: -any
maintainer: romain.gerard@erebe.eu
synopsis: Systemd facilities (Socket activation, Notify)
changelog: ''
basic-deps:
bytestring: ! '>=0.10'
unix: ! '>=2.5'
base: ==4.*
network: ! '>=2.3'
transformers: ! '>=0.3'
all-versions:
- '0.1.0.1'
- '1.0.0'
- '1.0.1'
- '1.0.2'
- '1.0.3'
author: Erèbe
latest: '1.0.3'
description-type: markdown
description: ! '#Haskell implementation for systemd
Systemd offers some functionnalities to developpers for creating daemons process
- Whatchdog (http://www.freedesktop.org/software/systemd/man/sd_notify.html)
- Socket activation (http://0pointer.de/blog/projects/socket-activation.html)
- journal log
Available on hackage
http://hackage.haskell.org/package/systemd-1.0.0/docs/System-Systemd-Daemon.html
'
license-name: BSD3
|
Build on node.js 0.12 and io.js 3.0.0 as well | language: node_js
node_js:
- "0.10"
before_install: "npm install -g npm && npm cache clean"
script: "npm run-script travis"
| language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs-3.0.0"
before_install: "npm install -g npm && npm cache clean"
script: "npm run-script travis"
|
Use rspec rather than rake | language: ruby
rvm:
- "1.9.3"
- "2.0.0"
# uncomment this line if your project needs to run something other than `rake`:
# # script: bundle exec rspec spec
#
| language: ruby
rvm:
- "1.9.3"
- "2.0.0"
# uncomment this line if your project needs to run something other than `rake`:
script: bundle exec rspec spec
#
|
Fix a path to the docker repo | sudo: required
language: bash
services:
- docker
env:
- PHP_RUNTIME='php:5.4-cli'
- PHP_RUNTIME='php:5.5-cli'
- PHP_RUNTIME='php:5.6-cli' PHPUNIT_OPTS='--coverage-clover=coverage.clover'
install:
- docker build -t tarantool/tarantool github.com/tarantool/tarantool-docker
- ./dockerfile.sh | tee /dev/tty | docker build -t queue -
script:
- docker run -d --name tarantool -v $(pwd):/queue tarantool/tarantool /queue/tests/Integration/queues.lua
- docker run --rm --name queue --link tarantool -v $(pwd):/queue -w /queue -e PHPUNIT_OPTS="$PHPUNIT_OPTS" queue
after_script:
- if [[ -f coverage.clover ]]; then
curl -sSOL https://scrutinizer-ci.com/ocular.phar &&
php ocular.phar code-coverage:upload --format=php-clover coverage.clover;
fi
| sudo: required
language: bash
services:
- docker
env:
- PHP_RUNTIME='php:5.4-cli'
- PHP_RUNTIME='php:5.5-cli'
- PHP_RUNTIME='php:5.6-cli' PHPUNIT_OPTS='--coverage-clover=coverage.clover'
install:
- docker build -t tarantool/tarantool github.com/tarantool/tarantool-docker#:1.7
- ./dockerfile.sh | tee /dev/tty | docker build -t queue -
script:
- docker run -d --name tarantool -v $(pwd):/queue tarantool/tarantool /queue/tests/Integration/queues.lua
- docker run --rm --name queue --link tarantool -v $(pwd):/queue -w /queue -e PHPUNIT_OPTS="$PHPUNIT_OPTS" queue
after_script:
- if [[ -f coverage.clover ]]; then
curl -sSOL https://scrutinizer-ci.com/ocular.phar &&
php ocular.phar code-coverage:upload --format=php-clover coverage.clover;
fi
|
Move rustdoc before cargo test | sudo: false
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
addons:
apt:
packages:
- gcc-multilib
- autoconf
- automake
- libtool
- yasm
- zlib1g-dev:i386
env:
global:
- RUST_BACKTRACE=1
- PKG_CONFIG_ALLOW_CROSS=1
cache:
cargo: true
directories:
- $HOME/ffmpeg
before_install:
- bash .travis/install-ffmpeg.sh
- ls -R "$HOME/ffmpeg"
- export PKG_CONFIG_PATH="$HOME/ffmpeg/lib/pkgconfig"
- export LD_LIBRARY_PATH="$HOME/ffmpeg/lib"
install:
- rustup target add i686-unknown-linux-gnu
script:
- cargo build --verbose
- cargo test --verbose
- rustdoc --no-defaults --passes "collapse-docs" --passes "unindent-comments" --crate-name hl_capture src/lib.rs --target i686-unknown-linux-gnu -o docs -L target/i686-unknown-linux-gnu/debug/deps
| sudo: false
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
addons:
apt:
packages:
- gcc-multilib
- autoconf
- automake
- libtool
- yasm
- zlib1g-dev:i386
env:
global:
- RUST_BACKTRACE=1
- PKG_CONFIG_ALLOW_CROSS=1
cache:
cargo: true
directories:
- $HOME/ffmpeg
before_install:
- bash .travis/install-ffmpeg.sh
- ls -R "$HOME/ffmpeg"
- export PKG_CONFIG_PATH="$HOME/ffmpeg/lib/pkgconfig"
- export LD_LIBRARY_PATH="$HOME/ffmpeg/lib"
install:
- rustup target add i686-unknown-linux-gnu
script:
- cargo build --verbose
- rustdoc --no-defaults --passes "collapse-docs" --passes "unindent-comments" --crate-name hl_capture src/lib.rs --target i686-unknown-linux-gnu -o docs -L target/i686-unknown-linux-gnu/debug/deps
- cargo test --verbose
|
Disable testing on Dart dev | language: dart
dart:
- stable
- dev
os:
- linux
- osx
- windows
# Shard tests to avoid running into Travis VM time limits, especially on Windows
# and OS X.
dart_task:
- test: --total-shards 3 --shard-index 0
- test: --total-shards 3 --shard-index 1
- test: --total-shards 3 --shard-index 2
before_install:
- if [[ "$TRAVIS_OS_NAME" = windows ]]; then
choco install nodejs.install;
export PATH="$PATH:/c/Program Files/nodejs";
fi
- git config --global user.email "travis@local"
- git config --global user.name "Travis CI"
matrix:
include:
- name: code formatting
dart: stable
dart_task: {dartfmt: --fix}
os: linux
- name: static analysis
dart: stable
dart_task: {dartanalyzer: --fatal-warnings --fatal-infos .}
os: linux
branches:
only: [master]
cache:
directories:
- $HOME/.pub-cache
| language: dart
dart:
- stable
# Testing on Dart dev is temporarily disabled due to dart-lang/pub#2713.
# - dev
os:
- linux
- osx
- windows
# Shard tests to avoid running into Travis VM time limits, especially on Windows
# and OS X.
dart_task:
- test: --total-shards 3 --shard-index 0
- test: --total-shards 3 --shard-index 1
- test: --total-shards 3 --shard-index 2
before_install:
- if [[ "$TRAVIS_OS_NAME" = windows ]]; then
choco install nodejs.install;
export PATH="$PATH:/c/Program Files/nodejs";
fi
- git config --global user.email "travis@local"
- git config --global user.name "Travis CI"
matrix:
include:
- name: code formatting
dart: stable
dart_task: {dartfmt: --fix}
os: linux
- name: static analysis
dart: stable
dart_task: {dartanalyzer: --fatal-warnings --fatal-infos .}
os: linux
branches:
only: [master]
cache:
directories:
- $HOME/.pub-cache
|
Change build to use openjdk8 instead of oraclejdk8 | language: java
jdk:
- oraclejdk8
env:
- TERM=dumb
script:
- ./gradlew check --info --stacktrace
after_success:
- ./gradlew jacocoTestReport coveralls
| language: java
jdk:
- openjdk8
env:
- TERM=dumb
script:
- ./gradlew check --info --stacktrace
after_success:
- ./gradlew jacocoTestReport coveralls
|
Move entire setup into before_script | before_script: cp config/database.yml.example config/database.yml && bundle exec rake db:create
script: bundle exec rake db:migrate db:test:prepare default
rvm:
- ree
| before_script: cp config/database.yml.example config/database.yml && bundle exec rake db:create db:migrate db:test:prepare
rvm:
- ree
|
Test Linux and OS X | language: cpp
compiler:
- gcc
- clang
env:
matrix:
- INTERN_OPTS="-DINLINE_UNSIGNED=1"
- INTERN_OPTS="-DINLINE_UNSIGNED=0"
- INTERN_OPTS="-DMMAP_PAGES=1"
- INTERN_OPTS="-DMMAP_PAGES=0"
script:
- cmake . ${INTERN_OPTS}
- make check
| language: c
os:
- linux
- osx
compiler:
- gcc
- clang
env:
matrix:
- INTERN_OPTS="-DINLINE_UNSIGNED=1"
- INTERN_OPTS="-DINLINE_UNSIGNED=0"
- INTERN_OPTS="-DMMAP_PAGES=1"
- INTERN_OPTS="-DMMAP_PAGES=0"
script:
- cmake . ${INTERN_OPTS}
- make check
|
Revert "add code coverage to code climate" | language: php
env:
CODECLIMATE_REPO_TOKEN: bfb05b660bbd647cf979d7d257e94c446406b8efc507070e2e2beb8110951af4
php:
- 7.0
- 7.1
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.0
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script:
- vendor/bin/phpcs --standard=psr2 src/
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- |
if [[ "$TRAVIS_PHP_VERSION" != 'hhvm' ]]; then
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover coverage.clover
fi
| language: php
php:
- 7.0
- 7.1
# This triggers builds to run on the new TravisCI infrastructure.
# See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false
## Cache composer
cache:
directories:
- $HOME/.composer/cache
matrix:
include:
- php: 7.0
env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
before_script:
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
script:
- vendor/bin/phpcs --standard=psr2 src/
- vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
after_script:
- |
if [[ "$TRAVIS_PHP_VERSION" != 'hhvm' ]]; then
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover coverage.clover
fi
|
Use patch version for Ruby 2.3.3 and 2.4.0 on CI | sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
env: COVERALL=1
before_install:
- gem install bundler
| sudo: false
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3.3
- 2.4.0
env: COVERALL=1
before_install:
- gem install bundler
|
Remove trailing slash in Travis config. | sudo: required
services:
- docker
before_install:
# Install Docker Compose.
- curl -L https://github.com/docker/compose/releases/download/VERSION_NUM/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin/
# Create an .env file from the example.
- cp .env.example .env
script:
- docker-compose build
- docker-compose up -d
| sudo: required
services:
- docker
before_install:
# Install Docker Compose.
- curl -L https://github.com/docker/compose/releases/download/VERSION_NUM/docker-compose-`uname -s`-`uname -m` > docker-compose
- chmod +x docker-compose
- sudo mv docker-compose /usr/local/bin
# Create an .env file from the example.
- cp .env.example .env
script:
- docker-compose build
- docker-compose up -d
|
Use headless Firefox for Selenium tests | language: ruby
rvm:
- "1.9.3"
- "2.0"
- "2.1"
- "2.2"
- "2.3.1"
before_install:
- "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16"
- "export DISPLAY=:99.0"
before_script:
- mysql -e "create database IF NOT EXISTS transactional_capybara_test;" -uroot
- psql -c 'create database transactional_capybara_test;' -U postgres
- "cp spec/{.travis.,}config.yml"
script: bundle exec rake test:all
cache: bundler
| language: ruby
rvm:
- "1.9.3"
- "2.0"
- "2.1"
- "2.2"
- "2.3.1"
env:
- MOZ_HEADLESS=1
addons:
firefox: latest
before_install:
- wget https://github.com/mozilla/geckodriver/releases/download/v0.18.0/geckodriver-v0.18.0-linux64.tar.gz
- mkdir geckodriver
- tar -xzf geckodriver*.tar.gz -C geckodriver
- /sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16
- export PATH=$PATH:$PWD/geckodriver
- export DISPLAY=:99.0
before_script:
- mysql -e "create database IF NOT EXISTS transactional_capybara_test;" -uroot
- psql -c 'create database transactional_capybara_test;' -U postgres
- "cp spec/{.travis.,}config.yml"
script: bundle exec rake test:all
cache: bundler
|
Use Ubuntu mosquitto in Travis | language: go
sudo: required
go:
- 1.6
before_install:
- sudo apt-add-repository ppa:mosquitto-dev/mosquitto-ppa -y
- sudo apt-get update
install:
- sudo apt-get install mosquitto mosquitto-clients
- make deps
- make test-deps
- make cover-deps
before_script:
- mosquitto -p 1883 1>/dev/null 2>/dev/null &
services:
- redis-server
script:
- make test
- make fmt
- make vet
after_success:
- make cover
- make coveralls
| language: go
sudo: required
go:
- 1.6
before_install:
- sudo apt-get update
install:
- sudo apt-get install mosquitto
- make deps
- make test-deps
- make cover-deps
before_script:
- mosquitto -p 1883 1>/dev/null 2>/dev/null &
services:
- redis-server
script:
- make test
- make fmt
- make vet
after_success:
- make cover
- make coveralls
|
Change rvm version to stop build failure | sudo: false
language: objective-c
cache: cocoapods
xcode_workspace: LocationManager/LocationManager.xcworkspace
xcode_scheme: LocationManagerExample
xcode_sdk: iphonesimulator
podfile: LocationManager/Podfile
before_install:
- gem install cocoapods --no-ri --no-rdoc
- gem install slather --no-ri --no-rdoc
after_success: slather
| sudo: false
language: objective-c
cache: cocoapods
xcode_workspace: LocationManager/LocationManager.xcworkspace
xcode_scheme: LocationManagerExample
xcode_sdk: iphonesimulator
podfile: LocationManager/Podfile
rvm:
- 2.2.2
before_install:
- gem install cocoapods --no-ri --no-rdoc
- gem install slather --no-ri --no-rdoc
after_success: slather
|
FIX phpcs line in Travis configuration not to look for non-existent PHP files | language: php
env:
global:
- COMPOSER_ROOT_VERSION=2.x-dev
addons:
apt:
packages:
- hunspell
- libhunspell-dev
- hunspell-en-us
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=PGSQL PHPUNIT_COVERAGE_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1
before_script:
# Init PHP
- phpenv rehash
- phpenv config-rm xdebug.ini
# Install composer dependencies
- composer validate
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql 2.0.x-dev; fi
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/ *.php; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
| language: php
env:
global:
- COMPOSER_ROOT_VERSION=2.x-dev
addons:
apt:
packages:
- hunspell
- libhunspell-dev
- hunspell-en-us
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=MYSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=PGSQL PHPUNIT_COVERAGE_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1
before_script:
# Init PHP
- phpenv rehash
- phpenv config-rm xdebug.ini
# Install composer dependencies
- composer validate
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql 2.0.x-dev; fi
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
|
Use Travis to deploy to Sonatype | language: java
script: "mvn clean verify" | language: java
script: "mvn deploy --settings .ci-deploy-settings.xml"
branches:
only:
- master
env:
global:
- secure: "aM39d+CWKGpE+IMP3UA6ViYDgFXWOnkJjrIIl0Q7+mOFD8KHkFeyrb5ssMZa\ns2bWy7AvlEamDi1ttHT1mlP5r0656yme8E7rnwMNBym4g/Mmo89cM8HfFsRn\nhf+8KYvuPjty6rbdo1vteWHnTorOPuFefceBsMngLDP3VIhT7no="
- secure: "nzW3JJZv2+NLNklXpFwF6bJKbbkUw/fY9inL8rKofjc3aCWPVvB4Nv+HbPic\n0uMxHxK9qE0b5QLVGyFVHor0J/jaTCu+9OrX3+nld68Awj8sGjUqBie/d4Fe\n3vAtU0aAlMnb/Tdv/8LEneACyN7uO+N+siv+YSY3dU1+7eC4sQc="
|
Build with Node.js 10 on Travis CI. | sudo: false
language: node_js
node_js:
- '12'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc mocha
script:
- nyc npm test
| sudo: false
language: node_js
node_js:
- '12'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc mocha
script:
- nyc npm test
|
Simplify the Travis push mechanism | branches:
only: master
language: node_js
node_js: '7'
cache:
directories:
- node_modules
script:
- npm run lint
- npm run bootstrap
- npm run build:js:packages
- npm run coverage -- --silent
- node_modules/.bin/codecov
after_success:
- if [ $TRAVIS_BRANCH = 'master' ]; then
eval "$(ssh-agent -s)";
chmod 600 .travis/deploy_key.pem;
ssh-add .travis/deploy_key.pem;
git clone git@github.com:enigma-io/boundless.git boundless;
cd boundless;
npm run release;
git config user.email "travis@travis-ci.com";
git config user.name "Travis";
git add .;
git commit -m "Push assets built by job $TRAVIS_BUILD_NUMBER [skip ci]";
git push -f git@github.com:enigma-io/boundless.git HEAD:master;
fi
| branches:
only: master
language: node_js
node_js: '7'
cache:
directories:
- node_modules
script:
- npm run lint
- npm run bootstrap
- npm run build:js:packages
- npm run coverage -- --silent
- node_modules/.bin/codecov
after_success:
- if [ $TRAVIS_BRANCH = 'master' ]; then
git checkout master;
npm run release;
git config user.email "travis@travis-ci.com";
git config user.name "Travis";
git add .;
git commit -m "Push assets built by job $TRAVIS_BUILD_NUMBER [skip ci]";
git push -f git@github.com:enigma-io/boundless.git HEAD:master;
fi
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.