commit stringlengths 40 40 | old_file stringlengths 4 264 | new_file stringlengths 4 264 | old_contents stringlengths 0 4.24k | new_contents stringlengths 1 5.44k | subject stringlengths 14 778 | message stringlengths 15 9.92k | lang stringclasses 277
values | license stringclasses 13
values | repos stringlengths 5 127k |
|---|---|---|---|---|---|---|---|---|---|
4b691d1b582dfa013479f44b305417e6de6c9605 | data/galaxy_tools_playbook/taxonomic_assignation_tool_list.yaml | data/galaxy_tools_playbook/taxonomic_assignation_tool_list.yaml | api_key: <Admin user API key from galaxy_instance>
galaxy_instance: <Galaxy instance IP>
tools:
- name: 'metaphlan2'
owner: 'bebatut'
tool_panel_section_id: 'all_seq_taxonomic_assignation'
tool_shed_url: 'https://testtoolshed.g2.bx.psu.edu'
install_tool_dependencies: True
install_repository_dependencies: True... | api_key: <Admin user API key from galaxy_instance>
galaxy_instance: <Galaxy instance IP>
tools:
- name: 'metaphlan2'
owner: 'bebatut'
tool_panel_section_id: 'all_seq_taxonomic_assignation'
tool_shed_url: 'https://testtoolshed.g2.bx.psu.edu'
install_tool_dependencies: True
install_repository_dependencies: True... | Comment not working qiime wrapper | Comment not working qiime wrapper
| YAML | apache-2.0 | ASaiM/framework,ASaiM/framework |
540a45b1a13dff9ae14ef2ed98dab49c09fc6c76 | tutum.yml | tutum.yml | ubuntu:
image: tutum/ubuntu:latest
ports:
- 2222:22
environment:
- AUTHORIZED_KEYS="YOUR SSH PUBLIC KEY HERE"
| ubuntu:
image: tutum/ubuntu:latest
ports:
- 2222:22
environment:
- AUTHORIZED_KEYS=YOUR SSH PUBLIC KEY HERE
| Remove misleading double quotes in stack file | Remove misleading double quotes in stack file
User needs to provide ssh pub key without double quotes.
If user leaves the double quotes, the resulting stack file is created in Tutum like below:
ubuntu:
image: 'tutum/ubuntu:latest'
environment:
- 'AUTHORIZED_KEYS="YOUR SSH PUBLIC KEY HERE"'
ports:
... | YAML | apache-2.0 | ivotron/tutum-ubuntu,tutumcloud/tutum-ubuntu,bigsurge/tutum-ubuntu |
9c995511e10c82c9fe13fe27c5c4221b207477e6 | docker-compose-unit-tests.yml | docker-compose-unit-tests.yml | version: '3.2'
services:
#############################################
# Start app as a container
#############################################
web:
# build from local Dockerfile
build: .
# if not --build and kth-azure-app already exists in
# your local computers registry 'image' is used.
i... | version: '3.2'
services:
#############################################
# Start app as a container
#############################################
web:
# build from local Dockerfile
build: .
# if not --build and kth-azure-app already exists in
# your local computers registry 'image' is used.
i... | Remove unused variable in .yml file | Remove unused variable in .yml file
| YAML | mit | KTH/lms-sync,KTH/lms-sync |
235978e3aaaef24249071edd0ba7fd08c6848b7c | recipes/cgns/meta.yaml | recipes/cgns/meta.yaml | {% set name = "cgns" %}
{% set version = "3.2.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/{{ name|upper }}/{{ name|upper }}/archive/v{{ version }}.tar.gz
sha256: 677d0da94f0892b72b96da7cf4de51f661acfff1141c585af50a531fa161773f
patches:
= if-block.patch
b... | {% set name = "cgns" %}
{% set version = "3.2.1" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/{{ name|upper }}/{{ name|upper }}/archive/v{{ version }}.tar.gz
sha256: 677d0da94f0892b72b96da7cf4de51f661acfff1141c585af50a531fa161773f
patches:
= if-block.patch
b... | Add zlib and hdf5 to build requirements | Add zlib and hdf5 to build requirements
| YAML | bsd-3-clause | petrushy/staged-recipes,ceholden/staged-recipes,chrisburr/staged-recipes,birdsarah/staged-recipes,dschreij/staged-recipes,ocefpaf/staged-recipes,synapticarbors/staged-recipes,cpaulik/staged-recipes,jakirkham/staged-recipes,asmeurer/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,jochym/staged-recipes,con... |
f97fabe1279e794a6f57b19d5d43ef20b0a615a2 | recipes/fmpy/meta.yaml | recipes/fmpy/meta.yaml | {% set name = "fmpy" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/CATIA-Systems/FMPy/archive/v{{ version }}.tar.gz
fn: v{{ version }}.tar.gz
build:
skip: true # [not win]
number: 0
script: python setup.py install --single-version... | {% set name = "fmpy" %}
{% set version = "0.1.0" %}
package:
name: {{ name|lower }}
version: {{ version }}
source:
url: https://github.com/CATIA-Systems/FMPy/archive/v{{ version }}.tar.gz
fn: v{{ version }}.tar.gz
build:
number: 0
script: python setup.py install --single-version-externally-managed --reco... | Remove skip for non-Windows platforms | Remove skip for non-Windows platforms
| YAML | bsd-3-clause | rmcgibbo/staged-recipes,Juanlu001/staged-recipes,pmlandwehr/staged-recipes,johanneskoester/staged-recipes,mcs07/staged-recipes,cpaulik/staged-recipes,rvalieris/staged-recipes,stuertz/staged-recipes,patricksnape/staged-recipes,rmcgibbo/staged-recipes,mariusvniekerk/staged-recipes,kwilcox/staged-recipes,shadowwalkersb/st... |
abd8cbd27312178c6be9c02da6c6d9a2ce076eaa | .gitlab-ci.yml | .gitlab-ci.yml | image: 'python:3.6.1'
before_script:
# installing pre-commit
- pip install -c requirements/constraints.txt -r requirements/linters.txt -r requirements/test.txt -r requirements/common.txt
- pre-commit install-hooks
lint:
# basically just run pre-commit linters
script: pre-commit run --all-files
test:
scrip... | image: 'python:3.6.1'
before_script:
# installing pre-commit
- pip install -c requirements/constraints.txt -r requirements/linters.txt -r requirements/test.txt -r requirements/common.txt
- pre-commit install-hooks
lint:
# basically just run pre-commit linters
script: pre-commit run --all-files
test:
scrip... | Reset before_script in `vagga:test` job | Reset before_script in `vagga:test` job | YAML | mit | open-craft-guild/aio-feature-flags |
2c3390101ea64ef1eca8641b5a0ccc7dbd4e5389 | .gitlab-ci.yml | .gitlab-ci.yml | # Automatic build and test against SugarCRM 7.X
# Push to github on success.
stages:
- test
- build
- publish
phpunit:
stage: test
script:
- composer install --quiet -o
- bin/phpunit --color=never
phar:
stage: build
script:
- composer install --no-dev --quiet -o
... | # Automatic build and test against SugarCRM 7.X
# Push to github on success.
stages:
- test
- build
- publish
phpunit:
stage: test
tags:
- sugarcli
script:
- composer install --quiet -o
- bin/phpunit --color=never
phar:
stage: build
tags:
- sugarcli
... | Make automatic releases on gitlab. | Make automatic releases on gitlab.
| YAML | apache-2.0 | inetprocess/sugarcli,inetprocess/sugarcli |
f931aeeb89bc8c5fd4e1f7a326604d24f2f1da91 | .gitlab-ci.yml | .gitlab-ci.yml | image: docker:latest
services:
- docker:dind
variables:
DOCKER_DRIVER: overlay
before_script:
- apt-get update -y
test:
script:
- apt-get install default-jre -y
- wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
- chmod a+x lein
- export LEIN_ROOT=1
- PATH=$P... | image: docker:latest
services:
- docker:dind
variables:
DOCKER_DRIVER: overlay
stages:
- test
- build
- release
test:
stage: test
script:
- apk update
- apk install openjdk8-jre-base
- wget https://raw.githubusercontent.com/technomancy/leiningen/stable/bin/lein
- chmod a+x lein
- ex... | Work with Docker in Docker setup | Work with Docker in Docker setup
| YAML | epl-1.0 | treppo/yorck-ratings-v2 |
f81637ce2fe7730c5169f805fc7beca4a06d1145 | .codeclimate.yml | .codeclimate.yml | languages:
Ruby: false
JavaScript: true
PHP: true
Python: false
exclude_paths:
- "vendor/*"
- "config/*"
- "bootstrap/*"
- "database/*"
- "storage/*"
- "resources/assets/css/skin-*.css"
- "resources/assets/js/AdminLTE.js"
- "resources/assets/css/AdminLTE.css"
- "resou... | languages:
Ruby: false
JavaScript: true
PHP: true
Python: false
exclude_paths:
- "vendor/*"
- "config/*"
- "bootstrap/*"
- "database/*"
- "storage/*"
- "resources/assets/css/skin-*.css"
- "resources/assets/js/AdminLTE.js"
- "resources/assets/css/AdminLTE.css"
- "resou... | Remove JS from code climate for now | Remove JS from code climate for now
| YAML | mit | REBELinBLUE/deployer,talib570/deployer,iflamed/deployer,iflamed/deployer,REBELinBLUE/deployer,JamesForks/deployer,JamesForks/deployer,JamesForks/deployer,talib570/deployer,REBELinBLUE/deployer,JamesForks/deployer,REBELinBLUE/deployer |
973e355947da06be0ba6a85bafbf8576a2ba7813 | recipes/perl-scalar-list-utils/meta.yaml | recipes/perl-scalar-list-utils/meta.yaml | package:
name: perl-scalar-list-utils
version: "1.42"
source:
fn: Scalar-List-Utils-1.42.tar.gz
url: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/Scalar-List-Utils-1.42.tar.gz
md5: a76768c6e0f92eefb6d4b3b779469c3d
# patches:
# List any patch files here
# - fix.patch
build:
number: 2
skip: Tru... | package:
name: perl-scalar-list-utils
version: "1.42"
source:
fn: Scalar-List-Utils-1.42.tar.gz
url: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/Scalar-List-Utils-1.42.tar.gz
md5: a76768c6e0f92eefb6d4b3b779469c3d
# patches:
# List any patch files here
# - fix.patch
build:
number: 3
requiremen... | Build Perl Scalar-List-Utils for OSX | Build Perl Scalar-List-Utils for OSX
| YAML | mit | Luobiny/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,oena/bioconda-recipes,matthdsm/bioconda-recipes,zwanli/bioconda-recipes,omicsnut/bioconda-recipes,JenCabral/bioconda-recipes,ostrokach/bioconda-recipes,abims-sbr/bioconda-recipes,joachimwolff/bioconda-recipes,jfallmann/bioconda-recipes,ostrokach/bioconda-recipes,be... |
deb844253841f17e7e949c6afa433e3229f899ea | recipe/meta.yaml | recipe/meta.yaml | {% set version = "0.10.5" %}
package:
name: conda-smithy
version: {{ version }}
source:
fn: conda-smithy-v{{ version }}.tar.gz
url: https://github.com/conda-forge/conda-smithy/archive/v{{ version }}.tar.gz
sha256: 7d436c60cc117e6b9a648fc6cfd9f36ad8b708858c55764c5caaf43a188aeeea
build:
number: 0
scr... | {% set version = "0.10.5" %}
package:
name: conda-smithy
version: {{ version }}
source:
fn: conda-smithy-v{{ version }}.tar.gz
url: https://github.com/conda-forge/conda-smithy/archive/v{{ version }}.tar.gz
sha256: 7d436c60cc117e6b9a648fc6cfd9f36ad8b708858c55764c5caaf43a188aeeea
build:
number: 0
scr... | Add @jakirkham as a maintainer. | recipe: Add @jakirkham as a maintainer.
| YAML | bsd-3-clause | ocefpaf/conda-smithy-feedstock |
8ed50cea15f035b412f7393f5f9dc8517e65b1f4 | .readthedocs.yml | .readthedocs.yml | # .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py
# Build documentation with MkDocs
#mkdocs:
# c... | # .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
builder: html
configuration: docs/source/conf.py
# Build documentation with MkDocs
#mkdocs:
# c... | Use the stable build image | Use the stable build image
| YAML | apache-2.0 | bird-house/flyingpigeon |
1f886fc4da1562a1624c31f8a62fbf459180799b | .readthedocs.yml | .readthedocs.yml | version: 2
conda:
environment: environment_docs.yml | version: 2
build:
os: ubuntu-20.04
tools:
python: mambaforge-4.10
conda:
environment: environment_docs.yml
| Update Read the Docs configuration (automatic) | Update Read the Docs configuration (automatic)
The following migrators were applied:
- Migrate to `build.tools` configuration.
This uses the new base Docker image based on Ubuntu 20.04 introduced in October 2021
and picks an appropriate Python version for your project
(read [our blog post](https://blog.readthedocs.c... | YAML | mit | PyPSA/PyPSA |
31afeab5bbe9f8592dde4005cc1daabe91254582 | .scrutinizer.yml | .scrutinizer.yml | checks:
php:
code_rating: true
filter:
excluded_paths:
- tests/*
- vendor/*
build:
environment:
php: '7.3'
dependencies:
before:
- composer install
- mkdir -p build/logs
tests:
override:
-
command: 'vendor/bin/phpunit --coverage-clover build/logs/clover.x... | checks:
php:
code_rating: true
filter:
excluded_paths:
- tests/*
- vendor/*
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run
environment:
php: '7.3'
dependencies:
before:
- composer install
- mkdir -p build/logs
tests:
overr... | Upgrade to new PHP Analysis | Upgrade to new PHP Analysis
See: https://scrutinizer-ci.com/docs/tools/php/php-analyzer/guides/migrate_to_new_php_analysis
| YAML | mit | lampager/lampager |
64233b63b03aa0f182f41e1a54820d51d43b7565 | .scrutinizer.yml | .scrutinizer.yml | filter:
excluded_paths:
- doc/*
- vendor/*
- example/*
checks:
php:
duplication: false | filter:
excluded_paths:
- doc/*
- vendor/*
- example/*
- tests/Parser/Php/ParserTest/*
- tests/Parser/Php/PreprocessorTest/*
checks:
php:
duplication: false | Exclude intentionally bad test input from Scrutinizer. | Exclude intentionally bad test input from Scrutinizer. | YAML | mit | vanderlee/PHPSwaggerGen,vanderlee/PHPSwaggerGen,vanderlee/PHPSwaggerGen |
7f40173c91cd1b1344707f5a547761f335320e9b | .scrutinizer.yml | .scrutinizer.yml | filter:
excluded_paths:
- 'tests/'
- 'vendor/'
tools:
external_code_coverage: true
build:
nodes:
analysis:
project_setup:
override: true
tests:
override:
- php-scrutinizer-run --enable-security-analysis
| filter:
excluded_paths:
- 'tests/'
- 'vendor/'
tools:
external_code_coverage: true
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run --enable-security-analysis
| Remove innocuous project setup override | Remove innocuous project setup override
| YAML | mit | eclipxe13/CfdiUtils,eclipxe13/CfdiUtils |
c0b7ff3d836cc4298579c388cfb136d11d84d164 | environment.yml | environment.yml | name: typhon
dependencies:
- python>=3.5.1
- matplotlib>=1.4
- netCDF4>=1.1.1
- nose>=1.3.0
- numexpr
- numpy>=1.6
- scikit-learn
- scipy>=0.15.1
- setuptools>=0.7.2
- xarray
- numba
| name: typhon
dependencies:
- python>=3.5.1
- matplotlib>=1.4
- netCDF4>=1.1.1
- nose>=1.3.0
- numexpr
- numpy>=1.13
- scikit-learn
- scipy>=0.15.1
- setuptools>=0.7.2
- xarray>=0.10.2
- numba
| Add necessary version for xarray dependency | Add necessary version for xarray dependency
Since commit c6ea042 (merged in #143), UnitsAwareDataArray depends on
xarray.DataArray.__array_ufunc__ (which in turn depends on numpy 1.13 or
newer). This was merged into xarray in
https://github.com/pydata/xarray/pull/1962 and added to release 0.10.2.
The old UnitsAwareDa... | YAML | mit | atmtools/typhon,atmtools/typhon |
56bc814a53d4e29dfda1287c5b1598d72b91d845 | prow/monitoring/grafana_configmaps.yaml | prow/monitoring/grafana_configmaps.yaml | ---
apiVersion: v1
kind: ConfigMap
metadata:
namespace: prow-monitoring
name: grafana-datasources
data:
datasources.yaml: |
---
apiVersion: 1
datasources:
- name: prometheus
type: prometheus
access: proxy
url: http://prometheus.prow-monitoring.svc:9090
version: 1
... | ---
apiVersion: v1
kind: ConfigMap
metadata:
namespace: prow-monitoring
name: grafana-datasources
data:
datasources.yaml: |
---
apiVersion: 1
datasources:
- name: prometheus
type: prometheus
access: proxy
url: http://prometheus.prow-monitoring.svc:9090
version: 1
... | Add configMap grafana-dashboards in prow-monitoring | Add configMap grafana-dashboards in prow-monitoring
| YAML | apache-2.0 | BenTheElder/test-infra,pwittrock/test-infra,cblecker/test-infra,cblecker/test-infra,monopole/test-infra,brahmaroutu/test-infra,monopole/test-infra,BenTheElder/test-infra,jessfraz/test-infra,pwittrock/test-infra,brahmaroutu/test-infra,michelle192837/test-infra,cjwagner/test-infra,fejta/test-infra,krzyzacy/test-infra,pwi... |
b32d51f8bbdd7a8ee2434108b7fdfef50913e6bd | metadata/de.tcrass.minos.yml | metadata/de.tcrass.minos.yml | Categories:
- Games
License: GPL-3.0-or-later
AuthorName: Torsten Crass
SourceCode: https://gitlab.com/tcrass/minos
IssueTracker: https://gitlab.com/tcrass/minos/issues
RepoType: git
Repo: https://gitlab.com/tcrass/minos.git
Builds:
- versionName: 1.0.3
versionCode: 4099
commit: v1.0.3
subdir: app
... | Categories:
- Games
License: GPL-3.0-or-later
AuthorName: Torsten Crass
SourceCode: https://gitlab.com/tcrass/minos
IssueTracker: https://gitlab.com/tcrass/minos/issues
AutoName: Minos
RepoType: git
Repo: https://gitlab.com/tcrass/minos.git
Builds:
- versionName: 1.0.3
versionCode: 4099
commit: v1.0.3
... | Update Minos to 1.0.4 (10004) | Update Minos to 1.0.4 (10004)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
d3a1f810a213da63bc78ec9c8a4107918bc1cda5 | tasks/run-cats.yml | tasks/run-cats.yml | ---
platform: linux
image_resource: { type: docker-image, source: { repository: flintstonecf/ci } }
inputs:
- name: ci-tasks
- name: acceptance-tests
- name: deployment-vars
outputs:
params:
BOSH_TARGET:
DEPLOYMENT_NAME:
ENVIRONMENT_NAME:
CF_DOMAIN: bosh-lite.com
CF_DIAL_TIMEOUT: 300
NODES: 5
run:
pa... | ---
platform: linux
image_resource: { type: docker-image, source: { repository: flintstonecf/ci } }
inputs:
- name: ci-tasks
- name: acceptance-tests
- name: deployment-vars
outputs:
params:
BOSH_TARGET:
DEPLOYMENT_NAME:
ENVIRONMENT_NAME:
CF_DOMAIN: bosh-lite.com
CF_DIAL_TIMEOUT: 300
NODES: 12
run:
p... | Change num nodes to 12 to have same setup as RelInt Team | Change num nodes to 12 to have same setup as RelInt Team
| YAML | apache-2.0 | cloudfoundry-incubator/bits-service-ci,cloudfoundry-incubator/bits-service-ci,cloudfoundry-incubator/bits-service-ci |
62a60fb4b480cc711a5e7054ec7c621895cc36f3 | manifest.yml | manifest.yml | ---
applications:
- name: sample-java-helloworld
random-route: true
memory: 512M
path: target/JavaHelloWorldApp.war
| ---
applications:
- name: sample-java-helloworld
random-route: true
memory: 256M
path: target/JavaHelloWorldApp.war
| Reduce the amount of memory used | Reduce the amount of memory used
| YAML | apache-2.0 | IBM-Bluemix/java-helloworld,IBM-Bluemix/java-helloworld,IBM-Bluemix/java-helloworld |
aee44d669b351e9bf8a20c6f89a1c47c20790179 | appveyor.yml | appveyor.yml | version: 1.0.{build}
image: Windows Server 2016
environment:
DOCKER_USER:
secure: LjNiW/ZWrfVIJn3Mc9foeg==
DOCKER_PASS:
secure: 4gsl5WiqIztEWhL5fuhp9X0qT/mKg9fYzKYUUPf5WStIuNddv0fvIKGmvvyuFzzd
install:
- docker version
build_script:
- ps: .\build.ps1
test_script:
- ps: .\test.ps1
deploy_script:
... | version: 1.0.{build}
image: Visual Studio 2017
environment:
DOCKER_USER:
secure: LjNiW/ZWrfVIJn3Mc9foeg==
DOCKER_PASS:
secure: 4gsl5WiqIztEWhL5fuhp9X0qT/mKg9fYzKYUUPf5WStIuNddv0fvIKGmvvyuFzzd
install:
- docker version
build_script:
- ps: .\build.ps1
test_script:
- ps: .\test.ps1
deploy_script:
-... | Use official AppVeyor builder w/ Docker | Use official AppVeyor builder w/ Docker
| YAML | apache-2.0 | StefanScherer/winspector,StefanScherer/winspector |
d6045d2b21cc7e2b9b635c3de3cabdb7b910cf23 | appveyor.yml | appveyor.yml | version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- ci-debug
- master
clone_depth: 1
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
init:
... | version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- ci-debug
- master
clone_depth: 1
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
init:
... | Consolidate RDP access scripts. RDP access to build worker now only on ci-debug branch. | Consolidate RDP access scripts. RDP access to build worker now only on ci-debug branch.
| YAML | mit | Aqovia/Aqovia.SagaMachine |
f3f54a326bda7cf44e73f61f2b5b3312d569990c | appveyor.yml | appveyor.yml | os: Visual Studio 2015
platform: x64
environment:
NODE_ENV: development
matrix:
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "5"
install:
- ps: Install-Product node $env:nodejs_version
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.... | os: Visual Studio 2015
platform: x64
environment:
NODE_ENV: development
matrix:
- nodejs_version: "0.12"
- nodejs_version: "4"
- nodejs_version: "5"
install:
- ps: Install-Product node $env:nodejs_version x64
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debuggin... | Set to install x64 node version | chore: Set to install x64 node version
| YAML | mit | cartridge/cartridge-images |
7725403a7589ba7d34d143ca8ac3fc30e2a95d14 | appveyor.yml | appveyor.yml | version: 1.0.{build}
branches:
only:
# TODO: Put master here too.
- staging_master
image: Visual Studio 2015
clone_depth: 15
install:
- .\Configure_MSVC.bat
# - cd build-msvc
build:
parallel: true
project: build-msvc\BitFunnel_CMake.sln
test_script:
- cd build-msvc
- ctest -C Debug
# TODO:... | version: 1.0.{build}
branches:
only:
- master
- staging_master
image: Visual Studio 2015
clone_depth: 15
install:
- .\Configure_MSVC.bat
# - cd build-msvc
build:
parallel: true
project: build-msvc\BitFunnel_CMake.sln
test_script:
- cd build-msvc
- ctest -C Debug
# TODO: Add Release tests h... | Add `master` to the Appveyor build. | Add `master` to the Appveyor build.
| YAML | mit | danluu/BitFunnel,BitFunnel/BitFunnel,danluu/BitFunnel,danluu/BitFunnel,danluu/BitFunnel,BitFunnel/BitFunnel,BitFunnel/BitFunnel,danluu/BitFunnel,danluu/BitFunnel,BitFunnel/BitFunnel,BitFunnel/BitFunnel,BitFunnel/BitFunnel |
ce02763b8cefa25d9fe99068ffb3c04b901d590c | appveyor.yml | appveyor.yml | install:
- choco install gitversion.portable -pre -y
assembly_info:
patch: false
before_build:
- nuget restore
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
- ps: ./build/UpdateAssemblyInfo.ps1
build:
project: SimpleParameterValidation.sln
after_build:
- cmd: dotnet pack ./src/Si... | install:
- choco install gitversion.portable -pre -y
assembly_info:
patch: false
before_build:
- cmd: dotnet restore
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
- ps: ./build/UpdateAssemblyInfo.ps1
build:
project: SimpleParameterValidation.sln
after_build:
- cmd: dotnet pack ./... | Use dotnet restore instead of nuget restore | Use dotnet restore instead of nuget restore
| YAML | mit | dibble-james/Simple-Parameter-Validation |
2c350b2fea29ee5fe18243ff84040a755a9de508 | appveyor.yml | appveyor.yml | version: "{build}"
clone_depth: 5
branches:
only:
- master
build: off
environment:
matrix:
- RUBY_FOLDER_VER: "25-x64"
- RUBY_FOLDER_VER: "25"
- RUBY_FOLDER_VER: "24"
- RUBY_FOLDER_VER: "23"
install:
- SET PATH=C:\Ruby%RUBY_FOLDER_VER%\bin;%PATH%
- bundle install --retry 5 --jobs=%NUMBER_... | version: "{build}"
clone_depth: 5
branches:
only:
- master
build: off
environment:
matrix:
- RUBY_FOLDER_VER: "25-x64"
- RUBY_FOLDER_VER: "25"
- RUBY_FOLDER_VER: "24"
- RUBY_FOLDER_VER: "23"
install:
- SET PATH=C:\Ruby%RUBY_FOLDER_VER%\bin;%PATH%
- bundle install --retry 5 --jobs=%NUMBER_... | Disable RuboCop check on AppVeyor | Disable RuboCop check on AppVeyor
| YAML | mit | jekyll/github-metadata,jekyll/github-metadata,jekyll/github-metadata,jekyll/github-metadata |
7fdd123090bda7a7556a6ce13079b4dd53796e8e | appveyor.yml | appveyor.yml | version: 1.0.{build}
os: Visual Studio 2015 CTP 6
init:
- git config --global core.autocrlf true
install:
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
before_build:
- nuget restore
build:
verbosity: minimal
| version: 1.0.{build}
os: Visual Studio 2015 RC
init:
- git config --global core.autocrlf true
install:
- set PATH=C:\Program Files (x86)\MSBuild\14.0\Bin;%PATH%
before_build:
- nuget restore
build:
verbosity: minimal
| Update the automated build to use Visual Studio 2015 RC | Update the automated build to use Visual Studio 2015 RC
| YAML | mit | DotNetAnalyzers/StyleCopAnalyzers |
2e4228f381c0fe5231169e96282a3f1011877f1f | appveyor.yml | appveyor.yml | version: 1.0.{build}
image: Visual Studio 2017
init:
- cmd: git config --global core.autocrlf true
clone_folder: c:\sireum-v3
before_build:
- cmd: git config core.symlinks true
- cmd: git reset --hard
- cmd: git submodule update -q --init --recursive
environment:
matrix:
- COMPILER: msys2
PLATFORM:... | version: 1.0.{build}
image: Visual Studio 2017
init:
- cmd: git config --global core.autocrlf true
clone_folder: c:\sireum-v3
before_build:
- cmd: git config core.symlinks true
- cmd: git reset --hard
- cmd: git submodule update -q --init --recursive
environment:
matrix:
- COMPILER: msys2
PLATFORM:... | Reduce cached directories. [skip travis] [skip shippable] | Reduce cached directories. [skip travis] [skip shippable]
| YAML | bsd-2-clause | sireum/v3,sireum/v3,sireum/v3,sireum/v3 |
19ee8b243729c109f3c2262d196b03c53d63975f | appveyor.yml | appveyor.yml | version: "{build}"
os:
- Visual Studio 2015
environment:
matrix:
- GENERATOR: Visual Studio 14 2015 # use mscv compiler in 32-bit mode
- GENERATOR: Visual Studio 14 2015 Win64 # use mscv compiler in 64-bit mode
clone_depth: 10
clone_folder: c:\Chemharp
build:
verbosity: minimal
no... | version: "{build}"
os:
- Visual Studio 2015
environment:
matrix:
- GENERATOR: Visual Studio 14 2015 # use mscv compiler in 32-bit mode
- GENERATOR: Visual Studio 14 2015 Win64 # use mscv compiler in 64-bit mode
clone_depth: 10
clone_folder: c:\Chemharp
build:
verbosity: quiet
noti... | Use quiet verbosity on Appveyor | Use quiet verbosity on Appveyor
| YAML | bsd-3-clause | Luthaf/Chemharp,lscalfi/chemfiles,Luthaf/Chemharp,chemfiles/chemfiles,lscalfi/chemfiles,chemfiles/chemfiles,chemfiles/chemfiles,lscalfi/chemfiles,lscalfi/chemfiles,chemfiles/chemfiles,Luthaf/Chemharp |
a5efa0fbea85105de21a409b888384d29610e872 | metallus.yml | metallus.yml | software_groups: &software
- "base"
jobs:
solr:
builder: "make"
base: "ubuntu:12.04"
software_groups: *software
image: "solr/solr"
packages:
- type: debian
name: solr-common
version: 4.0.1
depends:
- openjdk-7-jre-headless
- runit
- run... | software_groups: &software
- "base"
jobs:
solr:
builder: "make"
base: "ubuntu:12.04"
software_groups: *software
packages:
- type: debian
name: solr-common
version: 4.0.1
depends:
- openjdk-7-jre-headless
- runit
- runit-logging
targ... | Revert "Explicit image name as dashes aren't allowed" | Revert "Explicit image name as dashes aren't allowed"
This reverts commit dc0aa21ad53f7812cfe04b57e9a9b027e7c8c857.
| YAML | bsd-3-clause | madebymany/solr-package |
5f2d85d046edcb0d339f32c0989f29fdb76c2c5b | appveyor.yml | appveyor.yml | os: Visual Studio 2015
init:
- git config --global core.autocrlf input
build_script:
- cmd: >-
msbuild build.proj /t:configure /p:target=configure /v:quiet &&
msbuild build.proj /t:build /v:diag &&
msbuild build.proj /t:unittest,package /v:minimal
# we run the tests ourselves
test: off
deploy:... | os: Visual Studio 2015
init:
- git config --global core.autocrlf input
build_script:
- cmd: >-
msbuild build.proj /t:configure /p:target=configure /v:quiet &&
msbuild build.proj /t:build /v:normal &&
msbuild build.proj /t:unittest,package /v:minimal
# we run the tests ourselves
test: off
deplo... | Reduce logging verbosity for build step | Reduce logging verbosity for build step
| YAML | mit | kzu/clide,tondat/clide,kzu/clide,kzu/clide,tondat/clide,tondat/clide,clariuslabs/clide,clariuslabs/clide,clariuslabs/clide |
c88ab7bf19aa9b3e165b0d1faf6c0b20a6d7f62c | appveyor.yml | appveyor.yml | branches:
except:
- gh-pages
platform:
- x64
environment:
RUST_INSTALL_DIR: C:\Rust
matrix:
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: stable
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: beta
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: ni... | branches:
except:
- gh-pages
platform:
- x64
environment:
RUST_INSTALL_DIR: C:\Rust
matrix:
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: 1.1.0
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: beta
- RUST_INSTALL_TRIPLE: i686-pc-windows-gnu
RUST_VERSION: nig... | Fix current `stable` channel config for AppVeyor | Fix current `stable` channel config for AppVeyor
| YAML | mit | chip8-rust/chip8-vm,chip8-rust/chip8-vm |
4fb621aec2a381da6952338028386487a0bdfd18 | appveyor.yml | appveyor.yml | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "5"
# Install scripts. (runs aft... | # http://www.appveyor.com/docs/appveyor-yml
clone_depth: 10
# Fix line endings in Windows. (runs before repo cloning)
init:
- git config --global core.autocrlf input
# Test against these versions of Node.js.
environment:
matrix:
- nodejs_version: "0.12"
- nodejs_version: "6"
# Install scripts. (runs aft... | Switch Node 5 testing to Node 6 | AppVeyor: Switch Node 5 testing to Node 6
| YAML | mit | EE/grunth-cli |
5f6556b0a388cf2c22626554d5b3552d6a6db30b | appveyor.yml | appveyor.yml | version: '{build}'
skip_tags: true
environment:
matrix:
- ruby_version: "21"
- ruby_version: "21-x64"
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- gem install bundler --no-document --conservative --version 1.10.5
- bundle install --retry=3
test_script:
- bundle exec rake
build: off
| version: '{build}'
skip_tags: true
environment:
matrix:
- ruby_version: "23"
- ruby_version: "23-x64"
install:
- SET PATH=C:\Ruby%ruby_version%\bin;%PATH%
- gem install bundler --no-document --conservative --version 1.10.5
- bundle install --retry=3
test_script:
- bundle exec rake
build: off
| Upgrade Windows build to Ruby 2.3 | Upgrade Windows build to Ruby 2.3
This fixes a problem where net-ssh 4.0.0 was breaking the build due to
an incompatibility with Ruby 2.1 on Windows.
| YAML | mit | mattbrictson/airbrussh,mattbrictson/airbrussh |
75e63628e5c1a84ea4d331aa9598bf2361e3a5a1 | appveyor.yml | appveyor.yml | version: "{build}"
init:
- git config --global core.autocrlf input
environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.12
- nodejs_version: 4
- nodejs_version: 6
install:
- ps: Install-Product node $env:nodejs_version
- npm install
build: off
test_script:
- node --version
- npm -... | version: "{build}"
init:
- git config --global core.autocrlf input
environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.12
- nodejs_version: 4
- nodejs_version: 6
install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm@latest
- npm install
build: off
test_script... | Use npm@latest to avoid EPERM | Use npm@latest to avoid EPERM
| YAML | mit | timdp/winston-aws-cloudwatch |
6effe203a15fe11c42445ff3d26a0cd1166a8bc9 | appveyor.yml | appveyor.yml | image: Visual Studio 2017
install:
- choco install gitversion.portable -y
before_build:
- gitversion /l console /output buildserver /updateassemblyinfo
configuration: Release
build_script:
- dotnet build
- dotnet pack -c Release -o %APPVEYOR_BUILD_FOLDER%\nugets NetworkedPlanet.Quince /p:Version=%GitVersion... | image: Visual Studio 2017
install:
- choco install gitversion.portable -y
before_build:
- gitversion /l console /output buildserver /updateassemblyinfo
configuration: Release
build_script:
- dotnet build
- dotnet pack -c Release -o %APPVEYOR_BUILD_FOLDER%\nugets NetworkedPlanet.Quince /p:Version=%GitVersion... | Update GitHub and NuGet keys | Update GitHub and NuGet keys
| YAML | mit | NetworkedPlanet/quince |
756b6a732b0e70d327a7ffaeb0145ba0ca2a3970 | appveyor.yml | appveyor.yml | environment:
nodejs_version: "6"
AWS_ACCESS_KEY_ID:
secure: GTugF8P8oc1I2PfKlS4IbsawsWycsenxVFm2uiKgX0
AWS_SECRET_ACCESS_KEY:
secure: gr9U/yPc+a5kW3LRTtQnygY0EhPODJwF1H5M4EQ2x2qms/kpb5qHKp37uNv6FrMX
before_build:
- ps: Install-Product node $env:nodejs_version
- ps: Install-Module -Name powershell-yam... | environment:
nodejs_version: "6"
AWS_ACCESS_KEY_ID:
secure: GTugF8P8oc1I2PfKlS4IbsawsWycsenxVFm2uiKgX0
AWS_SECRET_ACCESS_KEY:
secure: gr9U/yPc+a5kW3LRTtQnygY0EhPODJwF1H5M4EQ2x2qms/kpb5qHKp37uNv6FrMX
before_build:
- ps: Install-Product node $env:nodejs_version
- ps: Install-Module -Name powershell-yam... | Install serverless globally and exit on psake failure | Install serverless globally and exit on psake failure
| YAML | apache-2.0 | Sam-Martin/Ephemera,Sam-Martin/Ephemera |
e1a09c71a5531019af6dfedd56bd4182e0e788bb | appveyor.yml | appveyor.yml | os: Visual Studio 2015
before_build:
- nuget restore
build:
project: src\Renci.SshNet.VS2015.sln
verbosity: minimal
| os: Visual Studio 2015
before_build:
- nuget restore
build:
project: src\Renci.SshNet.VS2015.sln
verbosity: minimal
test:
assemblies: src\Renci.SshNet.Tests\bin\Debug\Renci.SshNet.Tests.dll
categories:
except:
- integration | Exclude integration tests, and only run tests for Renci.SshNet.Tests assembly. | Exclude integration tests, and only run tests for Renci.SshNet.Tests assembly.
| YAML | mit | miniter/SSH.NET,Bloomcredit/SSH.NET,sshnet/SSH.NET |
b408fc95ab202db86153390d16e9ae31cbbeb2a7 | appveyor.yml | appveyor.yml | platform:
- x64
cache:
# - node_modules
# - '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron'
init:
- git config --global core.autocrlf input
install:
- ps: Install-Product node 8 x64
- git reset --hard HEAD
- npm install npm -g
- npm install --silent
- npm run lint
test_script:
- node --versi... | platform:
- x64
cache:
# - node_modules
- '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron'
init:
- git config --global core.autocrlf input
install:
- ps: Install-Product node 8 x64
- git reset --hard HEAD
- npm install npm -g
- npm install --silent
- npm run lint
test_script:
- node --version... | Fix windows build and add npm_cache to cache | Fix windows build and add npm_cache to cache
| YAML | mit | poooi/poi,poooi/poi,PHELiOX/poi,yudachi/poi,yudachi/poi,syncsyncsynchalt/poi,syncsyncsynchalt/poi,gnattu/poi,syncsyncsynchalt/poi,poooi/poi,poooi/poi,syncsyncsynchalt/poi,gnattu/poi,yudachi/poi,PHELiOX/poi |
b9fc9de82ef3e3b6bc2c9a243f266d4670be37cd | appveyor.yml | appveyor.yml | version: '{build}'
skip_tags: true
clone_depth: 10
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile('https://repo1.mav... | version: '{build}'
skip_tags: true
clone_depth: 10
environment:
matrix:
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0
install:
- ps: |
Add-Type -AssemblyName System.IO.Compression.FileSystem
if (!(Test-Path -Path "C:\maven" )) {
(new-object System.Net.WebClient).DownloadFile('https://repo1.mav... | Add env to fix build. | [NO-JIRA] Add env to fix build.
| YAML | mit | yildiz-online/module-graphic-ogre,yildiz-online/module-graphic-ogre,yildiz-online/module-graphic-ogre |
42ab46d7c16d8ba1a34259a24971a8dec5a575d9 | appveyor.yml | appveyor.yml | version: 1.0.{build}
branches:
only:
- master
- staging_master
image: Visual Studio 2015
clone_depth: 1
install:
- .\Configure_MSVC.bat
# - cd build-msvc
build:
parallel: true
project: build-msvc\NativeJIT.sln
test_script:
- cd build-msvc
- ctest -C Debug --verbose
# TODO: Add Release test... | version: 1.0.{build}
branches:
only:
- master
- staging_master
image: Visual Studio 2017
clone_depth: 1
install:
- .\Configure_MSVC.bat
# - cd build-msvc
build:
parallel: true
project: build-msvc\NativeJIT.sln
test_script:
- cd build-msvc
- ctest -C Debug --verbose
# TODO: Add Release test... | Make Appveyor use more MSVC 2017 | Make Appveyor use more MSVC 2017
| YAML | mit | BitFunnel/NativeJIT,BitFunnel/NativeJIT,BitFunnel/NativeJIT,BitFunnel/NativeJIT,BitFunnel/NativeJIT |
5695ce1b07a4294a599bd913afa607e5259d8058 | locale/flarum-statistics.yml | locale/flarum-statistics.yml | flarum-statistics:
##
# UNIQUE KEYS - The following keys are used in only one location each.
##
# Translations in this namespace are used by the admin interface.
admin:
# These translations are used in the Statistics dashboard widget.
statistics:
discussions_heading: => core.ref.discussions
... | flarum-statistics:
##
# UNIQUE KEYS - The following keys are used in only one location each.
##
# Translations in this namespace are used by the admin interface.
admin:
# These translations are used in the Statistics dashboard widget.
statistics:
active_users_text: "{count} active"
disc... | Add translation for statistics active users count | Add translation for statistics active users count
| YAML | mit | FlarumChina/flarum-ext-simplified-chinese-pro,FlarumChina/flarum-ext-simplified-chinese-pro,flarum/flarum-ext-english,ogioncz/flarum-ext-czech,ogioncz/flarum-ext-czech,flarum/english |
87d4865bcf547427ce62394b83210d1773c19388 | appveyor.yml | appveyor.yml | install:
- choco install gitversion.portable -version 3.0.0-beta0004 -pre -y
nuget:
account_feed: true
before_build:
- nuget restore
- ps: gitversion /l console /output buildserver /updateAssemblyInfo
configuration: Release
build:
project: LazyStorage.sln
verbosity: minimal
after_build:
- cmd: nuget ... | nuget:
account_feed: true
before_build:
- nuget restore
configuration: Release
build:
project: LazyStorage.sln
verbosity: minimal
after_build:
- cmd: nuget pack LazyStorage\LazyStorage.csproj -version "%GitVersion_NuGetVersion%" -prop "target=Release"
- cmd: appveyor PushArtifact "LazyStorage.%GitVersio... | Remove old chocolatey build steps | Remove old chocolatey build steps
| YAML | mit | TheEadie/LazyStorage,TheEadie/LazyLibrary,TheEadie/LazyStorage |
de063fecc44e67a7d0da2781f968c5aa15194ae5 | appveyor.yml | appveyor.yml | deploy:
provider: NuGet
api_key:
secure: XGXP+Bw7tamVD5tIUqjlvfuNFRsk5U/hwcnR9dEwgNkFqI/Zwp8QydqJxqDpy5Tr
skip_symbols: true
artifact: /.*\.nupkg/
| version: 1.0.{build}
configuration: Release
build:
publish_nuget: true
verbosity: minimal
deploy:
- provider: NuGet
api_key:
secure: XGXP+Bw7tamVD5tIUqjlvfuNFRsk5U/hwcnR9dEwgNkFqI/Zwp8QydqJxqDpy5Tr
skip_symbols: true
| Put all build settings in config file | Put all build settings in config file
| YAML | mit | SteveVaneeckhout/AuthorizedTester |
8af058c692e3094d34d1e1d75c09af57700cc41d | appveyor.yml | appveyor.yml | platform:
- x86
environment:
CYG_ROOT: "C:\\cygwin"
CYG_BASH: "%CYG_ROOT%\\bin\\bash -lc"
CYGWIN: "winsymlinks:native"
CUSTOM_OPAM: "1"
OPAM_COMP: "4.03.0+mingw64c"
install:
- cmd: git config core.symlinks true
- cmd: git reset --hard
- "%CYG_ROOT%\\setup-x86.exe -qnNdO -R %CYG_ROOT% -s http://cygwi... | platform:
- x86
environment:
CYG_ROOT: "C:\\cygwin"
CYG_BASH: "%CYG_ROOT%\\bin\\bash -lc"
CYGWIN: "winsymlinks:native"
CUSTOM_OPAM: "1"
OPAM_COMP: "4.03.0+mingw64c"
install:
- cmd: git config core.symlinks true
- cmd: git reset --hard
- "%CYG_ROOT%\\setup-x86.exe -qnNdO -R %CYG_ROOT% -s http://cygwi... | Remove unzip from installed cygwin packages to try to fix build | Appveyor: Remove unzip from installed cygwin packages to try to fix build
Signed-off-by: Magnus Skjegstad <9f4ca770b638615ac5c3e0d2da16b77c80c2f2c6@skjegstad.com>
| YAML | apache-2.0 | djs55/vpnkit,djs55/vpnkit,djs55/vpnkit |
92f5c39d2043294b48a7d1c2e142a153c673bf28 | appveyor.yml | appveyor.yml | environment:
matrix:
- nodejs_version: 4
- nodejs_version: 6
- nodejs_version: 7
- nodejs_version: 8
install:
- ps: Install-Product node $env:nodejs_version
- npm -g install npm@3 && set PATH=%APPDATA%\npm;%PATH%
- npm install
test_script:
- node --version
- npm --version
- npm run depcheck
- ... | environment:
matrix:
- nodejs_version: 4
- nodejs_version: 6
- nodejs_version: 8
install:
- ps: Install-Product node $env:nodejs_version
- npm -g install npm@3 && set PATH=%APPDATA%\npm;%PATH%
- npm install
test_script:
- node --version
- npm --version
- npm run depcheck
- npm run depcheck-json
... | Drop node version 7 from AppVeryor CI. | Drop node version 7 from AppVeryor CI. | YAML | mit | depcheck/depcheck,depcheck/depcheck |
fd58fd57e5ed46dd452ce3396e1427a960e89e4b | appveyor.yml | appveyor.yml | #
# Configuration for the Appveyor continuous integration system.
#
# === Test Matrix ===
platform:
- x86
- x64
configuration: Release
# === Build Steps ===
build_script:
- ps: .\appveyor-build.ps1
| #
# Configuration for the Appveyor continuous integration system.
#
# === Test Matrix ===
# Appveyor only has 64-bit Window OS at the time of writing.
#
# NOTE: Adding an x86 line here does NOT actually use 32-bit Windows.
# Instead it configures MSBuild to target 32-bit Windows,
# which doesn't apply ... | Clarify that Appveyor on 32-bit Windows does not work. | Clarify that Appveyor on 32-bit Windows does not work.
| YAML | bsd-3-clause | liangsun/discount,liangsun/discount,liangsun/rdiscount,liangsun/rdiscount,liangsun/rdiscount,liangsun/discount,liangsun/discount,liangsun/rdiscount,liangsun/discount |
27393518f353888a8c5f20cc61cb7c59ae0cc1a7 | appveyor.yml | appveyor.yml | platform:
- x86
environment:
matrix:
- RUST_VERSION: stable
VENDOR: gnu
- RUST_VERSION: beta
VENDOR: gnu
install:
- ps: |
if ($env:PLATFORM -eq "x86") {
$arch = "i686"
}
else {
$arch = "x86_64"
}
if ($env:RUST_VERSION -eq "stable") {
... | platform:
- x86
install:
# Installing Rust distribution
- choco install --yes --x86 --version=1.8 rust
- SET PATH=%PATH%;C:\Program Files (x86)\Rust stable GNU 1.8\bin
- rustc -V
- cargo -V
build: false
test_script:
- cargo build --verbose
- cargo test --verbose
| Make AppVeyor install Rust distrib using Chocolatey | Make AppVeyor install Rust distrib using Chocolatey
| YAML | mpl-2.0 | apoloval/flightvars |
7e5a97549728661e8363ea2aa90a64de660f0d22 | appveyor.yml | appveyor.yml | version: '{build}'
pull_requests:
do_not_increment_build_number: true
environment:
PATH: 'C:\Ruby200\bin;%PATH%'
BUILD: $(APPVEYOR_BUILD_NUMBER)
install:
- cmd: bundle install
build_script:
- cmd: build.cmd
- cmd: build.netstd.cmd
nuget:
disable_publish_on_pr: true
tes... | version: '{build}'
pull_requests:
do_not_increment_build_number: true
environment:
PATH: 'C:\Ruby200\bin;%PATH%'
BUILD: $(APPVEYOR_BUILD_NUMBER)
install:
- cmd: bundle install
build_script:
- cmd: build.cmd
nuget:
disable_publish_on_pr: true
test: off
artifacts:
- p... | Update AppVeyor to run just build.cmd | Update AppVeyor to run just build.cmd
| YAML | mit | thomaslevesque/FakeItEasy,blairconrad/FakeItEasy,blairconrad/FakeItEasy,FakeItEasy/FakeItEasy,thomaslevesque/FakeItEasy,FakeItEasy/FakeItEasy,adamralph/FakeItEasy,adamralph/FakeItEasy |
ad1ba49b916d7ab67a7d73cbdb28dc9127f4e2b3 | appveyor.yml | appveyor.yml | version: "{build}"
os: Windows Server 2012 R2
test: off
deploy: off
init:
- cmd: rd /s /q %CHOCOLATEYINSTALL%
- ps: iex ((New-Object Net.WebClient).DownloadString("https://chocolatey.org/install.ps1"))
install:
- cinst atom
- cd %APPVEYOR_BUILD_FOLDER%
- apm install
# -------
- cinst 7zip.commandline
... | version: "{build}"
os: Windows Server 2012 R2
test: off
deploy: off
init:
- cmd: rd /s /q %CHOCOLATEYINSTALL%
- ps: iex ((New-Object Net.WebClient).DownloadString("https://chocolatey.org/install.ps1"))
install:
- cinst atom
- cd %APPVEYOR_BUILD_FOLDER%
- apm install
# -------
- cinst 7zip.commandline
... | Set %Path% variable in Windows CI environment | Set %Path% variable in Windows CI environment
| YAML | mit | WoodyWoodsta/atom-latex,thomasjo/atom-latex,thomasjo/atom-latex,thomasjo/atom-latex,WoodyWoodsta/atom-latex |
99a7de3f79ee9bfc32740b5abc0d558e1b3bf044 | prow/prowjobs/GoogleCloudPlatform/testgrid/testgrid-images.yaml | prow/prowjobs/GoogleCloudPlatform/testgrid/testgrid-images.yaml | presubmits:
GoogleCloudPlatform/testgrid:
- name: test-testgrid-all
branches:
- ^master$
decorate: true
always_run: true
spec:
containers:
- image: launcher.gcr.io/google/bazel:0.29.1
command:
- bazel
args:
- test
- //...
| presubmits:
GoogleCloudPlatform/testgrid:
- name: test-testgrid-all
branches:
- ^master$
decorate: true
always_run: true
spec:
containers:
- image: launcher.gcr.io/google/bazel:2.0.0
command:
- bazel
args:
- test
- //...
| Use bazel 2.0.0 in testgrid | Use bazel 2.0.0 in testgrid
| YAML | apache-2.0 | GoogleCloudPlatform/oss-test-infra,GoogleCloudPlatform/oss-test-infra |
09eaa01d1c1b27122bd75905d985a4b5d1fbd00a | appveyor.yml | appveyor.yml | build: false
shallow_clone: true
platform:
- x64
environment:
PHP_CACHE_DIR: C:\tools\php
PHP_ZIP: php-7.1.2-nts-Win32-VC14-x64.zip
cache:
- '%PHP_CACHE_DIR% -> appveyor.yml'
init:
- SET PATH=%PHP_CACHE_DIR%;%PATH%
- SET COMPOSER_NO_INTERACTION=1
- SET PHP=0
install:
- IF EXIST %PHP_CACHE_DI... | build: false
shallow_clone: true
platform:
- x64
environment:
PHP_CACHE_DIR: C:\tools\php
PHP_ZIP: php-7.1.7-nts-Win32-VC14-x64.zip
cache:
- '%PHP_CACHE_DIR% -> appveyor.yml'
init:
- SET PATH=%PHP_CACHE_DIR%;%PATH%
- SET COMPOSER_NO_INTERACTION=1
- SET PHP=0
install:
- IF EXIST %PHP_CACHE_DI... | Update php and use approved composer package | Update php and use approved composer package
| YAML | mit | johnstevenson/chocolatey-appveyor |
303a0e668bdb8d52039f38e0d1cbbc185ec0abb4 | packages/di/dirstream.yaml | packages/di/dirstream.yaml | homepage: ''
changelog-type: ''
hash: 5292ff3ac0763662951b8e5e6632c78339defc3a8899eb37e75b1e0839e693c3
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Easily stream directory contents in constant memory
changelog: ''
basic-deps:
unix: ! '>=2.5.1.0 && <2.8'
base: ! '>=4 && <5'
system-fileio: ! '>=0.... | homepage: ''
changelog-type: ''
hash: ec01f3ec332f0bf3e3ab4c450f4c9f8745e0c30603b2c25a869d4e6c9a716f3c
test-bench-deps: {}
maintainer: Gabriel439@gmail.com
synopsis: Easily stream directory contents in constant memory
changelog: ''
basic-deps:
unix: ! '>=2.5.1.0 && <2.8'
base: ! '>=4 && <5'
system-fileio: ! '>=0.... | Update from Hackage at 2017-05-24T20:19:11Z | Update from Hackage at 2017-05-24T20:19:11Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
631a63d4d2485133785b25d4d038fa7f03808326 | .codeclimate.yml | .codeclimate.yml | version: "2"
engines:
markdownlint:
enabled: true
pep8:
enabled: true
shellcheck:
enabled: true
ratings:
paths:
- "**.py"
- "**.sh"
- "**.md"
checks:
argument-count:
config:
threshold: 5
file-lines:
config:
threshold: 1000
method-count:
config:
threshold:... | version: "2"
engines:
markdownlint:
enabled: true
pep8:
enabled: true
shellcheck:
enabled: true
ratings:
paths:
- "**.py"
- "**.sh"
- "**.md"
checks:
argument-count:
config:
threshold: 5
complex-logic:
config:
threshold: 7
file-lines:
config:
threshold: 1... | Update complexity requirements on code climate | Update complexity requirements on code climate
| YAML | mit | JrGoodle/clowder,JrGoodle/clowder,JrGoodle/clowder |
250a9e8eeb7bb25a59a3ee2984fd5f0d4f0fef99 | .readthedocs.yml | .readthedocs.yml | # Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml
# Optionally bui... | # Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/conf.py
# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml
# Optionally bui... | Use mamba and install project before building | Use mamba and install project before building
| YAML | mit | SALib/SALib |
afeb649c90a7a40e0da60af0977f1cbdb827d3e6 | .readthedocs.yml | .readthedocs.yml | # see http://docs.readthedocs.io/en/latest/yaml-config.html
build:
image: 2.0
python:
version: 3.5
setup_py_install: true | # see http://docs.readthedocs.io/en/latest/yaml-config.html
build:
image: 2.0
python:
version: 3.7
setup_py_install: true | Use Python 3.7 for docs | Use Python 3.7 for docs
| YAML | mit | geographika/mappyfile,geographika/mappyfile |
9167946b8445459b8a687b32102675c076d7b00b | .scrutinizer.yml | .scrutinizer.yml | tools:
external_code_coverage: false
| tools:
external_code_coverage: false
filter:
paths:
- 'src/*'
excluded_paths:
- 'build/*'
- 'log/*'
- 'tests/*'
- 'vendor/*'
| Remove tests folder from Scrutinizer | Remove tests folder from Scrutinizer
We don’t need them to be tested by Scrutinizer since they won’t affect final user.
| YAML | mit | j0k3r/graby,aaa2000/graby |
6309a59f0cafead3a34a9d572dfae862acfc5f48 | roles/virtualbox-guest-additions/tasks/main.yml | roles/virtualbox-guest-additions/tasks/main.yml | ---
- name: Install requirements
apt: name={{ item }} state=present
with_items:
- linux-headers-generic
- build-essential
- dkms
- name: Download iso
get_url: url=http://download.virtualbox.org/virtualbox/{{ virtualbox_version }}/VBoxGuestAdditions_{{ virtualbox_version }}.iso dest=/opt/VBoxGuestAdditions_{... | ---
- name: Install requirements
apt: name={{ item }} state=present
with_items:
- linux-headers-generic
- build-essential
- dkms
- name: Download iso
get_url: url=http://download.virtualbox.org/virtualbox/{{ virtualbox_version }}/VBoxGuestAdditions_{{ virtualbox_version }}.iso dest=/opt/VBoxGuestAdditions_{... | Update locations of Virtualbox Guest Additions installed files. | Update locations of Virtualbox Guest Additions installed files.
| YAML | apache-2.0 | NLeSC/Chemical-Analytics-Platform |
e829a0add875c8b0839672dcd809c947730163f8 | .travis.yml | .travis.yml | language: php
php:
- 5.4
- 5.5
- 5.6
before_script:
- composer update --prefer-dist
script:
# - php ./vendor/phpunit/phpunit/phpunit
- php ./vendor/phpunit/phpunit/phpunit --coverage-clover=build/logs/clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:... | language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
before_script:
- composer update --prefer-dist
script:
# - php ./vendor/phpunit/phpunit/phpunit
- php ./vendor/phpunit/phpunit/phpunit --coverage-clover=build/logs/clover.xml
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.pha... | Add support for PHP 7.0 & 7.1 | Add support for PHP 7.0 & 7.1
| YAML | mit | dankempster/axstrad-test |
6a937f361dfd88c038c8c6638ea03b09357e57a1 | .travis.yml | .travis.yml | language: node_js
node_js:
- '0.10'
- '0.12'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| language: node_js
node_js:
- '0.10'
- '0.12'
- '4'
branches:
only:
- master
- travis-ci
before_install:
- npm install
- npm install istanbul coveralls
| Test with latest Node.js 4 on Travis CI. | Test with latest Node.js 4 on Travis CI.
| YAML | mit | bigeasy/revise,bigeasy/revise |
a73102ecff90504343178fc397dc4731485d898d | config/feature_flags/app_fundamentals_release_flags.yml | config/feature_flags/app_fundamentals_release_flags.yml | ---
default_recaptcha_registration_enable:
state: hidden
display_name: Enable Recaptcha by default for self-registration
description: Requires Recaptcha for self-registration by default
applies_to: SiteAdmin
granular_permissions_manage_users:
state: hidden
applies_to: RootAccount
display_name: Granular pe... | ---
default_recaptcha_registration_enable:
state: hidden
display_name: Enable Recaptcha by default for self-registration
description: Requires Recaptcha for self-registration by default
applies_to: SiteAdmin
granular_permissions_manage_users:
state: hidden
applies_to: RootAccount
display_name: Granular pe... | Create Course Templates feature flag | Create Course Templates feature flag
Closes FOO-1679
flag = course_templates
This just creates the FF
Test plan:
* FF appears in the siteadmin UI
Change-Id: I3b3e9c29a814832dc61fe4c712df80f2ace8a2c3
Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/260291
Tested-by: Service Cloud Jenkins <9144042a601061f88... | YAML | agpl-3.0 | instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,sfu/canvas-lms |
7917f041b204b19a0476232f63e1b33edcee9e9b | config/jobs/image-pushing/k8s-staging-external-dns.yaml | config/jobs/image-pushing/k8s-staging-external-dns.yaml | postsubmits:
# this is the github repo we'll build from; this block needs to be repeated for each repo.
kubernetes-sigs/external-dns:
- name: post-external-dns-push-images
cluster: test-infra-trusted
annotations:
# this is the name of some testgrid dashboard to report to.
testgrid-da... | postsubmits:
# this is the github repo we'll build from; this block needs to be repeated for each repo.
kubernetes-sigs/external-dns:
- name: post-external-dns-push-images
cluster: test-infra-trusted
annotations:
# this is the name of some testgrid dashboard to report to.
testgrid-da... | Update external-dns to use workload identity | Update external-dns to use workload identity
| YAML | apache-2.0 | cblecker/test-infra,fejta/test-infra,dims/test-infra,ixdy/kubernetes-test-infra,pwittrock/test-infra,michelle192837/test-infra,kubernetes/test-infra,monopole/test-infra,monopole/test-infra,kubernetes/test-infra,michelle192837/test-infra,kubernetes/test-infra,fejta/test-infra,cblecker/test-infra,monopole/test-infra,cble... |
9fa34cf2fda7fac263468031f59045b37c7147bc | deploy/ansible/roles/configure/tasks/main.yml | deploy/ansible/roles/configure/tasks/main.yml | # Configure the box. This happens after system dependencies are installed,
# but before the project is cloned or built.
- name: set hostname
hostname: name={{hostname}}
- name: add loopback references to our domain in /etc/hosts
lineinfile: "dest=/etc/hosts line='127.0.0.1 {{hostname}} {{app_fqdn}}'"
- name: get... | # Configure the box. This happens after system dependencies are installed,
# but before the project is cloned or built.
- name: set hostname
hostname: name={{hostname}}
- name: add loopback references to our domain in /etc/hosts
lineinfile: "dest=/etc/hosts line='127.0.0.1 {{hostname}} {{app_fqdn}}'"
- name: ens... | Add Github to known_hosts properly and securely. | Add Github to known_hosts properly and securely.
* http://hakunin.com/six-ansible-practices#add-github-to-knownhosts-properly-and-securely
| YAML | mit | jugglinmike/deployment-workflow,bocoup/deployment-workflow,jugglinmike/deployment-workflow,bocoup/deployment-workflow,bocoup/deployment-workflow,jugglinmike/deployment-workflow |
d774d4c60e1a415e2f1e1dab517edfb2b8994c12 | roles/upgrades.tasks/tasks/upgrade_to_1_1/cleanup.yml | roles/upgrades.tasks/tasks/upgrade_to_1_1/cleanup.yml | - name: Remove old ssl certs
file:
path: "{{ item }}"
state: absent
with_items:
- /etc/nginx/ssl/cert.pem
- /etc/nginx/ssl/privkey.pem
- /etc/ssl/certs/dhparam.pem
- name: Remove old hosts file
file:
path: /root/hosts.txt
state: absent
- name: Remove install.php
file:
path: "{{... | - name: Remove old ssl certs
file:
path: "{{ item }}"
state: absent
with_items:
- /etc/nginx/ssl/cert.pem
- /etc/nginx/ssl/privkey.pem
- /etc/ssl/certs/dhparam.pem
- name: Remove old hosts file
file:
path: /root/hosts.txt
state: absent
- name: Remove install.php
file:
path: "{{... | Remove old root cron.php task on upgrade | Remove old root cron.php task on upgrade
| YAML | mit | keitarocorp/centos_provision,keitarocorp/centos_provision |
f91c4e6021249f9d3f557855e52ebb6dad1d4ebc | zazu.yaml | zazu.yaml | # Zazu config file for zazu itself.
#issueTracker:
# type: github
# owner: stopthatcow
# repo: zazu
issueTracker:
type: jira
url: https://zazucli.atlassian.net/
project: ZZ
codeReviewer:
type: github
owner: stopthatcow
repo: zazu
style:
- include:
- setup.py
- docs/**.py
... | # Zazu config file for zazu itself.
issueTracker:
type: github
owner: stopthatcow
repo: zazu
#issueTracker:
# type: jira
# url: https://zazucli.atlassian.net/
# project: ZZ
codeReviewer:
type: github
owner: stopthatcow
repo: zazu
style:
- include:
- setup.py
- docs/**.py
... | Switch back to github issue tracker | Switch back to github issue tracker
(feature/89_autocompletion)
| YAML | mit | stopthatcow/zazu,stopthatcow/zazu |
8d40e308a18b7a830220ea63762f09a66145fd49 | .drone.yml | .drone.yml | image: bradrydzewski/node:0.10
git:
depth: 1
script:
- npm -q install
- npm -q -g install gulp
- gulp bower
- gulp
- gulp backend:test
| image: crhym3/go1.4-node0.10
git:
depth: 1
script:
- npm -q install
- cd app && ../node_modules/bower/bin/bower install -q --allow-root && cd ..
# ensure the build works
- gulp
# backend testing
- go get -d -v ./backend/...
- gulp backend:test
| Use our own docker image in CI builds | Use our own docker image in CI builds
| YAML | apache-2.0 | GoogleChrome/ioweb2015,GoogleChrome/ioweb2015,BLamy/ioweb2015,b-cuts/ioweb2015,Thiruppathi/ioweb2015,google/ioweb2015,jeffposnick/ioweb2015,b-cuts/ioweb2015,BLamy/ioweb2015,Thiruppathi/ioweb2015,jeffposnick/ioweb2015,bestwpw/ioweb2015,b-cuts/ioweb2015,b-cuts/ioweb2015,jeffposnick/ioweb2015,Thiruppathi/ioweb2015,jeffpos... |
902fe85180567cf501121dbb17b8284df5c70815 | .drone.yml | .drone.yml | build:
test:
image: quay.io/buildo/node5-npm3
environment:
- NPM_CONFIG_CACHE=/drone/.npm
commands:
- npm i
- npm test
cache:
mount:
- /drone/.npm
| build:
react-components:
image: quay.io/buildo/node5-npm3
environment:
- NPM_CONFIG_CACHE=/drone/.npm
commands:
- npm i
- npm run lint
- npm run build
gh-pages:
image: ubuntu
commands:
- git fetch --no-tags origin +refs/heads/gh-pages
- git checkout gh-pages
... | Add deploy script for gh-pages | Add deploy script for gh-pages
| YAML | mit | buildo/react-components,buildo/react-components,buildo/react-components,buildo/react-components |
bb9a2d996db150cc57d2b6976c6c23fe619c0b58 | .drone.yml | .drone.yml | ---
kind: pipeline
name: test
steps:
- name: build
image: python:2.7-slim
environment:
VIRTUAL_ENV: "/opt/venv"
commands:
- apt-get update && apt-get -y install gcc libjpeg-dev
- export PATH="$VIRTUAL_ENV/bin:$PATH"
- pip install virtualenv
- virtualenv $VIRTUAL_ENV
- ... | ---
kind: pipeline
name: test
steps:
- name: build
image: python:2.7-slim
environment:
VIRTUAL_ENV: "/opt/venv"
commands:
- apt-get update && apt-get -y install gcc libjpeg-dev zlib1g-dev
- export PATH="$VIRTUAL_ENV/bin:$PATH"
- pip install virtualenv
- virtualenv $VIRTUAL_E... | Add zlib library (old Pillow dep) | Add zlib library (old Pillow dep)
| YAML | mit | ukch/refugeedata,ukch/refugeedata,ukch/refugeedata,ukch/refugeedata |
9aafbf2bc9868ee8ef543da14d4822d87f23f642 | .hound.yml | .hound.yml | ruby:
config_file: .rubocop.yml
java_script:
enabled: false
| ruby:
config_file: .rubocop.yml
java_script:
enabled: false
scss:
enabled: false
| Disable linting of css files | Disable linting of css files
| YAML | apache-2.0 | MFAnderson/gocd,iqstack/gocd,grahamc/gocd,paulclarkin/gocd,kunalch/gocd,varshavaradarajan/gocd,jeffmccune/gocd,feluraschi/gocd,mdaliejaz/gocd,tomzo/gocd,varshavaradarajan/gocd,SOVALINUX/gocd,ollie314/gocd,abaditsegay/gocd,Skarlso/gocd,Battsooj/gocd,Rajik/gocd,kierarad/gocd,grahamc/gocd,xli/gocd,xli/gocd,mdaliejaz/gocd,... |
571f84eabc1fde7a83cd23d02e02667dedadc46d | metadata/jl.musicalnotes.yml | metadata/jl.musicalnotes.yml | Categories:
- Science & Education
License: GPL-3.0-only
SourceCode: https://codeberg.org/jonas-l/musical-notes-android
IssueTracker: https://codeberg.org/jonas-l/musical-notes-android/issues
AutoName: Notes
RepoType: git
Repo: https://codeberg.org/jonas-l/musical-notes-android.git
Builds:
- versionName: '1.1'
... | Categories:
- Science & Education
License: GPL-3.0-only
SourceCode: https://codeberg.org/jonas-l/musical-notes-android
IssueTracker: https://codeberg.org/jonas-l/musical-notes-android/issues
AutoName: Notes
RepoType: git
Repo: https://codeberg.org/jonas-l/musical-notes-android.git
Builds:
- versionName: '1.1'
... | Update Notes to 1.3.0 (5) | Update Notes to 1.3.0 (5)
| YAML | agpl-3.0 | f-droid/fdroiddata,f-droid/fdroiddata |
1afdb45cd59afbe70f4fcf80d0bb6c9db2ccc3e4 | .zuul.yaml | .zuul.yaml | # Zuulv3 CI setup for OpenStack.
# The build-tox-manuals-checkbuild job is defined in openstack-manuals.
- project:
name: openstack/training-guides
check:
jobs:
- build-tox-manuals-checkbuild
gate:
jobs:
- build-tox-manuals-checkbuild
post:
jobs:
- publish-open... | # Zuulv3 CI setup for OpenStack.
# The build-tox-manuals-checkbuild job is defined in openstack-manuals.
- project:
check:
jobs:
- build-tox-manuals-checkbuild
gate:
jobs:
- build-tox-manuals-checkbuild
post:
jobs:
- publish-openstack-manuals
| Remove name from project stanza | Remove name from project stanza
This is now optional, and should be discouraged in in-repo configs.
Change-Id: I5b8f4802b522848228413e3ca6eadcc1b8140bd7
| YAML | apache-2.0 | openstack/training-guides,openstack/training-guides |
cf659a43d301b1e42166b6f6ec22d87312ce8569 | .zuul.yaml | .zuul.yaml | - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-xena-jobs
| - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-yoga-jobs
| Add Python3 yoga unit tests | Add Python3 yoga unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for yoga.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I81796adbe62ac9fcb21368bdfdecd1d7f622a... | YAML | apache-2.0 | openstack/blazar-nova,stackforge/blazar-nova,openstack/blazar-nova |
c7ef2b451b62730971253105b39f7376d4550fdb | .zuul.yaml | .zuul.yaml | - project:
templates:
- openstack-lower-constraints-jobs-horizon
- check-requirements
- horizon-non-primary-django-jobs
- horizon-nodejs10-jobs
- openstack-python3-ussuri-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
| - project:
templates:
- openstack-lower-constraints-jobs-horizon
- check-requirements
- horizon-non-primary-django-jobs
- horizon-nodejs10-jobs
- openstack-python3-victoria-jobs-horizon
- publish-openstack-docs-pti
- release-notes-jobs-python3
| Add Python3 victoria unit tests | Add Python3 victoria unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for victoria.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I2fa66de2ad7655beeaeddcc3d95e3... | YAML | apache-2.0 | openstack/zaqar-ui,openstack/zaqar-ui,openstack/zaqar-ui,openstack/zaqar-ui |
15c26774cc783a9b6d02e00d4c51b1b599e312cd | .zuul.yaml | .zuul.yaml | - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-victoria-jobs-neutron
- release-notes-jobs-python3
| - project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-wallaby-jobs-neutron
- release-notes-jobs-python3
| Add Python3 wallaby unit tests | Add Python3 wallaby unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for wallaby.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I9f6e81505bfe1f3c20d638451fd2f94... | YAML | apache-2.0 | openstack/networking-hyperv,openstack/networking-hyperv |
cb02c682e6f4b71c8891d7086775dbfb3dd73969 | .zuul.yaml | .zuul.yaml | - project:
cloud-provider-openstack-all:
jobs:
- cloud-provider-openstack-unittest
- cloud-provider-openstack-acceptance-test-keystone-authentication-authorization
- cloud-provider-openstack-acceptance-test-lb-octavia
cloud-provider-openstack-unit:
jobs:
- cloud-provi... | - project:
cloud-provider-openstack-all:
jobs:
- cloud-provider-openstack-unittest
- cloud-provider-openstack-acceptance-test-keystone-authentication-authorization
- cloud-provider-openstack-acceptance-test-lb-octavia
- cloud-provider-openstack-acceptance-test-e2e-conformance
... | Add conformance e2e test pipeline | Add conformance e2e test pipeline
| YAML | apache-2.0 | kubernetes/cloud-provider-openstack,kubernetes/cloud-provider-openstack,kubernetes/cloud-provider-openstack |
74d31bf9492b7f26ba7c94d5d5404bf47c739bce | user_data_osad.yml | user_data_osad.yml | #cloud-config
apt_mirror: http://iad.mirror.rackspace.com/ubuntu/
package_upgrade: true
packages:
- git-core
- screen
- tmux
runcmd:
- git clone https://github.com/openstack/openstack-ansible.git /opt/openstack-ansible
- cd /opt/openstack-ansible && scripts/bootstrap-aio.sh
- cd /opt/openstack-ansible && sc... | #cloud-config
apt_mirror: http://iad.mirror.rackspace.com/ubuntu/
package_upgrade: true
packages:
- git-core
- screen
- tmux
runcmd:
- export ANSIBLE_FORCE_COLOR=true
- export PYTHONUNBUFFERED=1
- git clone https://github.com/openstack/openstack-ansible.git /opt/openstack-ansible
- cd /opt/openstack-ansib... | Add unbuffered output + color | Add unbuffered output + color
| YAML | apache-2.0 | major/openstack-ansible-builder |
2035a3c5ec821545428ac4f50e344af9ae2d7dfd | electron-builder.yml | electron-builder.yml | appId: com.codeforscience.ScienceFair
copyright: "Copyright © 2017 CodeForScience"
productName: ScienceFair
forceCodeSigning: true
artifactName: "${productName}-${os}-${arch}-${version}.${ext}"
asar: true
asarUnpack: '*.node'
compression: maximum
mac:
category: public.app-category.reference
publish: github
target... | appId: com.codeforscience.ScienceFair
copyright: "Copyright © 2017 CodeForScience"
productName: ScienceFair
forceCodeSigning: true
artifactName: "${productName}-${os}-${arch}-${version}.${ext}"
asar: false
compression: maximum
mac:
category: public.app-category.reference
publish: github
target:
- dmg
dmg:
b... | Disable asar but keep compression | Disable asar but keep compression | YAML | mit | greggraf/sciencefair,greggraf/sciencefair,codeforscience/sciencefair,codeforscience/sciencefair,codeforscience/sciencefair,greggraf/sciencefair |
0e77f4fefe1d94e56d6e6442a490fab8d751d524 | packages/gp/GPipe-GLFW.yaml | packages/gp/GPipe-GLFW.yaml | homepage: https://github.com/plredmond/GPipe-GLFW
changelog-type: ''
hash: 5a3e4f193942d13eca16358410b0a14587a5ca80f3b76cd4cc6ced1e4ceb979a
test-bench-deps: {}
maintainer: Patrick Redmond
synopsis: GLFW OpenGL context creation for GPipe
changelog: ''
basic-deps:
GPipe-GLFW: -any
exception-transformers: -any
base:... | homepage: https://github.com/plredmond/GPipe-GLFW
changelog-type: ''
hash: 2d759e18ce6c1daf756bb2a3c706dc9773cc396b41296570c0bb4a5936a6e662
test-bench-deps: {}
maintainer: Patrick Redmond
synopsis: GLFW OpenGL context creation for GPipe
changelog: ''
basic-deps:
GPipe-GLFW: -any
exception-transformers: -any
base:... | Update from Hackage at 2016-12-08T04:29:55Z | Update from Hackage at 2016-12-08T04:29:55Z | YAML | mit | commercialhaskell/all-cabal-metadata |
6431c70fde7966e444882823589774930a7a5c34 | test/conda.yaml | test/conda.yaml | channels:
- bioconda
- conda-forge
dependencies:
- bats
- nose
- numpy
- biopython
- pandas
- simplejson
- matplotlib
| channels:
- bioconda
- conda-forge
dependencies:
- python=3
- bats
- nose
- numpy
- biopython
- pandas
- simplejson
- matplotlib
| Test files and expected output for verifying the consensus bug | Test files and expected output for verifying the consensus bug
| YAML | mit | jmeppley/py-metagenomics,jmeppley/py-metagenomics,jmeppley/py-metagenomics |
45b5bfc2a6212df7ed9c19e8a1d1c919b0bdddac | requirements.yml | requirements.yml | - src: f500.project_deploy_module
version: v1.0.3
- name: ntp
src: resmo.ntp
version: 0.3.0
- name: logrotate
src: nickhammond.logrotate
version: fc3ea4
- name: php5-xdebug
src: MaximeThoonsen.php5-xdebug
version: v1.0.5
- name: swapfile
src: kamaln7.swapfile
version: 0.4
- name: mailhog
src: g... | - src: f500.project_deploy_module
version: v1.0.3
- name: ntp
src: resmo.ntp
version: 0.3.0
- name: logrotate
src: nickhammond.logrotate
version: fc3ea4
- name: php5-xdebug
src: MaximeThoonsen.php5-xdebug
version: v1.0.5
- name: swapfile
src: kamaln7.swapfile
version: 0.4
- name: mailhog
src: g... | Swap php New Relic roles to avoid duplicate apt sources. | Swap php New Relic roles to avoid duplicate apt sources.
| YAML | mit | mlaa/trellis,mlaa/trellis |
6fb79586cdb7c33bf0c97927a4b53cee2985fe80 | .scrutinizer.yml | .scrutinizer.yml | filter:
excluded_paths: [tests/*]
checks:
php:
code_rating: true
remove_extra_empty_lines: true
remove_php_closing_tag: true
remove_trailing_whitespace: true
fix_use_statements:
remove_unused: true
preserve_multiple: false
preserve_blan... | filter:
excluded_paths: [tests/*]
build:
nodes:
analysis:
tests:
override:
- php-scrutinizer-run
checks:
php:
code_rating: true
remove_extra_empty_lines: true
remove_php_closing_tag: true
remove_trailing_whitespace: true... | Switch to Scrutinizer's new PHP analysis engine | Switch to Scrutinizer's new PHP analysis engine
| YAML | bsd-3-clause | thephpleague/commonmark,thephpleague/commonmark,colinodell/commonmark |
045283862e667274483fa1f2589922d8fcae06ab | server/stack.yaml | server/stack.yaml | resolver: lts-9.0
packages: ['.']
extra-deps:
- servant-options-0.1.0.0
- pandoc-crossref-0.2.5.0
- roman-numerals-0.5.1.5
allow-newer: true
| resolver: lts-9.0
packages: ['.']
extra-deps:
- servant-options-0.1.0.0
- pandoc-crossref-0.2.5.0
- roman-numerals-0.5.1.5
- pandoc-1.19.2.1
flags:
pandoc:
embed_data_files: true
| Embed pandoc data for relocatable binary | [Server] Embed pandoc data for relocatable binary
| YAML | mit | lierdakil/markco,lierdakil/markco,lierdakil/markco |
6d4bf43ae6ec0477eb9dd46a3cd36037985f04ca | stringer-cd.yaml | stringer-cd.yaml | language: python
python:
- 2.7
env:
global:
before_install:
- pip install awscli
install:
- pip install -r requirements.txt
before_script:
script:
after_success:
| Write code deploy outline to begin to publish stringer. | Write code deploy outline to begin to publish stringer.
| YAML | apache-2.0 | kalaboster/stringer,kalaboster/stringer | |
e18e82db460049e2343ed85b45580559788a7c5d | .github/workflows/dart.yml | .github/workflows/dart.yml | name: Dart CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * 0"
defaults:
run:
shell: bash
jobs:
build:
name: "Dart CI"
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v2
with:
path: "~/.pub-cache/hosted"
... | name: Dart CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "0 0 * * 0"
defaults:
run:
shell: bash
jobs:
build:
name: "Dart CI"
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v2
with:
path: "~/.pub-cache/hosted"
... | Fix GitHub action to work with Dart 2.17 | Fix GitHub action to work with Dart 2.17
| YAML | mit | renggli/dart-xml |
ef9b8dd0b12de5833a7967bea8719cd33cea216a | .github/workflows/main.yml | .github/workflows/main.yml | name: tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python:
- 3.6
- 3.9
- 3.10.0-alpha - 3.10.99
- pypy3
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
... | name: tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
python:
- 3.6
- 3.9
- 3.10.0-alpha - 3.10.99
- pypy3
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v2
... | Remove gcov exclusion. Defaults are fine. | Remove gcov exclusion. Defaults are fine.
| YAML | mit | pypa/setuptools,pypa/setuptools,pypa/setuptools |
3084cac3a63b0d8bbf2c92d2425f03ea9e4646f4 | .github/workflows/main.yml | .github/workflows/main.yml | name: gcld3
on: [push]
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: OS Dependencies
run: sudo apt-get install libprotobuf-dev protobuf-compiler python3-dev
macos:
runs-on: macos-latest
steps:
- name: OS Dependencies
run: brew install protobuf
build:
runs-... | name: gcld3
on: [push]
jobs:
ubuntu:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
steps:
- uses: actions/checkout@v2
- name: OS Dependencies
run: sudo apt-get install libprotobuf-dev protobuf-compiler python3-dev
- name: Set up Pyth... | Define a job for each OS | Define a job for each OS | YAML | apache-2.0 | google/cld3,google/cld3 |
f9e35a57322aa0c639badd777021df2c556cc7ed | packages/cc/cci.yaml | packages/cc/cci.yaml | homepage: ''
changelog-type: ''
hash: 9604037de386ebd1b75401d8abc3139e34d803af3bdc0ab5a2efd6b816034087
test-bench-deps:
bytestring: -any
base: -any
time: -any
filepath: -any
process: -any
cci: -any
containers: -any
binary: -any
mtl: -any
cmdargs: <0.11
random: -any
pretty: -any
maintainer: Facun... | homepage: ''
changelog-type: ''
hash: 164f46e8bb56e7b3f7f6d2b6f6dd1de89c539d9b0c7ff9fcac30fc478fad7288
test-bench-deps:
bytestring: -any
base: -any
time: -any
filepath: -any
process: -any
cci: -any
containers: -any
binary: -any
mtl: -any
cmdargs: <0.11
random: -any
pretty: -any
maintainer: Facun... | Update from Hackage at 2022-04-29T20:37:49Z | Update from Hackage at 2022-04-29T20:37:49Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
a5b2a46582cfde872cbd05b6b27114f125d61b16 | .fixtures-leap-pinned.yml | .fixtures-leap-pinned.yml | fixtures:
symlinks:
pixelated: "#{source_dir}"
lsb: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/lsb"
common: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/common"
rsyslog: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/rsyslog"
concat: "... | fixtures:
symlinks:
pixelated: "#{source_dir}"
lsb: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/lsb"
common: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/common"
rsyslog: "#{source_dir}/spec/fixtures/modules/leap_platform/puppet/modules/rsyslog"
concat: "... | Change leap_platform repo to 0xacab | Change leap_platform repo to 0xacab
| YAML | agpl-3.0 | pixelated/puppet-pixelated,pixelated/puppet-pixelated,pixelated/puppet-pixelated,pixelated/puppet-pixelated |
982dd32337769fb70869559f2ef8a297085ced6c | .github/workflows/test.yml | .github/workflows/test.yml | name: Test
on: [push, pull_request]
jobs:
test:
name: Ruby ${{ matrix.ruby }} (${{ matrix.os }})
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
ruby:
- 3.1
- 3.0
- 2.7
- 2.6
- jruby-9.2.13.0
- truffleruby-20.... | name: Test
on: [push, pull_request]
jobs:
test:
name: Ruby ${{ matrix.ruby }} (${{ matrix.os }})
if: "!contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
ruby:
- 3.1
- 3.0
- 2.7
- 2.6
- jruby-9.3.2
- truffleruby-21.3.0... | Update CI Rubies: JRuby / TruffleRuby | Update CI Rubies: JRuby / TruffleRuby
| YAML | mit | janlelis/cd |
453e030acd6927cb8d6d2e4962f1957141c566c3 | packages/co/commutative.yaml | packages/co/commutative.yaml | homepage: ''
changelog-type: ''
hash: 9bbb997bd21fd4a6f6cacfa0a8b99846856f9efc72f04d6335cd5779fb6c53cc
test-bench-deps:
base: -any
quickcheck-instances: -any
tasty-quickcheck: -any
tasty-hunit: -any
tasty: -any
QuickCheck: -any
maintainer: Athan Clark <athan.clark@gmail.com>
synopsis: Commutative binary ope... | homepage: ''
changelog-type: ''
hash: a4c25dd855bff611776b5e1b4fa822d909e45d4c10d9f47b457f93e37804e3af
test-bench-deps:
base: -any
semigroups: -any
quickcheck-instances: -any
tasty-quickcheck: -any
tasty-hunit: -any
random: -any
tasty: -any
QuickCheck: -any
maintainer: Athan Clark <athan.clark@gmail.com... | Update from Hackage at 2015-08-16T04:18:21+0000 | Update from Hackage at 2015-08-16T04:18:21+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
79190ae4b48f076d9110f4a51a571fb5a1c4d391 | packages/co/constrictor.yaml | packages/co/constrictor.yaml | homepage: https://github.com/chessai/constrictor.git
changelog-type: markdown
hash: eaf4ba51cd4cbd0669d694bdd6a83fb30efa3c428a00b99858a979d737005723
test-bench-deps: {}
maintainer: chessai1996@gmail.com
synopsis: strict versions of many things in base
changelog: ! '# Revision history for constrictor
## 0.1.0.0 -- ... | homepage: https://github.com/chessai/constrictor.git
changelog-type: markdown
hash: 2898fdf37d004fdc11ac15ac34465f35eec8338ce7541f03568bf1541d0d3d5a
test-bench-deps: {}
maintainer: chessai1996@gmail.com
synopsis: strict versions of many things in base
changelog: ! '# Revision history for constrictor
## 0.1.0.0 -- ... | Update from Hackage at 2018-05-05T02:35:05Z | Update from Hackage at 2018-05-05T02:35:05Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
020c25175e6db784bc50b0fec12b1746e447df26 | packages/di/ditto-lucid.yaml | packages/di/ditto-lucid.yaml | homepage: ''
changelog-type: ''
hash: d53b22043eca54f7efa17f17fb495a5297355d68f4ee5104b450c833e6ac9891
test-bench-deps: {}
maintainer: zacharyachurchill@gmail.com
synopsis: Add support for using lucid with Ditto
changelog: ''
basic-deps:
lucid: <3.0.0
ditto: ==0.1.0.*
base: ! '>4.5 && <5'
text: ! '>=0.11 && <1.... | homepage: ''
changelog-type: ''
hash: 5f8e73b1efd51c634ad36876d578e946bdccceb1d3476311d0a440fa900fa36b
test-bench-deps: {}
maintainer: zacharyachurchill@gmail.com
synopsis: Add support for using lucid with Ditto
changelog: ''
basic-deps:
lucid: <3.0.0
ditto: ==0.1.0.*
base: ! '>4.5 && <5'
text: ! '>=0.11 && <1.... | Update from Hackage at 2019-07-19T19:08:11Z | Update from Hackage at 2019-07-19T19:08:11Z
| YAML | mit | commercialhaskell/all-cabal-metadata |
94ac32c2656eec1790288604a502ed113b1a02fa | .github/workflows/php.yml | .github/workflows/php.yml | name: PHP Composer
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: comp... | name: PHP Composer
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache Composer packages
id: comp... | Rollback PHPUnit version to 9 in workflow. | Rollback PHPUnit version to 9 in workflow.
| YAML | mit | vendeka-nl/text |
f6da812b797c98d8f35ff6c4ca1bf1185cf42f99 | packages/ha/hakyll-sass.yaml | packages/ha/hakyll-sass.yaml | homepage: https://github.com/meoblast001/hakyll-sass
changelog-type: ''
hash: 2943da781c08e637c7f44eca1afc33c3ec0cf589515fb4e2d6b89a43e7a7a0a9
test-bench-deps: {}
maintainer: vc@braden-walters.info
synopsis: Hakyll SASS compiler over hsass
changelog: ''
basic-deps:
hsass: ! '>=0.2.0'
base: ! '>=4 && <5'
data-defa... | homepage: ''
changelog-type: ''
hash: 08ed7ca807dc5eba97d4495d67d2ef2af4a3c83d0db8839d5f5fd538f1773522
test-bench-deps: {}
maintainer: vc@braden-walters.info
synopsis: Hakyll SASS compiler over hsass
changelog: ''
basic-deps:
hsass: ! '>=0.2.0'
base: ! '>=4 && <5'
data-default-class: ! '>=0.0.1'
filepath: ! '>=... | Update from Hackage at 2015-08-27T21:38:31+0000 | Update from Hackage at 2015-08-27T21:38:31+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
9f4b970afed23b8d4bb6750e2c74b8d92345dc2e | packages/ri/ring-buffer.yaml | packages/ri/ring-buffer.yaml | homepage: http://github.com/bgamari/ring-buffer
changelog-type: ''
hash: 0fa00f983efef18739d3671c34e272f4a37d379de9b20d466447ab0149e8a958
test-bench-deps:
ring-buffer: -any
base: ! '>=4.9'
QuickCheck: ! '>=2.7'
vector: ! '>=0.11'
maintainer: ben@smart-cactus.org
synopsis: A concurrent, mutable ring-buffer
chang... | homepage: http://github.com/bgamari/ring-buffer
changelog-type: ''
hash: 122bb12bbb9a51a93d717655df8c78d504d7a08ffbc488aed92c2d098283bce8
test-bench-deps:
ring-buffer: -any
base: ! '>=4.9'
QuickCheck: ! '>=2.7'
vector: ! '>=0.11'
maintainer: ben@smart-cactus.org
synopsis: A concurrent, mutable ring-buffer
chang... | Update from Hackage at 2016-07-13T20:49:23+0000 | Update from Hackage at 2016-07-13T20:49:23+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
435b6125daf44b25009075256521770f8e4f03bf | packages/wi/Win32-services-wrapper.yaml | packages/wi/Win32-services-wrapper.yaml | homepage: ''
changelog-type: ''
hash: 8b992d795ea527fcb533a91dc33ddab634017dfa129f6348d04b0a335fb5f236
test-bench-deps: {}
maintainer: Ganesh Sittampalam <ganesh@earth.li>
synopsis: Wrapper code for making a Win32 service
changelog: ''
basic-deps:
base: ! '>=4.5 && <4.8'
filepath: ==1.3.*
Win32: ! '>=2.2 && <2.4'... | homepage: ''
changelog-type: ''
hash: ef4f4b0f6821ad02938a019fcef050f3dfa49bc32c6b81b2941b84c5b33bbc68
test-bench-deps: {}
maintainer: Ganesh Sittampalam <ganesh@earth.li>
synopsis: Wrapper code for making a Win32 service
changelog: ''
basic-deps:
Win32-errors: ! '>=0.2 && <0.3'
base: ! '>=4.5 && <4.9'
filepath: ... | Update from Hackage at 2015-05-27T05:20:24+0000 | Update from Hackage at 2015-05-27T05:20:24+0000
| YAML | mit | commercialhaskell/all-cabal-metadata |
065b437a704e232f69ccae1f465791a182b3d32d | packaging/conda/conda_build_config.yaml | packaging/conda/conda_build_config.yaml | python:
- 3.6
- 3.7
- 3.8
- 3.9
numpy:
- 1.15
- 1.15
- 1.17
- 1.20
zip_keys:
- python
- numpy
| python:
# - 3.6
# - 3.7
- 3.8
# - 3.9
numpy:
# - 1.15
# - 1.15
- 1.17
# - 1.20
zip_keys:
- python
- numpy
| Build only Python 3.8 for CI testing | Build only Python 3.8 for CI testing | YAML | bsd-3-clause | PySCeS/pysces,PySCeS/pysces |
212442a4e5ba0ac5b62559b7b3ead82bc0de857e | ci/tasks/check-certs/task.yml | ci/tasks/check-certs/task.yml | ---
platform: linux
image_resource:
type: docker-image
source:
repository: relintdockerhubpushbot/cf-deployment-concourse-tasks
inputs:
- name: cf-deployment-develop
- name: relint-envs
params:
DAYS_LEFT_THRESHOLD: 16
PATH_TO_VERIFY: relint-envs
run:
dir: cf-deployment
path: ci/tasks/check-certs/ta... | ---
platform: linux
image_resource:
type: docker-image
source:
repository: relintdockerhubpushbot/cf-deployment-concourse-tasks
inputs:
- name: cf-deploymen
- name: relint-envs
params:
DAYS_LEFT_THRESHOLD: 16
PATH_TO_VERIFY: relint-envs
run:
path: cf-deployment/ci/tasks/check-certs/task
| Add input mappings and tweak the paths | Add input mappings and tweak the paths
[#173063443](https://www.pivotaltracker.com/story/show/173063443)
| YAML | apache-2.0 | cloudfoundry/cf-deployment,cloudfoundry/cf-deployment |
c48cf689655ce8ebf6704416e396066c82ce8363 | ci/tasks/combine-binaries.yml | ci/tasks/combine-binaries.yml | ---
platform: linux
image: docker:///cloudfoundry/cli-ci
inputs:
- name: cross-compiled
- name: osx-compiled
outputs:
- name: compiled
run:
path: bash
args:
- -c
- |
set -ex
cwd=$PWD
mkdir combined
pushd cross-compiled
tar -xzf *.tar
rm *.tar
mv * $cwd/combined
popd
... | ---
platform: linux
image: docker:///cloudfoundry/cli-ci
inputs:
- name: cross-compiled
- name: osx-compiled
outputs:
- name: compiled
run:
path: bash
args:
- -c
- |
set -ex
cwd=$PWD
mkdir combined
pushd cross-compiled
tar -xzf *.tgz
rm *.tgz
mv * $cwd/compiled
popd
... | Fix tgz & output directory | Fix tgz & output directory
[#115203011]
Signed-off-by: Anand Gaitonde <4f0ff06b2390eeadb0769d298cbdb3dc6df4c73d@pivotal.io>
| YAML | apache-2.0 | cloudfoundry/cli,cloudfoundry/cli,cloudfoundry/cli |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.