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
|
---|---|---|---|---|---|---|---|---|---|
2a22ae7aedbb45e6915298b0e7b35926ebb9de6f
|
config.sample.yml
|
config.sample.yml
|
---
ynab:
access_token: # Your YNAB access token
budget_id: # the first hash in the url when you open your budget
cash_account_id: # if set that it creates transactions
# to your cash account if withdrawal is detected
accounts:
- dumper: :fints
iban: # iban of your account
ynab_id: # last hash in the url when you click on the account in YNAB
username: # online banking username / alias
password: # online banking PIN (NOT! the pin of your bank card!)
fints_blz: # Your bank's code / Bankleitzahl
fints_endpoint: # can be found here: https://www.hbci-zka.de/institute/institut_auswahl.htm
# Use the PIN/TAN URL from the link above
- dumper: :n26
iban: # n26 iban
ynab_id: # last hash in the url when you click on the account in YNAB
username: # n26 username
password: # n26 password
set_category: false # default: false, sets the N26 category name as category
|
---
ynab:
access_token: # Your YNAB access token
budget_id: # the first hash in the url when you open your budget
cash_account_id: # if set that it creates transactions
# to your cash account if withdrawal is detected
accounts:
- dumper: :fints
iban: # iban of your account
ynab_id: # last hash in the url when you click on the account in YNAB
username: # online banking username / alias
password: # online banking PIN (NOT! the pin of your bank card!)
fints_blz: # Your bank's code / Bankleitzahl
fints_endpoint: # more info can be found here: https://github.com/schurig/ynab-bank-importer/wiki/FinTS---HBCI#fints_endpoint
- dumper: :n26
iban: # n26 iban
ynab_id: # last hash in the url when you click on the account in YNAB
username: # n26 username
password: # n26 password
set_category: false # default: false, sets the N26 category name as category
|
Fix link about `fints_endpoint` option
|
Fix link about `fints_endpoint` option
|
YAML
|
mit
|
schurig/ynab-bank-importer
|
7018a9c49b161e44680c031708c4de077e050906
|
config/keter.yaml
|
config/keter.yaml
|
stanzas:
- type: webapp
exec: ../zoomhub
hosts:
- 104.130.230.137
- openzoom.net
- openzoom.org
env:
DATA_PATH: '/mnt/datavolume/zoomhub/data'
HASHIDS_SALT: 'CHANGE-ME-IN-PRODUCTION'
|
stanzas:
- type: webapp
exec: ../zoomhub
hosts:
- 104.130.230.137
- openzoom.net
- openzoom.org
- teamteam.team
env:
DATA_PATH: '/mnt/datavolume/zoomhub/data'
HASHIDS_SALT: 'CHANGE-ME-IN-PRODUCTION'
|
Add `teamteam.team` as valid host
|
Add `teamteam.team` as valid host
|
YAML
|
mit
|
zoomhub/zoomhub,zoomhub/zoomhub,zoomhub/zoomhub,zoomhub/zoomhub
|
5d059d160a583e6c55e1a6daf12c4a8eb85e4e82
|
.appveyor.yml
|
.appveyor.yml
|
# AppVeyor configuration file for broadbean
branches:
only:
- master
- version1.0
environment:
global:
CONDA_INSTALL_LOCATION: "C:\\Miniconda36-x64"
# Do not email the poor devs!
notifications:
- provider: Email
settings:
on_build_success: false
on_build_failure: false
on_build_status_changed: false
# Do not use MSBuild
build: false
# Init scripts
# Install scripts
install:
- set PATH=%CONDA_INSTALL_LOCATION%;%CONDA_INSTALL_LOCATION%\scripts;%PATH%;
- conda config --set always_yes true # else AppVeyor will hang forever waiting for user ([y]/n)
- conda update --all
- conda info -a
- conda create -q -n test-environment python=%PYTHON_VERSION% pip setuptools
- activate test-environment
- python -m pip install --upgrade pip
- pip install -r test_requirements.txt
- pip install .
# Test scripts
test_script:
- mypy broadbean --ignore-missing-imports
- cd tests
- pytest
- cd ../docs
- execute_notebooks.cmd
|
# AppVeyor configuration file for broadbean
branches:
only:
- master
- version1.0
environment:
global:
CONDA_INSTALL_LOCATION: "C:\\Miniconda36-x64"
# Do not use MSBuild
build: false
# Init scripts
# Install scripts
install:
- set PATH=%CONDA_INSTALL_LOCATION%;%CONDA_INSTALL_LOCATION%\scripts;%PATH%;
- conda config --set always_yes true # else AppVeyor will hang forever waiting for user ([y]/n)
- conda update --all
- conda info -a
- conda create -q -n test-environment python=%PYTHON_VERSION% pip setuptools
- activate test-environment
- python -m pip install --upgrade pip
- pip install -r test_requirements.txt
- pip install .
# Test scripts
test_script:
- mypy broadbean --ignore-missing-imports
- cd tests
- pytest
- cd ../docs
- execute_notebooks.cmd
|
Move email notifications to AppVeyor settings
|
Move email notifications to AppVeyor settings
So as to not expose email addresses in public yml files
|
YAML
|
mit
|
WilliamHPNielsen/broadbean
|
4412942712a52664c1561a3d82b6caa93b548de2
|
cloudbuild.yaml
|
cloudbuild.yaml
|
# See https://cloud.google.com/cloud-build/docs/build-config
# this prevents errors if you don't use both _GIT_TAG and _PULL_BASE_REF,
# or any new substitutions added in the future.
options:
substitution_option: ALLOW_LOOSE
steps:
- name: 'gcr.io/k8s-testimages/gcb-docker-gcloud:v20200422-b25d964'
entrypoint: bash
env:
- DOCKER_CLI_EXPERIMENTAL=enabled
- TAG=$_GIT_TAG
- BASE_REF=$_PULL_BASE_REF
- REGISTRY=gcr.io/k8s-staging-ingress-nginx
- HOME=/root
args:
- -c
- |
gcloud auth configure-docker \
&& make release
substitutions:
# _GIT_TAG will be filled with a git-based tag for the image, of the form vYYYYMMDD-hash, and
# can be used as a substitution
_GIT_TAG: "12345"
# _PULL_BASE_REF will contain the ref that was pushed to to trigger this build -
# a branch like 'master' or 'release-0.2', or a tag like 'v0.2'.
_PULL_BASE_REF: "master"
|
# See https://cloud.google.com/cloud-build/docs/build-config
# this prevents errors if you don't use both _GIT_TAG and _PULL_BASE_REF,
# or any new substitutions added in the future.
options:
substitution_option: ALLOW_LOOSE
steps:
- name: 'gcr.io/k8s-testimages/gcb-docker-gcloud:v20200422-b25d964'
entrypoint: bash
env:
- DOCKER_CLI_EXPERIMENTAL=enabled
- TAG=$_GIT_TAG
- BASE_REF=$_PULL_BASE_REF
- REGISTRY=gcr.io/k8s-staging-ingress-nginx
- HOME=/root
- USER=root
args:
- -c
- |
gcloud auth configure-docker \
&& make release
substitutions:
# _GIT_TAG will be filled with a git-based tag for the image, of the form vYYYYMMDD-hash, and
# can be used as a substitution
_GIT_TAG: "12345"
# _PULL_BASE_REF will contain the ref that was pushed to to trigger this build -
# a branch like 'master' or 'release-0.2', or a tag like 'v0.2'.
_PULL_BASE_REF: "master"
|
Set missing USER in cloud-build
|
Set missing USER in cloud-build
|
YAML
|
apache-2.0
|
canhnt/ingress,caicloud/ingress,aledbf/ingress-nginx,caicloud/ingress,aledbf/ingress-nginx,canhnt/ingress,caicloud/ingress,caicloud/ingress,kubernetes/ingress-nginx,canhnt/ingress,canhnt/ingress,kubernetes/ingress-nginx,kubernetes/ingress-nginx,aledbf/ingress-nginx,kubernetes/ingress-nginx,kubernetes/ingress-nginx,aledbf/ingress-nginx
|
77ee6026d7dcf8f4aebbd6ffaa4de54385bb0417
|
metadata/com.kazufukurou.nanji.yml
|
metadata/com.kazufukurou.nanji.yml
|
Categories:
- Time
License: Apache-2.0
SourceCode: https://github.com/kazufukurou/nanji
IssueTracker: https://github.com/kazufukurou/nanji/issues
AutoName: Nanji
Description: |-
Home screen clock widget for Chinese, Japanese, Korean, Russian and English learners.
* Chinese, Japanese, Korean, Russian, English and default date and time format.
* 12/24 hours time format
* Japanese era date format
* Customizable time zone
* Highly customizable appearance
* Switch between showing digits/words on tap
* Open system clock app on tap
RepoType: git
Repo: https://github.com/kazufukurou/nanji
Builds:
- versionName: 1.3.0
versionCode: 35
commit: v1.3.0
subdir: app
submodules: true
gradle:
- yes
- versionName: 1.3.1
versionCode: 36
commit: v1.3.1
subdir: app
submodules: true
gradle:
- yes
- versionName: 1.3.2
versionCode: 37
commit: v1.3.2
subdir: app
submodules: true
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.3.2
CurrentVersionCode: 37
|
Categories:
- Time
License: Apache-2.0
SourceCode: https://github.com/kazufukurou/nanji
IssueTracker: https://github.com/kazufukurou/nanji/issues
AutoName: Nanji
Description: |-
Home screen clock widget for Chinese, Japanese, Korean, Russian and English learners.
* Chinese, Japanese, Korean, Russian, English and default date and time format.
* 12/24 hours time format
* Japanese era date format
* Customizable time zone
* Highly customizable appearance
* Switch between showing digits/words on tap
* Open system clock app on tap
RepoType: git
Repo: https://github.com/kazufukurou/nanji
Builds:
- versionName: 1.3.0
versionCode: 35
commit: v1.3.0
subdir: app
submodules: true
gradle:
- yes
- versionName: 1.3.1
versionCode: 36
commit: v1.3.1
subdir: app
submodules: true
gradle:
- yes
- versionName: 1.3.2
versionCode: 37
commit: v1.3.2
subdir: app
submodules: true
gradle:
- yes
- versionName: 1.3.3
versionCode: 38
commit: v1.3.3
subdir: app
submodules: true
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags
CurrentVersion: 1.3.3
CurrentVersionCode: 38
|
Update Nanji to 1.3.3 (38)
|
Update Nanji to 1.3.3 (38)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
9d11464ed166c1e2a537792aa284905123ac8be3
|
.github/workflows/update_openring.yml
|
.github/workflows/update_openring.yml
|
name: Update openring data
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- openring-test
jobs:
regenerate-openring-html:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '^1.15'
- name: Install openring
run: go get git.sr.ht/~sircmpwn/openring
- name: Run openring
run: ./scripts/openring.sh
- name: Initialize git config
run: |
git config user.name "GitHub Actions"
git config user.email [email protected]
- name: Compare changes
run: if [[ $(git diff --stat) != '' ]]; then echo "::set-env name=UPDATED::true"; fi
- name: Commit and push changes
run: |
git add layouts/partials/openring.html
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: 'layouts: update openring data'
branch: update-openring
base: src
title: Periodic openring sync
assignees: msfjarvis
|
name: Update openring data
on:
schedule:
- cron: '0 0 * * *'
jobs:
regenerate-openring-html:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '^1.15'
- name: Install openring
run: go get git.sr.ht/~sircmpwn/openring
- name: Run openring
run: ./scripts/openring.sh
- name: Initialize git config
run: |
git config user.name "GitHub Actions"
git config user.email [email protected]
- name: Compare changes
run: if [[ $(git diff --stat) != '' ]]; then echo "::set-env name=UPDATED::true"; fi
- name: Commit and push changes
run: |
git add layouts/partials/openring.html
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: 'layouts: update openring data'
branch: update-openring
base: src
title: Periodic openring sync
assignees: msfjarvis
|
Revert "[TEMP] github: run openring workflow on pushes to openring-test branch"
|
Revert "[TEMP] github: run openring workflow on pushes to openring-test branch"
This reverts commit d29189db4f54c11e17c67da7c94374c9a46d14c8.
|
YAML
|
mit
|
MSF-Jarvis/msf-jarvis.github.io
|
246b1ebfd07907de00e2be4c9983c9125f03fda7
|
mkdocs.yml
|
mkdocs.yml
|
site_name: "RuboCop: The Ruby Linter that Serves and Protects"
repo_url: https://github.com/rubocop-hq/rubocop
site_favicon: favicon.ico
copyright: "Copyright (C) 2012-2018 Bozhidar Batsov and RuboCop contributors"
docs_dir: manual
pages:
- Home: index.md
- Installation: installation.md
- Basic Usage: basic_usage.md
- Cops: cops.md
- Formatters: formatters.md
- Configuration: configuration.md
- Caching: caching.md
- Extensions: extensions.md
- Integration with other tools: integration_with_other_tools.md
- Automated Code Review: automated_code_review.md
- Support: support.md
- Contributing: contributing.md
- Development: development.md
- Node Pattern: node_pattern.md
- Cops Documentation:
- Layout Cops: cops_layout.md
- Linting Cops: cops_lint.md
- Metrics Cops: cops_metrics.md
- Naming Cops: cops_naming.md
- Performance Cops: cops_performance.md
- Rails Cops: cops_rails.md
- Security Cops: cops_security.md
- Style Cops: cops_style.md
- Bundler Cops: cops_bundler.md
- Gemspec Cops: cops_gemspec.md
extra_css:
- css/extra.css
theme: readthedocs
|
site_name: "RuboCop: The Ruby Linter that Serves and Protects"
repo_url: https://github.com/rubocop-hq/rubocop
site_favicon: favicon.ico
copyright: "Copyright © 2012-2018 Bozhidar Batsov and RuboCop contributors"
docs_dir: manual
pages:
- Home: index.md
- Installation: installation.md
- Basic Usage: basic_usage.md
- Cops: cops.md
- Formatters: formatters.md
- Configuration: configuration.md
- Caching: caching.md
- Extensions: extensions.md
- Integration with other tools: integration_with_other_tools.md
- Automated Code Review: automated_code_review.md
- Support: support.md
- Contributing: contributing.md
- Development: development.md
- Node Pattern: node_pattern.md
- Cops Documentation:
- Layout Cops: cops_layout.md
- Linting Cops: cops_lint.md
- Metrics Cops: cops_metrics.md
- Naming Cops: cops_naming.md
- Performance Cops: cops_performance.md
- Rails Cops: cops_rails.md
- Security Cops: cops_security.md
- Style Cops: cops_style.md
- Bundler Cops: cops_bundler.md
- Gemspec Cops: cops_gemspec.md
extra_css:
- css/extra.css
markdown_extensions:
- admonition
theme: readthedocs
|
Enable the admonition markdown extension
|
Enable the admonition markdown extension
See https://python-markdown.github.io/extensions/admonition/ for details.
|
YAML
|
mit
|
jmks/rubocop,panthomakos/rubocop,akihiro17/rubocop,smakagon/rubocop,vergenzt/rubocop,deivid-rodriguez/rubocop,maxjacobson/rubocop,petehamilton/rubocop,tejasbubane/rubocop,palkan/rubocop,mikegee/rubocop,panthomakos/rubocop,tdeo/rubocop,sue445/rubocop,bbatsov/rubocop,sue445/rubocop,palkan/rubocop,meganemura/rubocop,rrosenblum/rubocop,tdeo/rubocop,haziqhafizuddin/rubocop,deivid-rodriguez/rubocop,haziqhafizuddin/rubocop,mikegee/rubocop,rrosenblum/rubocop,palkan/rubocop,meganemura/rubocop,jfelchner/rubocop,akihiro17/rubocop,mikegee/rubocop,bquorning/rubocop,bbatsov/rubocop,jmks/rubocop,vergenzt/rubocop,maxjacobson/rubocop,maxjacobson/rubocop,jfelchner/rubocop,panthomakos/rubocop,tdeo/rubocop,tejasbubane/rubocop,bquorning/rubocop,jfelchner/rubocop,deivid-rodriguez/rubocop,vergenzt/rubocop,jmks/rubocop,meganemura/rubocop,akihiro17/rubocop,petehamilton/rubocop,bquorning/rubocop,rrosenblum/rubocop,petehamilton/rubocop,smakagon/rubocop,tejasbubane/rubocop,sue445/rubocop
|
9680c138ef3ff833fee47257c6c49b50d12d956f
|
pubspec.yaml
|
pubspec.yaml
|
name: quiver
version: 0.20.1-dev
authors:
- Justin Fagnani <[email protected]>
- Yegor Jbanov <[email protected]>
- Chris Bracken <[email protected]>
- Alexandre Ardhuin <[email protected]>
- David Morgan <[email protected]>
- John McDole <[email protected]>
description: A set of utility libraries for Dart
homepage: https://github.com/google/quiver-dart
environment:
sdk: '>=1.0.0 <2.0.0'
dependencies:
path: '>=1.0.0 <2.0.0'
dev_dependencies:
unittest: '>=0.11.0'
matcher: '>=0.10.0'
|
name: quiver
version: 0.20.1-dev
authors:
- Justin Fagnani <[email protected]>
- Yegor Jbanov <[email protected]>
- Chris Bracken <[email protected]>
- Alexandre Ardhuin <[email protected]>
- David Morgan <[email protected]>
- John McDole <[email protected]>
description: A set of utility libraries for Dart
homepage: https://github.com/google/quiver-dart
environment:
sdk: '>=1.0.0 <2.0.0'
dependencies:
matcher: '>=0.10.0'
path: '>=1.0.0 <2.0.0'
dev_dependencies:
unittest: '>=0.11.0'
|
Add matcher to dependencies (for areEqualityGroups).
|
Add matcher to dependencies (for areEqualityGroups).
|
YAML
|
apache-2.0
|
trinarytree/quiver-dart,QuiverDart/quiver_check,QuiverDart/quiver_check,jtmcdole/quiver-dart,googlearchive/quiver_mirrors,googlearchive/quiver_mirrors,QuiverDart/quiver_pattern,googlearchive/quiver_pattern,QuiverDart/quiver_io,googlearchive/quiver_strings,googlearchive/quiver_iterables,QuiverDart/quiver_optional,QuiverDart/quiver_io,googlearchive/quiver_time,QuiverDart/quiver_strings,QuiverDart/quiver_optional,QuiverDart/quiver_iterables,alechenninger/quiver-dart,googlearchive/quiver_optional,QuiverDart/quiver_time,googlearchive/quiver_time,yjbanov/quiver_async,QuiverDart/quiver_async,alechenninger/quiver-dart,QuiverDart/quiver_mirrors,jtmcdole/quiver-dart,matgray/quiver_iterables,googlearchive/quiver_collection,google/quiver-dart,QuiverDart/quiver_cache,googlearchive/quiver_hashcode,googlearchive/quiver_cache,googlearchive/quiver_iterables,QuiverDart/quiver_iterables,matgray/quiver_iterables,QuiverDart/quiver_collection,googlearchive/quiver_cache,QuiverDart/quiver_collection,willyp564/quiver-dart,QuiverDart/quiver_time,QuiverDart/quiver_hashcode,googlearchive/quiver_check,googlearchive/quiver_optional,QuiverDart/quiver_cache,googlearchive/quiver_async,kevmoo/quiver-dart,googlearchive/quiver_strings,QuiverDart/quiver_pattern,trinarytree/quiver-dart,kevmoo/quiver-dart,googlearchive/quiver_pattern,cbracken/quiver-dart,yjbanov/quiver_hashcode,EmmanuelOga/quiver-dart,googlearchive/quiver_io,yjbanov/quiver_async,cbracken/quiver-dart,googlearchive/quiver_collection,QuiverDart/quiver_strings,yjbanov/quiver_hashcode,QuiverDart/quiver_mirrors,QuiverDart/quiver_hashcode,googlearchive/quiver_check,QuiverDart/quiver_async,googlearchive/quiver_async,googlearchive/quiver_io,willyp564/quiver-dart,googlearchive/quiver_hashcode,EmmanuelOga/quiver-dart
|
0db6f691eb196f615733401486c3bc2ff93fa153
|
metadata/ILAMB/wmt.yaml
|
metadata/ILAMB/wmt.yaml
|
ignore:
- _run_duration
globals:
- _run_duration
extras:
_run_duration:
description: Simulation run time
value:
type: int
default: 1
range:
min: 1
max: 1
sections:
- title: MsTMIP models
members:
- BIOME-BGC
- CLASS-CTEM-N
- CLM4
- CLM4VIC
- DLEM
- GTEC
- ISAM
- LPJ-wsl
- ORCHIDEE-LSCE
- SiB3
- SiBCASA
- TEM6
- TRIPLEX-GHG
- VEGAS2.1
- VISIT
- title: CMIP5 models
members:
- bcc-csm1-1-m
- BNU-ESM
- CanESM2
- cesm1_2bgc
- CESM1-BGC
- GFDL-ESM2G
- HadGEM2-ES
- inmcm4
- IPSL-CM5A-LR
- MIROC-ESM
- MPI-ESM-LR
- MRI-ESM1
- NorESM1-ME
- title: Study variable
members:
- study_variable
- title: Study duration and scope
members:
- start_year
- end_year
- region
- title: Statistics and skill scores
members:
- gp_annualmean
- gp_bias
- gp_rmse
- sm_globalbias
- sm_rmse
- sm_phase
- sm_taylor
- sm_interannual
|
ignore:
- _run_duration
globals:
- _run_duration
extras:
_run_duration:
description: Simulation run time
value:
type: int
default: 1
range:
min: 1
max: 1
sections:
- title: MsTMIP models
members:
- BIOME-BGC
- CLASS-CTEM-N
- CLM4
- CLM4VIC
- DLEM
- GTEC
- ISAM
- LPJ-wsl
- ORCHIDEE-LSCE
- SiB3
- SiBCASA
- TEM6
- TRIPLEX-GHG
- VEGAS21
- VISIT
- title: CMIP5 models
members:
- bcc-csm1-1-m
- BNU-ESM
- CanESM2
- cesm1_2bgc
- CESM1-BGC
- GFDL-ESM2G
- HadGEM2-ES
- inmcm4
- IPSL-CM5A-LR
- MIROC-ESM
- MPI-ESM-LR
- MRI-ESM1
- NorESM1-ME
- title: Study variable
members:
- study_variable
- title: Study duration and scope
members:
- start_year
- end_year
- region
- title: Statistics and skill scores
members:
- gp_annualmean
- gp_bias
- gp_rmse
- sm_globalbias
- sm_rmse
- sm_phase
- sm_taylor
- sm_interannual
|
Change VEGAS2.1 attr to VEGAS21
|
Change VEGAS2.1 attr to VEGAS21
|
YAML
|
mit
|
csdms/wmt-metadata
|
21c84c08324fc8e32e84a205a1033a5da28b800b
|
appveyor.yml
|
appveyor.yml
|
version: '{build}'
environment:
mssql_jdbc_test_connection_properties: jdbc:sqlserver://localhost:1433;instanceName=SQL2016;databaseName=master;username=sa;password=Password12!;
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
services:
- mssql2016
build_script:
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pbuild41
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pbuild42
test_script:
- mvn test -B -Pbuild41
- mvn test -B -Pbuild42
|
version: '{build}'
environment:
mssql_jdbc_test_connection_properties: jdbc:sqlserver://localhost:1433;instanceName=SQL2016;databaseName=master;username=sa;password=Password12!;
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
services:
- mssql2016
install:
- ps: Write-Host 'Installing JCE with powershell'
- ps: cd AppVeyorJCE
- ps: choco pack
- ps: choco install jce -fdv -s . -y -failonstderr
- ps: cd..
build_script:
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pbuild41
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -Pbuild42
test_script:
- mvn test -B -Pbuild41
- mvn test -B -Pbuild42
|
Modify yml to automatically install JCE policy files
|
Modify yml to automatically install JCE policy files
|
YAML
|
mit
|
Microsoft/mssql-jdbc
|
51c886e615ecf3cb4c81947b34e700658aeca4b9
|
appveyor.yml
|
appveyor.yml
|
version: "{build}"
# This will build all PRs targetting matching branches.
# Without this, each PR builds twice -- once for the PR branch HEAD,
# and once for the merge commit that github creates for each mergable PR.
branches:
only:
- master
- still
# Disable normal Windows builds in favor of our test script.
build: off
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- gem install bundler
- bundler --version
- bundle install
- cinst ansicon
test_script:
- bundle exec rake test --trace
environment:
matrix:
- ruby_version: '19'
- ruby_version: '20'
- ruby_version: '21'
- ruby_version: '22'
|
version: "{build}"
# This will build all PRs targetting matching branches.
# Without this, each PR builds twice -- once for the PR branch HEAD,
# and once for the merge commit that github creates for each mergable PR.
branches:
only:
- master
- still
# Disable normal Windows builds in favor of our test script.
build: off
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- ruby --version
- gem --version
- bundler --version
- bundle install
- cinst ansicon
test_script:
- bundle exec rake test --trace
environment:
matrix:
- ruby_version: '19'
- ruby_version: '20'
- ruby_version: '21'
- ruby_version: '22'
|
Use pre-installed bundler on AppVeyor
|
Use pre-installed bundler on AppVeyor
|
YAML
|
mit
|
mvz/aruba,mvz/aruba,cucumber/aruba
|
81e41e566c27dd61e9c6e8614d58997fba0d300b
|
appveyor.yml
|
appveyor.yml
|
build: off
deploy: off
environment:
PATH: C:\Ruby%RUBY_VERSION%\bin;%PATH%
APPVEYOR_SAVE_CACHE_ON_ERROR: True
matrix:
- RUBY_VERSION: _trunk
- RUBY_VERSION: 26-x64
- RUBY_VERSION: 25-x64
- RUBY_VERSION: 24-x64
- RUBY_VERSION: 23-x64
- RUBY_VERSION: 23
init:
- ps: |
if ($env:RUBY_VERSION -eq '_trunk') {
$trunk_uri = 'https://ci.appveyor.com/api/projects/MSP-Greg/ruby-loco/artifacts/ruby_trunk.7z'
(New-Object Net.WebClient).DownloadFile($trunk_uri, 'C:\ruby_trunk.7z')
7z.exe x C:\ruby_trunk.7z -oC:\Ruby_trunk
}
install:
- SET RAKEOPT=-rdevkit
- gem update --system --conservative --no-document
- ruby -v
- gem -v
- bundle -v
- bundle install --path vendor\bundle --without development
test_script:
- bundle exec rake spec
matrix:
allow_failures:
- RUBY_VERSION: _trunk
cache:
# If one of the files after the right arrow changes, cache will be invalidated
- vendor\bundle -> appveyor.yml, Gemfile, nio4r.gemspec
|
build: off
deploy: off
environment:
PATH: C:\Ruby%RUBY_VERSION%\bin;%PATH%
APPVEYOR_SAVE_CACHE_ON_ERROR: True
matrix:
- RUBY_VERSION: 23
- RUBY_VERSION: _trunk
init:
- ps: |
if ($env:RUBY_VERSION -eq '_trunk') {
$trunk_uri = 'https://ci.appveyor.com/api/projects/MSP-Greg/ruby-loco/artifacts/ruby_trunk.7z'
(New-Object Net.WebClient).DownloadFile($trunk_uri, 'C:\ruby_trunk.7z')
7z.exe x C:\ruby_trunk.7z -oC:\Ruby_trunk
}
install:
- gem update --system --conservative --no-document
- ruby -v
- gem -v
- bundle -v
- bundle install --path vendor\bundle --without development
test_script:
- bundle exec rake spec
matrix:
allow_failures:
- RUBY_VERSION: _trunk
cache:
# If one of the files after the right arrow changes, cache will be invalidated
- vendor\bundle -> appveyor.yml, Gemfile, nio4r.gemspec
|
Remove redundant jobs from AppVeyor
|
Remove redundant jobs from AppVeyor
|
YAML
|
mit
|
celluloid/nio4r,celluloid/nio4r,celluloid/nio4r
|
89b07ab2c843a2077a8d3ecb17829e3453676c40
|
appveyor.yml
|
appveyor.yml
|
branches:
except:
- /travis-.*/
install:
ps: |
Import-Module '.\appveyor-tool.ps1'
Bootstrap
build_script:
- ps: .\build.ps1 -Target "Appveyor"
artifacts:
- path: package\*.nupkg
# - path: package\*.msi
# AppVeyor defaults to just its build number
version: '{build}'
# disable built-in tests.
test: off
|
branches:
except:
- /travis-.*/
install:
ps: |
Import-Module '.\appveyor-tool.ps1'
Bootstrap
build_script:
- ps: .\build.ps1 -Target "Appveyor"
# disable built-in tests.
test: off
artifacts:
- path: package\*.nupkg
# - path: package\*.msi
deploy:
- provider: NuGet
server: https://www.myget.org/F/nunit/api/v2
api_key:
secure: wtAvJDVl2tfwiVcyLExFHLvZVfUWiQRHsfdHBFCNEATeCHo1Nd8JP642PfY8xhji
skip_symbols: true
on:
branch: master
|
Deploy builds of master to MyGet
|
Deploy builds of master to MyGet
|
YAML
|
mit
|
cPetru/nunit-params,danielmarbach/nunit,Green-Bug/nunit,danielmarbach/nunit,ChrisMaddock/nunit,JohanO/nunit,nunit/nunit,pflugs30/nunit,cPetru/nunit-params,nivanov1984/nunit,OmicronPersei/nunit,jnm2/nunit,OmicronPersei/nunit,NikolayPianikov/nunit,ChrisMaddock/nunit,Suremaker/nunit,appel1/nunit,JohanO/nunit,jnm2/nunit,nunit/nunit,agray/nunit,Suremaker/nunit,JustinRChou/nunit,appel1/nunit,pflugs30/nunit,acco32/nunit,JohanO/nunit,acco32/nunit,acco32/nunit,agray/nunit,agray/nunit,mikkelbu/nunit,danielmarbach/nunit,mjedrzejek/nunit,NikolayPianikov/nunit,JustinRChou/nunit,Green-Bug/nunit,nivanov1984/nunit,jadarnel27/nunit,mjedrzejek/nunit,ggeurts/nunit,jadarnel27/nunit,mikkelbu/nunit,ggeurts/nunit,Green-Bug/nunit
|
d7312033b4dcd1129a5e97e5439168833478ec70
|
appveyor.yml
|
appveyor.yml
|
build: false
shallow_clone: true
platform: 'x86'
clone_folder: c:\projects\phpmd
branches:
except:
- gh-pages
environment:
global:
PHP: "C:/PHP"
init:
- SET PATH=C:\php\;%PATH%
install:
- cinst php
- cd C:\projects\phpmd
- php -r "readfile('https://getcomposer.org/installer');" | php
- php composer.phar install --prefer-dist --no-interaction --dev
test_script:
- cd c:\projects\phpmd
- vendor\bin\phpunit.bat
|
build: false
shallow_clone: true
platform: 'x86'
clone_folder: c:\projects\phpmd
branches:
except:
- gh-pages
install:
- cinst php
- SET PATH=C:\php\;%PATH%
- cd C:\projects\phpmd
- php -r "readfile('https://getcomposer.org/installer');" | php
- php composer.phar install --prefer-dist --no-interaction --dev
test_script:
- cd c:\projects\phpmd
- vendor\bin\phpunit.bat
|
Set PATH after php installation
|
Set PATH after php installation
|
YAML
|
bsd-3-clause
|
BernardoSilva/phpmd,DanielSiepmann/phpmd,ravage84/phpmd,phpmd/phpmd,behance/phpmd,postalservice14/phpmd,JeroenDeDauw/phpmd
|
9c4a8139b1d954a0b911b1502a2019f527650dc6
|
appveyor.yml
|
appveyor.yml
|
#---------------------------------#
# environment configuration #
#---------------------------------#
version: 2.16.{build}.0
install:
- git clone https://github.com/PowerShell/DscResource.Tests
- ps: |
Add-WindowsFeature RSAT-AD-PowerShell
Import-Module "$env:APPVEYOR_BUILD_FOLDER\DscResource.Tests\AppVeyor.psm1"
Invoke-AppveyorInstallTask
#---------------------------------#
# build configuration #
#---------------------------------#
build: false
#---------------------------------#
# test configuration #
#---------------------------------#
test_script:
- ps: |
Invoke-AppveyorTestScriptTask `
-CodeCoverage `
-CodeCovIo
#---------------------------------#
# deployment configuration #
#---------------------------------#
# scripts to run before deployment
deploy_script:
- ps: |
Invoke-AppveyorAfterTestTask
|
#---------------------------------#
# environment configuration #
#---------------------------------#
version: 2.16.{build}.0
install:
- git clone https://github.com/PowerShell/DscResource.Tests
- ps: |
Add-WindowsFeature RSAT-AD-PowerShell
Import-Module -Name "$env:APPVEYOR_BUILD_FOLDER\DscResource.Tests\AppVeyor.psm1"
Invoke-AppveyorInstallTask
#---------------------------------#
# build configuration #
#---------------------------------#
build: false
#---------------------------------#
# test configuration #
#---------------------------------#
test_script:
- ps: |
Invoke-AppveyorTestScriptTask `
-CodeCoverage `
-CodeCovIo
#---------------------------------#
# deployment configuration #
#---------------------------------#
# scripts to run before deployment
deploy_script:
- ps: |
Invoke-AppveyorAfterTestTask
|
Fix as per PR comments
|
Fix as per PR comments
|
YAML
|
mit
|
PowerShell/xActiveDirectory,iainbrighton/xActiveDirectory
|
5cd8a8073211831a7753cc54a90c858246cfdde7
|
appveyor.yml
|
appveyor.yml
|
environment:
op_build_user: "OpenPublishBuild"
op_build_user_email: "[email protected]"
access_token:
secure: t74btP1uJUIXa65tTiQGWAZvYmJSNjSruJV90exd++sAjrKpo7f6e4LGJJLGIKb3
before_build:
- ps: |
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
{
git checkout master -q
cinst docfx -y
}
build_script:
- msbuild src/SampleClass1/SampleClass1.sln
after_build:
- ps: |
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
{
docfx docfx.json
git config --global credential.helper store
Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:access_token):[email protected]`n"
git config --global user.email $env:op_build_user_email
git config --global user.name $env:op_build_user
git clone https://github.com/docascode/docfx-seed.git -b gh-pages origin_site -q
Copy-Item origin_site/.git _site -recurse
CD _site
git add -A 2>&1
git commit -m "CI Updates" -q
git push origin gh-pages -q
}
|
environment:
op_build_user: "OpenPublishBuild"
op_build_user_email: "[email protected]"
access_token:
secure: t74btP1uJUIXa65tTiQGWAZvYmJSNjSruJV90exd++sAjrKpo7f6e4LGJJLGIKb3
before_build:
- ps: |
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
{
git checkout $env:APPVEYOR_REPO_BRANCH -q
cinst docfx -y
}
build_script:
- msbuild src/SampleClass1/SampleClass1.sln
after_build:
- ps: |
if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE)
{
docfx docfx.json
git config --global credential.helper store
Add-Content "$env:USERPROFILE\.git-credentials" "https://$($env:access_token):[email protected]`n"
git config --global user.email $env:op_build_user_email
git config --global user.name $env:op_build_user
git clone https://github.com/docascode/docfx-seed.git -b gh-pages origin_site -q
Copy-Item origin_site/.git _site -recurse
CD _site
git add -A 2>&1
git commit -m "CI Updates" -q
git push origin gh-pages -q
}
|
Use APPVEYOR_REPO_BRANCH instead of master branch
|
Use APPVEYOR_REPO_BRANCH instead of master branch
|
YAML
|
mit
|
ansyral/docfx-seed,docascode/docfx-seed
|
9306af44bf6ec283644bf4a4b2d415fd6aa9537c
|
appveyor.yml
|
appveyor.yml
|
branches:
only:
- master
install:
- ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.msi'
- ps: Start-FileDownload 'http://slproweb.com/download/Win32OpenSSL-1_0_2a.exe'
- Win32OpenSSL-1_0_2a.exe /VERYSILENT /NORESTART /DIR="C:\OpenSSL-Win32" /SUPPRESSMSGBOXES
- SET OPENSSL_INCLUDE_DIR=%OPENSSL_INCLUDE_DIR%;C:\OpenSSL-Win32\include
- SET OPENSSL_LIB_DIR=%OPENSSL_LIB_DIR%;C:\OpenSSL-Win32\bin
- CP C:\OpenSSL-Win32\bin\ssleay32.dll C:\OpenSSL-Win32\bin\libssl32.dll
- rust-nightly-i686-pc-windows-gnu.msi /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- rustc -V
- cargo -V
build_script:
- cargo build
test_script:
- cargo test
|
branches:
only:
- master
install:
- ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.exe'
- ps: Start-FileDownload 'http://slproweb.com/download/Win32OpenSSL-1_0_2a.exe'
- Win32OpenSSL-1_0_2a.exe /VERYSILENT /NORESTART /DIR="C:\OpenSSL-Win32" /SUPPRESSMSGBOXES
- SET OPENSSL_INCLUDE_DIR=%OPENSSL_INCLUDE_DIR%;C:\OpenSSL-Win32\include
- SET OPENSSL_LIB_DIR=%OPENSSL_LIB_DIR%;C:\OpenSSL-Win32\bin
- CP C:\OpenSSL-Win32\bin\ssleay32.dll C:\OpenSSL-Win32\bin\libssl32.dll
- rust-nightly-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
- rustc -V
- cargo -V
build_script:
- cargo build
test_script:
- cargo test
|
Change Rust Download From .msi To .exe On Appveyor
|
Change Rust Download From .msi To .exe On Appveyor
|
YAML
|
apache-2.0
|
icorderi/ssdp-rs
|
e96d1649d7a2ff2d3f1bb676597f9e951a853fbf
|
appveyor.yml
|
appveyor.yml
|
version: '{build}'
os: Visual Studio 2017
configuration: Debug
branches:
only:
- master
build_script:
- ps: >-
./Build.ps1
nuget pack nuspec/Nito.Comparers.nuspec
nuget pack nuspec/Comparers.nuspec
nuget pack nuspec/Comparers.Ix.nuspec
nuget pack nuspec/Comparers.Rx.nuspec
test_script:
- ps: ./Coverage.ps1
artifacts:
- path: '**\*.nupkg'
name: NuGet Packages
deploy:
provider: NuGet
api_key:
secure: QeC34B7ohkvqbwCOKmavQWhitZNYLX/EFdgK8CfL5jEujWw2L85qrzuME8CQRBEb
on:
APPVEYOR_REPO_TAG: true
|
version: '{build}'
os: Visual Studio 2017
configuration: Debug
branches:
only:
- master
build_script:
- ps: >-
./Build.ps1
nuget pack nuspec/Nito.Comparers.nuspec
nuget pack nuspec/Comparers.nuspec
nuget pack nuspec/Comparers.Ix.nuspec
nuget pack nuspec/Comparers.Rx.nuspec
test_script:
- ps: ./Coverage.ps1
artifacts:
- path: '**\*.nupkg'
name: NuGet Packages
- path: '**\*.snupkg'
name: NuGet Symbol Packages
deploy:
provider: NuGet
api_key:
secure: QeC34B7ohkvqbwCOKmavQWhitZNYLX/EFdgK8CfL5jEujWw2L85qrzuME8CQRBEb
on:
APPVEYOR_REPO_TAG: true
|
Add symbol packages to artifacts.
|
Add symbol packages to artifacts.
|
YAML
|
mit
|
StephenCleary/Comparers
|
8f344cb96e78abae8b6634fee0e58b8b46caf459
|
appveyor.yml
|
appveyor.yml
|
version: 1.9.10000.{build}
os: Visual Studio 2015
init:
- ps: git config --global core.autocrlf true
- ps: Update-AppveyorBuild -Version "1.9.1$(Get-Date -format MMdd).$env:appveyor_build_number"
build_script:
- ps: ./buildCC "1.9.1$(Get-Date -format MMdd).$env:appveyor_build_number"
test: off
# assemblies:
# - '**\ClousotCacheTests\bin\Debug\ClousotCacheTests.dll'
# - '**\ClousotTests\bin\Debug\ClousotTests.dll'
# - '**\Foxtrot\Tests\bin\Debug\FoxtrotTests.dll'
# - '**\Foxtrot\Tests\UnitTests\bin\Debug\UnitTests.dll'
artifacts:
- path: '**\ManagedContract.Setup\devlab9ts\Microsoft.Contracts.*.nupkg'
- path: '**\ManagedContract.Setup\devlab9ts\msi\Contracts.devlab9ts.msi'
- path: '**\ContractAdornments\Extension\bin\Devlab9\CodeContractsHelper.vsix'
|
version: 1.9.10000.{build}
os: Visual Studio 2015
init:
- ps: git config --global core.autocrlf true
- ps: Update-AppveyorBuild -Version "1.9.1$(Get-Date -format MMdd).$env:appveyor_build_number"
build_script:
- ps: ./buildCC "1.9.1$(Get-Date -format MMdd).$env:appveyor_build_number"
test: off
# assemblies:
# - '**\ClousotCacheTests\bin\Debug\ClousotCacheTests.dll'
# - '**\ClousotTests\bin\Debug\ClousotTests.dll'
# - '**\Foxtrot\Tests\bin\Debug\FoxtrotTests.dll'
# - '**\Foxtrot\Tests\UnitTests\bin\Debug\UnitTests.dll'
artifacts:
- path: '**\ManagedContract.Setup\devlab9ts\Microsoft.Contracts.*.nupkg'
- path: '**\ManagedContract.Setup\devlab9ts\msi\Contracts.devlab9ts.msi'
- path: '**\ContractAdornments\Extension\bin\Devlab9\CodeContractsHelper.vsix'
# preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
cache:
- packages -> **\packages.config
|
Enable NuGet packages caching for more reliable AppVeyor builds
|
Enable NuGet packages caching for more reliable AppVeyor builds
|
YAML
|
mit
|
huoxudong125/CodeContracts,hubuk/CodeContracts,Microsoft/CodeContracts,huoxudong125/CodeContracts,Microsoft/CodeContracts,Microsoft/CodeContracts,Microsoft/CodeContracts,hubuk/CodeContracts,hubuk/CodeContracts,SergeyTeplyakov/CodeContracts,Microsoft/CodeContracts,SergeyTeplyakov/CodeContracts,huoxudong125/CodeContracts,huoxudong125/CodeContracts,SergeyTeplyakov/CodeContracts,SergeyTeplyakov/CodeContracts,ndykman/CodeContracts,huoxudong125/CodeContracts,ndykman/CodeContracts,huoxudong125/CodeContracts,SergeyTeplyakov/CodeContracts,hubuk/CodeContracts,hubuk/CodeContracts,SergeyTeplyakov/CodeContracts,ndykman/CodeContracts,Microsoft/CodeContracts,huoxudong125/CodeContracts,ndykman/CodeContracts,hubuk/CodeContracts,ndykman/CodeContracts,hubuk/CodeContracts,Microsoft/CodeContracts,SergeyTeplyakov/CodeContracts,ndykman/CodeContracts,ndykman/CodeContracts
|
c0f96de6907c85846b94cc9363d28fac78a9da02
|
appveyor.yml
|
appveyor.yml
|
version: 0.3.{build}
skip_non_tags: true
clone_folder: c:\seo-metadata
build_script:
- cmd: >-
cd c:\seo-metadata
nuget restore app\Epiphany.SeoMetadata\Epiphany.SeoMetadata.sln
npm install
npm install grunt --save-dev
npm install -g grunt-cli
grunt nuget
artifacts:
- path: pkg\nuget\*
|
version: 0.3.0.{build}
skip_non_tags: true
clone_folder: c:\seo-metadata
build_script:
- cmd: >-
cd c:\seo-metadata
nuget restore app\Epiphany.SeoMetadata\Epiphany.SeoMetadata.sln
npm install
npm install grunt --save-dev
npm install -g grunt-cli
grunt nuget
artifacts:
- path: pkg\nuget\*
|
Build number is < patch number
|
Build number is < patch number
|
YAML
|
mit
|
ryanlewis/seo-metadata,ryanlewis/seo-metadata,ryanlewis/seo-metadata
|
ecd485e0b42dcafac4a5e8b481138843835ba552
|
appveyor.yml
|
appveyor.yml
|
version: '{build}'
branches:
only:
- master
image: Visual Studio 2015
build:
verbosity: minimal
after_build:
- ps: >-
Tools\BuildStatic.ps1 $pwd.path
on_success:
- git checkout master
- xcopy ..\output docs /E /R /Y
- git remote set-url origin https://github.com/neptuo/com.neptuo.go.git
- git add -A
- git commit -a -m "[StaticSiteBuild]"
- git push
|
version: '{build}'
branches:
only:
- master
image: Visual Studio 2015
build:
verbosity: minimal
after_build:
- ps: >-
Tools\BuildStatic.ps1 $pwd.path
on_success:
- git config --global credential.helper store
- git config --global user.email $env:op_build_user_email
- git config --global user.name $env:op_build_user
- git checkout master
- xcopy ..\output docs /E /R /Y
- git remote set-url origin https://github.com/neptuo/com.neptuo.go.git
- git add -A
- git commit -a -m "[StaticSiteBuild]"
- git push
- git commit --amend --reset-author
|
Add username and email from configuration.
|
Add username and email from configuration.
|
YAML
|
apache-2.0
|
neptuo/com.neptuo.go,neptuo/com.neptuo.go
|
322cb4c4480f545ff4537627d3533832698b4fa6
|
appveyor.yml
|
appveyor.yml
|
# http://www.appveyor.com/docs/appveyor-yml
# configuration for develop/CI and master/Release branch
-
branches:
only:
- dev
- master
skip_tags: true
image: Visual Studio 2017
test: off
pull_requests:
do_not_increment_build_number: false
build_script:
- ps: .\build.ps1 -target appveyor
artifacts:
- path: \Publish\*.*
nuget:
disable_publish_on_pr: true
|
# http://www.appveyor.com/docs/appveyor-yml
# configuration for develop/CI and master/Release branch
-
branches:
only:
- dev
- master
skip_tags: true
image: Visual Studio 2017
test: off
# Install dotnet core 3.0 latest (alpha!!), as this is not provided on AppVeyor yet
install:
- ps: Start-FileDownload 'https://dotnetcli.blob.core.windows.net/dotnet/Sdk/master/dotnet-sdk-latest-win-x64.exe'
- ps: Start-Process .\dotnet-sdk-latest-win-x64.exe "/install /norestart /quiet /log sdkinstall.log" -NoNewWindow -Wait
pull_requests:
do_not_increment_build_number: false
build_script:
- ps: .\build.ps1 -target appveyor
artifacts:
- path: \Publish\*.*
nuget:
disable_publish_on_pr: true
|
Install latest dotnet core 3.0 alpha
|
Install latest dotnet core 3.0 alpha
|
YAML
|
bsd-3-clause
|
punker76/gong-wpf-dragdrop
|
dfa461ef2979772079ed837a706da1a37f6c2cc9
|
appveyor.yml
|
appveyor.yml
|
version: '{branch}-{build}'
os: Visual Studio 2015
environment:
DNX_FEED: https://www.nuget.org/api/v2
DNX_BUILD_VERSION: build$(appveyor_build_number)
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true
branches:
only:
- master
skip_tags: true
skip_commits:
message: /\<\.nobuild\>
init:
- ps: dnvm install latest
shallow_clone: true
clone_depth: 1
install:
- ps: $env:SRC_DIR = (get-content .src)
- ps: dnu restore $env:SRC_DIR
build_script:
- ps: dnu pack --configuration Release $env:SRC_DIR
artifacts:
- path: '**\*.nupkg'
notifications:
- provider: Email
to: [email protected]
on_build_status_changed: true
|
version: '{branch}-{build}'
os: Visual Studio 2015
environment:
DNX_FEED: https://www.nuget.org/api/v2
DNX_BUILD_VERSION: build$(appveyor_build_number)
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true
branches:
only:
- master
skip_tags: true
skip_commits:
message: /\<\.nobuild\>
init:
- ps: dnvm install latest
shallow_clone: true
clone_depth: 1
install:
- ps: $env:SRC_DIR = (get-content .src)
- ps: dnu restore $env:SRC_DIR
build_script:
- ps: dnu pack --configuration Release $env:SRC_DIR
artifacts:
- path: '**\*.nupkg'
deploy:
- provider: NuGet
server: https://www.myget.org/F/sharper-c/api/v2/package
api_key:
secure: vw1oq34RgUGX7J5FSU4KwT0OCyr/OBaY8NGAqa096ahvtmDmkWHUTNXdZ6cMd6Q8
skip_symbols: false
symbol_server: https://nuget.symbolsource.org/MyGet/sharper-c
notifications:
- provider: Email
to: [email protected]
on_build_status_changed: true
|
Deploy fron AppVeyor -> MyGet
|
Deploy fron AppVeyor -> MyGet
|
YAML
|
mit
|
sharper-library/Sharper.C.Tuple
|
d1e8f9b11336c6869b91b3ecbccd9dbfa884a169
|
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.18'
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
|
maxjacobson/rubocop,rrosenblum/rubocop,bbatsov/rubocop,bbatsov/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,maxjacobson/rubocop,maxjacobson/rubocop,tejasbubane/rubocop,tejasbubane/rubocop,rrosenblum/rubocop
|
0a0d6580d781fba8d23b75b82e69cc22b9445fa0
|
automation.yaml
|
automation.yaml
|
distros:
- el8
- fc30
- fcraw
release_branches:
master: ovirt-master
|
distros:
- el8
release_branches:
master: ovirt-master
|
Remove Fedora based builds from CI
|
Remove Fedora based builds from CI
Remove Fedora based builds from CI as oVirt supports only EL8.
Change-Id: I4f13e81c9c166abba5f974c211f6ef5f5dfa123e
Signed-off-by: Martin Perina <[email protected]>
|
YAML
|
apache-2.0
|
oVirt/ovirt-engine-extension-aaa-jdbc,oVirt/ovirt-engine-extension-aaa-jdbc
|
c817f83ef3be2f07bae82fd7a292d71ba74b5c39
|
packages/ca/casing.yaml
|
packages/ca/casing.yaml
|
homepage: ''
changelog-type: ''
hash: 496cc2f196f48d997e4a6b6b9d197bcd156d3b014aca65bb700d43b1496cbb65
test-bench-deps: {}
maintainer: [email protected]
synopsis: Convert between various source code casing conventions
changelog: ''
basic-deps:
split: -any
base: ! '>=4.8 && <5'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.2.1'
author: Tobias Dammers
latest: '0.1.2.1'
description-type: haddock
description: ! 'Converts between camelCase, PascalCase, kebab-case, and
three flavors of snake_case.'
license-name: MIT
|
homepage: ''
changelog-type: ''
hash: 496cc2f196f48d997e4a6b6b9d197bcd156d3b014aca65bb700d43b1496cbb65
test-bench-deps: {}
maintainer: [email protected]
synopsis: Convert between various source code casing conventions
changelog: ''
basic-deps:
split: -any
base: ! '>=4.8 && <5'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
- '0.1.1.0'
- '0.1.2.1'
author: Tobias Dammers
latest: '0.1.2.1'
description-type: haddock
description: ! 'Converts between camelCase, PascalCase, kebab-case, and
three flavors of snake_case.'
license-name: MIT
|
Update from Hackage at 2017-03-30T20:59:46Z
|
Update from Hackage at 2017-03-30T20:59:46Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
49ca743c799fef5961c61bc7f6bb7d9b5e729fce
|
mkdocs.yml
|
mkdocs.yml
|
site_name: Boundary API CLI
theme: readthedocs
pages:
- [index.md, Home]
- ['reference/install.md','Getting Started','Install']
- ['reference/configuration.md','Getting Started','Configuring']
- ['reference/examples.md','Using','Examples']
- ['reference/actions.md','Reference','Actions']
- ['reference/alarms.md','Reference','Alarms']
- ['reference/hostgroups.md','Reference','Host Groups']
- ['reference/measurements.md','Reference','Measurements']
- ['reference/metrics.md','Reference','Metrics']
- ['reference/plugins.md','Reference','Plugins']
|
site_name: Boundary API CLI
theme: readthedocs
pages:
- [index.md, Home]
- ['reference/install.md','Getting Started','Install']
- ['reference/configuration.md','Getting Started','Configuring']
- ['reference/examples.md','Using','Examples']
- ['reference/actions.md','Reference','Actions']
- ['reference/alarms.md','Reference','Alarms']
- ['reference/hostgroups.md','Reference','Host Groups']
- ['reference/measurements.md','Reference','Measurements']
- ['reference/metrics.md','Reference','Metrics']
- ['reference/plugins.md','Reference','Plugins']
- ['reference/sources.md','Reference','Sources']
|
Add sources documentation to table of contents
|
Add sources documentation to table of contents
|
YAML
|
apache-2.0
|
jdgwartney/pulse-api-cli,boundary/boundary-api-cli,boundary/pulse-api-cli,boundary/pulse-api-cli,wcainboundary/boundary-api-cli,wcainboundary/boundary-api-cli,jdgwartney/pulse-api-cli,jdgwartney/boundary-api-cli,jdgwartney/boundary-api-cli,boundary/boundary-api-cli
|
5563f416e9417372677099a393376d4e86ec568b
|
data/sites/bis_rpc.yml
|
data/sites/bis_rpc.yml
|
---
site: bis_rpc
host: regulatorypolicycommittee.independent.gov.uk
redirection_date: 27th November 2013
tna_timestamp: 20130403085727
title: Cabinet Office
furl: www.gov.uk/cabinetoffice_rpc
homepage: https://www.gov.uk/government/organisations/regulatory-policy-committee
options: --query-string attachment_id
css: department-for-business-innovation-skills
---
|
---
site: bis_rpc
host: regulatorypolicycommittee.independent.gov.uk
redirection_date: 27th November 2013
tna_timestamp: 20130403085727
title: Regulatory Policy Committee
furl: www.gov.uk/rpc
homepage: https://www.gov.uk/government/organisations/regulatory-policy-committee
options: --query-string attachment_id
css: department-for-business-innovation-skills
---
|
Revise BIS RPC config to be correct and not incorrect
|
Revise BIS RPC config to be correct and not incorrect
|
YAML
|
mit
|
alphagov/transition-config,alphagov/transition-config
|
afd21c27fbf6e23d979bc9fbbf8847423cd590c9
|
packages/ti/timeit.yaml
|
packages/ti/timeit.yaml
|
homepage: https://github.com/merijn/timeit
changelog-type: markdown
hash: 0757796734c8bcc8cad97bac90d6db60e40f148b5d62699baf12fb8ec8939b34
test-bench-deps: {}
maintainer: Merijn Verstraaten <[email protected]>, Lennart Augustsson
synopsis: Time monadic computations with an IO base.
changelog: ! '2.0
---
* Generalise `timeIt` and `timeItT` to work for any `MonadIO`
* Added `timeItShow` and `timeItNamed`
'
basic-deps:
base: ! '>=3 && <5'
all-versions:
- 0.9.0.0
- 1.0.0.0
- '2.0'
author: Lennart Augustsson
latest: '2.0'
description-type: haddock
description: ! 'A simple wrapper to show the used CPU time of monadic computation
with an
IO base.'
license-name: BSD-3-Clause
|
homepage: https://github.com/merijn/timeit
changelog-type: markdown
hash: 35d7c3ce64b458bbb1200320203f21281c975c85acc636a634500601c474fded
test-bench-deps: {}
maintainer: Merijn Verstraaten <[email protected]>, Lennart Augustsson
synopsis: Time monadic computations with an IO base.
changelog: |
2.0
---
* Generalise `timeIt` and `timeItT` to work for any `MonadIO`
* Added `timeItShow` and `timeItNamed`
basic-deps:
base: '>=3 && <5'
all-versions:
- 0.9.0.0
- 1.0.0.0
- '2.0'
author: Lennart Augustsson
latest: '2.0'
description-type: haddock
description: |-
A simple wrapper to show the used CPU time of monadic computation with an
IO base.
license-name: BSD-3-Clause
|
Update from Hackage at 2021-12-02T13:45:32Z
|
Update from Hackage at 2021-12-02T13:45:32Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
524d73e11c3428b44057030e493f87f21150d124
|
packages/hl/hls-splice-plugin.yaml
|
packages/hl/hls-splice-plugin.yaml
|
homepage: ''
changelog-type: ''
hash: c64bb8de12a606d60caa26ffab238c482b8fa9524e1b8aa2f09cfd4f2e60fbc0
test-bench-deps: {}
maintainer: konn.jinro_at_gmail.com
synopsis: HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes
changelog: ''
basic-deps:
shake: -any
ghc: -any
hls-exactprint-utils: -any
base: '>=4.12 && <5'
unordered-containers: -any
text: -any
syb: -any
ghc-exactprint: -any
dlist: -any
containers: -any
ghcide: -any
lens: -any
retrie: -any
foldl: -any
transformers: -any
hls-plugin-api: -any
aeson: -any
haskell-lsp: -any
all-versions:
- 0.1.0.0
author: Hiromi ISHII
latest: 0.1.0.0
description-type: haddock
description: HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes.
license-name: Apache-2.0
|
homepage: ''
changelog-type: ''
hash: 56383fb2cc8f1c4a611a80457d5df782ad5de6b0d7a1f144e26ddad133489aa1
test-bench-deps: {}
maintainer: konn.jinro_at_gmail.com
synopsis: HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes
changelog: ''
basic-deps:
shake: -any
ghc: -any
base: '>=4.12 && <5'
unordered-containers: -any
text: -any
syb: -any
ghc-exactprint: -any
dlist: -any
containers: -any
ghcide: '>=0.7.1'
lens: -any
retrie: -any
foldl: -any
transformers: -any
hls-plugin-api: -any
aeson: -any
haskell-lsp: -any
all-versions:
- 0.1.0.0
- 0.2.0.0
author: Hiromi ISHII
latest: 0.2.0.0
description-type: haddock
description: HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes.
license-name: Apache-2.0
|
Update from Hackage at 2021-02-02T15:16:51Z
|
Update from Hackage at 2021-02-02T15:16:51Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
19aadcbdb34d0d7b4f16799f37dc95e5227e877a
|
packages/la/lambda-calculator.yaml
|
packages/la/lambda-calculator.yaml
|
homepage: https://github.com/sgillespie/lambda-calculus#readme
changelog-type: ''
hash: 434a12dfa5856867ea1f5681aa2caed8c52985913f8fd0cdae8756f77b157065
test-bench-deps:
hlint: -any
base: <=5
hspec: -any
HUnit: -any
lambda-calculator: -any
maintainer: [email protected]
synopsis: A lambda calculus interpreter
changelog: ''
basic-deps:
base: <=5
Shellac-readline: -any
parsec: -any
Shellac: -any
optparse-applicative: <0.13
lambda-calculator: -any
all-versions:
- '0.5.0'
- '1.0.0'
- '1.1.0'
- '1.1.1'
author: Sean D Gillespie
latest: '1.1.1'
description-type: haddock
description: Please see README.md
license-name: MIT
|
homepage: https://github.com/sgillespie/lambda-calculus#readme
changelog-type: ''
hash: 1dec2db39679ab8e734aea7514f426964e0e8a606ad5561e54561075f34242a7
test-bench-deps:
hlint: -any
base: <5
hspec: -any
HUnit: -any
containers: -any
lambda-calculator: -any
maintainer: [email protected]
synopsis: A lambda calculus interpreter
changelog: ''
basic-deps:
base: ! '>=4.9 && <5'
Shellac-readline: -any
parsec: -any
containers: -any
Shellac: -any
optparse-applicative: ! '>=0.13'
lambda-calculator: -any
all-versions:
- '0.5.0'
- '1.0.0'
- '1.1.0'
- '1.1.1'
- '2.0.0'
author: Sean D Gillespie
latest: '2.0.0'
description-type: haddock
description: Please see README.md
license-name: MIT
|
Update from Hackage at 2017-04-07T01:25:46Z
|
Update from Hackage at 2017-04-07T01:25:46Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
dd008b44be3850fc6cdf782ddbb3d4a1a0c356f6
|
packages/ms/msgpack-arbitrary.yaml
|
packages/ms/msgpack-arbitrary.yaml
|
homepage: http://msgpack.org/
changelog-type: ''
hash: 9a9d132b94e9f4da6cc14b3eefe03e78c9d98375e585a13ee91c5e62f8d5c9dd
test-bench-deps:
base: <5
hspec: -any
msgpack-types: -any
QuickCheck: -any
msgpack-arbitrary: -any
maintainer: Iphigenia Df <[email protected]>
synopsis: A Haskell implementation of MessagePack.
changelog: ''
basic-deps:
bytestring: -any
base: <5
time: -any
text: -any
msgpack-types: '>=0.3 && <0.4'
quickcheck-instances: -any
QuickCheck: -any
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
author: Hideyuki Tanaka
latest: 0.1.2
description-type: haddock
description: |-
A Haskell implementation of MessagePack <http://msgpack.org/>
This is a fork of msgpack-haskell <https://github.com/msgpack/msgpack-haskell>,
since the original author is unreachable. This fork incorporates a number of
bugfixes and is actively being developed.
license-name: BSD-3-Clause
|
homepage: http://msgpack.org/
changelog-type: ''
hash: 1699fdb03a96b2d98603a69554a11060307f9b88dd6ca18afce4786d46a45070
test-bench-deps:
base: <5
hspec: -any
msgpack-types: -any
QuickCheck: -any
msgpack-arbitrary: -any
maintainer: Iphigenia Df <[email protected]>
synopsis: A Haskell implementation of MessagePack.
changelog: ''
basic-deps:
bytestring: -any
base: <5
time: -any
text: -any
msgpack-types: '>=0.3.2 && <0.4'
quickcheck-instances: -any
QuickCheck: -any
all-versions:
- 0.1.0
- 0.1.1
- 0.1.2
- 0.1.3
author: Hideyuki Tanaka
latest: 0.1.3
description-type: haddock
description: |-
A Haskell implementation of MessagePack <http://msgpack.org/>
This is a fork of msgpack-haskell <https://github.com/msgpack/msgpack-haskell>,
since the original author is unreachable. This fork incorporates a number of
bugfixes and is actively being developed.
license-name: BSD-3-Clause
|
Update from Hackage at 2022-02-15T02:21:01Z
|
Update from Hackage at 2022-02-15T02:21:01Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
7ccbc2177fcd0fc63cad5976634487c31ffa4eac
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "iojs"
- "0.12"
- "0.10"
# Make sure we have new NPM.
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g npm
- npm config set loglevel warn
before_script:
- npm install -g grunt-cli
|
language: node_js
node_js:
- "4"
- "6"
- "7"
# Make sure we have new NPM.
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm install -g npm
- npm config set loglevel warn
|
Fix Travis build (update Node versions)
|
chore: Fix Travis build (update Node versions)
|
YAML
|
mit
|
karma-runner/karma-qunit
|
17849c2ecd0487a48f21cbed4e389a9adbc62f69
|
.travis.yml
|
.travis.yml
|
bundler_args: --without development
before_script: "./script/ci_setup"
script: "bundle exec rake travis"
rvm:
- 1.9.2
- 1.9.3
env:
- BUILD_TYPE=cucumber
- BUILD_TYPE=rspec
|
bundler_args: --without development
before_script: "./script/ci_setup"
script: "bundle exec rake travis"
rvm:
- 1.9.3
- 2.0.0
env:
- BUILD_TYPE=cucumber
- BUILD_TYPE=rspec
|
Add Ruby 2.0.0, rm Ruby 1.9.2
|
Add Ruby 2.0.0, rm Ruby 1.9.2
\o/
|
YAML
|
mit
|
thomas-mcdonald/qa,thomas-mcdonald/qa,thomas-mcdonald/qa,thomas-mcdonald/qa
|
075ec1106c87e81aa3af1b3fd6fdfbce206ebb6b
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.2
|
language: ruby
rvm:
- 2.0
- 2.1
- 2.2
- 2.3
- 2.4
- 2.5
|
Test against Ruby 2.x versions
|
[CI] Test against Ruby 2.x versions
|
YAML
|
mit
|
pietromenna/wikipedia-client,kenpratt/wikipedia-client
|
7d414e61dbd7f6513f1a2cf7486cf417ff1dbd29
|
.travis.yml
|
.travis.yml
|
sudo: required
dist: trusty
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- node
- "6"
branches:
only:
- master
before_install:
- sudo apt-get update
- sudo apt-get install -y libappindicator1 fonts-liberation
- wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- sudo dpkg -i google-chrome*.deb
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
- npm install
before_script:
- npm prune
script:
- npm run ci
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_after_all.py
- export $(cat .to_export_back) &> /dev/null
- npm run semantic-release
- npm run test:report
|
sudo: required
dist: trusty
language: node_js
cache:
directories:
- node_modules
notifications:
email: false
node_js:
- node
- "6"
branches:
only:
- master
before_install:
- sudo apt-get update
- sudo apt-get install -y libappindicator1 fonts-liberation
- wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
- sudo dpkg -i google-chrome*.deb
- export CHROME_BIN=/usr/bin/google-chrome
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- npm i -g yarn
install:
- yarn
script:
- yarn ci
after_success:
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
- python travis_after_all.py
- export $(cat .to_export_back) &> /dev/null
- yarn semantic-release
- yarn test:report
|
Switch to yarn from npm
|
ci(build): Switch to yarn from npm
|
YAML
|
mit
|
gund/ng-http-interceptor,gund/ng-http-interceptor,gund/ng-http-interceptor,gund/ng2-http-interceptor,gund/ng2-http-interceptor,gund/ng2-http-interceptor
|
d0e4ba75ad20afd35b817dac66d58708cdd0389c
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.3
- hhvm
before_script:
- composer install --dev --prefer-source --no-interaction
script:
- phpunit --coverage-text
|
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7
- hhvm
- hhvm-nightly
matrix:
allow_failures:
- php: 7
- php: hhvm
- php: hhvm-nightly
fast_finish: true
before_script:
- composer install --dev --prefer-source --no-interaction
script:
- phpunit --coverage-text
|
Test against PHP5.5, PHP5.6, PHP7, & HHVM
|
Test against PHP5.5, PHP5.6, PHP7, & HHVM
|
YAML
|
mit
|
reactphp/datagram
|
3a42dfe5dced05293a48d61d094b0ec88313df05
|
.travis.yml
|
.travis.yml
|
language: ruby
script: bundle exec rake test
rvm:
- 2.2
- 2.1
- 2.0.0
- ruby-head
- jruby-head
- rbx-2
addons:
code_climate:
repo_token: 240d93328887c5936b3af5aadca1900358cb12bdc227831b0577be2e9a89d817
|
language: ruby
script: bundle exec rake test
rvm:
- 2.2
- 2.1
- 2.0.0
- ruby-head
- jruby-head
- rbx-2
addons:
code_climate:
repo_token: 6f4b7c1f44b29f414ffb9b243b1f83cf5fa40eb297b4cd0c7761bf960487a8eb
|
Fix Code Climate repo key
|
Fix Code Climate repo key
|
YAML
|
mit
|
fny/interrobang
|
b521cc8c04b3b3477c09675899a5313ea145708d
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 7.2
- 7.3
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer install --no-interaction --prefer-dist
- travis_retry composer require --no-interaction --prefer-dist --dev php-coveralls/php-coveralls
script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
after_success: php vendor/bin/php-coveralls --verbose
|
language: php
php:
- 7.2
- 7.3
- 7.4
cache:
directories:
- $HOME/.composer/cache
install:
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer install --no-interaction --prefer-dist
- COMPOSER_MEMORY_LIMIT=-1 travis_retry composer require --no-interaction --prefer-dist --dev php-coveralls/php-coveralls
script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
after_success: php vendor/bin/php-coveralls --verbose
|
Disable composer memory limit & Add PHP 7.4 tests
|
Disable composer memory limit & Add PHP 7.4 tests
|
YAML
|
mit
|
dmitry-ivanov/laravel-helper-functions
|
a2c1417cbd71d12536c1bd9dcdc5a5c8727d6bf4
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.4
- 5.3
|
language: php
before_script:
- composer install --prefer-source
php:
- 5.4
- 5.3
|
Use composer to generate the autoloader
|
Use composer to generate the autoloader
|
YAML
|
bsd-3-clause
|
sebastianbergmann/exporter,iteman/exporter
|
6e52e4dfcc3ee731d0f743976baa0023b5593a12
|
.travis.yml
|
.travis.yml
|
sudo: required
services:
- docker
language: generic
git:
depth: false
install:
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
- git checkout $BRANCH
- git reset $TRAVIS_COMMIT --hard
- git status
- docker pull aaubry/yamldotnet
script:
- docker run -u root -v `pwd`:/build -w /build -it aaubry/yamldotnet ./build.sh --target Test-Release-Configurations # --verbosity Diagnostic
|
sudo: required
services:
- docker
language: generic
git:
depth: false
install:
# For pull requests, create a new branch (idempotently) to workaround
# GitVersion limitation, i.e., it does not work well with merge commits.
# We use GitVersion nuget package in Git-Version cake task, that fails
# with CI job requests triggered by PRs (GitHub server creates merge
# commits for PRs, and call CI endpoints with new commit ID).
# Perhaps this limitation will go away once the following PR is merged:
# https://github.com/GitTools/GitVersion/pull/1609
#
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then
git checkout $TRAVIS_BRANCH;
else
git checkout -b $TRAVIS_PULL_REQUEST_BRANCH > /dev/null;
fi
- git reset $TRAVIS_COMMIT --hard
- git status
- docker pull aaubry/yamldotnet
script:
- docker run -u root -v `pwd`:/build -w /build -it aaubry/yamldotnet ./build.sh --target Test-Release-Configurations # --verbosity Diagnostic
|
Fix PR build failure in TravisCI
|
Fix PR build failure in TravisCI
|
YAML
|
mit
|
aaubry/YamlDotNet,aaubry/YamlDotNet,aaubry/YamlDotNet
|
2509e4e889d61c9d6ebbda92684011a1e9965230
|
.travis.yml
|
.travis.yml
|
language: ruby
before_install:
- gem install bundler
- gem update --system
bundler_args: --without documentation production
rvm:
- 2.0.0-p0
before_script:
- ./config/setup_config.sh
script:
- 'RAILS_ENV=test rake spec && guard-jasmine'
services:
- mongodb
|
language: ruby
before_install:
- gem install bundler
- gem update --system
bundler_args: --without documentation production
rvm:
- 2.0.0
before_script:
- ./config/setup_config.sh
script:
- 'RAILS_ENV=test rake spec && guard-jasmine'
services:
- mongodb
|
Revert "try with versiosn 2.0.0-p0 of ruby"
|
Revert "try with versiosn 2.0.0-p0 of ruby"
This reverts commit 0bc9f75c8fadd7673eef54ae4bb6b4faa74ba8c1.
|
YAML
|
mit
|
leo-clubs/marozi,leo-clubs/marozi,leo-clubs/marozi
|
ae3c75b9450507a81a22d79e316f0b131df34da7
|
.travis.yml
|
.travis.yml
|
matrix:
include:
- script:
- xcodebuild test -scheme Result-Mac
- xcodebuild test -scheme Result-iOS -sdk iphonesimulator
- xcodebuild test -scheme Result-tvOS -sdk appletvsimulator
- xcodebuild build -scheme Result-watchOS -sdk watchsimulator
- pod lib lint
env: JOB=Xcode
os: osx
osx_image: xcode7.3
language: objective-c
- script:
- swift build
- swift test
env: JOB=Linux
sudo: required
dist: trusty
language: generic
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"
notifications:
email: false
|
matrix:
include:
- script:
- xcodebuild test -scheme Result-Mac
- xcodebuild test -scheme Result-iOS -sdk iphonesimulator
- xcodebuild test -scheme Result-tvOS -sdk appletvsimulator
- xcodebuild build -scheme Result-watchOS -sdk watchsimulator
- pod lib lint
env: JOB=Xcode
os: osx
osx_image: xcode7.3
language: objective-c
- script:
- swift build
- swift test
env: JOB=SPM
os: osx
osx_image: xcode7.3
language: objective-c
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"
- script:
- swift build
- swift test
env: JOB=Linux
sudo: required
dist: trusty
language: generic
install:
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/02090c7ede5a637b76e6df1710e83cd0bbe7dcdf/swiftenv-install.sh)"
notifications:
email: false
|
Add SwiftPM job on OS X
|
[Travis] Add SwiftPM job on OS X
|
YAML
|
mit
|
NachoSoto/Result,NachoSoto/Result,natestedman/Result,natestedman/Result,antitypical/Result,antitypical/Result,antitypical/Result,ratkins/Result,ratkins/Result,ratkins/Result,NachoSoto/Result,natestedman/Result
|
48da7efa4ee50d814a2e3e96f6bd1360c011c5f6
|
.travis.yml
|
.travis.yml
|
language: php
php:
- 5.5
- 5.6
- 7.0
matrix:
allow_failures:
- php: 7.0
before_install:
- composer self-update
install:
- composer install --optimize-autoloader --prefer-source --no-interaction
script:
- php vendor/bin/phpunit -c phpunit.xml --color --coverage-clover=build/logs/clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml
|
language: php
php:
- 7.1
matrix:
allow_failures:
- php: 7.0
before_install:
- composer self-update
install:
- composer install --optimize-autoloader --prefer-source --no-interaction
script:
- php vendor/bin/phpunit -c phpunit.xml --color --coverage-clover=build/logs/clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover ./build/logs/clover.xml
|
Test only against supported php versions
|
Test only against supported php versions
|
YAML
|
mit
|
phansible/phansible,phansible/phansible,phansible/phansible,phansible/phansible,phansible/phansible
|
89026eaf86fd8c7c25bb229f4073bc896db0fefa
|
.travis.yml
|
.travis.yml
|
sudo: false
language: node_js
node_js:
- '8'
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
|
sudo: false
language: node_js
node_js:
- '10'
branches:
only:
- master
- travis-ci
install:
- npm install --no-package-lock --no-save
- npm install -g nyc
script:
- nyc npm test
|
Drop support for Node.js 8 early.
|
Drop support for Node.js 8 early.
|
YAML
|
mit
|
bigeasy/arguable
|
8941b5fff991ab5a4b140c8fe54fdf3cd25e620d
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.5"
- "3.6"
env:
- TARGET=lint
- TARGET=typecheck
- TARGET=unit-tests
script: make $TARGET -e py_env=~/virtualenv/python$TRAVIS_PYTHON_VERSION
|
language: python
python:
- "3.5"
- "3.6"
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq -y libdb5.1-dev
env:
- TARGET=lint
- TARGET=typecheck
- TARGET=unit-tests
script: BERKELEYDB_DIR=/usr make $TARGET -e py_env=~/virtualenv/python$TRAVIS_PYTHON_VERSION
|
Make sure that bsddb can be setup on Travis
|
Make sure that bsddb can be setup on Travis
|
YAML
|
apache-2.0
|
c-w/gutenberg-http,c-w/gutenberg-http
|
c17278929ae25355f6d5ce6bf939105498047246
|
.travis.yml
|
.travis.yml
|
language: ruby
cache: bundler
matrix:
fast_finish: true
include:
- rvm: 2.1.1
env: RUN=default
- rvm: 1.8.7
env: RUN=rspec
- rvm: 1.9.3
env: RUN=rspec
- rvm: 2.0.0
env: RUN=rspec
- rvm: rbx
env: RUN=rspec
- rvm: jruby
env: RUN=rspec
allow_failures:
- rvm: 1.8.7
- rvm: 1.9.3
- rvm: 2.0.0
- rvm: rbx
- rvm: jruby
before_install:
- git submodule update --init
script:
- "bundle exec rake $RUN"
notifications:
irc: "irc.freenode.org#opal"
|
language: ruby
cache: bundler
matrix:
fast_finish: true
include:
- rvm: 2.1.1
env: RUN=default
- rvm: 1.8.7
env: RUN=rspec
- rvm: 1.9.3
env: RUN=rspec
- rvm: 2.0.0
env: RUN=rspec
- rvm: rbx
env: RUN=rspec
- rvm: jruby
env: RUN=rspec
allow_failures:
- rvm: 1.8.7
- rvm: 1.9.3
- rvm: 2.0.0
- rvm: rbx
- rvm: jruby
# Setting TimeZone. We'll need to do this in order to
# have the TZ related failures surface on Travis CI.
# http://stackoverflow.com/a/23374438/601782
before_install:
- git submodule update --init
script:
- "bundle exec rake $RUN"
notifications:
irc: "irc.freenode.org#opal"
|
Add a note on how to change TZ settings in TravisCI
|
Add a note on how to change TZ settings in TravisCI
|
YAML
|
mit
|
opal/opal,gausie/opal,jannishuebl/opal,Mogztter/opal,suyesh/opal,catprintlabs/opal,wied03/opal,jgaskins/opal,jannishuebl/opal,c42engineering/opal,Ajedi32/opal,iliabylich/opal,kachick/opal,Mogztter/opal,iliabylich/opal,gabrielrios/opal,gausie/opal,wied03/opal,bbatsov/opal,Flikofbluelight747/opal,castwide/opal,bbatsov/opal,opal/opal,iliabylich/opal,castwide/opal,Ajedi32/opal,jgaskins/opal,opal/opal,gausie/opal,jannishuebl/opal,domgetter/opal,Ajedi32/opal,catprintlabs/opal,fazibear/opal,merongivian/opal,bbatsov/opal,kachick/opal,suyesh/opal,domgetter/opal,fazibear/opal,kachick/opal,merongivian/opal,gabrielrios/opal,fazibear/opal,wied03/opal,Mogztter/opal,Flikofbluelight747/opal,gabrielrios/opal,c42engineering/opal,suyesh/opal,kachick/opal,jgaskins/opal,catprintlabs/opal,merongivian/opal,castwide/opal,c42engineering/opal,Flikofbluelight747/opal,Mogztter/opal,opal/opal
|
efe2b3633efac81ca5294c9149963fc443a70382
|
.travis.yml
|
.travis.yml
|
sudo: false
cache: bundler
language: ruby
env:
matrix:
- SOLIDUS_BRANCH=master DB=mysql
- SOLIDUS_BRANCH=master DB=postgres
script:
- bundle exec rake test_app
- bundle exec rspec
rvm:
- 2.1.8
|
sudo: false
cache: bundler
language: ruby
env:
matrix:
- SOLIDUS_BRANCH=v1.3 DB=mysql
- SOLIDUS_BRANCH=v1.3 DB=postgres
- SOLIDUS_BRANCH=master DB=mysql
- SOLIDUS_BRANCH=master DB=postgres
script:
- bundle exec rake test_app
- bundle exec rspec
rvm:
- 2.1.8
|
Test against solidus v1.3 branch
|
Test against solidus v1.3 branch
|
YAML
|
bsd-3-clause
|
solidusio/solidus_avatax,solidusio/solidus_avatax,glossier/solidus_avatax,glossier/solidus_avatax
|
c6d2dec512b163c02a2f29f9cc3b8996cecb0d2a
|
.travis.yml
|
.travis.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.
language: java
sudo: false
jdk:
- oraclejdk8
|
# 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.
language: java
sudo: false
jdk:
- oraclejdk8
install: true
script: mvn verify
|
Put main command in Travis script, not in Travis install step
|
Put main command in Travis script, not in Travis install step
|
YAML
|
apache-2.0
|
typetools/commons-bcel,typetools/commons-bcel,typetools/commons-bcel
|
8c79f161fcdac9b2ac6185cf7d4a088f668d08a5
|
.travis.yml
|
.travis.yml
|
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.2.0
- 2.3.1
- jruby-1.7.27
- jruby-9.1.12.0
env:
matrix:
- TASK=test
- TASK=spec
- TASK=rubocop
matrix:
allow_failures:
- rvm: jruby-1.7.27
- rvm: jruby-9.1.12.0
before_install:
- gem --version
script: bundle exec rake $TASK
|
language: ruby
sudo: false
rvm:
- 1.9.3
- 2.0.0
- 2.1.1
- 2.2.0
- 2.3.1
- 2.4.1
- jruby-1.7.27
- jruby-9.1.12.0
env:
matrix:
- TASK=test
- TASK=spec
- TASK=rubocop
matrix:
allow_failures:
- rvm: jruby-1.7.27
- rvm: jruby-9.1.12.0
before_install:
- gem --version
script: bundle exec rake $TASK
|
Add Ruby 2.4.1 to TravisCI configuration
|
Add Ruby 2.4.1 to TravisCI configuration
|
YAML
|
mit
|
defunkt/fakefs,fakefs/fakefs
|
6e237c86e05ca94b83c1fb11169704b2290feb33
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- 0.10
|
language: node_js
node_js:
- 0.10
- 0.11
- 0.12
|
Test against Node.js 0.11 and 0.12
|
Test against Node.js 0.11 and 0.12
|
YAML
|
mit
|
xavierdutreilh/wintersmith-sitemap,xavierdutreilh/wintersmith-sitemap
|
876a5c5926d5f2c316ea7811b715f2028ad5d518
|
.travis.yml
|
.travis.yml
|
language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
|
language: php
php:
- '5.4'
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly
script: phpunit route.php
|
Test Travis against just 1 file
|
Test Travis against just 1 file
|
YAML
|
agpl-3.0
|
jeremypoulter/emoncms,jeremypoulter/emoncms,inverse/emoncms,thaipowertech/emoncms,emoncms/emoncms,inverse/emoncms,emoncms/emoncms,chaveiro/emoncms,inverse/emoncms,chaveiro/emoncms,thaipowertech/emoncms,chaveiro/emoncms,emoncms/emoncms,chaveiro/emoncms,inverse/emoncms,jeremypoulter/emoncms,jeremypoulter/emoncms,emoncms/emoncms,thaipowertech/emoncms,thaipowertech/emoncms,emoncms/emoncms
|
e320b36a5680506eeba50798e316766d5f8f2521
|
.travis.yml
|
.travis.yml
|
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- kalakris-cmake
packages:
- gcc-4.7
- g++-4.7
- cmake
install:
# Make sure the proper C and C++ compilers are used
- export CC=gcc-4.7
- export CXX=g++-4.7
# Install dependencies
- travis_retry pip install --install-option="--no-cython-compile" Cython==0.21
- travis_retry pip install numpy
# Put libdynd sources in the right place so they are built with dynd-python.
- mkdir libraries
- pushd libraries
- git clone https://github.com/libdynd/libdynd.git
- popd
# Build dynd-python
- python setup.py install
script:
- pushd ~
- python -c 'import dynd; dynd.test(verbosity=2, exit=True)'
- popd
notifications:
email: false
flowdock: "b08b3ba4fb86fa48121e90b5f67ccb75"
on_success: "change"
on_failure: "always" # "change"
|
sudo: false
language: python
python:
- "2.6"
- "2.7"
- "3.3"
- "3.4"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- kalakris-cmake
packages:
- gcc-4.7
- g++-4.7
- cmake
install:
# Make sure the proper C and C++ compilers are used
- export CC=gcc-4.7
- export CXX=g++-4.7
# Install dependencies
- travis_retry pip install --install-option="--no-cython-compile" Cython==0.21
- travis_retry pip install numpy
# Put libdynd sources in the right place so they are built with dynd-python.
- mkdir libraries
- pushd libraries
- git clone --depth=1 https://github.com/libdynd/libdynd.git
- popd
# Build dynd-python
- python setup.py install
script:
- pushd ~
- python -c 'import dynd; dynd.test(verbosity=2, exit=True)'
- popd
notifications:
email: false
flowdock: "b08b3ba4fb86fa48121e90b5f67ccb75"
on_success: "change"
on_failure: "always" # "change"
|
Switch git clone depth to 1 when cloning libdynd. This will work fine since the Travis build only needs a deeper revision history for the repository it is running the tests on.
|
Switch git clone depth to 1 when cloning libdynd. This will work fine
since the Travis build only needs a deeper revision history for the
repository it is running the tests on.
|
YAML
|
bsd-2-clause
|
michaelpacer/dynd-python,cpcloud/dynd-python,michaelpacer/dynd-python,insertinterestingnamehere/dynd-python,michaelpacer/dynd-python,ContinuumIO/dynd-python,izaid/dynd-python,izaid/dynd-python,ContinuumIO/dynd-python,michaelpacer/dynd-python,pombredanne/dynd-python,cpcloud/dynd-python,mwiebe/dynd-python,mwiebe/dynd-python,izaid/dynd-python,mwiebe/dynd-python,cpcloud/dynd-python,izaid/dynd-python,pombredanne/dynd-python,cpcloud/dynd-python,ContinuumIO/dynd-python,insertinterestingnamehere/dynd-python,ContinuumIO/dynd-python,pombredanne/dynd-python,pombredanne/dynd-python,insertinterestingnamehere/dynd-python,insertinterestingnamehere/dynd-python,mwiebe/dynd-python
|
c4b85776d5aa5d4bef6c6469ef1b71f21f585a8a
|
.travis.yml
|
.travis.yml
|
language: go
os:
- linux
- osx
sudo: false
install:
- echo $PATH
- echo $GOPATH
- ls
- go version
- go env
- go get golang.org/x/crypto/ssh
- go get github.com/codegangsta/cli
# Build help
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes
- conda install -y -q pip
- pip install -r .ci/requirements.txt
script:
- go run main.go
# Build
- go build
- ls
# Upload
- echo VERSION=$(git describe --tags --dirty --always)
- echo NAME_VERSION=remote-conda-$VERSION
- tar -cf $NAME_VERSION-$TRAVIS_OS_NAME.tar remote-conda
- ls
- aws s3 cp $NAME_VERSION-$TRAVIS_OS_NAME.tar s3://danielfrg-ci/remote-conda/
|
language: go
os:
- linux
- osx
sudo: false
install:
- echo $PATH
- echo $GOPATH
- ls
- go version
- go env
- go get golang.org/x/crypto/ssh
- go get github.com/codegangsta/cli
# Build help
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes
- conda install -y -q pip
- pip install -r .ci/requirements.txt
script:
- go run main.go
# Build
- go build
- ls
# Upload
- export VERSION=$(git describe --tags --dirty --always)
- export NAME_VERSION=remote-conda-$VERSION
- tar -cf $NAME_VERSION-$TRAVIS_OS_NAME.tar remote-conda
- ls
- aws s3 cp $NAME_VERSION-$TRAVIS_OS_NAME.tar s3://danielfrg-ci/remote-conda/
|
Change name of tar files
|
Change name of tar files
|
YAML
|
apache-2.0
|
danielfrg/remote-conda
|
70f9e4289f758c9663c0ee4d1172acb711487df9
|
.travis.yml
|
.travis.yml
|
sudo: false
language: ruby
rvm:
- 2.4.1
- 2.3.4
- 2.2.7
- 2.1.10
- 2.0.0
notifications:
email:
- [email protected]
|
sudo: false
language: ruby
rvm:
- 2.4.3
- 2.3.6
- 2.2.9
- 2.1.10
- 2.0.0
notifications:
email:
- [email protected]
|
Use latest Rubies for testing
|
Use latest Rubies for testing
|
YAML
|
mit
|
dennmart/wanikani-gem
|
0d9f269cf9ef84d61fb949b8435c700ef33c185e
|
.travis.yml
|
.travis.yml
|
language: scala
scala:
- 2.11.8
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
services:
- docker
before_script:
- docker run -d -p 127.0.0.1:6119:5432 flowcommerce/delta-postgresql:latest
script:
- sbt ++$TRAVIS_SCALA_VERSION clean compile test
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
branches:
only:
- master
|
language: scala
scala:
- 2.11.8
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
services:
- docker
before_script:
- docker run -d -p 127.0.0.1:6119:5432 flowcommerce/dependency-postgresql:latest
script:
- sbt ++$TRAVIS_SCALA_VERSION clean compile test
# Tricks to avoid unnecessary cache updates
- find $HOME/.sbt -name "*.lock" | xargs rm
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm
branches:
only:
- master
|
Use dependency-postgresql in Travis builds
|
Use dependency-postgresql in Travis builds
|
YAML
|
mit
|
flowcommerce/dependency,flowcommerce/dependency,flowcommerce/dependency
|
006808caaf9bf22fd6352702fd34c0474fd551d2
|
.travis.yml
|
.travis.yml
|
os: osx
osx_image: beta-xcode6.2
install:
- brew update
- brew install --build-from-source gdk-pixbuf --disable-gio-sniffing --without-libtiff --without-gdiplus --disable-modules --with-included-loaders=png,jpeg
- brew install --build-from-source homebrew/science/vips --with-webp --without-fftw --without-poppler
script:
- ./package.sh
addons:
artifacts:
s3_region: eu-west-1
|
os: osx
osx_image: beta-xcode6.2
env:
- COLUMNS=240
install:
- brew update
- brew install gdk-pixbuf --disable-gio-sniffing --without-libtiff --without-gdiplus --disable-modules --with-included-loaders="png,jpeg"
- brew install homebrew/science/vips --with-webp --without-fftw --without-poppler
- brew info gdk-pixbuf
- brew info vips
script:
- ./package.sh
addons:
artifacts:
s3_region: eu-west-1
|
Add post-install info of installed packages and dependencies Expand number of TTY columns
|
Add post-install info of installed packages and dependencies
Expand number of TTY columns
|
YAML
|
apache-2.0
|
lovell/package-libvips-darwin,lovell/package-libvips-darwin
|
990fb7925aeb2bd20eba1a83f451cbc5ba101e13
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- ruby-head
- 1.9.3
- 2.0.0
- jruby-18mode # JRuby in 1.8 mode
- jruby-19mode # JRuby in 1.9 mode
- rbx-18mode
- rbx-19mode
- 1.8.7
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.beta.gemfile
branches:
only:
- master
matrix:
allow_failures:
- rvm: jruby-18mode
- rvm: jruby-19mode
- rvm: ruby-head
|
language: ruby
rvm:
- ruby-head
- 2.1.0
- 2.0.0
- rbx-2.1.1
- 1.9.3
- jruby-19mode # JRuby in 1.9 mode
- rbx-19mode
gemfile:
- gemfiles/3.0.gemfile
- gemfiles/3.1.gemfile
- gemfiles/3.2.gemfile
- gemfiles/4.0.gemfile
- gemfiles/4.1.beta.gemfile
branches:
only:
- master
matrix:
allow_failures:
- rvm: jruby-18mode
- rvm: jruby-19mode
- rvm: ruby-head
|
Test against Rubinius 2.1.1 and drop old 1.8 based rubies
|
Test against Rubinius 2.1.1 and drop old 1.8 based rubies
|
YAML
|
mit
|
dominicsayers/machinist,dominicsayers/machinist
|
c7f8a92af8235f18e6f6f1db4fc615be1a75928b
|
.travis.yml
|
.travis.yml
|
language: ruby
dist: xenial
cache:
bundler: true
rvm:
- 2.4
- 2.5
- 2.6
branches:
only:
- master
|
language: ruby
dist: xenial
cache:
bundler: true
rvm:
- 2.4
- 2.5
- 2.6
- 2.7
branches:
only:
- master
|
Add Ruby 2.7 to the Travis CI build matrix
|
Add Ruby 2.7 to the Travis CI build matrix
|
YAML
|
mit
|
publify/publify_textfilter_code,publify/publify_textfilter_code,publify/publify_textfilter_code
|
b1201e7c3e17cccaa343a51f5a820e0c71d518d8
|
.travis.yml
|
.travis.yml
|
sudo: false
language: java
env:
global:
- LDFLAGS=-L/tmp/proto3-a2/lib
- CXXFLAGS=-I/tmp/proto3-a2/include
- LD_LIBRARY_PATH=/tmp/proto3-a2/lib
- PATH=/tmp/proto3-a2/bin:$PATH
before_install:
- buildscripts/make_dependencies.sh # build protoc into /tmp/proto3-a2
- mkdir -p $HOME/.gradle
- echo "checkstyle.ignoreFailures=false" >> $HOME/.gradle/gradle.properties
jdk:
- oraclejdk8
os:
- linux
branches:
only:
- master
notifications:
email: false
cache:
directories:
- /tmp/proto3-a2
- $HOME/.m2
|
sudo: false
language: java
env:
global:
- LDFLAGS=-L/tmp/proto3-a2/lib
- CXXFLAGS=-I/tmp/proto3-a2/include
- LD_LIBRARY_PATH=/tmp/proto3-a2/lib
- PATH=/tmp/proto3-a2/bin:$PATH
before_install:
- buildscripts/make_dependencies.sh # build protoc into /tmp/proto3-a2
- mkdir -p $HOME/.gradle
- echo "checkstyle.ignoreFailures=false" >> $HOME/.gradle/gradle.properties
- echo "org.gradle.parallel=true" >> $HOME/.gradle/gradle.properties
jdk:
- oraclejdk8
os:
- linux
branches:
only:
- master
notifications:
email: false
cache:
directories:
- /tmp/proto3-a2
- $HOME/.m2
|
Enable parallel Gradle builds for Travis
|
Enable parallel Gradle builds for Travis
Parallel doesn't mix well with deployment, so if that becomes part of
Travis, we would need to pass -Dorg.gradle.parallel=false to the gradle
command line. But otherwise parallel builds have been solid.
|
YAML
|
apache-2.0
|
ejona86/grpc-java,elandau/grpc-java,LuminateWireless/grpc-java,moujian/grpc-java,dapengzhang0/grpc-java,yangjae/grpc-java,joshuabezaleel/grpc-java,madongfly/grpc-java,grpc/grpc-java,aglne/grpc-java,simonhorlick/grpc-java,simonhorlick/grpc-java,stanley-cheung/grpc-java,yangjae/grpc-java,louiscryan/grpc-java,winstar/grpc-java,jcanizales/grpc-java,LuminateWireless/grpc-java,joshuabezaleel/grpc-java,winstar/grpc-java,dapengzhang0/grpc-java,wyxacc/grpc-java,dapengzhang0/grpc-java,moujian/grpc-java,nmittler/grpc-java,ybv/grpc-java,rmichela/grpc-java,zhangkun83/grpc-java,huangsihuan/grpc-java,LuminateWireless/grpc-java,ybv/grpc-java,madongfly/grpc-java,pieterjanpintens/grpc-java,fengshao0907/grpc-java,zpencer/grpc-java,carl-mastrangelo/grpc-java,zhangkun83/grpc-java,eamonnmcmanus/grpc-java,zpencer/grpc-java,zhangkun83/grpc-java,vampiregod1996/grpc-java,nickethier/grpc-java,wrwg/grpc-java,eamonnmcmanus/grpc-java,zpencer/grpc-java,louiscryan/grpc-java,stanley-cheung/grpc-java,stanley-cheung/grpc-java,louiscryan/grpc-java,rmichela/grpc-java,simonhorlick/grpc-java,grpc/grpc-java,carl-mastrangelo/grpc-java,fengshao0907/grpc-java,wyxacc/grpc-java,nickethier/grpc-java,grpc/grpc-java,anuraaga/grpc-java,grpc/grpc-java,vampiregod1996/grpc-java,mingfly/grpc-java,joshuabezaleel/grpc-java,yangjae/grpc-java,pieterjanpintens/grpc-java,eonezhang/grpc-java,dapengzhang0/grpc-java,elandau/grpc-java,conchlee/grpc-java,ybv/grpc-java,vampiregod1996/grpc-java,anuraaga/grpc-java,wrwg/grpc-java,elandau/grpc-java,eonezhang/grpc-java,jcanizales/grpc-java,huangsihuan/grpc-java,aglne/grpc-java,rmichela/grpc-java,carl-mastrangelo/grpc-java,ejona86/grpc-java,elandau/grpc-java,winstar/grpc-java,mingfly/grpc-java,nmittler/grpc-java,zhangkun83/grpc-java,rmichela/grpc-java,fengshao0907/grpc-java,conchlee/grpc-java,simonhorlick/grpc-java,ejona86/grpc-java,ejona86/grpc-java,stanley-cheung/grpc-java,anuraaga/grpc-java,eonezhang/grpc-java,nickethier/grpc-java,wrwg/grpc-java,huangsihuan/grpc-java,jcanizales/grpc-java,conchlee/grpc-java,moujian/grpc-java,madongfly/grpc-java,pieterjanpintens/grpc-java,nmittler/grpc-java,mingfly/grpc-java,wyxacc/grpc-java,carl-mastrangelo/grpc-java,zpencer/grpc-java,aglne/grpc-java,eamonnmcmanus/grpc-java,pieterjanpintens/grpc-java
|
37424882455d0ea85e1d17c376c59cb8283bbe22
|
.travis.yml
|
.travis.yml
|
language: python
dist: trusty
virtualenv:
system_site_packages: true
sudo: required
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y python-m2crypto python-dateutil python-openssl
- sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev
- sudo apt-get install -y python-sqlalchemy python-lxml python-psycopg2
before_script:
- wget https://github.com/GENI-NSF/geni-tools/archive/v2.10.tar.gz -O /tmp/geni-tools.tar.gz
- tar -xf /tmp/geni-tools.tar.gz -C /tmp
- export PYTHONPATH=$PYTHONPATH:/tmp/geni-tools-2.10/src
- test/setup_test_ch_server.sh
script:
- test/travis-build
- python -m unittest discover test
- test/ch_server_tests.sh
|
language: python
# Force use of trusty until it is the default build
# platform in late 2017
dist: trusty
virtualenv:
system_site_packages: true
sudo: required
before_install:
- sudo apt-get -qq update
- sudo apt-get install -y python-m2crypto python-dateutil python-openssl
- sudo apt-get install -y libxmlsec1 xmlsec1 libxmlsec1-openssl libxmlsec1-dev
- sudo apt-get install -y python-sqlalchemy python-lxml python-psycopg2
before_script:
- wget https://github.com/GENI-NSF/geni-tools/archive/v2.10.tar.gz -O /tmp/geni-tools.tar.gz
- tar -xf /tmp/geni-tools.tar.gz -C /tmp
- export PYTHONPATH=$PYTHONPATH:/tmp/geni-tools-2.10/src
- test/setup_test_ch_server.sh
script:
- test/travis-build
- python -m unittest discover test
- test/ch_server_tests.sh
|
Document the use of Ubuntu Trusty for Travis builds
|
Document the use of Ubuntu Trusty for Travis builds
|
YAML
|
mit
|
tcmitchell/geni-ch,tcmitchell/geni-ch
|
8ca4053ac9852c354f391b04d270c6ecbf6b2319
|
.travis.yml
|
.travis.yml
|
before_script: cp config/database.yml.example config/database.yml && bundle exec rake db:create && bundle exec rake db:migrate && bundle exec rake db:test:prepare
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
|
before_script: cp config/database.yml.example config/database.yml && bundle exec rake db:create db:migrate db:test:prepare
rvm:
- 1.8.7
- 1.9.2
- 1.9.3
- ree
|
Revert "Apparently, Ruby 1.9.3 doesn't like chained rake tasks"
|
Revert "Apparently, Ruby 1.9.3 doesn't like chained rake tasks"
This reverts commit 304657fbbd4976842ec7b1fed8930ada577b1797.
|
YAML
|
mit
|
childbamboo/rubygems.org,algolia/rubygems.org,andrew/rubygems.org,childbamboo/rubygems.org,JuanitoFatas/rubygems.org,olivierlacan/rubygems.org,iRoxxDotOrg/rubygems.org,farukaydin/rubygems.org,childbamboo/rubygems.org,Elffers/rubygems.org,huacnlee/rubygems.org,fotanus/rubygems.org,hrs113355/rubygems.org,rubygems/rubygems.org,Exeia/rubygems.org,childbamboo/rubygems.org,JuanitoFatas/rubygems.org,olivierlacan/rubygems.org,fotanus/rubygems.org,JuanitoFatas/rubygems.org,maclover7/rubygems.org,hrs113355/rubygems.org,polamjag/rubygems.org,arthurnn/rubygems.org,sonalkr132/rubygems.org,knappe/rubygems.org,davydovanton/rubygems.org,maclover7/rubygems.org,kbrock/rubygems.org,Elffers/rubygems.org,knappe/rubygems.org,arthurnn/rubygems.org,andrew/rubygems.org,fotanus/rubygems.org,iSC-Labs/rubygems.org,maclover7/rubygems.org,knappe/rubygems.org,andrew/rubygems.org,hrs113355/rubygems.org,Exeia/rubygems.org,spk/rubygems.org,maclover7/rubygems.org,Exeia/rubygems.org,andrew/rubygems.org,jamelablack/rubygems.org,wallin/rubygems.org,polamjag/rubygems.org,sonalkr132/rubygems.org,jamelablack/rubygems.org,Elffers/rubygems.org,farukaydin/rubygems.org,JuanitoFatas/rubygems.org,huacnlee/rubygems.org,olivierlacan/rubygems.org,kbrock/rubygems.org,Ch4s3/rubygems.org,Exeia/rubygems.org,iSC-Labs/rubygems.org,wallin/rubygems.org,iRoxxDotOrg/rubygems.org,sonalkr132/rubygems.org,krainboltgreene/rubygems.org,polamjag/rubygems.org,algolia/rubygems.org,Ch4s3/rubygems.org,krainboltgreene/rubygems.org,huacnlee/rubygems.org,knappe/rubygems.org,hrs113355/rubygems.org,fotanus/rubygems.org,wallin/rubygems.org,jamelablack/rubygems.org,wallin/rubygems.org,Ch4s3/rubygems.org,krainboltgreene/rubygems.org,davydovanton/rubygems.org,jamelablack/rubygems.org,iSC-Labs/rubygems.org,sonalkr132/rubygems.org,iRoxxDotOrg/rubygems.org,olivierlacan/rubygems.org,farukaydin/rubygems.org,davydovanton/rubygems.org,rubygems/rubygems.org,spk/rubygems.org,farukaydin/rubygems.org,spk/rubygems.org,spk/rubygems.org,rubygems/rubygems.org,krainboltgreene/rubygems.org,polamjag/rubygems.org,kbrock/rubygems.org,iRoxxDotOrg/rubygems.org,iSC-Labs/rubygems.org,davydovanton/rubygems.org,kbrock/rubygems.org,Elffers/rubygems.org,rubygems/rubygems.org,Ch4s3/rubygems.org,huacnlee/rubygems.org,algolia/rubygems.org,algolia/rubygems.org,arthurnn/rubygems.org
|
702a35d60c9f81ec09c9ca2e7346f70ee2b3a363
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
before_install:
- sudo apt-get install libpcre3 libpcre3-dev
notifications:
irc: "irc.freenode.org#adhearsion"
|
language: ruby
rvm:
- 1.9.2
- 1.9.3
- 2.0.0
- jruby-19mode
- rbx-19mode
- ruby-head
matrix:
allow_failures:
- rvm: jruby-19mode
before_install:
- sudo apt-get install libpcre3 libpcre3-dev
notifications:
irc: "irc.freenode.org#adhearsion"
|
Allow JRuby build to fail on CI
|
[CS] Allow JRuby build to fail on CI
|
YAML
|
mit
|
sfgeorge/ruby_speech,adhearsion/ruby_speech,benlangfeld/ruby_speech,adhearsion/ruby_speech,benlangfeld/ruby_speech,benlangfeld/ruby_speech,adhearsion/ruby_speech,sfgeorge/ruby_speech,sfgeorge/ruby_speech
|
7d5ba1dc5a85138b97436c1e2d23bb34c1901959
|
.travis.yml
|
.travis.yml
|
language: objective-c
xcode_workspace: Example/HLSpriteKit.xcworkspace
xcode_scheme: HLSpriteKit
podfile: Example/Podfile
|
language: objective-c
xcode_workspace: Example/HLSpriteKit.xcworkspace
xcode_scheme: HLSpriteKit
xcode_sdk: iphonesimulator
podfile: Example/Podfile
branches:
only:
- master
|
Configure Travis CI for iphonesimulator.
|
Configure Travis CI for iphonesimulator.
|
YAML
|
mit
|
hilogames/HLSpriteKit,pushtheworldllc/HLSpriteKit,pushtheworldllc/HLSpriteKit,hilogames/HLSpriteKit,pushtheworldllc/HLSpriteKit
|
de1ad5a7d3078a57a4172f181a0a8dcc0c32efa8
|
.travis.yml
|
.travis.yml
|
language: go
go:
- 1.6
env: PATH=/home/travis/gopath/bin:$PATH
script:
- make test
after_script:
- make cover
notifications:
slack:
secure: cPeJRg+ouTlemEV5UM4muhDwtIM0dktcs3mnfB73oZ2MGOimv/DFpL+VTRLlkWau8l0dT4ngLlGPcveLrXQXwps2LsJMr+gS6Az/CAQCIl21oj4bnjs5uGYTG8hM8ymVzGINPNnj5Fnn5DUMunA2sow30qxfuCnSUMGot2nFRKw=
|
language: go
go:
- 1.6
- 1.9
env: PATH=/home/travis/gopath/bin:$PATH
script:
- make test
after_script:
- make cover
notifications:
slack:
secure: cPeJRg+ouTlemEV5UM4muhDwtIM0dktcs3mnfB73oZ2MGOimv/DFpL+VTRLlkWau8l0dT4ngLlGPcveLrXQXwps2LsJMr+gS6Az/CAQCIl21oj4bnjs5uGYTG8hM8ymVzGINPNnj5Fnn5DUMunA2sow30qxfuCnSUMGot2nFRKw=
|
Test with both Go 1.6 and 1.9
|
Test with both Go 1.6 and 1.9
|
YAML
|
apache-2.0
|
mackerelio/mackerel-client-go
|
c017bc03ba4074d1ebe5de3e714ffcda496aee57
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- iojs
- "0.12"
env:
- NODE_ENV=development
script: "npm test"
|
language: node_js
node_js:
- 6
- 5
- 4.6
|
Drop old node <= 0.12 versions.
|
Drop old node <= 0.12 versions.
|
YAML
|
mit
|
bucaran/clor
|
d8330a036ac137e86430f06914ff0c6a26bb9a25
|
.travis.yml
|
.travis.yml
|
language: scala
cache:
directories:
- $HOME/.m2/repository/
- $HOME/.ivy2/cache/
- $HOME/.sbt/boot/
sudo: false
jdk:
- openjdk7
- oraclejdk8
branches:
only:
- develop
script:
- ./sbt jcheckStyle
- ./sbt test
- ./sbt test -J-Dmsgpack.universal-buffer=true
matrix:
include:
- dist: trusty
group: edge
sudo: required
jdk: oraclejdk9
addons:
apt:
packages:
- oracle-java9-installer
script:
# https://github.com/sbt/sbt/pull/2951
- git clone https://github.com/retronym/java9-rt-export
- cd java9-rt-export/
- git checkout 1019a2873d057dd7214f4135e84283695728395d
- echo "sbt.version=1.0.2" > project/build.properties
- sbt package
- mkdir -p $HOME/.sbt/0.13/java9-rt-ext; java -jar target/java9-rt-export-*.jar $HOME/.sbt/0.13/java9-rt-ext/rt.jar
- jar tf $HOME/.sbt/0.13/java9-rt-ext/rt.jar | grep java/lang/Object
- cd ..
- rm sbt
- wget https://raw.githubusercontent.com/paulp/sbt-extras/3ba0e52f32d32c0454ec3a926caae2db0caaca12/sbt && chmod +x ./sbt
- ./sbt -Dscala.ext.dirs=$HOME/.sbt/0.13/java9-rt-ext test
- ./sbt -Dscala.ext.dirs=$HOME/.sbt/0.13/java9-rt-ext -Dmsgpack.universal-buffer=true test
|
language: scala
cache:
directories:
- $HOME/.m2/repository/
- $HOME/.ivy2/cache/
- $HOME/.sbt/boot/
- $HOME/.coursier
sudo: false
jdk:
- openjdk7
- oraclejdk8
branches:
only:
- develop
script:
- ./sbt jcheckStyle
- ./sbt test
- ./sbt test -J-Dmsgpack.universal-buffer=true
matrix:
include:
- dist: trusty
group: edge
sudo: required
jdk: oraclejdk9
addons:
apt:
packages:
- oracle-java9-installer
script:
- ./sbt test
- ./sbt -Dmsgpack.universal-buffer=true test
|
Use sbt 1.0.4 + java9
|
Use sbt 1.0.4 + java9
|
YAML
|
apache-2.0
|
xuwei-k/msgpack-java,xuwei-k/msgpack-java,msgpack/msgpack-java,msgpack/msgpack-java
|
025250e36b763f7005e55cfa3c44a7fcbbcc88a3
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
install:
- pip install --upgrade pip setuptools wheel pytest
- pip install --only-binary=numpy numpy
- pip install --only-binary=scipy scipy
- pip install --only-binary=matplotlib matplotlib
script: pytest test
|
language: python
python:
- "2.5"
- "2.6"
- "2.7"
- "2.7-dev"
- "3.4"
- "3.5"
- "3.5-dev" # 3.5 development branch
- "3.6"
- "3.6-dev" # 3.6 development branch
install:
- pip install --upgrade pip setuptools wheel pytest
- pip install --only-binary=numpy numpy
- pip install --only-binary=scipy scipy
- pip install --only-binary=matplotlib matplotlib
script: pytest test
|
Add even more Python 2.x versions
|
Add even more Python 2.x versions
|
YAML
|
mit
|
jimrybarski/biofits
|
de33355355f369fa58c565a65151ae2e010d9aef
|
.travis.yml
|
.travis.yml
|
language: erlang
notifications:
email: false
otp_release:
- 17.4
- 17.3
- 17.1
install: true
script: "make && make ct"
|
language: erlang
notifications:
email: false
otp_release:
- 18.0
- 17.4
- 17.3
install: true
script: "make && make ct"
|
Remove otp 17.1 and add 18.0
|
Remove otp 17.1 and add 18.0
|
YAML
|
mit
|
bwegh/erwa,ethrbh/erwa
|
26f101758c7615b7bf1f02d491b2ba14d8da12c2
|
.github/workflows/publish.yml
|
.github/workflows/publish.yml
|
name: Publish
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: version
run: |
npm --no-git-tag-version version `git describe --abbrev=0 --tags`
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
name: Publish
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: version
run: |
npm --no-git-tag-version --allow-same-version version `git describe --abbrev=0 --tags`
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
Allow same version with versioning command
|
Allow same version with versioning command
|
YAML
|
mit
|
mailosaur/mailosaur-node,mailosaur/mailosaur-node,mailosaurapp/mailosaur-node
|
39fca984324cf6e69a40cb91b712aa3f223f3652
|
metadata/com.anpmech.launcher.yml
|
metadata/com.anpmech.launcher.yml
|
Categories:
- System
License: Apache-2.0
SourceCode: https://github.com/KeikaiLauncher/KeikaiLauncher
IssueTracker: https://github.com/KeikaiLauncher/KeikaiLauncher/issues
Changelog: https://github.com/KeikaiLauncher/KeikaiLauncher/releases
Summary: Fast, minimalistic launcher
Description: |
Fast, minimalistic launcher.
It is an active fork of Hayai Launcher which brings many fixes and improvements
* Vector images
* Screen orientation change and better scaling on larger devices
* Application management from the home screen
* Support for Android's UsageStats subsystem (API 21+)
* and more
RepoType: git
Repo: https://github.com/KeikaiLauncher/KeikaiLauncher
Builds:
- versionName: 1.0.0
versionCode: 10000
commit: 1.0.0
subdir: app
gradle:
- yes
AutoUpdateMode: None
UpdateCheckMode: Tags
|
Categories:
- System
License: Apache-2.0
SourceCode: https://github.com/KeikaiLauncher/KeikaiLauncher
IssueTracker: https://github.com/KeikaiLauncher/KeikaiLauncher/issues
Changelog: https://github.com/KeikaiLauncher/KeikaiLauncher/releases
AutoName: Keikai Launcher
Summary: Fast, minimalistic launcher
Description: |
Fast, minimalistic launcher.
It is an active fork of Hayai Launcher which brings many fixes and improvements
* Vector images
* Screen orientation change and better scaling on larger devices
* Application management from the home screen
* Support for Android's UsageStats subsystem (API 21+)
* and more
RepoType: git
Repo: https://github.com/KeikaiLauncher/KeikaiLauncher
Builds:
- versionName: 1.0.0
versionCode: 10000
commit: 1.0.0
subdir: app
gradle:
- yes
AutoUpdateMode: None
UpdateCheckMode: Tags
|
Set autoname of Keikai Launcher
|
Set autoname of Keikai Launcher
|
YAML
|
agpl-3.0
|
f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata
|
6f13b97c74172172043af226c6a6c78a293f09ef
|
.github/workflows/release.yml
|
.github/workflows/release.yml
|
name: Release Processing
on:
release:
types:
- published
- updated
jobs:
publish-docs:
runs-on: macos-latest
steps:
- run: sudo xcode-select -s /Applications/Xcode_12.1.app/Contents/Developer
- uses: dawidd6/action-get-tag@v1
id: get-tag
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: .build
key: ${{runner.os}}-spm-${{hashFiles('**/Package.resolved')}}
restore-keys: |
${{runner.os}}-spm-
- uses: sersoft-gmbh/swifty-docs-action@v1
with:
module-version: ${{steps.get-tag.outputs.tag}}
output: docs
xcodebuild-destination: platform=iOS Simulator,OS=latest,name=iPhone 11 Pro
- uses: crazy-max/[email protected]
with:
build_dir: docs
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
name: Release Processing
on:
release:
types:
- published
- updated
jobs:
publish-docs:
runs-on: macos-latest
steps:
- run: sudo xcode-select -s /Applications/Xcode_12.1.app/Contents/Developer
- uses: dawidd6/action-get-tag@v1
id: get-tag
- uses: actions/checkout@v2
- uses: actions/[email protected]
with:
path: .build
key: ${{runner.os}}-spm-${{hashFiles('**/Package.resolved')}}
restore-keys: |
${{runner.os}}-spm-
- uses: sersoft-gmbh/swifty-docs-action@v1
with:
module-version: ${{steps.get-tag.outputs.tag}}
output: docs
xcodebuild-destination: platform=iOS Simulator,OS=latest,name=iPhone 11 Pro
- uses: crazy-max/[email protected]
with:
build_dir: docs
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
|
Bump actions/cache from v2 to v2.1.4
|
Bump actions/cache from v2 to v2.1.4
Bumps [actions/cache](https://github.com/actions/cache) from v2 to v2.1.4.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](https://github.com/actions/cache/compare/v2...26968a09c0ea4f3e233fdddbafd1166051a095f6)
Signed-off-by: dependabot[bot] <[email protected]>
|
YAML
|
apache-2.0
|
ffried/FFUIKit
|
86ec49d0fd48d25721a7930eb16105e8ada9a165
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "3.6"
env:
global:
- NEWEST_PYTHON=3.6
install:
- pip install -e .'[dev]'
script:
- pytest
after_success:
- |
if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then
pip install python-coveralls && coveralls
fi
|
language: python
python:
- "3.6"
env:
global:
- NEWEST_PYTHON=3.6
install:
- pip install -e .'[dev]'
script:
- pytest
after_success:
- |
if [[ $TRAVIS_PYTHON_VERSION == $NEWEST_PYTHON ]]; then
pip install python-coveralls && coveralls
fi
notifications:
email: false
|
Disable annoying Travis CI emails
|
Disable annoying Travis CI emails
|
YAML
|
isc
|
reillysiemens/wb2k
|
4961d533f8d5782a4c010dc7d095b880a492aed8
|
.travis.yml
|
.travis.yml
|
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
services:
- mongodb
|
language: node_js
node_js:
- "0.11"
- "0.10"
- "0.8"
- "0.6"
- iojs
- iojs-v1.0.2
services:
- mongodb
|
Revert "removed unsupported node versions"
|
Revert "removed unsupported node versions"
This reverts commit fc75401f2f3eb4e9207e4f20e93ddd129aedfe02.
|
YAML
|
mit
|
johnhof/mongoman
|
15f2a0802d5057c0b49ba8a29faa39416cd1badf
|
.travis.yml
|
.travis.yml
|
language: ruby
rvm:
- 2.2.6
- 2.3.3
- 2.4.0
script: bundle exec rspec && bundle exec codeclimate-test-reporter
addons:
code_climate:
repo_token: 2dfc2d0c4c4bbca83f32cf965e83214d656168982cabf40e5f55855037815157
|
language: ruby
rvm:
- 2.2.2
- 2.3.0
- 2.4.0
- 2.5.0
script: bundle exec rspec && bundle exec codeclimate-test-reporter
addons:
code_climate:
repo_token: 2dfc2d0c4c4bbca83f32cf965e83214d656168982cabf40e5f55855037815157
|
Test on Ruby 2.5 as well
|
Test on Ruby 2.5 as well
|
YAML
|
mit
|
rviney/ig_markets
|
158b1c5cffa9fdaa1aae5cac62b6bb1cd5bc14cd
|
.travis.yml
|
.travis.yml
|
language: python
python:
- "2.7"
# command to install dependencies
install:
- "pip install pip==1.5.4"
- "pip install -r requirements/ci.txt"
- "pip install -r requirements/unittests.txt"
# command to run tests
script: python manage.py jenkins --settings=tsune.settings.ci --verbosity 2
after_success:
- coveralls
|
language: python
python:
- "2.7"
# command to install dependencies
install:
- "pip install pip==1.5.4"
- "pip install coveralls"
- "pip install -r requirements/ci.txt"
- "pip install -r requirements/unittests.txt"
# command to run tests
script: python manage.py jenkins --settings=tsune.settings.ci --verbosity 2
after_success:
coveralls
|
Add missing requirement for coveralls.io
|
Add missing requirement for coveralls.io
|
YAML
|
mit
|
DummyDivision/Tsune,DummyDivision/Tsune,DummyDivision/Tsune
|
f93bdefe40993141c6b54fbf78d66322c684f467
|
dev/docker-compose.yml
|
dev/docker-compose.yml
|
version: "2"
services:
database:
image: db:v1
environment:
- DATA=100
ports:
- 5432:5432
website:
build: ../website
ports:
- 3000:3000
environment:
- PORT=3000
- APP_DB_HOST=database
- APP_DB_PORT=5432
- APP_DB_DATABASE=app_db
- APP_DB_READ_WRITE_USER=app_read_write
- APP_DB_READ_WRITE_PASSWORD=readwritepwd
volumes:
- ../website:/src
links:
- database:database
|
version: "2"
services:
database:
image: db:master
environment:
- DATA=1
ports:
- 5432:5432
website:
build: ../website_master
volumes:
- ../website_master:/src
ports:
- 3000:3000
environment:
- PORT=3000
- APP_DB_HOST=database
- APP_DB_PORT=5432
- APP_DB_DATABASE=app_db
- APP_DB_READ_WRITE_USER=app_read_write
- APP_DB_READ_WRITE_PASSWORD=readwritepwd
links:
- database:database
|
Rename service versions from numbers to names
|
Rename service versions from numbers to names
|
YAML
|
apache-2.0
|
peter-marriott/database-testing-with-docker,peter-marriott/database-testing-with-docker
|
16cdfccef4ac1fb30cfb3de784b686659ce1de52
|
environment.yml
|
environment.yml
|
name: biorxiv-licenses
channels:
- defaults
- conda-forge
dependencies:
- ipykernel=4.5.2
- pandas=0.19.2
- python=3.6.0
- altair=1.2.0
- requests=2.13.0
- statsmodels=0.8.0
- pip:
- nameparser==0.5.1
|
name: biorxiv-licenses
channels:
- defaults
- conda-forge
dependencies:
- ipykernel=4.5.2
- pandas=0.19.2
- python=3.6.0
- nbconvert=5.1.1
- notebook=4.4.1
- altair=1.2.0
- requests=2.13.0
- statsmodels=0.8.0
- pip:
- nameparser==0.5.1
|
Add notebook and nbconvert to environemnt
|
Add notebook and nbconvert to environemnt
|
YAML
|
bsd-3-clause
|
dhimmel/biorxiv-licenses,dhimmel/biorxiv-licenses
|
b1d2c29909cfe6d94f7c0c9e48471e50259bbaeb
|
environment.yml
|
environment.yml
|
name: IOOS
channels:
- conda-forge
- ioos
dependencies:
- python=3.5
- anaconda-navigator
- beautifulsoup4
- cartopy
#- cc-plugin-glider # Python 2.7
- cmocean
- compliance-checker
- ctd
- cython
- descartes
- fiona
- folium
- gdal
- geojson
- geojsonio
- geopandas
- geos
- gridgeo
- gsw
- iris
- jupyter
- matplotlib
- mpld3
- mplleaflet
- nb_conda_kernels
- netcdf4
- numpy
- oceans
- oct2py
- owslib
- paegan
- pandas
- proj.4
- pygc
- pykdtree
- pyoos
- pyproj
- pyresample
- pysgrid
- pyugrid
- pyyaml
- qrcode
- rasterio
- rasterstats
- requests
- rios
- rtree
- scikit-learn
- scipy
- seaborn
- seawater
- shapely
- siphon
- spyder
- statsmodels
- sympy
- thredds_crawler
- utilities
- xarray
- xlrd
|
name: IOOS
channels:
- conda-forge
dependencies:
- python=3.5
- anaconda-navigator
- beautifulsoup4
- cartopy
#- cc-plugin-glider # Python 2.7
- cmocean
- compliance-checker
- ctd
- cython
- descartes
- fiona
- folium
- gdal
- geojson
- geojsonio
- geopandas
- geos
- gridgeo
- gsw
- iris
- jupyter
- matplotlib
- mpld3
- mplleaflet
- nb_conda_kernels
- netcdf4
- numpy
- oceans
- oct2py
- owslib
- paegan
- pandas
- proj.4
- pygc
- pykdtree
- pyoos
- pyproj
- pyresample
- pysgrid
- pyugrid
- pyyaml
- qrcode
- rasterio
- rasterstats
- requests
- rios
- rtree
- scikit-learn
- scipy
- seaborn
- seawater
- shapely
- siphon
- spyder
- statsmodels
- sympy
- thredds_crawler
- xarray
- xlrd
|
Remove the ioos channel and utilities pkg
|
Remove the ioos channel and utilities pkg
|
YAML
|
mit
|
ocefpaf/notebooks_demos,ioos/notebooks_demos,ocefpaf/notebooks_demos
|
00773dedf84944302510d60d952a1736a1e002c6
|
environment.yml
|
environment.yml
|
name: pyneqsys
channels:
- bjodah
- conda-forge
- defaults
dependencies:
- python >=3.5
- numpy >1.7
- scipy >=0.19.1
- sym >=0.3.1
- sympy >=1.1.1
- matplotlib >=1.5.3
- notebook
- nbconvert
- pykinsol
- levmar
- cyipopt
|
name: pyneqsys
channels:
- bjodah
- conda-forge
- defaults
dependencies:
- python ==2.7
- numpy >1.7
- scipy >=0.19.1
- sym >=0.3.1
- sympy >=1.1.1
- matplotlib >=1.5.3
- notebook
- nbconvert
- pykinsol
- levmar
- cyipopt
|
Use python 2 on binder for now (waiting for new upstream versions)
|
Use python 2 on binder for now (waiting for new upstream versions)
|
YAML
|
bsd-2-clause
|
bjodah/pyneqsys,bjodah/pyneqsys,bjodah/pyneqsys
|
e4222b11523455a74789e791c9dda583a65a8042
|
.forestry/front_matter/templates/tool.yml
|
.forestry/front_matter/templates/tool.yml
|
---
pages:
- tool/test.md
hide_body: false
fields:
- type: text
name: title
label: Title
- type: textarea
name: description
label: Description
- type: datetime
name: date
label: Date
description: Date added to the database
- type: list
label: Tools
name: tools
config:
use_select: true
source:
type: pages
section: tools
- type: field_group_list
name: urls
label: URLs
fields:
- type: text
name: website
label: Website
- type: text
name: github
label: Github
- type: text
name: twitter
label: Twitter
|
---
pages:
- tool/test.md
hide_body: false
fields:
- type: text
name: title
label: Title
- type: textarea
name: description
label: Description
- type: datetime
name: date
label: Date
description: Date added to the database
- type: list
label: Tools
name: tools
config:
use_select: true
source:
type: simple
section: tools
options:
- content-management
- build-tool
- headless-cms
- helper
- hosting-deployment
- interaction
- static-site-generator
- theme
- type: field_group_list
name: urls
label: URLs
fields:
- type: text
name: website
label: Website
- type: text
name: github
label: Github
- type: text
name: twitter
label: Twitter
|
Update from Forestry.io - Updated Forestry configuration
|
Update from Forestry.io - Updated Forestry configuration
|
YAML
|
mit
|
budparr/thenewdynamic,thenewdynamic-org/thenewdynamic.org,budparr/thenewdynamic,budparr/thenewdynamic,thenewdynamic-org/thenewdynamic.org
|
736c7d1de8c86c11c0a7e1bb3bb26e130381ed52
|
tasks/build-binary-new/php74-extensions-patch.yml
|
tasks/build-binary-new/php74-extensions-patch.yml
|
---
extensions:
exclusions:
- name: sodium
- name: libz
- name: yaf
- name: amqp
- name: cassandra
- name: interbase
- name: recode
- name: wddx
- name: phalcon
|
---
extensions:
exclusions:
- name: sodium
- name: libz
- name: yaf
- name: amqp
- name: cassandra
- name: interbase
- name: recode
- name: wddx
- name: phalcon
- name: tideways
|
Exclude 4.1.7 tideways in favor of 5.0.2 for php 7.4
|
Exclude 4.1.7 tideways in favor of 5.0.2 for php 7.4
[#170014486]
|
YAML
|
apache-2.0
|
cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci
|
c0df5023c5a270593615937b86efcf3ea680734a
|
.github/dependabot.yml
|
.github/dependabot.yml
|
version: 2
updates:
- package-ecosystem: bundler
directory: /
schedule:
interval: daily
allow:
# Security updates
- dependency-name: brakeman
dependency-type: direct
# Internal gems
- dependency-name: "govuk*"
dependency-type: direct
- dependency-name: gds-api-adapters
dependency-type: direct
- dependency-name: plek
dependency-type: direct
- dependency-name: rubocop-govuk
dependency-type: direct
# Framework gems
- dependency-name: jasmine-browser-runner
dependency-type: direct
- dependency-name: jasmine-core
dependency-type: direct
- dependency-name: minitest
dependency-type: direct
- dependency-name: rails
dependency-type: direct
- dependency-name: sassc-rails
dependency-type: direct
- package-ecosystem: npm
directory: /
schedule:
interval: daily
allow:
# Internal packages
- dependency-name: stylelint-config-gds
dependency-type: direct
# Framework packages
- dependency-name: standardx
dependency-type: direct
- dependency-name: stylelint
dependency-type: direct
# Ruby needs to be upgraded manually in multiple places, so cannot
# be upgraded by Dependabot. That effectively makes the below
# config redundant, as ruby is the only updatable thing in the
# Dockerfile, although this may change in the future. We hope this
# config will save a dev from trying to upgrade ruby via Dependabot.
- package-ecosystem: docker
ignore:
- dependency-name: ruby
directory: /
schedule:
interval: weekly
|
version: 2
updates:
- package-ecosystem: bundler
directory: /
schedule:
interval: daily
- package-ecosystem: npm
directory: /
schedule:
interval: daily
# Ruby needs to be upgraded manually in multiple places, so cannot
# be upgraded by Dependabot. That effectively makes the below
# config redundant, as ruby is the only updatable thing in the
# Dockerfile, although this may change in the future. We hope this
# config will save a dev from trying to upgrade ruby via Dependabot.
- package-ecosystem: docker
ignore:
- dependency-name: ruby
directory: /
schedule:
interval: weekly
|
Remove allow list from Dependabot config
|
Remove allow list from Dependabot config
|
YAML
|
mit
|
alphagov/static,alphagov/static,alphagov/static
|
0c1ed9cd04896baa7926aefd057050cc34f62505
|
.pre-commit-hooks.yaml
|
.pre-commit-hooks.yaml
|
- id: isort
name: isort
entry: isort
require_serial: true
language: python
language_version: python3
types_or: [cython, pyi, python]
args: ['--filter-files']
|
- id: isort
name: isort
entry: isort
require_serial: true
language: python
language_version: python3
types_or: [cython, pyi, python]
args: ['--filter-files']
minimum_pre_commit_version: '2.9.0'
|
Put minimum pre-commit version in hook
|
Put minimum pre-commit version in hook
(seeing as you're now using `types_or` - else the error messages people get may be a bit mysterious)
|
YAML
|
mit
|
PyCQA/isort,PyCQA/isort
|
7039c406afb18289ae37b54a9e665208f5269ccc
|
packages/ca/cayley-dickson.yaml
|
packages/ca/cayley-dickson.yaml
|
homepage: https://github.com/lmj/cayley-dickson
changelog-type: ''
hash: 46bad8d45ed672b4129fa529a1d6b7a85542bfcb8692b3cee7f7b62c7fc729c2
test-bench-deps:
base: ! '>=4.8 && <5'
random: ! '>=1'
maintainer: James M. Lawrence <[email protected]>
synopsis: Complex numbers, quaternions, octonions, sedenions, etc.
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.2.0'
author: James M. Lawrence
latest: '0.1.2.0'
description-type: markdown
description: ! 'Cayley-Dickson constructions (complex numbers, quaternions, octonions,
sedenions, etc.) over general scalars without limit to the number of
dimensions.
License: MIT
Author: James M. Lawrence <[email protected]>
'
license-name: MIT
|
homepage: https://github.com/lmj/cayley-dickson
changelog-type: ''
hash: 325ce470e8c4f045796d5b7afca342ef03d7a01214a66307c1346bec6234be9d
test-bench-deps:
base: ! '>=4.8 && <5'
random: ! '>=1'
maintainer: James M. Lawrence <[email protected]>
synopsis: Complex numbers, quaternions, octonions, sedenions, etc.
changelog: ''
basic-deps:
base: ! '>=4.8 && <5'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.3.0'
author: James M. Lawrence
latest: '0.1.3.0'
description-type: markdown
description: ! 'Cayley-Dickson constructions (complex numbers, quaternions, octonions,
sedenions, etc.) over general scalars without limit to the number of
dimensions.
License: MIT
Author: James M. Lawrence <[email protected]>
'
license-name: MIT
|
Update from Hackage at 2015-11-13T16:36:46+0000
|
Update from Hackage at 2015-11-13T16:36:46+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
202d1cb1351e4fb561cf333ed6a6311f462a5afe
|
metadata/fr.covidat.android.yml
|
metadata/fr.covidat.android.yml
|
Categories:
- Navigation
- Sports & Health
License: CECILL-2.1
AuthorName: Codefish
AuthorEmail: [email protected]
SourceCode: https://gitlab.com/codefish42/covidat
IssueTracker: https://gitlab.com/codefish42/covidat/issues
AutoName: CovidAt
RepoType: git
Repo: https://gitlab.com/codefish42/covidat.git
Builds:
- versionName: 1.0.1
versionCode: 2
commit: v1.0.1
subdir: app
gradle:
- yes
- versionName: 2.0.1
versionCode: 4
commit: v2.0.1
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags ^v.+[0-9]$
CurrentVersion: 2.0.1
CurrentVersionCode: 4
|
Categories:
- Navigation
- Sports & Health
License: CECILL-2.1
AuthorName: Codefish
AuthorEmail: [email protected]
SourceCode: https://gitlab.com/codefish42/covidat
IssueTracker: https://gitlab.com/codefish42/covidat/issues
AutoName: CovidAt
RepoType: git
Repo: https://gitlab.com/codefish42/covidat.git
Builds:
- versionName: 1.0.1
versionCode: 2
commit: v1.0.1
subdir: app
gradle:
- yes
- versionName: 2.0.1
versionCode: 4
commit: v2.0.1
subdir: app
gradle:
- yes
- versionName: 2.1.0
versionCode: 5
commit: v2.1.0
subdir: app
gradle:
- yes
AutoUpdateMode: Version v%v
UpdateCheckMode: Tags ^v.+[0-9]$
CurrentVersion: 2.1.0
CurrentVersionCode: 5
|
Update CovidAt to 2.1.0 (5)
|
Update CovidAt to 2.1.0 (5)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
ff75eeab2cdb2ae90b89ae8d2f5c4695f528268b
|
packages/lo/logging-facade.yaml
|
packages/lo/logging-facade.yaml
|
homepage: ''
changelog-type: ''
hash: dec6d7031c7fc95046187a1744646d4b40de48c6b591b08cd20a73257cc9a67f
test-bench-deps:
logging-facade: -any
base: ==4.*
hspec: ==2.*
maintainer: Simon Hengel <[email protected]>
synopsis: Simple logging abstraction that allows multiple back-ends
changelog: ''
basic-deps:
base: ==4.*
transformers: -any
template-haskell: -any
all-versions:
- '0.0.0'
- '0.1.0'
- '0.1.1'
author: Simon Hengel <[email protected]>
latest: '0.1.1'
description-type: haddock
description: Simple logging abstraction that allows multiple back-ends
license-name: MIT
|
homepage: ''
changelog-type: ''
hash: fc89005336a9b64c524183154716ebf8a26c27f8fa5730225f818f0128c2a2b2
test-bench-deps:
logging-facade: -any
base: ==4.*
hspec: ==2.*
maintainer: Simon Hengel <[email protected]>
synopsis: Simple logging abstraction that allows multiple back-ends
changelog: ''
basic-deps:
base: ! '>=4.6 && <5'
transformers: -any
template-haskell: -any
all-versions:
- '0.0.0'
- '0.1.0'
- '0.1.1'
author: Simon Hengel <[email protected]>
latest: '0.1.1'
description-type: haddock
description: Simple logging abstraction that allows multiple back-ends
license-name: MIT
|
Update from Hackage at 2016-11-13T22:59:18Z
|
Update from Hackage at 2016-11-13T22:59:18Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
293843fb8238181ce61019ac09b84f6b4d6e6301
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: Tests
on: [push]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.4', '8.0', '8.1']
name: Testing on PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring,bcmath
tools: composer
- name: Install PHP dependencies
run: composer install -q
- name: Run phpunit
run: vendor/bin/phpunit
- name: Run phpstan
run: composer require --dev illuminate/support && vendor/bin/phpstan analyze --no-progress --autoload-file=tests/phpstan/bootstrap.php --level=5 src/
|
name: Tests
on: [push]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.0', '8.1']
name: Testing on PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring,bcmath
tools: composer
- name: Install PHP dependencies
run: composer install -q
- name: Run phpunit
run: vendor/bin/phpunit
- name: Run phpstan
run: composer require --dev illuminate/support && vendor/bin/phpstan analyze --no-progress --autoload-file=tests/phpstan/bootstrap.php --level=5 src/
|
Remove PHP 7.4 from testing workflow
|
Remove PHP 7.4 from testing workflow
|
YAML
|
mit
|
Intervention/httpauth
|
65c3d6e8b8ff5387385c5744103e7db207cc3adc
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: package
on: [push]
jobs:
ui:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build development image
run: |
docker build -t alephdata/aleph-ui:${GITHUB_SHA} .
docker tag alephdata/aleph-ui:${GITHUB_SHA} alephdata/aleph-ui:latest
- name: Build production image
run: |
docker build -t alephdata/aleph-ui-production:${GITHUB_SHA} -f ui/Dockerfile.production ui
# - name: Push docker image (master)
# run: |
# docker login -u ${{ secrets.docker_user }} -p ${{ secrets.docker_password }}
# docker push alephdata/convert-document:${GITHUB_SHA}
elasticsearch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build docker image
run: |
docker build -t alephdata/aleph-elasticsearch:${GITHUB_SHA} .
docker tag alephdata/aleph-elasticsearch:${GITHUB_SHA} alephdata/aleph-elasticsearch:latest
# - name: Push docker image (master)
# run: |
# docker login -u ${{ secrets.docker_user }} -p ${{ secrets.docker_password }}
# docker push alephdata/convert-document:${GITHUB_SHA}
|
name: package
on: [push]
jobs:
docker-ui:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build development image
run: |
docker build -t alephdata/aleph-ui:${GITHUB_SHA} ui
docker tag alephdata/aleph-ui:${GITHUB_SHA} alephdata/aleph-ui:latest
- name: Build production image
run: |
docker build -t alephdata/aleph-ui-production:${GITHUB_SHA} -f ui/Dockerfile.production ui
- name: Push docker image (master)
run: |
docker login -u ${{ secrets.docker_user }} -p ${{ secrets.docker_password }}
docker push alephdata/aleph-ui-production:${GITHUB_SHA}
docker-elasticsearch:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Build docker image
run: |
docker build -t alephdata/aleph-elasticsearch:${GITHUB_SHA} services/elasticsearch
docker tag alephdata/aleph-elasticsearch:${GITHUB_SHA} alephdata/aleph-elasticsearch:latest
- name: Push docker image (master)
run: |
docker login -u ${{ secrets.docker_user }} -p ${{ secrets.docker_password }}
docker push alephdata/aleph-elasticsearch:${GITHUB_SHA}
|
Rename and push to docker hub
|
Rename and push to docker hub
|
YAML
|
mit
|
alephdata/aleph,pudo/aleph,pudo/aleph,alephdata/aleph,pudo/aleph,alephdata/aleph,alephdata/aleph,alephdata/aleph
|
473454d4125fd69f644370aabaf4da84b6cdc14f
|
.github/workflows/build.yml
|
.github/workflows/build.yml
|
name: Build
on: [ push, pull_request, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Maven Cache"
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: "Setup Java"
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: "Maven Tests"
run: mvn clean test cobertura:cobertura jacoco:report coveralls:report -DdryRun=true
- name: "Coverage Report"
uses: MikeEdgar/github-action@raw_coverage_file
with:
github-token: ${{ secrets.github_token }}
path-to-file: 'target/coveralls.json'
coverage-format: raw
|
name: Build
on: [ push, pull_request, workflow_dispatch ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Maven Cache"
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: "Setup Java"
uses: actions/setup-java@v1
with:
java-version: 11
- name: "Maven Tests"
run: mvn clean test cobertura:cobertura jacoco:report coveralls:report -DdryRun=true
- name: "Coverage Report"
uses: MikeEdgar/github-action@raw_coverage_file
with:
github-token: ${{ secrets.github_token }}
path-to-file: 'target/coveralls.json'
coverage-format: raw
|
Switch from Java 1.8 to Java 11 for Github Workflows.
|
Switch from Java 1.8 to Java 11 for Github Workflows.
|
YAML
|
mit
|
TAMULib/Weaver-Webservice-Core
|
67b92dc5b7a70583089a550a579a6f4fba58f84e
|
.github/workflows/main.yaml
|
.github/workflows/main.yaml
|
name: C/C++ CI
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- run: |
sudo apt-get update
sudo apt-get install -qy libgtkmm-3.0-dev libconfig++-dev libcurl4-openssl-dev libxml2-dev \
libgstreamer1.0-dev libsecret-1-dev libunrar-dev libzip-dev libpeas-dev
- uses: BSFishy/[email protected]
with:
action: build
|
name: C/C++ CI
on: [push, pull_request]
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- run: |
sudo apt-get update
sudo apt-get install -qy libgtkmm-3.0-dev libconfig++-dev libcurl4-openssl-dev libxml2-dev \
libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libsecret-1-dev libunrar-dev \
libzip-dev libpeas-dev
- uses: BSFishy/[email protected]
with:
action: build
|
Fix missing dependency for CI linux build
|
Fix missing dependency for CI linux build
|
YAML
|
mit
|
ahodesuka/ahoviewer,ahodesuka/ahoviewer,ahodesuka/ahoviewer
|
2ed5e37ddade6a2cd3fb1362521ff5d4dc2f823d
|
.github/workflows/swift.yml
|
.github/workflows/swift.yml
|
name: Swift
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: swift test -v
|
name: Swift
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
macOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: macOS
run: swift build -v
- name: Run macOS tests
run: swift test -v
linux:
runs-on: ubuntu-latest
container:
image: swift:latest
steps:
- uses: actions/checkout@v2
- name: Run Linux tests
run: swift test -c debug --enable-test-discovery
|
Add Linux tests on workflow
|
Add Linux tests on workflow
|
YAML
|
mit
|
dnlosx/Cart,dnlosx/Cart
|
3bd5b34ede2a60d4d0e529ac8829fa4dab5b9923
|
.github/workflows/tests.yml
|
.github/workflows/tests.yml
|
name: Tests
on:
push:
paths-ignore:
- 'readme.md'
- 'assets/**'
pull_request:
paths-ignore:
- 'readme.md'
- 'assets/**'
release:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
laravel: [6.*]
php: [7.2, 7.3]
fail-fast: false
name: Laravel ${{ matrix.laravel }}, PHP ${{ matrix.php }}
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Set up PHP
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php }}
extension: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
- name: Install dependencies
run: |
composer require "illuminate/auth:${{ matrix.laravel }}" "illuminate/cache:${{ matrix.laravel }}" "illuminate/container:${{ matrix.laravel }}" "illuminate/contracts:${{ matrix.laravel }}" "illuminate/database:${{ matrix.laravel }}" "illuminate/console:${{ matrix.laravel }}" "illuminate/events:${{ matrix.laravel }}" --no-interaction --no-update
composer update --prefer-stable --prefer-dist --no-interaction --no-suggest
- name: Run tests
run: vendor/bin/phpunit
|
name: Tests
on:
push:
paths-ignore:
- 'readme.md'
- 'assets/**'
pull_request:
paths-ignore:
- 'readme.md'
- 'assets/**'
release:
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
laravel: [6.*]
php: [7.2, 7.3]
fail-fast: false
name: Laravel ${{ matrix.laravel }}, PHP ${{ matrix.php }}
steps:
- name: Check out code
uses: actions/checkout@v1
- name: Set up PHP
uses: shivammathur/setup-php@v1
with:
php-version: ${{ matrix.php }}
extension: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick
- name: Install dependencies
run: |
composer require "illuminate/auth:${{ matrix.laravel }}" "illuminate/cache:${{ matrix.laravel }}" "illuminate/container:${{ matrix.laravel }}" "illuminate/contracts:${{ matrix.laravel }}" "illuminate/database:${{ matrix.laravel }}" "illuminate/console:${{ matrix.laravel }}" "illuminate/events:${{ matrix.laravel }}" --no-interaction --no-update
composer update --prefer-stable --prefer-dist --no-interaction --no-suggest
- name: Run tests
run: vendor/bin/phpunit --do-not-cache-result
|
Add `--do-not-cache-result` flag when running PHPUnit from GitHub Actions
|
Add `--do-not-cache-result` flag when running PHPUnit from GitHub Actions
|
YAML
|
mit
|
grantholle/bouncer,JosephSilber/bouncer
|
02c3b73aa8f6f678c3d94abb1b79a4ad00b1db08
|
.github/workflows/tests.yml
|
.github/workflows/tests.yml
|
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
paths:
- '.github/workflows/**'
- '*.js'
- 'package.json'
jobs:
tests:
env:
NPM_CONFIG_PROGRESS: "false"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 6
cache: 'npm'
- run: npm install --no-audit && npm install --no-audit karma-cli karma-sauce-launcher
- name: Setup Sauce Labs
run: sh -e /etc/init.d/xvfb start
env:
DISPLAY: ':99.0'
- run: npm test
- run: ./node_modules/.bin/karma start karma.conf-sauce.js
env:
SAUCE_USERNAME: ${{ secrets.SauceUsername }}
SAUCE_ACCESS_KEY: ${{ secrets.SauceAccessKey }}
BUILD_NUMBER: ${{ env.GITHUB_RUN_NUMBER }}
BUILD_ID: ${{ env.GITHUB_RUN_ID }}
JOB_NUMBER: ${{ env.GITHUB_JOB }}
|
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
paths:
- '.github/workflows/**'
- '*.js'
- 'package.json'
jobs:
tests:
env:
NPM_CONFIG_PROGRESS: "false"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 6
- run: npm install --no-audit && npm install --no-audit karma-cli karma-sauce-launcher
- name: Setup Sauce Labs
run: sh -e /etc/init.d/xvfb start
env:
DISPLAY: ':99.0'
- run: npm test
- run: ./node_modules/.bin/karma start karma.conf-sauce.js
env:
SAUCE_USERNAME: ${{ secrets.SauceUsername }}
SAUCE_ACCESS_KEY: ${{ secrets.SauceAccessKey }}
BUILD_NUMBER: ${{ env.GITHUB_RUN_NUMBER }}
BUILD_ID: ${{ env.GITHUB_RUN_ID }}
JOB_NUMBER: ${{ env.GITHUB_JOB }}
|
Remove cache key for now
|
Remove cache key for now
|
YAML
|
mit
|
jashkenas/backbone,jashkenas/backbone,ppker/backbone,ppker/backbone
|
d815c2f8e4dd1ebc577c30e49eb6214d398824f1
|
.github/workflows/tests.yml
|
.github/workflows/tests.yml
|
name: Tests
on:
- push
- pull_request
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
php: ['7.1', '7.2', '7.3', '7.4', '8.0']
fail-fast: false
name: PHP ${{ matrix.php }} tests on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: tokenizer
coverage: none
- run: composer install --no-progress --prefer-dist
- run: vendor/bin/tester tests -s -C
- if: failure()
uses: actions/upload-artifact@v2
with:
name: output
path: tests/**/output
|
name: Tests
on:
- push
- pull_request
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
php: ['7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
fail-fast: false
name: PHP ${{ matrix.php }} tests on ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: tokenizer
coverage: none
- run: composer install --no-progress --prefer-dist
- run: vendor/bin/tester tests -s -C
- if: failure()
uses: actions/upload-artifact@v3
with:
name: output
path: tests/**/output
|
Test in PHP 8.1 and 8.2
|
CI: Test in PHP 8.1 and 8.2
|
YAML
|
mit
|
sunfoxcz/price-calculator,sunfoxcz/price-calculator
|
283ac50e5da5cb8002615328bd73739cc61eb672
|
tasks/install-ui.yml
|
tasks/install-ui.yml
|
- name: download consul
get_url: >
url={{consul_ui_download}}
dest={{consul_download_folder}}
register: consul_ui_was_downloaded
- name: copy and unpack
unarchive: >
src={{ consul_download_folder }}/{{ consul_ui_archive }}
dest={{ consul_home }}
copy=no
when: consul_ui_was_downloaded|changed
- name: set ownership
file: >
state=directory
path={{consul_ui_dir}}
owner={{consul_user}}
group={{consul_group}}
recurse=yes
when: consul_ui_was_downloaded|changed
- name: consul nginx config
template: >
src=consul-nginx.conf.j2
dest=/etc/nginx/sites-available/consul
owner=root
group=root
mode=0755
when: consul_is_ui
notify:
- restart nginx
- name: consul nginx config
file: >
state=link
src=/etc/nginx/sites-available/consul
path=/etc/nginx/sites-enabled/consul
owner=root
group=root
mode=0755
when: consul_is_ui and consul_enable_nginx_config
notify:
- restart nginx
- name: create nginx home
file: >
state=directory
path=/var/www/consul/htdocs
owner=root
group=root
mode=0755
notify:
- restart nginx
|
- name: download consul ui
get_url: >
url={{consul_ui_download}}
dest={{consul_download_folder}}
register: consul_ui_was_downloaded
- name: copy and unpack ui
unarchive: >
src={{ consul_download_folder }}/{{ consul_ui_archive }}
dest={{ consul_home }}
copy=no
when: consul_ui_was_downloaded|changed
- name: set ownership
file: >
state=directory
path={{consul_ui_dir}}
owner={{consul_user}}
group={{consul_group}}
recurse=yes
when: consul_ui_was_downloaded|changed
- name: consul nginx config
template: >
src=consul-nginx.conf.j2
dest=/etc/nginx/sites-available/consul
owner=root
group=root
mode=0755
when: consul_is_ui
notify:
- restart nginx
- name: consul nginx config
file: >
state=link
src=/etc/nginx/sites-available/consul
path=/etc/nginx/sites-enabled/consul
owner=root
group=root
mode=0755
when: consul_is_ui and consul_enable_nginx_config
notify:
- restart nginx
- name: create nginx home
file: >
state=directory
path=/var/www/consul/htdocs
owner=root
group=root
mode=0755
notify:
- restart nginx
|
Make names for consul ui tasks have "ui" in them
|
Make names for consul ui tasks have "ui" in them
|
YAML
|
apache-2.0
|
savagegus/ansible-consul,lbaldwin123/ansible-consul,jivesoftware/ansible-consul,jonbrandenburg/ansible-consul,tomjrob/ansible-consul,robbiet480/ansible-consul,lbaldwin123/ansible-consul,trumant/ansible-consul,wernerb/ansible-consul-yum,wernerb/ansible-consul-yum,adriagalin/ansible-consul,cloudstrap/ansible-consul,MrMMorris/ansible-consul,tomjrob/ansible-consul,trumant/ansible-consul,savagegus/ansible-consul,jonbrandenburg/ansible-consul,adriagalin/ansible-consul,cloudstrap/ansible-consul,MrMMorris/ansible-consul,robbiet480/ansible-consul,jivesoftware/ansible-consul
|
b2d76f488e3683ef10915775905a751117981fd9
|
web/sites/default/files/config_F173OZ45gyIJJcdPPC9p73_gemop6Ee4mO3hHamze3lKTfEhKjTiG03ISIkE5kSXy8jdpuTpGw/staging/field.field.node.blog.field_picture.yml
|
web/sites/default/files/config_F173OZ45gyIJJcdPPC9p73_gemop6Ee4mO3hHamze3lKTfEhKjTiG03ISIkE5kSXy8jdpuTpGw/staging/field.field.node.blog.field_picture.yml
|
uuid: 92528819-9819-4c33-af31-49bfb52ce0bb
langcode: en
status: true
dependencies:
config:
- field.storage.node.field_picture
- node.type.blog
module:
- image
id: node.blog.field_picture
field_name: field_picture
entity_type: node
bundle: blog
label: Picture
description: ''
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings:
file_directory: ''
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
max_resolution: ''
min_resolution: ''
alt_field: true
alt_field_required: true
title_field: true
title_field_required: false
default_image:
uuid: ''
alt: ''
title: ''
width: null
height: null
handler: 'default:node'
handler_settings: { }
field_type: image
|
uuid: 92528819-9819-4c33-af31-49bfb52ce0bb
langcode: en
status: true
dependencies:
config:
- field.storage.node.field_picture
- node.type.blog
module:
- image
id: node.blog.field_picture
field_name: field_picture
entity_type: node
bundle: blog
label: Picture
description: "Some help text\r\n"
required: false
translatable: false
default_value: { }
default_value_callback: ''
settings:
file_directory: ''
file_extensions: 'png gif jpg jpeg'
max_filesize: ''
max_resolution: ''
min_resolution: ''
alt_field: true
alt_field_required: true
title_field: false
title_field_required: false
default_image:
uuid: ''
alt: ''
title: ''
width: null
height: null
handler: 'default:node'
handler_settings: { }
field_type: image
|
Tweak to picture field to test out .git/info/exclude setup
|
Tweak to picture field to test out .git/info/exclude setup
|
YAML
|
mit
|
komejo/d8demo-dev,komejo/d8demo-dev,komejo/d8demo-dev,komejo/d8demo-dev,komejo/d8demo-dev
|
cd32a5098388255cd650d443e8cf6f97d6073d68
|
config/jobs/image-pushing/k8s-staging-artifact-promoter.yaml
|
config/jobs/image-pushing/k8s-staging-artifact-promoter.yaml
|
postsubmits:
# this is the github repo we'll build from; this block needs to be repeated for each repo.
kubernetes-sigs/k8s-container-image-promoter:
- name: cip-postsubmit-push-to-staging
cluster: test-infra-trusted
annotations:
# this is the name of some testgrid dashboard to report to.
testgrid-dashboards: sig-release-misc
decorate: true
branches:
- ^master$
spec:
containers:
- image: gcr.io/k8s-testimages/image-builder:v20200213-0032cdb
command:
- /run.sh
args:
# this is the project GCB will run in, which is the same as the GCR images are pushed to.
- --project=k8s-staging-artifact-promoter
- --scratch-bucket=gs://k8s-staging-artifact-promoter-gcb
- --env-passthrough=PULL_BASE_REF
- .
env:
- name: GOOGLE_APPLICATION_CREDENTIALS
value: /creds/service-account.json
volumeMounts:
- name: creds
mountPath: /creds
volumes:
- name: creds
secret:
secretName: deployer-service-account
|
postsubmits:
# this is the github repo we'll build from; this block needs to be repeated for each repo.
kubernetes-sigs/k8s-container-image-promoter:
- name: cip-postsubmit-push-to-staging
cluster: test-infra-trusted
annotations:
# this is the name of some testgrid dashboard to report to.
testgrid-dashboards: sig-release-misc
decorate: true
branches:
- ^master$
spec:
serviceAccountName: deployer # TODO(fejta): use pusher
containers:
- image: gcr.io/k8s-testimages/image-builder:v20200213-0032cdb
command:
- /run.sh
args:
# this is the project GCB will run in, which is the same as the GCR images are pushed to.
- --project=k8s-staging-artifact-promoter
- --scratch-bucket=gs://k8s-staging-artifact-promoter-gcb
- --env-passthrough=PULL_BASE_REF
- .
|
Update artifact promoter to use workload-identity
|
Update artifact promoter to use workload-identity
|
YAML
|
apache-2.0
|
dims/test-infra,kubernetes/test-infra,fejta/test-infra,fejta/test-infra,michelle192837/test-infra,dims/test-infra,dims/test-infra,cblecker/test-infra,brahmaroutu/test-infra,pwittrock/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,BenTheElder/test-infra,cblecker/test-infra,michelle192837/test-infra,michelle192837/test-infra,jessfraz/test-infra,cjwagner/test-infra,ixdy/kubernetes-test-infra,cblecker/test-infra,dims/test-infra,monopole/test-infra,fejta/test-infra,ixdy/kubernetes-test-infra,cjwagner/test-infra,cjwagner/test-infra,kubernetes/test-infra,monopole/test-infra,pwittrock/test-infra,jessfraz/test-infra,BenTheElder/test-infra,brahmaroutu/test-infra,brahmaroutu/test-infra,brahmaroutu/test-infra,brahmaroutu/test-infra,michelle192837/test-infra,pwittrock/test-infra,monopole/test-infra,ixdy/kubernetes-test-infra,ixdy/kubernetes-test-infra,monopole/test-infra,BenTheElder/test-infra,kubernetes/test-infra,ixdy/kubernetes-test-infra,cblecker/test-infra,cblecker/test-infra,jessfraz/test-infra,fejta/test-infra,BenTheElder/test-infra,monopole/test-infra,jessfraz/test-infra,kubernetes/test-infra,kubernetes/test-infra,cjwagner/test-infra,pwittrock/test-infra,kubernetes/test-infra,fejta/test-infra,dims/test-infra,cjwagner/test-infra,brahmaroutu/test-infra,monopole/test-infra,fejta/test-infra,pwittrock/test-infra,cjwagner/test-infra,dims/test-infra,cblecker/test-infra,michelle192837/test-infra,jessfraz/test-infra,michelle192837/test-infra,jessfraz/test-infra
|
62ff1ea6530e1a9ce719be2bd9f87d021711a886
|
packages/ap/apioiaf-client.yaml
|
packages/ap/apioiaf-client.yaml
|
homepage: https://github.com/kberger/anapioficeandfire-haskell#readme
changelog-type: ''
hash: 5a32a3e7ce9259b39964d4e5f890482ddeb529231c8a58124788f6ec72074599
test-bench-deps:
base: -any
apioiaf-client: -any
maintainer: [email protected]
synopsis: Consumer library for anapioficeandfire.com
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
wreq: -any
lens: -any
aeson: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
author: Karl Berger
latest: '0.2.0.0'
description-type: haddock
description: ! '
A wrapper library for consuming the data provided by <anapioficeandfire.com>
See README for API details <https://github.com/kberger/anapioficeandfire-haskell#readme>'
license-name: BSD3
|
homepage: https://github.com/kberger/anapioficeandfire-haskell#readme
changelog-type: ''
hash: 4edef07ad38f9b3f3d627257aeb7a13b73fa7e73dce2a64d7dacda02c94ed241
test-bench-deps:
base: -any
apioiaf-client: -any
maintainer: [email protected]
synopsis: Consumer library for anapioficeandfire.com
changelog: ''
basic-deps:
bytestring: -any
base: ! '>=4.7 && <5'
wreq: -any
lens: -any
aeson: -any
all-versions:
- '0.1.0.0'
- '0.2.0.0'
- '0.2.0.1'
author: Karl Berger
latest: '0.2.0.1'
description-type: haddock
description: ! '
A wrapper library for consuming the data provided by <http://anapioficeandfire.com>
See README for API details <https://github.com/kberger/anapioficeandfire-haskell#readme>'
license-name: BSD3
|
Update from Hackage at 2016-12-21T14:40:40Z
|
Update from Hackage at 2016-12-21T14:40:40Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
f301bba26cedac7c3231d5cb5af46df39cc4aeb6
|
ansible/roles/horizon/tasks/start.yml
|
ansible/roles/horizon/tasks/start.yml
|
---
- name: Starting horizon container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ horizon_image_full }}"
name: "horizon"
environment:
ENABLE_CLOUDKITTY: "{{ 'yes' if enable_cloudkitty | bool else 'no' }}"
ENABLE_DESIGNATE: "{{ 'yes' if enable_designate | bool else 'no' }}"
ENABLE_IRONIC: "{{ 'yes' if enable_ironic | bool else 'no' }}"
ENABLE_MANILA: "{{ 'yes' if enable_manila | bool else 'no' }}"
ENABLE_NEUTRON_LBAAS: "{{ 'yes' if enable_neutron_lbaas | bool else 'no' }}"
ENABLE_SAHARA: "{{ 'yes' if enable_sahara | bool else 'no' }}"
ENABLE_SEARCHLIGHT: "{{ 'yes' if enable_searchlight | bool else 'no' }}"
ENABLE_SENLIN: "{{ 'yes' if enable_senlin | bool else 'no' }}"
ENABLE_TROVE: "{{ 'yes' if enable_trove | bool else 'no' }}"
volumes:
- "{{ node_config_directory }}/horizon/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/localtime:ro"
- "kolla_logs:/var/log/kolla/"
when: inventory_hostname in groups['horizon']
|
---
- name: Starting horizon container
kolla_docker:
action: "start_container"
common_options: "{{ docker_common_options }}"
image: "{{ horizon_image_full }}"
name: "horizon"
environment:
ENABLE_CLOUDKITTY: "{{ 'yes' if enable_cloudkitty | bool else 'no' }}"
ENABLE_DESIGNATE: "{{ 'yes' if enable_designate | bool else 'no' }}"
ENABLE_IRONIC: "{{ 'yes' if enable_ironic | bool else 'no' }}"
ENABLE_MANILA: "{{ 'yes' if enable_manila | bool else 'no' }}"
ENABLE_NEUTRON_LBAAS: "{{ 'yes' if enable_neutron_lbaas | bool else 'no' }}"
ENABLE_SAHARA: "{{ 'yes' if enable_sahara | bool else 'no' }}"
ENABLE_SEARCHLIGHT: "{{ 'yes' if enable_searchlight | bool else 'no' }}"
ENABLE_SENLIN: "{{ 'yes' if enable_senlin | bool else 'no' }}"
ENABLE_TROVE: "{{ 'yes' if enable_trove | bool else 'no' }}"
ENABLE_WATCHER: "{{ 'yes' if enable_watcher | bool else 'no' }}"
volumes:
- "{{ node_config_directory }}/horizon/:{{ container_config_directory }}/:ro"
- "/etc/localtime:/etc/localtime:ro"
- "kolla_logs:/var/log/kolla/"
when: inventory_hostname in groups['horizon']
|
Enable watcher dashboard when enable_watcher is yes
|
Enable watcher dashboard when enable_watcher is yes
Depends-On: Ief5898f6bf1caa3a7fe6b2a96be2bdb79e402f28
Change-Id: I2ea4bd9308637056c6cb1b1d515efd1020a60d1b
Closes-Bug: #1647162
|
YAML
|
apache-2.0
|
dardelean/kolla-ansible,dardelean/kolla-ansible,dardelean/kolla-ansible
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.