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 |
|---|---|---|---|---|---|---|---|---|---|
86add8b572f206a120f759fd99412741b83a9c7e | config/selenium.yml | config/selenium.yml | environments:
- test
browsers:
<% if RUBY_PLATFORM[/darwin/] %>
# Mac OS X
firefox: '/Applications/Firefox.app/Contents/MacOS/firefox-bin'
safari: '/Applications/Safari.app/Contents/MacOS/Safari'
<% elsif RUBY_PLATFORM[/freebsd/] %>
# FreeBSD
firefox: '/usr/local/lib/firefox/firefox-bin'
<% else %>
# Windows
firefox: 'c:\Program Files\Mozilla Firefox\firefox.exe'
ie: 'c:\Program Files\Internet Explorer\iexplore.exe'
<% end %>
| environments:
- test
browsers:
<% if RUBY_PLATFORM[/darwin/] %>
# Mac OS X
firefox: '/Applications/Firefox.app/Contents/MacOS/firefox-bin'
safari: '/Applications/Safari.app/Contents/MacOS/Safari'
<% elsif RUBY_PLATFORM[/freebsd/] %>
# FreeBSD
firefox: '/usr/local/lib/firefox/firefox-bin'
<% else %>
# Windows
firefox: 'c:\Program Files\Mozilla Firefox\firefox.exe'
ie: 'c:\Program Files\Internet Explorer\iexplore.exe'
<% end %>
max_browser_duration: 300
| Add longer browser timeout for Selenium | Add longer browser timeout for Selenium
git-svn-id: 96bd6241e080dd4199045f7177cf3384e2eaed71@1473 2d86388d-c40f-0410-ad6a-a69da6a65d20
| YAML | mit | theRocket/wsbaracing,theRocket/wsbaracing |
67a4cc28b5ab6354f89ffdd459585d1e00bc55c3 | roles/lvm/tasks/main.yml | roles/lvm/tasks/main.yml | ---
- include: volume.yml
when: lvm_physical_device != ""
- name: save volume group name (null) as fact
set_fact: volume_group_name=""
when: lvm_physical_device == ""
tags:
- lvm
| ---
- include: volume.yml
when: lvm_physical_device != ""
- name: save volume group name as fact
set_fact: volume_group_name="{{ lvm_volume_group_name }}"
tags:
- lvm
| Save VG name as fact | Save VG name as fact
| YAML | apache-2.0 | phnmnl/mantl,mantl/mantl,CiscoCloud/microservices-infrastructure,CiscoCloud/mantl,CiscoCloud/mantl,phnmnl/mantl,datascienceinc/mantl,bitium/mantl,sehqlr/mantl,datascienceinc/mantl,KaGeN101/mantl,sehqlr/mantl,CiscoCloud/microservices-infrastructure,KaGeN101/mantl,bitium/mantl,mantl/mantl |
aded9d6412881237ddf435495b54c70f233f7ae5 | install/kubernetes/cilium/templates/clustermesh-apiserver/tls-helm/server-secret.yaml | install/kubernetes/cilium/templates/clustermesh-apiserver/tls-helm/server-secret.yaml | {{- if and (or .Values.externalWorkloads.enabled .Values.clustermesh.useAPIServer) .Values.clustermesh.apiserver.tls.auto.enabled (eq .Values.clustermesh.apiserver.tls.auto.method "helm") }}
{{- $_ := include "clustermesh-apiserver-generate-certs.helm.setup-ca" . -}}
{{- $cn := "clustermesh-apiserver.cilium.io" }}
{{- $ip := prepend .Values.clustermesh.apiserver.tls.server.extraIpAddresses "127.0.0.1" "::1" }}
{{- $dns := prepend .Values.clustermesh.apiserver.tls.server.extraDnsNames $cn "*.mesh.cilium.io" }}
{{- $cert := genSignedCert $cn $ip $dns (.Values.clustermesh.apiserver.tls.auto.certValidityDuration | int) .cmca -}}
---
apiVersion: v1
kind: Secret
metadata:
name: clustermesh-apiserver-server-cert
namespace: {{ .Release.Namespace }}
type: kubernetes.io/tls
data:
ca.crt: {{ .cmca.Cert | b64enc }}
tls.crt: {{ $cert.Cert | b64enc }}
tls.key: {{ $cert.Key | b64enc }}
{{- end }}
| {{- if and (or .Values.externalWorkloads.enabled .Values.clustermesh.useAPIServer) .Values.clustermesh.apiserver.tls.auto.enabled (eq .Values.clustermesh.apiserver.tls.auto.method "helm") }}
{{- $_ := include "clustermesh-apiserver-generate-certs.helm.setup-ca" . -}}
{{- $cn := "clustermesh-apiserver.cilium.io" }}
{{- $ip := concat (list "127.0.0.1" "::1") .Values.clustermesh.apiserver.tls.server.extraIpAddresses }}
{{- $dns := concat (list $cn "*.mesh.cilium.io") .Values.clustermesh.apiserver.tls.server.extraDnsNames }}
{{- $cert := genSignedCert $cn $ip $dns (.Values.clustermesh.apiserver.tls.auto.certValidityDuration | int) .cmca -}}
---
apiVersion: v1
kind: Secret
metadata:
name: clustermesh-apiserver-server-cert
namespace: {{ .Release.Namespace }}
type: kubernetes.io/tls
data:
ca.crt: {{ .cmca.Cert | b64enc }}
tls.crt: {{ $cert.Cert | b64enc }}
tls.key: {{ $cert.Key | b64enc }}
{{- end }}
| Fix Helm template for externalWorkloads | helm: Fix Helm template for externalWorkloads
This fixes an error where instantiating the Helm chart with
`externalWorkloads.enabled=true` would fail due an invalid prefix
command in our Helm template:
```
Error: template: cilium/templates/clustermesh-apiserver/tls-helm/server-secret.yaml:4:11:
executing "cilium/templates/clustermesh-apiserver/tls-helm/server-secret.yaml" at
<prepend>: wrong number of args for prepend: want 2 got 3
```
Fixes: 4635ffaced50 ("refactor cert-gen logic")
Reported by: Slack user `night` on cilium.slack.com
Signed-off-by: Sebastian Wicki <db043b2055cb3a47b2eb0b5aebf4e114a8c24a5a@isovalent.com>
| YAML | apache-2.0 | cilium/cilium,cilium/cilium,michi-covalent/cilium,michi-covalent/cilium,cilium/cilium,cilium/cilium,michi-covalent/cilium,michi-covalent/cilium,cilium/cilium,michi-covalent/cilium |
36d2f3864d41f5cba4c50ffa0c6a3586b23e1497 | environment.yml | environment.yml | name: cats_python
dependencies:
- cycler=0.10.0=py27_0
- jpeg=8d=vc9_0
- libpng=1.6.17=vc9_1
- libtiff=4.0.6=vc9_1
- matplotlib=1.5.1=np111py27_0
- mkl=11.3.1=0
- numpy=1.11.0=py27_0
- openssl=1.0.2g=vc9_0
- pandas=0.19.2=np111py27_1
- pip=8.1.1=py27_1
- pyparsing=2.1.1=py27_0
- pyqt=4.11.4=py27_5
- python=2.7.11=4
- python-dateutil=2.5.2=py27_0
- pytz=2016.3=py27_0
- qt=4.8.7=vc9_7
- scipy=0.17.0=np111py27_1
- setuptools=20.7.0=py27_0
- sip=4.16.9=py27_2
- six=1.10.0=py27_0
- tk=8.5.18=vc9_0
- vs2008_runtime=9.00.30729.1=0
- vs2010_runtime=10.00.40219.1=0
- wheel=0.29.0=py27_0
- zlib=1.2.8=vc9_2
prefix: C:\Users\d5o\AppData\Local\Continuum\Anaconda3\envs\cats_python
| name: cats_python
dependencies:
- cycler=0.10.0
- jpeg=8d
- libpng=1.6.17
- libtiff=4.0.6
- matplotlib=1.5.1
- mkl=11.3.1=0
- numpy=1.11.0
- openssl=1.0.2g
- pandas=0.19.2
- pip=8.1.1
- pyparsing=2.1.1
- pyqt=4.11.4
- python=2.7
- python-dateutil=2.5.2
- pytz=2016.3
- qt=4.8.7
- scipy=0.17.0
- setuptools=20.7.0
- sip=4.16.9
- six=1.10.0
- wheel=0.29.0
- zlib=1.2.8
| Remove some of the version requirements | Remove some of the version requirements
| YAML | apache-2.0 | DanOlds/CATS |
e115933d7abce9fac723181013179760ec74d281 | .circleci/runner-values.yaml | .circleci/runner-values.yaml | # Default values for cyber-dojo-service.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
fullnameOverride: "runner"
daemonSet: true
volumes:
- name: runner-tmp-dir
emptyDir:
medium: Memory
sizeLimit: "64Mi"
- name: docker-socket
hostPath:
path: /var/run/docker.sock
type: File
service:
port: 4597
containers:
- name: runner
image: cyberdojo/runner
securityContext:
readOnlyRootFilesystem: true
volumeMounts:
- name: runner-tmp-dir
mountPath: /tmp
readOnly: false
- mountPath: /var/run/docker.sock
name: docker-socket
resources:
limits:
memory: 64Mi
requests:
memory: 64Mi
livenessProbe:
path: /alive?
port: 4597
readinessProbe:
path: /ready?
port: 4597
initContainers: {}
envFromSecret: {}
nodeSelector: {}
affinity: {}
tolerations: []
| # Default values for cyber-dojo-service.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
fullnameOverride: "runner"
daemonSet: true
volumes:
- name: runner-tmp-dir
emptyDir:
medium: Memory
sizeLimit: "64Mi"
- name: docker-socket
hostPath:
path: /var/run/docker.sock
type: File
service:
port: 4597
annotations:
- prometheus.io/scrape: "true"
- prometheus.io/port: "4597"
containers:
- name: runner
image: cyberdojo/runner
securityContext:
readOnlyRootFilesystem: true
volumeMounts:
- name: runner-tmp-dir
mountPath: /tmp
readOnly: false
- mountPath: /var/run/docker.sock
name: docker-socket
resources:
limits:
memory: 64Mi
requests:
memory: 64Mi
livenessProbe:
path: /alive?
port: 4597
readinessProbe:
path: /ready?
port: 4597
initContainers: {}
envFromSecret: {}
nodeSelector: {}
affinity: {}
tolerations: []
| Add prometheus settings to k8s yaml values file | Add prometheus settings to k8s yaml values file
| YAML | bsd-2-clause | cyber-dojo/runner,cyber-dojo/runner |
602cd82bb90321a91557416ad16b8d8c13fa3863 | .github/workflows/build.yaml | .github/workflows/build.yaml | name: Build
on:
workflow_dispatch:
push:
paths-ignore:
- '*.md'
- 'docs/**'
branches:
- '**'
tags-ignore:
- '**'
pull_request:
paths-ignore:
- '*.md'
- 'docs/**'
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
defaults:
run:
shell: pwsh
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Set up .NET 5
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore
run: .\build.ps1 restore
- name: Build
run: .\build.ps1 build --skip restore
- name: Test
run: .\build.ps1 test --skip build
publish:
if: github.repository_owner == 'Faithlife' && github.ref == 'refs/heads/master'
needs: build
runs-on: Windows
steps:
- name: Publish
env:
BUILD_BOT_PASSWORD: ${{ secrets.BUILD_BOT_PASSWORD }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: .\build.ps1 publish --skip test
| name: Build
on:
workflow_dispatch:
push:
paths-ignore:
- '*.md'
- 'docs/**'
branches:
- '**'
tags-ignore:
- '**'
pull_request:
paths-ignore:
- '*.md'
- 'docs/**'
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
defaults:
run:
shell: pwsh
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Set up .NET 5
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Restore
run: .\build.ps1 restore
- name: Build
run: .\build.ps1 build --skip restore
- name: Test
run: .\build.ps1 test --skip build
publish:
if: github.repository_owner == 'Faithlife' && github.ref == 'refs/heads/master'
needs: build
runs-on: windows-latest
steps:
- name: Publish
env:
BUILD_BOT_PASSWORD: ${{ secrets.BUILD_BOT_PASSWORD }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: .\build.ps1 publish --skip test
| Use windows-latest for publish runs-on. | Use windows-latest for publish runs-on.
| YAML | mit | Faithlife/Parsing,ejball/ArgsReading,Faithlife/FaithlifeUtility,ejball/XmlDocMarkdown |
651c8b366f9089a189e7003ea2b1213eea98269e | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true
- uses: ankane/setup-postgres@v1
- run: |
createdb pgsync_test1
createdb pgsync_test2
createdb pgsync_test3
- run: bundle exec rake test
| name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- ruby: 3.1
postgres: 15
- ruby: 2.5
postgres: 9.6
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- uses: ankane/setup-postgres@v1
with:
postgres-version: ${{ matrix.postgres }}
- run: |
createdb pgsync_test1
createdb pgsync_test2
createdb pgsync_test3
- run: bundle exec rake test
| Test with multiple versions of Ruby and Postgres on CI | Test with multiple versions of Ruby and Postgres on CI
| YAML | mit | ankane/pgsync |
1d5fc1715529bb6643c31fef560e4fd9b139d8a7 | .github/workflows/build.yml | .github/workflows/build.yml | name: Build
on:
pull_request:
push:
branches:
- master
- flutter
jobs:
build:
name: Build
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- name: Retrieve encryption keys
id: decode_keystore
uses: timheuer/base64-to-file@v1.0.3
with:
fileName: "android/android-signing-keystore.jks"
encodedString: ${{ secrets.SIGNING_KEYSTORE_BASE64 }}
- uses: subosito/flutter-action@v1
with:
flutter-version: "1.22.5"
- name: Build Flutter app
run: flutter build appbundle
env:
SIGNING_KEYSTORE_PATH: ${{ steps.decode_keystore.outputs.filePath }}
SIGNING_KEYSTORE_PASSWORD: ${{ secrets.SIGNING_KEYSTORE_PASSWORD }}
SIGNING_KEY_ALIAS: ${{ secrets.UPLOAD_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.UPLOAD_KEY_PASSWORD }}
| name: Build
on:
pull_request:
push:
branches:
- master
- flutter
jobs:
test:
name: Run Tests
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- uses: subosito/flutter-action@v1
with:
flutter-version: "1.22.5"
- run: flutter test
build:
name: Build Android App Bundle
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@master
- name: Retrieve encryption keys
id: decode_keystore
uses: timheuer/base64-to-file@v1.0.3
with:
fileName: "android/android-signing-keystore.jks"
encodedString: ${{ secrets.SIGNING_KEYSTORE_BASE64 }}
- uses: subosito/flutter-action@v1
with:
flutter-version: "1.22.5"
- name: Build Flutter app
run: flutter build appbundle
env:
SIGNING_KEYSTORE_PATH: ${{ steps.decode_keystore.outputs.filePath }}
SIGNING_KEYSTORE_PASSWORD: ${{ secrets.SIGNING_KEYSTORE_PASSWORD }}
SIGNING_KEY_ALIAS: ${{ secrets.UPLOAD_KEY_ALIAS }}
SIGNING_KEY_PASSWORD: ${{ secrets.UPLOAD_KEY_PASSWORD }}
| Add job running unit tests | Add job running unit tests
| YAML | mit | agersant/polaris-android,agersant/polaris-android,agersant/polaris-android |
967e179ee9929e9b4250a7d506b314ffa3b06474 | .github/workflows/gfmrun.yml | .github/workflows/gfmrun.yml | name: Test and Build
on:
pull_request:
branches:
master
push:
tags:
- 'v*'
jobs:
test:
name: Test GFMRUN
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v1
with:
ref: ${{ github.ref }}
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
- name: Run Linter
run: golangci-lint run
- name: Run Test Suite
run: make all
- name: Build Binary
if: success() && contains(github.ref, "tag")
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
| name: Test and Build
on:
pull_request:
branches:
master
push:
tags:
- 'v*'
jobs:
test:
name: Test GFMRUN
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v1
with:
ref: ${{ github.ref }}
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
- name: Run Linter
run: golangci-lint run
- name: Run Test Suite
run: make all
- name: Build Binary
if: success() && contains(${{ github.ref }}, 'tag')
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
| Update syntax for contains function | Update syntax for contains function
| YAML | mit | urfave/gfmrun,urfave/gfmrun |
dd00c0b6803fb315afc5ac3ecf61d11b1af12a6a | .github/workflows/continuous-integration-karma.yml | .github/workflows/continuous-integration-karma.yml | name: Integration Tests
on:
push:
branches:
- master
- release/*
pull_request:
jobs:
karma:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}
- name: Setup npm cache
uses: pat-s/always-upload-cache@v1.1.4
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-${{ env.cache-name }}-
${{ runner.os }}-npm-
${{ runner.os }}-
- name: Install dependencies
run: npm ci
env:
CI: true
- name: Run integration tests
run: npm run test:karma -- --headless --snapshots
- name: Uplaod Percy snapshots
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
run: npm run percy
| name: Integration Tests
on:
push:
branches:
- master
- release/*
pull_request:
jobs:
karma:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Read .nvmrc
run: echo "##[set-output name=NVMRC;]$(cat .nvmrc)"
id: nvm
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: ${{ steps.nvm.outputs.NVMRC }}
- name: Setup npm cache
uses: pat-s/always-upload-cache@v1.1.4
with:
path: node_modules
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-${{ env.cache-name }}-
${{ runner.os }}-npm-
${{ runner.os }}-
- name: Install dependencies
run: npm ci
env:
CI: true
- name: Run integration tests
run: npm run test:karma -- --headless --snapshots
# Disabled until we have proper license.
# - name: Uplaod Percy snapshots
# env:
# PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
# run: npm run percy
| Disable percy until we have the proper license | Disable percy until we have the proper license
| YAML | apache-2.0 | GoogleForCreators/web-stories-wp,GoogleForCreators/web-stories-wp,GoogleForCreators/web-stories-wp,GoogleForCreators/web-stories-wp,GoogleForCreators/web-stories-wp |
28c990c302840eb0027955771a2f692d7bd71f00 | .github/workflows/rspec.yaml | .github/workflows/rspec.yaml | env:
RUBY_VERSION: 2.6
name: Rails tests
on: [push,pull_request]
jobs:
rspec:
name: RSpec
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
- name: Install dependencies
run: |
gem install bundler
bundler install
working-directory: thanks_ants
- name: Run tests
run: bundle exec rspec
working-directory: thanks_ants
| env:
RUBY_VERSION: 3.0
name: Rails tests
on: [push,pull_request]
jobs:
rspec:
name: RSpec
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- uses: actions/setup-ruby@v1
with:
ruby-version: ${{ env.RUBY_VERSION }}
- name: Install dependencies
run: |
gem install bundler
bundler install
working-directory: thanks_ants
- name: Run tests
run: bundle exec rspec
working-directory: thanks_ants
| Bump GitHub RSpec build to use Ruby 3 | Bump GitHub RSpec build to use Ruby 3
| YAML | mit | mfoo/thanks_ants |
d2f6a1c1d0a23a58e534554b63820524fcee3388 | {{cookiecutter.role_project_name}}/meta/main.yml | {{cookiecutter.role_project_name}}/meta/main.yml | galaxy_info:
author: {{ cookiecutter.author }}
description: Ansible role for {{ cookiecutter.role_name }}
license: MIT
min_ansible_version: 2.0
platforms:
- name: Debian
versions:
- jessie
- name: Darwin
versions:
- all
- name: Alpine
versions:
- 3.3
galaxy_tags:
- development
- osx
- alpine
# dependencies: []
dependencies:
- FGtatsuro.python-requirements
| galaxy_info:
author: {{ cookiecutter.author }}
description: Ansible role for {{ cookiecutter.role_name }}
license: MIT
min_ansible_version: 2.0
platforms:
- name: Debian
versions:
- jessie
- name: Darwin
versions:
- all
galaxy_tags:
- development
- osx
- alpine
# dependencies: []
dependencies:
- FGtatsuro.python-requirements
| Remove metadata of Alpine Linux. | Remove metadata of Alpine Linux.
Ansible Galaxy checks platform value now, and it can't accept Alpine
Linux.
| YAML | mit | FGtatsuro/cookiecutter-ansible-role,FGtatsuro/cookiecutter-ansible-role |
f08f84830dcc5f5b3f7301cbb306e654721f9d77 | build.yaml | build.yaml | junit: 4.8.2
gems:
- buildr >= 1.4.6
repositories:
remote:
- http://www.ibiblio.org/maven2
artifacts:
junit: junit:junit:jar:4.8.2
| junit: 4.8.2
gems:
- buildr >= 1.4.6
repositories:
remote:
- http://repo1.maven.org/maven2
release_to:
url: http://repo.fire.dse.vic.gov.au/content/repositories/releases/
username: upload
artifacts:
junit: junit:junit:jar:4.8.2
| Update the maven repository configurations | Update the maven repository configurations
| YAML | apache-2.0 | realityforge/getopt4j,realityforge/getopt4j |
6836543059ce1a38e2df693c41863abdc3d2534c | .github/workflows/tests.yaml | .github/workflows/tests.yaml | name: "Test application"
on:
push:
branches:
- master
pull_request:
branches:
- master
# Allow workflow to be manually run from the GitHub UI
workflow_dispatch:
jobs:
tests:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Initialise environment
run: make prep-ci
- name: Run static analysis
run: make static-analysis
- name: Run unit and functional tests
run: make coverage-tests
- name: Run mutation tests
run: make mutation-tests
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./reports/phpunit/coverage.xml # optional
flags: unittests # optional
name: codecov-umbrella # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)
- name: Cleanup
if: always()
run: make clean
| name: "Test application"
on:
push:
branches:
- master
pull_request:
branches:
- master
# Allow workflow to be manually run from the GitHub UI
workflow_dispatch:
jobs:
tests:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Initialise environment
run: make prep-ci
- name: Run static analysis
run: make static-analysis
- name: Run unit and functional tests
run: make coverage-tests
- name: Run mutation tests
run: make mutation-tests
- uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
files: ./reports/phpunit/coverage.xml # optional
flags: unittests # optional
name: codecov-umbrella # optional
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)
| Remove cleanup step from pipeline, unnecessary | Remove cleanup step from pipeline, unnecessary
| YAML | mit | luispabon/kong-certbot-agent,luispabon/kong-certbot-agent |
5796abd97f1229e30da7b48e1717d41d5b3320fd | src/Oro/Bundle/ChartBundle/Resources/translations/messages.en.yml | src/Oro/Bundle/ChartBundle/Resources/translations/messages.en.yml | oro:
chart:
no_data: No data
form:
name.label: Chart Type
chart_empty_value: None
line_chart:
label: Line Chart
params:
label: Category (X axis)
value: Value (Y axis)
settings:
connect_dots_with_line: Connect line with dots
bar_chart:
label: Bar Chart
params:
label: Category (X axis)
value: Value (Y axis)
pie_chart:
label: Pie Chart
params:
label: Fraction Label
value: Fraction Value
flow_chart:
label: Flow Chart
params:
label: Step label
value: Step value
is_nozzle: Is step nozzle
| oro:
chart:
no_data: No data
form:
name.label: Chart Type
chart_empty_value: None
line_chart:
label: Line Chart
params:
label: Category (X axis)
value: Value (Y axis)
settings:
connect_dots_with_line: Connect dots with line
bar_chart:
label: Bar Chart
params:
label: Category (X axis)
value: Value (Y axis)
pie_chart:
label: Pie Chart
params:
label: Fraction Label
value: Fraction Value
flow_chart:
label: Flow Chart
params:
label: Step label
value: Step value
is_nozzle: Is step nozzle
| Connect dots with line chart support - CR changes | BAP-4113: Connect dots with line chart support
- CR changes
| YAML | mit | trustify/oroplatform,morontt/platform,mszajner/platform,northdakota/platform,hugeval/platform,geoffroycochard/platform,ramunasd/platform,2ndkauboy/platform,hugeval/platform,hugeval/platform,trustify/oroplatform,orocrm/platform,Djamy/platform,northdakota/platform,orocrm/platform,orocrm/platform,morontt/platform,mszajner/platform,geoffroycochard/platform,morontt/platform,geoffroycochard/platform,2ndkauboy/platform,mszajner/platform,Djamy/platform,Djamy/platform,ramunasd/platform,2ndkauboy/platform,trustify/oroplatform,northdakota/platform,ramunasd/platform |
9b1c12c3c821394e3c3f7f30a763dc49fac75e18 | metadata/com.cliffracertech.soundaura.yml | metadata/com.cliffracertech.soundaura.yml | Categories:
- Multimedia
License: Apache-2.0
AuthorName: CliffracerMerchant
AuthorEmail: CliffracerTech@gmail.com
SourceCode: https://github.com/CliffracerMerchant/SoundAura
IssueTracker: https://github.com/CliffracerMerchant/SoundAura/issues
AutoName: SoundAura
RepoType: git
Repo: https://github.com/CliffracerMerchant/SoundAura.git
Builds:
- versionName: 1.2.2
versionCode: 5
commit: 7eed6ba4a2ec31e5adb24993ac57ba80678fdc65
subdir: app
sudo:
- apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
- versionName: 1.3.0
versionCode: 6
commit: d13381ce7ef8784eb4da49bca5e9a6cc309a71cd
subdir: app
sudo:
- apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.3.0
CurrentVersionCode: 6
| Categories:
- Multimedia
License: Apache-2.0
AuthorName: CliffracerMerchant
AuthorEmail: CliffracerTech@gmail.com
SourceCode: https://github.com/CliffracerMerchant/SoundAura
IssueTracker: https://github.com/CliffracerMerchant/SoundAura/issues
AutoName: SoundAura
RepoType: git
Repo: https://github.com/CliffracerMerchant/SoundAura.git
Builds:
- versionName: 1.2.2
versionCode: 5
commit: 7eed6ba4a2ec31e5adb24993ac57ba80678fdc65
subdir: app
sudo:
- apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
- versionName: 1.3.0
versionCode: 6
commit: d13381ce7ef8784eb4da49bca5e9a6cc309a71cd
subdir: app
sudo:
- apt-get update
- apt-get install -y openjdk-11-jdk-headless
- update-alternatives --auto java
gradle:
- yes
- versionName: 1.3.1
versionCode: 7
commit: 57120c4a739f38fc51d9c66c64f010ad154f4b27
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.3.1
CurrentVersionCode: 7
| Update SoundAura to 1.3.1 (7) | Update SoundAura to 1.3.1 (7)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
2f24b82a2a29f6f2e2db0df63f34b29b210e1ea1 | .github/stale.yml | .github/stale.yml | # Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: stale
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
| _extends: .github
| Add org-wide config for Stale app | Add org-wide config for Stale app
| YAML | mit | ssbc/ssb-search |
58bb52c7faf6a4f915beffa05cab4fc7b22afa7d | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
java: [ '11' ]
steps:
- name: Checkout GitHub repo
uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Start Xvfb
run: Xvfb :99 &
- name: Run tests
run: mvn -B test
env:
DISPLAY: :99
WDM_GITHUBTOKENNAME: ${{ secrets.WDM_GITHUBTOKENNAME }}
WDM_GITHUBTOKENSECRET: ${{ secrets.WDM_GITHUBTOKENSECRET }}
- name: Upload analysis to SonarCloud
if: success() && matrix.os == 'ubuntu-latest'
run: >
mvn -B sonar:sonar
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=bonigarcia-github
-Dsonar.projectKey=io.github.bonigarcia:webdrivermanager
env:
GITHUB_TOKEN: ${{ secrets.WDM_GITHUBTOKENSECRET }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload coverage to Codecov
if: success() && matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v1
| name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
java: [ '11' ]
steps:
- name: Checkout GitHub repo
uses: actions/checkout@v2
- name: Set up Java
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Start Xvfb
run: Xvfb :99 &
- name: Run tests
run: mvn -B test
env:
DISPLAY: :99
WDM_GITHUBTOKENNAME: ${{ secrets.WDM_GITHUBTOKENNAME }}
WDM_GITHUBTOKENSECRET: ${{ secrets.WDM_GITHUBTOKENSECRET }}
- name: Upload analysis to SonarCloud
if: success() && matrix.os == 'ubuntu-latest' && matrix.os == '11' && "!${{contains(github.ref, 'pull')}}"
run: >
mvn -B sonar:sonar
-Dsonar.host.url=https://sonarcloud.io
-Dsonar.organization=bonigarcia-github
-Dsonar.projectKey=io.github.bonigarcia:webdrivermanager
env:
GITHUB_TOKEN: ${{ secrets.WDM_GITHUBTOKENSECRET }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload coverage to Codecov
if: success() && matrix.os == 'ubuntu-latest'
uses: codecov/codecov-action@v1
| Enhance condition to upload analysis to SonarCloud in workflow setup | Enhance condition to upload analysis to SonarCloud in workflow setup
| YAML | apache-2.0 | bonigarcia/webdrivermanager,bonigarcia/webdrivermanager,bonigarcia/webdrivermanager |
b5fa24c53f2b004aa76d4ef1b173dea8f7a180a4 | .github/workflows/maven.yml | .github/workflows/maven.yml | name: Urlaubsverwaltung CI
on:
schedule:
- cron: "2 4 * * *"
push:
branches:
- master
- v3.x
pull_request:
workflow_dispatch:
jobs:
build:
name: build and analyse
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache npm dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Cache pom dependencies
uses: actions/cache@v2
with:
path: |
~/.m2/repository
node/
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build
run: ./mvnw --batch-mode clean verify
- uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: failed-selenium-tests
path: target/FAILED-*.flv
- name: Build docker image and push to GitHub Container Registry
if: github.ref == 'refs/heads/master'
run: >
./mvnw --batch-mode
docker:build
docker:push
-Ddocker.name=synyx/urlaubsverwaltung
-Ddocker.push.registry=ghcr.io
-Ddocker.push.username=${{ github.actor }}
-Ddocker.push.password=${{ secrets.CR_PAT }}
-Ddocker.pull.username=${{ secrets.DOCKER_USERNAME }}
-Ddocker.pull.password=${{ secrets.DOCKER_PASSWORD }}
| name: Urlaubsverwaltung CI
on:
schedule:
- cron: "2 4 * * *"
push:
branches:
- master
- v3.x
pull_request:
workflow_dispatch:
jobs:
build:
name: build and analyse
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache npm dependencies
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Cache pom dependencies
uses: actions/cache@v2
with:
path: |
~/.m2/repository
node/
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build
run: ./mvnw --batch-mode clean verify
- uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: failed-selenium-tests
path: target/FAILED-*.flv
| Remove Build docker image and push to GitHub Container Registry | Remove Build docker image and push to GitHub Container Registry
| YAML | apache-2.0 | synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung |
d171d32111124b98439bb298a0987fa7b435feef | .repo-runner.yaml | .repo-runner.yaml | ---
image: "quay.io/luzifer/repo-runner-image"
checkout_dir: /src/factorio
commands:
- make ci
environment:
GHUSER: luzifer-docker
| ---
image: "quay.io/luzifer/repo-runner-image"
checkout_dir: /src/factorio
commands:
- make ci
environment:
GHUSER: luzifer-docker
GPG_KEY: 316D1333
| Add GPG_KEY for aci signing | Add GPG_KEY for aci signing
| YAML | apache-2.0 | luzifer-docker/factorio |
c59a16b18f0fc711229240505bab0f6b9f448dce | .github/workflows/build.yml | .github/workflows/build.yml | name: Build
# Run this Action on all pull requests and non-main branch pushes
on:
push:
branches-ignore:
- main
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
arguments: build
static:
name: Static Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Run Static Analysis
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
arguments: jacocoTestReport sonarqube --info
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | name: Build
# Run this Action on all pull requests and non-main branch pushes
on:
push:
branches-ignore:
- main
pull_request:
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
java: [8,11,17]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: temurin
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
arguments: build
static:
name: Static Analysis
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: 11
distribution: temurin
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Run Static Analysis
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
arguments: jacocoTestReport sonarqube --info
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | Test on all major platforms and current LTS java versions | ci: Test on all major platforms and current LTS java versions
| YAML | epl-1.0 | HOBY-NYE/thank-you-matcher |
f543da534f0a3e9f5f048ac9025026ffdb825035 | .github/workflows/build.yml | .github/workflows/build.yml | name: websocket-client build and test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Check out source repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} environment
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run local websockets echo server on port ${{ env.LOCAL_WS_SERVER_PORT }} (code is for Python 3.7+)
run: |
pip3 install -U websockets asyncio
python3 websocket/tests/echo-server.py &
- name: Build websocket-client & run tests
run: |
pip3 install -U pip setuptools wheel readme_renderer twine pytest python-socks
python3 -c "import setuptools; print('Setup tools version'); print(setuptools.__version__)"
pytest websocket/tests -v -rP
python3 setup.py sdist
twine check dist/*
env:
TEST_WITH_INTERNET: 1
LOCAL_WS_SERVER_PORT: 8765
| name: websocket-client build and test
on: [push, pull_request]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- name: Check out source repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }} environment
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run local websockets echo server on port ${{ env.LOCAL_WS_SERVER_PORT }} (code is for Python 3.7+)
run: |
pip3 install -U websockets asyncio
python3 websocket/tests/echo-server.py &
- name: Build websocket-client & run tests
run: |
pip3 install -U pip setuptools wheel readme_renderer twine pytest python-socks
python3 -c "import setuptools; print('Setup tools version'); print(setuptools.__version__)"
pytest websocket/tests -v -rP
python3 setup.py sdist
twine check dist/*
env:
TEST_WITH_INTERNET: 1
LOCAL_WS_SERVER_PORT: 8765
| Add Python 3.10 to GitHub Action CI | Add Python 3.10 to GitHub Action CI
| YAML | apache-2.0 | websocket-client/websocket-client |
40f31a3250e322fee541681f7226734e8965a5b3 | .github/workflows/linux.yml | .github/workflows/linux.yml | name: linux
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
perl:
runs-on: ubuntu-latest
strategy:
matrix:
perl-version:
- '5.10'
- '5.12'
- '5.14'
- '5.20'
- '5.30'
container:
image: perl:${{ matrix.perl-version }}
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
steps:
- uses: actions/checkout@v2
- name: perl -V
run: perl -V
- name: Install Dependencies
run: |
cpanm -n --installdeps .
cpanm -n Test::Deep
- name: Run Tests
env:
TEST_ONLINE: postgresql://postgres:postgres@postgres:5432/postgres
run: prove -l t
| name: linux
on:
push:
branches:
- '*'
tags-ignore:
- '*'
pull_request:
jobs:
perl:
runs-on: ubuntu-latest
strategy:
matrix:
perl-version:
- '5.16'
- '5.18'
- '5.20'
- '5.22'
- '5.30'
container:
image: perl:${{ matrix.perl-version }}
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
steps:
- uses: actions/checkout@v2
- name: perl -V
run: perl -V
- name: Install Dependencies
run: |
cpanm -n App::cpanminus ExtUtils::MakeMaker
cpanm -n --installdeps .
cpanm -n Test::Deep
- name: Run Tests
env:
TEST_ONLINE: postgresql://postgres:postgres@postgres:5432/postgres
run: prove -l t
| Update GitHub Actions for latest Mojolicious | Update GitHub Actions for latest Mojolicious
| YAML | artistic-2.0 | kraih/mojo-pg |
95d0366a7c5dd6da55d54c0e881f1af23374f601 | .github/workflows/maven.yml | .github/workflows/maven.yml | # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'zulu'
cache: maven
- name: Maven Build
run: mvn clean install javadoc:javadoc
- name: Coveralls Report
run: mvn org.jacoco:jacoco-maven-plugin:prepare-agent test org.jacoco:jacoco-maven-plugin:report org.eluder.coveralls:coveralls-maven-plugin:report -DrepoToken=${{ secrets.COVERALLS_TOKEN }}
| # This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'zulu'
cache: maven
- name: Maven Build
run: mvn clean install javadoc:javadoc
- name: Coveralls Report
run: mvn org.jacoco:jacoco-maven-plugin:prepare-agent test org.jacoco:jacoco-maven-plugin:report org.eluder.coveralls:coveralls-maven-plugin:report -DrepoToken=${{ secrets.COVERALLS_TOKEN }}
| Allow to trigger the build manually | Allow to trigger the build manually
| YAML | apache-2.0 | ferstl/pedantic-pom-enforcers |
68ad8bc03951909ee69301fce07291bc3c7e0756 | .github/workflows/maven.yml | .github/workflows/maven.yml | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and Analyze with SonarCloud w/Coverage
run: mvn -B clean compile jacoco:report verify sonar:sonar -Dsonar.login=$SONAR_TOKEN -Dsonar.coverage.jacoco.xmlReportPaths=./target/site/jacoco/jacoco.xml --file pom.xml
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
| # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Build and Analyze with SonarCloud w/Coverage
run: mvn -B clean compile jacoco:report verify sonar:sonar -Dsonar.login=$SONAR_TOKEN -Dsonar.coverage.jacoco.xmlReportPaths=./target/site/jacoco/jacoco.xml --file pom.xml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
| Update GITHUB_TOKEN for activating workflow. | Update GITHUB_TOKEN for activating workflow.
| YAML | apache-2.0 | GoogleCloudPlatform/bigquery-data-lineage,GoogleCloudPlatform/bigquery-data-lineage,GoogleCloudPlatform/bigquery-data-lineage |
cf844701a25ef21726c3bcdfef2687ec9073254a | .github/workflows/tests.yml | .github/workflows/tests.yml | name: tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ '7.0','7.1','7.2','7.3', '7.4' ]
stability: [ prefer-lowest, prefer-stable ]
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: curl
php-version: ${{ matrix.php }}
tools: composer:v2
- name: Install composer dependencies
uses: nick-invision/retry@v2
with:
command: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
max_attempts: 5
timeout_minutes: 5
- name: Run the tests
run: vendor/bin/phpunit --verbose
| name: tests
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ '7.0','7.1','7.2','7.3', '7.4' ]
stability: [ prefer-lowest, prefer-stable ]
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
steps:
- name: Checkout the code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
coverage: none
extensions: curl, json
php-version: ${{ matrix.php }}
tools: composer:v2
- name: Install composer dependencies
uses: nick-invision/retry@v2
with:
command: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
max_attempts: 5
timeout_minutes: 5
- name: Run the tests
run: vendor/bin/phpunit --verbose
| Add json extension within github action. | Add json extension within github action.
| YAML | bsd-2-clause | dennisvdvliet/php-rest-api,messagebird/php-rest-api |
9ac8b941b092487fce0ec6bc1346e4118b210ec6 | .github/workflows/tests.yml | .github/workflows/tests.yml | name: tests
on: [push]
jobs:
test:
name: ${{ matrix.os }} + py${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-18.04]
python: [3.5, 3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: Fetch python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-get update
sudo apt-get install -y libpq-dev
pip install -r requirements.txt
- name: Run tests
run: |
scripts/cibuild
| name: tests
on: [push]
jobs:
test:
name: ${{ matrix.os }} + py${{ matrix.python }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-18.04]
python: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Fetch python ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
sudo apt-get update
sudo apt-get install -y libpq-dev
pip install -r requirements.txt
- name: Run tests
run: |
scripts/cibuild
| Use current versions of cpython | Use current versions of cpython
Skip python 3.6 since it's current but reaches end of support on 2021-12-23
| YAML | mit | eallrich/checkniner,eallrich/checkniner,eallrich/checkniner |
eba6de363e24b93b43dd4d5ed8d7253578acf176 | ansible/roles/spdashboard/tasks/spdashboardvm.yml | ansible/roles/spdashboard/tasks/spdashboardvm.yml | ---
- name: Install some packages needed for development
yum:
name:
- ruby-devel
- gcc-c++
- sqlite-devel
- ant
state: present
- name: Install Mailcatcher
action: command gem install mailcatcher creates=/usr/local/bin/mailcatcher
- name: Install PHP Xdebug extension
yum: name=php72-php-pecl-xdebug state=present
- name: Configure PHP Xdebug
template: src=xdebug.ini.j2 dest=/etc/opt/remi/php72/php.d/15-xdebug.ini
notify:
- restart php72-php-fpm
- name: Add hosts file
lineinfile:
dest: /etc/hosts
state: present
line: '127.0.0.1 dev.support.surfconext.nl engine.dev.support.surfconext.nl mujina-idp.dev.support.surfconext.nl mujina-sp.dev.support.surfconext.nl engine-api.dev.support.surfconext.nl aa.dev.support.surfconext.nl authz.dev.support.surfconext.nl teams.dev.support.surfconext.nl voot.dev.support.surfconext.nl manage.dev.support.surfconext.nl oidc.dev.support.surfconext.nl'
| ---
- name: Install some packages needed for development
yum:
name:
- ruby-devel
- gcc-c++
- sqlite-devel
- ant
- composer
state: present
- name: Install Mailcatcher
action: command gem install mailcatcher creates=/usr/local/bin/mailcatcher
- name: Install PHP Xdebug extension
yum: name=php72-php-pecl-xdebug state=present
- name: Configure PHP Xdebug
template: src=xdebug.ini.j2 dest=/etc/opt/remi/php72/php.d/15-xdebug.ini
notify:
- restart php72-php-fpm
- name: Add hosts file
lineinfile:
dest: /etc/hosts
state: present
line: '127.0.0.1 dev.support.surfconext.nl engine.dev.support.surfconext.nl mujina-idp.dev.support.surfconext.nl mujina-sp.dev.support.surfconext.nl engine-api.dev.support.surfconext.nl aa.dev.support.surfconext.nl authz.dev.support.surfconext.nl teams.dev.support.surfconext.nl voot.dev.support.surfconext.nl manage.dev.support.surfconext.nl oidc.dev.support.surfconext.nl'
| Add composer to Ansible for installation | Add composer to Ansible for installation
This is needed because this is removed from Deploy to
be always installed.
| YAML | apache-2.0 | SURFnet/sp-dashboard,SURFnet/sp-dashboard,SURFnet/sp-dashboard,SURFnet/sp-dashboard,SURFnet/sp-dashboard |
8e42e9f9d674378ba72a3448a2eba3c6774ec091 | shippable.yml | shippable.yml | language: ruby
cache: bundler
archive: true
rvm:
- 2.1.2
script:
- cd spec/dummy
- RAILS_ENV=test bundle exec rake db:migrate
- CODECLIMATE_REPO_TOKEN=f54267de73817e8dcc14ccfaff327056723eaae101507c70b391bec5d5825c73 bundle exec rspec
notifications:
email: false
| language: ruby
cache: bundler
archive: true
rvm:
- 2.1.2
script:
- cd spec/dummy
- RAILS_ENV=test bundle exec rake db:migrate
- cd ../..
- CODECLIMATE_REPO_TOKEN=f54267de73817e8dcc14ccfaff327056723eaae101507c70b391bec5d5825c73 bundle exec rspec
notifications:
email: false
| Return to previous path after running migrations. | Return to previous path after running migrations.
| YAML | mit | kaspernj/simple_form_ransack,kaspernj/simple_form_ransack,matheumalo/simple_form_ransack,matheumalo/simple_form_ransack,kaspernj/simple_form_ransack,matheumalo/simple_form_ransack |
fcbf1054a38755abdf50290fd41e9de2fee42931 | shippable.yml | shippable.yml | language: python
python:
- 2.7
build:
pre_ci:
# Always pull the latest base image to avoid any cached images on the host
- docker pull drydock/u14:prod
- docker build --rm -t drydock/u14pls:tip .
pre_ci_boot:
image_name: drydock/u14pls
image_tag: tip
pull: false
ci:
# We can add sanity checks to ensure the image was built successfully here
- /u14pls/test/_elasticsearch.sh
- /u14pls/test/_elasticsearch.sh
- /u14pls/test/_memcached.sh
- /u14pls/test/_mongo.sh
- /u14pls/test/_mysql.sh
- /u14pls/test/_postgres.sh
- /u14pls/test/_rabbitmq.sh
- /u14pls/test/_redis.sh
- /u14pls/test/_selenium.sh
on_success:
- if [ "$IS_PULL_REQUEST" != true ]; then docker push drydock/u14pls:tip; fi
integrations:
hub:
- integrationName: "dockerhub"
type: "docker"
| language: python
python:
- 2.7
build:
pre_ci:
# Always pull the latest base image to avoid any cached images on the host
- docker pull drydock/u14:prod
- docker build --rm -t drydock/u14pls:tip .
pre_ci_boot:
image_name: drydock/u14pls
image_tag: tip
pull: false
ci:
# We can add sanity checks to ensure the image was built successfully here
- /u14pls/test/_elasticsearch.sh
- /u14pls/test/_elasticsearch.sh
- /u14pls/test/_memcached.sh
- /u14pls/test/_mongo.sh
- /u14pls/test/_mysql.sh
- /u14pls/test/_postgres.sh
- /u14pls/test/_rabbitmq.sh
- /u14pls/test/_redis.sh
- /u14pls/test/_selenium.sh
- sqlite3 -version
on_success:
- if [ "$IS_PULL_REQUEST" != true ]; then docker push drydock/u14pls:tip; fi
integrations:
hub:
- integrationName: "dockerhub"
type: "docker"
| Add sqlite version to yml | Add sqlite version to yml
| YAML | mit | dry-dock/u14pls |
987a04fcfadade7a40d3a7ea0d6f2dc0f1e8d880 | metadata/is.zi.huewidgets.yml | metadata/is.zi.huewidgets.yml | Categories:
- Connectivity
License: GPL-3.0-only
WebSite: https://huewidgets.zi.is
SourceCode: https://github.com/ZiiS/huewidgets
IssueTracker: https://github.com/ZiiS/huewidgets/issues
LiberapayID: '1574554'
Bitcoin: 1FdGg777eP4cqMrJVMRQiMXEHE2Ee6F62T
Name: Hue Widgets
RepoType: git
Repo: https://github.com/ZiiS/huewidgets.git
Builds:
- versionName: 0.0.1
versionCode: 3
commit: 0.0.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.0.1
CurrentVersionCode: 3
| Categories:
- Connectivity
License: GPL-3.0-only
WebSite: https://huewidgets.zi.is
SourceCode: https://github.com/ZiiS/huewidgets
IssueTracker: https://github.com/ZiiS/huewidgets/issues
LiberapayID: '1574554'
Bitcoin: 1FdGg777eP4cqMrJVMRQiMXEHE2Ee6F62T
Name: Hue Widgets
AutoName: Hue
RepoType: git
Repo: https://github.com/ZiiS/huewidgets.git
Builds:
- versionName: 0.0.1
versionCode: 3
commit: 0.0.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.0.1
CurrentVersionCode: 3
| Set autoname of Hue Widgets | Set autoname of Hue Widgets
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
45ab0faf8de0491319f59ccd075781bf66bf1d3b | metadata/space.rocketnine.xenia.yml | metadata/space.rocketnine.xenia.yml | Categories:
- Internet
License: MIT
WebSite: https://code.rocketnine.space/tslocum/xenia
SourceCode: https://code.rocketnine.space/tslocum/xenia
IssueTracker: https://code.rocketnine.space/tslocum/xenia/issues
Changelog: https://code.rocketnine.space/tslocum/xenia/src/branch/master/CHANGELOG
Donate: https://rocketnine.space/donate/
LiberapayID: '968545'
AutoName: Xenia
RepoType: git
Repo: https://code.rocketnine.space/tslocum/xenia.git
Builds:
- versionName: 0.1.4
versionCode: 14
commit: 0.1.4
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y -t testing golang-go
gradle:
- yes
ndk: r21e
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.1.4
CurrentVersionCode: 14
| Categories:
- Internet
License: MIT
WebSite: https://code.rocketnine.space/tslocum/xenia
SourceCode: https://code.rocketnine.space/tslocum/xenia
IssueTracker: https://code.rocketnine.space/tslocum/xenia/issues
Changelog: https://code.rocketnine.space/tslocum/xenia/src/branch/master/CHANGELOG
Donate: https://rocketnine.space/donate/
LiberapayID: '968545'
AutoName: Xenia
RepoType: git
Repo: https://code.rocketnine.space/tslocum/xenia.git
Builds:
- versionName: 0.1.4
versionCode: 14
commit: 0.1.4
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y -t testing golang-go
gradle:
- yes
ndk: r21e
- versionName: 0.1.5
versionCode: 15
commit: 86c5df4522fdd6bef64f44841b92e4928d6bcc24
subdir: app
sudo:
- apt-get update || apt-get update
- apt-get install -y -t testing golang-go
gradle:
- yes
ndk: r21e
AutoUpdateMode: Version %v
UpdateCheckMode: Tags
CurrentVersion: 0.1.5
CurrentVersionCode: 15
| Update Xenia to 0.1.5 (15) | Update Xenia to 0.1.5 (15)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
adb9f8ea1a2454c1966da7e8a5141497185d3d64 | dev/config.yml | dev/config.yml | serve:
workers: 1
include:
pyramid_debugtoolbar: True
configurator:
database:
url: "postgresql://postgres@db/warehouse"
sessions:
secret: "an insecure development secret"
url: "redis://redis:6379/0"
debugtoolbar:
panels:
- pyramid_debugtoolbar.panels.versions.VersionDebugPanel
- pyramid_debugtoolbar.panels.settings.SettingsDebugPanel
- pyramid_debugtoolbar.panels.headers.HeaderDebugPanel
- pyramid_debugtoolbar.panels.request_vars.RequestVarsDebugPanel
- pyramid_debugtoolbar.panels.renderings.RenderingsDebugPanel
- pyramid_debugtoolbar.panels.logger.LoggingPanel
- pyramid_debugtoolbar.panels.performance.PerformanceDebugPanel
- pyramid_debugtoolbar.panels.routes.RoutesDebugPanel
- pyramid_debugtoolbar.panels.sqla.SQLADebugPanel
- pyramid_debugtoolbar.panels.tweens.TweensDebugPanel
- pyramid_debugtoolbar.panels.introspection.IntrospectionDebugPanel
pyramid:
reload_assets: True
reload_templates: True
| serve:
workers: 1
include:
pyramid_debugtoolbar: True
configurator:
database:
url: "postgresql://postgres@db/warehouse"
sessions:
secret: "an insecure development secret"
url: "redis://redis:6379/0"
debugtoolbar:
hosts:
- 0.0.0.0/0
panels:
- pyramid_debugtoolbar.panels.versions.VersionDebugPanel
- pyramid_debugtoolbar.panels.settings.SettingsDebugPanel
- pyramid_debugtoolbar.panels.headers.HeaderDebugPanel
- pyramid_debugtoolbar.panels.request_vars.RequestVarsDebugPanel
- pyramid_debugtoolbar.panels.renderings.RenderingsDebugPanel
- pyramid_debugtoolbar.panels.logger.LoggingPanel
- pyramid_debugtoolbar.panels.performance.PerformanceDebugPanel
- pyramid_debugtoolbar.panels.routes.RoutesDebugPanel
- pyramid_debugtoolbar.panels.sqla.SQLADebugPanel
- pyramid_debugtoolbar.panels.tweens.TweensDebugPanel
- pyramid_debugtoolbar.panels.introspection.IntrospectionDebugPanel
pyramid:
reload_assets: True
reload_templates: True
| Allow any host to access the debug toolbar | Allow any host to access the debug toolbar
| YAML | apache-2.0 | chopmann/warehouse,dstufft/warehouse,ismail-s/warehouse,alex/warehouse,wlonk/warehouse,wlonk/warehouse,HonzaKral/warehouse,alex/warehouse,ismail-s/warehouse,karan/warehouse,alex/warehouse,dstufft/warehouse,pypa/warehouse,dstufft/warehouse,HonzaKral/warehouse,dstufft/warehouse,pypa/warehouse,HonzaKral/warehouse,karan/warehouse,alex/warehouse,chopmann/warehouse,alex/warehouse,pypa/warehouse,ismail-s/warehouse,wlonk/warehouse,pypa/warehouse,chopmann/warehouse,karan/warehouse,HonzaKral/warehouse,karan/warehouse,karan/warehouse,ismail-s/warehouse,ismail-s/warehouse |
21295d63ce9af9d6070c39637c06ae7623e257c3 | db/seeds/prisons/BNI-bullingdon-remand-only.yml | db/seeds/prisons/BNI-bullingdon-remand-only.yml | ---
name: Bullingdon (Remand Only)
nomis_id: BNI
address:
- Bicester
- OX25 1PZ
email: socialvisits.bullingdon@hmps.gsi.gov.uk
enabled: true
phone: 01869 353176
slots:
mon:
- 1400-1610
sat:
- 1400-1610
thu:
- 1400-1610
tue:
- 1400-1610
| ---
name: Bullingdon (Remand Only)
nomis_id: BNI
address:
- Bicester
- OX25 1PZ
email: socialvisits.bullingdon@hmps.gsi.gov.uk
enabled: true
phone: 01869 353176
slots:
mon:
- 1345-1545
tue:
- 1345-1545
wed:
- 1345-1545
thu:
- 1345-1545
sat:
- 1345-1545
sun:
- 1345-1545
| Update Bullingdon remand visit slots | Update Bullingdon remand visit slots
Add Wednesday and Sunday slots and update all visit times to 1345-1545.
| YAML | mit | ministryofjustice/prison-visits-public,ministryofjustice/prison-visits-public,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-public,ministryofjustice/prison-visits-public,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2 |
37c288bae4e6a8bb9400384d8e04514e930417eb | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 8.0.192, 11, 11.0.3, 17, 17.0.0+35 ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: ${{ matrix.java-version }}
- run: mvn -B install --no-transfer-progress
coverage:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 17
- run: mvn -B verify --no-transfer-progress
- uses: codecov/codecov-action@v1
with:
file: ./**/target/site/jacoco/jacoco.xml
name: codecov
| name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java-version: [ 8, 8.0.192, 11, 11.0.3, 17, 17.0.0+35 ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: ${{ matrix.java-version }}
- run: mvn -B install --no-transfer-progress
coverage:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: 17
- run: mvn -B verify --no-transfer-progress
- uses: codecov/codecov-action@v1
with:
file: ./**/target/site/jacoco/jacoco.xml
name: codecov
| Switch from temurin to zulu | Switch from temurin to zulu | YAML | mit | jonashackt/spring-boot-vuejs,jonashackt/spring-boot-vuejs,jonashackt/spring-boot-vuejs,jonashackt/spring-boot-vuejs |
97784c43ac1326106c1e2194ab7c5579e1ec62f2 | .github/workflows/build.yml | .github/workflows/build.yml | name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
with:
submodules: true
- name: Build glorytun
run: |
./sodium.sh
make prefix=. install
- uses: actions/upload-artifact@v1
with:
name: bin
path: ./bin
| name: Build
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Build glorytun
run: |
git submodule update --init --recursive
./sodium.sh
make prefix=. install
- uses: actions/upload-artifact@v1
with:
name: bin
path: ./bin
| Revert "Try to use submodules" | Revert "Try to use submodules"
This reverts commit bccc9945f44fc5e2432329bff58e6aab815b62de.
| YAML | bsd-2-clause | angt/glorytun,angt/glorytun |
3cad37dd718edfb220fa567da0be127beee55bba | config/locales/en.yml | config/locales/en.yml | en:
neighborly:
balanced:
creditcard:
payments:
new:
card:
title: 'Card Information'
billing:
title: 'Billing Information'
terms: 'By contributing, I agree with the %{link}.'
terms-link: 'Terms of Use'
confirm: 'Confirm payment'
proccessing: 'Processing...'
cards:
title: 'Stored Cards'
add_new_card: 'Add new Card'
card_ending_in: '%{brand} xxxxxxxxxxxx%{last_four}'
expiration: 'Expiration: %{date}'
errors:
card_tokenization_error: 'The card submitted is invalid.'
create:
errors:
default: "Sorry, something must've gone wrong."
| en:
neighborly:
balanced:
creditcard:
payments:
new:
card:
title: 'Card Information'
billing:
title: 'Billing Information'
terms: 'By contributing, I agree with the %{link}.'
terms-link: 'Terms of Use'
confirm: 'Confirm payment'
proccessing: 'Processing...'
cards:
title: 'Stored Cards'
add_new_card: 'Add new Card'
card_ending_in: '%{brand} xxxxxxxxxxxx%{last_four}'
expiration: 'Expiration: %{date}'
errors:
invalid_card: 'Your card is invalid.'
marketplace_uri: 'Marketplace URI is incorrect, please contact our support.'
card_tokenization_error: 'The card submitted is invalid.'
balanced: 'Balanced did something bad, please retry the request.'
create:
errors:
default: "Sorry, something must've gone wrong."
| Add errors messages to i18n | Add errors messages to i18n
| YAML | mit | FromUte/dune-balanced-creditcard,FromUte/dune-balanced-creditcard,FromUte/dune-balanced-creditcard |
62e530d0f86436a96e71df6edfe9eb32ad12ac20 | job-queue-manager/fsrs-cron/tasks/main.yml | job-queue-manager/fsrs-cron/tasks/main.yml | ---
- cron: name="sync fsrs data" minute="0" user="ec2-user" job="PYTHONPATH='/data-act/backend' python3 /data-act/backend/dataactbroker/scripts/loadFSRS.py &>> /tmp/fsrs.log"
sudo: true
| ---
- cron: name="sync fsrs data" minute="0" user="ec2-user" job="PYTHONPATH='/data-act/backend' env='{{ ENV }}' python3 /data-act/backend/dataactbroker/scripts/loadFSRS.py &>> /tmp/fsrs.log"
sudo: true
| Add env to cron command | Add env to cron command
| YAML | cc0-1.0 | fedspendingtransparency/data-act-build-tools,fedspendingtransparency/data-act-build-tools,fedspendingtransparency/data-act-build-tools |
518e5d19fa85b62a2a379ff86ce4e8fbc4c289cb | .github/workflows/build.yml | .github/workflows/build.yml | name: build
on: [push, pull_request]
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
bundler-cache: true
- run: bundle exec rake test
| name: build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
bundler-cache: true
- run: bundle exec rake test
| Test with Ruby 3.1 on CI | Test with Ruby 3.1 on CI
| YAML | mit | ankane/barkick |
c73e8ffc7754cd233af1d971766092ecab550b20 | pipeline.yml | pipeline.yml | resources:
- name: source-code
type: git
source:
uri: https://github.com/devdays-2016/hello-spring-boot.git
branch: master
- name: cf-deploy
type: cf
source:
api: https://api.run.pivotal.io
username: {{cf-username}}
password: {{cf-password}}
organization: devdays
space: development
jobs:
- name: compile-job
serial: true
plan:
- {get: source-code, trigger: true}
- task: compile
config:
inputs:
- name: source-code
platform: linux
image_resource:
type: docker-image
source: {repository: maven}
run:
path: source-code/script/test
- put: cf-deploy
params:
manifest: source-code/manifest.yml
| resources:
- name: source-code
type: git
source:
uri: https://github.com/devdays-2016/hello-spring-boot.git
branch: master
- name: cf-deploy
type: cf
source:
api: https://api.run.pivotal.io
username: {{cf-username}}
password: {{cf-password}}
organization: devdays
space: development
jobs:
- name: compile-job
serial: true
plan:
- {get: source-code, trigger: true}
- task: compile
config:
inputs:
- name: source-code
platform: linux
image_resource:
type: docker-image
source: {repository: maven}
run:
path: source-code/script/test
- task: binary
config:
inputs:
- name: source-code
outputs:
- name: build-resource
platform: linux
image_resource:
type: docker-image
source: {repository: maven}
run:
path: source-code/script/binary
- put: cf-deploy
params:
manifest: build-resource/manifest.yml
| Add new binary task to build the jar | Add new binary task to build the jar
This task needs to copy to the new output directory, also needs to
include the manifest we expect when doing a cf push.
| YAML | mit | devdays-2016/hello-spring-boot,devdays-2016/hello-spring-boot |
437ab2bb5e9bfc356ebb411c73050626a778fc38 | .github/workflows/linux.yml | .github/workflows/linux.yml | name: Linux
on: [push]
jobs:
Linux:
timeout-minutes: 15
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v1
with:
submodules: recursive
- name: Set environment
run: |
echo ::set-env name=GRABBER_VERSION::nightly
echo ::set-env name=GRABBER_IS_NIGHTLY::1
echo ::set-env name=PLATFORM_NAME::x64
- name: Install packages
run: sudo apt-get install libpulse-dev
- name: Install Qt
uses: jurplel/install-qt-action@v2.7.2
with:
version: 5.12.6
- name: Create build dir
run: mkdir build
- name: Configure
working-directory: build
run: cmake ../src -DCMAKE_BUILD_TYPE=Release -DNIGHTLY=%GRABBER_IS_NIGHTLY% -DCOMMIT="%GITHUB_SHA%" -DVERSION="%GRABBER_VERSION%"
- name: Compile
working-directory: build
run: |
cmake --build . --config Release --target sites
cmake --build . --config Release
- name: Test
uses: GabrielBB/xvfb-action@v1.2
with:
working-directory: src
run: ../build/tests/tests
- name: Generate package
run: ./scripts/package-linux.sh
| name: Linux
on: [push]
jobs:
Linux:
timeout-minutes: 20
runs-on: ubuntu-18.04
steps:
- name: Checkout
uses: actions/checkout@v1
with:
submodules: recursive
- name: Set environment
run: |
echo ::set-env name=GRABBER_VERSION::nightly
echo ::set-env name=GRABBER_IS_NIGHTLY::1
echo ::set-env name=PLATFORM_NAME::x64
- name: Install packages
run: sudo apt-get install libpulse-dev
- name: Install Qt
uses: jurplel/install-qt-action@v2.7.2
with:
version: 5.12.6
- name: Create build dir
run: mkdir build
- name: Configure
working-directory: build
run: cmake ../src -DCMAKE_BUILD_TYPE=Release -DNIGHTLY=%GRABBER_IS_NIGHTLY% -DCOMMIT="%GITHUB_SHA%" -DVERSION="%GRABBER_VERSION%"
- name: Compile
working-directory: build
run: |
cmake --build . --config Release --target sites
cmake --build . --config Release
- name: Test
uses: GabrielBB/xvfb-action@v1.2
with:
working-directory: src
run: ../build/tests/tests
- name: Generate package
run: ./scripts/package-linux.sh
| Increase github macOS workflow timeout from 15 to 20min | Increase github macOS workflow timeout from 15 to 20min
| YAML | apache-2.0 | Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber,Bionus/imgbrd-grabber |
9dc92e874b622d9c2f0160de5376ef650e550427 | .github/workflows/maven.yml | .github/workflows/maven.yml | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
java: [ 8, 11, 15 ]
experimental: [false]
include:
- java: 16-ea
experimental: true
- java: 17-ea
experimental: true
steps:
- uses: actions/checkout@v2.3.4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1.4.3
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -V --no-transfer-progress
| # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
java: [ 8, 11, 16 ]
experimental: [false]
include:
- java: 17-ea
experimental: true
steps:
- uses: actions/checkout@v2.3.4
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1.4.3
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -V --no-transfer-progress
| Replace GitHub build for Java 15 with Java 16 and drop Java 16-ea. | Replace GitHub build for Java 15 with Java 16 and drop Java 16-ea.
| YAML | apache-2.0 | apache/commons-imaging,apache/commons-imaging |
5dea0694f0d6b620a05a567a4d809ac53369ca8c | .github/workflows/maven.yml | .github/workflows/maven.yml | # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven dependencies
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2-
- name: Build with Maven
run: mvn -B package --file pom.xml
| # This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cache Maven dependencies
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2-
- name: Build with Maven
run: mvn -B package --file pom.xml
| Increase github action timeout time to try to get it to work | Increase github action timeout time to try to get it to work
| YAML | apache-2.0 | nla/bamboo,nla/bamboo,nla/bamboo,nla/bamboo |
6887be9e680756d8e17b5aa19ac034a9c172df1e | .github/workflows/stale.yml | .github/workflows/stale.yml | name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions."
stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions."
days-before-stale: 560
days-before-close: 30
operations-per-run: 30
| name: "Close stale issues"
on:
schedule:
- cron: "0 0 * * *"
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions."
stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions."
days-before-stale: 365
days-before-close: 30
operations-per-run: 30
| Change from 18 months to 1 year | Change from 18 months to 1 year | YAML | mit | zo0r/react-native-push-notification,zo0r/react-native-push-notification,zo0r/react-native-push-notification |
1fee416ea2fa9b4cb63bc5f96d07463f24921342 | docker-paas.yml | docker-paas.yml | redis:
image: redis:2.8
restart: always
www:
build: .
ports:
- "8080"
links:
- redis
environment:
- APP_PORT=8080
- MONGO_URI
- NODE_ENV=production
- NPM_CONFIG_LOGLEVEL=info
- SENTRY_DNS
command: npm start
restart: always
| redis:
image: redis:2.8
restart: always
www:
build: .
ports:
- "8080"
links:
- redis
environment:
- APP_PORT=8080
- MONGO_URI
- NODE_ENV=production
- NPM_CONFIG_LOGLEVEL=info
- SENTRY_DNS
restart: always
| Use command from Dockerfile in prod | Use command from Dockerfile in prod
| YAML | mit | Turistforeningen/Turbasen,Turbasen/Turbasen |
2c927e6247e597ae2dfd91ab693d2a0be9eeb0ab | docs/antora.yml | docs/antora.yml | name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: '1.16'
nav:
- modules/ROOT/nav.adoc
| name: rubocop
title: RuboCop
# We always provide version without patch here (e.g. 1.1),
# as patch versions should not appear in the docs.
version: 'master'
nav:
- modules/ROOT/nav.adoc
| Switch back the docs version | Switch back the docs version
| YAML | mit | rrosenblum/rubocop,maxjacobson/rubocop,maxjacobson/rubocop,maxjacobson/rubocop,tejasbubane/rubocop,tejasbubane/rubocop,bbatsov/rubocop,bbatsov/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,rrosenblum/rubocop |
da53f4038541a0574021926edeff2edc76516efa | dlib/meta.yaml | dlib/meta.yaml | package:
name: dlib
version: "18.10"
source:
fn: dlib-18.10.tar.bz2
url: http://sourceforge.net/projects/dclib/files/dlib/v18.10/dlib-18.10.tar.bz2/download
sha1: 8010cd5c173277d7327135f75f3565d15491592e
patches:
- gui_patch.patch
build:
number: 2
requirements:
build:
- python
- cmake # [win]
- boost
- jpeg
- libpng
- sqlite
run:
- python
- boost
- jpeg
- libpng
- sqlite
test:
imports:
- dlib
about:
home: http://dlib.net/
license: Boost Software License
| package:
name: dlib
version: "18.10"
source:
fn: dlib-18.10.tar.bz2
url: http://sourceforge.net/projects/dclib/files/dlib/v18.10/dlib-18.10.tar.bz2/download
sha1: 8010cd5c173277d7327135f75f3565d15491592e
patches:
- gui_patch.patch
build:
number: 3
requirements:
build:
- python
- cmake # [win]
- boost
- jpeg
- libpng
- sqlite
run:
- python
- boost
- jpeg
- libpng
- sqlite
test:
imports:
- dlib
about:
home: http://dlib.net/
license: Boost Software License
| Update to build 3 for new libpng | Update to build 3 for new libpng
| YAML | bsd-3-clause | menpo/conda-recipes,menpo/conda-recipes |
eb6632450fb65650a9f1125123f8d083729fe4c6 | etc/kayobe/overcloud.yml | etc/kayobe/overcloud.yml | ---
###############################################################################
# Overcloud configuration.
# Default Ansible group for overcloud hosts.
#overcloud_group_default:
# List of names of Ansible groups for overcloud hosts.
#overcloud_groups:
# Dict mapping overcloud Ansible group names to lists of hosts in the group.
# As a special case, the group 'ignore' can be used to specify hosts that
# should not be added to the inventory.
#overcloud_group_hosts_map:
overcloud_group_hosts_map:
controllers:
- sv-b16-u23
ignore:
- sv-b16-u21
- sv-b16-u22
###############################################################################
# Dummy variable to allow Ansible to accept this file.
workaround_ansible_issue_8743: yes
| ---
###############################################################################
# Overcloud configuration.
# Default Ansible group for overcloud hosts.
#overcloud_group_default:
# List of names of Ansible groups for overcloud hosts.
#overcloud_groups:
# Dict mapping overcloud Ansible group names to lists of hosts in the group.
# As a special case, the group 'ignore' can be used to specify hosts that
# should not be added to the inventory.
#overcloud_group_hosts_map:
overcloud_group_hosts_map:
controllers:
- sv-b16-u23
ignore:
- sv-b16-u21
- sv-b16-u22
# To prevent some network issues you can choose to disable cloud-init
#disable_cloud_init:
disable_cloud_init: True
###############################################################################
# Dummy variable to allow Ansible to accept this file.
workaround_ansible_issue_8743: yes
| Disable cloud-init on control plane hosts | Disable cloud-init on control plane hosts
When glean is used as the cloud initial configuration service, having cloud-init
enabled can cause issues. If cloud-init cannot detect network configuration, it
will apply a fallback configuration, enabling DHCP on one interface. This can
break existing network configuration, so we disable cloud-init to avoid this.
| YAML | apache-2.0 | SKA-ScienceDataProcessor/alaska-kayobe-config |
eb944d945731c4a180a506e4bdebb090e817f427 | .github/workflows/tests.yml | .github/workflows/tests.yml | name: Tests
on: [pull_request]
jobs:
phpunit:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.1', '7.2', '7.3', '7.4', '8.0']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2.1.3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader
- name: PHP Unit tests
run: vendor/bin/phpunit --verbose
| name: Tests
on: [pull_request]
jobs:
phpunit:
name: PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['7.1', '7.2', '7.3', '7.4', '8.0']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2.1.4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader
- name: PHP Unit tests
run: vendor/bin/phpunit --verbose
| Bump actions/cache from v2.1.3 to v2.1.4 | Bump actions/cache from v2.1.3 to v2.1.4
Bumps [actions/cache](https://github.com/actions/cache) from v2.1.3 to v2.1.4.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](https://github.com/actions/cache/compare/v2.1.3...26968a09c0ea4f3e233fdddbafd1166051a095f6)
Signed-off-by: dependabot[bot] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@github.com> | YAML | apache-2.0 | bizley/yii2-quill,bizley-code/yii2-quill |
c09f169974eedd36771686f778fb23d802e4af1a | roles/jenkins/tasks/plugin.yml | roles/jenkins/tasks/plugin.yml | ---
- name: Install git
yum: name=git state=latest update_cache=yes
tags:
- jenkins
- plugin
- name: Get jenkins cli
get_url: url={{ jenkins_cli_url }} dest={{ jenkins_cli_dest }}
register: result
until: result.msg.find("Request failed") == -1
retries: 5
delay: 10
tags:
- jenkins
- plugin
- name: Create updates directory
file: path={{ jenkins_updates_dir }} mode=0755
tags:
- jenkins
- plugin
- name: Create jenkins plugin file
shell: >
curl -L {{ jenkins_updates_center_url }} | sed '1d;$d' > {{ jenkins_updates_json_path }}
creates={{ jenkins_updates_json_path }}
tags:
- jenkins
- plugin
- name: Restart jenkins
service: name=jenkins state=restarted
tags:
- jenkins
- plugin
- name: Install git plugin
command: java -jar {{ jenkins_cli_dest }} -s http://{{ jenkins_host_name }}:{{ jenkins_port }} install-plugin git
register: git_plugin_installed_result
until: git_plugin_installed_result.stderr == ""
retries: 5
delay: 10
notify: restart jenkins
tags:
- jenkins
- plugin
| ---
- name: Install git
yum: name=git state=latest update_cache=yes
tags:
- jenkins
- plugin
- name: Get jenkins cli
get_url: url={{ jenkins_cli_url }} dest={{ jenkins_cli_dest }}
register: result
until: result.msg.find("Request failed") == -1
retries: 5
delay: 10
tags:
- jenkins
- plugin
- name: Create updates directory
file: path={{ jenkins_updates_dir }} mode=0755
tags:
- jenkins
- plugin
- name: Create jenkins plugin file
shell: >
curl -L {{ jenkins_updates_center_url }} | sed '1d;$d' > {{ jenkins_updates_json_path }}
creates={{ jenkins_updates_json_path }}
tags:
- jenkins
- plugin
- name: Restart jenkins
service: name=jenkins state=restarted
tags:
- jenkins
- plugin
- name: Install git plugin
command: java -jar {{ jenkins_cli_dest }} -s http://{{ jenkins_host_name }}:{{ jenkins_port }} install-plugin git
register: git_plugin_installed_result
until: git_plugin_installed_result.stderr == ""
retries: 60
delay: 10
notify: restart jenkins
tags:
- jenkins
- plugin
| Increase the times of retry to wait until the jenkins to fully running | Increase the times of retry to wait until the jenkins to fully running
| YAML | mit | OSSConsCloud/ansible_wg,OSSConsCloud/ansible_wg |
ecd7301893ad29b03a387126cdfe9ac202d01df2 | docs/antora.yml | docs/antora.yml | name: ''
title: Spring Security
version: ~
display_version: 5.6
start_page: ROOT:index.adoc
nav:
- modules/ROOT/nav.adoc
| name: ''
title: Spring Security
version: 5.6
start_page: ROOT:index.adoc
nav:
- modules/ROOT/nav.adoc
| Use version in docs URL | Use version in docs URL
| YAML | apache-2.0 | rwinch/spring-security,spring-projects/spring-security,spring-projects/spring-security,rwinch/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,spring-projects/spring-security,rwinch/spring-security,rwinch/spring-security,spring-projects/spring-security,rwinch/spring-security,rwinch/spring-security |
03fc376390bdc9e12c460212f34afd708f47b845 | pubspec.yaml | pubspec.yaml | name: flutter_widgets
version: 0.1.6-dev.1
description: >
Flutter widgets that are developed by Google but not by the core
Flutter team.
authors:
- djshuckerow@google.com
- anthony.bullard@gmail.com
- jamesdlin@google.com
- robinsontom@google.com
homepage: https://github.com/google/flutter.widgets
environment:
sdk: ">=2.3.0 <3.0.0"
flutter: ^1.9.1
dependencies:
collection: ^1.14.5
flutter:
sdk: flutter
html: ^0.14.0
intl: ^0.16.0
meta: ^1.1.1
quiver: ^2.0.0+1
dev_dependencies:
test: ^1.3.0
mockito: ^3.0.0
flutter_test:
sdk: flutter
| name: flutter_widgets
version: 0.1.6-dev.1
description: >
Flutter widgets that are developed by Google but not by the core
Flutter team.
authors:
- djshuckerow@google.com
- anthony.bullard@gmail.com
- jamesdlin@google.com
- robinsontom@google.com
homepage: https://github.com/google/flutter.widgets
environment:
sdk: ">=2.3.0 <3.0.0"
flutter: ^1.9.1
dependencies:
collection: ^1.14.5
flutter:
sdk: flutter
html: ^0.14.0
intl: ^0.16.0
meta: ^1.1.1
quiver: ^2.0.0+1
dev_dependencies:
test: ^1.3.0
mockito: ^3.0.0
pedantic: ^1.8.0
flutter_test:
sdk: flutter
| Add a missing dependency on package:pedantic | Add a missing dependency on package:pedantic
| YAML | bsd-3-clause | google/flutter.widgets,google/flutter.widgets |
ad62e13034f1efd75275780e2572c6b3a4722062 | _data/authors.yml | _data/authors.yml | # Authors
kirill:
name: Kirill Pomogajko
email: kirill@pomogajko.com
bio: "Breathes R, discovers Linux, avoids spreadsheets."
avatar: kirill.jpg
twitter: pomogajko
github: Quiri
jess:
name: Jessica Peterka-Bonetta
email: jessica@today-is-a-good-day.de
bio: "Data science enthusiast, psychologist, keen on R and diging into Big Data."
avatar: jess.jpg
twitter: jpeterkabonetta
| # Authors
kirill:
name: Kirill Pomogajko
email: kirill@pomogajko.com
bio: "Breathes R, discovers Linux, avoids spreadsheets."
avatar: kirill.jpg
twitter: pomogajko
github: Quiri
jess:
name: Jessica Peterka-Bonetta
email: jessica@today-is-a-good-day.de
bio: "Data science enthusiast, psychologist, keen on R and diging into Big Data."
avatar: jess.jpg
twitter: jpeterkabonetta
github: today-is-a-good-day
linkedin: jpeterkabonetta
| Add github & linkedin jess | Add github & linkedin jess | YAML | mit | yukiegosapporo/quiri.github.io,today-is-a-good-day/quiri.github.io,safferli/quiri.github.io,Quiri/quiri.github.io,yukiegosapporo/quiri.github.io,safferli/quiri.github.io,safferli/quiri.github.io,today-is-a-good-day/quiri.github.io,Quiri/quiri.github.io,yukiegosapporo/quiri.github.io,safferli/quiri.github.io,Quiri/quiri.github.io,Quiri/quiri.github.io,today-is-a-good-day/quiri.github.io,today-is-a-good-day/quiri.github.io,yukiegosapporo/quiri.github.io,safferli/quiri.github.io,Quiri/quiri.github.io,today-is-a-good-day/quiri.github.io |
e9d34f51d4f7fa8576232a390b8bc97eb8db7754 | circle.yml | circle.yml | dependencies:
override:
- curl -L https://atom.io/download/deb -o atom-amd64.deb
- sudo dpkg --install atom-amd64.deb || true
- sudo apt-get update
- sudo apt-get -f install
- nvm use 5.1.0
- npm run bootstrap
test:
override:
- npm test
- npm run lint
machine:
node:
version: 5.1.0
| dependencies:
override:
- curl -L https://atom.io/download/deb -o atom-amd64.deb
- sudo dpkg --install atom-amd64.deb || true
- sudo apt-get update
- sudo apt-get -f install
- nvm use 5.1.0
- npm install
- npm run bootstrap
test:
override:
- npm test
- npm run lint
machine:
node:
version: 5.1.0
| Install deps in CI properly | :bug: Install deps in CI properly
| YAML | mpl-2.0 | flintjs/flint,flintjs/flint,flintjs/flint,motion/motion,motion/motion |
b95c43d6409b13967604d9d06606deed1f5aabf9 | environment.yml | environment.yml | name: priocomp
channels:
- defaults
- bioconda
- mutirri
- r
dependencies:
- python=3.*
- click
- fiona
- flake8
- flask
- GDAL>=2.0.0
- numpy=1.10
- py
- pytest
- rasterio
- r
- r-devtools
- r-ggplot2
- r-raster
- r-recommended
- r-testthat
- scipy
- snakemake
- Sphinx
- tox
- yaml
- pip:
- easywebdav
- python-dotenv
| name: priocomp
channels:
- defaults
- bioconda
- mutirri
- r
dependencies:
- python=3.*
- click
- fiona
- flake8
- flask
- GDAL>=2.0.0
- numpy=1.10
- py
- pytest
- rasterio
- r
- r-devtools
- r-ggplot2
- r-raster
- r-recommended
- r-testthat
- rpy2
- scipy
- snakemake
- Sphinx
- tox
- yaml
- pip:
- easywebdav
- python-dotenv
| Add rpy2 as a dep | Add rpy2 as a dep
| YAML | mit | VUEG/priocomp,VUEG/priocomp,VUEG/priocomp,VUEG/priocomp |
51a0bc25e64de9a7f5a0ffeb70a9a53b87b0a92f | .github/workflows/deploy.yml | .github/workflows/deploy.yml | name: CI deploy
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup python for test ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Add poetry
uses: abatilo/actions-poetry@v2.1.3
with:
poetry-version: "1.1.11"
- uses: actions/checkout@v2
- name: Set poetry token
run: poetry config http-basic.pypi __token__ ${{ secrets.POETRY_TOKEN }}
- name: Publish to pypi
run: poetry publish
| name: CI deploy
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup python for test ${{ matrix.python }}
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Add poetry
uses: abatilo/actions-poetry@v2.1.3
with:
poetry-version: "1.1.11"
- uses: actions/checkout@v2
- name: Set poetry token
run: poetry config http-basic.pypi __token__ ${{ secrets.POETRY_TOKEN }}
- name: Publish to pypi
run: poetry publish
| Fix release job on filter | Fix release job on filter
| YAML | bsd-3-clause | thorgate/django-esteid,thorgate/django-esteid,thorgate/django-esteid |
142dc5ac157af056e3d52f5ea98de4b8d80c449c | pubspec.yaml | pubspec.yaml | name: intl_translation
version: 0.17.8-dev
author: Dart Team <misc@dartlang.org>
description: >-
Contains code to deal with internationalized/localized messages,
date and number formatting and parsing, bi-directional text, and
other internationalization issues.
homepage: https://github.com/dart-lang/intl_translation
environment:
sdk: '>=2.0.0 <3.0.0'
dependencies:
analyzer: '>=0.36.0 <0.39.0'
args: '>=0.12.1 <2.0.0'
dart_style: ^1.0.0
intl: '>=0.15.3 <0.17.0'
path: '>=0.9.0 <2.0.0'
petitparser: '>=1.1.3 < 3.0.0'
dev_dependencies:
test: ^1.2.0
| name: intl_translation
version: 0.17.8
author: Dart Team <misc@dartlang.org>
description: >-
Contains code to deal with internationalized/localized messages,
date and number formatting and parsing, bi-directional text, and
other internationalization issues.
homepage: https://github.com/dart-lang/intl_translation
environment:
sdk: '>=2.0.0 <3.0.0'
dependencies:
analyzer: '>=0.36.0 <0.40.0'
args: '>=0.12.1 <2.0.0'
dart_style: ^1.0.0
intl: '>=0.15.3 <0.17.0'
path: '>=0.9.0 <2.0.0'
petitparser: '>=1.1.3 < 3.0.0'
dev_dependencies:
test: ^1.2.0
| Update analyzer dependency and bump to 0.17.8 | Update analyzer dependency and bump to 0.17.8
PiperOrigin-RevId: 288368494
| YAML | bsd-3-clause | dart-lang/intl_translation,dart-lang/intl_translation |
537b2746c5fa2d754806c20c7898d62b7d485eb5 | pubspec.yaml | pubspec.yaml | name: react
version: 3.4.4
author: Clean Team <clean@vacuumlabs.com>
description: Bindings of the ReactJS library for building interactive interfaces.
homepage: http://cleandart.github.io/react-dart/
environment:
sdk: '>=1.13.0 <2.0.0'
dependencies:
browser: '>=0.9.0 <0.11.0'
js: '^0.6.0'
dev_dependencies:
test: '^0.12.18+1'
| name: react
version: 3.4.4
author: Clean Team <clean@vacuumlabs.com>
description: Bindings of the ReactJS library for building interactive interfaces.
homepage: http://cleandart.github.io/react-dart/
environment:
sdk: '>=1.13.0 <2.0.0'
dependencies:
browser: '>=0.9.0 <0.11.0'
js: '^0.6.0'
dev_dependencies:
test: '^0.12.18+1'
transformers:
- test/pub_serve:
$include: test/**_test.dart
| Add transformer so tests can be run in DDC using `--pub-serve` flag | Add transformer so tests can be run in DDC using `--pub-serve` flag
| YAML | bsd-2-clause | cleandart/react-dart,cleandart/react-dart,cleandart/react-dart,cleandart/react-dart |
25f4e706239805549f8c874af089dc47e2b562a4 | pubspec.yaml | pubspec.yaml | name: dartson
version: 0.2.5
author: Eric Schneller <eric@schnellers.name>
description: Dartson is a Dart library that can be used to convert Dart objects into a JSON string. It uses dart:mirrors reflection to rebuild the schema. It also works in dart2js using code transformers.
homepage: https://github.com/eredo/dartson
environment:
sdk: '>=1.3.0'
dependencies:
analyzer: ">=0.22.4 <0.27.0"
barback: ">=0.15.2+2 <0.16.0"
logging: ">=0.9.3 <0.12.0"
source_maps: ">=0.10.0 <0.11.0"
source_span: ">=1.0.3 <2.0.0"
dev_dependencies:
path: any
test: any
| name: dartson
version: 0.2.5
author: Eric Schneller <eric@schnellers.name>
description: Dartson is a Dart library that can be used to convert Dart objects into a JSON string. It uses dart:mirrors reflection to rebuild the schema. It also works in dart2js using code transformers.
homepage: https://github.com/eredo/dartson
environment:
sdk: '>=1.3.0'
dependencies:
analyzer: ^0.22.4
barback: ">=0.15.2+2 <0.16.0"
logging: ">=0.9.3 <0.12.0"
source_maps: ">=0.10.0 <0.11.0"
source_span: ">=1.0.3 <2.0.0"
dev_dependencies:
path: any
test: any
| Update analyzer dependency for broader compatibility (incl Polymer 1.0 RC11+) | Update analyzer dependency for broader compatibility (incl Polymer 1.0 RC11+)
| YAML | mit | gerald24/dartson,eredo/dartson,gerald24/dartson,gerald24/dartson,eredo/dartson |
cf0cac846c9468c92b80a17e1560eb91c8873f6c | .github/workflows/deploy.yml | .github/workflows/deploy.yml | name: Server Build & Push
on:
push:
branches: [master]
paths:
- "server/**"
- "app/**"
- "helpers/**"
- "internals/**"
- "seeders/**"
- docker-compose.prod.yml
- Dockerfile
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Create env file
run: |
touch .env
echo "${{ secrets.SERVER_ENV_PROD }}" > .env
cat .env
- name: Build image
run: docker compose -f docker-compose.prod.yml build
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log in to DO Container Registry
run: doctl registry login --expiry-seconds 600
- name: Push image to DO Container Registry
run: docker compose -f docker-compose.prod.yml push
- name: Deploy Stack
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.GL_SSH_HOST }}
username: ${{ secrets.GL_SSH_USERNAME }}
key: ${{ secrets.GL_SSH_SECRET }}
port: ${{ secrets.GL_SSH_PORT }}
script: |
./deploy/init.sh
| name: Server Build & Push
on:
workflow_dispatch:
push:
branches: [master]
paths:
- "server/**"
- "app/**"
- "helpers/**"
- "internals/**"
- "seeders/**"
- docker-compose.prod.yml
- Dockerfile
jobs:
build_and_push:
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Create env file
run: |
touch .env
echo "${{ secrets.SERVER_ENV_PROD }}" > .env
cat .env
- name: Build image
run: docker compose -f docker-compose.prod.yml build
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log in to DO Container Registry
run: doctl registry login --expiry-seconds 600
- name: Push image to DO Container Registry
run: docker compose -f docker-compose.prod.yml push
- name: Deploy Stack
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.GL_SSH_HOST }}
username: ${{ secrets.GL_SSH_USERNAME }}
key: ${{ secrets.GL_SSH_SECRET }}
port: ${{ secrets.GL_SSH_PORT }}
script: |
./deploy/init.sh
| Add workflow dispatch to github actions | Add workflow dispatch to github actions
| YAML | mit | ScoutingIJsselgroep/Jotihunt,ScoutingIJsselgroep/Jotihunt,ScoutingIJsselgroep/Jotihunt |
ab2879bc310e5f9c32191a849f79f0d08919cccb | circle.yml | circle.yml | machine:
node:
version: 6.9.1
deployment:
production:
branch: master
commands:
- ./bin/deploy.sh
| machine:
node:
version: 6.9.1
services:
- docker
deployment:
production:
branch: master
commands:
- ./bin/deploy.sh
| Add Docker to CirceCI services | [Infra] Add Docker to CirceCI services
| YAML | mit | weblabhq/fillo,weblabhq/fillo |
a9728f7c41b41eef2dc8068859f74e0641576ce1 | .github/workflows/heroku.yml | .github/workflows/heroku.yml | name: Heroku
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Install databases
run: sudo apt-get -y install libpq-dev libsqlite3-dev
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
- name: Deploy to Heroku
run: git push https://heroku:$HEROKU_API_TOKEN@git.heroku.com/pennfoodtrucks.git master
| name: Heroku
on:
release:
types: [published]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Ruby 2.6
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6.x
- name: Install databases
run: sudo apt-get -y install libpq-dev libsqlite3-dev
- name: Build and test with Rake
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
- name: Deploy to Heroku
run: git push https://heroku:$HEROKU_API_TOKEN@git.heroku.com/pennfoodtrucks.git HEAD:master
| Fix Heroku Github workflow checkout | Fix Heroku Github workflow checkout
| YAML | agpl-3.0 | adelq/pennfoodtrucks,adelq/pennfoodtrucks,adelq/pennfoodtrucks |
e4fcb77f9cc4b62484123547806b9c242bc05a06 | .github/workflows/nodejs.yml | .github/workflows/nodejs.yml | name: build
on:
push:
branches:
- master
# Run tests for any PRs.
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 13.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.5
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm run build
run: npm run build
- name: npm run test
run: npm run test
env:
CI: true
| name: build
on:
push:
branches:
- master
# Run tests for any PRs.
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 13.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.2.0
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: npm install
- name: npm run build
run: npm run build
- name: npm run test
run: npm run test
env:
CI: true
| Update actions/setup-node action to v2.2.0 | Update actions/setup-node action to v2.2.0
| YAML | mit | frozzare/is-personnummer,personnummer/js,personnummer/js |
9ff60ea49ebee03860238bb665939a9508b5ec27 | circle.yml | circle.yml | dependencies:
override:
- bundle install
- npm install -g sassdoc
general:
branches:
ignore:
- gh-pages
machine:
node:
version: 6.9.5
test:
override:
- bundle exec rake
post:
- sassdoc core/ --parse --verbose --strict
| dependencies:
override:
- bundle install
- npm install -g sassdoc@2.2.0
general:
branches:
ignore:
- gh-pages
machine:
node:
version: 6.9.5
test:
override:
- bundle exec rake
post:
- sassdoc core/ --parse --verbose --strict
| Set a version for SassDoc | Set a version for SassDoc
| YAML | mit | thoughtbot/bourbon,Jazz-Man/bourbon,thoughtbot/bourbon,Jazz-Man/bourbon |
9680e9431350b1d8d140be126dc92eacca14f1b7 | circle.yml | circle.yml | machine:
node:
version: 4.4.5
dependencies:
cache_directories:
- /home/ubuntu/nvm/versions/node/v4.4.5/bin
- /home/ubuntu/nvm/versions/node/v4.4.5/lib/node_modules
override:
- npm install
- bower install
- npm rebuild node-sass
deployment:
production:
branch: master
commands:
- 'node_modules/.bin/ember deploy production --activate'
staging:
branch: develop
commands:
- 'node_modules/.bin/ember deploy staging --activate'
| machine:
node:
version: 4.4.5
dependencies:
cache_directories:
- /home/ubuntu/nvm/versions/node/v4.4.5/bin
- /home/ubuntu/nvm/versions/node/v4.4.5/lib/node_modules
override:
- npm install -g bower
- npm install
- bower install
- npm rebuild node-sass
deployment:
production:
branch: master
commands:
- 'node_modules/.bin/ember deploy production --activate'
staging:
branch: develop
commands:
- 'node_modules/.bin/ember deploy staging --activate'
| Add bower back in, this is needed | Add bower back in, this is needed
| YAML | mit | code-corps/code-corps-ember,eablack/code-corps-ember,eablack/code-corps-ember,jderr-mx/code-corps-ember,code-corps/code-corps-ember,jderr-mx/code-corps-ember |
22364ce7a045525372a19c1686c94e93c1d9383e | circle.yml | circle.yml | machine:
java:
version: openjdk8
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter tools,extra-android-m2repository,extra-android-support,extra-google-google_play_services,extra-google-m2repository,android-23
- echo y | android update sdk --no-ui --all --filter build-tools-23.0.2
test:
pre:
# start the emulator
- emulator -avd circleci-android22 -no-audio -no-window:
background: true
parallel: true
# wait for it to have booted
- circle-android wait-for-boot
override:
- adb start-server:
background: true
- ./gradlew test assembleDebug --console=plain
# Unlock the lockscreen on the emulator
- adb shell input keyevent 82
- adb shell input keyevent 92
- ./gradlew connectedAndroidTest --console=plain
post:
- cp -r app/build/outputs $CIRCLE_ARTIFACTS
# copy the test results to the test results directory.
- find app/build/test-results -name "*.xml" -exec cp {} $CIRCLE_TEST_REPORTS/ \;
- cp -r app/build/outputs/androidTest-results/* $CIRCLE_TEST_REPORTS
| machine:
java:
version: openjdk8
dependencies:
pre:
- echo y | android update sdk --no-ui --all --filter tools,extra-android-m2repository,extra-android-support,extra-google-google_play_services,extra-google-m2repository,android-23
- echo y | android update sdk --no-ui --all --filter build-tools-23.0.2
test:
pre:
# start the emulator
- emulator -avd circleci-android22 -no-audio -no-window:
background: true
parallel: true
# wait for it to have booted
- circle-android wait-for-boot
override:
- fb-adb start-server:
background: true
- ./gradlew test assembleDebug --console=plain
# Unlock the lockscreen on the emulator
- fb-adb shell input keyevent 82
- fb-adb shell input keyevent 92
- ./gradlew connectedAndroidTest --console=plain
post:
- cp -r app/build/outputs $CIRCLE_ARTIFACTS
# copy the test results to the test results directory.
- find app/build/test-results -name "*.xml" -exec cp {} $CIRCLE_TEST_REPORTS/ \;
- cp -r app/build/outputs/androidTest-results/* $CIRCLE_TEST_REPORTS
| Use fb-adb instead of adb | Use fb-adb instead of adb
| YAML | mit | alexander255/KISS |
f087154de4dcb2267e46bb3b7075c99dac351914 | circle.yml | circle.yml | general:
branches:
ignore:
- gh-pages
machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
dependencies:
override:
- circleci/get-latest-chrome.sh
- yarn global add npm
- yarn
cache_directories:
- ~/.cache/yarn
test:
override:
- yarn test
| general:
branches:
ignore:
- gh-pages
machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
dependencies:
override:
- circleci/get-latest-chrome.sh
- yarn global add npm
- yarn
cache_directories:
- ~/.cache/yarn
test:
override:
- yarn test
deployment:
demo:
branch: master
commands:
- yarn deploy
| Add demo deployment to CircleCI | Add demo deployment to CircleCI
In order to simplify life we want to automatically publish the latest
HEAD of master to the project's gh-pages branch to show off the work.
| YAML | mit | bryanstephens/vue-tic-tac-toe,bryanstephens/vue-tic-tac-toe,bryanstephens/vue-tic-tac-toe |
7e9075f11fd8797ba47cc31e73399e62a61a6b41 | circle.yml | circle.yml | machine:
node:
version: 4.3.0
test:
override:
- exit 0
deployment:
dev:
branch: develop
commands:
- npm run deploy-dev
prod:
tag: /v[0-9]+(\.[0-9]+)*/
commands:
- npm run deploy-prod
| machine:
node:
version: 8.10.0
dependencies:
post:
- npm run lint
test:
override:
- exit 0
deployment:
dev:
branch: develop
commands:
- npm run deploy-dev
prod:
tag: /v[0-9]+(\.[0-9]+)*/
commands:
- npm run deploy-prod
| Update Node version in CircleCI | Update Node version in CircleCI
| YAML | mit | zeplin/zeplin-html-to-pdf |
cd50c7e207f705541e845281e57073858f48af2f | packages/ha/haskus-utils-types.yaml | packages/ha/haskus-utils-types.yaml | homepage: http://www.haskus.org
changelog-type: ''
hash: 4afd7e29d1ed436098d65ed09242cd1ec72bad20a867c1c3c60a074e4b1d5f07
test-bench-deps:
base: -any
doctest: ! '>=0.16'
maintainer: sylvain@haskus.fr
synopsis: Haskus types utility modules
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
all-versions:
- '1.0'
- '1.1'
- '1.2'
- '1.3'
- 1.3.1
- '1.4'
- 1.4.1
author: Sylvain Henry
latest: 1.4.1
description-type: haddock
description: Haskus types utility modules (Nat, List, etc.)
license-name: BSD-3-Clause
| homepage: https://www.haskus.org
changelog-type: ''
hash: 8f5ddbe1cd1c654e5cfaa6da1f12bd8d71e2d41216475d1a0dfd5590e5e68b1c
test-bench-deps:
base: ! '>=4.9 && <5'
doctest: ! '>=0.16'
maintainer: sylvain@haskus.fr
synopsis: Haskus types utility modules
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
all-versions:
- '1.0'
- '1.1'
- '1.2'
- '1.3'
- 1.3.1
- '1.4'
- 1.4.1
- '1.5'
author: Sylvain Henry
latest: '1.5'
description-type: haddock
description: Haskus types utility modules (Nat, List, etc.)
license-name: BSD-3-Clause
| Update from Hackage at 2019-12-21T11:13:45Z | Update from Hackage at 2019-12-21T11:13:45Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
7f76a3c235f086ab9a6742f3cc1b5ce154779b82 | scripts/ci/deploy_cf.build.yml | scripts/ci/deploy_cf.build.yml | ---
platform: linux
image: docker:///cloudfoundry/diego-pipeline
inputs:
- name: cf-release
- name: deployments-runtime
params:
BOSH_PASSWORD: ~
BOSH_TARGET: ~
BOSH_USER: ~
ENVIRONMENT_NAME: ~
INFRASTRUCTURE: ~
run:
path: diego-release/scripts/ci/deploy_cf
| ---
platform: linux
image: docker:///cloudfoundry/diego-pipeline
inputs:
- name: cf-release
- name: deployments-runtime
- name: diego-release
params:
BOSH_PASSWORD: ~
BOSH_TARGET: ~
BOSH_USER: ~
ENVIRONMENT_NAME: ~
INFRASTRUCTURE: ~
run:
path: diego-release/scripts/ci/deploy_cf
| Add diego-release back as an input | Add diego-release back as an input
Signed-off-by: Matt Royal <6463362714fdee6ae948b4a582165edffac2664e@pivotal.io>
| YAML | apache-2.0 | cloudfoundry-incubator/diego-release,cloudfoundry-incubator/diego-release,cloudfoundry-incubator/diego-release,cloudfoundry-incubator/diego-release |
5655676a6f11820e802d0f31e3efa8f54a05f0dd | .travis.yml | .travis.yml | sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4.0"
- "4.1"
- "4.2"
- "5"
- "6"
- "iojs"
before_install:
- npm install -g npm
before_script:
- npm uninstall grunt # https://github.com/npm/npm/issues/3958
matrix:
fast_finish: true
| sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4.0"
- "4.1"
- "4.2"
- "5"
- "6"
- "7"
- "8"
- "iojs"
before_install:
- npm install -g npm
before_script:
- npm uninstall grunt # https://github.com/npm/npm/issues/3958
matrix:
fast_finish: true
| Add Node.js v7 and v8 to Travis CI | Add Node.js v7 and v8 to Travis CI
| YAML | mit | paladox/grunt |
a728eefa5b204fbe82319e919d6b94c92129f447 | .travis.yml | .travis.yml | language: go
go:
- 1.3
- 1.4
- tip
| language: go
go:
- 1.3
- 1.4
- tip
before_install:
- go get github.com/golang/lint/golint
script:
- golint
- go test -v
| Add golint to Travis build | Add golint to Travis build
| YAML | mit | ggilder/bitrot |
3891180e8bef7e54a83eaa77a5eae555176fc9c5 | .travis.yml | .travis.yml | language: ruby
script: "bundle exec rspec"
bundler_args: "--without extras"
rvm:
- "1.9.3"
- "jruby-19mode"
| language: ruby
script: "bundle exec rspec"
bundler_args: "--without extras"
rvm:
- "2.1.0"
- "1.9.3"
- "jruby-19mode"
| Add Ruby 2.1 to the Travis targets | Add Ruby 2.1 to the Travis targets
| YAML | mit | antw/iniparse |
3616efd3dbccbe2aab13ac7c68a082dbbe5109d6 | .travis.yml | .travis.yml | dist: trusty
language: php
matrix:
allow_failures:
- php: nightly
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: hhvm
- php: hhvm-nightly
- php: nightly
before_script:
- bash tests/before_script.sh
script:
- bash tests/script.sh
| language: php
matrix:
allow_failures:
- php: nightly
include:
- php: 5.3
dist: precise
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
- php: 5.6
dist: trusty
- php: 7.0
dist: trusty
- php: 7.1
dist: trusty
- php: hhvm
dist: trusty
- php: hhvm-nightly
dist: trusty
- php: nightly
dist: trusty
before_script:
- bash tests/before_script.sh
script:
- bash tests/script.sh
| Use Trusty for all builds except PHP 5.3 | Use Trusty for all builds except PHP 5.3
PHP 5.2 and PHP 5.3 are not supported on Travis CI:
"If you need PHP 5.2 or 5.3, please use Precise."
| YAML | unlicense | php-curl-class/php-curl-class,php-curl-class/php-curl-class,zachborboa/php-curl-class,zachborboa/php-curl-class,zachborboa/php-curl-class,php-curl-class/php-curl-class |
b165b20d3036e527e3a567a211f74db8c9197149 | .travis.yml | .travis.yml | language: node_js
node_js:
- "node"
- "iojs"
- "0.12"
- "0.10"
| language: node_js
node_js:
- "node"
- "iojs"
- "7"
- "6"
- "5"
- "4"
- "0.12"
- "0.10"
| Add modern node.js versions to Travis CI | Add modern node.js versions to Travis CI | YAML | mit | benjaminoakes/moment-strftime |
c7f6cddf53c12a9cad7068b6cb586e920a21ac42 | .travis.yml | .travis.yml | language: erlang
notifications:
email:
- hello@alind.io
otp_release:
- 19.2
- 18.3
- 17.5
- R16B03-1
- R15B03
before_script: "make get-deps"
script: "make test"
| language: erlang
notifications:
email:
- hello@alind.io
otp_release:
- 20.0
- 19.3
- 18.3
- 17.5
- R16B03-1
- R15B03
before_script: "make get-deps"
script: "make test"
| Use latest Erlang versions on Travis | Use latest Erlang versions on Travis
| YAML | apache-2.0 | apache/couchdb-meck,kivra/meck,eproxus/meck |
e43d0dc09394de91d28bb1f289849b6a73d0d01d | .travis.yml | .travis.yml | import: Activiti/activiti-scripts:.travis.java.yml@master
stages:
- name: verify
- name: tag_deploy_updatebot
if: type != pull_request
jobs:
include:
- name: Verify build
stage: verify
script:
- mvn verify -B
- name: Create a tag deploy to nexus run updatebot
stage: tag_deploy_updatebot
script: |
(
set -e
mvn versions:set -DnewVersion=$(cat VERSION) -DprocessAllModules=true -DgenerateBackupPoms=false
git add --all
git commit -m "Release $(cat VERSION)" --allow-empty
git tag -fa v$(cat VERSION) -m "Release version $(cat VERSION)"
git push -f -q https://${GITHUB_TOKEN}@github.com/Activiti/Activiti.git v$(cat VERSION)
mvn clean deploy -DskipTests
export VERSION=$(cat VERSION)| make updatebot/push-version
)
notifications:
slack:
secure: RZ8ULqQgwJnjm88AaleamwqLMposxVytXFjagFtgQzs/zqCSXEnahFV3QVvJACZUdRrReueToDTWswkHuB74Tg0MbcpixDCm6voW4iPJqbnlf+wDz7eF4JFtxS311huXYfv7EA9/lMSCXiOCbsDJZFx+Cb1OmsZlQaJ+g1v24vY=
| import:
- source: Activiti/activiti-scripts:.travis.java.yml@master
- source: Activiti/activiti-scripts:.travis.maven_cache_repo_no_snapshots.yml@master
stages:
- name: verify
- name: tag_deploy_updatebot
if: type != pull_request
jobs:
include:
- name: Verify build
stage: verify
script:
- mvn verify -B
- name: Create a tag deploy to nexus run updatebot
stage: tag_deploy_updatebot
script: |
(
set -e
mvn versions:set -DnewVersion=$(cat VERSION) -DprocessAllModules=true -DgenerateBackupPoms=false
git add --all
git commit -m "Release $(cat VERSION)" --allow-empty
git tag -fa v$(cat VERSION) -m "Release version $(cat VERSION)"
git push -f -q https://${GITHUB_TOKEN}@github.com/Activiti/Activiti.git v$(cat VERSION)
mvn clean deploy -DskipTests
export VERSION=$(cat VERSION)| make updatebot/push-version
)
notifications:
slack:
secure: RZ8ULqQgwJnjm88AaleamwqLMposxVytXFjagFtgQzs/zqCSXEnahFV3QVvJACZUdRrReueToDTWswkHuB74Tg0MbcpixDCm6voW4iPJqbnlf+wDz7eF4JFtxS311huXYfv7EA9/lMSCXiOCbsDJZFx+Cb1OmsZlQaJ+g1v24vY=
| Enable cache for Maven repository | Enable cache for Maven repository
| YAML | apache-2.0 | Activiti/Activiti,Activiti/Activiti |
d76760ffb9e4aa7a2889881d6bd6917e0f44c9ef | .travis.yml | .travis.yml | language: node_js
node_js:
- "0.12"
after_script:
- npm run coveralls
notifications:
irc:
channels:
- "chat.freenode.net#bionode"
template:
- "%{message} %{repository}#%{build_number}: %{commit_message} (%{branch} - %{commit} : %{author})"
webhooks:
urls:
- https://webhooks.gitter.im/e/bc08fdd81e88a4b24fed
on_success: change
on_failure: always
on_start: false
env: DEBUG="*"
| language: node_js
node_js:
- "7"
after_script:
- npm run coveralls
notifications:
irc:
channels:
- "chat.freenode.net#bionode"
template:
- "%{message} %{repository}#%{build_number}: %{commit_message} (%{branch} - %{commit} : %{author})"
webhooks:
urls:
- https://webhooks.gitter.im/e/bc08fdd81e88a4b24fed
on_success: change
on_failure: always
on_start: false
env: DEBUG=""
| Update Node version on Travis and reduce verbosity | Update Node version on Travis and reduce verbosity
| YAML | mit | bionode/bionode-ncbi |
5b0c3cad90d0876477ceb4e4bea0808d4ac94675 | .travis.yml | .travis.yml | language: c
env:
global:
- EnableNuGetPackageRestore=true
install:
- sudo add-apt-repository ppa:directhex/monoxide -y
- sudo apt-get update
- sudo apt-get install mono-devel mono-gmcs
script:
- xbuild
- chmod +x .ci/xunit.sh
- ./.ci/xunit.sh Spatial4n.Tests/bin/Debug/Spatial4n.Tests.dll
| language: c
env:
global:
- EnableNuGetPackageRestore=true
install:
- sudo add-apt-repository ppa:directhex/monoxide -y
- sudo apt-get update
- sudo apt-get install mono-devel mono-gmcs
- mozroots --import --sync
script:
- xbuild
- chmod +x .ci/xunit.sh
- ./.ci/xunit.sh Spatial4n.Tests/bin/Debug/Spatial4n.Tests.dll
| Make sure we can bring nuget packages in Mono | Make sure we can bring nuget packages in Mono | YAML | apache-2.0 | NightOwl888/Spatial4n,NightOwl888/Spatial4n,synhershko/Spatial4n,synhershko/Spatial4n |
4b4e053328d177715dc379738b421cf40d141655 | .travis.yml | .travis.yml | language: python
env:
secure: "DVkR9zJMsITR8vL3W6VtqnoVAb1K+McYD0AoA2u5E8PQimwyyCCWet5H+Z0u9UEPSAxlWM3TSX6ffERY2TS/a/zlw1q+OcOHafl39klRrIYuF85zNXrdbO25nrr4z9cOhYMTPMMvo41GMKmkGxGbZxVXAVP7P8rDhaOQaEbKGnI="
- GITHUB_USERNAME="justinabrahms"
python:
- "2.6"
- "2.7"
install: "pip install -r requirements.txt"
script: py.test --cov . --cov-report term-missing
after_success:
coveralls
| language: python
env:
- secure: "DVkR9zJMsITR8vL3W6VtqnoVAb1K+McYD0AoA2u5E8PQimwyyCCWet5H+Z0u9UEPSAxlWM3TSX6ffERY2TS/a/zlw1q+OcOHafl39klRrIYuF85zNXrdbO25nrr4z9cOhYMTPMMvo41GMKmkGxGbZxVXAVP7P8rDhaOQaEbKGnI="
- GITHUB_USERNAME="justinabrahms"
python:
- "2.6"
- "2.7"
install: "pip install -r requirements.txt"
script: py.test --cov . --cov-report term-missing
after_success:
coveralls
| Include list icon for env declaration | Include list icon for env declaration
| YAML | mit | Appdynamics/imhotep,justinabrahms/imhotep,justinabrahms/imhotep,richtier/imhotep |
7dd857230f73e3d9600a0f8c68caa15b99cd1002 | .travis.yml | .travis.yml | language: php
matrix:
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: hhvm
env: HHVM=true
allow_failures:
- php: hhvm
before_install:
- composer install
before_script:
- curl -sSfL -o ~/vendor/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar
script:
- ./vendor/bin/phpunit .
sudo: false
| language: php
matrix:
include:
- php: 5.4
- php: 5.5
- php: 5.6
- php: 7.0
- php: 7.1
- php: 7.2
- php: hhvm
env: HHVM=true
allow_failures:
- php: hhvm
before_install:
- composer install
before_script:
- curl -sSfL -o ./vendor/bin/phpunit https://phar.phpunit.de/phpunit-5.7.phar
script:
- ./vendor/bin/phpunit .
sudo: false
| Change download location for phpunit | Change download location for phpunit
| YAML | mit | wittiws/quipxml |
ffb87ca83f606da0c20401ab4ae0c4b5ae7e1201 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.7
- 2.6
- 2.5
| language: ruby
cache: bundler
rvm:
- 2.7
- 2.6
- 2.5
| Add Travis CI bundler caching | Add Travis CI bundler caching
This should help speed up the CI build.
| YAML | mit | thetizzo/nfl_data |
625ca6f1abaad8f95a5f2af01f21b003ed44d39c | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.0.0
- 2.2.4
- 2.2.6
- 2.3.3
- ruby-head
before_script:
- gem install bundler
script:
- bundle install
- bundle exec rake test
- bundle exec rake doc
| language: ruby
rvm:
- 2.1.10
- 2.2.4
- 2.2.6
- 2.3.3
- ruby-head
before_script:
- gem install bundler
script:
- bundle install
- bundle exec rake test
- bundle exec rake doc
| Remove version 2.0.0 from Travis-CI build matrix | Remove version 2.0.0 from Travis-CI build matrix
| YAML | mit | geekyfox/antiblog,geekyfox/antiblog |
cbcdd8a4e043e26617f9c51f7a86546cebc044ba | .travis.yml | .travis.yml | language: ruby
sudo: false
rvm:
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
before_script:
- RAILS_ENV=test bundle exec rake db:setup
| language: ruby
sudo: false
rvm:
- 2.3.8
- 2.4.6
- 2.5.5
- 2.6.3
gemfile:
- gemfiles/rails_4.2.gemfile
- gemfiles/rails_5.0.gemfile
- gemfiles/rails_5.1.gemfile
- gemfiles/rails_5.2.gemfile
before_install:
- "[[ $BUNDLE_GEMFILE =~ rails_4\\.2 ]] && gem uninstall -v '>= 2' -i $(rvm gemdir)@global -ax bundler || true"
- "[[ $BUNDLE_GEMFILE =~ rails_4\\.2 ]] && gem install bundler -v '< 2' || true"
before_script:
- RAILS_ENV=test bundle exec rake db:setup
| Downgrade bundler in rails 4.2 | Downgrade bundler in rails 4.2
| YAML | mit | cookpad/garage,cookpad/garage,cookpad/garage,cookpad/garage |
15bb3308774dbd5214fdf2b5ecc8657ecac79a5c | .travis.yml | .travis.yml | language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
script:
- bin/phpunit
- bin/behat --no-paths --format failed
before_script:
- sudo apt-get -qq update > /dev/null
- sudo apt-get -qq install graphviz > /dev/null
- phpenv rehash > /dev/null
- composer selfupdate --quiet
- composer install -n --prefer-source --dev
- bin/phpunit
- bin/behat --no-paths --format failed
- composer update -n --prefer-source --dev
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
notifications:
irc: "irc.freenode.org#phpdocumentor"
email:
- me@mikevanriel.com
- ashnazg@php.net
matrix:
allow_failures:
- hhvm
| language: php
php:
- 5.3.3
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm
script:
- bin/phpunit
# - bin/behat --no-paths --format failed
before_script:
- sudo apt-get -qq update > /dev/null
- sudo apt-get -qq install graphviz > /dev/null
- phpenv rehash > /dev/null
- composer selfupdate --quiet
- composer install -n --prefer-source --dev
- bin/phpunit
# - bin/behat --no-paths --format failed
- composer update -n --prefer-source --dev
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
notifications:
irc: "irc.freenode.org#phpdocumentor"
email:
- me@mikevanriel.com
- ashnazg@php.net
matrix:
allow_failures:
- hhvm
| Disable behat tests on Travis for now | Disable behat tests on Travis for now
| YAML | mit | rgeraads/phpDocumentor2,4414/phpDocumentor2,webmozart/phpDocumentor2,4414/phpDocumentor2,rscarson/phpDocumentor2,Maxim-Mazurok/phpDocumentor2,senuamedia/phpDocumentor2,fdewinne/phpDocumentor2,cesarmarinhorj/phpDocumentor2,jaapio/phpDocumentor2,revinate/phpDocumentor2,cesarmarinhorj/phpDocumentor2,phpDocumentor/phpDocumentor2,revinate/phpDocumentor2,pierredup/phpDocumentor2,PatidarWeb/phpDocumentor2,mvriel/phpDocumentor2,angi2/phpDocumentor2,revinate/phpDocumentor2,potherca/phpDocumentor2,phpDocumentor/phpDocumentor2,angi2/phpDocumentor2,pierredup/phpDocumentor2,rgeraads/phpDocumentor2,ddymko/phpDocumentor2,webmozart/phpDocumentor2,mbed67/phpDocumentor2,ddymko/phpDocumentor2,potherca-contrib/phpDocumentor2,rscarson/phpDocumentor2,senuamedia/phpDocumentor2,cesarmarinhorj/phpDocumentor2,beealone/phpDocumentor2,mvriel/phpDocumentor2,cesarmarinhorj/phpDocumentor2,rscarson/phpDocumentor2,fdewinne/phpDocumentor2,PatidarWeb/phpDocumentor2,Maxim-Mazurok/phpDocumentor2,mvriel/phpDocumentor2,jaapio/phpDocumentor2,potherca/phpDocumentor2,potherca-contrib/phpDocumentor2,mbed67/phpDocumentor2,mbed67/phpDocumentor2,mbed67/phpDocumentor2,4414/phpDocumentor2,senuamedia/phpDocumentor2,potherca/phpDocumentor2,rgeraads/phpDocumentor2,phpDocumentor/phpDocumentor2,mvriel/phpDocumentor2,senuamedia/phpDocumentor2,jaapio/phpDocumentor2,Maxim-Mazurok/phpDocumentor2,PatidarWeb/phpDocumentor2,pierredup/phpDocumentor2,fdewinne/phpDocumentor2,Maxim-Mazurok/phpDocumentor2,potherca/phpDocumentor2,angi2/phpDocumentor2,angi2/phpDocumentor2,webmozart/phpDocumentor2,PatidarWeb/phpDocumentor2,revinate/phpDocumentor2,beealone/phpDocumentor2,rscarson/phpDocumentor2,beealone/phpDocumentor2,fdewinne/phpDocumentor2,phpDocumentor/phpDocumentor2,4414/phpDocumentor2,pierredup/phpDocumentor2,potherca-contrib/phpDocumentor2,rgeraads/phpDocumentor2,potherca-contrib/phpDocumentor2,ddymko/phpDocumentor2,beealone/phpDocumentor2,jaapio/phpDocumentor2,ddymko/phpDocumentor2,webmozart/phpDocumentor2 |
52b8ea910487508125df7a76db7792dd43c6dcc0 | .travis.yml | .travis.yml | language: php
dist: trusty
matrix:
include:
- php: 5.6
env: DB=MYSQL PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=PGSQL PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL PHPUNIT_COVERAGE_TEST=1
- php: 7.2
env: DB=MYSQL PHPUNIT_TEST=1
before_script:
- phpenv rehash
- phpenv config-rm xdebug.ini
- composer validate
- composer require silverstripe/installer:4.0.x-dev ezyang/htmlpurifier:* --no-update
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql:2.0.x-dev; fi
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/ *.php; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
| language: php
dist: trusty
matrix:
include:
- php: 5.6
env: DB=MYSQL INSTALLER_VERSION=4.0.x-dev PHPCS_TEST=1 PHPUNIT_TEST=1
- php: 7.0
env: DB=PGSQL INSTALLER_VERSION=4.1.x-dev PHPUNIT_TEST=1
- php: 7.1
env: DB=MYSQL INSTALLER_VERSION=4.2.x-dev PHPUNIT_COVERAGE_TEST=1
- php: 7.2
env: DB=MYSQL INSTALLER_VERSION=4.x-dev PHPUNIT_TEST=1
before_script:
- phpenv rehash
- phpenv config-rm xdebug.ini
- composer validate
- composer require silverstripe/installer:"$INSTALLER_VERSION" ezyang/htmlpurifier:* --no-update
- if [[ $DB == PGSQL ]]; then composer require --no-update silverstripe/postgresql:2.0.x-dev; fi
- composer install --prefer-dist --no-interaction --no-progress --no-suggest --optimize-autoloader --verbose --profile
script:
- if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
- if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src/ tests/ *.php; fi
after_success:
- if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi
| Add various recipe versions to Travis build matrix | Add various recipe versions to Travis build matrix
| YAML | bsd-3-clause | silverstripe/silverstripe-comments,silverstripe/silverstripe-comments |
f336205bfe6f2ef11bc16582b1d477791f3f4263 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.4"
install:
- pip install -r requirements_for_test.txt
script:
- ./scripts/run_tests.sh
notifications:
email: false
| language: python
python:
- "2.7"
- "3.4"
install:
- pip install --no-use-wheel -r requirements_for_test.txt
script:
- ./scripts/run_tests.sh
notifications:
email: false
| Fix Travis '100 named groups' build error | Fix Travis '100 named groups' build error
Travis build fails the pip install of pycparser. Disabling binary
installs might fix the issue.
http://stackoverflow.com/a/39830224
| YAML | mit | alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws |
339f449b9a88a10ba1661b291677498180be32b4 | .travis.yml | .travis.yml | language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
- composer install --prefer-source
script: ./vendor/bin/phpunit -v
after_script:
- php vendor/bin/coveralls -v | language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
allow_failures:
- php: 5.3
before_script:
- composer self-update
- composer install --prefer-source
script: ./vendor/bin/phpunit -v
after_script:
- php vendor/bin/coveralls -v | Allow PHP 5.3 to fail due to `coverage_clover XML file is not readable` bug | Allow PHP 5.3 to fail due to `coverage_clover XML file is not readable` bug
| YAML | mit | nabble/semalt-blocker,nabble/semalt-blocker |
61a1c971834b8029826c9a1504ade1334e57d89e | .travis.yml | .travis.yml | sudo: false
language: rust
rust:
- nightly
script: cd rs-backend && cargo build --verbose && cargo test --verbose
cache: cargo
| sudo: false
language: rust
rust:
- nightly
before_script: (cargo install rustfmt || true)
script: cd rs-backend && cargo fmt -- --write-mode=diff && cargo build --verbose && cargo test --verbose
cache: cargo
| Check formatting complies with rustfmt in Travis. | Check formatting complies with rustfmt in Travis.
| YAML | mit | nrc/rustc-perf,nrc/rustc-perf,nrc/rustc-perf |
bd9e56dba869160f25dc0fa3ba1f49e0d5f2a932 | .travis.yml | .travis.yml | sudo: false
language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- rpm
before_deploy:
- mvn jdeb:jdeb && export RELEASE_DEB_FILE=$(ls target/*.deb)
- mvn rpm:rpm && export RELEASE_RPM_FILE=$(find target/ -name '*.rpm' | tail -1)
- rm -f target/original-*.jar
- export RELEASE_PKG_FILE=$(ls target/*.jar)
- echo "Deploying release to GitHub releases"
deploy:
provider: releases
api_key:
secure: MW9KC7aQBizwTLp09WqCp49FhlZKXyctpyzDemklr5BWPHFJ/hP+wyaDcpyctu9mPPIrpzYgIWDdIa4vDvJFj15YWuR1W8ngtX/T9iU7743TB3yUB7otZCdA6Zoba9J8Lq64J5T6HuO6ou/LL2MFUQOgpgUkLUWwT9y1NSoLrbI=
file:
- "${RELEASE_PKG_FILE}"
- "${RELEASE_DEB_FILE}"
- "${RELEASE_RPM_FILE}"
skip_cleanup: true
on:
tags: true
jdk: oraclejdk8
| sudo: false
language: java
jdk:
- oraclejdk8
addons:
apt:
packages:
- rpm
before_deploy:
- mvn jdeb:jdeb && export RELEASE_DEB_FILE=$(ls target/*.deb)
- mvn rpm:rpm && export RELEASE_RPM_FILE=$(find target/ -name '*.rpm' | tail -1)
- rm -f target/original-*.jar
- export RELEASE_PKG_FILE=$(ls target/*.jar)
- echo "Deploying release to GitHub releases"
deploy:
provider: releases
api_key:
secure: "IltfQr/7O90BCKlujv2YZ/UPtbPxkDjrfwaRDKYzKtFcRe4zead2cCHOS6pFkkTiJupzxmiX8U0CvwvfX160k/JMaxR+VN7QmT49UCPgxg3GsCtHrmCjAI4jx+DrIyuJGv94uE9mdC4TEAoLlsB0OyFwSIZQqE2DapDPkzEXzPY="
file:
- "${RELEASE_PKG_FILE}"
- "${RELEASE_DEB_FILE}"
- "${RELEASE_RPM_FILE}"
skip_cleanup: true
on:
tags: true
jdk: oraclejdk8
repo: graylog-labs/graylog-plugin-dnsresolver
| Fix GitHub API key in Travis CI config | Fix GitHub API key in Travis CI config
[ci skip]
| YAML | apache-2.0 | Graylog2/graylog-plugin-dnsresolver,Graylog2/graylog-plugin-filter-dnsresolver |
8bcdde4ae4784d4f2a7d80cbd3b15d240d8978a8 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
#- "3.5-dev" # 3.5 development branch
#- "nightly" # currently points to 3.6-dev
notifications:
email: false
cache: pip
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y -qq python-dev gfortran liblapack-dev libatlas-dev libblas-dev build-essential python-scipy
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy nose
- pip install -q coveralls coverage future pathos
- pip install .
script:
- nosetests --cover-branches --with-coverage --cover-package=molml --cover-erase
after_success:
- coveralls
| language: python
python:
- "2.7"
#- "3.2"
#- "3.3"
- "3.4"
- "3.5"
#- "3.6"
notifications:
email: false
cache: pip
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y -qq python-dev gfortran liblapack-dev libatlas-dev libblas-dev build-essential python-scipy
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy nose
- pip install -q coveralls coverage future pathos
- pip install .
script:
- nosetests --cover-branches --with-coverage --cover-package=molml --cover-erase
after_success:
- coveralls
| Remove Python versions not supported by conda | Remove Python versions not supported by conda
| YAML | mit | crcollins/molml |
2c0dedcc47a2be2aff85dfd7b4f95c5688e8f653 | .travis.yml | .travis.yml | cache: apt
sudo: false
language: python
python:
- "2.7"
- "3.3"
addons:
apt:
packages:
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy pandas
- pip install pytest-pep8 pytest-cov python-coveralls
- python setup.py develop
script:
- THEANO_FLAGS=floatX=float32 py.test -v --pep8 --cov=downhill --cov-report=term-missing
after_success:
- coveralls
| cache: apt
sudo: false
language: python
python:
- "2.7"
- "3.4"
addons:
apt:
packages:
- libatlas-dev
- libatlas-base-dev
- liblapack-dev
- gfortran
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
install:
- conda install --yes python=$TRAVIS_PYTHON_VERSION pip numpy scipy
- pip install pytest-pep8 pytest-cov python-coveralls pandas
- python setup.py develop
script:
- THEANO_FLAGS=floatX=float32 py.test -v --pep8 --cov=downhill --cov-report=term-missing
after_success:
- coveralls
| Use py3.4 and try installing pandas with pip. | Use py3.4 and try installing pandas with pip.
| YAML | mit | lmjohns3/downhill |
ca7711fc3150201085701dc041f6187745778bad | .travis.yml | .travis.yml | sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "pypy"
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
install:
- pip install -r requirements_test.txt
- pip install python-geohash==0.8.5
- pip install -e .
- pip install codecov
- pip install sphinx
- pip install sphinx-rtd-theme
script:
- py.test -v --cov
- cd docs && make doctest
after_success:
- codecov
| sudo: false
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
cache:
directories:
- $HOME/.cache/pip
before_cache:
- rm -f $HOME/.cache/pip/log/debug.log
install:
- pip install -r requirements_test.txt
- pip install python-geohash==0.8.5
- pip install -e .
- pip install codecov
- pip install sphinx
- pip install sphinx-rtd-theme
script:
- py.test -v --cov
- cd docs && make doctest
after_success:
- codecov
| Add python3.6 support to CI | Add python3.6 support to CI
| YAML | apache-2.0 | anti-social/elasticmagic,anti-social/elasticmagic |
778b16d5173e82df45da0375bcdb934828efdf0c | .travis.yml | .travis.yml | language: erlang
otp_release:
- 18.0
- 17.5
- 17.4
- 17.3
- 17.1
- 17.0
- R16B03-1
- R16B03
- R16B02
- R16B01
- R16B
- R15B03-1
- R15B02
- R15B01
- R15B
script: "make travis"
| language: erlang
otp_release:
- 18.0
- 17.5
- 17.4
- 17.3
- 17.1
- 17.0
- R16B03-1
- R16B03
- R16B02
- R16B01
script: "make travis"
| Update the list of supported Erlang builds. | Update the list of supported Erlang builds.
| YAML | mit | ostinelli/syn |
dcf1bb5d19961f8ab8bb15fde309ad0d2731f711 | .travis.yml | .travis.yml | language: ruby
script: bundle exec appraisal rspec
rvm:
- 2.0.0
- 2.2.0
before_install:
- gem install bundler
before_script:
- bundle exec appraisal install
| language: ruby
script: bundle exec appraisal rspec
rvm:
- 2.0.0
- 2.2.0
- 2.3.1
before_install:
- gem install bundler
before_script:
- bundle exec appraisal install
| Add testing for MRI 2.3.1 to Travis. | Add testing for MRI 2.3.1 to Travis.
| YAML | mit | pat/gutentag,pat/gutentag |
6ab15299321999466864e9e832f220a07d251911 | .travis.yml | .travis.yml | # Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.3.1
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
| # Lock down dist to ensure that builds run on a distribution that supports oraclejdk8
dist: trusty
language: ruby
jdk:
- oraclejdk8
rvm:
- 2.6.6
install:
- rvm use 2.3.1
- gem install bundler
- bundle install
script: buildr package
git:
depth: false
| Update the version of ruby used to build project in TravisCI. | Update the version of ruby used to build project in TravisCI.
| YAML | apache-2.0 | realityforge/arez,realityforge/arez,realityforge/arez |
4d4e36c6d9b0c58b8b4b822ddbf78b4cafd47df5 | .travis.yml | .travis.yml | language: python
python:
- "2.7"
install:
- pip install pip -U
- pip install coverage
- pip install python-coveralls
- python setup.py -q install
script:
- nosetests --with-coverage -v
branches:
only:
- develop
after_success:
- coveralls
| language: python
python:
- "2.7"
install:
- pip install pip -U
- pip install coverage
- pip install python-coveralls
- python setup.py -q install
script:
- nosetests --with-coverage -v
branches:
only:
- master
- develop
after_success:
- coveralls
| Add the master branch to the continuous integration | Add the master branch to the continuous integration
| YAML | mit | othieno/geotagx-tool-validator |
8354d4dd82d7081363826165e6cf3286a583405d | .travis.yml | .travis.yml | language: dart
dart:
- stable
- dev
sudo: required
services:
- docker
before_install:
- npm install -g mustache
script:
- pub global activate coverage
- ./tool/check.sh
| language: dart
dart:
- stable
- dev
sudo: required
services:
- docker
before_install:
- gem install mustache
script:
- pub global activate coverage
- ./tool/check.sh
| Use RubyGems to install mustache instead of NPM | Use RubyGems to install mustache instead of NPM
| YAML | agpl-3.0 | qedb/qedb,qedb/qedb,qedb/qedb,eqdb/eqpg,eqdb/eqpg,qedb/qedb,eqdb/eqdb,eqdb/eqdb,eqdb/eqpg,eqdb/eqdb,qedb/qedb,eqdb/eqdb,qedb/qedb,eqdb/eqdb |
27d4d72bce0b0f63e5af8b91bfae3a5934116407 | .travis.yml | .travis.yml | language: ruby
rvm:
- 2.1
- 2.2
- rbx-2
- jruby-9
- ruby-head
- jruby-head
before_install: gem install bundler -v 1.10.6
script: bundle exec rspec
| language: ruby
rvm:
- 2.1
- 2.2
- 2.3
- rbx-2
- jruby-9
- jruby-head
before_install: gem install bundler -v 1.10.6
script: bundle exec rspec
| Remove ruby-head from Travis config as it doesn't seem to be working | Remove ruby-head from Travis config as it doesn't seem to be working
| YAML | mit | tra38/tra38-calyx,tra38/calyx,maetl/calyx |
8ee0307d9cccd726c4be4026cbfc7db7aee8d0a2 | .travis.yml | .travis.yml | language: java
jdk: oraclejdk8
notifications:
slack: stanford-futuredata:qmO6Keu8ifOyXHsmSQ97CeLH
after_success:
- mvn clean test jacoco:report coveralls:report
| language: java
jdk: oraclejdk8
notifications:
slack: stanford-futuredata:qmO6Keu8ifOyXHsmSQ97CeLH
after_success:
- mvn clean cobertura:cobertura coveralls:report
| Update Travis post-success hook for Cobertura. | Update Travis post-success hook for Cobertura. | YAML | apache-2.0 | kexinrong/macrobase,stanford-futuredata/macrobase,stanford-futuredata/macrobase,kexinrong/macrobase,kexinrong/macrobase,stanford-futuredata/macrobase,stanford-futuredata/macrobase,kexinrong/macrobase,kexinrong/macrobase,kexinrong/macrobase,kexinrong/macrobase,stanford-futuredata/macrobase |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.