commit
stringlengths 40
40
| old_file
stringlengths 4
237
| new_file
stringlengths 4
237
| old_contents
stringlengths 1
4.24k
| new_contents
stringlengths 1
4.87k
| subject
stringlengths 15
778
| message
stringlengths 15
8.75k
| lang
stringclasses 266
values | license
stringclasses 13
values | repos
stringlengths 5
127k
|
---|---|---|---|---|---|---|---|---|---|
8fd8cf2915e04658d0651c9cdb97c7a394dd248f
|
packages/tw/twitter-types-lens.yaml
|
packages/tw/twitter-types-lens.yaml
|
homepage: https://github.com/himura/twitter-types
changelog-type: ''
hash: 84b48cdc4ba56ef3e01fd515d2c81f30970954bef8181ddfbfcd8b43f0f970cd
test-bench-deps: {}
maintainer: [email protected]
synopsis: Twitter JSON types (lens powered)
changelog: ''
basic-deps:
base: ! '>=4 && <5'
time: -any
text: -any
lens: ! '>=4.0 && <5'
twitter-types: ! '>=0.8 && <0.9'
template-haskell: -any
all-versions:
- 0.6.0
- 0.7.0
- 0.7.1
- 0.7.2
- 0.8.0
- 0.8.1
author: Takahiro HIMURA
latest: 0.8.1
description-type: haddock
description: Please see the README on Github at <https://github.com/himura/twitter-types#readme>
license-name: BSD-3-Clause
|
homepage: https://github.com/himura/twitter-types
changelog-type: ''
hash: 3ab3b2d7629a81cbbb791f93d75701334f14f739b44030f90ebbfab38e48533c
test-bench-deps: {}
maintainer: [email protected]
synopsis: Twitter JSON types (lens powered)
changelog: ''
basic-deps:
base: ! '>=4 && <5'
time: -any
text: -any
lens: ! '>=4.0 && <5'
twitter-types: ! '>=0.9 && <0.10'
template-haskell: -any
all-versions:
- 0.6.0
- 0.7.0
- 0.7.1
- 0.7.2
- 0.8.0
- 0.8.1
- 0.9.0
author: Takahiro HIMURA
latest: 0.9.0
description-type: haddock
description: Please see the README on Github at <https://github.com/himura/twitter-types#readme>
license-name: BSD-3-Clause
|
Update from Hackage at 2019-10-26T07:21:31Z
|
Update from Hackage at 2019-10-26T07:21:31Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
19f59f9e7743fe075d48af13d45e33c776bba577
|
ansible-smstools/inventory/group_vars/all.yml
|
ansible-smstools/inventory/group_vars/all.yml
|
---
smstools_service_allow: [ '0.0.0.0/0' ]
|
---
# Disable PKI support in Postfix
postfix_pki: False
smstools_service_allow: [ '0.0.0.0/0' ]
|
Create a test case with Postfix and disabled PKI
|
Create a test case with Postfix and disabled PKI
|
YAML
|
mit
|
ganto/debops-test-suite,ganto/test-suite,ganto/test-suite,ypid/test-suite-ypid,ganto/debops-test-suite,ganto/test-suite,debops/test-suite,ypid/test-suite-ypid,debops/test-suite,ganto/test-suite,ganto/test-suite,ypid/test-suite-ypid,debops/test-suite,debops/test-suite,ganto/debops-test-suite,drybjed/test-suite,drybjed/test-suite,debops/test-suite,drybjed/test-suite,ganto/debops-test-suite,drybjed/test-suite,ypid/test-suite-ypid,ypid/test-suite-ypid,ganto/debops-test-suite,drybjed/test-suite
|
cec4a584dd6a1fca5595d0dfcc229f77e7217d6e
|
roles/apache/tasks/runit.yml
|
roles/apache/tasks/runit.yml
|
---
- set_fact:
service_name: "apache"
- name: create the directory for the service
file:
path: "/etc/sv/{{ service_name }}"
state: directory
mode: 0755
- name: create the runit startup scripts
template:
src: "{{ item.src }}"
dest: "/etc/sv/{{ service_name }}/{{ item.dest }}"
mode: 0755
with_items:
- {src: runit-run.j2, dest: run}
- {src: runit-finish.j2, dest: finish}
- {src: runit-log-run.j2, dest: "log/run"}
- name: enable the service
runit:
name: "{{ service_name }}"
enabled: "yes"
|
---
- set_fact:
service_name: "apache"
- name: create the directory for the service
file:
path: "/etc/sv/{{ item }}"
state: directory
mode: 0755
with_items:
- "{{ service_name }}"
- "{{ service_name }}/log"
- name: create the runit startup scripts
template:
src: "{{ item.src }}"
dest: "/etc/sv/{{ service_name }}/{{ item.dest }}"
mode: 0755
with_items:
- {src: runit-run.j2, dest: run}
- {src: runit-finish.j2, dest: finish}
- {src: runit-log-run.j2, dest: "log/run"}
- name: enable the service
runit:
name: "{{ service_name }}"
enabled: "yes"
|
Create the log dir for Apache
|
Create the log dir for Apache
|
YAML
|
mit
|
sbsdev/sbs-infrastructure
|
4e2d534185334fde3a0a84ab9b952000590fffd6
|
roles/spotify/tasks/main.yml
|
roles/spotify/tasks/main.yml
|
---
- name: Ensure spotify is installed
include_role:
name: aur-packages
vars:
packages:
- spotify
tags:
- spotify
when: ansible_facts.distribution == 'Archlinux'
- name: Ensure directory for spotify preferences exits
file:
path: "{{ ansible_user_dir }}/.config/spotify"
state: directory
owner: "{{ ansible_user_id }}"
mode: 0700
tags:
- spotify
- name: Ensure spotify user cache is limited to 512MB
lineinfile:
name: "{{ ansible_user_dir }}/.config/spotify/prefs"
regexp: '^storage.size='
line: 'storage.size=512'
state: present
tags:
- spotify
|
---
- name: Ensure spotify is installed
include_role:
name: aur-packages
vars:
packages:
- spotify
tags:
- spotify
when: ansible_facts.distribution == 'Archlinux'
- name: Ensure directory for spotify preferences exits
file:
path: "{{ ansible_user_dir }}/.config/spotify"
state: directory
owner: "{{ ansible_user_id }}"
mode: 0700
tags:
- spotify
- name: Ensure spotify user cache is limited to 512MB
lineinfile:
name: "{{ ansible_user_dir }}/.config/spotify/prefs"
regexp: '^storage.size='
line: 'storage.size=512'
state: present
create: yes
tags:
- spotify
|
Create spotify prefs if file does not exist
|
Create spotify prefs if file does not exist
|
YAML
|
mit
|
henrik-farre/ansible,henrik-farre/ansible,henrik-farre/ansible
|
8da1fb6299a87f9c2516f1e168573ac2949440e8
|
packages/flutter_markdown/.cirrus.yml
|
packages/flutter_markdown/.cirrus.yml
|
container:
image: cirrusci/flutter:0.1.0
test_task:
pub_cache:
folder: ~/.pub-cache
test_script: flutter test
|
container:
image: cirrusci/flutter:latest
test_task:
pub_cache:
folder: ~/.pub-cache
test_script: flutter test
analyze_task:
pub_cache:
folder: ~/.pub-cache
analyze_script: flutter analyze
|
Use the latest available Flutter image
|
Use the latest available Flutter image
Plus run `flutter analyze`
|
YAML
|
bsd-3-clause
|
flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages
|
39405e45c1f956c533e745536c8b01a21526c44c
|
docs/quick-start/storage-class.yaml
|
docs/quick-start/storage-class.yaml
|
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: fast
provisioner: kubernetes.io/gce-pd
parameters:
type: pd-standard
zones: europe-west1-b, europe-west1-c, europe-west1-d
|
kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:
name: fast
provisioner: kubernetes.io/gce-pd
parameters:
type: pd-ssd
|
Remove zones and make it an actually fast disk
|
Remove zones and make it an actually fast disk
|
YAML
|
apache-2.0
|
jetstack/navigator,jetstack/navigator
|
334ea20ce9d80095034c7133a36ecda59d0b43a1
|
data/continuously_deployed_apps.yml
|
data/continuously_deployed_apps.yml
|
- account-api
- authenticating-proxy
- bouncer
- cache-clearing-service
- collections
- collections-publisher
- contacts
- content-data-admin
- content-data-api
- content-publisher
- email-alert-frontend
- email-alert-service
- feedback
- finder-frontend
- frontend
- government-frontend
- govuk-account-manager-prototype
- govuk-attribute-service-prototype
- hmrc-manuals-api
- imminence
- info-frontend
- local-links-manager
- locations-api
- manuals-frontend
- manuals-publisher
- maslow
- publisher
- release
- service-manual-frontend
- service-manual-publisher
- short-url-manager
- sidekiq-monitoring
- smartanswers
- specialist-publisher
- support
- travel-advice-publisher
- whitehall
|
- account-api
- authenticating-proxy
- bouncer
- cache-clearing-service
- collections
- collections-publisher
- contacts
- content-data-admin
- content-data-api
- content-publisher
- email-alert-frontend
- email-alert-service
- feedback
- finder-frontend
- frontend
- government-frontend
- govuk-account-manager-prototype
- govuk-attribute-service-prototype
- hmrc-manuals-api
- imminence
- info-frontend
- local-links-manager
- locations-api
- manuals-frontend
- manuals-publisher
- maslow
- publisher
- publishing-api
- release
- service-manual-frontend
- service-manual-publisher
- short-url-manager
- sidekiq-monitoring
- smartanswers
- specialist-publisher
- support
- travel-advice-publisher
- whitehall
|
Mark publishing-api as continuously deployed
|
Mark publishing-api as continuously deployed
|
YAML
|
mit
|
alphagov/release,alphagov/release,alphagov/release
|
24d4c596727c97f15a9f4a05f1688a95ccd64612
|
jenkins/ci.opensuse.org/openstack-cleanvm.yaml
|
jenkins/ci.opensuse.org/openstack-cleanvm.yaml
|
- project:
name: openstack-cleanvm-Newton
disabled: false
release: Newton
image:
- SLE_12_SP2
jobs:
- 'openstack-cleanvm-{release}'
- project:
name: openstack-cleanvm-Pike
disabled: false
release: Pike
image:
- SLE_12_SP3
- openSUSE-Leap-42.3
jobs:
- 'openstack-cleanvm-{release}'
- project:
name: openstack-cleanvm-Queens
disabled: false
release: Queens
image:
- SLE_12_SP3
- openSUSE-Leap-42.3
jobs:
- 'openstack-cleanvm-{release}'
- project:
name: openstack-cleanvm-Rocky
disabled: false
release: Rocky
image:
- SLE_12_SP4
- openSUSE-Leap-15.0
jobs:
- 'openstack-cleanvm-{release}'
- project:
name: openstack-cleanvm-Stein
disabled: false
release: Stein
image:
- SLE_15
- openSUSE-Leap-15.1
jobs:
- 'openstack-cleanvm-{release}'
- project:
name: openstack-cleanvm-Master
disabled: false
release: Master
image:
- SLE_15
- openSUSE-Leap-15.1
jobs:
- 'openstack-cleanvm-{release}'
|
- project:
name: openstack-cleanvm-Newton
disabled: false
release: Newton
image:
- SLE_12_SP2
jobs:
- 'openstack-cleanvm-{release}'
- project:
name: openstack-cleanvm-Pike
disabled: false
release: Pike
image:
- SLE_12_SP3
- openSUSE-Leap-42.3
jobs:
- 'openstack-cleanvm-{release}'
- project:
name: openstack-cleanvm-Queens
disabled: false
release: Queens
image:
- SLE_12_SP3
- openSUSE-Leap-42.3
jobs:
- 'openstack-cleanvm-{release}'
- project:
name: openstack-cleanvm-Rocky
disabled: false
release: Rocky
image:
- SLE_12_SP4
- openSUSE-Leap-15.0
jobs:
- 'openstack-cleanvm-{release}'
- project:
name: openstack-cleanvm-Stein
disabled: false
release: Stein
image:
- SLE_15
- openSUSE-Leap-15.1
jobs:
- 'openstack-cleanvm-{release}'
- project:
name: openstack-cleanvm-Master
disabled: false
release: Master
triggers:
- timed: 'H 4 * * *'
image:
- SLE_15
- openSUSE-Leap-15.1
jobs:
- 'openstack-cleanvm-{release}'
|
Add regular schedule for Master cleanvm
|
Add regular schedule for Master cleanvm
Non-Master is meanwhile triggered via staging-logic,
however Master doesn't have staging so we need to
configure a timing independently of that.
|
YAML
|
apache-2.0
|
gosipyan/automation,SUSE-Cloud/automation,gosipyan/automation,aspiers/automation,SUSE-Cloud/automation,SUSE-Cloud/automation,SUSE-Cloud/automation,gosipyan/automation,gosipyan/automation,aspiers/automation,aspiers/automation,aspiers/automation
|
2e9436822701470088de5844709b3da35dc7336b
|
scenarios/networking/l2.yaml
|
scenarios/networking/l2.yaml
|
description:
This scenario launches pairs of VMs in the same private network. Every VM is
hosted on a separate compute node.
deployment:
template: scenarios/networking/same_net.hot
vm_accommodation: [pair, single_room]
execution:
tests:
-
title: Iperf TCP test
class: iperf_graph
time: 60
mss: 1300
-
title: Iperf UDP 5 threads
class: iperf
udp: 1
mss: 1300
threads: 5
-
title: Netperf TCP_STREAM
class: netperf
method: TCP_STREAM
time: 60
|
description:
This scenario launches pairs of VMs in the same private network. Every VM is
hosted on a separate compute node.
deployment:
template: scenarios/networking/l2.hot
vm_accommodation: [pair, single_room]
execution:
tests:
-
title: Iperf TCP test
class: iperf_graph
time: 60
mss: 1300
-
title: Iperf UDP 5 threads
class: iperf
udp: 1
mss: 1300
threads: 5
-
title: Netperf TCP_STREAM
class: netperf
method: TCP_STREAM
time: 60
|
Fix reference in L2 scenario
|
Fix reference in L2 scenario
Change-Id: I2614d0e05dc6e44494116d891681eddc2b055a74
|
YAML
|
apache-2.0
|
stackforge/shaker,esboych/shaker,openstack/shaker,openstack/shaker,esboych/shaker,openstack/shaker,stackforge/shaker
|
9cbb1eeb60e8a44d22eab084dfff28744621bd30
|
metadata/com.github.rsteube.t4.yml
|
metadata/com.github.rsteube.t4.yml
|
Categories:
- System
License: GPL-2.0-only
SourceCode: https://github.com/rsteube/t4-launcher
AutoName: T4 Launcher
RepoType: git
Repo: https://github.com/rsteube/t4-launcher.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.0'
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '1.0'
CurrentVersionCode: 1
|
Categories:
- System
License: GPL-2.0-only
SourceCode: https://github.com/rsteube/t4-launcher
AutoName: T4 Launcher
RepoType: git
Repo: https://github.com/rsteube/t4-launcher.git
Builds:
- versionName: '1.0'
versionCode: 1
commit: '1.0'
gradle:
- yes
- versionName: '1.4'
versionCode: 4
commit: 4a96925cbca7571105095471256dd8eb2372c0ab
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: '1.4'
CurrentVersionCode: 4
|
Update T4 Launcher to 1.4 (4)
|
Update T4 Launcher to 1.4 (4)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
4bd8d003474eb97efd686b0ef7b2d439be4fb97e
|
env/tacc/group_vars/galaxynodes.yml
|
env/tacc/group_vars/galaxynodes.yml
|
---
# 500 GB why not
cvmfs_quota_limit: 512000
galaxynodes_group_authorized_key_users:
- name: g2test
authorized: "{{ galaxy_team_users }}"
- name: g2main
authorized: "{{ galaxy_team_users }}"
galaxynodes_group_packages:
- collectl
- lzo
|
---
# 500 GB why not
cvmfs_quota_limit: 512000
galaxynodes_group_authorized_key_users:
- name: g2test
authorized: "{{ galaxy_team_users }}"
- name: g2main
authorized: "{{ galaxy_team_users }}"
galaxynodes_group_packages:
- collectl
- lzo
- libcgroup-tools
|
Add cgroup tools to nodes for cgroup metrics
|
Add cgroup tools to nodes for cgroup metrics
|
YAML
|
mit
|
galaxyproject/infrastructure-playbook,galaxyproject/infrastructure-playbook
|
3a46f14d02bf236013990f245452fa74d5b2ab10
|
docker-compose/test-travis.yml
|
docker-compose/test-travis.yml
|
kuzzle:
image: kuzzleio/kuzzle
command: /run-test-travis.sh
volumes:
- ".:/var/app"
ports:
- "7512:7512"
links:
- rabbit
- elasticsearch
- redis
environment:
- LIKE_A_VIRGIN
- FIXTURES
- MQ_BROKER_ENABLED=1
- FEATURE_COVERAGE=1
- TRAVIS=1
rabbit:
image: kuzzleio/rabbitmq
ports:
- "61613:61613"
- "1883:1883"
- "5672:5672"
- "15672:15672"
redis:
image: redis:3.0.2
elasticsearch:
image: elasticsearch:1.5.2
|
kuzzle:
image: kuzzleio/kuzzle
command: /run-test-travis.sh
volumes:
- ".:/var/app"
ports:
- "7512:7512"
links:
- rabbit
- elasticsearch
- redis
environment:
- LIKE_A_VIRGIN
- FIXTURES
- MQ_BROKER_ENABLED=1
- FEATURE_COVERAGE=1
# Travis env var must be propagate into the container
- TRAVIS
- TRAVIS_COMMIT
- TRAVIS_JOB_NUMBER
- TRAVIS_BRANCH
- TRAVIS_JOB_ID
- TRAVIS_PULL_REQUEST
- TRAVIS_REPO_SLUG
rabbit:
image: kuzzleio/rabbitmq
ports:
- "61613:61613"
- "1883:1883"
- "5672:5672"
- "15672:15672"
redis:
image: redis:3.0.2
elasticsearch:
image: elasticsearch:1.5.2
|
Add travis env var for codecov
|
Add travis env var for codecov
|
YAML
|
apache-2.0
|
kuzzleio/kuzzle,kuzzleio/kuzzle,kuzzleio/kuzzle,kuzzleio/kuzzle
|
ab048b7d6d0029882196a5c9e673d5131160d012
|
scripts.yaml
|
scripts.yaml
|
bedtime:
alias: Bedtime
sequence:
- delay: '00:{{ (range(8, 13) | random) }}:00'
- service: light.turn_off
data:
entity_id:
- group.kitchen_lights
- group.living_room_lights
- delay: '00:{{ (range(25, 36) | random) }}:00'
- service: light.turn_off
data:
entity_id: group.hall_lights
occupancy_simulation_start:
alias: Occupancy Simulation Start
sequence:
- service: scene.turn_on
data_template:
entity_id: 'scene.occupancy_simulation_{{ (range(1, 4) | random) }}'
- service: script.turn_on
data:
entity_id: script.occupancy_simulation_loop
occupancy_simulation_stop:
alias: Occupancy Simulation Stop
sequence:
- service: script.turn_off
data:
entity_id: script.occupancy_simulation_loop
occupancy_simulation_loop:
alias: Occupancy Simulation Loop
sequence:
- delay: '00:00:{{ (range(20, 41) | random) }}'
- service: script.turn_on
data:
entity_id: script.occupancy_simulation_start
|
bedtime:
alias: Bedtime
sequence:
- delay: '00:{{ (range(8, 13) | random) }}:00'
- service: light.turn_off
data:
entity_id:
- group.kitchen_lights
- group.living_room_lights
- delay: '00:{{ (range(25, 36) | random) }}:00'
- service: light.turn_off
data:
entity_id: group.hall_lights
occupancy_simulation_start:
alias: Occupancy Simulation Start
sequence:
- service: scene.turn_on
data_template:
entity_id: 'scene.occupancy_simulation_{{ (range(1, 4) | random) }}'
- service: script.turn_on
data:
entity_id: script.occupancy_simulation_loop
occupancy_simulation_stop:
alias: Occupancy Simulation Stop
sequence:
- service: script.turn_off
data:
entity_id: script.occupancy_simulation_loop
occupancy_simulation_loop:
alias: Occupancy Simulation Loop
sequence:
- delay: '00:{{ (range(20, 41) | random) }}:00'
- service: script.turn_on
data:
entity_id: script.occupancy_simulation_start
|
Fix loop delay in occupancy simulation
|
Fix loop delay in occupancy simulation
|
YAML
|
mit
|
davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config
|
eb5798650e8d5f06e96a008c52cf2737e8849a82
|
cron.yaml
|
cron.yaml
|
cron:
- description: Refresh volues from comicvine daily
url: /tasks/volumes/refresh
schedule: every 60 minutes
- description: Refresh issues hourly
url: /tasks/issues/refresh
schedule: every 60 minutes
|
cron:
- description: Refresh volues from comicvine daily
url: /tasks/volumes/refresh
schedule: every 60 minutes
- description: Reshard new volumes
url: /tasks/volumes/reshard
schedule: every 2 hours
- description: Refresh issues hourly
url: /tasks/issues/refresh
schedule: every 60 minutes
- description: Reshard new issues
url: /tasks/issues/reshard
schedule: every 2 hours
|
Add jobs to reshard new entries
|
Add jobs to reshard new entries
|
YAML
|
mit
|
xchewtoyx/pulldb
|
5b52f41408200cae96663a977525a14634d1bfe5
|
.github/workflows/macos_mkspecs.yml
|
.github/workflows/macos_mkspecs.yml
|
name: MacOS 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:
MacOS-mkspecs:
uses: steinwurf/macos-mkspecs-action/.github/workflows/[email protected]
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
|
name: MacOS 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:
MacOS-mkspecs:
uses: steinwurf/macos-mkspecs-action/.github/workflows/[email protected]
with:
extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
|
Update MacOS C++ make-specs to new version 6.0.0
|
Update MacOS C++ make-specs to new version 6.0.0
|
YAML
|
bsd-3-clause
|
steinwurf/petro,steinwurf/petro
|
380b6fc09be72e4b8601930fe129ae716333c607
|
metadata/com.dkanada.gramophone.yml
|
metadata/com.dkanada.gramophone.yml
|
Categories:
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/dkanada/gelli
IssueTracker: https://github.com/dkanada/gelli/issues
Changelog: https://github.com/dkanada/gelli/releases
AutoName: Gelli
Description: |-
This is a native music player for Android devices that connects to
Jellyfin media servers. The code is based on a relatively recent version
of Phonograph and was made for personal use, but contributions are
welcome! Please open an issue to discuss larger changes before submitting
a pull request.
RepoType: git
Repo: https://github.com/dkanada/gelli
Builds:
- versionName: 1.0.2
versionCode: 3
commit: v1.0.2
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.2
CurrentVersionCode: 3
|
Categories:
- Multimedia
License: GPL-3.0-only
SourceCode: https://github.com/dkanada/gelli
IssueTracker: https://github.com/dkanada/gelli/issues
Changelog: https://github.com/dkanada/gelli/releases
AutoName: Gelli
Description: |-
This is a native music player for Android devices that connects to
Jellyfin media servers. The code is based on a relatively recent version
of Phonograph and was made for personal use, but contributions are
welcome! Please open an issue to discuss larger changes before submitting
a pull request.
RepoType: git
Repo: https://github.com/dkanada/gelli
Builds:
- versionName: 1.0.2
versionCode: 3
commit: v1.0.2
subdir: app
gradle:
- yes
- versionName: 1.0.3
versionCode: 4
commit: v1.0.3
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.0.3
CurrentVersionCode: 4
|
Update Gelli to 1.0.3 (4)
|
Update Gelli to 1.0.3 (4)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
acf68d178f19c3264290152542efd1af2416b3c2
|
metadata/com.phstudio.darktheme.yml
|
metadata/com.phstudio.darktheme.yml
|
Categories:
- Theming
License: GPL-3.0-only
AuthorName: PH studio
AuthorEmail: [email protected]
AuthorWebSite: https://phstudio2.webnode.com
WebSite: https://phstudio2.webnode.com/dark-theme
SourceCode: https://github.com/phstudio2/Darktheme
IssueTracker: https://github.com/phstudio2/Darktheme/issues
Changelog: https://github.com/phstudio2/Darktheme/releases
Donate: https://phstudio2.webnode.com/donate
AutoName: Dark theme
RepoType: git
Repo: https://github.com/phstudio2/Darktheme.git
Builds:
- versionName: '2.3'
versionCode: 5
commit: 2.3x
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: '2.3'
CurrentVersionCode: 5
|
Categories:
- Theming
License: GPL-3.0-only
AuthorName: PH studio
AuthorEmail: [email protected]
AuthorWebSite: https://phstudio2.webnode.com
WebSite: https://phstudio2.webnode.com/dark-theme
SourceCode: https://github.com/phstudio2/Darktheme
IssueTracker: https://github.com/phstudio2/Darktheme/issues
Changelog: https://github.com/phstudio2/Darktheme/releases
Donate: https://phstudio2.webnode.com/donate
AutoName: Dark theme
RepoType: git
Repo: https://github.com/phstudio2/Darktheme.git
Builds:
- versionName: '2.3'
versionCode: 5
commit: 2.3x
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
- versionName: '2.4'
versionCode: 6
commit: b47fbabd3408539e147c1b562dc46bd698b005e6
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version
UpdateCheckMode: Tags
CurrentVersion: '2.4'
CurrentVersionCode: 6
|
Update Dark theme to 2.4 (6)
|
Update Dark theme to 2.4 (6)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
1902f0e4d7128605ed78e747f988d59d95e6c081
|
circle.yml
|
circle.yml
|
machine:
timezone:
America/Los_Angeles
java:
version:
oraclejdk8
environment:
JAVA_OPTS: "-Xmx1g"
MAVEN_OPTS: "-Xmx1g -DcheckedArithmetic=true"
TERM: dumb
dependencies:
override:
# :go-offline will download too much; :resolve-plugins is as good as we can do up-front.
- mvn -B dependency:resolve-plugins
general:
branches:
ignore:
- /rel\/.*/
artifacts:
- "gosu-test/target/site" # preserve the generated HTML test reports
- mvn_output.log
test:
# Adds profile to pick up Gosu tests
override:
- mvn -B integration-test -P runGosuTests deploy -s settings.xml | tee mvn_output.log
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
|
machine:
timezone:
America/Los_Angeles
java:
version:
oraclejdk8
environment:
JAVA_OPTS: "-Xmx1g"
MAVEN_OPTS: "-Xmx1g -DcheckedArithmetic=true"
TERM: dumb
dependencies:
override:
# :go-offline will download too much; :resolve-plugins is as good as we can do up-front.
- mvn -B dependency:resolve-plugins
general:
branches:
ignore:
- /rel\/.*/
artifacts:
- "gosu-test/target/site" # preserve the generated HTML test reports
test:
override:
- mvn -B integration-test deploy -s settings.xml
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/surefire-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
|
Fix unexpected build success on CI
|
Fix unexpected build success on CI
Conflicts:
circle.yml
|
YAML
|
apache-2.0
|
gosu-lang/gosu-lang,gosu-lang/gosu-lang,gosu-lang/gosu-lang,gosu-lang/gosu-lang
|
95709fef80a926e7b34245068a76ed7584ecf665
|
circle.yml
|
circle.yml
|
machine:
java:
version: oraclejdk8
environment:
SBT_VERSION: 0.13.9
dependencies:
# Cache the resolution-cache and build streams to speed things up
cache_directories:
- "~/.sbt"
- "target/resolution-cache"
- "target/streams"
- "project/target/resolution-cache"
- "project/target/streams"
test:
override:
- sbt coverage test
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/test-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
- sbt clean test debian:packageBin
- sbt coverageAggregate
- sbt codacyCoverage
|
machine:
java:
version: oraclejdk8
environment:
SBT_VERSION: 0.13.9
dependencies:
# Cache the resolution-cache and build streams to speed things up
cache_directories:
- "~/.sbt"
- "target/resolution-cache"
- "target/streams"
- "project/target/resolution-cache"
- "project/target/streams"
test:
override:
- sbt coverage test
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/target/test-reports/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
- sbt clean test
- sbt coverageAggregate
- sbt codacyCoverage
- sbt debian:packageBin
|
Define separate steps for testing and packaging
|
Define separate steps for testing and packaging
|
YAML
|
mit
|
mthmulders/hyperion
|
ba9abcb053f1d84ffa6243e1d78f706f19acfec7
|
circle.yml
|
circle.yml
|
machine:
python:
version: 3.5.0
services:
- mysql
environment:
MYSQL_DATABASE: circle_test
MYSQL_USER: ubuntu
MYSQL_HOST: 127.0.0.1
MYSQL_PORT: 3306
notify:
webhooks:
- url: https://rocketchat.catalyst-au.net/hooks/ae8CYLLs9cYR5PZTe/bkAXoCavHHAF53wwh3rd6pR98BHHihyAg97Yyk3pZMwrcivy
|
machine:
python:
version: 3.5.0
services:
- mysql
environment:
MYSQL_DATABASE: circle_test
MYSQL_USER: ubuntu
MYSQL_HOST: 127.0.0.1
MYSQL_PORT: 3306
notify:
webhooks:
- url: https://rocketchat.catalyst.net.nz/hooks/oxWrnGe2tru8o9ANM/9zhwrE42QEdFM9BuCDDegKCsRoYGGhRXDFjQLeNSeSCWggag
|
Update webhook url for api
|
Update webhook url for api
|
YAML
|
mit
|
heytrav/drs-project
|
34613b89a89b410ec2620ee1f5ce6f5955901734
|
circle.yml
|
circle.yml
|
dependencies:
pre:
- npm install karma-cli -g
# To install Chrome 47. Remove once a new build environment comes out with this built in.
- curl -L -o google-chrome.deb https://s3.amazonaws.com/circle-downloads/google-chrome-stable_current_amd64_47.0.2526.73-1.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
cache_directories:
- node_modules
test:
override:
- lein karma-once
- karma start --single-run --reporters junit,dots
|
dependencies:
pre:
- npm install karma-cli -g
cache_directories:
- node_modules
test:
override:
- lein karma-once
- karma start --single-run --reporters junit,dots
|
Remove Chrome 47 CircleCI install
|
Remove Chrome 47 CircleCI install
|
YAML
|
mit
|
Day8/re-frame-http-fx
|
0c12a2f16f9c8e188427742e58768baee8fa194e
|
circle.yml
|
circle.yml
|
# Set up the machine
machine:
environment:
COVERALLS_REPO_TOKEN: 26O5nwca92Yp0383fqlTwPQKAz4652pEo
# Install stuff
dependencies:
cache_directories:
- "~/miniconda3/pkgs"
override:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- pushd ${HOME}/miniconda3/pkgs && find -maxdepth 1 -mindepth 1 -type d | xargs rm -rf && popd
- chmod +x miniconda.sh
- ./miniconda.sh -b -f
- ${HOME}/miniconda3/bin/conda config --add channels desilinguist
- ${HOME}/miniconda3/bin/conda update --yes conda
- ${HOME}/miniconda3/bin/conda create --name rsmenv --file conda_requirements.txt --yes
- ${HOME}/miniconda3/envs/rsmenv/bin/pip install nose-cov python-coveralls
- ${HOME}/miniconda3/envs/rsmenv/bin/pip install -e .
# Run test
test:
override:
- ${HOME}/miniconda3/envs/rsmenv/bin/nosetests -v tests --with-coverage --cover-package=rsmtool --cov-config .coveragerc
post:
- cd ${HOME}/rsmtool && ${HOME}/miniconda3/envs/rsmenv/bin/coveralls
|
# Set up the machine
machine:
environment:
COVERALLS_REPO_TOKEN: 26O5nwca92Yp0383fqlTwPQKAz4652pEo
# Install stuff
dependencies:
cache_directories:
- "~/miniconda3/pkgs"
override:
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
- [[ -x ${HOME}/miniconda3/pkgs ]] && pushd ${HOME}/miniconda3/pkgs && find -maxdepth 1 -mindepth 1 -type d | xargs rm -rf && popd
- chmod +x miniconda.sh
- ./miniconda.sh -b -f
- ${HOME}/miniconda3/bin/conda config --add channels desilinguist
- ${HOME}/miniconda3/bin/conda update --yes conda
- ${HOME}/miniconda3/bin/conda create --name rsmenv --file conda_requirements.txt --yes
- ${HOME}/miniconda3/envs/rsmenv/bin/pip install nose-cov python-coveralls
- ${HOME}/miniconda3/envs/rsmenv/bin/pip install -e .
# Run test
test:
override:
- ${HOME}/miniconda3/envs/rsmenv/bin/nosetests -v tests --with-coverage --cover-package=rsmtool --cov-config .coveragerc
post:
- cd ${HOME}/rsmtool && ${HOME}/miniconda3/envs/rsmenv/bin/coveralls
|
Make package removal for CI build more robust.
|
Make package removal for CI build more robust.
|
YAML
|
apache-2.0
|
EducationalTestingService/rsmtool
|
35978c9b63e1c08432b381aa78238d7c21197e06
|
circle.yml
|
circle.yml
|
test:
override:
- lein with-profile dev,circle-ci midje onyx.peer.*:
timeout: 600
|
test:
override:
- lein with-profile dev,circle-ci midje 'onyx.log.*':
timeout: 600
|
Update Circle CI to run the log test suite.
|
Update Circle CI to run the log test suite.
|
YAML
|
epl-1.0
|
intfrr/onyx,vijaykiran/onyx,ideal-knee/onyx,tomasu82/onyx,Deraen/onyx,onyx-platform/onyx,mccraigmccraig/onyx,dignati/onyx,KevinGreene/onyx,iperdomo/onyx
|
b929ad73423f79ad414f83c410893f1b22314845
|
circle.yml
|
circle.yml
|
machine:
environment:
IMPORT_PATH: "github.com/gruntwork-io/${CIRCLE_PROJECT_REPONAME}"
REPO: "$HOME/.go_workspace/src/${IMPORT_PATH}"
GOOS: linux
GO15VENDOREXPERIMENT: 1
dependencies:
override:
# Get our repo into the CircleCI GOPATH.
- |
mkdir -p "${REPO}"
rm -rf "${REPO}"
ln -s "${HOME}/${CIRCLE_PROJECT_REPONAME}" "${REPO}"
# Install glide to fetch Go dependencies
- |
if [[ ! -d ~/glide ]]; then
wget https://github.com/Masterminds/glide/releases/download/0.10.2/glide-0.10.2-linux-amd64.zip
unzip glide-0.10.2-linux-amd64.zip -d ~/glide
fi
# Run glide
- |
cd ${REPO}
~/glide/linux-amd64/glide install
# Install gox to build binaries
- |
cd ${REPO}
go get github.com/mitchellh/gox
cache_directories:
- ~/glide
test:
override:
- |
sudo chmod 0755 "${REPO}/_ci/run-tests.sh"
${REPO}/_ci/run-tests.sh
deployment:
release:
tag: /v.*/
commands:
# If a new release is tagged in GitHub, build the binaries and upload them to GitHub.
- |
${REPO}/_ci/build-and-push-release-assets.sh \
--local-src-path "$REPO" \
--local-bin-output-path "$HOME/bin/$CIRCLE_PROJECT_REPONAME" \
--github-repo-owner "$CIRCLE_PROJECT_USERNAME" \
--github-repo-name "$CIRCLE_PROJECT_REPONAME" \
--git-tag "$CIRCLE_TAG" \
--app-name "$CIRCLE_PROJECT_REPONAME"
|
machine:
environment:
PATH: $PATH:$HOME/glide/linux-amd64
dependencies:
override:
# Install the gruntwork-module-circleci-helpers and use it to configure the build environment and run tests.
- curl -Ls https://raw.githubusercontent.com/gruntwork-io/gruntwork-installer/master/bootstrap-gruntwork-installer.sh | bash /dev/stdin --version 0.0.9
- gruntwork-install --module-name "gruntwork-module-circleci-helpers" --repo "https://github.com/gruntwork-io/module-ci" --tag "v0.0.10"
- configure-environment-for-gruntwork-module --go-src-path . --terraform-version NONE --packer-version NONE
cache_directories:
- ~/glide
test:
override:
- run-go-tests
deployment:
release:
tag: /v.*/
commands:
# If a new release is tagged in GitHub, build the binaries and upload them to GitHub.
- build-go-binaries --app-name fetch --dest-path bin --ld-flags "-X main.VERSION=$CIRCLE_TAG"
- upload-github-release-assets bin/*
|
Switch to module-ci for build & test
|
Switch to module-ci for build & test
|
YAML
|
mit
|
gruntwork-io/fetch
|
2198fbdc97c17bdf4e08112ab33a08276bf874d1
|
circle.yml
|
circle.yml
|
machine:
environment:
GODIST: "go1.7.linux-amd64.tar.gz"
PATH: "/usr/local/go/bin:/usr/local/go_workspace/bin:~/.go_workspace/bin:${PATH}"
GOPATH: "${HOME}/.go_workspace:/usr/local/go_workspace:${HOME}/.go_project"
post:
- mkdir -p download
- mkdir -p ${HOME}/.go_project/src/github.com/jamesnetherton/
- cd ${HOME}/.go_project/src/github.com/jamesnetherton/ && ln -s ${HOME}/homehub-cli homehub-cli
- test -e download/$GODIST || curl -o download/$GODIST https://storage.googleapis.com/golang/$GODIST
- sudo rm -rf /usr/local/go
- sudo tar -C /usr/local -xzf download/$GODIST
dependencies:
cache_directories:
- ~/download
override:
- cd ${GOPATH} && make build
deployment:
release:
branch: release
commands:
- cd ${GOPATH} && make release
|
machine:
environment:
GODIST: "go1.7.linux-amd64.tar.gz"
PATH: "/usr/local/go/bin:/usr/local/go_workspace/bin:~/.go_workspace/bin:${PATH}"
GOPATH: "${HOME}/.go_workspace:/usr/local/go_workspace:${HOME}/.go_project"
PROJECT: "${HOME}/.go_project/src/github.com/jamesnetherton/homehub-cli"
post:
- mkdir -p download
- mkdir -p ${HOME}/.go_project/src/github.com/jamesnetherton/
- cd ${HOME}/.go_project/src/github.com/jamesnetherton/ && ln -s ${HOME}/homehub-cli homehub-cli
- test -e download/$GODIST || curl -o download/$GODIST https://storage.googleapis.com/golang/$GODIST
- sudo rm -rf /usr/local/go
- sudo tar -C /usr/local -xzf download/$GODIST
dependencies:
cache_directories:
- ~/download
override:
- cd ${PROJECT} && make build
deployment:
release:
branch: release
commands:
- cd ${PROJECT} && make release
|
Change into project directory before build
|
Change into project directory before build
|
YAML
|
mit
|
jamesnetherton/homehub-cli
|
a37669be230971adba3a18f0413f58b215f59cee
|
circle.yml
|
circle.yml
|
machine:
node:
version: 6.5.0
dependencies:
pre:
- npm prune
post:
- mkdir -p $CIRCLE_TEST_REPORTS/ava
|
machine:
node:
version: 6.6.0
dependencies:
pre:
- npm prune
post:
- mkdir -p $CIRCLE_TEST_REPORTS/ava
|
Test (CI) update node version
|
Test (CI) update node version
|
YAML
|
artistic-2.0
|
joeybaker/sequelize-stream,joeybaker/sequelize-stream
|
fa2d98c2fb83e2374005c49570317075f31fe166
|
circle.yml
|
circle.yml
|
machine:
java:
version: oraclejdk8
post:
- rm -f jce_policy-8.zip
- curl -o jce_policy-8.zip -v -j -k -L -H "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jce/8/jce_policy-8.zip
- unzip -j -o -d $JAVA_HOME/jre/lib/security jce_policy-8.zip
dependencies:
override:
- ./gradlew dependencies
test:
override:
- ./gradlew check
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
- find . -type f -regex ".*/build/integrationTest-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
|
machine:
java:
version: oraclejdk8
post:
- rm -f jce_policy-8.zip
- "curl -o jce_policy-8.zip -v -j -k -L -H 'Cookie: oraclelicense=accept-securebackup-cookie' http://download.oracle.com/otn-pub/java/jce/8/jce_policy-8.zip"
- unzip -j -o -d $JAVA_HOME/jre/lib/security jce_policy-8.zip
dependencies:
override:
- ./gradlew dependencies
test:
override:
- ./gradlew check
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
- find . -type f -regex ".*/build/integrationTest-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
|
Fix quoting in Circle CI yaml file
|
Fix quoting in Circle CI yaml file
|
YAML
|
mit
|
AusDTO/citizenship-appointment-server,AusDTO/citizenship-appointment-server,AusDTO/citizenship-appointment-server
|
276cdccdacbd60f68e49d7fb3d6c7e7e3ec196d2
|
packages/ma/machines-directory.yaml
|
packages/ma/machines-directory.yaml
|
homepage: http://github.com/aloiscochard/machines-directory
changelog-type: ''
hash: 7318938cc83542f0fe579c1e604017606a60876496cbbb995e487cec0848c0f6
test-bench-deps: {}
maintainer: [email protected]
synopsis: Directory (system) utilities for the machines library
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
filepath: ! '>=1.3 && <1.5'
machines-io: ! '>=0.1 && <0.3'
transformers: ! '>=0.3 && <0.6'
machines: ! '>=0.2.4 && <0.7'
directory: ! '>=1.2 && <1.3'
all-versions:
- '0.0.0.1'
- '0.0.0.2'
- '0.2.0.0'
- '0.2.0.2'
- '0.2.0.4'
- '0.2.0.6'
- '0.2.0.8'
- '0.2.0.9'
author: Alois Cochard
latest: '0.2.0.9'
description-type: haddock
description: ''
license-name: Apache-2.0
|
homepage: http://github.com/aloiscochard/machines-directory
changelog-type: ''
hash: 0e85e707bdd315d83fe7cfc6f1823a9ffe9bc3892a783672cdd067d66768beae
test-bench-deps: {}
maintainer: [email protected]
synopsis: Directory (system) utilities for the machines library
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
filepath: ! '>=1.3 && <1.5'
machines-io: ! '>=0.1 && <0.3'
transformers: ! '>=0.3 && <0.6'
machines: ! '>=0.2.4 && <0.7'
directory: ! '>=1.2 && <1.4'
all-versions:
- '0.0.0.1'
- '0.0.0.2'
- '0.2.0.0'
- '0.2.0.2'
- '0.2.0.4'
- '0.2.0.6'
- '0.2.0.8'
- '0.2.0.9'
- '0.2.0.10'
author: Alois Cochard
latest: '0.2.0.10'
description-type: haddock
description: ''
license-name: Apache-2.0
|
Update from Hackage at 2017-01-19T18:28:40Z
|
Update from Hackage at 2017-01-19T18:28:40Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
0e13c1dde6c766cd41c8c961caeed0c876dcf0bb
|
ci/test.yml
|
ci/test.yml
|
---
platform: linux
image_resource:
type: docker-image
source:
repository: docker
tag: 1.8.1
inputs:
- name: auth-route-service
run:
path: auth-route-service/ci/scripts/test
|
---
platform: linux
image_resource:
type: docker-image
source:
repository: golang
tag: 1.8.1
inputs:
- name: auth-route-service
run:
path: auth-route-service/ci/scripts/test
|
Use the correct docker repository
|
Use the correct docker repository
|
YAML
|
apache-2.0
|
zgagnon/authrouteservice,zgagnon/authrouteservice
|
e742b7bc048f0ca15702b87864564f9c68382782
|
.github/workflows/ci.yaml
|
.github/workflows/ci.yaml
|
name: ci
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
if: success()
uses: actions/checkout@v1
with:
ref: master
- name: checkout-master
if: success()
run: git checkout master
- name: checkout
uses: actions/checkout@v1
- name: setup
if: success()
uses: actions/setup-go@v1
with:
go-version: 1.13.7
- name: ci
if: success()
run: make ci
- name: codecov
if: success()
run: make codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: docker
if: success()
run: bash .github/scripts/docker.bash
env:
DOCKER_BUILD_MAKE_TARGET: dockerbuildbuf
DOCKER_IMAGE: bufbuild/buf
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
DOCKER_LATEST_BRANCH: master
DOCKER_VERSION_TAG_PREFIX: v
|
name: ci
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
if: success()
uses: actions/checkout@v1
with:
ref: master
- name: checkout-master
if: success()
run: git checkout master
- name: checkout
uses: actions/checkout@v1
- name: setup
if: success()
uses: actions/setup-go@v1
with:
go-version: 1.14.0
- name: ci
if: success()
run: make ci
- name: codecov
if: success()
run: make codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: docker
if: success()
run: bash .github/scripts/docker.bash
env:
DOCKER_BUILD_MAKE_TARGET: dockerbuildbuf
DOCKER_IMAGE: bufbuild/buf
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}
DOCKER_LATEST_BRANCH: master
DOCKER_VERSION_TAG_PREFIX: v
|
Update workflow for go 1.14
|
Update workflow for go 1.14
|
YAML
|
apache-2.0
|
bufbuild/buf,bufbuild/buf
|
21d948d539307a0a94c1ab2d2146e3cb566c7a83
|
rancher-config/rancher-compose.yml
|
rancher-config/rancher-compose.yml
|
version: '2'
services:
c2s-frontend:
scale: 1
start_on_create: true
health_check:
response_timeout: 5000
healthy_threshold: 2
port: 3000
unhealthy_threshold: 3
initializing_timeout: 60000
interval: 5000
strategy: recreate
request_line: GET "/finders/find-help" "HTTP/1.0"
reinitializing_timeout: 60000
|
version: '2'
services:
c2s-frontend:
scale: $INITIAL_CONTAINER_SCALE
start_on_create: true
health_check:
response_timeout: 5000
healthy_threshold: 2
port: 3000
unhealthy_threshold: 3
initializing_timeout: 60000
interval: 5000
strategy: recreate
request_line: GET "/finders/find-help" "HTTP/1.0"
reinitializing_timeout: 60000
|
Allow setting of container scale via ENV var
|
Allow setting of container scale via ENV var
|
YAML
|
mit
|
nhsuk/connecting-to-services,nhsuk/connecting-to-services
|
b69f748c7582a7af159825b61498e557a2a83202
|
codecov.yml
|
codecov.yml
|
# Configuration for codecov.io
comment:
layout: "header, diff, changes, uncovered"
coverage:
ignore:
- "numba/cuda/.*"
- "numba/hsa/.*"
status:
# This check can mark a build failed if too much new code
# is not covered (which happens often with JITted functions).
patch: false
project:
default:
# The build fails if total project coverage drops by more than 3%
target: auto
threshold: "3%"
|
# Configuration for codecov.io
# When editing this file, please validate its contents using:
# curl -X POST --data-binary @- https://codecov.io/validate < codecov.yml
comment:
layout: "header, diff, changes, uncovered"
coverage:
ignore:
- "numba/cuda/.*"
- "numba/hsa/.*"
status:
# This check can mark a build failed if too much new code
# is not covered (which happens often with JITted functions).
patch: false
project:
default:
# The build fails if total project coverage drops by more than 3%
target: auto
threshold: "3%"
|
Add comment to top of file
|
Add comment to top of file
|
YAML
|
bsd-2-clause
|
numba/llvmlite,numba/llvmlite,numba/llvmlite,numba/llvmlite
|
00ebbdffc005466b4fc4f3668d1dae69b6613d1a
|
codecov.yml
|
codecov.yml
|
comment: off
coverage:
status:
project:
default:
target: auto
# adjust accordingly based on how flaky your tests are
# this allows a 0.02% drop from the previous base commit coverage
threshold: 0.02%
|
comment: off
coverage:
status:
project:
default:
target: auto
# adjust accordingly based on how flaky your tests are
# this allows a 0.01% drop from the previous base commit coverage
threshold: 0.01%
|
Reduce project coverage tolerance to 0.01%
|
TST: Reduce project coverage tolerance to 0.01%
|
YAML
|
bsd-3-clause
|
StuartLittlefair/astropy,lpsinger/astropy,larrybradley/astropy,astropy/astropy,larrybradley/astropy,astropy/astropy,lpsinger/astropy,saimn/astropy,pllim/astropy,pllim/astropy,larrybradley/astropy,saimn/astropy,StuartLittlefair/astropy,pllim/astropy,StuartLittlefair/astropy,mhvk/astropy,StuartLittlefair/astropy,mhvk/astropy,astropy/astropy,astropy/astropy,astropy/astropy,lpsinger/astropy,StuartLittlefair/astropy,larrybradley/astropy,saimn/astropy,larrybradley/astropy,pllim/astropy,lpsinger/astropy,saimn/astropy,mhvk/astropy,pllim/astropy,mhvk/astropy,lpsinger/astropy,mhvk/astropy,saimn/astropy
|
d31b84e59ef4912aa766ed20caa47ac318f31b4f
|
examples/netz-simple-rate/netz.yml
|
examples/netz-simple-rate/netz.yml
|
default:
# Bob is the one who downloads
bob:
htb: rate 500kbps
|
default:
# Bob is the one who uploads
bob:
htb: rate 500kbps
|
Fix comment (tc applies to egress).
|
Fix comment (tc applies to egress).
|
YAML
|
apache-2.0
|
pgorczak/netz
|
7bc75d88c228f91da88dd9bc1669d5755ef8aa37
|
lambda/core/serverless.yml
|
lambda/core/serverless.yml
|
service: nicbot-core
provider:
name: aws
runtime: nodejs6.10
stage: ${file(./config/environments.yml):${opt:env}}
region: us-east-1
timeout: 30
memorySize: 128
profile: nicbot-sls
environment:
FB_PAGE_ACCESS_TOKEN: ${file(./.environment/credentials.yml):${opt:env}-fb-page-access-token}
NODE_ENV: ${opt:env}
DELAY_MULTIPLIER: 1000
DELAY_FLOOR: 3000
functions:
KeywordResponses:
handler: src/handler.KeywordResponses
RandomDistraction:
handler: src/handler.RandomDistraction
FeelingScore:
handler: src/handler.FeelingScore
CompleteDistraction:
handler: src/handler.CompleteDistraction
resources:
Resources:
DynamoDBIamPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: lambda-dynamodb
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- dynamodb:*
Resource: arn:aws:dynamodb:*:*:*
Roles:
- Ref: IamRoleLambdaExecution
|
service: nicbot-core
provider:
name: aws
runtime: nodejs6.10
stage: ${file(./config/environments.yml):${opt:env}}
region: us-east-1
timeout: 30
memorySize: 128
profile: nicbot-sls
environment:
FB_PAGE_ACCESS_TOKEN: ${file(./.environment/credentials.yml):${opt:env}-fb-page-access-token}
NODE_ENV: ${opt:env}
DELAY_MULTIPLIER: 1000
DELAY_FLOOR: 2000
functions:
KeywordResponses:
handler: src/handler.KeywordResponses
RandomDistraction:
handler: src/handler.RandomDistraction
FeelingScore:
handler: src/handler.FeelingScore
CompleteDistraction:
handler: src/handler.CompleteDistraction
resources:
Resources:
DynamoDBIamPolicy:
Type: AWS::IAM::Policy
Properties:
PolicyName: lambda-dynamodb
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- dynamodb:*
Resource: arn:aws:dynamodb:*:*:*
Roles:
- Ref: IamRoleLambdaExecution
|
Reduce delay floor by 1000ms
|
Reduce delay floor by 1000ms
|
YAML
|
mit
|
yjimk/nicbot,yjimk/nicbot
|
4a67b784cccaa872589bd06dda6226edc9a84708
|
lgtm.yaml
|
lgtm.yaml
|
path_classifiers:
test:
- libvast_test
extraction:
cpp:
prepare:
packages:
- libssl-dev
- python-pip
after_prepare:
- mkdir -p $LGTM_WORKSPACE/latest-gcc-symlinks
- ln -s /usr/bin/g++-8 $LGTM_WORKSPACE/latest-gcc-symlinks/g++
- ln -s /usr/bin/gcc-8 $LGTM_WORKSPACE/latest-gcc-symlinks/gcc
- export BUILD_TYPE=Release
- export GIT=true
- export PATH=$LGTM_WORKSPACE/latest-gcc-symlinks:$PATH
- export PREFIX=/opt/tenzir
configure:
command:
- pip3 install cmake
- /opt/work/.local/lib/python3.6/site-packages/cmake/data/bin/cmake --version
- git submodule update --init aux/caf
- git submodule update --init aux/broker/broker
- git -C aux/broker/broker submodule update --init 3rdparty
- /opt/work/.local/lib/python3.6/site-packages/cmake/data/bin/cmake -Bbuild -H. -DCMAKE_INSTALL_PREFIX="$PREFIX"
-DCMAKE_BUILD_TYPE=$BUILD_TYPE -G Ninja
index:
build_command:
- /opt/work/.local/lib/python3.6/site-packages/cmake/data/bin/cmake --build build --target all --parallel
|
path_classifiers:
test:
- libvast_test
extraction:
cpp:
prepare:
packages:
- libssl-dev
- python-pip
after_prepare:
- mkdir -p $LGTM_WORKSPACE/latest-gcc-symlinks
- ln -s /usr/bin/g++-8 $LGTM_WORKSPACE/latest-gcc-symlinks/g++
- ln -s /usr/bin/gcc-8 $LGTM_WORKSPACE/latest-gcc-symlinks/gcc
- export BUILD_TYPE=Release
- export GIT=true
- export PATH=$LGTM_WORKSPACE/latest-gcc-symlinks:$PATH
- export PREFIX=/opt/tenzir
configure:
command:
- pip3 install cmake
- $(python3 -m site --user-site)/cmake/data/bin/cmake --version
- git submodule update --init aux/caf
- git submodule update --init aux/broker/broker
- git -C aux/broker/broker submodule update --init 3rdparty
- $(python3 -m site --user-site)/cmake/data/bin/cmake -Bbuild -H. -DCMAKE_INSTALL_PREFIX="$PREFIX"
-DCMAKE_BUILD_TYPE=$BUILD_TYPE -G Ninja
index:
build_command:
- $(python3 -m site --user-site)/cmake/data/bin/cmake --build build --target all --parallel
|
Resolve python's cmake path dynamically
|
Resolve python's cmake path dynamically
|
YAML
|
bsd-3-clause
|
vast-io/vast,vast-io/vast,vast-io/vast,vast-io/vast,vast-io/vast
|
ba2bedab95b4410cefb12eacc78db52801fa379c
|
lib/data/countries/NF.yaml
|
lib/data/countries/NF.yaml
|
---
NF:
continent: Australia
alpha2: NF
alpha3: NFK
country_code: '672'
currency: AUD
international_prefix: '00'
ioc:
gec: NF
latitude: 29 02 S
longitude: 167 57 E
name: Norfolk Island
names:
- Norfolk Island
- Norfolkinsel
- Île de Norfolk
- Isla de Norfolk
- ノーフォーク島
- Norfolkeiland
national_destination_code_lengths:
- 2
national_number_lengths:
- 6
national_prefix: None
number: '574'
region: Oceania
subregion: Australia and New Zealand
world_region: APAC
un_locode: NF
languages:
- en
nationality: Norfolk Islander
postal_code: true
min_longitude: '167.95'
min_latitude: "-29.05"
max_longitude: '167.95'
max_latitude: "-29.05"
latitude_dec: "-29.036962509155273"
longitude_dec: '167.95523071289062'
|
---
NF:
continent: Australia
alpha2: NF
alpha3: NFK
country_code: '672'
currency: AUD
international_prefix: '00'
ioc:
gec: NF
latitude: 29 02 S
longitude: 167 57 E
name: Norfolk Island
names:
- Norfolk Island
- Norfolkinsel
- Île de Norfolk
- Isla de Norfolk
- ノーフォーク島
- Norfolkeiland
national_destination_code_lengths:
- 2
national_number_lengths:
- 6
national_prefix: None
number: '574'
region: Oceania
subregion: Australia and New Zealand
world_region: APAC
un_locode: NF
languages:
- en
nationality: Norfolk Islander
postal_code: true
min_longitude: '167.916219'
min_latitude: "-29.136588"
max_longitude: '167.996927'
max_latitude: "-28.995388"
latitude_dec: "-29.036962509155273"
longitude_dec: '167.95523071289062'
|
Add boundary box for Norfolk Island instead of point
|
Add boundary box for Norfolk Island instead of point
|
YAML
|
mit
|
touristly/countries,xronos-i-am/countries,burningpony/countries,thieunus/countries,tenforwardconsulting/countries,GUI/countries,adriagalin/countries,ohenrik/countries,aminin/countries,hexorx/countries,charitywater/countries,JuanitoFatas/countries
|
a1d59eea9b700f46975ffba7d0b1d1ab1614d3d5
|
pubspec.yaml
|
pubspec.yaml
|
name: dart_coveralls
version: 0.5.0
author: Axel Christ <[email protected]>
description: |-
Pub package to calculate coverage, format it
to LCOV and send it to coveralls
homepage: https://github.com/duse-io/dart-coveralls
environment:
sdk: '>=1.9.0 <2.0.0'
dependencies:
args: '>=0.12.0+2 <0.14.0'
coverage: '>=0.6.4 <0.10.0'
http: '>=0.11.1+1 <0.12.0'
logging: '>=0.9.2 <0.12.0'
mockable_filesystem: '>=0.0.3 <0.1.0'
path: '>=1.3.0 <2.0.0'
stack_trace: ^1.3.2
yaml: '>=2.1.2 <3.0.0'
dev_dependencies:
mock: '^0.12.0'
test: '^0.12.0'
executables:
dart_coveralls: null
|
name: dart_coveralls
version: 0.5.0
author: Axel Christ <[email protected]>
description: |-
Pub package to calculate coverage, format it
to LCOV and send it to coveralls
homepage: https://github.com/block-forest/dart-coveralls
environment:
sdk: ^1.16.0
dependencies:
args: '>=0.12.0+2 <0.14.0'
coverage: ^0.9.2
http: '>=0.11.1+1 <0.12.0'
logging: '>=0.9.2 <0.12.0'
mockable_filesystem: '>=0.0.3 <0.1.0'
path: ^1.3.0
stack_trace: ^1.3.2
yaml: ^2.1.2
dev_dependencies:
mock: ^0.12.0
test: ^0.12.0
executables:
dart_coveralls: null
|
Update SDK and package:coverage version ranges
|
Update SDK and package:coverage version ranges
Also deployed carrot syntax everywhere, removed quotes and updated
homepage to refect the recent change of package ownership.
Fixes https://github.com/block-forest/dart-coveralls/issues/65
|
YAML
|
mit
|
block-forest/dart-coveralls,duse-io/dart-coveralls,block-forest/dart-coveralls,duse-io/dart-coveralls
|
ca6cb151e377984178856ece108611c8fa426036
|
packages/qu/quickcheck-special.yaml
|
packages/qu/quickcheck-special.yaml
|
homepage: https://github.com/minad/quickcheck-special#readme
changelog-type: ''
hash: 71f74bee395eb66adfef889a68e8500f33521f2006b6ef37965aba8e14036103
test-bench-deps: {}
maintainer: Daniel Mendler <[email protected]>
synopsis: Edge cases and special values for QuickCheck Arbitrary instances
changelog: ''
basic-deps:
bytestring: ! '>=0.9 && <0.11'
base: <6
text: ! '>=0.7 && <1.3'
ieee754: ! '>=0.8 && <0.9'
scientific: ! '>=0.2 && <0.4'
QuickCheck: ! '>=2.1 && <2.10'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
author: Daniel Mendler <[email protected]>
latest: '0.1.0.4'
description-type: haddock
description: The standard Arbitrary instances of QuickCheck don't generate special
values. This is fixed by this package which provides the newtype Special with an
Arbitrary instance. The special values are given by the SpecialValues typeclass.
license-name: MIT
|
homepage: https://github.com/minad/quickcheck-special#readme
changelog-type: ''
hash: 8e85aad995281fbbe0f08b1b72e4c4f4c672647b20ef7d08c1402004d51d2601
test-bench-deps: {}
maintainer: Daniel Mendler <[email protected]>
synopsis: Edge cases and special values for QuickCheck Arbitrary instances
changelog: ''
basic-deps:
bytestring: ! '>=0.9 && <0.11'
base: <6
text: ! '>=0.7 && <1.3'
ieee754: ! '>=0.8 && <0.9'
scientific: ! '>=0.2 && <0.4'
QuickCheck: ! '>=2.1 && <2.11'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.0.2'
- '0.1.0.3'
- '0.1.0.4'
- '0.1.0.5'
author: Daniel Mendler <[email protected]>
latest: '0.1.0.5'
description-type: haddock
description: The standard Arbitrary instances of QuickCheck don't generate special
values. This is fixed by this package which provides the newtype Special with an
Arbitrary instance. The special values are given by the SpecialValues typeclass.
license-name: MIT
|
Update from Hackage at 2017-06-25T09:44:21Z
|
Update from Hackage at 2017-06-25T09:44:21Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
a8f63e4a5a1a53fffa1b1fc4090f31fb96de029a
|
front50-web/config/front50.yml
|
front50-web/config/front50.yml
|
server:
port: 8080
aws:
defaultSimpleDBDomain: CLOUD_REGISTRY
simpleDBEnabled: false
google:
enabled: ${GOOGLE_ENABLED:false}
spinnaker:
cassandra:
enabled: ${SPINNAKER_CASSANDRA_ENABLED:true}
cluster: CASS_SPINNAKER
keyspace: front50
name: default
|
server:
port: 8080
aws:
defaultSimpleDBDomain: CLOUD_REGISTRY
simpleDBEnabled: false
google:
enabled: false
spinnaker:
cassandra:
enabled: true
cluster: CASS_SPINNAKER
keyspace: front50
name: default
|
Remove extraneous references to env variables.
|
Remove extraneous references to env variables.
|
YAML
|
apache-2.0
|
spinnaker/front50,spinnaker/front50,robfletcher/front50,robfletcher/front50,spinnaker/front50,cfieber/front50,cfieber/front50,cfieber/front50,HaishiBai/front50,robfletcher/front50
|
8bfa7e3e41f394232ecc5640bd166524588b03f9
|
.github/workflows/build-and-test.yml
|
.github/workflows/build-and-test.yml
|
name: Build & Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
|
name: Build & Test
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
CARGO_TERM_COLOR: always
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
build-macos:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
|
Build on linux, windows, macos
|
Build on linux, windows, macos
|
YAML
|
mit
|
shadowsocks/shadowsocks-rust,shadowsocks/shadowsocks-rust,shadowsocks/shadowsocks-rust,zonyitoo/shadowsocks-rust,shadowsocks/shadowsocks-rust
|
17b79051031a59bd95d37c9a29506f960fe730a7
|
.github/workflows/python-package.yml
|
.github/workflows/python-package.yml
|
# This workflow will install Python dependencies and run tests with a variety of Python versions
# Adapted from GitHub Actions template
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
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-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest pytest-cov
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pytest -v --cache-clear --cov=fsic --no-cov-on-fail --cov-branch
coverage report -m
|
# This workflow will install Python dependencies and run tests with a variety of Python versions
# Adapted from GitHub Actions template
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Python package
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
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-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements/minimal.txt
python -m pip install -r requirements/optional.txt
python -m pip install -r requirements/development.txt
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: |
pytest -v --cache-clear --cov=fsic --no-cov-on-fail --cov-branch
coverage report -m
|
Update GitHub Action to correctly install dependencies
|
FIX: Update GitHub Action to correctly install dependencies
|
YAML
|
mit
|
ChrisThoung/fsic
|
786f0d814c80595c24b59de204eff3fd6f323591
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Run Tests
on: push
jobs:
tox:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7
- run: pip install -r CI/install/requirements.txt
- run: tox
|
name: Run Tests
on: push
jobs:
tox:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7
- run: pip install -r CI/install/requirements.txt
# s6 can't be built on newer versions of Ubuntu with the version of s6 on
# PyPI, and we can't get access to the s6 name on PyPI to fix it.
#
# For now we manually built and uploaded some wheels here just to
# get CI working. The wheel is built for Ubuntu 20.04.
- run: PIP_FIND_LINKS=https://yelp-travis-artifacts.s3.amazonaws.com/pgctl/index.html tox
|
Work around s6 not being buildable on Ubuntu 20.04
|
Work around s6 not being buildable on Ubuntu 20.04
|
YAML
|
mit
|
Yelp/pgctl,Yelp/pgctl,Yelp/pgctl
|
58c32ba77808a3addb880c3b6cb7bdecf187eca7
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Build
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
os: ['ubuntu-20.04', 'macOS-11', 'windows-2019']
go: ['1.17.x', '1.16.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: |
make gofmt lint
go test -race -covermode atomic -coverprofile=profile.cov ./...
shell: bash
- uses: shogo82148/actions-goveralls@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-profile: profile.cov
parallel: true
job-number: ${{ strategy.job-index }}
finish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
|
name: Build
on:
push:
branches:
- master
pull_request:
jobs:
test:
strategy:
matrix:
os: ['ubuntu-20.04', 'macOS-11', 'windows-2019']
go: ['1.17.x', '1.16.x']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: |
make gofmt lint
go test -race -covermode atomic -coverprofile=profile.cov ./...
shell: bash
- uses: shogo82148/actions-goveralls@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-profile: profile.cov
parallel: true
job-number: ${{ strategy.job-index }}
finish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true
|
Bump actions/checkout from 2 to 3
|
Bump actions/checkout from 2 to 3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
|
YAML
|
apache-2.0
|
mackerelio/mackerel-client-go
|
9dfbcd84db23eeb682a89af92aba7dbf42d8f862
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Paysafe
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Run Tests
env:
PAYSAFE_ACCOUNT_NUMBER: test
PAYSAFE_API_KEY: test
PAYSAFE_API_SECRET: test
PAYSAFE_SUT_API_KEY: test
PAYSAFE_SUT_API_SECRET: test
PAYSAFE_UNITY_API_KEY: test
PAYSAFE_UNITY_API_SECRET: test
PAYSAFE_UNITY_SUT_API_KEY: test
PAYSAFE_UNITY_SUT_API_SECRET: test
run: |
gem update --system
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
|
name: Paysafe
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install rubygems
run: |
gem update --system
- name: Install bundler
run: |
gem install bundler
- name: Install dependencies
run: |
bundle install --jobs 4 --retry 3
- name: Run Tests
env:
PAYSAFE_ACCOUNT_NUMBER: test
PAYSAFE_API_KEY: test
PAYSAFE_API_SECRET: test
PAYSAFE_SUT_API_KEY: test
PAYSAFE_SUT_API_SECRET: test
PAYSAFE_UNITY_API_KEY: test
PAYSAFE_UNITY_API_SECRET: test
PAYSAFE_UNITY_SUT_API_KEY: test
PAYSAFE_UNITY_SUT_API_SECRET: test
run: |
bundle exec rake
|
Break up CI steps into named sections
|
Break up CI steps into named sections
|
YAML
|
mit
|
javierjulio/paysafe,javierjulio/optimal_payments,javierjulio/optimal_payments,javierjulio/paysafe
|
d871e3b28a360e2f8a2526332f72029a10e541f0
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Ruby
on:
- push
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [2.5, 2.6, 2.7, head, truffleruby-head]
env:
RAILS_ENV: test
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake --trace
|
name: Ruby
on:
- push
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [2.5, 2.6, 2.7, "3.0", head, truffleruby-head]
env:
RAILS_ENV: test
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake --trace
|
Add Ruby 3.0 to build matrix
|
CI: Add Ruby 3.0 to build matrix
|
YAML
|
mit
|
savonrb/savon
|
863dda82e7bc50c05a0a010326ff0bceee7ba076
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: npm ci
- run: npm run eslint
- run: npm run cspell
publish:
needs: lint
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_ACCESS_TOKEN }}
|
name: CI
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- run: npm ci
- run: npm run eslint
- run: npm run cspell
publish:
needs: lint
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_ACCESS_TOKEN }}
|
Use node v16 on CI
|
Use node v16 on CI
|
YAML
|
mit
|
VIISON/scs-commander
|
5b9b7b567e725e38a33374fd4b8f136cb5ae7d0a
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: ci
on:
pull_request:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: docker/setup-qemu-action@v1
- uses: docker/setup-buildx-action@v1
- uses: docker/build-push-action@v2
with:
platforms: linux/amd64
tags: windyakin/kosen-website-crawler:latest
push: false
eslint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
|
name: ci
on:
pull_request:
jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: docker/setup-qemu-action@v1
- uses: docker/setup-buildx-action@v1
- uses: docker/build-push-action@v2
with:
platforms: linux/amd64
tags: windyakin/kosen-website-crawler:latest
push: false
eslint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
|
Update actions/setup-node action to v2
|
Update actions/setup-node action to v2
|
YAML
|
mit
|
windyakin/kosen-website-crawler,windyakin/kosen-website-crawler
|
825d0b78fa196a47c83f95c368350be3de220b3a
|
conda.recipe/meta.yaml
|
conda.recipe/meta.yaml
|
package:
name: pocean-core
version: "1.3.0"
source:
path: ../
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
run:
- python
- netcdf4
- numpy
- pandas
- pygc >=1.2.0
- python-dateutil
- pytz
- shapely
- simplejson
- six
test:
source_files:
- pocean
requires:
- pytest
imports:
- pocean
- pocean.dsg
- pocean.grid
- pocean.tests
commands:
- py.test pocean
about:
home: https://github.com/pyoceans/pocean-core
license: MIT
summary: 'A python framework for working with met-ocean data.'
|
package:
name: pocean-core
version: "1.3.0"
source:
path: ../
build:
number: 0
noarch: python
script: python -m pip install --no-deps --ignore-installed .
requirements:
build:
- python
- pip
run:
- python
- netcdf4
- numpy
- pandas >=0.21.0
- pygc >=1.2.0
- python-dateutil
- pytz
- shapely
- simplejson
- six
test:
source_files:
- pocean
requires:
- pytest
imports:
- pocean
- pocean.dsg
- pocean.grid
- pocean.tests
commands:
- py.test pocean
about:
home: https://github.com/pyoceans/pocean-core
license: MIT
summary: 'A python framework for working with met-ocean data.'
|
Improve conda recipe. Don't test since we already test in CI.
|
Improve conda recipe. Don't test since we already test in CI.
|
YAML
|
mit
|
pyoceans/pocean-core,pyoceans/pocean-core
|
e52b3a75cc595607cdcc393c6ad0f17bbbf49b66
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Tests
on:
pull_request:
branches:
- "*"
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
name: ruby-${{ matrix.ruby }} ${{ matrix.gemfile }}
strategy:
matrix:
ruby: [ '2.6', '2.7', '3.0', '3.1']
gemfile:
- rails_5
- rails_6
- rails_6_1
- rails_master
exclude:
- ruby: '3.1'
gemfile: rails_5
- ruby: '3.0'
gemfile: rails_5
# Rails 7 requires Ruby 2.7 or higher
- ruby: '2.6'
gemfile: rails_master
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
BUNDLE_PATH_RELATIVE_TO_CWD: true
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: default
bundler-cache: true
- name: StandardRb check
run: bundle exec standardrb
- name: Run tests
env:
RAILS_ENV: test
run: |
bundle exec rake
|
name: Tests
on:
pull_request:
branches:
- "*"
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
name: ruby-${{ matrix.ruby }} ${{ matrix.gemfile }}
strategy:
matrix:
ruby: [ '2.6', '2.7', '3.0', '3.1']
gemfile:
- rails_5
- rails_6
- rails_6_1
- rails_7_0
- rails_master
exclude:
- ruby: '3.1'
gemfile: rails_5
- ruby: '3.0'
gemfile: rails_5
# Rails 7 requires Ruby 2.7 or higher
- ruby: '2.6'
gemfile: rails_master
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
BUNDLE_PATH_RELATIVE_TO_CWD: true
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: default
bundler-cache: true
- name: StandardRb check
run: bundle exec standardrb
- name: Run tests
env:
RAILS_ENV: test
run: |
bundle exec rake
|
Add rails 7 to CI
|
Add rails 7 to CI
|
YAML
|
mit
|
ErwinM/acts_as_tenant,ErwinM/acts_as_tenant,ErwinM/acts_as_tenant
|
d5de7e40988b6dfd32a67815e2e8f706c95021ff
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: CI
on: push
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "2.5"
- "2.6"
- "2.7"
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: "2"
bundler-cache: true
- name: Run tests
run: bundle exec rake spec
|
name: CI
on: push
jobs:
test:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby:
- "2.5"
- "2.6"
- "2.7"
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: "2.2.33"
bundler-cache: true
- name: Run tests
run: bundle exec rake spec
|
Install correct version of bundler in CI
|
Install correct version of bundler in CI
|
YAML
|
mit
|
powerhome/ostruct-sanitizer,powerhome/ostruct-sanitizer
|
7487eb12c269a60ff0751085b55cd5f0ab6e546d
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: 'Integrate'
on:
- push
- pull_request
jobs:
ci:
name: 'CI'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
toolchain:
- stable
- nightly
steps:
- name: 'Install Linux dependencies'
if: ${{ runner.os == 'Linux' }}
run: sudo apt install attr e2fsprogs libfuse-dev
- name: 'Checkout the repository'
uses: actions/checkout@v2
with:
submodules: true
- name: 'Install the Rust toolchain'
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: 'Build RRG executable'
uses: actions-rs/cargo@v1
with:
command: build
- name: 'Run RRG tests'
uses: actions-rs/cargo@v1
with:
command: test
args: >
--package rrg-macro
--package rrg-proto
--package rrg
--features 'test-chattr test-setfattr'
- name: 'Print RRG version'
uses: actions-rs/cargo@v1
with:
command: run
args: -- --version
|
name: 'Integrate'
on:
- push
- pull_request
jobs:
ci:
name: 'CI'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
toolchain:
- stable
- nightly
steps:
- name: 'Install Linux dependencies'
if: ${{ runner.os == 'Linux' }}
run: sudo apt install attr e2fsprogs libfuse-dev
- name: 'Checkout the repository'
uses: actions/checkout@v2
with:
submodules: true
- name: 'Install the Rust toolchain'
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
- name: 'Build RRG executable'
uses: actions-rs/cargo@v1
with:
command: build
- name: 'Run RRG tests'
uses: actions-rs/cargo@v1
with:
command: test
args: >
--workspace
--features 'test-chattr test-setfattr'
- name: 'Print RRG version'
uses: actions-rs/cargo@v1
with:
command: run
args: -- --version
|
Simplify the GitHub Actions script.
|
Simplify the GitHub Actions script.
|
YAML
|
mit
|
google/rrg
|
300a84d74fe45ec67148447725c7bcdfebd4fb0f
|
phpci.yml
|
phpci.yml
|
build_settings:
ignore:
- "vendor"
- "tests"
- "framework"
setup:
composer:
action: "install --dev"
test:
php_unit:
config:
- "phpunit.xml.dist"
php_mess_detector:
allow_failures: true
php_code_sniffer:
standard: "PSR2"
php_cpd:
allow_failures: true
php_loc:
allow_failures: true
|
build_settings:
ignore:
- "vendor"
- "tests"
- "framework"
setup:
composer:
action: "install --dev"
test:
php_unit:
config:
- "phpunit.xml.dist"
php_mess_detector:
allow_failures: true
php_code_sniffer:
allow_failures: true
standard: "PSR2"
php_cpd:
allow_failures: true
php_loc:
allow_failures: true
|
Allow failures for code sniffer
|
MINOR: Allow failures for code sniffer
|
YAML
|
mit
|
bendubuisson/silverstripe-cacheinclude,heyday/silverstripe-cacheinclude
|
eae617a54e498e007d36145cef119791bfa4c5c3
|
roles/base/tasks/install-macos.yml
|
roles/base/tasks/install-macos.yml
|
---
- name: Install base packages
homebrew:
name:
- zsh # Changing shell
- curl # Installing
- luarocks # Spacehammer/fennel
- antigen # Shell config
state: present
- name: Restore all packages
command: brew bundle --file=Brewfile
tags: [brew, extra]
- name: Link emacs
become: yes
file:
state: link
src: /usr/local/Cellar/emacs-plus@28/28.0.50/Emacs.app
dest: /Applications/Emacs.app
# - name: Link openssl
# file:
# path: /usr/local/lib/{{ item }}.dylib
# src: /usr/local/opt/openssl/lib/{{ item }}.dylib
# state: link
# with_items:
# - libssl
# - libcrypto
- name: Add brew zsh as allowed shell
become: yes
template:
src: templates/shells.j2
dest: /etc/shells
tags: [zsh]
- name: Set loginshell
become: true
shell: chsh -s /usr/local/bin/zsh
tags: [zsh]
|
---
- name: Create custom brew cache
become: yes
file:
state: directory
path: /opt/HomebrewCache
owner: mattias
- name: Install base packages
homebrew:
name:
- zsh # Changing shell
- curl # Installing
- luarocks # Spacehammer/fennel
- antigen # Shell config
state: present
env:
HOMEBREW_CACHE: /opt/HomebrewCache
- name: Restore all packages
command: brew bundle --file=Brewfile
tags: [brew, extra]
env:
HOMEBREW_CACHE: /opt/HomebrewCache
- name: Link emacs
become: yes
file:
state: link
src: /usr/local/Cellar/emacs-plus@28/28.0.50/Emacs.app
dest: /Applications/Emacs.app
# - name: Link openssl
# file:
# path: /usr/local/lib/{{ item }}.dylib
# src: /usr/local/opt/openssl/lib/{{ item }}.dylib
# state: link
# with_items:
# - libssl
# - libcrypto
- name: Add brew zsh as allowed shell
become: yes
template:
src: templates/shells.j2
dest: /etc/shells
tags: [zsh]
- name: Set loginshell
become: true
shell: chsh -s /usr/local/bin/zsh
tags: [zsh]
|
Move homebrew cache to /opt
|
Move homebrew cache to /opt
|
YAML
|
mit
|
mattiaslundberg/ansible-workstation,mattiaslundberg/ansible-workstation
|
b78221d05e6350779c2311e1836ed5a7448caed9
|
manifests/cf-manifest/env-specific/prod-lon.yml
|
manifests/cf-manifest/env-specific/prod-lon.yml
|
---
cell_instances: 30
router_instances: 3
api_instances: 4
doppler_instances: 12
log_api_instances: 6
cc_hourly_rate_limit: 15000
paas_region_name: london
|
---
cell_instances: 30
router_instances: 3
api_instances: 8
doppler_instances: 12
log_api_instances: 6
cc_hourly_rate_limit: 15000
paas_region_name: london
|
Scale up the number of API instances
|
Scale up the number of API instances
Since DiT have reenabled prometheus in the staging org we are triggering alerts.
|
YAML
|
mit
|
alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf
|
7c1c75dd4c4f5d8541bfe9e4ea3dfa1ca866e1a8
|
vars/production.yml
|
vars/production.yml
|
---
domain: "digitalmarketplace.service.gov.uk"
maintenance_mode: live
instances: 5
router:
instances: 6
rate_limiting_enabled: enabled
routes:
- dm-router-{env}.cloudapps.digital
- dm-router-{env}.cloudapps.digital/_metrics
- www.digitalmarketplace.service.gov.uk
- api.digitalmarketplace.service.gov.uk
- search-api.digitalmarketplace.service.gov.uk
- antivirus-api.digitalmarketplace.service.gov.uk
- assets.digitalmarketplace.service.gov.uk
api:
memory: 4GB
instances: 20
user-frontend:
instances: 2
admin-frontend:
instances: 2
memory: 1GB
antivirus-api:
instances: 4
buyer-frontend:
instances: 8
memory: 1G
search-api:
instances: 8
memory: 1G
supplier-frontend:
instances: 20
memory: 2GB
|
---
domain: "digitalmarketplace.service.gov.uk"
maintenance_mode: live
instances: 5
router:
instances: 6
rate_limiting_enabled: enabled
routes:
- dm-router-{env}.cloudapps.digital
- dm-router-{env}.cloudapps.digital/_metrics
- www.digitalmarketplace.service.gov.uk
- api.digitalmarketplace.service.gov.uk
- search-api.digitalmarketplace.service.gov.uk
- antivirus-api.digitalmarketplace.service.gov.uk
- assets.digitalmarketplace.service.gov.uk
api:
memory: 2GB
instances: 10
user-frontend:
instances: 2
admin-frontend:
instances: 2
memory: 1GB
antivirus-api:
instances: 4
buyer-frontend:
instances: 8
memory: 1G
search-api:
instances: 8
memory: 1G
supplier-frontend:
instances: 10
memory: 1GB
|
Revert "scale up supplier frontend and api"
|
Revert "scale up supplier frontend and api"
|
YAML
|
mit
|
alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws
|
963dd5e7843efe8e0bf8472c622402433b34fb4a
|
metadata/com.forrestguice.suntimescalendars.yml
|
metadata/com.forrestguice.suntimescalendars.yml
|
Categories:
- Time
License: GPL-3.0-or-later
WebSite: https://forrestguice.github.io/SuntimesWidget/
SourceCode: https://github.com/forrestguice/SuntimesCalendars
IssueTracker: https://github.com/forrestguice/SuntimesCalendars/issues
Changelog: https://github.com/forrestguice/SuntimesCalendars/blob/HEAD/CHANGELOG.md
Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=NZJ5FJBCKY6K2
AutoName: Suntimes Calendars
RepoType: git
Repo: https://github.com/forrestguice/SuntimesCalendars
Builds:
- versionName: 0.1.0
versionCode: 1
commit: v0.1.0
subdir: app
gradle:
- yes
- versionName: 0.1.1
versionCode: 2
commit: v0.1.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.1.1
CurrentVersionCode: 2
|
Categories:
- Time
License: GPL-3.0-or-later
WebSite: https://forrestguice.github.io/SuntimesWidget/
SourceCode: https://github.com/forrestguice/SuntimesCalendars
IssueTracker: https://github.com/forrestguice/SuntimesCalendars/issues
Changelog: https://github.com/forrestguice/SuntimesCalendars/blob/HEAD/CHANGELOG.md
Donate: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=NZJ5FJBCKY6K2
AutoName: Suntimes Calendars
RepoType: git
Repo: https://github.com/forrestguice/SuntimesCalendars
Builds:
- versionName: 0.1.0
versionCode: 1
commit: v0.1.0
subdir: app
gradle:
- yes
- versionName: 0.1.1
versionCode: 2
commit: v0.1.1
subdir: app
gradle:
- yes
- versionName: 0.2.0
versionCode: 3
commit: v0.2.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 0.2.0
CurrentVersionCode: 3
|
Update Suntimes Calendars to 0.2.0 (3)
|
Update Suntimes Calendars to 0.2.0 (3)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroid-data,f-droid/fdroiddata
|
3ad63ccf81d9a046cc24088360f493e86d63f3b7
|
packages/ha/haskell-time-range.yaml
|
packages/ha/haskell-time-range.yaml
|
homepage: https://github.com/mankyKitty/haskell-time-range#readme
changelog-type: ''
hash: 5ca8509b2e8e54fb87285950979353703f7629ba5ca1c14c23c1e66495128d37
test-bench-deps: {}
maintainer: [email protected]
synopsis: Some useful wrappers and functions for building time ranges
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: -any
text: -any
semigroups: -any
lens: ! '>=4.15'
all-versions:
- '0.1.0.0'
author: Sean Chalmers
latest: '0.1.0.0'
description-type: markdown
description: ! 'Time Range
==========
Found the need to be able to create a time range in list form.
Ended up writing a bunch of new types, functions, and some prisms, so here we are.
WIP
WIP
WIP
WIP
'
license-name: BSD3
|
homepage: https://github.com/mankyKitty/haskell-time-range#readme
changelog-type: ''
hash: f351cf828b6defe2b638d13ba7e54df6a6bf5f33971d802ca2f3188e268779ec
test-bench-deps:
base: -any
doctest: ! '>=0.8'
maintainer: [email protected]
synopsis: Some useful wrappers and functions for building time ranges
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
time: -any
text: -any
semigroups: -any
lens: ! '>=4.15'
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Sean Chalmers
latest: '0.2.0.0'
description-type: markdown
description: ! 'Time Range
==========
Found the need to be able to create a time range in list form.
Ended up writing a bunch of new types, functions, and some prisms, so here we are.
Suggestions for the API, types, extra granularity or other such things is encouraged
and
appreciated. This is very much a WIP in library as it was created for a very specific
need, but
I thought others might find it useful.
WIP
WIP
WIP
WIP
'
license-name: BSD3
|
Update from Hackage at 2017-02-26T23:17:18Z
|
Update from Hackage at 2017-02-26T23:17:18Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
6c32fe3e06a0af61a54cc43e841397ec0115f2d7
|
packages/st/strict-concurrency.yaml
|
packages/st/strict-concurrency.yaml
|
homepage: https://github.com/ygale/strict-concurrency
changelog-type: ''
hash: 9782540dbda9ca4925573ed9c1fc0e9e613cb7081d7e2976fa68434106cd30f0
test-bench-deps: {}
maintainer: Yitz Gale <[email protected]>
synopsis: Strict concurrency abstractions
changelog: ''
basic-deps:
base: ! '>=4 && <5'
deepseq: ! '>=1'
all-versions:
- '0.1'
- '0.2'
- '0.2.1'
- '0.2.2'
- '0.2.3'
- '0.2.4'
- '0.2.4.1'
- '0.2.4.2'
author: Don Stewart <[email protected]>
latest: '0.2.4.2'
description-type: haddock
description: ! 'This package provides head normal form strict versions of some
standard Haskell concurrency abstractions (MVars,Chans), which
provide control over where evaluation takes place not offered by
the default lazy types. This may be useful for deciding when and
where evaluation occurs, leading to improved time or space use,
depending on the circumstances.'
license-name: BSD3
|
homepage: https://github.com/ygale/strict-concurrency
changelog-type: ''
hash: de8600001558ca5c4557a0dbf497d626760a976e97e1c8033f93b400dc92a18a
test-bench-deps: {}
maintainer: Yitz Gale <[email protected]>
synopsis: Strict concurrency abstractions
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
deepseq: ! '>=1.1'
all-versions:
- '0.1'
- '0.2'
- '0.2.1'
- '0.2.2'
- '0.2.3'
- '0.2.4'
- '0.2.4.1'
- '0.2.4.2'
author: Don Stewart <[email protected]>
latest: '0.2.4.2'
description-type: haddock
description: ! 'This package provides head normal form strict versions of some
standard Haskell concurrency abstractions (MVars,Chans), which
provide control over where evaluation takes place not offered by
the default lazy types. This may be useful for deciding when and
where evaluation occurs, leading to improved time or space use,
depending on the circumstances.'
license-name: BSD3
|
Update from Hackage at 2018-10-02T10:35:36Z
|
Update from Hackage at 2018-10-02T10:35:36Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
4c8edc464e0a80c045ea6c77c228627062494369
|
packages/st/string-interpreter.yaml
|
packages/st/string-interpreter.yaml
|
homepage: https://hackage.haskell.org/package/string-interpreter
changelog-type: markdown
hash: 3552420b05560e55adbfb50af5068d19c8360b294f2d1166b58ee6927ee4b048
test-bench-deps: {}
maintainer: [email protected]
synopsis: Is used in the recursive mode for phonetic languages approach.
changelog: |
# Revision history for string-interpreter
## 0.1.0.0 -- 2021-08-16
* First version. Released on an unsuspecting world.
## 0.2.0.0 -- 2021-08-16
* Second version. Added a possibility to specify also splitting of the word.
basic-deps:
base: '>=4.8 && <4.16'
all-versions:
- 0.2.0.0
author: OleksandrZhabenko
latest: 0.2.0.0
description-type: haddock
description: A library that has commonly used function for the phonetic-languages
implementations.
license-name: MIT
|
homepage: https://hackage.haskell.org/package/string-interpreter
changelog-type: markdown
hash: c24ea75b22d0dbbcf030125cecf9085acc4a79a875138d80c2dd6c666de1aeae
test-bench-deps: {}
maintainer: [email protected]
synopsis: Is used in the recursive mode for phonetic languages approach.
changelog: "# Revision history for string-interpreter\n\n## 0.1.0.0 -- 2021-08-16\n\n*
First version. Released on an unsuspecting world.\n\n## 0.2.0.0 -- 2021-08-16\n\n*
Second version. Added a possibility to specify also splitting of the word.\n\n##
0.3.0.0 -- 2021-08-31\n\n* Third version. Added the possibility to specify dividing
using negative second \npart that is counting from the end of the word in the opposite
direction.\n"
basic-deps:
base: '>=4.8 && <4.16'
all-versions:
- 0.3.0.0
author: OleksandrZhabenko
latest: 0.3.0.0
description-type: haddock
description: A library that has commonly used function for the phonetic-languages
implementations.
license-name: MIT
|
Update from Hackage at 2021-08-31T12:49:26Z
|
Update from Hackage at 2021-08-31T12:49:26Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
8bf045fcf7429731104925cb0a50f97415803057
|
roles/database/client/vars/main.yml
|
roles/database/client/vars/main.yml
|
---
mysql_release_filename: mysql57-community-release-el7-9.noarch.rpm
mysql_community_ini_section: mysql57-community
oracle_instantclient_basic_filename: oracle-instantclient12.2-basic-12.2.0.1.0-1.x86_64.rpm
oracle_instantclient_sqlplus_filename: oracle-instantclient12.2-sqlplus-12.2.0.1.0-1.x86_64.rpm
oracle_instantclient_tools_filename: oracle-instantclient12.2-tools-12.2.0.1.0-1.x86_64.rpm
postgersql_jdbc_filename: postgresql-42.1.4.jar
redshift_jdbc_filename: RedshiftJDBC42-1.2.1.1001.jar
sqlcl_filename: sqlcl-17.2.0.184.1230-no-jre.zip
swingbench_filename: swingbench25971.zip
|
---
mysql_release_filename: mysql57-community-release-el7-9.noarch.rpm
mysql_community_ini_section: mysql57-community
oracle_instantclient_basic_filename: oracle-instantclient12.2-basic-12.2.0.1.0-1.x86_64.rpm
oracle_instantclient_sqlplus_filename: oracle-instantclient12.2-sqlplus-12.2.0.1.0-1.x86_64.rpm
oracle_instantclient_tools_filename: oracle-instantclient12.2-tools-12.2.0.1.0-1.x86_64.rpm
postgersql_jdbc_filename: postgresql-42.1.4.jar
redshift_jdbc_filename: RedshiftJDBC42-1.2.1.1003.jar
sqlcl_filename: sqlcl-17.2.0.184.1230-no-jre.zip
swingbench_filename: swingbench25971.zip
|
Update Redshift JDBC driver to 1003
|
Update Redshift JDBC driver to 1003
|
YAML
|
mit
|
rewse/ansible-playbooks,rewse/ansible-playbooks,rewse/ansible-playbooks
|
9effe4482516ac1764c837f3c4f431fa0f5c0a9e
|
.ci/gitlab-ci.yml
|
.ci/gitlab-ci.yml
|
stages:
- base
- modules
variables:
GIT_SUBMODULE_STRATEGY: none
.docker-in-docker:
retry:
max: 2
when:
- always
image: docker:stable
tags:
- long execution time
- docker-in-docker
variables:
DOCKER_HOST: tcp://docker:2375/
DOCKER_DRIVER: overlay2
before_script:
- apk --update add openssh-client rsync git file bash python3
- pip3 install -U docker jinja2 docopt
- echo $DOCKER_PW | docker login --username="$DOCKER_USER" --password-stdin
- git submodule update --init .ci/shared
services:
- docker:dind
environment:
name: unsafe
stage: modules
script: .ci/shared/docker/update_test_dockers.py ${MODULE_NAME}
base:
extends: .docker-in-docker
stage: base
variables:
MODULE_NAME: BASE
gdt:
extends: .docker-in-docker
variables:
MODULE_NAME: dune-gdt
super:
extends: .docker-in-docker
variables:
BASE: debian
IMAGE: dunecommunity/gdt-super_${BASE}:${CI_COMMIT_SHA}
script: |
docker build --build-arg BASE=${BASE} -t ${IMAGE} -f .ci/shared/docker/super_docker/Dockerfile .
docker push ${IMAGE}
|
stages:
- base
- modules
variables:
GIT_SUBMODULE_STRATEGY: none
.docker-in-docker:
retry:
max: 2
when:
- always
image: docker:stable
variables:
DOCKER_HOST: tcp://docker:2375/
DOCKER_DRIVER: overlay2
before_script:
- apk --update add openssh-client rsync git file bash python3
- pip3 install -U docker jinja2 docopt
- echo $DOCKER_PW | docker login --username="$DOCKER_USER" --password-stdin
- git submodule update --init .ci/shared
services:
- docker:dind
environment:
name: unsafe
stage: modules
script: .ci/shared/docker/update_test_dockers.py ${MODULE_NAME}
base:
extends: .docker-in-docker
stage: base
variables:
MODULE_NAME: BASE
gdt:
extends: .docker-in-docker
variables:
MODULE_NAME: dune-gdt
super:
extends: .docker-in-docker
variables:
BASE: debian
IMAGE: dunecommunity/gdt-super_${BASE}:${CI_COMMIT_SHA}
script: |
docker build --build-arg BASE=${BASE} -t ${IMAGE} -f .ci/shared/docker/super_docker/Dockerfile .
docker push ${IMAGE}
|
Revert "[ci|gitlab] allow shared runners to pickup builds"
|
Revert "[ci|gitlab] allow shared runners to pickup builds"
This reverts commit e3191da6671350ce77f1e367676a37ad23a7f3fe.
|
YAML
|
bsd-2-clause
|
dune-community/dune-gdt-super
|
757fff2255132b12b53eeec63af72f187c1796ef
|
vars/osx.yml
|
vars/osx.yml
|
---
homebrew_install: true
homebrew_cask_install: true
homebrew_upgrade_all_packages: false
homebrew_install_emacs: false
homebrew_taps:
- caskroom/cask
- caskroom/fonts
- homebrew/binary
- homebrew/dupes
- homebrew/versions
- thoughtbot/formulae
- railwaycat/emacsmacport
homebrew_installed_packages:
- coreutils
- git
- irssi
- openssl
- python
- rcm
- vim
- wget
- zsh
homebrew_cask_apps:
- 1password
- dropbox
- evernote
- firefox
- flux
- google-chrome
- gpgtools
- iterm2
- seil
- textwrangler
- tunnelblick
- vlc
- xquartz
homebrew_cask_apps_osx:
- doxie
- libreoffice
- skype
- teamviewer
|
---
homebrew_install: true
homebrew_cask_install: true
homebrew_upgrade_all_packages: false
homebrew_install_emacs: false
homebrew_taps:
- caskroom/cask
- caskroom/fonts
- homebrew/binary
- homebrew/dupes
- homebrew/versions
- thoughtbot/formulae
- railwaycat/emacsmacport
homebrew_installed_packages:
- coreutils
- git
- irssi
- openssl
- python
- rcm
- vim
- wget
- zsh
homebrew_cask_apps:
- 1password
- dropbox
- evernote
- firefox
- flux
- google-chrome
- gpgtools
- iterm2
- slack
- tunnelblick
- vlc
- xquartz
homebrew_cask_apps_osx:
- doxie
- libreoffice
- skype
- teamviewer
|
Remove seil and textwrangler, add slack
|
Remove seil and textwrangler, add slack
|
YAML
|
mit
|
andrewtchin/ansible-osx,andrewtchin/ansible-osx
|
d881e152f681bea6abf8bcedf3156b965b46fe5f
|
ready.yml
|
ready.yml
|
repo: PubMedMiner.jl
site_name: PubMedMiner
maintainers:
- name: Ian Bacher
github_user: ibacher
repo_url: https://github.com/bcbi/PubMedMiner.jl
site_description: Tool to visually explore MeSH descriptors of MEDLINE/PubMed articles.
site_url: https://bcbi.brown.edu/PubMedMiner
type: web_app
|
repo: PubMedMiner.jl
site_name: PubMedMiner
maintainers:
- name: Ian Bacher
github_user: ibacher
repo_url: https://github.com/bcbi/PubMedMiner.jl
site_description: Tool to visually explore MeSH descriptors of MEDLINE/PubMed articles.
site_url: https://bcbi.brown.edu/pubmedminer
type: web_app
|
Fix URL for PubMedMiner app
|
Fix URL for PubMedMiner app
|
YAML
|
mit
|
bcbi/PubMedMiner.jl
|
5b2a5a144199bac10e780c06a3cd822c2922dddb
|
.appveyor.yml
|
.appveyor.yml
|
# brian's standard Appveyor config for Perl 5 modules
# https://github.com/briandfoy/brians_perl_modules_appveyor_config
# This file is licensed under the Artistic License 2.0
image:
- Visual Studio 2015
- Ubuntu
environment:
PERL5LIB: /home/appveyor/perl5/lib/perl5
platform: x64
branches:
only:
- master
- appveyor
skip_tags: true
install:
- cmd: if not exist "C:\strawberry" cinst strawberryperl
- cmd: set PATH=C:\strawberry\perl\bin;C:\strawberry\perl\site\bin;C:\strawberry\c\bin;%PATH%
- cmd: cd C:\projects\%APPVEYOR_PROJECT_NAME%
- sh: sudo apt-get install build-essential git libssl-dev
- sh: sudo apt-get install -y perl
- sh: export PATH=/home/appveyor/perl5/bin:$PATH
- perl -v
- cpan App::cpanminus
- cpanm --installdeps .
build_script:
- perl Makefile.PL
- cmd: gmake test
- sh: make test
|
# brian's standard Appveyor config for Perl 5 modules
# https://github.com/briandfoy/brians_perl_modules_appveyor_config
# This file is licensed under the Artistic License 2.0
image:
- Visual Studio 2015
- ubuntu1604
- ubuntu1804
- ubuntu
environment:
PERL5LIB: /home/appveyor/perl5/lib/perl5
platform: x64
branches:
only:
- master
- appveyor
skip_tags: true
install:
- cmd: if not exist "C:\strawberry" cinst strawberryperl
- cmd: set PATH=C:\strawberry\perl\bin;C:\strawberry\perl\site\bin;C:\strawberry\c\bin;%PATH%
- cmd: cd %APPVEYOR_BUILD_FOLDER%
- sh: sudo apt-get install build-essential git libssl-dev
- sh: sudo apt-get install -y perl
- sh: export PATH=/home/appveyor/perl5/bin:$PATH
- perl -v
- cpan App::cpanminus ExtUtils::MakeMaker
- cpanm --installdeps .
build_script:
- perl Makefile.PL
- cmd: gmake test
- sh: make test
|
Update AppVeyor for Ubuntu 18.04
|
Update AppVeyor for Ubuntu 18.04
|
YAML
|
artistic-2.0
|
briandfoy/Test-Env,briandfoy/Test-Env
|
05a5866c0d8274d8bc41e042c0bbe5ba2cf6301e
|
.appveyor.yml
|
.appveyor.yml
|
build: false
services:
- postgresql96
environment:
global:
PGUSER: postgres
PGHOST: localhost
PGPORT: 5432
PGPASSWORD: Password12!
matrix:
- PYTHON_VERSION: 3.7
MINICONDA: C:\Miniconda3-x64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes true
- conda update conda
- conda config --set changeps1 false
- conda config --set channel_priority strict
- conda config --add channels conda-forge
- conda info -a
- "conda create -n testenv python=%PYTHON_VERSION% \
fiona \
flask \
gdal \
isodate \
libgdal \
networkx \
numpy \
pandas \
pint \
psycopg2 \
pyarrow \
pytest \
python-dateutil \
rtree \
ruamel.yaml \
shapely \
xarray"
- activate testenv
- python setup.py develop
before_test:
- PATH=C:\Program Files\PostgreSQL\9.6\bin\;%PATH%
- createdb -e test_smif
test_script:
- python setup.py test
|
build: false
services:
- postgresql96
environment:
global:
PGUSER: postgres
PGHOST: localhost
PGPORT: 5432
PGPASSWORD: Password12!
matrix:
- PYTHON_VERSION: 3.7
MINICONDA: C:\Miniconda3-x64
init:
- "ECHO %PYTHON_VERSION% %MINICONDA%"
install:
- "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%"
- conda config --set always_yes true
- conda update conda
- conda config --set changeps1 false
- conda config --set channel_priority strict
- conda info -a
- "conda create -n testenv python=3.7 \
fiona \
flask \
gdal \
isodate \
libgdal \
networkx \
numpy \
pandas \
psycopg2 \
pyarrow \
pytest \
python-dateutil \
rtree \
shapely \
xarray"
- activate testenv
- python setup.py develop
before_test:
- PATH=C:\Program Files\PostgreSQL\9.6\bin\;%PATH%
- createdb -e test_smif
test_script:
- python setup.py test
|
Drop conda-forge build from Appveyor
|
Drop conda-forge build from Appveyor
|
YAML
|
mit
|
nismod/smif,willu47/smif,willu47/smif,tomalrussell/smif,nismod/smif,willu47/smif,tomalrussell/smif,nismod/smif,tomalrussell/smif,tomalrussell/smif,willu47/smif,nismod/smif
|
85df095a3a86f736b41c33e4f2fe3ed38f07976e
|
.appveyor.yml
|
.appveyor.yml
|
install:
- C:\msys64\usr\bin\pacman -Syu --noconfirm make mingw-w64-x86_64-clang mingw-w64-x86_64-boost mingw-w64-x86_64-yaml-cpp mingw-w64-x86_64-python2
build_script:
- set MSYSTEM=MINGW64
- set PATH=C:\msys64\mingw64\bin;C:\msys64\usr\bin;%PATH%
- cd build
- cmake -G"MSYS Makefiles" -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang ..
- make
- make test
|
install:
- C:\msys64\usr\bin\pacman -Syu --noconfirm make mingw-w64-x86_64-clang mingw-w64-x86_64-boost mingw-w64-x86_64-yaml-cpp mingw-w64-x86_64-python2
build_script:
- set MSYSTEM=MINGW64
- set PATH=C:\msys64\mingw64\bin;C:\msys64\usr\bin;%PATH%
- cd build
- 'cmake -G"MSYS Makefiles" -DCMAKE_EXE_LINKER_FLAGS="-Wl,--allow-multiple-definition" -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang ..' # --allow-multiple-definition for https://llvm.org/bugs/show_bug.cgi?format=multiple&id=9744
- make
- make test
|
Work around bug in Clang on 64-bit mingw-w64 target.
|
AppVeyor: Work around bug in Clang on 64-bit mingw-w64 target.
See https://llvm.org/bugs/show_bug.cgi?format=multiple&id=9744 for more info.
|
YAML
|
bsd-3-clause
|
blindsighttf2/Astron,blindsighttf2/Astron,blindsighttf2/Astron,blindsighttf2/Astron
|
9a21aedd120388c601cc2cec9d1242a7b2d868f9
|
.fixtures.yml
|
.fixtures.yml
|
fixtures:
repositories:
'stdlib': git://github.com/puppetlabs/puppetlabs-stdlib.git
symlinks:
'gai': "#{source_dir}"
|
fixtures:
repositories:
'stdlib':
repo: 'git://github.com/puppetlabs/puppetlabs-stdlib.git'
ref: '4.2.0'
symlinks:
'gai': "#{source_dir}"
|
Set stdlib version for tests to 4.2.0
|
Set stdlib version for tests to 4.2.0
|
YAML
|
bsd-2-clause
|
smoeding/puppet-gai,smoeding/puppet-gai
|
4634783a4e2889cd3b7f307022aecdc3e1e5963a
|
.fixtures.yml
|
.fixtures.yml
|
fixtures:
repositories:
facts: 'https://github.com/puppetlabs/puppetlabs-facts.git'
provision: 'https://github.com/carabasdaniel/provision.git'
puppet_agent: 'https://github.com/puppetlabs/puppetlabs-puppet_agent.git'
registry: 'https://github.com/puppetlabs/puppetlabs-registry.git'
translate: 'https://github.com/puppetlabs/puppetlabs-translate.git'
stdlib: 'https://github.com/puppetlabs/puppetlabs-stdlib.git'
symlinks:
motd: "#{source_dir}"
|
fixtures:
repositories:
facts: 'https://github.com/puppetlabs/puppetlabs-facts.git'
provision: 'https://github.com/puppetlabs/provision.git'
puppet_agent: 'https://github.com/puppetlabs/puppetlabs-puppet_agent.git'
registry: 'https://github.com/puppetlabs/puppetlabs-registry.git'
translate: 'https://github.com/puppetlabs/puppetlabs-translate.git'
stdlib: 'https://github.com/puppetlabs/puppetlabs-stdlib.git'
symlinks:
motd: "#{source_dir}"
|
Fix url for provision module
|
Fix url for provision module
|
YAML
|
apache-2.0
|
puppetlabs/puppetlabs-motd
|
959aeed788cae24ed1b390a32950fc92da0e7961
|
.fixtures.yml
|
.fixtures.yml
|
fixtures:
repositories:
concat: https://github.com/puppetlabs/puppetlabs-concat.git
stdlib: https://github.com/puppetlabs/puppetlabs-stdlib.git
selinux_core:
repo: https://github.com/puppetlabs/puppetlabs-selinux_core.git
puppet_version: ">= 6.0.0"
|
fixtures:
repositories:
stdlib: https://github.com/puppetlabs/puppetlabs-stdlib.git
selinux_core:
repo: https://github.com/puppetlabs/puppetlabs-selinux_core.git
puppet_version: ">= 6.0.0"
|
Remove concat as a fixture
|
Remove concat as a fixture
7c8bf65243d71f2c083ee5412dcee50e9789a580 removed the use of this module.
It's not listed as a dependency either so it can be safely removed as a
fixture.
|
YAML
|
apache-2.0
|
vchepkov/puppet-selinux,vchepkov/puppet-selinux,vchepkov/puppet-selinux,jfryman/puppet-selinux
|
56ea0e5e283679f8c0b1296d087b7210d6690c63
|
metadata/su.xash.husky.yml
|
metadata/su.xash.husky.yml
|
Categories:
- Internet
License: GPL-3.0-only
AuthorName: a1batross
AuthorEmail: [email protected]
SourceCode: https://git.mentality.rip/FWGS/Husky
IssueTracker: https://git.mentality.rip/FWGS/Husky/issues
Translation: https://l10n.mentality.rip/projects/husky/
Changelog: https://git.mentality.rip/FWGS/Husky/releases
AutoName: Husky
RepoType: git
Repo: https://git.mentality.rip/FWGS/Husky
Builds:
- versionName: 1.0.1
versionCode: 168
commit: v1.0.1
subdir: app
gradle:
- huskyBlue
prebuild: sed -i -e 's/buildnum()/168/g' build.gradle
MaintainerNotes: VC is generated on build, no way to check for updates.
AutoUpdateMode: None
UpdateCheckMode: None
CurrentVersion: 1.0.1
CurrentVersionCode: 168
|
Categories:
- Internet
License: GPL-3.0-only
WebSite: https://husky.adol.pw
SourceCode: https://git.sr.ht/~captainepoch/husky
IssueTracker: https://todo.sr.ht/~captainepoch/husky
Changelog: https://git.sr.ht/~captainepoch/husky/tree/master/item/HISTORY
AutoName: Husky
RepoType: git
Repo: https://git.sr.ht/~captainepoch/husky
Builds:
- versionName: 1.0.1
versionCode: 168
commit: v1.0.1
subdir: app
gradle:
- huskyBlue
prebuild: sed -i -e 's/buildnum()/168/g' build.gradle
- versionName: 1.1.2
versionCode: 178
commit: 1.1.2
subdir: husky/app
sudo:
- apt-get update || apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- huskyStable
MaintainerNotes: VC is generated on build, no way to check for updates.
AutoUpdateMode: None
UpdateCheckMode: None
CurrentVersion: 1.1.2
CurrentVersionCode: 178
|
Update Husky version to 1.1.2
|
Update Husky version to 1.1.2
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
61fed70b07b4043b41b8f9def95a259407745d46
|
scripts/ci/deploy-cf-alone/task.yml
|
scripts/ci/deploy-cf-alone/task.yml
|
---
platform: linux
image: docker:///cloudfoundry/runtime-ci
inputs:
- name: cf-deployment
- name: cf-release
- name: etcd-release
- name: consul-release
- name: mega-ci
- name: stemcell
run:
path: mega-ci/scripts/ci/deploy-cf-alone/task
params:
STUB_PATH:
STUB_PARTS_PATH:
BOSH_DIRECTOR:
BOSH_USER:
BOSH_PASSWORD:
|
---
platform: linux
image: docker:///cloudfoundry/runtime-ci
inputs:
- name: mega-ci
- name: cf-deployment
- name: cf-release
- name: etcd-release
- name: consul-release
- name: mega-ci-env
- name: stemcell
run:
path: mega-ci/scripts/ci/deploy-cf-alone/task
params:
STUB_PATH:
STUB_PARTS_PATH:
BOSH_DIRECTOR:
BOSH_USER:
BOSH_PASSWORD:
|
Add mega-ci-env as dependency to deploy-cf-alone.
|
Add mega-ci-env as dependency to deploy-cf-alone.
[#108995852]
|
YAML
|
apache-2.0
|
cloudfoundry/mega-ci,cloudfoundry/mega-ci
|
4e0f7d7076b670fbedf4a8a4fd2ad583414e1892
|
metadata/app.fedilab.tubelab.yml
|
metadata/app.fedilab.tubelab.yml
|
Categories:
- Internet
License: GPL-3.0-only
AuthorName: Thomas
AuthorWebSite: https://fedilab.app/
SourceCode: https://framagit.org/tom79/fedilab-tube
IssueTracker: https://framagit.org/tom79/fedilab-tube/issues
Translation: https://crowdin.com/project/tubelab
AutoName: TubeLab
RepoType: git
Repo: https://framagit.org/tom79/fedilab-tube
Builds:
- versionName: 1.1.1
versionCode: 11
commit: 1.1.1
subdir: app
gradle:
- fdroid_full
- versionName: 1.2.0
versionCode: 12
commit: 1.2.0
subdir: app
gradle:
- fdroid_full
- versionName: 1.3.0
versionCode: 14
commit: 1.3.0
subdir: app
gradle:
- fdroid_full
- versionName: 1.4.0
versionCode: 15
commit: 1.4.0
subdir: app
gradle:
- fdroid_full
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.4.0
CurrentVersionCode: 15
|
Categories:
- Internet
License: GPL-3.0-only
AuthorName: Thomas
AuthorWebSite: https://fedilab.app/
SourceCode: https://framagit.org/tom79/fedilab-tube
IssueTracker: https://framagit.org/tom79/fedilab-tube/issues
Translation: https://crowdin.com/project/tubelab
AutoName: TubeLab
RepoType: git
Repo: https://framagit.org/tom79/fedilab-tube
Builds:
- versionName: 1.1.1
versionCode: 11
commit: 1.1.1
subdir: app
gradle:
- fdroid_full
- versionName: 1.2.0
versionCode: 12
commit: 1.2.0
subdir: app
gradle:
- fdroid_full
- versionName: 1.3.0
versionCode: 14
commit: 1.3.0
subdir: app
gradle:
- fdroid_full
- versionName: 1.4.0
versionCode: 15
commit: 1.4.0
subdir: app
gradle:
- fdroid_full
- versionName: 1.4.1
versionCode: 16
commit: 1.4.1
subdir: app
gradle:
- fdroid_full
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 1.4.1
CurrentVersionCode: 16
|
Update TubeLab to 1.4.1 (16)
|
Update TubeLab to 1.4.1 (16)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
2b0dfa9be3c369a389a0e61a7e28df9ee2cd0f45
|
metadata/fr.ralala.hexviewer.yml
|
metadata/fr.ralala.hexviewer.yml
|
Categories:
- Development
- Writing
License: GPL-3.0-only
SourceCode: https://github.com/Keidan/HexViewer/
IssueTracker: https://github.com/Keidan/HexViewer/issues/
Changelog: https://github.com/Keidan/HexViewer/releases/
AutoName: HexViewer
RepoType: git
Repo: https://github.com/Keidan/HexViewer
Builds:
- versionName: '1.5'
versionCode: 6
commit: v1.5
subdir: app
gradle:
- yes
- versionName: 1.7.1
versionCode: 9
commit: v1.7.1
subdir: app
gradle:
- yes
- versionName: '1.8'
versionCode: 10
commit: v1.8
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.8'
CurrentVersionCode: 10
|
Categories:
- Development
- Writing
License: GPL-3.0-only
SourceCode: https://github.com/Keidan/HexViewer/
IssueTracker: https://github.com/Keidan/HexViewer/issues/
Changelog: https://github.com/Keidan/HexViewer/releases/
AutoName: HexViewer
RepoType: git
Repo: https://github.com/Keidan/HexViewer
Builds:
- versionName: '1.5'
versionCode: 6
commit: v1.5
subdir: app
gradle:
- yes
- versionName: 1.7.1
versionCode: 9
commit: v1.7.1
subdir: app
gradle:
- yes
- versionName: '1.8'
versionCode: 10
commit: v1.8
subdir: app
gradle:
- yes
- versionName: '1.9'
versionCode: 11
commit: v1.9
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: '1.9'
CurrentVersionCode: 11
|
Update HexViewer to 1.9 (11)
|
Update HexViewer to 1.9 (11)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
87ff5e63f11d957e40129349b7b4777b08e0493b
|
.appveyor.yml
|
.appveyor.yml
|
install:
- set BOOST_ROOT=C:\Libraries\boost
- set BOOST_LIBRARYDIR=%BOOST_ROOT%\lib64-msvc-12.0
- cd dependencies
- appveyor DownloadFile https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-0.5.3.zip -FileName yaml-cpp.zip
- 7z x yaml-cpp.zip
- ren yaml-cpp-yaml-cpp-0.5.3 yaml-cpp
- cd yaml-cpp
- cmake -G"Visual Studio 12 2013 Win64" -DYAML_CPP_BUILD_TOOLS=OFF .
- msbuild /p:Configuration=Release ALL_BUILD.vcxproj
- set CMAKE_LIBRARY_PATH=%CMAKE_LIBRARY_PATH%;%CD%\Release
- set CMAKE_INCLUDE_PATH=%CMAKE_INCLUDE_PATH%;%CD%
- cd ..\..
# What is it with CMake and not detecting the right versions of libraries...
- del C:\OpenSSL-Win64\lib\ssleay32.lib
- del C:\OpenSSL-Win64\lib\libeay32.lib
build_script:
- cd build
- cmake -G"Visual Studio 12 2013 Win64" -DCMAKE_BUILD_TYPE=Release -DOPENSSL_USE_STATIC_LIBS=YES ..
- msbuild /p:Configuration=Release ALL_BUILD.vcxproj
- copy Release\astrond.exe .
test_script:
- ctest --output-on-failure
artifacts:
- path: build\astrond.exe
|
install:
- set BOOST_ROOT=C:\Libraries\boost\boost_1_62_0
- set BOOST_LIBRARYDIR=%BOOST_ROOT%\lib64-msvc-14.0
- cd dependencies
- appveyor DownloadFile https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-0.5.3.zip -FileName yaml-cpp.zip
- 7z x yaml-cpp.zip
- ren yaml-cpp-yaml-cpp-0.5.3 yaml-cpp
- cd yaml-cpp
- cmake -G"Visual Studio 14 2015 Win64" -DYAML_CPP_BUILD_TOOLS=OFF .
- msbuild /p:Configuration=Release ALL_BUILD.vcxproj
- set CMAKE_LIBRARY_PATH=%CMAKE_LIBRARY_PATH%;%CD%\Release
- set CMAKE_INCLUDE_PATH=%CMAKE_INCLUDE_PATH%;%CD%
- cd ..\..
# What is it with CMake and not detecting the right versions of libraries...
- del C:\OpenSSL-Win64\lib\ssleay32.lib
- del C:\OpenSSL-Win64\lib\libeay32.lib
build_script:
- cd build
- cmake -G"Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=Release -DOPENSSL_USE_STATIC_LIBS=YES ..
- msbuild /p:Configuration=Release ALL_BUILD.vcxproj
- copy Release\astrond.exe .
test_script:
- ctest --output-on-failure
artifacts:
- path: build\astrond.exe
|
Build with Boost 1.62 and MSVC 14.0.
|
AppVeyor: Build with Boost 1.62 and MSVC 14.0.
|
YAML
|
bsd-3-clause
|
blindsighttf2/Astron,blindsighttf2/Astron,blindsighttf2/Astron,blindsighttf2/Astron
|
296e4863b1dde8d0f4accfa1d00c94189917fe6a
|
.eslintrc.yml
|
.eslintrc.yml
|
env:
es6: true
node: true
mocha: true
parserOptions:
ecmaVersion: 2017
sourceType: module
extends: ['eslint:recommended', 'plugin:react/recommended']
parser: babel-eslint
rules:
no-var: 2
key-spacing: 2
semi-spacing: 2
block-spacing: 2
spaced-comment: 2
callback-return: 2
space-infix-ops: 2
keyword-spacing: 2
newline-after-var: 2
space-before-blocks: 2
handle-callback-err: 2
newline-before-return: 2
semi: [2, 'always']
eqeqeq: [2, 'always']
eol-last: [2, 'always']
max-statements: [2, 30]
comma-dangle: [2, never]
indent: [2, 2, {'SwitchCase': 1}]
object-curly-spacing: [2, 'always']
comma-spacing: [2, {'before': false, 'after': true}]
quotes: [2, 'single', {'allowTemplateLiterals': true}]
# React specific rules
'react/prop-types': 1
'react/no-children-prop': 0
'react/no-string-refs': 1
'react/display-name': 0
|
env:
es6: true
node: true
browser: true
parserOptions:
ecmaVersion: 2017
sourceType: module
extends: ['eslint:recommended', 'plugin:react/recommended']
parser: babel-eslint
rules:
no-var: 2
key-spacing: 2
semi-spacing: 2
block-spacing: 2
spaced-comment: 2
callback-return: 2
space-infix-ops: 2
keyword-spacing: 2
newline-after-var: 2
space-before-blocks: 2
handle-callback-err: 2
newline-before-return: 2
semi: [2, 'always']
eqeqeq: [2, 'always']
eol-last: [2, 'always']
max-statements: [2, 30]
comma-dangle: [2, never]
indent: [2, 2, {'SwitchCase': 1}]
object-curly-spacing: [2, 'always']
comma-spacing: [2, {'before': false, 'after': true}]
quotes: [2, 'single', {'allowTemplateLiterals': true}]
# React specific rules
'react/prop-types': 1
'react/no-children-prop': 0
'react/no-string-refs': 1
'react/display-name': 0
|
Remove mocha from environment and add browser
|
Remove mocha from environment and add browser
|
YAML
|
mit
|
leapfrogtechnology/chill-dashboard,leapfrogtechnology/chill-dashboard
|
8d8c0cabbc74b4994e24df225d9f035635716251
|
openmoltools/meta.yaml
|
openmoltools/meta.yaml
|
package:
name: openmoltools
version: 0.6.8
source:
git_url: https://github.com/choderalab/openmoltools.git
git_tag: v0.6.8
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- setuptools
- mdtraj
- numpy
- scipy
- pandas
- openmm
- ambermini
# - rdkit # rdkit is an optional dependency, may want to comment this out for the release version.
run:
- python
- setuptools
- pandas
- six
- mdtraj
- numpydoc
- scipy
- openmm
- ambermini
# - rdkit # rdkit is an optional dependency, may want to comment this out for the release version.
test:
requires:
- nose
imports:
- openmoltools
commands:
- nosetests openmoltools -v -a '!slow'
about:
home: https://github.com/choderalab/openmoltools
license: GNU Lesser General Public License v2 or later (LGPLv2+)
|
package:
name: openmoltools
version: 0.6.8
source:
git_url: https://github.com/choderalab/openmoltools.git
git_tag: v0.6.8
build:
preserve_egg_dir: True
number: 0
requirements:
build:
- python
- setuptools
- mdtraj
- numpy
- scipy
- pandas
- openmm
- ambermini
- parmed
# - rdkit # rdkit is an optional dependency, may want to comment this out for the release version.
run:
- python
- setuptools
- pandas
- six
- mdtraj
- numpydoc
- scipy
- openmm
- ambermini
- parmed
# - rdkit # rdkit is an optional dependency, may want to comment this out for the release version.
test:
requires:
- nose
imports:
- openmoltools
commands:
- nosetests openmoltools -v -a '!slow'
about:
home: https://github.com/choderalab/openmoltools
license: GNU Lesser General Public License v2 or later (LGPLv2+)
|
Fix openmoltools conda recipe to add parmed
|
Fix openmoltools conda recipe to add parmed
@jchodera - looks like @kylebeauchamp forgot to add parmed as a requirement in the omnia conda recipe when he added it as a requirement for travis in the package itself, hence the problem here. It's not clear to me why this didn't cause problems sooner, since `utils` has been trying to import `parmed` for a while.
Former-commit-id: 7a42bebde0ca7cb7389278b3b0769ef129a90ff2
|
YAML
|
mit
|
marscher/omnia-conda-recipes,swails/conda-recipes,jchodera/conda-recipes,jchodera/conda-recipes,marscher/omnia-conda-recipes,cwehmeyer/conda-recipes,cwehmeyer/conda-recipes,peastman/conda-recipes,swails/conda-recipes,mpharrigan/conda-recipes,rmcgibbo/conda-recipes,rmcgibbo/conda-recipes,peastman/conda-recipes,peastman/conda-recipes,mpharrigan/conda-recipes,marscher/omnia-conda-recipes,rmcgibbo/conda-recipes,omnia-md/conda-recipes,marscher/omnia-conda-recipes,swails/conda-recipes,mpharrigan/conda-recipes,danielparton/omnia-md-conda-recipes,omnia-md/conda-recipes,jchodera/conda-recipes,cwehmeyer/conda-recipes,cwehmeyer/conda-recipes,rmcgibbo/conda-recipes,danielparton/omnia-md-conda-recipes,omnia-md/conda-recipes,swails/conda-recipes,jchodera/conda-recipes
|
3a909c6de35dcd4d8dc06b4398c817676a2f2249
|
tasks/push_remote.yml
|
tasks/push_remote.yml
|
- name: Create user
user: name={{ pusher_username }} generate_ssh_key=yes
- name: Deploy the sync script
template: src=push_remote_public.sh dest=/usr/local/bin/push_remote_public.sh mode=0755
- name: Add remote repositories to git
ini_file: dest={{ git_repositories_dir }}/public/config option=url value={{ item.url}} section="remote \"{{ item.name }}\""
with_items: remotes
- name: Deploy hook to push to remote repositories
template: dest={{ git_repositories_dir }}/public/hooks/post-receive.d/02_push_remote.sh src=hooks/push_remote.sh mode=0755
- name: Add sudo config for pushing to remote repositories
template: dest=/etc/sudoers.d/push_remote_public src=push_remote_public.sudoers validate='visudo -cf %s'
when: ansible_admin_group is defined
|
- name: Create user {{ pusher_username }} to sync repos
user: name={{ pusher_username }} generate_ssh_key=yes
- name: Deploy the sync script
template: src=push_remote_public.sh dest=/usr/local/bin/push_remote_public.sh mode=0755
- name: Add remote repositories to git
ini_file: dest={{ git_repositories_dir }}/public/config option=url value={{ item.url}} section="remote \"{{ item.name }}\""
with_items: remotes
- name: Deploy hook to push to remote repositories
template: dest={{ git_repositories_dir }}/public/hooks/post-receive.d/02_push_remote.sh src=hooks/push_remote.sh mode=0755
- name: Add sudo config for pushing to remote repositories
template: dest=/etc/sudoers.d/push_remote_public src=push_remote_public.sudoers validate='visudo -cf %s'
when: ansible_admin_group is defined
|
Add a better message (also, remove ansible-lint warning)
|
Add a better message (also, remove ansible-lint warning)
|
YAML
|
mit
|
mscherer/ansible-role-ansible_bastion,mscherer/ansible-role-ansible_bastion,OSAS/ansible-role-ansible_bastion,OSAS/ansible-role-ansible_bastion
|
932ede82f064ea2d636bf9f1653266d1726740d3
|
install.conf.yaml
|
install.conf.yaml
|
- defaults:
link:
create: true
relink: true
- clean: ['~', '~/.config', '~/.config/git', '~/.local/bin', '~/.atom']
- link:
~/.config/base16-shell: base16-shell
~/.config/zsh: zsh
~/.config/nvim: nvim
~/.config/git/config: git/config
~/.tmux.conf: tmux/tmux.conf
~/.editorconfig: editorconfig
~/.ssh/config: ssh/config
- shell:
- [mkdir -p ~/.local/bin && ln -s -f $(pwd)/bin/* ~/.local/bin]
- [git submodule update --init --recursive, Installing submodules]
|
- defaults:
link:
create: true
relink: true
- clean: ['~', '~/.config', '~/.config/git', '~/.local/bin', '~/.atom']
- link:
~/.config/base16-shell: base16-shell
~/.config/zsh: zsh
~/.config/nvim: nvim
~/.config/git/config: git/config
~/.tmux.conf: tmux/tmux.conf
~/.editorconfig: editorconfig
~/.ssh/config: ssh/config
- shell:
- [mkdir -p ~/bin && ln -s -f $(pwd)/bin/* ~/bin]
- [git submodule update --init --recursive, Installing submodules]
|
Move bin into home folder
|
Move bin into home folder
|
YAML
|
mit
|
andrew-dias/dotfiles-base,andrew-dias/dotfiles
|
7f9de105b9ee9d76c8313002c0298ca3deb1d3e5
|
packages/as/ascii.yaml
|
packages/as/ascii.yaml
|
homepage: https://github.com/typeclasses/ascii
changelog-type: ''
hash: 4be5c0d0c2d4f65af36f6cabda146c7ec563b85410e36b9c9d098611ed31d44f
test-bench-deps: {}
maintainer: Chris Martin, Julie Moronuki
synopsis: Type-safe, bytestring-based ASCII values.
changelog: ''
basic-deps:
bytestring: ! '>=0.9 && <0.11'
case-insensitive: ! '>=0.2 && <1.3'
base: ! '>=4 && <5'
text: ! '>=0.11 && <1.3'
semigroups: -any
blaze-builder: ! '>=0.2.1.4 && <0.5'
hashable: ! '>=1.0 && <1.3'
all-versions:
- '0.0.0'
- '0.0.1'
- '0.0.1.1'
- '0.0.2'
- '0.0.2.1'
- '0.0.2.2'
- '0.0.3'
- '0.0.4'
- '0.0.4.1'
- '0.0.5.1'
author: Michael Snoyman
latest: '0.0.5.1'
description-type: haddock
description: Type-safe, bytestring-based ASCII values.
license-name: BSD3
|
homepage: https://github.com/typeclasses/ascii
changelog-type: ''
hash: ef54b90e2c154faca039087cad2930aaf0e67939e15d2384d3841d42e17e17ed
test-bench-deps: {}
maintainer: Chris Martin, Julie Moronuki
synopsis: Type-safe, bytestring-based ASCII values.
changelog: ''
basic-deps:
bytestring: ! '>=0.9 && <0.11'
case-insensitive: ! '>=0.2 && <1.3'
base: ! '>=4.8 && <5'
text: ! '>=0.11 && <1.3'
semigroups: -any
blaze-builder: ! '>=0.2.1.4 && <0.5'
hashable: ! '>=1.0 && <1.3'
all-versions:
- '0.0.0'
- '0.0.1'
- '0.0.1.1'
- '0.0.2'
- '0.0.2.1'
- '0.0.2.2'
- '0.0.3'
- '0.0.4'
- '0.0.4.1'
- '0.0.5.1'
author: Michael Snoyman
latest: '0.0.5.1'
description-type: haddock
description: Type-safe, bytestring-based ASCII values.
license-name: BSD3
|
Update from Hackage at 2018-10-22T03:08:00Z
|
Update from Hackage at 2018-10-22T03:08:00Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
bdc08f3f22f161fc3c27174c59070d7e59ee81d5
|
packages/pa/paint.yaml
|
packages/pa/paint.yaml
|
homepage: https://github.com/lovasko/paint
changelog-type: ''
hash: 5e77d7a49015f6998f3f52d798d2cbc530776acb96b5404f88bc3d244daeb4e2
test-bench-deps: {}
maintainer: Daniel Lovasko <[email protected]>
synopsis: Colorization of text for command-line output
changelog: ''
basic-deps:
base: ! '>=4.7 && <5'
text: -any
all-versions:
- 1.0.0
author: Daniel Lovasko <[email protected]>
latest: 1.0.0
description-type: haddock
description: ! 'Paint is a small module that implements the essential
subset of the ANSI terminal codes that provide various
text styling features, such as underlining, blinking or
different foreground and background coloring.'
license-name: LicenseRef-OtherLicense
|
homepage: https://github.com/lovasko/paint
changelog-type: ''
hash: b892916be73af98bd62372df7cee15a917bcea7345e00dfed3b02086cdd2c956
test-bench-deps: {}
maintainer: Daniel Lovasko <[email protected]>
synopsis: Colorization of text for command-line output
changelog: ''
basic-deps:
paint: -any
base: ! '>=4.7 && <5'
all-versions:
- 1.0.0
- 2.0.0
author: Daniel Lovasko <[email protected]>
latest: 2.0.0
description-type: haddock
description: |-
Paint is a small module that implements the essential
subset of the ANSI terminal codes that provide various
text styling features, such as underlining, blinking or
different foreground and background coloring.
license-name: LicenseRef-OtherLicense
|
Update from Hackage at 2020-02-22T19:08:39Z
|
Update from Hackage at 2020-02-22T19:08:39Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
67d93c0ee90dffe55fc38c9616af0a5d170ec011
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2.1
jobs:
"test":
parameters:
version:
type: string
default: "latest"
docker:
- image: "circleci/golang:<< parameters.version >>"
working_directory: /go/src/github.com/tyler-sommer/stick
environment:
GO111MODULE: "on"
steps:
- checkout
- run:
name: "Print Go version"
command: go version
- run:
name: "Install dependencies"
command: go get -v ./...
- when:
condition:
equal: [ latest, << parameters.version >> ]
steps:
- run:
name: "Run go vet"
command: go vet -v ./...
- run:
name: "Run goimports"
command: |
go install golang.org/x/tools/cmd/goimports@latest
diff -u <(echo -n) <(goimports -d -e .)
- run:
name: "Run go test"
command: go test -v -race ./...
workflows:
tests:
jobs:
- test:
matrix:
parameters:
version: ["latest", "1.17", "1.16", "1.15", "1.14", "1.13", "1.12", "1.11", "1.10", "1.9", "1.8", "1.7"]
|
version: 2.1
jobs:
"test":
parameters:
version:
type: string
default: "latest"
docker:
- image: "circleci/golang:<< parameters.version >>"
working_directory: /go/src/github.com/tyler-sommer/stick
environment:
GO111MODULE: "on"
steps:
- checkout
- run:
name: "Print Go version"
command: go version
- run:
name: "Install dependencies"
command: go get -v ./...
- when:
condition:
equal: [ latest, << parameters.version >> ]
steps:
- run:
name: "Run go vet"
command: go vet -v ./...
- run:
name: "Run goimports"
command: |
go install golang.org/x/tools/cmd/goimports@latest
diff -u <(echo -n) <(goimports -d -e .)
- run:
name: "Run go test"
command: go test -v -race ./...
workflows:
tests:
jobs:
- test:
matrix:
parameters:
version: ["latest", "1.18", "1.17", "1.16", "1.15", "1.14", "1.13", "1.12", "1.11", "1.10", "1.9", "1.8", "1.7"]
|
Add go1.18 to CircleCI matrix
|
Add go1.18 to CircleCI matrix
|
YAML
|
mit
|
tyler-sommer/stick
|
4c88ed661bac1ce6d34cb2ad75417b1b35349d0c
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:9249d0ba00986d50bcab7380edcf8e20a0c76a6cb2e936588061f1c4f27cb350
- image: circleci/mongo:3@sha256:aa59341f95052da53f148906263f86eeea56b465dcfbb145d4e81e4d455a3176
steps:
- checkout
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn codecov
|
version: 2
jobs:
build:
docker:
- image: circleci/node:8@sha256:9249d0ba00986d50bcab7380edcf8e20a0c76a6cb2e936588061f1c4f27cb350
- image: circleci/mongo:3@sha256:0db9cdd9763c7d6cbdd13563c7055ffb69b3d5f054d531083ed5d0296b41f397
steps:
- checkout
- run: yarn install --frozen-lockfile
- run: yarn test
- run: yarn codecov
|
Update circleci/mongo:3 Docker digest to 0db9cd
|
Update circleci/mongo:3 Docker digest to 0db9cd
|
YAML
|
mit
|
js-accounts/accounts
|
382ebbc7260f70348b034036c7c2494aa8ebf50e
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
workflows:
version: 2
workflow:
jobs:
- test-2.7
- test-3.4
- test-3.5
- test-3.6
- test-3.7
- test-3.8
- test-3.9
- lint-rst
defaults: &defaults
working_directory: ~/code
environment:
STRICT_WARNINGS: "1"
steps:
- checkout
- run:
name: Test
command: python setup.py test
jobs:
test-2.7:
<<: *defaults
docker:
- image: circleci/python:2.7
test-3.4:
<<: *defaults
docker:
- image: circleci/python:3.4
test-3.5:
<<: *defaults
docker:
- image: circleci/python:3.5
test-3.6:
<<: *defaults
docker:
- image: circleci/python:3.6
test-3.7:
<<: *defaults
docker:
- image: circleci/python:3.7
test-3.8:
<<: *defaults
docker:
- image: circleci/python:3.8
test-3.9:
<<: *defaults
docker:
- image: circleci/python:3.9
lint-rst:
working_directory: ~/code
steps:
- checkout
- run:
name: Install lint tools
command: |
python3 -m venv venv
. venv/bin/activate
pip install Pygments restructuredtext-lint
- run:
name: Lint
command: |
. venv/bin/activate
rst-lint --encoding=utf-8 README.rst
docker:
- image: circleci/python:3.9
|
version: 2.1
workflows:
workflow:
jobs:
- test:
matrix:
parameters:
python_version: ["2.7", "3.4", "3.5", "3.6", "3.7", "3.8", "3.9"]
- lint-rst
jobs:
test:
parameters:
python_version:
type: string
steps:
- checkout
- run:
name: Test
command: python setup.py test
docker:
- image: circleci/python:<<parameters.python_version>>
lint-rst:
working_directory: ~/code
steps:
- checkout
- run:
name: Install lint tools
command: |
python3 -m venv venv
. venv/bin/activate
pip install Pygments restructuredtext-lint
- run:
name: Lint
command: |
. venv/bin/activate
rst-lint --encoding=utf-8 README.rst
docker:
- image: circleci/python:3.9
|
Use version 2.1 of CircleCI
|
Use version 2.1 of CircleCI
- Can no longer specify a version in workflows.
- Can no longer have numbers in job names
- Use a matrix instead of duplicating the job for each Python version
|
YAML
|
mit
|
elasticsales/ciso8601,closeio/ciso8601,closeio/ciso8601,closeio/ciso8601,elasticsales/ciso8601
|
677d17f9a6fd10e2b1ad8fa5dc27ddbf11df350f
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
macos:
xcode: '10.0.0'
environment:
LANG: en_US.UTF-8
LC_ALL: en_US.UTF-8
FASTLANE_DISABLE_ANIMATION: 1
SKIP_SLOW_FASTLANE_WARNING: 1
GEM_HOME: .gem
GEM_PATH: .gem
steps:
- checkout
- run: xcodebuild -version -sdk
- run: xcrun simctl list
- run: gem install fastlane --no-rdoc --no-ri --no-document
- run: echo 'export PATH=$GEM_PATH:$PATH' >> $BASH_ENV
- run: make test_macOS
- run: make test_tvOS
- run: make test_iOS
- run: make test_iOS_10
- run: make test_macOS_report
- run: make test_tvOS_report
- run: make test_iOS_report
- store_test_results:
path: test_reports
- store_artifacts:
path: /Users/distiller/Library/Developer/Xcode/DerivedData/XCDYouTubeKit-*/Logs/Test
|
version: 2
jobs:
build:
macos:
xcode: '10.0.0'
environment:
LANG: en_US.UTF-8
LC_ALL: en_US.UTF-8
FASTLANE_DISABLE_ANIMATION: 1
SKIP_SLOW_FASTLANE_WARNING: 1
GEM_HOME: .gem
GEM_PATH: .gem
steps:
- checkout
- run: xcodebuild -version -sdk
- run: xcrun simctl list
- run: gem install fastlane --no-rdoc --no-ri --no-document
- run: echo 'export PATH=$GEM_PATH:$PATH' >> $BASH_ENV
- run: make test_macOS
- run: make test_tvOS
- run: make test_iOS
- run: make test_iOS_10
- run: make test_macOS_report
- run: make test_tvOS_report
- run: make test_iOS_report
- store_test_results:
path: test_reports
- store_artifacts:
path: /Users/distiller/Library/Developer/Xcode/DerivedData/XCDYouTubeKit-byvnmvumvdztmngymdsxlhlsgpgd/Logs/Test
destination: xcresults
|
Remove wildcard in store_artifacts path
|
Remove wildcard in store_artifacts path
|
YAML
|
mit
|
0xced/XCDYouTubeKit,creationst/XCDYouTubeKit,twobitlabs/XCDYouTubeKit,twobitlabs/XCDYouTubeKit,mingsai/XCDYouTubeVideoPlayerViewController,twobitlabs/XCDYouTubeKit,0xced/XCDYouTubeKit,mingsai/XCDYouTubeVideoPlayerViewController,creationst/XCDYouTubeKit,creationst/XCDYouTubeKit,mingsai/XCDYouTubeVideoPlayerViewController,twobitlabs/XCDYouTubeKit,0xced/XCDYouTubeKit,0xced/XCDYouTubeKit,mingsai/XCDYouTubeVideoPlayerViewController,creationst/XCDYouTubeKit
|
31721ab8f28ea587a454971aeaad0d600673ccb7
|
.circleci/config.yml
|
.circleci/config.yml
|
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0@sha256:bcd0202b4e1fa74fdcea21ad018b1ae14672e3b79db500c669e5105dee109d69
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
python setup.py dev_persistent_pip_sync
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
|
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
docker:
- image: circleci/python:3.7.0@sha256:6de1b4677b7f37f413b64a043cbb5df435eb4356d4b4f86c34aa8f0b6e31cd76
working_directory: ~/repo
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run:
name: install dependencies
command: |
python3 -m venv venv
. venv/bin/activate
python setup.py dev_persistent_pip_sync
- save_cache:
paths:
- ./venv
key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }}
- run:
name: run tests
command: |
. venv/bin/activate
flake8 bamboo_crawler tests
export AWS_ACCESS_KEY_ID=''
export AWS_SECRET_ACCESS_KEY=''
python setup.py test
- store_artifacts:
path: test-reports
destination: test-reports
|
Update circleci/python:3.7.0 Docker digest to 6de1b46
|
Update circleci/python:3.7.0 Docker digest to 6de1b46
|
YAML
|
bsd-3-clause
|
kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler
|
82b1e7b4e2244ccc9d7199e66c0c7441eb74c102
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
docker:
# https://circleci.com/docs/2.0/circleci-images/#nodejs
- image: circleci/node:latest
working_directory: ~/ofreport.com
environment:
NUXT_BUILD_DIR: ~/ofreport.com/dist
PER_PAGE: "10"
APP_ENV: "prod"
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: yarn md2json
- run: yarn generate
deploy:
docker:
# https://circleci.com/docs/2.0/circleci-images/#nodejs
- image: circleci/node:latest
working_directory: ~/ofreport.com
steps:
- run:
name: Install Gulp
command: sudo npm install -g gulp
- run:
name: Deploy to S3
command: gulp deploy
workflows:
version: 2
build-deploy:
jobs:
- build
- deploy:
requires:
- build
filters:
branches:
only: master
|
version: 2
jobs:
build:
docker:
# https://circleci.com/docs/2.0/circleci-images/#nodejs
- image: circleci/node:latest
working_directory: ~/ofreport.com
environment:
NUXT_BUILD_DIR: ~/ofreport.com/dist
PER_PAGE: "10"
APP_ENV: "prod"
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: yarn install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run: yarn md2json
- run: yarn generate
deploy:
docker:
# https://circleci.com/docs/2.0/circleci-images/#nodejs
- image: circleci/node:latest
working_directory: ~/ofreport.com
steps:
- run:
name: Install Gulp
command: sudo npm install -g gulp
- run:
name: Deploy to S3
command: gulp deploy
workflows:
version: 2
build-deploy:
jobs:
- build
- deploy:
requires:
- build
# filters:
# branches:
# only: master
|
Comment out master filter for now.
|
Comment out master filter for now.
|
YAML
|
mit
|
joshukraine/ofreport.com,joshukraine/ofreport.com
|
5bf58054d2cac52aec2279d46f22aebc6da231b8
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
docker:
- image: sicz/dockerspec
environment:
- MAKEFLAGS=--no-print-directory
- RSPEC_FORMAT=doc
steps:
- checkout
- run:
name: Checkout make files
command: |
cd ..
curl -sSL https://github.com/SICZ/Mk/archive/master.tar.gz | tar -xzf -
mv Mk-master Mk
- setup_remote_docker:
version: 17.06.0-ce
- run:
name: sicz/dockerspec:latest
command: |
make ci
- deploy:
name: Push images to the Docker Hub
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u ${DOCKER_HUB_USER} -p ${DOCKER_HUB_PASSWD}
make docker-push
fi
|
version: 2
jobs:
build:
docker:
- image: sicz/dockerspec
environment:
- MAKEFLAGS=--no-print-directory
- RSPEC_FORMAT=doc
steps:
- checkout
- run:
name: Checkout make files
command: |
cd ..
curl -sSL https://github.com/SICZ/Mk/archive/master.tar.gz | tar -xzf -
mv Mk-master Mk
- setup_remote_docker:
version: 17.06.0-ce
- run:
name: Pull Docker images
command: |
make docker-pull
- run:
name: sicz/dockerspec:latest
command: |
make ci
- deploy:
name: Push images to the Docker Hub
command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then
docker login -u ${DOCKER_HUB_USER} -p ${DOCKER_HUB_PASSWD}
make docker-push
fi
|
Add support for Docker build cache
|
Add support for Docker build cache
|
YAML
|
apache-2.0
|
sicz/docker-dockerspec
|
050e752da9ab14190dcb9b19bb71ffee297543f2
|
Resources/config/grids/exchange_rate.yml
|
Resources/config/grids/exchange_rate.yml
|
sylius_grid:
grids:
sylius_admin_exchange_rate:
driver:
name: doctrine/orm
options:
class: "%sylius.model.exchange_rate.class%"
sorting:
id: desc
fields:
id:
type: string
enabled: false
sortable: ~
sourceCurrency:
type: twig
label: sylius.ui.base_currency
path: .
options:
template: "@SyliusAdmin/ExchangeRate/Grid/Field/sourceCurrencyName.html.twig"
targetCurrency:
type: twig
label: sylius.ui.target_currency
path: .
options:
template: "@SyliusAdmin/ExchangeRate/Grid/Field/targetCurrencyName.html.twig"
ratio:
type: string
label: sylius.ui.ratio
sortable: ~
filters:
currency:
type: entity
label: sylius.ui.currency
options:
fields: [sourceCurrency, targetCurrency]
form_options:
class: "%sylius.model.currency.class%"
choice_label: name
actions:
main:
create:
type: create
item:
update:
type: update
delete:
type: delete
|
sylius_grid:
grids:
sylius_admin_exchange_rate:
driver:
name: doctrine/orm
options:
class: "%sylius.model.exchange_rate.class%"
sorting:
id: desc
fields:
id:
type: string
enabled: false
sortable: ~
sourceCurrency:
type: twig
label: sylius.ui.source_currency
path: .
options:
template: "@SyliusAdmin/ExchangeRate/Grid/Field/sourceCurrencyName.html.twig"
targetCurrency:
type: twig
label: sylius.ui.target_currency
path: .
options:
template: "@SyliusAdmin/ExchangeRate/Grid/Field/targetCurrencyName.html.twig"
ratio:
type: string
label: sylius.ui.ratio
sortable: ~
filters:
currency:
type: entity
label: sylius.ui.currency
options:
fields: [sourceCurrency, targetCurrency]
form_options:
class: "%sylius.model.currency.class%"
choice_label: name
actions:
main:
create:
type: create
item:
update:
type: update
delete:
type: delete
|
Fix wrong source currency translation
|
Fix wrong source currency translation
|
YAML
|
mit
|
Sylius/SyliusAdminBundle,Sylius/SyliusAdminBundle
|
39f39b628bbe3b4eea82a6823fe5138216742109
|
conda.recipe/meta.yaml
|
conda.recipe/meta.yaml
|
package:
name: physicalproperty
# version: x.y.z
# The version string is stored in `physicalproperty/version.py`.
# `build.sh` includes code to properly incorporate the version
# string in the built package.
source:
path: ..
requirements:
build:
- python
- numpy
- astropy
run:
- python
- numpy
- astropy
test:
files:
- ../test/test_PhysicalProperty.py
- ../test/test_find_PhysicalProperty.py
requires:
- nose
about:
home: https://github.com/jrsmith3/physicalproperty
license: MIT
summary: Descriptor class for physical property attributes
|
package:
name: physicalproperty
# version: x.y.z
# The version string is stored in `physicalproperty/version.py`.
# `build.sh` includes code to properly incorporate the version
# string in the built package.
about:
home: https://github.com/jrsmith3/physicalproperty
license: MIT
summary: Descriptor class for physical property attributes
source:
path: ..
requirements:
build:
- python
- numpy
- astropy
run:
- python
- numpy
- astropy
test:
files:
- ../test/test_PhysicalProperty.py
- ../test/test_find_PhysicalProperty.py
requires:
- nose
|
Move "about" section earlier in file, cosmetic
|
Move "about" section earlier in file, cosmetic
|
YAML
|
mit
|
jrsmith3/physicalproperty,jrsmith3/physicalproperty
|
cb1fca8b9777651b4d02c4c4310a773e708160bd
|
Resources/config/app/darvin_admin.yaml
|
Resources/config/app/darvin_admin.yaml
|
darvin_admin:
menu:
groups:
-
name: menu
position: 20
colors:
main: '#cb9023'
sidebar: '#a4ce23'
icons:
main: bundles/darvinmenu/images/admin/menus_main.png
sidebar: bundles/darvinmenu/images/admin/menus_sidebar.png
sections:
Darvin\MenuBundle\Entity\Menu\Item:
config: '@DarvinMenuBundle/Resources/config/admin/menu/item.yaml'
|
darvin_admin:
menu:
groups:
menu:
position: 20
colors:
main: '#cb9023'
sidebar: '#a4ce23'
icons:
main: bundles/darvinmenu/images/admin/menus_main.png
sidebar: bundles/darvinmenu/images/admin/menus_sidebar.png
sections:
Darvin\MenuBundle\Entity\Menu\Item:
config: '@DarvinMenuBundle/Resources/config/admin/menu/item.yaml'
|
Use admin menu groups config keys as group names.
|
Use admin menu groups config keys as group names.
|
YAML
|
mit
|
DarvinStudio/DarvinMenuBundle,DarvinStudio/DarvinMenuBundle
|
e46773c5b56d7f445b5928d548789d3d23ccfb0e
|
.buildkite/pipeline.yml
|
.buildkite/pipeline.yml
|
steps:
- label: run bats tests
plugins:
docker-compose#v3.0.1:
run: tests
- label: ":bash: Shellcheck"
plugins:
shellcheck#v1.1.2:
files:
- hooks/*
- label: ":sparkles: Linter"
plugins:
plugin-linter#v2.0.0:
id: golang
- label: test running a specific version
command: go version
plugins:
${BUILDKITE_REPO}#${BUILDKITE_COMMIT}:
version: 1.10.2
- label: test cross compiling
command: go build ./tests/helloworld
plugins:
${BUILDKITE_REPO}#${BUILDKITE_COMMIT}:
version: 1.10.2
environment:
- GOOS=android
- GOARCH=arm
- GOARM=7
|
steps:
- label: run bats tests
plugins:
docker-compose#v3.0.2:
run: tests
- label: ":bash: Shellcheck"
plugins:
shellcheck#v1.1.2:
files:
- hooks/*
- label: ":sparkles: Linter"
plugins:
plugin-linter#v2.0.0:
id: golang
- label: test running a specific version
command: go version
plugins:
${BUILDKITE_REPO}#${BUILDKITE_COMMIT}:
version: 1.10.2
- label: test cross compiling
command: go build ./tests/helloworld
plugins:
${BUILDKITE_REPO}#${BUILDKITE_COMMIT}:
version: 1.10.2
environment:
- GOOS=android
- GOARCH=arm
- GOARM=7
|
Update buildkite plugin docker-compose to v3.0.2
|
Update buildkite plugin docker-compose to v3.0.2
|
YAML
|
mit
|
buildkite-plugins/golang-buildkite-plugin,buildkite-plugins/golang-buildkite-plugin
|
0723826cb06a82da7a8149d9bb3eea396299f3b5
|
playbooks/roles/authn/tasks/main.yml
|
playbooks/roles/authn/tasks/main.yml
|
- name: Build Authn MFE
include_role:
name: mfe
vars:
MFE_NAME: authn
MFE_VERSION: '{{ AUTHN_MFE_VERSION }}'
|
- name: Build Authn MFE
include_role:
name: mfe
vars:
MFE_NAME: authn
MFE_VERSION: '{{ AUTHN_MFE_VERSION }}'
MFE_SITE_NAME: 'Your Platform Name Here'
|
Set site name for authn MFE.
|
Set site name for authn MFE.
|
YAML
|
agpl-3.0
|
edx/configuration,mitodl/configuration,edx/configuration,arbrandes/edx-configuration,mitodl/configuration,arbrandes/edx-configuration,mitodl/configuration,edx/configuration,edx/configuration,arbrandes/edx-configuration,arbrandes/edx-configuration,arbrandes/edx-configuration,mitodl/configuration
|
0a19d79172c7ae609fdef051accd0144a5c7502d
|
app/config/config_dev.yml
|
app/config/config_dev.yml
|
imports:
- { resource: config.yml }
framework:
router:
resource: "%kernel.root_dir%/config/routing_dev.yml"
strict_requirements: true
profiler: { only_exceptions: false }
web_profiler:
toolbar: %kernel.debug%
intercept_redirects: false
monolog:
handlers:
main:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: info
console:
type: console
bubble: false
# uncomment to get logging in your browser
# you may have to allow bigger header sizes in your Web server configuration
#firephp:
# type: firephp
# level: info
#chromephp:
# type: chromephp
# level: info
assetic:
use_controller: true
#swiftmailer:
# delivery_address: [email protected]
|
imports:
- { resource: config.yml }
framework:
router:
resource: "%kernel.root_dir%/config/routing_dev.yml"
strict_requirements: true
profiler: { only_exceptions: false }
web_profiler:
toolbar: %kernel.debug%
intercept_redirects: false
monolog:
handlers:
main:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: info
console:
type: console
bubble: false
# uncomment to get logging in your browser
# you may have to allow bigger header sizes in your Web server configuration
#firephp:
# type: firephp
# level: info
#chromephp:
# type: chromephp
# level: info
assetic:
use_controller: true
#swiftmailer:
# delivery_address: [email protected]
old_sound_rabbit_mq:
connections:
default:
host: 'localhost'
port: 5672
user: 'guest'
password: 'guest'
vhost: '/'
lazy: false
connection_timeout: 3
read_write_timeout: 3
# requires php-amqplib v2.4.1+ and PHP5.4+
keepalive: false
# requires php-amqplib v2.4.1+
heartbeat: 0
producers:
generate_pdf:
connection: default
exchange_options: {name: 'generate-pdf_dev', type: direct}
consumers:
generate_pdf:
connection: default
exchange_options: {name: 'generate-pdf_dev', type: direct}
queue_options: {name: 'generate-pdf_dev'}
callback: rabbitmq_pdf_generator_consumer
|
Add a dev config environment for RabbitMQ
|
Add a dev config environment for RabbitMQ
|
YAML
|
mit
|
alfonsomga/symfony.demo.on.roids,alfonsomga/symfony-demo-on-roids,alfonsomga/symfony.demo.on.roids,alfonsomga/symfony.demo.on.roids,alfonsomga/symfony-demo-on-roids,alfonsomga/symfony-demo-on-roids,alfonsomga/symfony-demo-on-roids,alfonsomga/symfony.demo.on.roids,alfonsomga/symfony.demo.on.roids,alfonsomga/symfony-demo-on-roids
|
498b39fd6fe5f127017beae254cc5a5bb72d1ad3
|
packages/bt/btree.yaml
|
packages/bt/btree.yaml
|
homepage: https://github.com/andrewthad/btree
changelog-type: ''
hash: 7cc86dcb8d7e2993867d50d67c8cba28df802405dcfc6e8b72deb971073c0b05
test-bench-deps:
btree: -any
tasty-smallcheck: -any
MonadRandom: -any
base: -any
clock: -any
smallcheck: -any
containers: -any
ghc-prim: -any
hashable: -any
tasty-hunit: -any
transformers: -any
tasty: -any
primitive: -any
maintainer: [email protected]
synopsis: B-Tree on Unmanaged Heap
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
ghc-prim: ! '>=0.5 && <0.6'
primitive: ! '>=0.6.4 && <0.7'
all-versions:
- '0.1.0.0'
- '0.2'
- '0.3'
- '0.3.1'
author: Andrew Martin
latest: '0.3.1'
description-type: markdown
description: ! '# b-plus-tree
'
license-name: BSD3
|
homepage: https://github.com/andrewthad/btree
changelog-type: ''
hash: 0e9bb8de7350f16246e319af076c542c69ed1d696598e3a6413a401b5394f199
test-bench-deps:
btree: -any
tasty-smallcheck: -any
MonadRandom: -any
base: -any
clock: -any
smallcheck: -any
containers: -any
ghc-prim: -any
hashable: -any
tasty-hunit: -any
transformers: -any
tasty: -any
primitive: -any
maintainer: [email protected]
synopsis: B-Tree on Unmanaged Heap
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
initialize: ! '>=0.1.1.0 && <0.2.0.0'
ghc-prim: ! '>=0.5 && <0.6'
primitive: ! '>=0.6.4 && <0.7'
all-versions:
- '0.1.0.0'
- '0.2'
- '0.3'
- '0.3.1'
- '0.4.0'
author: Andrew Martin
latest: '0.4.0'
description-type: markdown
description: ! '# b-plus-tree
'
license-name: BSD3
|
Update from Hackage at 2018-11-09T20:14:54Z
|
Update from Hackage at 2018-11-09T20:14:54Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
b6ca6651ce4974d493b2db384f24a709ff13ead0
|
packages/jo/joint.yaml
|
packages/jo/joint.yaml
|
homepage: https://github.com/iokasimov/joint
changelog-type: ''
hash: 12a0c93d32d80f98bbed18afe23c1ea352f1301a526570362d7647a489bf07c4
test-bench-deps: {}
maintainer: Murat Kasimov <[email protected]>
synopsis: Trying to compose non-composable
changelog: ''
basic-deps:
base: ==4.*
comonad: -any
adjunctions: -any
distributive: -any
transformers: -any
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
- 0.1.3
- 0.1.4
- 0.1.5
- 0.1.6
- 0.1.7
- 0.1.8
author: Murat Kasimov
latest: 0.1.8
description-type: haddock
description: ''
license-name: BSD-3-Clause
|
homepage: https://github.com/iokasimov/joint
changelog-type: ''
hash: a20e9160e629d289f71923eb8e01090699525d0f95237d99e489b1dfa867f7dc
test-bench-deps: {}
maintainer: Murat Kasimov <[email protected]>
synopsis: Trying to compose non-composable
changelog: ''
basic-deps:
base: ==4.*
comonad: -any
adjunctions: -any
distributive: -any
transformers: -any
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
- 0.1.3
- 0.1.4
- 0.1.5
- 0.1.6
- 0.1.7
- 0.1.8
- 0.1.9
author: Murat Kasimov
latest: 0.1.9
description-type: haddock
description: ''
license-name: BSD-3-Clause
|
Update from Hackage at 2021-01-01T15:00:01Z
|
Update from Hackage at 2021-01-01T15:00:01Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
92a7875218876144a0a2b9e2c27cfb86ff0781a9
|
packages/co/complex-generic.yaml
|
packages/co/complex-generic.yaml
|
homepage: https://code.mathr.co.uk/complex-generic
changelog-type: ''
hash: 47f845edbb74b424702fd477be5b0b466230d40e2c2c400b7d5a816a04aec249
test-bench-deps: {}
maintainer: [email protected]
synopsis: complex numbers with non-mandatory RealFloat
changelog: ''
basic-deps:
base: <4.11
template-haskell: <2.13
all-versions:
- '0.1.1'
- '0.1.1.1'
author: Claude Heiland-Allen
latest: '0.1.1.1'
description-type: haddock
description: ! 'The base package''s ''Data.Complex'' has a ''RealFloat'' requirement
for
almost all operations, which rules out uses such as ''Complex Rational''
or ''Complex Integer''. This package provides an alternative, putting
most operations into additional type classes. Generating instances
with template haskell helps reduce excessive boilerplate and avoids
instance overlap.'
license-name: BSD3
|
homepage: https://code.mathr.co.uk/complex-generic
changelog-type: ''
hash: 7ca697a27b035465fa89d54a3e058db3cfe7ec75186b2149dd459e5b08e01498
test-bench-deps: {}
maintainer: [email protected]
synopsis: complex numbers with non-mandatory RealFloat
changelog: ''
basic-deps:
base: <4.12
template-haskell: <2.14
all-versions:
- '0.1.1'
- '0.1.1.1'
author: Claude Heiland-Allen
latest: '0.1.1.1'
description-type: haddock
description: ! 'The base package''s ''Data.Complex'' has a ''RealFloat'' requirement
for
almost all operations, which rules out uses such as ''Complex Rational''
or ''Complex Integer''. This package provides an alternative, putting
most operations into additional type classes. Generating instances
with template haskell helps reduce excessive boilerplate and avoids
instance overlap.'
license-name: BSD3
|
Update from Hackage at 2018-03-13T20:10:18Z
|
Update from Hackage at 2018-03-13T20:10:18Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
730d6d8d2817ee924e487919afe8a5ea7dea8731
|
packages/or/orderly-workers.yaml
|
packages/or/orderly-workers.yaml
|
homepage: ''
changelog-type: markdown
hash: 91f351269768b89d3eeec319d51a720e1cc9367929df9a6bc0f5655ad19f40f0
test-bench-deps: {}
maintainer: TomMurphy
synopsis: Fork concurrent worker threads and produce ordered results
changelog: |
# Revision history for orderly-workers
## 0.1.0.0 -- 2019-09-07
* First version.
basic-deps:
stm: -any
base: <5
all-versions:
- 0.1.0.0
- 0.1.0.1
author: ''
latest: 0.1.0.1
description-type: haddock
description: ''
license-name: BSD-3-Clause
|
homepage: ''
changelog-type: markdown
hash: fba5313912d644d422d2c1a18dc970b3348d5f49db4830bcfbd04bdd237ed1e6
test-bench-deps: {}
maintainer: TomMurphy
synopsis: Fork concurrent worker threads and produce ordered results
changelog: |
# Revision history for orderly-workers
## 0.1.0.0 -- 2019-09-07
* First version.
basic-deps:
stm: -any
base: <5
all-versions:
- 0.1.0.0
- 0.1.0.1
- 0.1.0.2
author: ''
latest: 0.1.0.2
description-type: haddock
description: ''
license-name: BSD-3-Clause
|
Update from Hackage at 2019-09-09T23:28:54Z
|
Update from Hackage at 2019-09-09T23:28:54Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
02cd795531ebf935b6ac8ad9b3254baf4aada37d
|
.github/workflows/ci.yml
|
.github/workflows/ci.yml
|
name: Node.js CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
AUTH0_DOMAIN: fake-domain.auth0.com
SENDGRID_API_KEY: SG.TEST_KEY
SESSION_SECRET: test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '10.X'
- name: Cache NPM
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run heroku-postbuild
- name: Install MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: '3.6'
- name: Test
run: npm run test
- name: E2E Test
uses: cypress-io/github-action@v2
env:
MONGODB_URI: 'mongodb://localhost/buddyduel-e2e'
PORT: 3000
with:
start: npm start
|
name: Node.js CI
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
env:
AUTH0_DOMAIN: fake-domain.auth0.com
SENDGRID_API_KEY: SG.TEST_KEY
SESSION_SECRET: test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '10.X'
- name: Cache NPM
uses: actions/cache@v1
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install
run: npm ci
- name: Lint
run: npm run lint
- name: Build
run: npm run heroku-postbuild
- name: Install MongoDB
uses: supercharge/[email protected]
with:
mongodb-version: '4.2'
- name: Test
run: npm run test
- name: E2E Test
uses: cypress-io/github-action@v2
env:
MONGODB_URI: 'mongodb://localhost/buddyduel-e2e'
PORT: 3000
with:
start: npm start
|
Use MongoDB 4.2 in GitHub CI tests
|
Use MongoDB 4.2 in GitHub CI tests
|
YAML
|
mit
|
lentz/buddyduel,lentz/buddyduel,lentz/buddyduel
|
9e5b4e01e11a39661c400b989f0780f69156ca76
|
config/locales/en.yml
|
config/locales/en.yml
|
# Sample localization file for English. Add more files in this directory for other locales.
# See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en:
add_to_cart: Add to Basket
cart: Basket
checkout: Checkout
continue_shopping: Continue shopping
cost: Cost
forgot_your_password: Forgotten your password?
login: Sign In
logout: Sign Out
my_account: My Account
password: Password
price: Price
quantity: Qty
register: Join
view_cart: View Basket
controllers:
enquiries: Enquiries
images: Images
pages: Pages
products: Products
users: Users
users:
show:
registered_email_address: registered email address
|
# Sample localization file for English. Add more files in this directory for other locales.
# See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
en:
add_to_cart: Add to Basket
cart: Basket
checkout: Checkout
continue_shopping: Continue shopping
cost: Cost
forgot_your_password: Forgotten your password?
login: Sign In
logout: Sign Out
my_account: My Account
password: Password
price: Price
quantity: Qty
register: Sign Up
view_cart: View Basket
controllers:
enquiries: Enquiries
images: Images
pages: Pages
products: Products
users: Users
users:
show:
registered_email_address: registered email address
|
Change 'Join' to 'Sign Up'
|
Change 'Join' to 'Sign Up'
|
YAML
|
mit
|
ianfleeton/zmey,ianfleeton/zmey,ianfleeton/zmey,ianfleeton/zmey
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.