commit
stringlengths
40
40
old_file
stringlengths
4
264
new_file
stringlengths
4
264
old_contents
stringlengths
0
4.24k
new_contents
stringlengths
1
5.44k
subject
stringlengths
14
778
message
stringlengths
15
9.92k
lang
stringclasses
277 values
license
stringclasses
13 values
repos
stringlengths
5
127k
3c01dfcbb1778abf7b0bd874eca88760efa8b722
_config.yml
_config.yml
# Site settings title: samyakchoudhary.com email: samyakchoudhary@gmail.com description: Computer Science, IIT Roorkee, graduate. Aspiring Entrepreneur. ENTP. baseurl: "" # the subpath of your site, e.g. /blog url: "samyakchoudhary.com" # the base hostname & protocol for your site enable_retina: false permalink: :title...
# Site settings title: samyakchoudhary.com email: samyakchoudhary@gmail.com description: Computer Science, IIT Roorkee, graduate. Aspiring Entrepreneur. ENTP. baseurl: "" # the subpath of your site, e.g. /blog url: "samyakchoudhary.com" # the base hostname & protocol for your site enable_retina: false permalink: :title...
Use Facebook icon in nav bar
Use Facebook icon in nav bar
YAML
mit
samyak45/samyak45.github.io,samyak45/samyak45.github.io
38f537171769656b56c0aa5070278ab046c35b73
_config.yml
_config.yml
lang: en title: Jürgen's Dev Blog author: Jürgen Ratzenböck description: Hi, I am Jürgen. I am a Software Developer and passionate about full-stack web technologies. baseurl: "/" # the subpath of your site, e.g. /blog url: "https://ratzi199.github.io" # the base hostname & protocol for your site, e.g. http://example.co...
lang: en title: Jürgen's Dev Blog author: Jürgen Ratzenböck description: Hi, I am Jürgen. I am a Software Developer and passionate about full-stack web technologies. baseurl: "" # the subpath of your site, e.g. /blog url: "http://www.jratzenboeck.com" # the base hostname & protocol for your site, e.g. http://example.co...
Change baseurl and url for customer domain
Change baseurl and url for customer domain
YAML
mit
ratzi199/jratzenboeck-blog,ratzi199/jratzenboeck-blog,ratzi199/jratzenboeck-blog
d9e3fe81dbb4baa18bddf17fb77621e786c67614
_config.yml
_config.yml
# visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings paginate: 10 # pagination based on number of posts paginate_path: "page:num" highlighter: pygments markdown: redcarpet name: "[ antoinealb.net ]" description: A blog about robotics, embedded software and Linux author: name: Antoine em...
# visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings paginate: 10 # pagination based on number of posts paginate_path: "page:num" highlighter: pygments markdown: redcarpet name: "[ antoinealb.net ]" description: A blog about robotics, embedded software and Linux author: name: Antoine Albe...
Use my full name when signing posts
Use my full name when signing posts
YAML
mit
antoinealb/antoinealb.github.io,antoinealb/antoinealb.github.io,antoinealb/antoinealb.github.io
930eebf164e81f6543d58f86267622d0b0a8fcd1
_config.yml
_config.yml
name: Developer Hub markdown: kramdown highlighter: pygments safe: true baseurl: / exclude: ['.ruby-version', 'node_modules', 'package.json', 'bower.json'] sass: sass_dir: static/_sass defaults: - scope: path: "" # an empty string here means all files in the project values: organization-name: "...
name: Developer Hub markdown: kramdown highlighter: pygments safe: true baseurl: /developer-hub exclude: ['.ruby-version', 'node_modules', 'package.json', 'bower.json'] sass: sass_dir: static/_sass defaults: - scope: path: "" # an empty string here means all files in the project values: organiz...
Update config to work as /developer-hub (gh-pages) project site
Update config to work as /developer-hub (gh-pages) project site
YAML
unlicense
YOTOV-LIMITED/developers,YOTOV-LIMITED/developers,YOTOV-LIMITED/developers
b4b5aa055369de71bb6ff9c90dee50d4090ad224
.github/workflows/build.yml
.github/workflows/build.yml
name: build on: [push, pull_request] jobs: build: if: "!contains(github.event.head_commit.message, '[skip ci]')" runs-on: ubuntu-latest strategy: fail-fast: false matrix: include: - postgres: 13 ruby: 3.0 - postgres: 12 ruby: 2.7 - postgres: ...
name: build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: include: - postgres: 14 ruby: 3.1 - postgres: 13 ruby: "3.0" - postgres: 12 ruby: 2.7 - postgres: 11 ruby: 2.6...
Test with Postgres 14 on CI
Test with Postgres 14 on CI
YAML
mit
ankane/dexter
9d836327a9ca1c123ee229a4bc91011f30459d66
.github/workflows/build.yml
.github/workflows/build.yml
name: Maven Build on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Build with Maven...
name: Maven Build on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: install dependencies run: | sudo apt update sudo apt install gcc-10 g++-10 shell: bash ...
Fix github action and install gcc
Fix github action and install gcc
YAML
mit
jericks/geometrycommands,jericks/geometrycommands,jericks/geometrycommands
c57644edcba971f5a598983b66f38a73478d7a79
.github/workflows/index.yml
.github/workflows/index.yml
name: Run tests for all supported python versions on: [push, pull_request, workflow_dispatch] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses:...
name: Run tests for all supported python versions on: [push, pull_request, workflow_dispatch] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-versio...
Add Python 3.10 to GitHub too.
Add Python 3.10 to GitHub too.
YAML
mit
EmilStenstrom/conllu
971d28d55147bc598077c398ecd29fc17593f2d3
.github/workflows/test.yaml
.github/workflows/test.yaml
name: Tests on: [push, pull_request] env: CI: true jobs: test: name: Node ${{ matrix.node }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: node: [10, 12, 14] os: [osx-laptop] steps: - name: Clone repository uses: actions...
name: Tests on: [push, pull_request] env: CI: true jobs: test: name: Node ${{ matrix.node }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: node: [12, 14] os: [osx-laptop] steps: - name: Clone repository uses: actions/che...
Remove node 10 and use npm ci
Remove node 10 and use npm ci
YAML
mit
mattyboy/istanbul-slack-notify
639d1674794744d642370befd45e577e9d14f02a
.github/workflows/tests.yml
.github/workflows/tests.yml
name: Tests on: [pull_request] jobs: unit-test: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-18.04, ubuntu-20.04] compiler: [[gcc, g++], [clang, clang++]] timeout-minutes: 30 steps: - uses: actions/checkout@v2 - name: Install depe...
name: Tests on: [pull_request] jobs: unit-test: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-18.04, ubuntu-20.04] compiler: [[gcc, g++], [clang, clang++]] timeout-minutes: 30 steps: - uses: actions/checkout@v2 - name: Install depe...
Modify to specify compilers at make call
Modify to specify compilers at make call
YAML
bsd-2-clause
cybozu/yrmcds,cybozu/yrmcds
d6fb6d2b4764d8cbb35aaf358a7444f57a69ff9e
.github/workflows/vader.yml
.github/workflows/vader.yml
name: Vader on: push: branches: - master pull_request: jobs: test: name: Test runs-on: ubuntu-latest strategy: matrix: vim: - 'v8.2.0000' - 'v8.1.0000' - 'v8.0.0000' - 'v7.4' steps: - name: Checkout code uses: actions/checkout@ma...
name: Vader on: push: branches: - master pull_request: jobs: test: name: Test runs-on: ubuntu-latest strategy: matrix: cfg: - { editor: vim, neovim: false, version: nightly } - { editor: vim, neovim: false, version: stable } - { editor: neovim, n...
Test neovim stable and vim stable and nightly
Test neovim stable and vim stable and nightly
YAML
mit
OmniSharp/omnisharp-vim,OmniSharp/omnisharp-vim,OmniSharp/omnisharp-vim
8cd0964a7265b471e396225254dd1b9b3103697a
packages/ex/extralife.yaml
packages/ex/extralife.yaml
homepage: https://github.com/wuest/haskell-extralife-api changelog-type: '' hash: a3f28873c5deb1924813fd2e2e0b2c0efa73043804db2792e90fade1776671de test-bench-deps: {} maintainer: tina@wuest.me synopsis: API Client for ExtraLife team and user data changelog: '' basic-deps: http-client: ! '>=0.5 && <0.6' bytestring: ...
homepage: https://github.com/wuest/haskell-extralife-api changelog-type: '' hash: bbe960e162349bf2bf4aaa71d278efcabbdddc1d864cf062eb1903449f3f1db7 test-bench-deps: {} maintainer: tina@wuest.me synopsis: API Client for ExtraLife team and user data changelog: '' basic-deps: http-client: '>=0.5 && <0.8' bytestring: '>...
Update from Hackage at 2021-11-09T23:13:16Z
Update from Hackage at 2021-11-09T23:13:16Z
YAML
mit
commercialhaskell/all-cabal-metadata
94f8b294ad37894fb17ec832103924871d1307b9
packages/da/datarobot.yaml
packages/da/datarobot.yaml
homepage: https://github.com/orbital/datarobot#readme changelog-type: '' hash: 05f8db15ccddc3324d2c56f782d5e90f5b5bf840dd346e0bc104232bf3f750e1 test-bench-deps: exceptions: -any bytestring: -any base: ! '>=4.7 && <5' unordered-containers: -any text: -any wreq: -any datarobot: -any network-uri: -any sc...
homepage: https://github.com/orbital/datarobot-haskell#readme changelog-type: '' hash: 4b2c939d5ed8e5ba82fd44d51fd8ee74a45e289f5043dc00f87b996f8b523dd6 test-bench-deps: exceptions: -any bytestring: -any base: ! '>=4.7 && <5' unordered-containers: -any text: -any wreq: -any datarobot: -any network-uri: -...
Update from Hackage at 2017-08-22T20:55:49Z
Update from Hackage at 2017-08-22T20:55:49Z
YAML
mit
commercialhaskell/all-cabal-metadata
a65c62341ba142f15abbc96aff2f388c51d75bbc
packages/sh/shunyalib.yaml
packages/sh/shunyalib.yaml
homepage: https://github.com/githubuser/shunya-library#readme changelog-type: '' hash: c8fac0a655fce320de29e1a03216e0fbc4cefd31c1e613f73efa52c9b35b16d7 test-bench-deps: {} maintainer: example@example.com synopsis: Initial project template from stack changelog: '' basic-deps: base: ! '>=4.7 && <5' all-versions: - '0.1...
homepage: https://github.com/penguinshunya/shunyalib changelog-type: '' hash: be2c3bc5f8792a069a1537513f7752bd3fe1c14df57e63975bc886f2cff59123 test-bench-deps: {} maintainer: penguinshunya@hotmail.com synopsis: Initial project template from stack changelog: '' basic-deps: base: ! '>=4.7 && <5' all-versions: - '0.1.0....
Update from Hackage at 2016-11-12T16:27:40Z
Update from Hackage at 2016-11-12T16:27:40Z
YAML
mit
commercialhaskell/all-cabal-metadata
222a03ae12e13f02ecfad569eeda57219cdce281
playbooks/etcd-install.yml
playbooks/etcd-install.yml
--- # Copyright 2016, Logan Vig <logan2211@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
--- # Copyright 2016, Logan Vig <logan2211@gmail.com> # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Update etcd playbook to target etcd from etcd_all
Update etcd playbook to target etcd from etcd_all When deploying etcd, the existing playbook targets etcd_all and tries to deploy components on infra nodes hosting etcd containers. This patch changes the target group to 'etcd' and installs only in etcd containers. Change-Id: I43228d4c4938457a330e47fd6c9404b8749a0d56 ...
YAML
apache-2.0
stackforge/os-ansible-deployment,openstack/openstack-ansible,openstack/openstack-ansible,stackforge/os-ansible-deployment
ced767a59faaab0ee163aee7d1a0233f7b5df78b
recipes/jmespath/meta.yaml
recipes/jmespath/meta.yaml
{%set name = "jmespath" %} {%set version = "0.9.1" %} {%set hash_type = "sha256" %} {%set hash_val = "e72d02de23c1814322f7c0dcffb46716271f9b52b129aace0ab6f5a0450d5f02" %} package: name: {{ name }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0...
{%set name = "jmespath" %} {%set version = "0.9.2" %} {%set hash_type = "sha256" %} {%set hash_val = "54c441e2e08b23f12d7fa7d8e6761768c47c969e6aed10eead57505ba760aee9" %} package: name: {{ name }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0...
Update jmespath recipe to version 0.9.2
Update jmespath recipe to version 0.9.2
YAML
bsd-3-clause
jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda
7ce7c40b8aa076c864879665ff7392a029a9eafd
vertx-openshift/docker-compose.yml
vertx-openshift/docker-compose.yml
version: '3' services: apiman_gateway: container_name: apiman_gateway image: jcechace/apiman-vertx-openshift ports: - "8082:8082" - "8081:8081" links: - apiman_elastic apiman_elastic: container_name: apiman_elastic image: docker...
version: '3' services: apiman_gateway: container_name: apiman_gateway image: jcechace/apiman-vertx-openshift ports: - "8082:8082" - "8081:8081" links: - apiman_elastic apiman_elastic: container_name: apiman_elastic image: docker...
Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v7
Update docker.elastic.co/elasticsearch/elasticsearch Docker tag to v7
YAML
apache-2.0
apiman/apiman-docker,apiman/apiman-docker
966cb384f8c6c3aedf0d5c6c186433d89526580d
tasks/main.yml
tasks/main.yml
--- - apt: state: latest pkg: "{{ item }}" with_items: - varnish tags: - varnish - template: src: "{{ item }}" dest: "/{{ item }}" owner: root group: staff mode: 0664 with_items: - etc/default/varnish - etc/varnish/default.vcl notify: service | varnish | reloaded tags: ...
--- - apt: state: latest pkg: "{{ item }}" with_items: - varnish tags: - varnish - template: src: "{{ item }}" dest: "/{{ item }}" owner: root group: staff mode: 0664 with_items: - etc/default/varnish - etc/varnish/default.vcl notify: service | varnish | restarted tags: ...
Change reloaded to restarted in handler.
Change reloaded to restarted in handler.
YAML
mit
colstrom/ansible-varnish,killerwails/ansible-varnish,telusdigital/ansible-varnish,killerwails/ansible-varnish
cb83384c14aee8a5bd2bb4d7d2e137a7a5df261d
roles/deploy/vars/main.yml
roles/deploy/vars/main.yml
wordpress_env_defaults: db_host: localhost db_name: "{{ site | underscore }}_{{ env }}" db_user: "{{ site | underscore }}" disable_wp_cron: true wp_env: "{{ env }}" wp_home: "{{ project.ssl.enabled | default(false) | ternary('https', 'http') }}://{{ project.site_hosts | map(attribute='canonical') | first }}...
wordpress_env_defaults: db_host: localhost db_name: "{{ site | underscore }}_{{ env }}" db_user: "{{ site | underscore }}" disable_wp_cron: true wp_env: "{{ env }}" wp_home: "{{ project.ssl.enabled | default(false) | ternary('https', 'http') }}://{{ project.site_hosts | map(attribute='canonical') | first }}...
Add ` wp_post_revisions: true` to `wordpress_env_defaults`
Add ` wp_post_revisions: true` to `wordpress_env_defaults` Complementing https://github.com/roots/bedrock/pull/572/
YAML
mit
roots/trellis,newtonne/trellis,roots/trellis,pressbooks/trellis,roots/bedrock-ansible,roots/bedrock-ansible,pressbooks/trellis,newtonne/trellis,newtonne/trellis
a482b20a08d1e21f18e7eeeca217456c16bbf484
.github/workflows/linux_mkspecs.yml
.github/workflows/linux_mkspecs.yml
name: Linux C++ make-specs on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: jobs: Linux-mkspecs: uses: steinwurf/linux-mkspecs-action/.github/workflows/actio...
name: Linux C++ make-specs on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: jobs: Linux-mkspecs: uses: steinwurf/linux-mkspecs-action/.github/workflows/actio...
Update Linux C++ make-specs to new version 4.0.0
Update Linux C++ make-specs to new version 4.0.0
YAML
bsd-3-clause
steinwurf/endian,steinwurf/endian
7b3d01adc27b457418d10e536c5d6b7ede580538
tests/role.yml
tests/role.yml
--- - hosts: 'localhost' tasks: - name: 'Ensure that we can connect to this host' ping: roles: - role: 'ansible-role-docker' become: true tasks: - name: 'Ensure that the docker daemon is functional' become: true docker_ping: register: result retries: 5 delay: ...
--- - hosts: 'localhost' tasks: - name: 'Ensure that we can connect to this host' ping: roles: - role: 'ansible-role-docker' become: true tasks: - name: 'Ensure that the docker daemon is functional' become: true docker_ping: register: result retries: 5 delay: ...
Use the 'docker_container' and 'docker_image' modules as 'docker' as been deprecated
Use the 'docker_container' and 'docker_image' modules as 'docker' as been deprecated
YAML
mit
marvinpinto/ansible-role-docker
8d69d0d8326e7fd53e403c08005a0615c71b79a7
schemata/user.yaml
schemata/user.yaml
--- id: user.json "$schema": "http://json-schema.org/draft-04/schema" title: User description: "User profile" type: - object properties: id: "$ref": "base.json#/definitions/uuid" email: type: string example: user@domain.com name: type: string example: "Example User" avatar: type: string ...
--- id: user.json "$schema": "http://json-schema.org/draft-04/schema" title: User description: "User profile" type: - object properties: id: "$ref": "base.json#/definitions/uuid" email: type: string example: user@domain.com name: type: string example: "Example User" avatar: type: string ...
Move properties to correct key
Move properties to correct key
YAML
mit
the-grid/apidocs,the-grid/apidocs,the-grid/apidocs,the-grid/apidocs
e8fe157a7f320f9cd6af0348bda7df6b0a06173f
cluster/addons/cluster-monitoring/influxdb/influxdb-grafana-controller.yaml
cluster/addons/cluster-monitoring/influxdb/influxdb-grafana-controller.yaml
apiVersion: v1beta3 kind: ReplicationController metadata: labels: name: influxGrafana kubernetes.io/cluster-service: "true" name: monitoring-influx-grafana-controller spec: replicas: 1 selector: name: influxGrafana template: metadata: labels: name: influxGrafana ku...
apiVersion: v1beta3 kind: ReplicationController metadata: labels: name: influxGrafana kubernetes.io/cluster-service: "true" name: monitoring-influx-grafana-controller spec: replicas: 1 selector: name: influxGrafana template: metadata: labels: name: influxGrafana ku...
Fix influxdb external url and its port
Fix influxdb external url and its port
YAML
apache-2.0
bcbroussard/kubernetes,ilackarms/kubernetes,fengshao0907/kubernetes,stevesloka/kubernetes,mesosphere/kubernetes,lleszczu/kubernetes,lumjjb/kubernetes,gitfred/kubernetes,eparis/kubernetes,brandonweeks/kubernetes,viongpanzi/kubernetes,ghostcloud-cn/kubernetes,squaremo/kubernetes,praneybehl/kubernetes,jlebon/kubernetes,ch...
c177e0dd92186bc7c469fb8521e4c19c723615a8
prow/plugins.yaml
prow/plugins.yaml
# Plugin repository whitelist. # Keys: Full repo name: "org/repo". # Values: List of plugins to run against the repo. --- triggers: - repos: - kubernetes - kubernetes-incubator - kubernetes-security - google/cadvisor trusted_org: kubernetes heart: adorees: - k8s-merge-robot slackevents: - repos: - kub...
# Plugin repository whitelist. # Keys: Full repo name: "org/repo". # Values: List of plugins to run against the repo. --- triggers: - repos: - kubernetes - kubernetes-incubator - kubernetes-security - google/cadvisor trusted_org: kubernetes heart: adorees: - k8s-merge-robot slackevents: - repos: - kub...
Disable slackevents plugin on test-infra, enable for K/K.
Disable slackevents plugin on test-infra, enable for K/K.
YAML
apache-2.0
kubernetes/test-infra,lavalamp/test-infra,BenTheElder/test-infra,ixdy/kubernetes-test-infra,brahmaroutu/test-infra,jlowdermilk/test-infra,krzyzacy/test-infra,spxtr/test-infra,ixdy/kubernetes-test-infra,mindprince/test-infra,shashidharatd/test-infra,spxtr/test-infra,BenTheElder/test-infra,shashidharatd/test-infra,krouse...
1d5de9bd7d474e32c1f254e6f5551c2c270988b7
app/email_domains.yml
app/email_domains.yml
--- - gov.uk - mod.uk - mil.uk - ddc-mod.org - slc.co.uk - gov.scot - parliament.uk - nhs.uk - nhs.net - police.uk - dclgdatamart.co.uk - ucds.email - naturalengland.org.uk - hmcts.net - scotent.co.uk - assembly.wales - cjsm.net - cqc.org.uk - bl.uk - stfc.ac.uk - wmfs.net - bbsrc.ac.uk - acas.org.uk - gov.wales - bigl...
--- - gov.uk - mod.uk - mil.uk - ddc-mod.org - slc.co.uk - gov.scot - parliament.uk - nhs.uk - nhs.net - police.uk - dclgdatamart.co.uk - ucds.email - naturalengland.org.uk - hmcts.net - scotent.co.uk - assembly.wales - cjsm.net - cqc.org.uk - bl.uk - stfc.ac.uk - wmfs.net - bbsrc.ac.uk - acas.org.uk - gov.wales - bigl...
Add Scottish Environmental Protection Agency
Add Scottish Environmental Protection Agency They are a (Scottish) government organisation. https://www.sepa.org.uk/
YAML
mit
alphagov/notifications-admin,alphagov/notifications-admin,alphagov/notifications-admin,alphagov/notifications-admin
2d0092558f9e032958adc65426395ddf6e12924f
metadata/com.donnnno.arcticons.yml
metadata/com.donnnno.arcticons.yml
Categories: - Theming License: GPL-3.0-only SourceCode: https://github.com/Donnnno/Arcticons IssueTracker: https://github.com/Donnnno/Arcticons/issues Changelog: https://github.com/Donnnno/Arcticons/blob/main/CHANGELOG.md Donate: https://paypal.me/onnovdd AutoName: Arcticons RepoType: git Repo: https://github.com/D...
Categories: - Theming License: GPL-3.0-only SourceCode: https://github.com/Donnnno/Arcticons IssueTracker: https://github.com/Donnnno/Arcticons/issues Changelog: https://github.com/Donnnno/Arcticons/blob/main/CHANGELOG.md Donate: https://paypal.me/onnovdd AutoName: Arcticons RepoType: git Repo: https://github.com/D...
Update Arcticons to 1.3.0 (45)
Update Arcticons to 1.3.0 (45)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
43c3497b0932ef368506007a0f2ec10c9029c532
metadata/com.jellyshack.block6.yml
metadata/com.jellyshack.block6.yml
Categories: - Phone & SMS License: MIT SourceCode: https://github.com/travistynes/block6 IssueTracker: https://github.com/travistynes/block6/issues AutoName: Block6 RepoType: git Repo: https://github.com/travistynes/block6 Builds: - versionName: '1.5' versionCode: 6 commit: v1.5 subdir: app gradl...
Categories: - Phone & SMS License: MIT SourceCode: https://github.com/travistynes/block6 IssueTracker: https://github.com/travistynes/block6/issues AutoName: Block6 RepoType: git Repo: https://github.com/travistynes/block6 Builds: - versionName: '1.5' versionCode: 6 commit: v1.5 subdir: app gradl...
Update Block6 to 1.6 (7)
Update Block6 to 1.6 (7)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
1f76bedfe2d1813e9cd9e720c8b4b6ed0e52564a
_data/navigation.yml
_data/navigation.yml
- title: home url: / - title: about url: /me - title: github url: https://github.com/KryDos
- title: home url: / - title: about url: /me - title: github url: https://github.com/KryDos - title: rss url: /feed.xml
Add link to rss feed
Add link to rss feed
YAML
mit
KryDos/blog,KryDos/blog,KryDos/blog
c89321fd9b0eeb0d02fac8db79a6355996ab7dff
update_idb_grc_malakasa.yml
update_idb_grc_malakasa.yml
--- # Ansible playbook for Malakasa, GRC - hosts: localhost roles: - logs # - role: kalite # version: "0.16.8" # lang: ["en","ar"] # - kiwix # - role: zim_install # zim_name: "wikipedia.ar wikipedia.el wikipedia.en wikipedia.fa wikipedia.ps wiktionary.ar wiktionary.el wiktionary.en ...
--- # Ansible playbook for Malakasa, GRC - hosts: localhost roles: - logs # - role: kalite # version: "0.16.8" # lang: ["en","ar"] # - kiwix # - role: zim_install # zim_name: "wikipedia.ar wikipedia.el wikipedia.en wikipedia.fa wikipedia.ps wiktionary.ar wiktionary.el wiktionary.en ...
Disable the import role for Malakasa.
Disable the import role for Malakasa.
YAML
mit
ideascube/ansiblecube,ideascube/ansiblecube
78dd131887b91765a4d8257b9156dc51b5211f12
config.yaml
config.yaml
serial: port: /dev/ttyO1 baudrate: 9600 mqtt: username: prisms password: prisms broker: 10.0.1.1 port: 1883 topic: prisms/airquality/ qos: 1 http: port: 8123
serial: port: /dev/ttyO1 baudrate: 9600 mqtt: username: prisms password: prisms broker: prisms-gateway.local port: 1883 topic: prisms/airquality/ qos: 1 http: port: 8123
Change default broker for MQTT
Change default broker for MQTT
YAML
apache-2.0
VDL-PRISM/dylos
5c7f6c01cf5ee8f0365ee0e01a687137f4aed176
.drone.yml
.drone.yml
pipeline: test: image: node:4 commands: - npm version drone-dryclean: image: colelawr/drone-dryclean debug: true host: cov.dryclean.io auth: super-secret-auth files: - path: ./coverage/Phantom*/coverage-final.json label: jasmine-coverage.json ...
pipeline: test: image: node:4 commands: - npm version drone-dryclean: image: colelawr/drone-dryclean debug: true host: cov.dryclean.io auth: super-secret-auth GITHUB_BOT_TOKEN: "193d996a7dbc74ff99832ed01a2b7b6272505b8f" GITHUB_BOT_USERNAME: "dryclean-bot" files: - ...
Add some of that sweet authentication
Add some of that sweet authentication
YAML
mit
ZombieHippie/fantastic-repository,ZombieHippie/fantastic-repository,ZombieHippie/fantastic-repository,ZombieHippie/fantastic-repository
4e3646630cc38efe6f1c4081363c6860ca3c5759
.drone.yml
.drone.yml
kind: pipeline type: docker name: test volumes: - name: npmrc host: path: /home/albertyw/.ssh/other/npmrc steps: - name: Test Node image: satantime/puppeteer-node:17.2-bullseye-slim commands: - npm version - npm ci - curl -L https://codeclimate.com/downloads/test-reporter/test-...
kind: pipeline type: docker name: test volumes: - name: npmrc host: path: /home/albertyw/.ssh/other/npmrc steps: - name: Test Node image: satantime/puppeteer-node:16-bullseye-slim commands: - npm version - npm ci - curl -L https://codeclimate.com/downloads/test-reporter/test-re...
Downgrade puppeteer docker to use same node version
Downgrade puppeteer docker to use same node version
YAML
mit
albertyw/gentle-alerts,albertyw/gentle-alerts
6f50a442fcff8c2ce6b0a9ddff86034352bd48d1
.drone.yml
.drone.yml
clone: depth: 1 cache: mount: - node_modules - experiment/node_modules - app/bower_components build: image: crhym3/ci-image environment: - GAE_SDK_URL=https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.28.zip commands: # install dependencies - npm -...
clone: depth: 1 cache: mount: - node_modules - experiment/node_modules - app/bower_components build: image: crhym3/ci-image environment: - GAE_SDK_URL=https://storage.googleapis.com/appengine-sdks/featured/go_appengine_sdk_linux_amd64-1.9.28.zip commands: # install dependencies - npm -...
Remove deployment from CI - this is past year version now
Remove deployment from CI - this is past year version now
YAML
apache-2.0
google/ioweb2015,google/ioweb2015,GoogleChrome/ioweb2015,GoogleChrome/ioweb2015,google/ioweb2015,GoogleChrome/ioweb2015,GoogleChrome/ioweb2015,google/ioweb2015
ef17bd452cf451ea1a3ae8a8672e3a8d31f501f6
.drone.yml
.drone.yml
pipeline: test: image: node:4 commands: - npm version publish: image: plugins/drone-dryclean host: cov.dryclean.io auth: super-secret-auth files: - path: ./coverage/Phantom*/coverage-final.json label: jasmine-coverage.json postprocessor: cob...
pipeline: test: image: node:4 commands: - npm version drone-dryclean: image: plugins/drone-dryclean debug: true host: cov.dryclean.io auth: super-secret-auth files: - path: ./coverage/Phantom*/coverage-final.json label: jasmine-coverage.json ...
Test again with debug etc
Test again with debug etc
YAML
mit
ZombieHippie/fantastic-repository,ZombieHippie/fantastic-repository,ZombieHippie/fantastic-repository,ZombieHippie/fantastic-repository
70e20b62e6719c97267aa0e5a80dae2e31dfba76
.zuul.yaml
.zuul.yaml
- project: templates: - openstack-python-jobs - openstack-python35-jobs - openstack-python36-jobs - publish-openstack-docs-pti - check-requirements - openstack-pypy-jobs-nonvoting - lib-forward-testing - release-notes-jobs-python3 check: jobs: - open...
- job: name: swiftclient-swift-functional parent: swift-dsvm-functional description: | Run swift's functional tests with python-swiftclient installed from source instead as package from PyPI. # Ensure that we install python-swiftclient from git and # do not install from pypi. This is nee...
Use Swift's in-tree DSVM test
Use Swift's in-tree DSVM test While we're at it, make a new job that inherits from it to bring the legacy-swiftclient-dsvm-functional testing in-tree, too. For naming, follow naming policy and remove "dsvm" from names. Remove legacy jobs, they are not needed anymore. Change-Id: I919c0b77ac4888350194f55a9c12e0742845...
YAML
apache-2.0
sohonetlabs/python-swiftclient,openstack/python-swiftclient,sohonetlabs/python-swiftclient,openstack/python-swiftclient
8eed00a76505ed4d9aa54c45a4bcc5103e8d0121
.readthedocs.yaml
.readthedocs.yaml
version: 2 build: os: "ubuntu-20.04" tools: python: "3.8" python: install: - method: pip path: . extra_requirements: - doc - cesium sphinx: # fail_on_warning: true # Too hard, maybe one day? fail_on_warning: false
version: 2 build: os: "ubuntu-22.04" tools: python: "3.8" python: install: - method: pip path: . extra_requirements: - doc - cesium sphinx: # fail_on_warning: true # Too hard, maybe one day? fail_on_warning: false
Upgrade base image for Read the Docs
Upgrade base image for Read the Docs
YAML
mit
poliastro/poliastro
ece4ed46d3b6673273fcf3e3a2e0cfca6540de4f
.zuul.yaml
.zuul.yaml
- project: templates: - check-requirements - designate-devstack-jobs - openstack-cover-jobs - openstack-python3-zed-jobs - openstackclient-plugin-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 queue: designate
- project: templates: - check-requirements - designate-devstack-jobs - openstack-cover-jobs - openstack-python3-antelope-jobs - openstackclient-plugin-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 queue: designate
Add Python3 antelope unit tests
Add Python3 antelope unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for antelope. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: Ia9f6b2ac2fb62ae4f99cd7fc10bf7...
YAML
apache-2.0
openstack/python-designateclient
128a747332494e674d95235483976046fbd53a5c
.zuul.yaml
.zuul.yaml
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-lower-constraints-jobs - openstack-python3-victoria-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-lower-constraints-jobs - openstack-python3-wallaby-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
Add Python3 wallaby unit tests
Add Python3 wallaby unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for wallaby. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: Idc70da67ee74c4ac873dba25472f682...
YAML
apache-2.0
openstack/oslo.serialization
10a584d21f778fc10ae8441d281b183bad452e20
group_vars/all/main.yml
group_vars/all/main.yml
composer_keep_updated: true composer_global_packages: - { name: hirak/prestissimo } apt_cache_valid_time: 3600 apt_package_state: present apt_security_package_state: latest apt_dev_package_state: latest ntp_timezone: Etc/UTC ntp_manage_config: true www_root: /srv/www ip_whitelist: - "{{ (env == 'development') | tern...
composer_keep_updated: true composer_global_packages: - { name: hirak/prestissimo } apt_cache_valid_time: 3600 apt_package_state: present apt_security_package_state: latest apt_dev_package_state: latest ntp_timezone: Etc/UTC ntp_manage_config: true www_root: /srv/www ip_whitelist: - "{{ (env == 'development') | tern...
Increase fastcgi buffers to avoid 502 errors.
Increase fastcgi buffers to avoid 502 errors.
YAML
mit
jeffstieler/bedrock-ansible,jeffstieler/bedrock-ansible,jeffstieler/bedrock-ansible
21f363258dc0b1114eec3bc1155d4416ceac4f5c
.github/workflows/docker.yml
.github/workflows/docker.yml
name: Docker on: push: tags: - '*' jobs: push: runs-on: 'ubuntu-20.04' steps: - uses: actions/checkout@v2 - name: Build and Push Docker Images uses: docker/build-push-action@v1 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.D...
name: Docker on: push: tags: - '*' jobs: push: runs-on: 'ubuntu-20.04' steps: - uses: actions/checkout@v2 - name: Build and Push Docker Images uses: docker/build-push-action@v1 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.D...
Add the `latest` tag to Docker deploy
Add the `latest` tag to Docker deploy
YAML
mit
codingteam/codingteam.org.ru,codingteam/codingteam.org.ru
812a9080d2fe11bbe35152fd829415a2b52a0d81
.github/workflows/dotnet.yml
.github/workflows/dotnet.yml
name: .NET on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET uses: actions/setup-dotnet@v1.8.2 with: dotnet-version: 6.0.100 - name: Restore dependencies ...
name: .NET on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 with: fetch-depth: 0 - name: Setup .NET uses: actions/setup-dotnet@v1.8.2 with: dotnet-version: 6.0.100 ...
Update .NET action with full fetch depth
Update .NET action with full fetch depth
YAML
mit
brwml/MatchMakerTool
066f41e769f12b1077c7f96448f59a974f89bb6f
.github/workflows/verify.yml
.github/workflows/verify.yml
# Put this in the file: .github/workflows/verify.yml name: Verify on: [push] jobs: linters: name: Linters runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 - name: Ruby gem cache uses: acti...
# Put this in the file: .github/workflows/verify.yml name: Verify on: [push] jobs: linters: name: Linters runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup Ruby uses: ruby/setup-ruby@v1 - name: Ruby gem cache uses: acti...
Move to community rubocop action. Add reek checks
Move to community rubocop action. Add reek checks
YAML
mit
cframe/percentify
c57ecf9fa3b45bd6945ca20c0c22bf676bc3203e
.github/workflows/wheels.yml
.github/workflows/wheels.yml
# This is a basic workflow to help you get started with Actions name: Wheels on: workflow_dispatch jobs: build_wheels: name: Build wheels for ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/ch...
# This is a basic workflow to help you get started with Actions name: Wheels on: workflow_dispatch jobs: build_wheels: name: Build wheels for ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/ch...
FIX python wheel building using conda
FIX python wheel building using conda
YAML
mit
jmschrei/pomegranate,jmschrei/pomegranate
90deadecbae3419d741541f833fcd9f4d0fbba9f
screenshot/app.yaml
screenshot/app.yaml
# Copyright 2018, Google LLC # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, sof...
# Copyright 2018, Google LLC # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, sof...
Add trace support for async/await
Add trace support for async/await
YAML
apache-2.0
GoogleCloudPlatform/nodejs-serverless-microservices-demo,GoogleCloudPlatform/nodejs-serverless-microservices-demo
90b9b952d14c4cc38ff9b7b28873fec42e5b622c
_data/navigation.yml
_data/navigation.yml
# main links main: - title: "Calls" children: title: "Call for Papers" url: /cfp #- title: "Quick-Start Guide" # url: https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/ # - title: "About" # url: https://mmistakes.github.io/minimal-mistakes/about/ # - title: "Sample Posts" # ...
# main links main: - title: "Call for Papers" url: /cfp #- title: "Quick-Start Guide" # url: https://mmistakes.github.io/minimal-mistakes/docs/quick-start-guide/ # - title: "About" # url: https://mmistakes.github.io/minimal-mistakes/about/ # - title: "Sample Posts" # url: /year-archive/ # - tit...
Sort out dropdown in masthead later...
Sort out dropdown in masthead later...
YAML
mit
AndrewChenUoA/AVSS2018,AndrewChenUoA/AVSS2018,AndrewChenUoA/AVSS2018
da72aa2ad29e29fe8914831d20a71c612513a456
tasks/RedHat.yaml
tasks/RedHat.yaml
--- - name: create epel.repo template: src=utils/templates/epel-es.repo dest=/etc/yum.repos.d/epel.repo - name: Yum install SGE in REL system yum: name=gridengine,gridengine-execd,openssh-clients,gridengine-qmaster,gridengine-qmon when: '{{sge_type_of_node == "front"}}' - name: Yum install SGE in REL system ...
--- - name: create epel.repo template: src=utils/templates/epel-es.repo dest=/etc/yum.repos.d/epel.repo - name: Yum install SGE in REL system yum: name=gridengine,gridengine-execd,openssh-clients,gridengine-qmaster,gridengine-qmon #when: '{{sge_type_of_node == "front"}}' #- name: Yum install SGE in REL system ...
Comment some lines for trial purposes
Comment some lines for trial purposes
YAML
apache-2.0
grycap/ansible-role-sge
e18816711980542d80f2714b219a3f6743254eb0
.github/release-drafter.yml
.github/release-drafter.yml
name-template: 'v$NEXT_PATCH_VERSION' tag-template: 'v$NEXT_PATCH_VERSION' branches: - 'master' - 'develop' exclude-lables: - 'release' categories: - title: '🚀 Features' labels: - 'enhancement' - title: '🐛 Bug Fixes' labels: - 'bug' - title: '📚 Documentation' labels: - 'docu...
name-template: 'v$NEXT_PATCH_VERSION' tag-template: 'v$NEXT_PATCH_VERSION' branches: - 'master' - 'develop' exclude-lables: - 'release' categories: - title: '🚀 Features' labels: - 'enhancement' - title: '🐛 Bug Fixes' labels: - 'bug' - title: '📚 Documentation' labels: - 'docu...
Drop author var from template
Drop author var from template
YAML
apache-2.0
ianunruh/hvac,ianunruh/hvac
1793264d48f25e0e087d75a9104a3e89693216d1
.github/workflows/build.yml
.github/workflows/build.yml
# This workflow will build a Java project with Gradle # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle name: Build on: workflow_dispatch: inputs: git-ref: description: Git Ref (Optional) required: false push: ...
# This workflow will build a Java project with Gradle # For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle name: Build on: workflow_dispatch: inputs: git-ref: description: Git Ref (Optional) required: false push: ...
Remove owasp dependency check because it's currently broken
Remove owasp dependency check because it's currently broken Co-authored-by: Marco Geweke <8bae85dbfa00ce59d1b81e4121747343f331087b@otto.de>
YAML
apache-2.0
otto-de/jlineup,otto-de/jlineup,otto-de/jlineup
b7d3811438d4736e5dc12901aa6075e12593c2ce
.github/workflows/tests.yml
.github/workflows/tests.yml
name: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: [2.5, 2.6, 2.7, '3.0', jruby-9.2, jruby-9.3] memcached-version: ['1.5.22', '1.6.12'] steps: - uses: actions/checkout@v2 - name: Install Memcached ${{ matrix.memcached-v...
name: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: matrix: ruby-version: [2.5, 2.6, 2.7, '3.0', jruby-9.2, jruby-9.3] memcached-version: ['1.5.22', '1.6.12', '1.4.39'] steps: - uses: actions/checkout@v2 - name: Install Memcached ${{ matrix.m...
Add a 1.4.x version so CI covers our compatibility guarantee to the minor version
Add a 1.4.x version so CI covers our compatibility guarantee to the minor version
YAML
mit
petergoldstein/dalli,mperham/dalli,petergoldstein/dalli
0a2091fd2fec6ca65fff8576d29629ce0aa7a0f4
_data/blogs.yml
_data/blogs.yml
# Blogs - url: http://www.r-bloggers.com/ name: R-Bloggers - url: http://www.today-is-a-good-day.de/ name: Today is a good day
# Blogs - url: http://www.r-bloggers.com/ name: R-Bloggers - url: http://www.today-is-a-good-day.de/ name: Today is a good day - url: http://www.magesblog.com/ name: mages' blog
Update blog.yml, added mages blog
Update blog.yml, added mages blog
YAML
mit
today-is-a-good-day/quiri.github.io,Quiri/quiri.github.io,safferli/quiri.github.io,safferli/quiri.github.io,today-is-a-good-day/quiri.github.io,Quiri/quiri.github.io,yukiegosapporo/quiri.github.io,safferli/quiri.github.io,yukiegosapporo/quiri.github.io,Quiri/quiri.github.io,today-is-a-good-day/quiri.github.io,today-is-...
8890da25d62ff56ba97474abfa1bfe3e03ebc0f6
packages/me/med-module.yaml
packages/me/med-module.yaml
homepage: '' changelog-type: '' hash: afaff722d77f21e20db6d91eec41dd150ef93bd1eb74d25a76bc6ad9437de7be test-bench-deps: {} maintainer: haskell@henning-thielemann.de synopsis: Parse song module files from Amiga MED and OctaMED changelog: '' basic-deps: storable-endian: ! '>=0.2.6 && <0.3' bytestring: ! '>=0.9.2 && <...
homepage: '' changelog-type: '' hash: bcaab0fd18fba5aab4fa921400f45c200738971fd1845ea0b8c00817167dcb15 test-bench-deps: {} maintainer: haskell@henning-thielemann.de synopsis: Parse song module files from Amiga MED and OctaMED changelog: '' basic-deps: storable-endian: ! '>=0.2.6 && <0.3' bytestring: ! '>=0.9.2 && <...
Update from Hackage at 2019-08-14T08:07:50Z
Update from Hackage at 2019-08-14T08:07:50Z
YAML
mit
commercialhaskell/all-cabal-metadata
387724ae8f8e8615d1202c3e204909faa927ef03
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: ankyra/escape:latest steps: - checkout - setup_remote_docker - run: name: Build Escape release command: escape release
version: 2 jobs: build: docker: - image: ankyra/escape:latest steps: - checkout - setup_remote_docker - run: name: Install Docker client command: | set -x VER="17.03.0-ce" curl -L -o /tmp/docker-$VER.tgz https://get.docker.com/builds/Linux/x86_64...
Install Docker client in CircleCI build
Install Docker client in CircleCI build
YAML
apache-2.0
ankyra/escape-core,ankyra/escape-core,ankyra/escape-core
9fa4297f1a99ada0860d1979be4f8b9ab52dbbe3
.circleci/config.yml
.circleci/config.yml
version: 2.1 orbs: haskell: haskell-works/haskell-build@1.5.3 github: haskell-works/github-release@1.2.1 hackage: haskell-works/hackage@1.0.0 workflows: multiple-ghc-build: jobs: - haskell/build: name: GHC 8.2.2 executor: haskell/ghc-8_2_2 - haskell/build: name: ...
version: 2.1 orbs: haskell: haskell-works/haskell-build@1.6.0 github: haskell-works/github-release@1.2.1 hackage: haskell-works/hackage@1.0.0 workflows: multiple-ghc-build: jobs: - haskell/build: name: GHC 8.2.2 executor: haskell/ghc-8_2_2 - haskell/build: name: ...
Upgrade circleci to use haskell/build 1.6.0
Upgrade circleci to use haskell/build 1.6.0
YAML
bsd-3-clause
haskell-works/hw-bits
914e799d2b08d790f5d04d1c46928586b3a41250
.circleci/config.yml
.circleci/config.yml
version: 2.0 jobs: rtems: docker: - image: sergiusthebest/rtems-arm-rasberrypi-ci:latest steps: - checkout - run: cmake -H. -Bbuild -DCMAKE_TOOLCHAIN_FILE=$CMAKE_TOOLCHAIN_FILE && cd build && make -j platformio: docker: - image: sergiusthebest/platformio-ci:latest steps: ...
version: 2.0 jobs: rtems: docker: - image: sergiusthebest/rtems-arm-rasberrypi-ci:latest steps: - checkout - run: cmake -H. -Bbuild -DCMAKE_TOOLCHAIN_FILE=$CMAKE_TOOLCHAIN_FILE && cd build && make -j platformio: docker: - image: sergiusthebest/platformio-ci:latest steps: ...
Add Android NDK ci build
Add Android NDK ci build
YAML
mit
SergiusTheBest/plog,SergiusTheBest/plog
4f527ebc74fadc995bf0096bb264df02c0e1bbcd
packages/pr/prim-array.yaml
packages/pr/prim-array.yaml
homepage: https://github.com/andrewthad/prim-array#readme changelog-type: '' hash: b8d8a735fc2351cdb8a57c86ec76dc58177a05bd799d077d86689cf0bef06aa9 test-bench-deps: {} maintainer: andrew.thaddeus@gmail.com synopsis: Primitive byte array with type variable changelog: '' basic-deps: base: ! '>=4.9 && <5' ghc-prim: ! ...
homepage: https://github.com/andrewthad/prim-array#readme changelog-type: '' hash: 6032b591f6dcd9a43a12d52c04730144e78d254fb8d9373b078ba37842cce5c2 test-bench-deps: {} maintainer: andrew.thaddeus@gmail.com synopsis: Primitive byte array with type variable changelog: '' basic-deps: base: ! '>=4.9 && <5' ghc-prim: ! ...
Update from Hackage at 2017-08-10T20:14:28Z
Update from Hackage at 2017-08-10T20:14:28Z
YAML
mit
commercialhaskell/all-cabal-metadata
4a010837a57e12cc43ed354672f5794392f260d3
metadata/com.cohenchris.weeklybudget.yml
metadata/com.cohenchris.weeklybudget.yml
Categories: - Money License: GPL-3.0-only AuthorName: cohenchris SourceCode: https://github.com/cohenchris/WeeklyBudget/ IssueTracker: https://github.com/cohenchris/WeeklyBudget/issues AutoName: WeeklyBudget RepoType: git Repo: https://github.com/cohenchris/WeeklyBudget/ Builds: - versionName: '1.4' versionC...
Categories: - Money License: GPL-3.0-only AuthorName: cohenchris SourceCode: https://github.com/cohenchris/WeeklyBudget/ IssueTracker: https://github.com/cohenchris/WeeklyBudget/issues AutoName: WeeklyBudget RepoType: git Repo: https://github.com/cohenchris/WeeklyBudget/ Builds: - versionName: '1.4' versionC...
Update WeeklyBudget to 1.6 (6)
Update WeeklyBudget to 1.6 (6)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
df952633ef806d848ea75148a7be52e6a4e7f9fe
ports/windows/.appveyor.yml
ports/windows/.appveyor.yml
environment: # Python version used MICROPY_CPYTHON3: c:/python34/python.exe init: # Set build version number to commit to be travis-like - ps: Update-AppveyorBuild -Version $env:appveyor_repo_commit.substring(0,8) configuration: - Debug - Release platform: - x86 - x64 build: project: ports/windows/micropyth...
environment: # Python version used MICROPY_CPYTHON3: c:/python34/python.exe init: # Set build version number to commit to be travis-like - ps: Update-AppveyorBuild -Version $env:appveyor_repo_commit.substring(0,8) configuration: - Debug - Release platform: - x86 - x64 build: project: ports/windows/micropyth...
Add Appveyor CI builds for windows mingw port
windows: Add Appveyor CI builds for windows mingw port Build and test 32bit and 64bit versions of the windows port using gcc from mingw-w64. Note a bunch of tests which rely on floating point math/printing have been disabled for now since they fail.
YAML
mit
selste/micropython,bvernoux/micropython,adafruit/circuitpython,pfalcon/micropython,pramasoul/micropython,swegener/micropython,kerneltask/micropython,MrSurly/micropython,kerneltask/micropython,dmazzella/micropython,ryannathans/micropython,kerneltask/micropython,MrSurly/micropython,tobbad/micropython,selste/micropython,h...
51b7e34cdf1a196cc61e957816733453c810ef10
packages/da/data-as.yaml
packages/da/data-as.yaml
homepage: https://github.com/incertia/data-as changelog-type: markdown hash: 3ab6f1543c6cee2fec70f6950cd4ce1255d2e2e41ca1e5bd2730756bcd9e873f test-bench-deps: {} maintainer: incertia@incertia.net synopsis: Simple extensible sum changelog: | # Revision history for data-as ## 0.0.0.1 * initial release basic-deps:...
homepage: https://github.com/incertia/data-as changelog-type: markdown hash: 93950151a5434e49884b3b554d06602424b30a60b9ca7f89637ee3a2ef34cb5b test-bench-deps: {} maintainer: incertia@incertia.net synopsis: Simple extensible sum changelog: | # Revision history for data-as ## 0.0.0.1 * initial release basic-deps:...
Update from Hackage at 2020-11-26T19:13:33Z
Update from Hackage at 2020-11-26T19:13:33Z
YAML
mit
commercialhaskell/all-cabal-metadata
1ca41bc20ec0fe52f3479834fd94cccb54522358
recipes/hdmedians/meta.yaml
recipes/hdmedians/meta.yaml
{% set name = "hdmedians" %} {% set version = "0.13" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 230f80e064d905c49a1941af1b7e806e2f22b3c9a90ad5c21fd17d72636ea277 build: number: 0 ...
{% set name = "hdmedians" %} {% set version = "0.13" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 230f80e064d905c49a1941af1b7e806e2f22b3c9a90ad5c21fd17d72636ea277 build: number: 0 ...
Address review comments from @loriab
Address review comments from @loriab Also, remove windows build, since this may be out of our scope. See: https://github.com/pypa/pip/issues/5679
YAML
bsd-3-clause
mariusvniekerk/staged-recipes,asmeurer/staged-recipes,chrisburr/staged-recipes,patricksnape/staged-recipes,mcs07/staged-recipes,petrushy/staged-recipes,stuertz/staged-recipes,asmeurer/staged-recipes,synapticarbors/staged-recipes,cpaulik/staged-recipes,SylvainCorlay/staged-recipes,goanpeca/staged-recipes,basnijholt/stag...
ec38741cf478104f899e428929db94f0495115a8
recipes/pyqode.qt/meta.yaml
recipes/pyqode.qt/meta.yaml
{% set name = "pyqode.qt" %} {% set version = "2.10.0" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: cfe97d85b210f0d77663c9df47bcb25bbb7cbbe2d9f58c0a9fd94e5e1d7daa2f build: number: ...
{% set name = "pyqode.qt" %} {% set version = "2.10.0" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: cfe97d85b210f0d77663c9df47bcb25bbb7cbbe2d9f58c0a9fd94e5e1d7daa2f build: number: ...
Add setuptools as run dependency.
Add setuptools as run dependency.
YAML
bsd-3-clause
rmcgibbo/staged-recipes,goanpeca/staged-recipes,asmeurer/staged-recipes,scopatz/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,hadim/staged-recipes,rvalieris/staged-recipes,conda-forge/staged-recipes,chrisburr/staged-recipes,ceholden/staged-recipes,igortg/staged-recipes,Juanlu001/staged-recipes,cp...
db8c9de766123f5badd2e7d9bdcce400dd64c640
.platform.app.yaml
.platform.app.yaml
name: app type: php:7.3 disk: 128 hooks: build: | set -e mkdir -p web export version=dev-"$PLATFORM_TREE_ID" composer bin all install ./bin/platform self:build --no-composer-rebuild --yes --replace-version "$version" --output web/platform.phar cat << EOF > .environment alias platform="...
name: app type: php:7.3 disk: 128 hooks: build: | set -e mkdir -p web export version=dev-"$PLATFORM_TREE_ID" composer bin all install ./bin/platform self:build --no-composer-rebuild --yes --replace-version "$version" --output web/platform.phar cat << EOF > .environment alias platform="...
Substitute phar path at runtime without realpath [skip changelog]
Substitute phar path at runtime without realpath [skip changelog]
YAML
mit
platformsh/platformsh-cli,pjcdawkins/platformsh-cli,platformsh/platformsh-cli,pjcdawkins/platformsh-cli,platformsh/platformsh-cli,pjcdawkins/platformsh-cli
7c8d5c34ab3368f56dbbcfa08f50c7a0444cf906
gemspec.yml
gemspec.yml
name: rprogram summary: A library for creating wrappers around command-line programs. description: RProgram is a library for creating wrappers around command-line programs. RProgram provides a Rubyful interface to programs and all their options or non-options. RProgram can also search for programs installed on a ...
name: rprogram summary: A library for creating wrappers around command-line programs. description: RProgram is a library for creating wrappers around command-line programs. RProgram provides a Rubyful interface to programs and all their options or non-options. RProgram can also search for programs installed on a ...
Hide development dependencies in the Gemfile.
Hide development dependencies in the Gemfile.
YAML
mit
postmodern/rprogram
81827f3d1fcaebd53517232720211f5e18ac450d
provisioning/roles/api-db/tasks/main.yml
provisioning/roles/api-db/tasks/main.yml
- set_fact: role_name=api-db - name: install mongodb apt: name={{ item }} state=present with_items: - mongodb - name: open mongodb to external services lineinfile: dest=/etc/mongodb.conf regexp=^bind_ip line="bind_ip = 0.0.0.0" when: is_development_environment notify: - restart mongodb service
- set_fact: role_name=api-db - name: install mongodb apt: name={{ item }} state=present with_items: - mongodb - name: open mongodb to external services lineinfile: dest=/etc/mongodb.conf regexp=^bind_ip line="bind_ip = 0.0.0.0" when: is_development_environment notify: - restart mongodb service - na...
Install elasticsearch in the "app-db" role.
Install elasticsearch in the "app-db" role.
YAML
mit
promethe42/dredd,promethe42/dredd,promethe42/dredd
eff68b3feaead07294e82313f781fe9959561566
build.yaml
build.yaml
repositories: remote: - https://repo.maven.apache.org/maven2 artifacts: idea_codestyle: au.com.stocksoftware.idea.codestyle:idea-codestyle:xml:1.14 javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0 gwt_user: org.realityforge.com.google.gwt:gwt-user:jar:2.8.2-v20191108
repositories: remote: - https://repo.maven.apache.org/maven2 artifacts: idea_codestyle: au.com.stocksoftware.idea.codestyle:idea-codestyle:xml:1.14 javax_servlet: org.apache.geronimo.specs:geronimo-servlet_3.0_spec:jar:1.0 gwt_user: com.google.gwt:gwt-user:jar:2.9.0
Update the org.realityforge.com.google.gwt dependency coordinates.
Update the org.realityforge.com.google.gwt dependency coordinates.
YAML
apache-2.0
realityforge/gwt-cache-filter,realityforge/gwt-cache-filter,realityforge/gwt-cache-filter
3257c2485a30b9e7ec6630e6ee747a0ef102b961
blueprints.yaml
blueprints.yaml
name: Bootstrapper version: 1.0.1 description: "Loads the Bootstrap Framework v3.3.2 assets for any plugin/theme that needs it" icon: bold author: name: Team Grav email: devs@getgrav.org url: http://getgrav.org homepage: https://github.com/getgrav/grav-plugin-bootstrapper demo: http://demo.getgrav.org/bootstrap-s...
name: Bootstrapper version: 1.0.1 description: "Loads the Bootstrap Framework v3.3.2 assets for any plugin/theme that needs it" icon: bold author: name: Team Grav email: devs@getgrav.org url: http://getgrav.org homepage: https://github.com/getgrav/grav-plugin-bootstrapper demo: http://demo.getgrav.org/bootstrap-s...
Add options to the blueprint
Add options to the blueprint
YAML
mit
dimayakovlev/grav-plugin-bootstrapper,dimayakovlev/grav-plugin-bootstrapper,getgrav/grav-plugin-bootstrapper,getgrav/grav-plugin-bootstrapper
abbf850d257a53a22f456a8e654a893873584542
updates/version.yaml
updates/version.yaml
1.0.1: First version of Uploader 1.0.2: Added JavaScript events for change, upload success and remove upload 1.0.3: Fix multiple uploads occuring in newer builds 1.0.4: Corrected support for maxSize property
1.0.1: First version of Uploader 1.0.2: Added JavaScript events for change, upload success and remove upload 1.0.3: Fix multiple uploads occuring in newer builds 1.0.4: Corrected support for maxSize property 1.0.5: Allow multiple uploaders on the same page
Allow multiple uploaders on the same page
1.0.5: Allow multiple uploaders on the same page
YAML
mit
responsiv/uploader-plugin,responsiv/uploader-plugin,responsiv/uploader-plugin
856064f8b84ffe04b6a1edb6d71d49c625c81674
circle.yml
circle.yml
machine: ruby: version: 2.3.4 node: version: 6 dependencies: cache_directories: - "~/.cache/yarn" pre: - 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\" -...
machine: ruby: version: 2.3.4 node: version: 6 dependencies: cache_directories: - "~/.cache/yarn" pre: - 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/chro...
Build React files on CircleCI
Build React files on CircleCI
YAML
agpl-3.0
cartothemax/ifme,julianguyen/ifme,julianguyen/ifme,sexybiggetje/ifme,cartothemax/ifme,sexybiggetje/ifme,cartothemax/ifme,julianguyen/ifme,sexybiggetje/ifme,julianguyen/ifme,cartothemax/ifme
35cd333f3de69d81e94b3fe43d676a760fe0f3c7
circle.yml
circle.yml
version: 2 jobs: build: working_directory: ~/react-mobiledoc-editor docker: - image: node:8.10.0 steps: - checkout - run: yarn install --pure-lockfile - run: yarn test
version: 2 jobs: build: working_directory: ~/react-mobiledoc-editor docker: - image: circleci/node:8.10-browsers steps: - checkout - run: yarn install --pure-lockfile - run: yarn test
Set proper docker image for chrome headless (?)
Set proper docker image for chrome headless (?)
YAML
bsd-3-clause
upworthy/react-mobiledoc-editor
0d78c83158b15847e2ef0ef2bf39381c5c733f02
circle.yml
circle.yml
machine: timezone: America/Sao_Paulo # Set the timezone node: version: 6.2.1 deployment: production: branch: master commands: - ./bin/deploy.sh feature: branch: /(add-|fix-).*/ commands: - ./bin/deploy.sh
machine: timezone: America/Sao_Paulo # Set the timezone node: version: 6.2.1 deployment: production: branch: master commands: - ./bin/deploy.sh feature: branch: /(add|fix)(-|\/).*/ commands: - ./bin/deploy.sh
Update CircleCI configuration to accepts branch name convention to make automated deploy to staging.
Update CircleCI configuration to accepts branch name convention to make automated deploy to staging.
YAML
agpl-3.0
nossas/bonde-client,nossas/bonde-client,nossas/bonde-client
493794554779eb0b0f0eb7c5c14c3b8aa0df8a10
circle.yml
circle.yml
machine: environment: PROJECT_NAME: gopher-slack-bot CLUSTER_NAME: gopher-slack-bot CLOUDSDK_COMPUTE_ZONE: eu-west-1 DEBIAN_FRONTEND: noninteractive services: - docker dependencies: pre: - sudo pip install pyopenssl - sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update ...
machine: environment: PROJECT_NAME: gopher-slack-bot CLUSTER_NAME: gopher-slack-bot CLOUDSDK_COMPUTE_ZONE: eu-west-1 DEBIAN_FRONTEND: noninteractive services: - docker dependencies: pre: - sudo pip install pyopenssl - sudo apt-get install python-openssl - sudo /opt/google-cloud-sd...
Make sure we really install it
Make sure we really install it
YAML
apache-2.0
gopheracademy/gopher,gopheracademy/gopher
5921336a8d7647c39b346619c7f4ba228e4af567
circle.yml
circle.yml
machine: environment: PATH: ~/.local/bin:~/spark/bin:$PATH checkout: post: - git submodule update --recursive --init dependencies: cache_directories: - "~/.stack" override: # Work around who knows what ld.bfd bug. - sudo update-alternatives --install "/usr/bin/ld" "ld" "/usr/bin/ld.gold" 20 - s...
machine: environment: PATH: ~/.local/bin:~/spark/bin:$PATH services: - docker checkout: post: - git submodule update --recursive --init dependencies: cache_directories: - "~/.stack" override: - mkdir -p ~/.local/bin - curl -L --retry 3 https://www.stackage.org/stack/linux-x86_64 | tar xz --wi...
Make the CI build be stack --docker based.
Make the CI build be stack --docker based. In this way, we get to test that things still build fine in the Docker image. As a side effect, we also get to exercise the nix-shell too, since Docker uses it internally. This change has the added benefit of making the CI steps shorter and simpler.
YAML
bsd-3-clause
tweag/sparkle,tweag/sparkle
36b80fc4ef6cf5da8153d54e29934e2bc742a33a
circle.yml
circle.yml
machine: node: version: 0.10.24 python: version: 2.7.3 dependencies: pre: - wget http://downloads.sourceforge.net/project/optipng/OptiPNG/optipng-0.7.5/optipng-0.7.5.tar.gz - tar xvf optipng-0.7.5.tar.gz - cd optipng-0.7.5; ./configure; make; sudo checkinstall -y; - make deps ...
machine: node: version: 0.10.24 python: version: 2.7.3 dependencies: pre: - wget http://downloads.sourceforge.net/project/optipng/OptiPNG/optipng-0.7.5/optipng-0.7.5.tar.gz - tar xvf optipng-0.7.5.tar.gz - cd optipng-0.7.5; ./configure; make; sudo checkinstall -y; - rm -rf opti...
Remove optipng from build artifacts
Remove optipng from build artifacts
YAML
bsd-2-clause
amino-data/redash,stefanseifert/redash,chriszs/redash,vishesh92/redash,ninneko/redash,hudl/redash,moritz9/redash,pubnative/redash,moritz9/redash,getredash/redash,guaguadev/redash,jmvasquez/redashtest,alexanderlz/redash,useabode/redash,pubnative/redash,chriszs/redash,alexanderlz/redash,getredash/redash,useabode/redash,s...
966e99782ca5d156e4357d52a3d2e7d6acc46801
circle.yml
circle.yml
machine: timezone: UTC services: - postgresql dependencies: pre: - sudo apt-get update - sudo apt-get install python-pip - sudo apt-get install build-essential - sudo apt-get install python-dev - sudo apt-get install libpq-dev - sudo apt-get install postgresql-server-dev-all -...
machine: timezone: UTC services: - postgresql dependencies: pre: - sudo apt-get update - sudo apt-get install python-pip - sudo apt-get install build-essential - sudo apt-get install python-dev - sudo apt-get install libpq-dev - sudo apt-get install postgresql-server-dev-all -...
Remove jinja2 dependency from build
Remove jinja2 dependency from build
YAML
mit
BedquiltDB/bedquilt-core
f1c65cead4fe3996bee66bb6966eb4bd9d2ecd05
circle.yml
circle.yml
machine: services: - redis dependencies: pre: - sudo apt-get update -qq - sudo apt-get install -qq cmake libevent-dev libglib2.0-dev libgmime-2.6-dev libluajit-5.1-dev liblua5.1-0-dev libmagic-dev libpcre3-dev libsqlite3-dev libssl-dev make ragel redis-server gcc - sudo pip install robo...
dependencies: pre: - sudo apt-get update -qq - sudo apt-get install -qq cmake libevent-dev libglib2.0-dev libgmime-2.6-dev libluajit-5.1-dev liblua5.1-0-dev libmagic-dev libpcre3-dev libsqlite3-dev libssl-dev make ragel redis-server gcc - sudo pip install robotframework # - echo $TRAVIS_OS_NAME #...
Drop redis service from CI configuration
[Minor] Drop redis service from CI configuration
YAML
apache-2.0
minaevmike/rspamd,minaevmike/rspamd,AlexeySa/rspamd,minaevmike/rspamd,minaevmike/rspamd,minaevmike/rspamd,minaevmike/rspamd,AlexeySa/rspamd,AlexeySa/rspamd,minaevmike/rspamd,AlexeySa/rspamd,AlexeySa/rspamd,AlexeySa/rspamd,AlexeySa/rspamd,minaevmike/rspamd,AlexeySa/rspamd,AlexeySa/rspamd,minaevmike/rspamd
88c59c8a9aea344320c958778fd4223522278839
circle.yml
circle.yml
machine: node: version: "6.1.0" python: version: "3.5.1" environment: DATABASE_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test SECRET_KEY: irrelevant services: - docker dependencies: override: - yarn - pip install -r requirements.txt post: - yarn run build-assets - ./...
machine: node: version: "6.1.0" python: version: "3.5.1" environment: DATABASE_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test SECRET_KEY: irrelevant services: - docker dependencies: override: - yarn - pip install -r requirements.txt post: - yarn run build-assets - ./...
Deploy only tags that start with v
Deploy only tags that start with v
YAML
bsd-3-clause
car3oon/saleor,maferelo/saleor,car3oon/saleor,itbabu/saleor,maferelo/saleor,UITools/saleor,car3oon/saleor,itbabu/saleor,maferelo/saleor,tfroehlich82/saleor,KenMutemi/saleor,mociepka/saleor,itbabu/saleor,UITools/saleor,UITools/saleor,tfroehlich82/saleor,UITools/saleor,KenMutemi/saleor,tfroehlich82/saleor,KenMutemi/saleo...
b3515e913f546dd6a2ed704b3940ff4677351083
circle.yml
circle.yml
machine: services: - docker dependencies: post: - docker build -t $AWS_ACCOUNT_ID.dkr.ecr.us-west-2.amazonaws.com/tyrantrep:$CIRCLE_SHA1 . test: post: - docker run -d -p 8080:8080 --name tubackend $AWS_ACCOUNT_ID.dkr.ecr.us-west-2.amazonaws.com/tyrantrep:$CIRCLE_SHA1 - sleep 10 - curl --retr...
machine: services: - docker dependencies: post: - docker build -t $AWS_ACCOUNT_ID.dkr.ecr.us-west-2.amazonaws.com/tyrantrep:$CIRCLE_SHA1 . test: post: - docker run -d -p 8080:8080 --name tubackend $AWS_ACCOUNT_ID.dkr.ecr.us-west-2.amazonaws.com/tyrantrep:$CIRCLE_SHA1 - sleep 10 - curl --retr...
Set permissions for deploy file
Set permissions for deploy file
YAML
mit
kragej/tubackend,kragej/tubackend
2f47073e8b636ec83d751d34b0064eff61c21c96
circle.yml
circle.yml
machine: java: version: openjdk8 services: - docker test: override: - mvn -P test-leave-running integration-test post: - if [[ $GIT_USER_EMAIL ]]; then git config --global user.email "$GIT_USER_EMAIL" ; fi - if [[ $GIT_USER_NAME ]]; then git config --global user.name "$GIT_USER_NAME" ; fi ...
machine: java: version: openjdk8 services: - docker post: - sudo sysctl -w vm.max_map_count=262144 test: override: - mvn -P test-leave-running integration-test post: - if [[ $GIT_USER_EMAIL ]]; then git config --global user.email "$GIT_USER_EMAIL" ; fi - if [[ $GIT_USER_NAME ]]; then ...
Adjust mmap count for ES container testing
Adjust mmap count for ES container testing
YAML
apache-2.0
itzg/junit-rule-docker
d40691e04ccb42948cb3590ed9ef71034705ff8f
circle.yml
circle.yml
--- machine: ruby: version: 2.3.1 test: override: - RAILS_ENV=test bundle exec rspec -r rspec_junit_formatter --format RspecJunitFormatter -o $CIRCLE_TEST_REPORTS/rspec/junit.xml: parallel: true files: - spec/**/*.rb
--- machine: ruby: version: 2.4.0 dependencies: pre: - echo "export rvm_ignore_gemsets_flag=1" >> ~/.rvmrc - gem update --system - gem install bundler override: - bundle check --path=vendor/bundle || bundle install --path=vendor/bundle --jobs=4 --retry=3 --full-index test: override: - RA...
Update RubyGems before running bundle install
Update RubyGems before running bundle install
YAML
bsd-3-clause
Xenapto/mailchimp_api_v3
45f7f7db3e53ad8d9f5123c88fcb958e6b937314
circle.yml
circle.yml
## Customize the test machine machine: timezone: Europe/London node: version: 0.8.2 dependencies: pre: - npm install -g jamjs grunt - jam install test: override: - npm test post: - grunt clean-deps - jam compile assets/require.js
## Customize the test machine machine: timezone: Europe/London node: version: 0.8.2 dependencies: pre: - npm install -g jamjs grunt - jam install test: pre: - grunt copy-deps override: - npm test post: - grunt clean-deps - jam compile assets/require.js
Copy dependencies into assets folder.
Copy dependencies into assets folder.
YAML
mit
pads/TiddlyBone
9c5b1f028992d9f12c666ba753081f4f535ad2b9
circle.yml
circle.yml
machine: python: version: 3.5.1 dependencies: override: - pip install -U pip wheel - make install test: override: - make test
machine: python: version: 3.5.1 dependencies: override: - pip install -U pip bootstrapper wheel - make install test: override: - make test
Fix to Circle CI support.
Fix to Circle CI support.
YAML
bsd-3-clause
playpauseandstop/rororo,playpauseandstop/rororo
0bca833c77a5e9ee897201ce352ea13c29821bc7
circle.yml
circle.yml
machine: node: version: v4.2.6 dependencies: pre: - npm install -g npm@3 test: override: - ./node_modules/.bin/eslint --debug . --format tap | ./node_modules/.bin/tap-xunit > ${CIRCLE_TEST_REPORTS}/lint.xml && test ${PIPESTATUS[0]} -eq 0 - NODE_PATH=source ./node_modules/.bin/babel-node source/...
machine: node: version: v4.2.6 dependencies: pre: - npm install -g npm@3 - npm set progress=false test: override: - ./node_modules/.bin/eslint --debug . --format tap | ./node_modules/.bin/tap-xunit > ${CIRCLE_TEST_REPORTS}/lint.xml && test ${PIPESTATUS[0]} -eq 0 - NODE_PATH=source ./node_mo...
Add reports as artifacts folder to see screenshots
Add reports as artifacts folder to see screenshots
YAML
mit
ericelliott/universal-react-boilerplate,ericelliott/universal-react-boilerplate,cloverfield-tools/universal-react-boilerplate,cloverfield-tools/universal-react-boilerplate
c35851a75fb218b6e65096f0fe5806cba55081e2
circle.yml
circle.yml
machine: node: version: 8.1.0 test: override: - mkdir -p $CIRCLE_TEST_REPORTS/lab - npm run test -- --output $CIRCLE_TEST_REPORTS/junit/test-results.xml --reporter junit
machine: node: version: 8.1.0 test: override: - mkdir -p $CIRCLE_TEST_REPORTS/lab - npm run test -- --output $CIRCLE_TEST_REPORTS/lab/junit.xml --reporter junit
Revert "Corrected path for junit output"
Revert "Corrected path for junit output" The old path actually worked fine. This reverts commit a599623ee55d7d172bb8bf5547edb91e366dce40.
YAML
isc
mikl/edzif-converter
bdee8683dd60cf63e626c07d63bb655bcf84170c
circle.yml
circle.yml
version: 2 jobs: build: docker: - image: circleci/ruby:2.6.0 environment: TZ: "/usr/share/zoneinfo/America/Argentina/Buenos_Aires" paralelism: 2 steps: - add_ssh_keys: fingerprints: - "2b:d1:13:72:6c:a2:d1:4c:30:a5:a7:e5:b4:52:ee:75" - run: git config --glob...
version: 2 jobs: build: docker: - image: circleci/ruby:2.6.0 environment: TZ: "/usr/share/zoneinfo/America/Argentina/Buenos_Aires" paralelism: 2 steps: - add_ssh_keys: fingerprints: - "2b:d1:13:72:6c:a2:d1:4c:30:a5:a7:e5:b4:52:ee:75" - run: git config --glob...
Revert "Prometo que ya agrego los tests"
Revert "Prometo que ya agrego los tests" This reverts commit e3d7f5d457287de7d22e995296fdf95cf9355177.
YAML
apache-2.0
tadp-utn-frba/tadp-utn-frba.github.io,tadp-utn-frba/tadp-utn-frba.github.io,tadp-utn-frba/tadp-utn-frba.github.io,tadp-utn-frba/tadp-utn-frba.github.io
b6323a7a445b28b6c60dc872347504cbfd6a45b2
circle.yml
circle.yml
#dependencies: #pre: #- sudo apt-get update #- sudo apt-get install gcc-5; sudo apt-get install g++-5 #- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 100 #- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 100 test: pre: - uname -a - gcc --version ...
#dependencies: #pre: #- sudo apt-get update #- sudo apt-get install gcc-5; sudo apt-get install g++-5 #- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 100 #- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 100 test: pre: - uname -a - gcc --version ...
Use eth0 instead of tap0 which wasn't created properly.
Use eth0 instead of tap0 which wasn't created properly.
YAML
unlicense
winksaville/test-af_packet,winksaville/test-af_packet
ee961ced5739311c0027c088696c25cbe9dfe66b
circle.yml
circle.yml
machine: services: - docker dependencies: override: - docker build -t test-integration-nodejs:latest . - > docker run -e "APIKEY=${APIKEY}" -e "CIRCLE_PROJECT_REPONAME=${CIRCLE_PROJECT_REPONAME}" -e "CIRCLE_BUILD_NUM=${CIRCLE_BUILD_NUM}" -e "IMAGE=${IMAGE:-coreos-beta}" ...
machine: services: - docker dependencies: override: - docker build -t test-integration-nodejs:latest . - > docker run -e "APIKEY=${APIKEY}" -e "CIRCLE_PROJECT_REPONAME=${CIRCLE_PROJECT_REPONAME}" -e "CIRCLE_BUILD_NUM=${CIRCLE_BUILD_NUM}" -e "IMAGE=${IMAGE:-coreos-beta}" ...
Remove unused ssh-key from digital ocean.
Remove unused ssh-key from digital ocean.
YAML
apache-2.0
experimental-platform/test-integration-nodejs
81b73e85a89af549e6228dc6908db46ad0f5390f
circle.yml
circle.yml
machine: java: version: oraclejdk8 test: override: - ./gradlew test
machine: java: version: oraclejdk8 test: override: - ./gradlew clean check
Change to `gradlew clean check`
Change to `gradlew clean check`
YAML
apache-2.0
o19s/elasticsearch-learning-to-rank,o19s/elasticsearch-learning-to-rank
c768555677b1b67c255c04adbaee28a74fda0a2c
circle.yml
circle.yml
machine: python: version: 2.7.12 # this specific version is preinstalled on the CI servers and allows faster builds environment: PYPI_USERNAME: openfisca-bot # set here the name of your Pypi account to automatically publish your template to Pypi # PYPI_PASSWORD: this value is set in CircleCI's web int...
machine: python: version: 2.7.12 # this specific version is preinstalled on the CI servers and allows faster builds environment: PYPI_USERNAME: openfisca-bot # set here the name of your Pypi account to automatically publish your template to Pypi # PYPI_PASSWORD: this value is set in CircleCI's web int...
Document how to use core FB
Document how to use core FB
YAML
agpl-3.0
sgmap/openfisca-france,antoinearnoud/openfisca-france,sgmap/openfisca-france,antoinearnoud/openfisca-france
8513952a056a947dd1510d05d5500712a32273e6
circle.yml
circle.yml
machine: node: version: 4.4.7 environment: NODE_ENV: test dependencies: # Gulp must be installed in the global environment. pre: - npm install -g gulp-cli post: - npm install -g aws-cli # For hosting on mapzen.com. Only deploy if tests pass. Compiled files are # rebuilt for a production envi...
machine: node: version: 4.4.7 environment: NODE_ENV: test dependencies: # Gulp must be installed in the global environment. pre: - npm install -g gulp-cli post: - npm install -g aws-cli test: post: # For Precog. - cp -R build data index.html $CIRCLE_ARTIFACTS # For hosting on mapz...
Revert aab100: files must be copied after test for non-master branches
Revert aab100: files must be copied after test for non-master branches
YAML
mit
tangrams/tangram-play,tangrams/tangram-play
50db25cd62ad0e985bf4ec1f0e6954a12432eb45
circle.yml
circle.yml
machine: java: version: oraclejdk8 services: - docker test: override: - ./gradlew checkstyleMain checkstyleTest test --info post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; general: artifacts: ...
machine: java: version: oraclejdk8 services: - docker test: override: - ./gradlew checkstyleMain checkstyleTest test --info post: - mkdir -p $CIRCLE_TEST_REPORTS/junit/ - find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \; general: artifacts: ...
Remove unnecessary develop publish command
Remove unnecessary develop publish command
YAML
apache-2.0
palantir/docker-compose-rule,palantir/docker-compose-rule,tomasulo/docker-compose-rule
24c1fd812e7cba07b9c7fda32f6b92a5028f9ab8
.bazelci/config.yml
.bazelci/config.yml
--- platforms: ubuntu1404: test_targets: - //:bazelisk_test ubuntu1604: test_targets: - //:bazelisk_test ubuntu1804: test_targets: - //:bazelisk_test macos: test_targets: - //:bazelisk_test windows: test_targets: - //:bazelisk_test test_flags: - --te...
--- platforms: ubuntu1404: test_targets: - //:bazelisk_test ubuntu1604: test_targets: - //:bazelisk_test ubuntu1804: test_targets: - //:bazelisk_test macos: test_targets: - //:bazelisk_test test_flags: - --test_output=streamed windows: test_targets: ...
Add test_flags to workaround Bazel bugs on CI
Add test_flags to workaround Bazel bugs on CI
YAML
apache-2.0
bazelbuild/bazelisk,bazelbuild/bazelisk,bazelbuild/bazelisk,bazelbuild/bazelisk
2c429b2717903443376c81425cfa52c319bdde27
.codeclimate.yml
.codeclimate.yml
engines: duplication: enabled: true config: languages: - javascript eslint: enabled: true fixme: enabled: true markdownlint: enabled: true ratings: paths: - "**.js" - "**.md"
engines: duplication: enabled: true config: languages: - javascript eslint: enabled: true fixme: enabled: true markdownlint: enabled: true ratings: paths: - "**.js" - "**.md"
Fix missing tab causing code climate to fail builds
Fix missing tab causing code climate to fail builds
YAML
mit
Steven-Roberts/eslint-config
8b224e1406d3a24273aadad7c4e6eb4bce9eea4c
.kitchen.dokken.yml
.kitchen.dokken.yml
driver: name: dokken privileged: true # because Docker and SystemD/Upstart chef_version: <%= ENV['CHEF_VERSION'] || 'current' %> transport: name: dokken provisioner: name: dokken deprecations_as_errors: true verifier: name: inspec platforms: - name: debian-7 driver: image: dokken/debian-7 pi...
driver: name: dokken privileged: true # because Docker and SystemD/Upstart chef_version: <%= ENV['CHEF_VERSION'] || 'current' %> transport: name: dokken provisioner: name: dokken deprecations_as_errors: true verifier: name: inspec platforms: - name: debian-7 driver: image: dokken/debian-7 pi...
Remove getty service from Stretch
[GH-234] Remove getty service from Stretch Remove annoying tty service which consumes 100% CPU Signed-off-by: Tom Parker <9cbd9c1da67dd4d9d0281b342ba534e921fabeed@tevp.net>
YAML
apache-2.0
opscode-cookbooks/apt,chef-cookbooks/apt,opscode-cookbooks/apt,chef-cookbooks/apt
4027ee5ab468e8688551234875562e280809e40a
tasks/storage.yml
tasks/storage.yml
--- - name: Create filesystem on storage block device filesystem: dev: "{{ docker_storage_block_device }}" fstype: "{{ docker_storage_filesystem }}" force: "{{ docker_storage_force }}" become: true ignore_errors: true - name: Create docker directory file: path: /var/lib/docker state: direct...
--- - name: Create filesystem on storage block device filesystem: dev: "{{ docker_storage_block_device }}" fstype: "{{ docker_storage_filesystem }}" force: "{{ docker_storage_force }}" become: true ignore_errors: true - name: Create docker directory file: path: /var/lib/docker state: direct...
Use path instead of name
Use path instead of name
YAML
apache-2.0
betacloud/ansible-docker,betacloud/ansible-docker
df610c2eb307f59e071235ea2d0db2bcb18fd526
.drone.yml
.drone.yml
build: test: image: golang commands: - go get $(comm -23 <(sort <(go list -f '{{join .Imports "\n"}}' ./...) | uniq) <(go list std) | grep -v TheThingsNetwork) - go get $(comm -23 <(sort <(go list -f '{{join .TestImports "\n"}}' ./...) | uniq) <(go list std) | grep -v TheThingsNetwork) - go ...
build: test: image: golang commands: - bash -c 'go get $(comm -23 <(sort <(go list -f '"'"'{{join .Imports "\n"}}'"'"' ./...) | uniq) <(go list std) | grep -v TheThingsNetwork)' - bash -c 'go get $(comm -23 <(sort <(go list -f '"'"'{{join .TestImports "\n"}}'"'"' ./...) | uniq) <(go list std) | gr...
Fix dependency selection for Drone
Fix dependency selection for Drone
YAML
mit
jvanmalder/ttn,LoRaWanSoFa/ttn,mgranberry/ttn,TheThingsNetwork/ttn,jvanmalder/ttn,LoRaWanSoFa/ttn,TheThingsNetwork/ttn,TheThingsNetwork/ttn,mgranberry/ttn,mgranberry/ttn,jvanmalder/ttn
1720f149a405a988cff55d7f8f5273a811a267a6
.scrutinizer.yml
.scrutinizer.yml
before_commands: - 'composer install --prefer-source --no-interaction --dev' filter: paths: - 'src/*' excluded_paths: - 'vendor/*' - 'tests/*' tools: php_mess_detector: true php_code_coverage: config_path: phpunit.xml php_cpd: excluded_dirs: - ...
before_commands: - 'composer install --prefer-source --no-interaction --dev' filter: paths: - 'src/*' excluded_paths: - 'build/*' - 'public/*' - 'vendor/*' - 'tests/*' tools: php_mess_detector: true php_code_sniffer: config: standard: PSR1 ...
Add code sniffer using PSR-1 standard
Add code sniffer using PSR-1 standard Signed-off-by: crynobone <e1a543840a942eb68427510a8a483282a7bfeddf@gmail.com>
YAML
mit
orchestral/foundation,orchestral/foundation,orchestral/foundation,stevebauman/foundation
bc0c7933774275cd9a92c28905aeb7e7c1591550
packages/gh/ghc-syb-utils.yaml
packages/gh/ghc-syb-utils.yaml
homepage: http://github.com/nominolo/ghc-syb changelog-type: '' hash: dc4326e7ea0f8064ab782b7ed95ec79fd9ad87ef0b6cca8066020b8477435652 test-bench-deps: ghc: -any base: -any ghc-syb-utils: -any filepath: -any ghc-paths: -any directory: -any maintainer: Thomas Schilling <nominolo@googlemail.com> synopsis: Scr...
homepage: http://github.com/nominolo/ghc-syb changelog-type: '' hash: f136fb719b1d93eb54c189867c3176f3b64c87e0c9c7c2690c470a0f75e5d952 test-bench-deps: ghc: -any base: -any ghc-syb-utils: -any filepath: -any ghc-paths: -any directory: -any maintainer: Thomas Schilling <nominolo@googlemail.com> synopsis: Scr...
Update from Hackage at 2017-06-11T14:09:28Z
Update from Hackage at 2017-06-11T14:09:28Z
YAML
mit
commercialhaskell/all-cabal-metadata
490e6b68f629222791b45fb909d282ef510bd03c
.zuul.yaml
.zuul.yaml
- job: name: heatclient-functional parent: devstack-tox-functional timeout: 4200 required-projects: - openstack/heat - openstack/python-heatclient vars: openrc_enable_export: true devstack_plugins: heat: https://opendev.org/openstack/heat irrelevant-files: -...
- job: name: heatclient-functional parent: devstack-tox-functional timeout: 4200 required-projects: - openstack/heat - openstack/python-heatclient vars: openrc_enable_export: true devstack_plugins: heat: https://opendev.org/openstack/heat irrelevant-files: -...
Add Python3 xena unit tests
Add Python3 xena unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for xena. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Depends-On: https://review.opendev.org/c/opensta...
YAML
apache-2.0
openstack/python-heatclient
10941239f622536a90a35348f1ebd02283e66bb8
.zuul.yaml
.zuul.yaml
- job: name: vitrage-dashboard-integration-tests parent: horizon-integration-tests required-projects: - name: openstack/horizon - name: openstack/vitrage - name: openstack/python-vitrageclient - name: openstack/vitrage-dashboard roles: - zuul: openstack-infra/devstack ...
- job: name: vitrage-dashboard-integration-tests parent: horizon-integration-tests required-projects: - name: openstack/horizon - name: openstack/vitrage - name: openstack/python-vitrageclient - name: openstack/vitrage-dashboard roles: - zuul: openstack-infra/devstack ...
Add Python3 wallaby unit tests
Add Python3 wallaby unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for wallaby. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I0f5421091c31f2c2b01bba3927d5283...
YAML
apache-2.0
openstack/vitrage-dashboard,openstack/vitrage-dashboard,openstack/vitrage-dashboard,openstack/vitrage-dashboard
25f1974169494b65e2efc41a6d0514edbf3bfc82
config/sidekiq.yml
config/sidekiq.yml
:verbose: false :concurrency: 10 :timeout: 8 staging: :concurrency: 10 production: :concurrency: 20 :queues: - default
:verbose: false :concurrency: 5 :timeout: 8 staging: :concurrency: 5 production: :concurrency: 5 :queues: - default
Reduce concurrency to avoid max number of clients error on heroku.
Reduce concurrency to avoid max number of clients error on heroku.
YAML
mit
SplitTime/OpenSplitTime,SplitTime/OpenSplitTime,SplitTime/OpenSplitTime,voltagead/OpenSplitTime,voltagead/OpenSplitTime,voltagead/OpenSplitTime
ed39f91c01e523bc8073ef6738ae9120c9ae67c8
configuration.yaml
configuration.yaml
ping: - name: local host: gateway.local interval: 5 prefix: local_ - name: remote host: p1db-prisms-p1.bmi.utah.edu interval: 15 prefix: remote_ lcd: display_air_quality: yes wireless:
ping: - name: local host: gateway.local interval: 5 prefix: local_ - name: remote host: p1db-prisms-p1.bmi.utah.edu interval: 15 prefix: remote_ lcd: display_air_quality: yes wireless: dylos: sht21:
Enable dylos and sht21 sensors
Enable dylos and sht21 sensors
YAML
apache-2.0
VDL-PRISM/dylos
453dd30e57d58e706fcc7a983266c6fae2620c91
scripts/jenkins/qa/macros.yaml
scripts/jenkins/qa/macros.yaml
--- - wrapper: name: mkphyscloud-qa-common-wrappers wrappers: - build-name: name: '#${BUILD_NUMBER}: ${ENV,var="cloudsource"}' - timestamps
--- - wrapper: name: mkphyscloud-qa-common-wrappers wrappers: - build-name: name: '#${BUILD_NUMBER}: ${ENV,var="cloudsource"}' - timestamps - publisher: name: mkphyscloud-qa-common-publishers publishers: - archive: artifacts: .artifacts/**
Add publisher macro to archive artifacts
Add publisher macro to archive artifacts
YAML
apache-2.0
gosipyan/automation,SUSE-Cloud/automation,vmoravec/automation,SUSE-Cloud/automation,gosipyan/automation,aspiers/automation,vmoravec/automation,aspiers/automation,vmoravec/automation,aspiers/automation,SUSE-Cloud/automation,aspiers/automation,vmoravec/automation,SUSE-Cloud/automation,gosipyan/automation,gosipyan/automat...