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
f2b68e769477c539c5089f8e1159ab36e752cd95
.github/workflows/issues.yml
.github/workflows/issues.yml
name: issue assignment on: issues: types: [opened] jobs: auto-assign: runs-on: ubuntu-latest steps: - name: 'auto-assign issue' uses: pozil/auto-assign-issue@v1.7.3 with: assignees: konstruktoid
name: issue assignment on: issues: types: [opened] jobs: auto-assign: runs-on: ubuntu-latest steps: - name: 'auto-assign issue' uses: pozil/auto-assign-issue@v1.8.0 with: assignees: konstruktoid
Update pozil/auto-assign-issue action to v1.8.0
Update pozil/auto-assign-issue action to v1.8.0
YAML
apache-2.0
konstruktoid/ansible-role-hardening
9172ca387c71aff23207b82634ac759025f54aaf
.github/workflows/nodejs.yml
.github/workflows/nodejs.yml
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x,12.x,14.x,15.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: npm install run: npm install --no-package-lock - name: npm ls run: npm ls - name: npm install nyc, prove, codecov run: npm install -g nyc prove codecov - name: npm test run: nyc npm test env: CI: true - name: generate codecov report run: nyc report --reporter=text-lcov > coverage.lcov - name: ship coverage to codecov run: codecov --branch=${GITHUB_REF##*/} env: CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x,12.x,14.x,16.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: npm install run: npm install --no-package-lock - name: npm ls run: npm ls - name: npm install nyc, prove, codecov run: npm install -g nyc prove codecov - name: npm test run: nyc npm test env: CI: true - name: generate codecov report run: nyc report --reporter=text-lcov > coverage.lcov - name: ship coverage to codecov run: codecov --branch=${GITHUB_REF##*/} env: CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
Build with Node.js 16 on Travis CI.
Build with Node.js 16 on Travis CI.
YAML
mit
bigeasy/avenue,bigeasy/avenue
e2eefb30532dbe36ce0c2243f5756df6d7f42f6c
.github/workflows/nodejs.yml
.github/workflows/nodejs.yml
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: npm install, build, and test run: | npm run build --if-present npm run push env: CI: true dockerhub_user: ${{ secrets.dockerhub_user }} dockerhub_password: ${{ secrets.dockerhub_password }}
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Spit out version file run: echo "`date -u`" > out/when.txt - name: npm install, build, and test run: | npm run build --if-present - name: Archive static site uses: actions/upload-artifact@v2 with: name: static-output path: out deploy-storage: runs-on: ubuntu-latest needs: build if: github.ref == 'refs/heads/master' steps: - uses: actions/download-artifact@master with: name: static-output path: out - uses: bacongobbler/azure-blob-storage-upload@v1.1.1 with: source_dir: out container_name: $web connection_string: ${{ secrets.STORAGE_CONNECTION_STRING }} sync: false deploy-docker-hub: runs-on: ubuntu-latest needs: build if: github.ref == 'refs/heads/master' steps: - uses: actions/download-artifact@master with: name: static-output path: out - name: Docker Push run: | npm run push env: CI: true dockerhub_user: ${{ secrets.dockerhub_user }} dockerhub_password: ${{ secrets.dockerhub_password }}
Update build for static deploy
Update build for static deploy
YAML
mit
ytechie/msdevshow,ytechie/msdevshow,ytechie/msdevshow
35c620ce34601a348d48c2ea486e6d5c2cbd2728
wercker.yml
wercker.yml
box: starefossen/iojs-imagemagick build: steps: - npm-install - script: name: npm run-script test-drone code: | npm run-script test-drone - script: name: echo nodejs information code: | echo "node version $(node -v) running" echo "npm version $(npm -v) running" after-steps: - wantedly/pretty-slack-notify: webhook_url: $SLACK_WEBHOOK_URL
box: starefossen/iojs-imagemagick build: steps: - npm-install - script: name: npm run-script test-drone code: | npm run-script test-drone - script: name: echo nodejs information code: | echo "node version $(node -v) running" echo "npm version $(npm -v) running" after-steps: - wantedly/pretty-slack-notify: webhook_url: $SLACK_WEBHOOK_URL deploy: steps: - add-to-known_hosts: hostname: $SSH_HOST - mktemp: envvar: PRIVATEKEY_PATH - create-file: name: write key filename: $PRIVATEKEY_PATH content: $SSH_KEY_PRIVATE overwrite: true hide-from-log: true - script: name: start application code: | ssh -i ${PRIVATEKEY_PATH} \ -o UserKnownHostsFile=/dev/null \ -o StrictHostKeyChecking=no \ -l ${SSH_USER} \ ${SSH_HOST} \ /var/www/config/manage.sh ${SSH_APP} update
Add Docker PaaS Deploy Target
Add Docker PaaS Deploy Target
YAML
mit
Turistforeningen/Jotunheimr
feaeb3fd5b9bf585fd8dafdc5c4feac989cb6b01
wercker.yml
wercker.yml
box: wercker/golang services: - mies/rethinkdb build: steps: - setup-go-workspace - script: name: go get code: | cd $WERCKER_SOURCE_DIR go version go get ./... go get github.com/reiver/go-porterstemmer go get github.com/stretchr/testify go get github.com/dancannon/gorethink go get github.com/PuerkitoBio/goquery # Build the project - script: name: go build code: | go build ./... # Test the project - script: name: go test code: | go test -v ./... # Code coverage - script: name: go coverage code: | export PATH=$PATH:$GOPATH/bin go get github.com/axw/gocov/gocov go get github.com/mattn/goveralls go get golang.org/x/tools/cmd/cover goveralls -service=wercker.com -repotoken $COVERALLS_TOKEN ./coverage.sh
box: wercker/golang services: - mies/rethinkdb build: steps: - setup-go-workspace - script: name: go get code: | cd $WERCKER_SOURCE_DIR go version go get ./... go get github.com/reiver/go-porterstemmer go get github.com/stretchr/testify go get github.com/dancannon/gorethink go get github.com/PuerkitoBio/goquery # Build the project - script: name: go build code: | go build ./... # Test the project - script: name: go test code: | go test -v ./... # Code coverage - script: name: go coverage code: | export PATH=$PATH:$GOPATH/bin go get github.com/axw/gocov/gocov go get github.com/mattn/goveralls goveralls -service=wercker.com -repotoken $COVERALLS_TOKEN ./coverage.sh
Cover tool should already be installed?
Cover tool should already be installed?
YAML
unlicense
nylar/miru
7e4cbdb5a0d0b784d4925db8a1ad6a0c7e8c9ca0
docs/cert-manager.yaml
docs/cert-manager.yaml
apiVersion: apps/v1beta1 kind: Deployment metadata: name: cert-manager spec: replicas: 1 strategy: type: Recreate template: metadata: labels: app: cert-manager spec: containers: - name: cert-manager image: quay.io/jetstack/cert-manager:canary imagePullPolicy: Always ports: - name: http containerPort: 8080 --- apiVersion: v1 kind: Service metadata: name: cert-manager spec: type: LoadBalancer ports: - name: http port: 80 targetPort: 8080 selector: app: cert-manager
apiVersion: apps/v1beta1 kind: Deployment metadata: name: cert-manager spec: replicas: 1 strategy: type: Recreate template: metadata: labels: app: cert-manager spec: containers: - name: cert-manager image: quay.io/jetstack/cert-manager:canary.1 imagePullPolicy: Always ports: - name: http containerPort: 8081 --- apiVersion: v1 kind: Service metadata: name: cert-manager spec: type: LoadBalancer ports: - name: http port: 80 targetPort: 8081 selector: app: cert-manager
Update port number. Update image tag.
Update port number. Update image tag.
YAML
apache-2.0
dippynark/cert-manager,cert-manager/cert-manager,dippynark/cert-manager,jetstack-experimental/cert-manager,jetstack/cert-manager,cert-manager/cert-manager,jetstack/cert-manager,jetstack/cert-manager,jetstack-experimental/cert-manager,dippynark/cert-manager,cert-manager/cert-manager,jetstack-experimental/cert-manager
041709df2235acfe9f44fe647ef270c7792d75f6
.codecov.yml
.codecov.yml
# Codecov configuration to make it a bit less noisy coverage: status: patch: false project: default: threshold: 50% comment: layout: "header" require_changes: false branches: null behavior: default flags: null paths: null
# Codecov configuration to make it a bit less noisy coverage: range: 60..90 status: patch: false project: default: threshold: 50% comment: layout: "header" require_changes: false branches: null behavior: default flags: null paths: null
Use a more reasonable coverage target range
Use a more reasonable coverage target range
YAML
lgpl-2.1
shirtsgroup/physical-validation
e9ea4e2671f8376eb114a5aa3d07f5a35b1683fb
docker/basic.yml
docker/basic.yml
phpfpm: build: php-fpm/ volumes: - ..:/var/www/z-push nginx: build: nginx/ volumes: - ..:/var/www/z-push links: - phpfpm:zpushphpfpm ports: - "80:80" - "443:443"
phpfpm: build: php-fpm/ volumes: - ..:/var/www/z-push:Z nginx: build: nginx/ volumes_from: - phpfpm links: - phpfpm:zpushphpfpm ports: - "80:80" - "443:443"
Use volumes_from Set Z context for Selinux enabled distributions.
chore(docker): Use volumes_from Set Z context for Selinux enabled distributions. Requires docker 1.7 or 1.6 (in CentOS/Fedora). Signed-off-by: Francisco Miguel Biete <1d85ea0d1a60a438fd84497dece37a4d29dd6409@gmail.com> <fmbiete@gmail.com>
YAML
agpl-3.0
RavenB/Z-Push-contrib,fmbiete/Z-Push-contrib,mta59066/Z-Push-contrib
31937fe3cf71ec599561b69905abaa2c2d56a970
docs/_config.yml
docs/_config.yml
markdown: kramdown kramdown: input: GFM hard_wrap: false syntax_highlighter: rouge # These allow the documentation to be updated with new releases of Tachyon. TACHYON_RELEASED_VERSION: 0.8.0 TACHYON_MASTER_VERSION_SHORT: 0.8.0
markdown: kramdown kramdown: input: GFM hard_wrap: false syntax_highlighter: rouge # These allow the documentation to be updated with new releases of Tachyon. TACHYON_RELEASED_VERSION: 0.8.0 TACHYON_MASTER_VERSION_SHORT: 0.9.0-SNAPSHOT
Update docs version to 0.9.0-SNAPSHOT.
Update docs version to 0.9.0-SNAPSHOT.
YAML
apache-2.0
Alluxio/alluxio,apc999/alluxio,maobaolong/alluxio,maobaolong/alluxio,Alluxio/alluxio,maobaolong/alluxio,yuluo-ding/alluxio,apc999/alluxio,Reidddddd/mo-alluxio,calvinjia/tachyon,jsimsa/alluxio,ChangerYoung/alluxio,aaudiber/alluxio,riversand963/alluxio,PasaLab/tachyon,WilliamZapata/alluxio,Reidddddd/alluxio,aaudiber/alluxio,uronce-cc/alluxio,maobaolong/alluxio,wwjiang007/alluxio,jswudi/alluxio,bf8086/alluxio,maobaolong/alluxio,Alluxio/alluxio,calvinjia/tachyon,WilliamZapata/alluxio,Reidddddd/alluxio,Reidddddd/mo-alluxio,EvilMcJerkface/alluxio,PasaLab/tachyon,Reidddddd/alluxio,yuluo-ding/alluxio,madanadit/alluxio,maobaolong/alluxio,ChangerYoung/alluxio,jsimsa/alluxio,EvilMcJerkface/alluxio,ShailShah/alluxio,maobaolong/alluxio,aaudiber/alluxio,maboelhassan/alluxio,bf8086/alluxio,jswudi/alluxio,madanadit/alluxio,riversand963/alluxio,Alluxio/alluxio,uronce-cc/alluxio,apc999/alluxio,ChangerYoung/alluxio,maobaolong/alluxio,madanadit/alluxio,Alluxio/alluxio,madanadit/alluxio,PasaLab/tachyon,apc999/alluxio,riversand963/alluxio,ShailShah/alluxio,Reidddddd/mo-alluxio,calvinjia/tachyon,uronce-cc/alluxio,Reidddddd/alluxio,bf8086/alluxio,bf8086/alluxio,ShailShah/alluxio,ChangerYoung/alluxio,maobaolong/alluxio,wwjiang007/alluxio,maboelhassan/alluxio,jswudi/alluxio,jsimsa/alluxio,yuluo-ding/alluxio,calvinjia/tachyon,Alluxio/alluxio,aaudiber/alluxio,madanadit/alluxio,Reidddddd/mo-alluxio,Reidddddd/mo-alluxio,WilliamZapata/alluxio,WilliamZapata/alluxio,ShailShah/alluxio,PasaLab/tachyon,aaudiber/alluxio,EvilMcJerkface/alluxio,jswudi/alluxio,WilliamZapata/alluxio,maboelhassan/alluxio,aaudiber/alluxio,uronce-cc/alluxio,calvinjia/tachyon,apc999/alluxio,ChangerYoung/alluxio,wwjiang007/alluxio,yuluo-ding/alluxio,Alluxio/alluxio,wwjiang007/alluxio,WilliamZapata/alluxio,calvinjia/tachyon,maobaolong/alluxio,madanadit/alluxio,bf8086/alluxio,calvinjia/tachyon,bf8086/alluxio,jsimsa/alluxio,wwjiang007/alluxio,apc999/alluxio,Alluxio/alluxio,maboelhassan/alluxio,ShailShah/alluxio,wwjiang007/alluxio,madanadit/alluxio,wwjiang007/alluxio,wwjiang007/alluxio,EvilMcJerkface/alluxio,uronce-cc/alluxio,PasaLab/tachyon,Reidddddd/alluxio,riversand963/alluxio,calvinjia/tachyon,ShailShah/alluxio,ChangerYoung/alluxio,EvilMcJerkface/alluxio,jsimsa/alluxio,jsimsa/alluxio,uronce-cc/alluxio,Reidddddd/mo-alluxio,Alluxio/alluxio,aaudiber/alluxio,maboelhassan/alluxio,EvilMcJerkface/alluxio,Reidddddd/alluxio,riversand963/alluxio,apc999/alluxio,Reidddddd/alluxio,madanadit/alluxio,Alluxio/alluxio,PasaLab/tachyon,jswudi/alluxio,yuluo-ding/alluxio,maboelhassan/alluxio,wwjiang007/alluxio,bf8086/alluxio,wwjiang007/alluxio,riversand963/alluxio,EvilMcJerkface/alluxio,bf8086/alluxio,EvilMcJerkface/alluxio,jswudi/alluxio,maboelhassan/alluxio,PasaLab/tachyon,yuluo-ding/alluxio
c821722db7c66f0e69a92eb6dc305a19c7d98b58
docs/_config.yml
docs/_config.yml
highlighter: rouge markdown: kramdown # For some reason kramdown seems to behave differently on different # OS/packages wrt encoding. So we hard code this config. kramdown: entity_output: numeric include: - _static - _modules exclude: - alg-ref - lang-ref # These allow the documentation to be updated with newer releases SYSTEMML_VERSION: 1.0.0-SNAPSHOT # if 'analytics_on' is true, analytics section will be rendered on the HTML pages analytics_on: true analytics_provider: google_universal analytics_google_universal_tracking_id : UA-71553733-1 # if FEEDBACK_LINKS is true, render feedback links FEEDBACK_LINKS: true # if API_DOCS_MENU is true, render API docs menu API_DOCS_MENU: false
highlighter: rouge markdown: kramdown # For some reason kramdown seems to behave differently on different # OS/packages wrt encoding. So we hard code this config. kramdown: entity_output: numeric include: - _static - _modules exclude: - alg-ref - lang-ref # These allow the documentation to be updated with newer releases SYSTEMML_VERSION: 1.1.0-SNAPSHOT # if 'analytics_on' is true, analytics section will be rendered on the HTML pages analytics_on: true analytics_provider: google_universal analytics_google_universal_tracking_id : UA-71553733-1 # if FEEDBACK_LINKS is true, render feedback links FEEDBACK_LINKS: true # if API_DOCS_MENU is true, render API docs menu API_DOCS_MENU: false
Update doc version to match pom.xml version
[MINOR] Update doc version to match pom.xml version
YAML
apache-2.0
gweidner/systemml,gweidner/systemml,deroneriksson/incubator-systemml,nakul02/systemml,niketanpansare/incubator-systemml,dusenberrymw/incubator-systemml,deroneriksson/incubator-systemml,nakul02/systemml,nakul02/incubator-systemml,nakul02/systemml,apache/incubator-systemml,nakul02/systemml,gweidner/systemml,dusenberrymw/systemml,dusenberrymw/systemml,apache/incubator-systemml,niketanpansare/incubator-systemml,niketanpansare/systemml,dusenberrymw/systemml,dusenberrymw/incubator-systemml,gweidner/incubator-systemml,dusenberrymw/systemml,deroneriksson/incubator-systemml,nakul02/incubator-systemml,deroneriksson/systemml,nakul02/systemml,deroneriksson/incubator-systemml,deroneriksson/systemml,apache/incubator-systemml,deroneriksson/systemml,dusenberrymw/incubator-systemml,deroneriksson/incubator-systemml,nakul02/incubator-systemml,gweidner/systemml,deroneriksson/incubator-systemml,niketanpansare/systemml,deroneriksson/systemml,gweidner/incubator-systemml,nakul02/incubator-systemml,niketanpansare/systemml,gweidner/incubator-systemml,deroneriksson/systemml,gweidner/incubator-systemml,dusenberrymw/systemml,niketanpansare/systemml,niketanpansare/systemml,niketanpansare/incubator-systemml,nakul02/incubator-systemml,nakul02/incubator-systemml,nakul02/systemml,dusenberrymw/incubator-systemml,gweidner/incubator-systemml,deroneriksson/systemml,apache/incubator-systemml,dusenberrymw/incubator-systemml,gweidner/systemml,apache/incubator-systemml,dusenberrymw/incubator-systemml,gweidner/incubator-systemml,niketanpansare/systemml,dusenberrymw/systemml,niketanpansare/incubator-systemml,gweidner/systemml,apache/incubator-systemml
5647b27abc574e58cf755b4bc077eec51b0dd4c3
docs/foliant.yml
docs/foliant.yml
title: Foliant Docs chapters: - index.md - installation.md - Backends: - MkDocs: backends/mkdocs.md - backends/pandoc.md - Preprocessors: - preprocessors/blockdiag.md - preprocessors/flags.md - preprocessors/flatten.md - preprocessors/includes.md - CLI Extensions: - cli/init.md preprocessors: - includes: aliases: foliantcontrib: https://github.com/foliant-docs/foliantcontrib.git backend_config: pandoc: params: pdf_engine: xelatex markdown_extensions: - backtick_code_blocks - definition_lists mkdocs: mkdocs.yml: theme: name: material palette: primary: cyan accent: light blue font: text: PT Sans code: PT Mono logo: icon: book markdown_extensions: - def_list - codehilite
title: Foliant chapters: - index.md - installation.md - Backends: - MkDocs: backends/mkdocs.md - backends/pandoc.md - Preprocessors: - preprocessors/blockdiag.md - preprocessors/flags.md - preprocessors/flatten.md - preprocessors/includes.md - CLI Extensions: - cli/init.md preprocessors: - includes: recursive: false aliases: foliantcontrib: https://github.com/foliant-docs/foliantcontrib.git backend_config: pandoc: params: pdf_engine: xelatex markdown_extensions: - backtick_code_blocks - definition_lists mkdocs: mkdocs.yml: repo_name: foliant-docs/foliant repo_url: https://github.com/foliant-docs/foliant theme: name: material palette: primary: cyan accent: light blue font: text: PT Sans code: PT Mono logo: icon: import_contacts extra: social: - type: github link: https://github.com/foliant-docs/foliant markdown_extensions: - def_list - codehilite
Add github stuff, ensure includes chapter is built correctly.
Docs: Add github stuff, ensure includes chapter is built correctly.
YAML
mit
foliant-docs/foliant
ac9d7c2c985c05e6edbe4bc202f1d234c48585a1
cloudbuild.yaml
cloudbuild.yaml
# Initialize gcloud via CLI # $ gcloud init steps: # Install node packages for firestore - name: 'gcr.io/cloud-builders/npm' id: 'Install npm packages for firestore' waitFor: ['-'] entrypoint: 'bash' args: - '-c' - | cd firestore && npm install # Install node packages for functions - name: 'gcr.io/cloud-builders/npm' id: 'Install npm packages for functions' waitFor: ['-'] entrypoint: 'bash' args: - '-c' - | cd functions && npm install # Install node packages for web - name: 'gcr.io/cloud-builders/npm' id: 'Install npm packages for web' waitFor: ['-'] entrypoint: 'bash' args: - '-c' - | cd web && npm install # Install node packages for web-ng - name: 'gcr.io/cloud-builders/npm' id: 'Install npm packages for web-ng' > &install_web_ng waitFor: ['-'] entrypoint: 'bash' args: - '-c' - | cd web-ng && npm install # Run eslint for web-ng - name: 'gcr.io/cloud-builders/npm' id: 'Run eslint for web-ng' waitFor: ['*install_web_ng'] entrypoint: 'bash' args: - '-c' - | cd web-ng && npm run eslint
# Initialize gcloud via CLI # $ gcloud init steps: # Install node packages for firestore - name: 'gcr.io/cloud-builders/npm' id: 'Install npm packages for firestore' waitFor: ['-'] entrypoint: 'bash' args: - '-c' - | cd firestore && npm install # Install node packages for functions - name: 'gcr.io/cloud-builders/npm' id: 'Install npm packages for functions' waitFor: ['-'] entrypoint: 'bash' args: - '-c' - | cd functions && npm install # Install node packages for web - name: 'gcr.io/cloud-builders/npm' id: 'Install npm packages for web' waitFor: ['-'] entrypoint: 'bash' args: - '-c' - | cd web && npm install # Install node packages for web-ng - name: 'gcr.io/cloud-builders/npm' id: 'Install npm packages for web-ng' &install_web_ng waitFor: ['-'] entrypoint: 'bash' args: - '-c' - | cd web-ng && npm install # Run eslint for web-ng - name: 'gcr.io/cloud-builders/npm' id: 'Run eslint for web-ng' waitFor: [*install_web_ng] entrypoint: 'bash' args: - '-c' - | cd web-ng && npm run eslint
Fix anchor aliases yaml syntax
Fix anchor aliases yaml syntax
YAML
apache-2.0
google/ground-platform,google/ground-platform,google/ground-platform,google/ground-platform
dafa26bd535c6cc27e221cebb212619c845aeedc
.kitchen.yml
.kitchen.yml
driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-6.5 suites: - name: default run_list: - recipe[yum-erlang_solutions::default]
driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-5.11 - name: centos-6.7 - name: centos-7.1 - name: fedora-21 suites: - name: default run_list: - recipe[yum-erlang_solutions::default]
Update platforms in Test Kitchen
Update platforms in Test Kitchen
YAML
apache-2.0
chef-cookbooks/yum-erlang_solutions,chef-cookbooks/yum-erlang_solutions
5571e451e8b50d7bf8c4344bbce9e25d530c37eb
.kitchen.yml
.kitchen.yml
driver: name: vagrant provisioner: name: chef_zero verifier: name: inspec platforms: - name: centos-7.3 - name: debian-7.11 - name: debian-8.6 - name: ubuntu-14.04 - name: ubuntu-16.04 - name: ubuntu-16.04-chef-12.1 driver_config: box: bento/ubuntu-16.04 provisioner: require_chef_omnibus: 12.1.0 suites: - name: default run_list: - recipe[apt] - name: cacher run_list: - recipe[test::cacher] excludes: centos-7.2 - name: compile-time run_list: - recipe[apt::default] attributes: apt: compile_time_update: true excludes: centos-7.2 - name: resources run_list: - recipe[test::resources] excludes: centos-7.2 - name: unattended-upgrades run_list: - recipe[test::unattended-upgrades] attributes: apt: unattended_upgrades: enable: true excludes: centos-7.2
driver: name: vagrant provisioner: name: chef_zero verifier: name: inspec platforms: - name: centos-7.3 - name: debian-7.11 - name: debian-8.6 - name: ubuntu-14.04 - name: ubuntu-16.04 - name: ubuntu-16.04-chef-12.1 driver_config: box: bento/ubuntu-16.04 provisioner: require_chef_omnibus: 12.1.0 suites: - name: default run_list: - recipe[apt] - name: cacher run_list: - recipe[test::cacher] excludes: centos-7.3 - name: compile-time run_list: - recipe[apt::default] attributes: apt: compile_time_update: true excludes: centos-7.3 - name: resources run_list: - recipe[test::resources] excludes: centos-7.3 - name: unattended-upgrades run_list: - recipe[test::unattended-upgrades] attributes: apt: unattended_upgrades: enable: true excludes: centos-7.3
Exclude centos in suites properly
Exclude centos in suites properly Signed-off-by: Tim Smith <764ef62106582a09ed09dfa0b6bff7c05fd7d1e4@chef.io>
YAML
apache-2.0
chef-cookbooks/apt,opscode-cookbooks/apt,protec-cookbooks/apt,opscode-cookbooks/apt,protec-cookbooks/apt,chef-cookbooks/apt
b1565fd09879c446a7d95972ef90f54fafb514e8
.rubocop.yml
.rubocop.yml
AllCops: Include: - '**/Rakefile' - '**/config.ru' Exclude: - 'db/**/*' - 'config/**/*' - 'script/**/*' - !ruby/regexp /old_and_unused\.rb$/ TargetRubyVersion: 2.3 Rails: Enabled: true Metrics/LineLength: Enabled: false Metrics/AbcSize: Max: 20 Style/FrozenStringLiteralComment: Enabled: false Style/ClassAndModuleChildren: Enabled: false Style/Documentation: Enabled: false
AllCops: Include: - '**/Rakefile' - '**/config.ru' Exclude: - 'db/**/*' - 'config/**/*' - 'script/**/*' - 'vendor/**/*' - !ruby/regexp /old_and_unused\.rb$/ TargetRubyVersion: 2.3 Rails: Enabled: true Metrics/LineLength: Enabled: false Metrics/AbcSize: Max: 20 Style/FrozenStringLiteralComment: Enabled: false Style/ClassAndModuleChildren: Enabled: false Style/Documentation: Enabled: false
Exclude vendor folder from Rubocop checks
Exclude vendor folder from Rubocop checks
YAML
mit
steve-mcclellan/j-scorer,steve-mcclellan/j-scorer,steve-mcclellan/j-scorer
a33aa8a69c5d499eab59aeeb7a17c3a52a05a455
.rubocop.yml
.rubocop.yml
Lint/UnusedBlockArgument: Enabled: false Lint/UnusedMethodArgument: Enabled: false Metrics/AbcSize: Enabled: false Metrics/ClassLength: Enabled: false Metrics/CyclomaticComplexity: Enabled: false Metrics/LineLength: Max: 120 Metrics/MethodLength: Enabled: false Metrics/PerceivedComplexity: Enabled: false Style/Documentation: Enabled: false Style/DoubleNegation: Enabled: false Style/FormatString: Enabled: false Style/GuardClause: Enabled: false Style/IfUnlessModifier: Enabled: false Style/MultilineBlockChain: Enabled: false Style/PercentLiteralDelimiters: Enabled: false Style/PredicateName: Enabled: false Style/RegexpLiteral: MaxSlashes: 0 Style/SignalException: Enabled: false Style/StringLiterals: EnforcedStyle: double_quotes Style/TrailingComma: Enabled: false Style/TrivialAccessors: Enabled: false
Lint/UnusedBlockArgument: Enabled: false Lint/UnusedMethodArgument: Enabled: false Metrics/AbcSize: Enabled: false Metrics/ClassLength: Enabled: false Metrics/CyclomaticComplexity: Enabled: false Metrics/LineLength: Max: 120 Metrics/MethodLength: Enabled: false Metrics/PerceivedComplexity: Enabled: false Style/AndOr: Enabled: false Style/Documentation: Enabled: false Style/DoubleNegation: Enabled: false Style/FormatString: Enabled: false Style/GuardClause: Enabled: false Style/IfUnlessModifier: Enabled: false Style/MultilineBlockChain: Enabled: false Style/PercentLiteralDelimiters: Enabled: false Style/PredicateName: Enabled: false Style/RegexpLiteral: MaxSlashes: 0 Style/SignalException: Enabled: false Style/StringLiterals: EnforcedStyle: double_quotes Style/TrailingComma: Enabled: false Style/TrivialAccessors: Enabled: false
Allow to use and and or
Allow to use and and or
YAML
mit
nurse/serverkit,serverkit/serverkit,nurse/serverkit,serverkit/serverkit
bb74557453c6fad898ccf35a9690e318012084ca
.rubocop.yml
.rubocop.yml
AllCops: Exclude: - 'vendor/**/*' - 'scripts/vendor/**/*' - 'platform-tests/src/platform/vendor/**/*' - 'tools/metrics/vendor/**/*' TargetRubyVersion: 2.2 Metrics/BlockLength: # FIXME: Remove when upstream PR is released: # https://github.com/alphagov/govuk-lint/pull/87 Enabled: true Exclude: - "**/spec/**/*" Layout/IndentHeredoc: # FIXME: Remove when we've upgraded to Ruby 2.3 Enabled: false
AllCops: Exclude: - 'vendor/**/*' - 'scripts/vendor/**/*' - 'platform-tests/src/platform/vendor/**/*' - 'tools/metrics/vendor/**/*' TargetRubyVersion: 2.5 Metrics/BlockLength: # FIXME: Remove when upstream PR is released: # https://github.com/alphagov/govuk-lint/pull/87 Enabled: true Exclude: - "**/spec/**/*" Layout/IndentHeredoc: # FIXME: Remove when we've upgraded to Ruby 2.3 Enabled: false
Update Ruby version to 2.5 for Rubocop
Update Ruby version to 2.5 for Rubocop Ruby 2.2 reached EOL on 2018-03-31 (#1), so we decided to migrate to the latest stable version.
YAML
mit
alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf
227a9fcb3ff2b4be351da2c0fcdaebbd8b7a93d0
.styleci.yml
.styleci.yml
preset: symfony finder: exclude: - "spec" path: - "src" - "tests" enabled: - short_array_syntax disabled: - phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198
preset: symfony finder: exclude: - "spec" path: - "src" - "tests" disabled: - phpdoc_annotation_without_dot # This is still buggy: https://github.com/symfony/symfony/pull/19198
Update ruleset to match symfony.
chore(style-ci): Update ruleset to match symfony.
YAML
mit
php-http/react-adapter
d62eea4046d4932f125715a8c3f5ec4f5b6251bd
packages/hu/huttons-razor.yaml
packages/hu/huttons-razor.yaml
homepage: '' changelog-type: '' hash: 036069a4af92467ae70a63f561daad01aabedf147ac5db3fd9952d22d287b98e test-bench-deps: {} maintainer: steven@steshaw.org synopsis: Quick implemention of Hutton's Razor changelog: '' basic-deps: base: ! '>=4.8 && <4.9' parsec: -any parsec-numbers: -any all-versions: - '0.1.0.0' author: Steven Shaw latest: '0.1.0.0' description-type: haddock description: '' license-name: BSD2
homepage: https://github.com/steshaw/huttons-razor changelog-type: '' hash: 8fc1587921ac78538c4e71d7abe816098711220749b687fc8f3e53e454bbc4a9 test-bench-deps: {} maintainer: steven@steshaw.org synopsis: Quick implemention of Hutton's Razor changelog: '' basic-deps: base: ! '>=4.8 && <4.9' parsec: -any parsec-numbers: -any all-versions: - '0.1.0.0' - '0.1.0.1' author: Steven Shaw latest: '0.1.0.1' description-type: haddock description: Quick implemention of Hutton's Razor license-name: BSD2
Update from Hackage at 2015-05-23T22:40:10+0000
Update from Hackage at 2015-05-23T22:40:10+0000
YAML
mit
commercialhaskell/all-cabal-metadata
02a0f20f85a3d1d8d2bf39496e53a086aaae919e
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: Build and Test on: - push jobs: build: name: Build and Test runs-on: ubuntu-latest strategy: matrix: php_version: - '7.4' - '8.0' steps: - uses: actions/checkout@v2 - name: Cache vendors uses: actions/cache@v2 with: path: | ~/.composer/cache key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} - name: Setup PHP with extensions uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php_version }} extensions: '' ini-values: memory_limit=-1 coverage: pcov tools: composer, php-cs-fixer, cs2pr - name: Run phpunit run: composer install --no-interaction - name: Run phpunit run: make phpunit.run - name: Run php-cs-fixer run: make php-cs-fixer.ci - name: Run phpstan run: make phpstan.analyse - name: Run var-dump checker run: make tests.var-dump-checker.ci # TODO uncomment when the bug in Guzzle and PHP 8.0 is fixed # - name: Upload code coverage to Scrutinizer CI # run: | # wget https://scrutinizer-ci.com/ocular.phar # php ocular.phar code-coverage:upload --format=php-clover var/phpunit/logs/clover.xml
name: Build and Test on: - push jobs: build: name: Build and Test runs-on: ubuntu-latest strategy: matrix: php_version: - '8.0' steps: - uses: actions/checkout@v2 - name: Cache vendors uses: actions/cache@v2 with: path: | ~/.composer/cache key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }} - name: Setup PHP with extensions uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php_version }} extensions: '' ini-values: memory_limit=-1 coverage: pcov tools: composer, php-cs-fixer, cs2pr - name: Run phpunit run: composer install --no-interaction - name: Run phpunit run: make phpunit.run - name: Run php-cs-fixer run: make php-cs-fixer.ci - name: Run phpstan run: make phpstan.analyse - name: Run var-dump checker run: make tests.var-dump-checker.ci # TODO uncomment when the bug in Guzzle and PHP 8.0 is fixed # - name: Upload code coverage to Scrutinizer CI # run: | # wget https://scrutinizer-ci.com/ocular.phar # php ocular.phar code-coverage:upload --format=php-clover var/phpunit/logs/clover.xml
Remove tests for php 7.4
Remove tests for php 7.4
YAML
mit
johnkrovitch/Configuration
2d6e4e207ec9b7ec9dc2d179595a78d69f536ce6
packages/le/lens-tutorial.yaml
packages/le/lens-tutorial.yaml
homepage: '' changelog-type: '' hash: 6f9bd8af13908577e3a776dd6ec98e9e707e57c670ffc2ed4df5d97f627659b8 test-bench-deps: base: <5 doctest: ! '>=0.9.12 && <0.11' maintainer: Gabriel439@gmail.com synopsis: Tutorial for the lens library changelog: '' basic-deps: base: <5 lens: -any all-versions: - '1.0.0' - '1.0.1' - '1.0.2' author: Gabriel Gonzalez latest: '1.0.2' description-type: haddock description: ! 'This is a basic tutorial that you can use to get started with the @lens@ library. This tutorial covers: * The motivation behind the @lens@ library * How to use the library for the most common use cases * How to interpret type errors * Basic familiarity with how lenses work under the hood' license-name: BSD3
homepage: '' changelog-type: '' hash: fe74f2aefe993c354e8971b330f36b3663cc66128bac6002c9f9eddea2a11277 test-bench-deps: base: <5 doctest: ! '>=0.9.12 && <0.11' maintainer: Gabriel439@gmail.com synopsis: Tutorial for the lens library changelog: '' basic-deps: base: <5 lens: -any all-versions: - '1.0.0' - '1.0.1' - '1.0.2' - '1.0.3' author: Gabriel Gonzalez latest: '1.0.3' description-type: haddock description: ! 'This is a basic tutorial that you can use to get started with the @lens@ library. This tutorial covers: * The motivation behind the @lens@ library * How to use the library for the most common use cases * How to interpret type errors * Basic familiarity with how lenses work under the hood' license-name: BSD3
Update from Hackage at 2017-07-31T01:16:22Z
Update from Hackage at 2017-07-31T01:16:22Z
YAML
mit
commercialhaskell/all-cabal-metadata
76567062527e86ddc6f2e65c0a022b631284de18
.github/workflows/build.yaml
.github/workflows/build.yaml
name: Build on: push: paths-ignore: - 'docs/**' - '**.md' pull_request: paths-ignore: - 'docs/**' - '**.md' jobs: build: name: Building on ${{matrix.os}} using ${{matrix.compiler}} runs-on: ${{matrix.os}} strategy: matrix: os: [ubuntu-18.04, ubuntu-latest, windows-latest] compiler: [fsf, community] exclude: - os: windows-latest compiler: fsf steps: - uses: actions/checkout@v2 - name: Install toolchain uses: ada-actions/toolchain@ce2021 with: distrib: ${{matrix.compiler}} target: native - name: Install Alire uses: alire-project/setup-alire@latest-stable - name: Run tests run: make tests - name: Generate coverage run: make coverage
name: Build on: push: paths-ignore: - 'docs/**' - '**.md' pull_request: paths-ignore: - 'docs/**' - '**.md' jobs: build: name: Building on ${{matrix.os}} using ${{matrix.compiler}} runs-on: ${{matrix.os}} strategy: matrix: os: [ubuntu-18.04, ubuntu-latest, windows-latest] compiler: [fsf, community] exclude: - os: windows-latest compiler: fsf steps: - uses: actions/checkout@v2 - name: Install toolchain uses: ada-actions/toolchain@ce2021 with: distrib: ${{matrix.compiler}} target: native - name: Install Alire uses: alire-project/setup-alire@latest-devel - name: Run tests run: make tests - name: Generate coverage run: make coverage
Use latest development version of Alire in GitHub Actions
Use latest development version of Alire in GitHub Actions Signed-off-by: onox <34c1d3d2d1347bea60a26f46574de21a7a79b6d5@gmail.com>
YAML
apache-2.0
onox/orka
78cb8aebccd33f69db58bb38560f1caa64466999
.github/workflows/gradle.yml
.github/workflows/gradle.yml
name: Jenetics Build on: push: branches: - master - releases/* - r7.0.0 - issues/* pull_request: branches: - master - releases/* - r7.0.0 jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest, macos-latest ] java-version: [ 17.0.1, 17, 18-ea ] steps: - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java-version }} on ${{ matrix.os }} uses: actions/setup-java@v2 with: java-version: ${{ matrix.java-version }} distribution: 'zulu' - name: Build with Gradle run: ./gradlew build
name: Jenetics Build on: push: branches: - master - releases/* - r7.0.0 - issues/* pull_request: branches: - master - releases/* - r7.0.0 jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest, macos-latest ] java-version: [ 17.0.1, 17, 18-ea ] steps: - uses: actions/checkout@v2 - name: Set up JDK ${{ matrix.java-version }} on ${{ matrix.os }} uses: actions/setup-java@v2 with: java-version: ${{ matrix.java-version }} distribution: 'zulu' - name: Build with Gradle run: ./gradlew build --stacktrace
Add '--stacktrace' to Gradle build command.
Add '--stacktrace' to Gradle build command.
YAML
apache-2.0
jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics,jenetics/jenetics
bf93d362c2e7dca2e5e7afc8db9acdfbb4049821
.github/workflows/uptime.yml
.github/workflows/uptime.yml
name: Uptime on: [push] jobs: test: runs-on: ubuntu-latest container: image: ruby:2.6.5 steps: - name: Install Unipept Gem run: | gem install unipept - uses: actions/checkout@v2 - name: Run uptime check run: | chmod u+x ./test/uptime/check_uptime_api.sh ./test/uptime/check_uptime_api.sh
name: Uptime on: [push] jobs: test: runs-on: ubuntu-latest container: image: ruby:2.6.5 steps: - name: Install Unipept Gem run: | gem install unipept - name: Install required utilities run: | apt-get update apt-get -y install bc - uses: actions/checkout@v2 - name: Run uptime check shell: bash run: | chmod u+x ./test/uptime/check_uptime_api.sh ./test/uptime/check_uptime_api.sh
Add required utilities to workflow
Add required utilities to workflow
YAML
mit
unipept/unipept,unipept/unipept,unipept/unipept,unipept/unipept,unipept/unipept
e5b74ea06fd19aacff027ff811e0118366b84ca5
tasks/build-vagrant-prepare/task.yml
tasks/build-vagrant-prepare/task.yml
--- platform: linux image: docker:///cloudfoundry/lattice-ci inputs: - name: lattice-ci - name: current-vagrant-box-version - name: next-vagrant-box-version - name: vagrant-box-commit run: path: lattice-ci/tasks/build-vagrant-prepare/run.sh params: GITHUB_SSH_KEY: some-github-ssh-key AWS_SSH_PRIVATE_KEY: some-aws-ssh-private-key
--- platform: linux image: docker:///cloudfoundry/lattice-ci inputs: - name: lattice-ci - name: vagrant-image-changes - name: current-vagrant-box-version - name: next-vagrant-box-version - name: vagrant-box-commit run: path: lattice-ci/tasks/build-vagrant-prepare/run.sh params: GITHUB_SSH_KEY: some-github-ssh-key AWS_SSH_PRIVATE_KEY: some-aws-ssh-private-key
Add vagrant path-limited git resource to prepare
Add vagrant path-limited git resource to prepare [#106017092]
YAML
apache-2.0
cloudfoundry-incubator/lattice-ci,cloudfoundry-incubator/lattice-ci,cloudfoundry-incubator/lattice-ci
4d642466fbb70f2fbd290d93b858102239459212
pkg/analyzer/pubspec.yaml
pkg/analyzer/pubspec.yaml
name: analyzer version: 0.30.0+2 author: Dart Team <misc@dartlang.org> description: Static analyzer for Dart. homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer environment: sdk: '>=1.20.0 <2.0.0' dependencies: args: '>=0.12.1 <0.14.0' charcode: ^1.1.0 collection: ^1.10.1 convert: ^2.0.0 crypto: '>=1.1.1 <3.0.0' front_end: 0.1.0-alpha.4 glob: ^1.0.3 html: '>=0.12.0 <1.14.0' isolate: '>=0.2.2 <2.0.0' kernel: 0.3.0-alpha.1 meta: ^1.0.2 package_config: '>=0.1.5 <2.0.0' path: '>=0.9.0 <2.0.0' plugin: ^0.2.0 source_span: ^1.2.0 watcher: '>=0.9.6 <0.10.0' yaml: ^2.1.2 cli_util: ^0.1.0 dev_dependencies: test_reflective_loader: ^0.1.0 typed_mock: '>=0.0.4 <1.0.0' test: ^0.12.0
name: analyzer version: 0.30.0+2 author: Dart Team <misc@dartlang.org> description: Static analyzer for Dart. homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer environment: sdk: '>=1.20.0 <2.0.0' dependencies: args: '>=0.12.1 <2.0.0' charcode: ^1.1.0 collection: ^1.10.1 convert: ^2.0.0 crypto: '>=1.1.1 <3.0.0' front_end: 0.1.0-alpha.4 glob: ^1.0.3 html: '>=0.12.0 <1.14.0' isolate: '>=0.2.2 <2.0.0' kernel: 0.3.0-alpha.1 meta: ^1.0.2 package_config: '>=0.1.5 <2.0.0' path: '>=0.9.0 <2.0.0' plugin: ^0.2.0 source_span: ^1.2.0 watcher: '>=0.9.6 <0.10.0' yaml: ^2.1.2 cli_util: ^0.1.0 dev_dependencies: test_reflective_loader: ^0.1.0 typed_mock: '>=0.0.4 <1.0.0' test: ^0.12.0
Update pkg/analyzer dependency on pkg/args to include v1.x
Update pkg/analyzer dependency on pkg/args to include v1.x pkg/analyzer currently does not create an AgrParser so the breaking behavior charge that came w/ the bump to args v1 does not affect any code R=brianwilkerson@google.com Review-Url: https://codereview.chromium.org/2955583003 .
YAML
bsd-3-clause
dart-lang/sdk,dart-archive/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk,dartino/dart-sdk,dart-archive/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dart-lang/sdk,dartino/dart-sdk,dart-archive/dart-sdk,dartino/dart-sdk,dart-lang/sdk,dart-archive/dart-sdk,dartino/dart-sdk
0a9bd3fb436be2800435a96b0ec6dfa8f372d7ae
app.yaml
app.yaml
application: YOUR_APP_ID_HERE version: 1 runtime: python27 api_version: 1 threadsafe: yes handlers: - url: /favicon\.ico static_files: favicon.ico upload: favicon\.ico - url: .* script: main.app libraries: - name: webapp2 version: "2.5.2"
application: YOUR_APP_ID_HERE version: 1 runtime: python27 api_version: 1 threadsafe: yes handlers: - url: /favicon\.ico static_files: favicon.ico upload: favicon\.ico - url: /set_webhook login: admin script: main.app - url: .* script: main.app libraries: - name: webapp2 version: "2.5.2"
Make sure only admins can call set_webhook
Make sure only admins can call set_webhook
YAML
apache-2.0
atareao/atareaobot,Coman-PL/JanuszBot,mahdikord/kordba,mehradae/telebot,erknrio/reminders-telegram-bot,Helias/telebot,sgomez/telebot,0Cristofer/telebot,anaboth/anabot,deepenmhrj/telebot,ThomasPfeiffer/SCWKbot,yoophi/telegram_bot,jgabrielfreitas/telebot,redstormbot/ztesbot,aviaryan/telebot,shapovalov/bot-appetit,talajoonbot/telebot,bakyeono/using-telegram-bot-api,martinliu0/telebot,trevorkonigludwig/bourbonguybot,alcarete/telegram-bott,ALEJANDROJ19/telebot,sigorilla/mipt-schedule-bot,nanirg/bot,mahdikord/kordba,legomannetje/telebot,r1b1/twitch,cruke/taligeram,iqbalmineraltown/telebot,simoneloru/telebot,Jarki26/TelegramBot,aulloa/Morse_Translator_Bot,nicoserafino/simple-python-telegram-bot,yukuku/telebot
4b6b67f3c199c6e310441974654b9840f7412a29
metadata/com.nononsenseapps.wanidoku.yml
metadata/com.nononsenseapps.wanidoku.yml
AntiFeatures: - NonFreeNet Categories: - Science & Education License: GPL-3.0-only SourceCode: https://gitlab.com/spacecowboy/wanidoku IssueTracker: https://gitlab.com/spacecowboy/wanidoku/issues Changelog: https://gitlab.com/spacecowboy/wanidoku/blob/HEAD/CHANGELOG.md Bitcoin: 1PdmeeGxB2iktvmtkGqwUNmYq7L9tnxjwE AutoName: WaniDoku RepoType: git Repo: https://gitlab.com/spacecowboy/wanidoku.git Builds: - versionName: 1.0.2 versionCode: 3 commit: 1.0.2 subdir: app gradle: - yes - versionName: 1.0.3 versionCode: 4 commit: 1.0.3 subdir: app gradle: - yes - versionName: 1.0.4 versionCode: 5 commit: 1.0.4 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.0.4 CurrentVersionCode: 5
AntiFeatures: - NonFreeNet Categories: - Science & Education License: GPL-3.0-only SourceCode: https://gitlab.com/spacecowboy/wanidoku IssueTracker: https://gitlab.com/spacecowboy/wanidoku/issues Changelog: https://gitlab.com/spacecowboy/wanidoku/blob/HEAD/CHANGELOG.md Bitcoin: 1PdmeeGxB2iktvmtkGqwUNmYq7L9tnxjwE AutoName: WaniDoku RepoType: git Repo: https://gitlab.com/spacecowboy/wanidoku.git Builds: - versionName: 1.0.2 versionCode: 3 commit: 1.0.2 subdir: app gradle: - yes - versionName: 1.0.3 versionCode: 4 commit: 1.0.3 subdir: app gradle: - yes - versionName: 1.0.4 versionCode: 5 commit: 1.0.4 subdir: app gradle: - yes - versionName: 1.0.5 versionCode: 6 commit: 1.0.5 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.0.5 CurrentVersionCode: 6
Update WaniDoku to 1.0.5 (6)
Update WaniDoku to 1.0.5 (6)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
e0ad36d5a409134a28e70e3a8133d178ba1ced24
recipes/ipyevents/meta.yaml
recipes/ipyevents/meta.yaml
{% set name = "ipyevents" %} {% set version = "0.0.1" %} {% set file_ext = "tar.gz" %} {% set hash_type = "sha256" %} {% set hash_value = "c389e5444fae86cd947563c1f680e98833624378abb2596fdda2deb08e435f72" %} package: name: '{{ name|lower }}' version: '{{ version }}' source: fn: '{{ name }}-{{ version }}.{{ file_ext }}' url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ file_ext }} '{{ hash_type }}': '{{ hash_value }}' build: number: 0 script: python setup.py install --single-version-externally-managed --record=record.txt requirements: build: - python - setuptools run: - python - ipywidgets >=7.0.0 test: imports: - ipyevents about: home: https://github.com/mwcraig/ipyevents license: BSD 3-clause license_family: BSD license_file: 'LICENSE.md' summary: A custom widget for returning mouse and keyboard events to Python description: A custom widget for returning mouse and keyboard events to Python dev_url: 'https://github/com/mwcraig/ipyevents' extra: recipe-maintainers: - mwcraig
{% set name = "ipyevents" %} {% set version = "0.0.1" %} {% set file_ext = "tar.gz" %} {% set hash_type = "sha256" %} {% set hash_value = "c389e5444fae86cd947563c1f680e98833624378abb2596fdda2deb08e435f72" %} package: name: '{{ name|lower }}' version: '{{ version }}' source: fn: '{{ name }}-{{ version }}.{{ file_ext }}' url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.{{ file_ext }} '{{ hash_type }}': '{{ hash_value }}' build: number: 0 noarch: python script: python setup.py install --single-version-externally-managed --record=record.txt requirements: build: - python - setuptools run: - python - ipywidgets >=7.0.0 test: imports: - ipyevents about: home: https://github.com/mwcraig/ipyevents license: BSD 3-clause license_family: BSD license_file: 'LICENSE.md' summary: A custom widget for returning mouse and keyboard events to Python description: A custom widget for returning mouse and keyboard events to Python dev_url: 'https://github/com/mwcraig/ipyevents' extra: recipe-maintainers: - mwcraig
Make this a noarch package
Make this a noarch package
YAML
bsd-3-clause
johanneskoester/staged-recipes,petrushy/staged-recipes,petrushy/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,chohner/staged-recipes,jjhelmus/staged-recipes,jochym/staged-recipes,dschreij/staged-recipes,Cashalow/staged-recipes,jochym/staged-recipes,hadim/staged-recipes,jakirkham/staged-recipes,ceholden/staged-recipes,sodre/staged-recipes,mcs07/staged-recipes,goanpeca/staged-recipes,cpaulik/staged-recipes,chrisburr/staged-recipes,shadowwalkersb/staged-recipes,birdsarah/staged-recipes,ocefpaf/staged-recipes,scopatz/staged-recipes,guillochon/staged-recipes,hadim/staged-recipes,chrisburr/staged-recipes,cpaulik/staged-recipes,Juanlu001/staged-recipes,basnijholt/staged-recipes,pmlandwehr/staged-recipes,goanpeca/staged-recipes,SylvainCorlay/staged-recipes,rvalieris/staged-recipes,jakirkham/staged-recipes,rvalieris/staged-recipes,scopatz/staged-recipes,glemaitre/staged-recipes,conda-forge/staged-recipes,igortg/staged-recipes,johanneskoester/staged-recipes,rmcgibbo/staged-recipes,birdsarah/staged-recipes,asmeurer/staged-recipes,patricksnape/staged-recipes,guillochon/staged-recipes,isuruf/staged-recipes,sannykr/staged-recipes,isuruf/staged-recipes,shadowwalkersb/staged-recipes,stuertz/staged-recipes,Cashalow/staged-recipes,Juanlu001/staged-recipes,barkls/staged-recipes,sodre/staged-recipes,basnijholt/staged-recipes,ceholden/staged-recipes,jjhelmus/staged-recipes,rmcgibbo/staged-recipes,ReimarBauer/staged-recipes,barkls/staged-recipes,ReimarBauer/staged-recipes,sodre/staged-recipes,mariusvniekerk/staged-recipes,synapticarbors/staged-recipes,igortg/staged-recipes,dschreij/staged-recipes,mariusvniekerk/staged-recipes,sannykr/staged-recipes,NOAA-ORR-ERD/staged-recipes,chohner/staged-recipes,pmlandwehr/staged-recipes,kwilcox/staged-recipes,synapticarbors/staged-recipes,asmeurer/staged-recipes,NOAA-ORR-ERD/staged-recipes,kwilcox/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,mcs07/staged-recipes,stuertz/staged-recipes,glemaitre/staged-recipes
fc06c3ea13390bf47ab094b5406a45220755d547
packages/hm/HMarkov.yaml
packages/hm/HMarkov.yaml
homepage: https://github.com/swizzard/HMarkov#readme changelog-type: '' hash: 08676db9ddb4f789d3c833607e9262c4daf51f6aec7046d54f3f5c9f8abeae81 test-bench-deps: base: -any HMarkov: -any tasty-quickcheck: -any tasty-hunit: -any random: -any tasty: -any QuickCheck: -any vector: -any maintainer: sam.raker@gmail.com synopsis: Markov-generated sequences changelog: '' basic-deps: base: ! '>=4.7 && <5' lens: -any mtl: -any random: -any vector: -any all-versions: - '1.0.0.0' - '1.0.0.1' - '1.0.0.2' author: Sam Raker latest: '1.0.0.2' description-type: haddock description: Sequences generated by trained Markov models license-name: BSD3
homepage: https://github.com/swizzard/HMarkov#readme changelog-type: '' hash: 045176ab095d729a5db0257fc34fc1b8ce51e1c96055b5955f8c03527e9694f2 test-bench-deps: base: -any HMarkov: -any tasty-quickcheck: -any tasty-hunit: -any random: -any tasty: -any QuickCheck: -any vector: -any maintainer: sam.raker@gmail.com synopsis: Markov-generated sequences changelog: '' basic-deps: base: ! '>=4.7 && <5' lens: -any mtl: -any random: -any vector: -any all-versions: - '1.0.0.0' - '1.0.0.1' - '1.0.0.2' - '1.0.0.3' author: Sam Raker latest: '1.0.0.3' description-type: haddock description: Sequences generated by trained Markov models license-name: BSD3
Update from Hackage at 2016-11-25T23:52:07Z
Update from Hackage at 2016-11-25T23:52:07Z
YAML
mit
commercialhaskell/all-cabal-metadata
751ccb1ca341e3bab33409d3f57877ae2ca1413a
packages/no/notmuch.yaml
packages/no/notmuch.yaml
homepage: https://github.com/purebred-mua/hs-notmuch changelog-type: '' hash: b3d1f8ce16eaf09c848b539517e2b9a6dcc24b2bc0fc758133ce695071f868e2 test-bench-deps: {} maintainer: frase@frase.id.au synopsis: Haskell binding to Notmuch, the mail indexer changelog: '' basic-deps: bytestring: ==0.10.* base: ! '>=4.9 && <5' time: -any text: -any notmuch: -any tagged: ! '>=0.8 && <1' containers: -any mtl: ==2.* deepseq: ! '>=1.4' profunctors: ! '>=5 && <6' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.2.0.0 author: Fraser Tweedale latest: 0.2.0.0 description-type: text description: | Binding to the *notmuch* mail indexer, providing a hopefully somewhat typesafe way to search your email. Requirements: - GHC 8.0 or higher - notmuch v0.24 or higher Contributions are welcome. license-name: GPL-3.0-only
homepage: https://github.com/purebred-mua/hs-notmuch changelog-type: '' hash: 92f1eba7fb675cfb4ce1ca8afbbd5e5761e91edfb70bdbf628edbc6b16a49ddb test-bench-deps: {} maintainer: frase@frase.id.au synopsis: Haskell binding to Notmuch, the mail indexer changelog: '' basic-deps: bytestring: ==0.10.* base: ! '>=4.9 && <5' time: -any text: -any filepath: ! '>=1.0' notmuch: -any tagged: ! '>=0.8 && <1' containers: -any mtl: ==2.* deepseq: ! '>=1.4' profunctors: ! '>=5 && <6' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.2.0.0 - 0.3.0.0 author: Fraser Tweedale latest: 0.3.0.0 description-type: text description: | Binding to the *notmuch* mail indexer, providing a hopefully somewhat typesafe way to search your email. Requirements: - GHC 8.0 or higher - notmuch v0.26 or higher Contributions are welcome. license-name: GPL-3.0-only
Update from Hackage at 2019-06-09T05:53:38Z
Update from Hackage at 2019-06-09T05:53:38Z
YAML
mit
commercialhaskell/all-cabal-metadata
3839e72c07e3c54f492f020bdd6b4a8681e4949b
packages/rf/rfc1751.yaml
packages/rf/rfc1751.yaml
homepage: https://github.com/xenog/rfc1751.git#readme changelog-type: '' hash: 018e25707bf64bb4f02937fcfe96cf34a41d7c9758b05c71fb44d6f7aa9089ea test-bench-deps: cereal: -any bytestring: -any base: -any hspec: -any rfc1751: -any QuickCheck: -any vector: -any maintainer: xenog@protonmail.com synopsis: RFC-1751 library for Haskell changelog: '' basic-deps: cereal: -any bytestring: -any base: ==4.* vector: -any all-versions: - 0.1.0 - 0.1.1 - 0.1.2 author: Jean-Pierre Rupp latest: 0.1.2 description-type: haddock description: Convert 128-bit ByteString to/from 12 English words. license-name: LicenseRef-PublicDomain
homepage: https://github.com/xenog/rfc1751.git#readme changelog-type: '' hash: dd17cbe8d16bfc9e6c28ef516325573a88e63f465818277dbed60e911cb4c483 test-bench-deps: cereal: -any bytestring: -any base: -any hspec: -any rfc1751: -any QuickCheck: -any vector: -any maintainer: xenog@protonmail.com synopsis: RFC-1751 library for Haskell changelog: '' basic-deps: cereal: -any bytestring: -any base: ==4.* vector: -any all-versions: - 0.1.0 - 0.1.1 - 0.1.2 - 0.1.3 author: Jean-Pierre Rupp latest: 0.1.3 description-type: haddock description: Convert 128-bit ByteString to/from 12 English words. license-name: MIT
Update from Hackage at 2020-06-12T13:14:23Z
Update from Hackage at 2020-06-12T13:14:23Z
YAML
mit
commercialhaskell/all-cabal-metadata
c1a69fe0455ee8f89e7fc3aea55372aeff20c906
config/cucumber.yml
config/cucumber.yml
<% rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --strict --tags ~@wip" %> default: <%= std_opts %> features wip: --tags @wip:3 --wip features rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
<% rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" rerun_opts = rerun.to_s.strip.empty? ? "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} features" : "--format #{ENV['CUCUMBER_FORMAT'] || 'pretty'} #{rerun}" std_opts = "--format #{ENV['CUCUMBER_FORMAT'] || 'progress'} --tags ~@wip" %> default: <%= std_opts %> features wip: --tags @wip:3 --wip features rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
Remove strict settings, cause pending tests make rake fail.
Remove strict settings, cause pending tests make rake fail.
YAML
agpl-3.0
sozialhelden/wheelmap,sozialhelden/wheelmap,sozialhelden/wheelmap,sozialhelden/wheelmap,sozialhelden/wheelmap
207f0ab25f645406649ba0659cbdd5d6425d38e6
.github/workflows/update-transitive-dependenies.yaml
.github/workflows/update-transitive-dependenies.yaml
name: Update Transitive Dependencies on: schedule: - cron: '15 11 * * 1' # weekly, on Monday morning (UTC) workflow_dispatch: jobs: update: name: Tests runs-on: macos-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12 - name: remove and re-create lock file run: | rm package-lock.json npm install - name: Create Pull Request uses: peter-evans/create-pull-request@v2 with: token: ${{ secrets.ZORGBORT_TOKEN }} commit-message: Update Transitive Dependencies title: Update Transitive Dependencies body: | - Dependency updates Auto-generated by [create-pull-request][1] [1]: https://github.com/peter-evans/create-pull-request branch: auto-update-dependencies labels: dependencies,automerge
name: Update Transitive Dependencies on: schedule: - cron: '15 11 * * 0' # weekly, on Sunday morning (UTC) workflow_dispatch: jobs: update: name: Tests runs-on: macos-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12 - name: remove and re-create lock file run: | rm package-lock.json npm install - name: Create Pull Request uses: peter-evans/create-pull-request@v3 with: token: ${{ secrets.ZORGBORT_TOKEN }} commit-message: Update Transitive Dependencies title: Update Transitive Dependencies body: | - Dependency updates Auto-generated by [create-pull-request][1] [1]: https://github.com/peter-evans/create-pull-request branch: auto-update-dependencies labels: dependencies,automerge
Update our auto update action
Update our auto update action And moved auto update to sunday to prevent conflicts with dependabot.
YAML
mit
ilios/frontend,dartajax/frontend,dartajax/frontend,jrjohnson/frontend,ilios/frontend,jrjohnson/frontend
cb7bf8aff917146dec800b4c81d40a9cf63b9860
conda/meta.yaml
conda/meta.yaml
package: name: "spark-nlp" version: 3.4.0 app: entry: spark-nlp summary: Natural Language Understanding Library for Apache Spark. source: fn: spark-nlp-3.4.0.tar.gz url: https://files.pythonhosted.org/packages/2e/a7/b8039340527323f285cb011ddf48f9e0a2df2c43d9e4cce396b571aeb3bb/spark-nlp-3.4.0.tar.gz sha256: 525a596b3fabbfec4f3ab4dbd39fc7b7d5ef30d81127c47644521b05983c5901 build: noarch: generic number: 0 script: "python -m pip install . --no-deps -vv" requirements: build: - python run: - python about: home: https://github.com/JohnSnowLabs/spark-nlp/ license: Apache License 2.0 license_family: APACHE license_url: https://github.com/JohnSnowLabs/spark-nlp/blob/master/LICENSE description: John Snow Labs Spark-NLP is a natural language processing library built on top of Apache Spark ML. It provides simple, performant & accurate NLP annotations for machine learning pipelines, that scale easily in a distributed environment. summary: Natural Language Understanding Library for Apache Spark.
package: name: "spark-nlp" version: 3.4.1 app: entry: spark-nlp summary: Natural Language Understanding Library for Apache Spark. source: fn: spark-nlp-3.4.1.tar.gz url: https://files.pythonhosted.org/packages/1c/70/83dd4bedae58293b06c91e9248fc7060f67113d3272593eb29b0a8f713a3/spark-nlp-3.4.1.tar.gz sha256: 435547a5f6e12e62466c9829854b5a7d7a93b2a1858fb8498ce8a1903b4cd9ff build: noarch: generic number: 0 script: "python -m pip install . --no-deps -vv" requirements: build: - python run: - python about: home: https://github.com/JohnSnowLabs/spark-nlp/ license: Apache License 2.0 license_family: APACHE license_url: https://github.com/JohnSnowLabs/spark-nlp/blob/master/LICENSE description: John Snow Labs Spark-NLP is a natural language processing library built on top of Apache Spark ML. It provides simple, performant & accurate NLP annotations for machine learning pipelines, that scale easily in a distributed environment. summary: Natural Language Understanding Library for Apache Spark.
Update Conda to 3.4.1 release [skip test]
Update Conda to 3.4.1 release [skip test]
YAML
apache-2.0
JohnSnowLabs/spark-nlp,JohnSnowLabs/spark-nlp,JohnSnowLabs/spark-nlp,JohnSnowLabs/spark-nlp
4fb3dc367d1004774a3140b83b07dc5b0d775d98
roles/common/tasks/main.yml
roles/common/tasks/main.yml
--- - name: install common packages apt: pkg={{ item }} update_cache=yes state=present with_items: - python-pycurl - python-apt - vim-nox - mc - htop - ntp - less - ncurses-term - name: create common directory for downloads file: dest={{ common_download_dir }} state=directory
--- - name: install common packages apt: pkg={{ item }} update_cache=yes state=present with_items: - python-pycurl - python-apt - vim-nox - mc - htop - ntp - less - ncurses-term - git - screen - name: create common directory for downloads file: dest={{ common_download_dir }} state=directory
Install screen and git on all servers
Install screen and git on all servers
YAML
apache-2.0
microservice-hackathon/infrastructure,microservice-hackathon/ansible-microservice-hackathon
d8525ad977bada9ca4100899e77e701d230b2e39
roles/osx/defaults/main.yml
roles/osx/defaults/main.yml
--- osx: brew: taps: - caskroom/cask packages: - ansible - autojump - brew-cask - cowsay - fish - fortune - reattach-to-user-namespace - tmux custom_packages: - name: emacs options: - cocoa casks: - 1password - alfred - dash - dropbox - firefox - google-chrome - karabiner - marked - noizio - skitch - spotify - textexpander dotfiles: links: - src: tmux/tmux.conf dest: ~/.tmux.conf - src: fish dest: ~/.config/fish - src: git/gitconfig dest: ~/.gitconfig - src: git/gitignore dest: ~/.gitignore - src: pry/pryrc dest: ~/.pryrc
--- osx: brew: taps: - caskroom/cask packages: - ansible - autojump - brew-cask - cowsay - fish - fortune - reattach-to-user-namespace - terminal-notifier - tmux custom_packages: - name: emacs options: - cocoa casks: - 1password - alfred - dash - dropbox - firefox - google-chrome - karabiner - marked - noizio - skitch - spotify - textexpander dotfiles: links: - src: tmux/tmux.conf dest: ~/.tmux.conf - src: fish dest: ~/.config/fish - src: git/gitconfig dest: ~/.gitconfig - src: git/gitignore dest: ~/.gitignore - src: pry/pryrc dest: ~/.pryrc
Install terminal-notifier on my OS X machines.
Install terminal-notifier on my OS X machines.
YAML
mit
alloy-d/alloy-d.nyc
7c7cc466ae211d1addb3c2425363e52491aa4173
roles/uchiwa/tasks/main.yml
roles/uchiwa/tasks/main.yml
--- - name: install uchiwa yum: name: '{{ uchiwa_package_name }}' state: installed when: manage_packages|default(false) - name: configure uchiwa template: src: templates/uchiwa.json.j2 dest: '{{ uchiwa_file_path }}' notify: - restart uchiwa - name: ensure uchiwa is started and enabled at boot service: name: '{{ uchiwa_service_name }}' state: started enabled: yes when: manage_services|default(false) - name: register uchiwa firewal ports set_fact: firewall_ports: > {{ firewall_ports + ['{{ uchiwa_port }}'] }}
--- - name: install uchiwa yum: name: '{{ uchiwa_package_name }}' state: installed when: manage_packages|default(false) - name: configure uchiwa template: src: templates/uchiwa.json.j2 dest: '{{ uchiwa_file_path }}' notify: - restart uchiwa - name: ensure uchiwa is started and enabled at boot service: name: '{{ uchiwa_service_name }}' state: started enabled: yes when: manage_services|default(false) - name: register uchiwa firewal ports set_fact: firewall_ports: > {{ firewall_ports + [ uchiwa_port ] }}
Use properly the uchiwa_port inside jinja
Use properly the uchiwa_port inside jinja
YAML
apache-2.0
centos-opstools/opstools-ansible,centos-opstools/opstools-ansible,jbadiapa/opstools-ansible-1
efc04838100a33fe780f61b38844d733b0440814
config/settings.yml
config/settings.yml
apps_with_migrated_tagging: - businesssupportfinder - calculators - calendars - licencefinder - smartanswers
apps_with_migrated_tagging: - businesssupportfinder - calculators - calendars - licencefinder - smartanswers - policy-publisher
Add policy-publisher to list of migrated apps
Add policy-publisher to list of migrated apps
YAML
mit
alphagov/panopticon,alphagov/panopticon,alphagov/panopticon,alphagov/panopticon
8ca413cbdc496fd82a9dbf512718771d68dd9d59
.github/workflows/node.js.yml
.github/workflows/node.js.yml
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Node.js CI on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x, 16.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} cache: 'npm' - run: npm ci - run: npm run build --if-present - run: npm run test --if-present
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Node.js CI - Build & Deploy to GitHub Pages on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build-and-deploy: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x, 16.x] steps: - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} cache: 'npm' - name: Checkout 🛎️ - uses: actions/checkout@v2 - name: Build 🔧 run: | npm ci npm run export --if-present npm run test --if-present touch ./out/.nojekyll - name: Deploy 🚀 uses: JamesIves/github-pages-deploy-action@v4.2.5 with: branch: gh-pages folder: out
Add action deploy to github pages
Add action deploy to github pages
YAML
mit
ravuthz/ravuthz.github.io,ravuthz/ravuthz.github.io
1613185fbc29b6473c04e45c0e8661a1591bb88d
.github/workflows/node.js.yml
.github/workflows/node.js.yml
name: Build and test Upload Tool on: push: branches: [ develop ] pull_request: types: [ submitted ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run build - run: npm test
name: Build and test Upload Tool on: push: branches: [ develop, uploader-2020 ] pull_request: types: [ submitted ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run build - run: npm test
Add uploader-2020 to github actions
Add uploader-2020 to github actions
YAML
mit
openaq/openaq-upload,openaq/openaq-upload,openaq/openaq-upload
d849e755401f27ef424f2b9fca5dd3f0a60d7573
.github/workflows/release.yml
.github/workflows/release.yml
name: Build, Test, and Publish on release on: release: types: [published] branches: [master] jobs: build: name: Build, test and publish runs-on: ubuntu-latest steps: - uses: actions/checkout@master - uses: actions/setup-node@v1 with: node-version: 14 registry-url: 'https://registry.npmjs.org' - run: npm install - run: npm test - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
name: Build, Test, and Publish on release on: release: types: [published] branches: [main] jobs: build: name: Build, test and publish runs-on: ubuntu-latest steps: - uses: actions/checkout@master - uses: actions/setup-node@v1 with: node-version: 14 registry-url: 'https://registry.npmjs.org' - run: npm install - run: npm test - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
Set main to default branch (patch)
Set main to default branch (patch)
YAML
mit
zrrrzzt/difi
82c96f33232b10d416431bc3781f27aaddbbee76
test/tophat/test_tophat.yaml
test/tophat/test_tophat.yaml
cluster: name: odyssey profile: lsf cores: 1 log_dir: log dir: results: results/test/tophat1 data: data meta: meta tmp: tmp gtf: test/data/E_coli_k12.ASM584v1.15.gtf ref: test/data/bowtie/e_coli program: tophat: tophat bowtie: bowtie input: - [test/data/s_1_1_10k.fq, test/data/s_1_2_10k.fq] - [test/data/s_1_1_10k_last.fq] stage: tophat: name: tophat program: tophat quality_format: None max_errors: 2 run: [tophat]
cluster: name: odyssey profile: lsf cores: 1 log_dir: log dir: results: results/test/tophat1 data: data meta: meta tmp: tmp gtf: test/data/E_coli_k12.ASM584v1.15.gtf ref: test/data/bowtie/e_coli program: tophat: tophat bowtie: bowtie input: - [test/data/s_1_1_10k.fq, test/data/s_1_2_10k.fq] - [test/data/s_1_1_10k_last.fq] stage: tophat: name: tophat program: tophat quality_format: illumina max_errors: 2 run: [tophat]
Use illumina file format for testing.
Use illumina file format for testing.
YAML
mit
roryk/bipy,roryk/bipy
c60d0434e0f2ece91e20d620fa7043b3d8f85c0c
dockercloud.yml
dockercloud.yml
api-server: autoredeploy: true command: node api-server environment: - VIRTUAL_HOST=api.cloud image: cotedemo/dockercloud-microservices:api ports: - '3000' restart: always tags: - nodecluster-name=services time-service: autoredeploy: true command: node time-service image: cotedemo/dockercloud-microservices:time tags: - nodecluster-name=services restart: always proxy: image: dockercloud/haproxy:1.5.1 links: - api-server ports: - '80:80' - '443:443' restart: always roles: - global tags: - nodecluster-name=proxy
api-server: autoredeploy: true command: node api-server environment: - VIRTUAL_HOST=api.cloud image: cotedemo/dockercloud-microservices:api ports: - '3000' restart: always tags: - services time-service: autoredeploy: true command: node time-service image: cotedemo/dockercloud-microservices:time tags: - services restart: always proxy: image: dockercloud/haproxy:1.5.1 links: - api-server ports: - '80:80' - '443:443' restart: always roles: - global tags: - proxy
Use standard tags for deployment instead of nodecluster-name tags
Use standard tags for deployment instead of nodecluster-name tags
YAML
mit
dashersw/dockercloud-microservices
08c68e680393d0dc6dea075e85b5e8203bf96436
cluster/manifests/aws-node-decommissioner/cronjob.yaml
cluster/manifests/aws-node-decommissioner/cronjob.yaml
apiVersion: batch/v1 kind: CronJob metadata: name: aws-node-decommissioner namespace: "kube-system" labels: application: kubernetes component: aws-node-decommissioner spec: schedule: "*/5 * * * *" concurrencyPolicy: Forbid startingDeadlineSeconds: 600 successfulJobsHistoryLimit: 1 failedJobsHistoryLimit: 1 jobTemplate: spec: activeDeadlineSeconds: 300 backoffLimit: 1 template: metadata: labels: application: kubernetes component: aws-node-decommissioner annotations: logging/destination: "{{.Cluster.ConfigItems.log_destination_infra}}" spec: serviceAccountName: aws-node-decommissioner restartPolicy: Never containers: - name: aws-node-decommissioner image: container-registry.zalando.net/teapot/aws-node-decommissioner:master-9e467a36-master-14 args: - --debug resources: limits: cpu: 100m memory: 100Mi requests: cpu: 100m memory: 100Mi
apiVersion: batch/v1 kind: CronJob metadata: name: aws-node-decommissioner namespace: "kube-system" labels: application: kubernetes component: aws-node-decommissioner spec: schedule: "*/5 * * * *" concurrencyPolicy: Forbid startingDeadlineSeconds: 600 successfulJobsHistoryLimit: 1 failedJobsHistoryLimit: 1 jobTemplate: spec: activeDeadlineSeconds: 300 backoffLimit: 1 template: metadata: labels: application: kubernetes component: aws-node-decommissioner annotations: logging/destination: "{{.Cluster.ConfigItems.log_destination_infra}}" spec: serviceAccountName: aws-node-decommissioner restartPolicy: Never containers: - name: aws-node-decommissioner image: container-registry.zalando.net/teapot/aws-node-decommissioner:master-dacee4e8-master-15 args: - --debug resources: limits: cpu: 100m memory: 100Mi requests: cpu: 100m memory: 100Mi
Update aws-node-decommissioner for multi-arch image
Update aws-node-decommissioner for multi-arch image
YAML
mit
zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws
b34f3c51f044673c1eadb5dc97714e39bac13215
recipes/pyribs/meta.yaml
recipes/pyribs/meta.yaml
{% set name = "pyribs" %} {% set pypi_name = "ribs" %} {% set version = "0.3.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ pypi_name[0] }}/{{ pypi_name }}/ribs-{{ version }}.tar.gz sha256: 8b4c037d412e94cb488eeb33a9d5a5f139b9fe9826173d9acea3c392e7f786f9 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python >=3.6 run: - pyribs-base =={{ version }} # Remaining deps come from the ribs[all] extra. - matplotlib >=0.3.0 test: imports: - ribs - ribs.visualize commands: - pip check requires: - pip about: home: https://github.com/icaros-usc/pyribs summary: A bare-bones Python library for quality diversity optimization. license: MIT license_file: LICENSE extra: recipe-maintainers: - btjanaka
{% set name = "pyribs" %} {% set pypi_name = "ribs" %} {% set version = "0.3.0" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ pypi_name[0] }}/{{ pypi_name }}/ribs-{{ version }}.tar.gz sha256: 8b4c037d412e94cb488eeb33a9d5a5f139b9fe9826173d9acea3c392e7f786f9 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - pip - python >=3.6 run: - python >=3.6 - pyribs-base =={{ version }} # Remaining deps come from the ribs[all] extra. - matplotlib >=0.3.0 test: imports: - ribs - ribs.visualize commands: - pip check requires: - pip about: home: https://github.com/icaros-usc/pyribs summary: A bare-bones Python library for quality diversity optimization. license: MIT license_file: LICENSE extra: recipe-maintainers: - btjanaka
Add python to pyribs recipe
Add python to pyribs recipe
YAML
bsd-3-clause
kwilcox/staged-recipes,stuertz/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,jochym/staged-recipes,scopatz/staged-recipes,kwilcox/staged-recipes,patricksnape/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,patricksnape/staged-recipes,jakirkham/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,ReimarBauer/staged-recipes,ReimarBauer/staged-recipes,mariusvniekerk/staged-recipes,conda-forge/staged-recipes,igortg/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,scopatz/staged-recipes,jochym/staged-recipes
001e5e6d19d0e84956c4c0f337f84ddc6be4e2ed
provisioning/mdot-dev.yml
provisioning/mdot-dev.yml
--- - hosts: all tasks: - include: tasks/apt_system.yml - name: installing virtualenv... sudo: yes apt: pkg={{ item }} state=installed update_cache=yes with_items: - python-virtualenv - npm - build-essential - name: installing nodeenv... pip: name=nodeenv virtualenv={{ virtualenv_path }} - name: converting virtualenv into nodeenv... command: /vagrant/venv/bin/nodeenv -p chdir=/vagrant/venv/ - name: installing less... sudo: yes npm: name=less global=yes - include: tasks/apt_git.yml - include: tasks/mdot.yml - name: check for project already created... stat: path=/vagrant/venv/yourporject register: mdotproj - name: create project... command: /vagrant/venv/bin/django-admin.py startproject yourproject chdir=/vagrant/venv/ when: mdotproj.stat.exists - name: copy urls.py into place... sudo: yes template: src="templates/urls.py" dest="/vagrant/venv/yourproject/yourproject/" - name: copy settings.py into place... sudo: yes template: src="templates/settings.py" dest="/vagrant/venv/yourproject/yourproject/" - name: sync mdot database... django_manage: command=syncdb app_path={{ virtualenv_path }}/yourproject/ virtualenv={{ virtualenv_path }}
--- - hosts: all tasks: - include: tasks/apt_system.yml - name: installing virtualenv... sudo: yes apt: pkg={{ item }} state=installed update_cache=yes with_items: - python-virtualenv - npm - build-essential - name: installing nodeenv... pip: name=nodeenv virtualenv={{ virtualenv_path }} - name: converting virtualenv into nodeenv... command: /vagrant/venv/bin/nodeenv -p chdir=/vagrant/venv/ - name: installing less... sudo: yes npm: name=less global=yes - include: tasks/apt_git.yml - include: tasks/mdot.yml - name: check for project already created... stat: path=/vagrant/venv/yourporject register: mdotproj - name: create project... command: /vagrant/venv/bin/django-admin.py startproject yourproject chdir=/vagrant/venv/ when: not mdotproj.stat.exists - name: copy urls.py into place... sudo: yes template: src="templates/urls.py" dest="/vagrant/venv/yourproject/yourproject/" - name: copy settings.py into place... sudo: yes template: src="templates/settings.py" dest="/vagrant/venv/yourproject/yourproject/" - name: sync mdot database... django_manage: command=syncdb app_path={{ virtualenv_path }}/yourproject/ virtualenv={{ virtualenv_path }}
Create the project when it does *not* exist, rather than when it does.
Create the project when it does *not* exist, rather than when it does.
YAML
apache-2.0
abztrakt/mdot-vagrant
3a0e0cca572b3eb4fd0a57c38482a731752c6ea2
elk.yml
elk.yml
# vim: ft=ansible --- - hosts: elasticsearch tags: - elasticsearch - elk vars_files: - "{{ inventory_dir }}/../vars/main.yml" roles: - { role: 'geerlingguy.repo-epel' } - { role: 'leifmadsen.elasticsearch' } - hosts: logstash tags: - logstash - elk vars_files: - "{{ inventory_dir }}/../vars/main.yml" roles: - { role: 'geerlingguy.repo-epel' } - { role: 'leifmadsen.logstash' } - hosts: kibana tags: - kibana - elk vars_files: - "{{ inventory_dir }}/../vars/main.yml" roles: - { role: 'geerlingguy.repo-epel' } - { role: 'geerlingguy.nginx' } - { role: 'leifmadsen.kibana-4' } post_tasks: - name: Validate SELinux is enabled selinux: policy: targeted state: enforcing - name: SELinux -- Enable httpd_can_network_connect seboolean: name: httpd_can_network_connect state: yes persistent: yes
# vim: ft=ansible --- - hosts: elasticsearch tags: - elasticsearch - elk vars_files: - "{{ inventory_dir }}/../vars/main.yml" roles: - { role: 'geerlingguy.repo-epel' } - { role: 'leifmadsen.elasticsearch' } - hosts: logstash tags: - logstash - elk vars_files: - "{{ inventory_dir }}/../vars/main.yml" roles: - { role: 'geerlingguy.repo-epel' } - { role: 'geerlingguy.java' } - { role: 'leifmadsen.logstash' } - hosts: kibana tags: - kibana - elk vars_files: - "{{ inventory_dir }}/../vars/main.yml" roles: - { role: 'geerlingguy.repo-epel' } - { role: 'geerlingguy.nginx' } - { role: 'leifmadsen.kibana-4' } post_tasks: - name: Validate SELinux is enabled selinux: policy: targeted state: enforcing - name: SELinux -- Enable httpd_can_network_connect seboolean: name: httpd_can_network_connect state: yes persistent: yes
Add java to logstash deployment node
Add java to logstash deployment node
YAML
apache-2.0
redhat-nfvpe/toad,redhat-nfvpe/ansible-cira,leifmadsen/toad
d5899ae834aa668dabadbea3f5718444f5f9c5e9
docs/_book.yaml
docs/_book.yaml
upper_tabs: # Tabs left of dropdown menu - include: /_upper_tabs_left.yaml - include: /api_docs/_upper_tabs_api.yaml # Dropdown menu - name: Resources path: /resources is_default: true menu: - include: /resources/_menu_toc.yaml lower_tabs: # Subsite tabs other: - name: Guide contents: - title: Overview path: /datasets/overview - title: Datasets path: /datasets/datasets - title: Splits path: /datasets/splits - title: Add a dataset path: /datasets/add_dataset - name: API skip_translation: true contents: - include: /datasets/api_docs/python/_toc.yaml - include: /_upper_tabs_right.yaml
upper_tabs: # Tabs left of dropdown menu - include: /_upper_tabs_left.yaml - include: /api_docs/_upper_tabs_api.yaml # Dropdown menu - name: Resources path: /resources is_default: true menu: - include: /resources/_menu_toc.yaml lower_tabs: # Subsite tabs other: - name: Datasets contents: - title: Datasets path: /datasets/datasets - name: Guide contents: - title: Overview path: /datasets/overview - title: Splits path: /datasets/splits - title: Add a dataset path: /datasets/add_dataset - name: API skip_translation: true contents: - include: /datasets/api_docs/python/_toc.yaml - include: /_upper_tabs_right.yaml
Add datasets tab to top of page
Add datasets tab to top of page PiperOrigin-RevId: 229652555
YAML
apache-2.0
tensorflow/datasets,tensorflow/datasets,tensorflow/datasets,tensorflow/datasets,tensorflow/datasets
8b8510864f2c97fc126dbbb78a5351aada06ef28
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.9' 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 to master
Switch back the docs version to master
YAML
mit
maxjacobson/rubocop,bbatsov/rubocop,tejasbubane/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,bbatsov/rubocop,rrosenblum/rubocop,maxjacobson/rubocop,tejasbubane/rubocop,rrosenblum/rubocop,maxjacobson/rubocop
0a18f9c361226762c651c2e99c3150a708d03fe7
metadata/org.getdisconnected.libreipsum.yml
metadata/org.getdisconnected.libreipsum.yml
Categories: - Development - Writing License: GPL-3.0-or-later WebSite: https://get-disconnected.org/apps/LibreIpsum SourceCode: https://codeberg.org/getdisconnected/LibreIpsum IssueTracker: https://codeberg.org/getdisconnected/LibreIpsum/issues AutoName: Libre Ipsum RepoType: git Repo: https://codeberg.org/getdisconnected/LibreIpsum.git Builds: - versionName: 0.1.0 versionCode: 100 commit: v0.1.0 subdir: app gradle: - yes - versionName: 0.1.1 versionCode: 101 commit: v0.1.1 subdir: app gradle: - yes - versionName: 0.1.2 versionCode: 102 commit: v0.1.2 subdir: app gradle: - yes - versionName: 0.1.3 versionCode: 103 commit: v0.1.3 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 0.1.3 CurrentVersionCode: 103
Categories: - Development - Writing License: GPL-3.0-or-later WebSite: https://get-disconnected.org/apps/LibreIpsum SourceCode: https://codeberg.org/getdisconnected/LibreIpsum IssueTracker: https://codeberg.org/getdisconnected/LibreIpsum/issues AutoName: Libre Ipsum RepoType: git Repo: https://codeberg.org/getdisconnected/LibreIpsum.git Builds: - versionName: 0.1.0 versionCode: 100 commit: v0.1.0 subdir: app gradle: - yes - versionName: 0.1.1 versionCode: 101 commit: v0.1.1 subdir: app gradle: - yes - versionName: 0.1.2 versionCode: 102 commit: v0.1.2 subdir: app gradle: - yes - versionName: 0.1.3 versionCode: 103 commit: v0.1.3 subdir: app gradle: - yes - versionName: 0.1.4 versionCode: 104 commit: v0.1.4 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 0.1.4 CurrentVersionCode: 104
Update Libre Ipsum to 0.1.4 (104)
Update Libre Ipsum to 0.1.4 (104)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
2d7533a6a790d450a1a2f8cc3b48973784ae4288
.github/ISSUE_TEMPLATE/Bug_report.yml
.github/ISSUE_TEMPLATE/Bug_report.yml
name: 🐛 Bug report description: Something does not work the way we promised labels: - bug body: - type: checkboxes attributes: label: Before you start - checklist options: - label: I followed instructions in documentation written for my React-Calendar version required: true - label: I have checked if this bug is not already reported required: true - type: textarea attributes: label: Description description: Short description of the bug you encountered. validations: required: true - type: textarea attributes: label: Steps to reproduce description: | Steps to reproduce the behavior. Example: 1. Go to '…' 2. Click on '…' 3. Scroll down to '…' 4. See error validations: required: true - type: textarea attributes: label: Expected behavior description: What is the expected behavior? validations: required: true - type: textarea attributes: label: Actual behavior description: What is the actual behavior? validations: required: true - type: textarea attributes: label: Additional information description: If applicable, add screenshots (preferably with browser console open) to help explain your problem. - type: textarea attributes: label: Environment description: | Example: - **Browser (if applicable)**: Chrome 96, Firefox 94 - **React-Calendar version**: 3.0.0 - **React version**: 17.0.0 value: | - **Browser (if applicable)**: - **React-Calendar version**: - **React version**: render: markdown
name: 🐛 Bug report description: Something does not work the way we promised labels: - bug body: - type: checkboxes attributes: label: Before you start - checklist options: - label: I followed instructions in documentation written for my React-Calendar version required: true - label: I have checked if this bug is not already reported required: true - type: textarea attributes: label: Description description: Short description of the bug you encountered. validations: required: true - type: textarea attributes: label: Steps to reproduce description: | Steps to reproduce the behavior. Example: 1. Go to '…' 2. Click on '…' 3. Scroll down to '…' 4. See error validations: required: true - type: textarea attributes: label: Expected behavior description: What is the expected behavior? validations: required: true - type: textarea attributes: label: Actual behavior description: What is the actual behavior? validations: required: true - type: textarea attributes: label: Additional information description: If applicable, add screenshots (preferably with browser console open) to help explain your problem. - type: textarea attributes: label: Environment description: | Example: - **Browser (if applicable)**: Chrome 96, Firefox 94 - **React-Calendar version**: 3.0.0 - **React version**: 17.0.0 value: | - **Browser (if applicable)**: - **React-Calendar version**: - **React version**:
Fix Environment rendered as markdown in YAML issue form
Fix Environment rendered as markdown in YAML issue form
YAML
mit
wojtekmaj/react-calendar,wojtekmaj/react-calendar,wojtekmaj/react-calendar
3c5e7b8c9b649025400f98449d30a362c0a062cc
scripts/people/danShumway.yaml
scripts/people/danShumway.yaml
# Hi! I coppied this from threebean - blog: http://blog.latinforimagination.com/foss/ feed: http://blog.latinforimagination.com/category/humanitarian_foss/feed/ forges: - https://github.com/danShumway - http://bitbucket.org/danShumway irc: danShumway name: Daniel Shumway rit_dce: drs7453 litreview1: http://blog.latinforimagination.com/lit-review-the-success-of-open-source-chpt-3/ quiz1: http://blog.latinforimagination.com/quiz-writeup-principles-of-open-source/
# Hi! I coppied this from threebean - blog: http://bridgeurl.com/danshumway-blogs feed: http://www.rssmix.com/u/3886341/rss.xml forges: - https://github.com/danShumway - http://bitbucket.org/danShumway irc: danShumway name: Daniel Shumway rit_dce: drs7453 litreview1: http://blog.latinforimagination.com/lit-review-the-success-of-open-source-chpt-3/ quiz1: http://blog.latinforimagination.com/quiz-writeup-principles-of-open-source/
Set up new blog system that works better for the main class. Maintaining two blogs and combining them into a singular feed/webpage allows a number of advantages :
Set up new blog system that works better for the main class. Maintaining two blogs and combining them into a singular feed/webpage allows a number of advantages : - I don't have to worry about overposting on the main blog. - I don't have to worry about keeping styles consistent between company posts and class posts. - I have a greater freedom of what I can post about on the FOSS blog, and what I can reference on it. - I can still tag posts from the main blog and submit them to the class. - When I do submit posts to the class, I can present them next to non-class posts - this way: people reading can use the RSS feeds to get *only* the FOSS posts. but when they go to the blogs, they'll be able to also see the other posts. Signed-off-by: Daniel Shumway <shumway.danny@gmail.com> Former-commit-id: 6c208cdfbcd876fad8d7c3e29d08e76b71c0c028 [formerly 01a01d7814e3d8221ddcb7d2c7f4ea1986313c67] [formerly 57d6f256bd0e365487e008897301297aa2bd79eb] Former-commit-id: a46033c4aff19455af2d28ade11c5c5fb32a0fc4 [formerly 4b6157655840ee14b7e834ba875728227b8bf28a] Former-commit-id: 78e6515dea473ae505d0efcc93d4ebd2fefdb360
YAML
apache-2.0
ritjoe/ofCourse,sctjkc01/ofCourse,ryansb/ofCourse,ritjoe/ofCourse,sctjkc01/ofCourse,ryansb/ofCourse
8d223ff38331605a32516ccbab64d29880a2717a
meta.yaml
meta.yaml
package: name: statdyn version: {{ GIT_DESCRIBE_TAG }} source: path: . requirements: build: - click - python - setuptools - setuptools_scm run: - python - setuptools - hoomd - click - scipy - pandas - numba - quaternion build: entry_points: - sdrun = statdyn.sdrun.main:sdrun preserve_egg_dir: True script: python setup.py install number: {{ GIT_DESCRIBE_NUMBER }} test: requires: - pytest - hypothesis source_files: - test/* commands: - python -c "import statdyn" - pytest
package: name: statdyn version: {{ GIT_DESCRIBE_TAG }} source: path: . requirements: build: - click 6.7* - python 3.6* - setuptools 36.2.2 - setuptools_scm run: - python 3.6* - setuptools - hoomd 2.1* - click 6.7* - scipy 0.19* - pandas 0.20* - numba 0.34* - numpy 1.13.1 - quaternion 2017.06.28* build: noarch: python entry_points: - sdrun = statdyn.sdrun.main:sdrun preserve_egg_dir: True script: python setup.py install number: {{ GIT_DESCRIBE_NUMBER }} test: requires: - pytest - hypothesis source_files: - test/* commands: - python -c "import statdyn" - pytest
Add version numbers to conda dependencies
Add version numbers to conda dependencies To make the deployment of packages more repeatable I am adding version numbers to the various dependencies of the project.
YAML
mit
malramsay64/MD-Molecules-Hoomd,malramsay64/MD-Molecules-Hoomd
cbfeba08070d2a14fcee6498343e0987c0001e58
.github/workflows/codeql-analysis.yml
.github/workflows/codeql-analysis.yml
name: "Code scanning - action" on: push: branches: ['*/dev','*/contrib'] pull_request: # The branches below must be a subset of the branches above branches: ['*/dev','*/contrib'] permissions: contents: read jobs: CodeQL-Build: permissions: actions: read # for github/codeql-action/init to get workflow details contents: read # for actions/checkout to fetch code security-events: write # for github/codeql-action/analyze to upload SARIF results runs-on: ubuntu-latest permissions: actions: read contents: read security-events: write steps: - name: Checkout repository uses: actions/checkout@v3 with: fetch-depth: 0 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v2 with: config-file: ./.github/config/codeql-config.yml - name: Setup dotnet uses: actions/setup-dotnet@v2 with: dotnet-version: '6.0.x' - name: dotnet build run: dotnet build umbraco.sln -c SkipTests - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2
name: "Code scanning - action" on: push: branches: ["*/dev", "*/contrib"] pull_request: # The branches below must be a subset of the branches above branches: ["*/dev", "*/contrib"] permissions: contents: read jobs: CodeQL-Build: permissions: actions: read # for github/codeql-action/init to get workflow details contents: read # for actions/checkout to fetch code security-events: write # for github/codeql-action/analyze to upload SARIF results runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v3 with: fetch-depth: 0 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL uses: github/codeql-action/init@v2 with: config-file: ./.github/config/codeql-config.yml - name: Setup dotnet uses: actions/setup-dotnet@v2 with: dotnet-version: "6.0.x" - name: dotnet build run: dotnet build umbraco.sln -c SkipTests - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2
Fix CodeQL duplicate "permissions" node and reformat
Fix CodeQL duplicate "permissions" node and reformat
YAML
mit
umbraco/Umbraco-CMS,abjerner/Umbraco-CMS,abjerner/Umbraco-CMS,abryukhov/Umbraco-CMS,umbraco/Umbraco-CMS,abjerner/Umbraco-CMS,abjerner/Umbraco-CMS,arknu/Umbraco-CMS,abryukhov/Umbraco-CMS,abryukhov/Umbraco-CMS,umbraco/Umbraco-CMS,umbraco/Umbraco-CMS,arknu/Umbraco-CMS,abryukhov/Umbraco-CMS,arknu/Umbraco-CMS,arknu/Umbraco-CMS
bb5a3689e20edbc294c7edd5e31dcb3ac71d8593
.github/workflows/on-push-do-docs.yml
.github/workflows/on-push-do-docs.yml
name: on-push-do-docs on: push: jobs: docs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Run MarkdownSnippets run: | dotnet tool install --global MarkdownSnippets.Tool--version 23.0.0-beta.1 mdsnippets ${GITHUB_WORKSPACE} shell: bash - name: Push changes run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" git commit -m "Docs changes [skip ci]" -a || echo "nothing to commit" remote="https://${GITHUB_ACTOR}:${{secrets.GITHUB_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git" branch="${GITHUB_REF:11}" git push "${remote}" ${branch} || echo "nothing to push" shell: bash
name: on-push-do-docs on: push: jobs: docs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Run MarkdownSnippets run: | dotnet tool install --global MarkdownSnippets.Tool --version 23.0.0-beta.1 mdsnippets ${GITHUB_WORKSPACE} shell: bash - name: Push changes run: | git config --local user.email "action@github.com" git config --local user.name "GitHub Action" git commit -m "Docs changes [skip ci]" -a || echo "nothing to commit" remote="https://${GITHUB_ACTOR}:${{secrets.GITHUB_TOKEN}}@github.com/${GITHUB_REPOSITORY}.git" branch="${GITHUB_REF:11}" git push "${remote}" ${branch} || echo "nothing to push" shell: bash
Fix failure of markdown snippets tool run step
Fix failure of markdown snippets tool run step
YAML
mit
mysticmind/reversemarkdown-net
dabe142bd01e7e8f16eebc91e8d3618f0a2b198e
recipes/nibabel/meta.yaml
recipes/nibabel/meta.yaml
package: name: nibabel version: "0.11" source: git_url: https://github.com/nipy/nibabel.git git_tag: 2.0.2 requirements: build: - python - numpy run: - python - numpy - scipy test: requires: - nose imports: - nibabel about: home: https://nipy.org/dipy license: MIT license_file: COPYING summary: Python package to access a cacophony of neuro-imaging file formats extra: recipe-maintainers: - arokem
package: name: nibabel version: "0.11" source: git_url: https://github.com/nipy/nibabel.git git_tag: 2.0.2 requirements: build: - python - numpy run: - python - numpy - scipy test: requires: - nose imports: - nibabel about: home: https://nipy.org/nibabel license: MIT license_file: COPYING summary: Python package to access a cacophony of neuro-imaging file formats extra: recipe-maintainers: - arokem
Fix link to point to nibabel.
Fix link to point to nibabel.
YAML
bsd-3-clause
johanneskoester/staged-recipes,atedstone/staged-recipes,benvandyke/staged-recipes,mcernak/staged-recipes,caspervdw/staged-recipes,basnijholt/staged-recipes,NOAA-ORR-ERD/staged-recipes,johanneskoester/staged-recipes,mcs07/staged-recipes,sannykr/staged-recipes,ReimarBauer/staged-recipes,larray-project/staged-recipes,data-exp-lab/staged-recipes,cpaulik/staged-recipes,blowekamp/staged-recipes,pmlandwehr/staged-recipes,goanpeca/staged-recipes,synapticarbors/staged-recipes,jakirkham/staged-recipes,stuertz/staged-recipes,khallock/staged-recipes,khallock/staged-recipes,barkls/staged-recipes,pstjohn/staged-recipes,ocefpaf/staged-recipes,koverholt/staged-recipes,jjhelmus/staged-recipes,petrushy/staged-recipes,kwilcox/staged-recipes,dharhas/staged-recipes,caspervdw/staged-recipes,tylere/staged-recipes,rolando-contrib/staged-recipes,patricksnape/staged-recipes,jochym/staged-recipes,jcb91/staged-recipes,benvandyke/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,grlee77/staged-recipes,rolando-contrib/staged-recipes,guillochon/staged-recipes,hadim/staged-recipes,chohner/staged-recipes,dfroger/staged-recipes,cpaulik/staged-recipes,petrushy/staged-recipes,dfroger/staged-recipes,bmabey/staged-recipes,rvalieris/staged-recipes,Savvysherpa/staged-recipes,dharhas/staged-recipes,sodre/staged-recipes,nicoddemus/staged-recipes,Juanlu001/staged-recipes,scopatz/staged-recipes,arokem/staged-recipes,pstjohn/staged-recipes,OpenPIV/staged-recipes,chrisburr/staged-recipes,valgur/staged-recipes,mariusvniekerk/staged-recipes,mcs07/staged-recipes,birdsarah/staged-recipes,mariusvniekerk/staged-recipes,asmeurer/staged-recipes,valgur/staged-recipes,jerowe/staged-recipes,guillochon/staged-recipes,SylvainCorlay/staged-recipes,JohnGreeley/staged-recipes,dschreij/staged-recipes,synapticarbors/staged-recipes,ericdill/staged-recipes,data-exp-lab/staged-recipes,planetarypy/staged-recipes,richardotis/staged-recipes,richardotis/staged-recipes,hajapy/staged-recipes,nicoddemus/staged-recipes,dschreij/staged-recipes,vamega/staged-recipes,grlee77/staged-recipes,atedstone/staged-recipes,koverholt/staged-recipes,barkls/staged-recipes,jcb91/staged-recipes,igortg/staged-recipes,isuruf/staged-recipes,isuruf/staged-recipes,sodre/staged-recipes,asmeurer/staged-recipes,sannykr/staged-recipes,ceholden/staged-recipes,birdsarah/staged-recipes,rmcgibbo/staged-recipes,glemaitre/staged-recipes,hbredin/staged-recipes,igortg/staged-recipes,OpenPIV/staged-recipes,blowekamp/staged-recipes,chohner/staged-recipes,ReimarBauer/staged-recipes,hadim/staged-recipes,arokem/staged-recipes,shadowwalkersb/staged-recipes,Juanlu001/staged-recipes,bmabey/staged-recipes,hajapy/staged-recipes,stuertz/staged-recipes,glemaitre/staged-recipes,ericdill/staged-recipes,conda-forge/staged-recipes,Savvysherpa/staged-recipes,Cashalow/staged-recipes,ceholden/staged-recipes,mcernak/staged-recipes,NOAA-ORR-ERD/staged-recipes,rmcgibbo/staged-recipes,planetarypy/staged-recipes,ocefpaf/staged-recipes,shadowwalkersb/staged-recipes,vamega/staged-recipes,johannesring/staged-recipes,conda-forge/staged-recipes,jjhelmus/staged-recipes,tylere/staged-recipes,johannesring/staged-recipes,pmlandwehr/staged-recipes,jakirkham/staged-recipes,gqmelo/staged-recipes,scopatz/staged-recipes,chrisburr/staged-recipes,kwilcox/staged-recipes,rvalieris/staged-recipes,gqmelo/staged-recipes,Cashalow/staged-recipes,sodre/staged-recipes,hbredin/staged-recipes,jerowe/staged-recipes,goanpeca/staged-recipes,basnijholt/staged-recipes,larray-project/staged-recipes,JohnGreeley/staged-recipes,jochym/staged-recipes
5f4cec175bbaf99e36b17f0b23c124bda254129d
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.6' 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
bbatsov/rubocop,tdeo/rubocop,rrosenblum/rubocop,tejasbubane/rubocop,maxjacobson/rubocop,tdeo/rubocop,tejasbubane/rubocop,tdeo/rubocop,tejasbubane/rubocop,maxjacobson/rubocop,rrosenblum/rubocop,bbatsov/rubocop,maxjacobson/rubocop,rrosenblum/rubocop
d334c781bfc465c675716f0e0673cf0898557c21
spec/data/rails/locales/en.yml
spec/data/rails/locales/en.yml
en: marketing: banner: This product is so good dashboard: chart: This value has changed details: This key/value has been added menu: first: First menu item
en: marketing: banner: This product is so good dashboard: chart: This value has changed details: This key/value has been added menu: first: First menu item second: Second menu item not_in_es: This key not in spanish
Revert "another artificial commit to make specs pass"
Revert "another artificial commit to make specs pass" This reverts commit 5ab8cf4d081d7ba1d5f020118dd00c3ea2d0437a.
YAML
mit
zoodles/vocab
6810538443f75e515fa26b86cbd929038ac85928
sample_files/.travis.yml
sample_files/.travis.yml
language: python python: - "2.7" env: - LINT_CHECK="1" - VERSION="7.0" ODOO_REPO="odoo/odoo" LINT_CHECK="0" - VERSION="7.0" ODOO_REPO="OCA/OCB" LINT_CHECK="0" - VERSION="7.0" ODOO_REPO="odoo/odoo" UNIT_TEST="1" LINT_CHECK="0" virtualenv: system_site_packages: true install: - git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH} - travis_install_nightly # example: dependency # - git clone https://github.com/OCA/webkit-tools -b ${VERSION} $HOME/webkit-tools script: - travis_run_tests after_success: coveralls
language: python python: - "2.7" env: - LINT_CHECK="1" - VERSION="8.0" ODOO_REPO="odoo/odoo" LINT_CHECK="0" - VERSION="8.0" ODOO_REPO="OCA/OCB" LINT_CHECK="0" - VERSION="8.0" ODOO_REPO="odoo/odoo" UNIT_TEST="1" LINT_CHECK="0" virtualenv: system_site_packages: true install: - git clone https://github.com/OCA/maintainer-quality-tools.git ${HOME}/maintainer-quality-tools - export PATH=${HOME}/maintainer-quality-tools/travis:${PATH} - travis_install_nightly # example: dependency # - git clone https://github.com/OCA/webkit-tools -b ${VERSION} $HOME/webkit-tools script: - travis_run_tests after_success: coveralls
Make 8.0 the default in the sample files
Make 8.0 the default in the sample files
YAML
agpl-3.0
ilyasProgrammer/maintainer-quality-tools,suvit/maintainer-quality-tools,gurneyalex/maintainer-quality-tools,savoirfairelinux/maintainer-quality-tools,Vauxoo/maintainer-quality-tools,yvaucher/maintainer-quality-tools,ilyasProgrammer/maintainer-quality-tools,acsone/maintainer-quality-tools,Endika/maintainer-quality-tools,Endika/maintainer-quality-tools,hbrunn/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools,acsone/maintainer-quality-tools,savoirfairelinux/maintainer-quality-tools,gurneyalex/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools,kittiu/maintainer-quality-tools,dreispt/maintainer-quality-tools,hbrunn/maintainer-quality-tools,OCA/maintainer-quality-tools,OCA/maintainer-quality-tools,dreispt/maintainer-quality-tools,gurneyalex/maintainer-quality-tools,acsone/maintainer-quality-tools,dreispt/maintainer-quality-tools,Ehtaga/maintainer-quality-tools,Vauxoo/maintainer-quality-tools,Vauxoo/maintainer-quality-tools,kittiu/maintainer-quality-tools,yvaucher/maintainer-quality-tools,OCA/maintainer-quality-tools,Ehtaga/maintainer-quality-tools,suvit/maintainer-quality-tools,ERP-Ukraine/maintainer-quality-tools
ba97e6f0969f4decdc13b171da1dd9cca3cbf742
appveyor.yml
appveyor.yml
version: '{build}' max_jobs: 3 environment: matrix: - Ruby_version: 25 - Ruby_version: 25-x64 - Ruby_version: 24 - Ruby_version: 24-x64 - Ruby_version: 23 - Ruby_version: 23-x64 - Ruby_version: 22 - Ruby_version: 22-x64 - Ruby_version: 21 - Ruby_version: 21-x64 - Ruby_version: 200 - Ruby_version: 200-x64 install: - set PATH=C:\Ruby%Ruby_version%\bin;%PATH% - bundle install --retry=3 --clean --force build: off test_script: - bundle exec rake
version: '{build}' max_jobs: 3 environment: matrix: - Ruby_version: 25 - Ruby_version: 25-x64 - Ruby_version: 24 - Ruby_version: 24-x64 - Ruby_version: 23 - Ruby_version: 23-x64 - Ruby_version: 22 - Ruby_version: 22-x64 - Ruby_version: 21 - Ruby_version: 21-x64 - Ruby_version: 200 - Ruby_version: 200-x64 matrix: allow_failures: - ruby_version: "25" install: - set PATH=C:\Ruby%Ruby_version%\bin;%PATH% - bundle install --retry=3 --clean --force build: off test_script: - bundle exec rake
Allow failure with Ruby 2.5
Allow failure with Ruby 2.5 Appveyor 2.5 has issue with json gem...
YAML
mit
famished-tiger/Sequitur
486e410fc491b296fe20b4772424a726a9e50880
appveyor.yml
appveyor.yml
version: '{build}' image: Visual Studio 2017 environment: NUGETAPIKEY: secure: kU8Nrdjnh6k58FzkmCIcyY0InF2YOSoef9u7ot1Uo3jABM6/Xd3VXaCU7/Rfnktn BUILD_BOT_PASSWORD: secure: wJ9JVS5hSAp9ItYlHKxTPg== build_script: - ps: .\build.ps1 --target=NuGetPublish """--trigger=$env:APPVEYOR_REPO_TAG_NAME""" "--nugetApiKey=$env:NUGETAPIKEY" test: off artifacts: - path: 'release\*.nupkg'
version: '{build}' image: Visual Studio 2017 environment: NUGETAPIKEY: secure: Ev6JfzK7FYZzsR4ALWtJs95U98Pa9FxgMxECDA0LGNidWwULyKoQIKYQwMVZ1s0U BUILD_BOT_PASSWORD: secure: wJ9JVS5hSAp9ItYlHKxTPg== build_script: - ps: .\build.ps1 --target=NuGetPublish """--trigger=$env:APPVEYOR_REPO_TAG_NAME""" "--nugetApiKey=$env:NUGETAPIKEY" test: off artifacts: - path: 'release\*.nupkg'
Update NuGet API key for AppVeyor.
Update NuGet API key for AppVeyor.
YAML
mit
ejball/XmlDocMarkdown,Faithlife/FaithlifeUtility,Faithlife/System.Data.SQLite,Faithlife/Parsing,ejball/ArgsReading,Faithlife/System.Data.SQLite
44e0a606504b024a72dcdbc265020797551ab6a6
appveyor.yml
appveyor.yml
environment: matrix: - nodejs_version: 0.8.28 - nodejs_version: 0.10.30 - nodejs_version: 0.11.13 platform: - x64 - x86 install: - ps: Update-NodeJsInstallation $env:nodejs_version $env:Platform - node --version - npm --version - node -e "console.log(process.arch);" - SET PATH=C:\python27;%PATH% - npm install - cmd: test.bat build: off test: off deploy: off
environment: matrix: - nodejs_version: 0.8.28 - nodejs_version: 0.10.30 - nodejs_version: 0.11.13 platform: - x64 - x86 install: - ps: Update-NodeJsInstallation $env:nodejs_version $env:Platform - node --version - npm --version - SET PATH=%APPDATA%\npm;%PATH% - npm install npm -g - npm --version - node -e "console.log(process.arch);" - SET PATH=C:\python27;%PATH% - npm install - cmd: test.bat build: off test: off deploy: off
Update NPM on AppVeyor (old versions don't understand "^") The bundled version of npm that comes with the node binary is old.
Update NPM on AppVeyor (old versions don't understand "^") The bundled version of npm that comes with the node binary is old.
YAML
bsd-3-clause
fengmk2/node-pre-gyp,mojodna/node-pre-gyp,mapbox/node-pre-gyp,fengmk2/node-pre-gyp,fengmk2/node-pre-gyp,mapbox/node-pre-gyp,fengmk2/node-pre-gyp,etiktin/node-pre-gyp,mojodna/node-pre-gyp,etiktin/node-pre-gyp,synthetos/node-pre-gyp,mapbox/node-pre-gyp,etiktin/node-pre-gyp,synthetos/node-pre-gyp,etiktin/node-pre-gyp,hybridgroup/node-pre-gyp,hybridgroup/node-pre-gyp,synthetos/node-pre-gyp,fengmk2/node-pre-gyp,mojodna/node-pre-gyp,etiktin/node-pre-gyp,hybridgroup/node-pre-gyp,synthetos/node-pre-gyp,mojodna/node-pre-gyp,synthetos/node-pre-gyp,hybridgroup/node-pre-gyp,mapbox/node-pre-gyp,mapbox/node-pre-gyp,mojodna/node-pre-gyp
80be11494e8afc8af7fdec50a5b33124e6cf7fec
appveyor.yml
appveyor.yml
environment: op_build_user: "OpenPublishBuild" op_build_user_email: "vscopbld@microsoft.com" access_token: secure: t74btP1uJUIXa65tTiQGWAZvYmJSNjSruJV90exd++sAjrKpo7f6e4LGJJLGIKb3 before_build: - ps: | if(-Not $env:APPVEYOR_PULL_REQUEST_TITLE) { git checkout master 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):x-oauth-basic@github.com`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 Copy-Item origin_site/.git _site -recurse CD _site git add -A git commit -m "CI Updates" git push origin gh-pages }
environment: op_build_user: "OpenPublishBuild" op_build_user_email: "vscopbld@microsoft.com" 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):x-oauth-basic@github.com`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 -q git commit -m "CI Updates" -q git push origin gh-pages -q }
Enable git command quiet mode
Enable git command quiet mode
YAML
mit
docascode/docfx-seed,ansyral/docfx-seed
f1001b53947f5391e12ffe937ecafcbc5751a1cb
appveyor.yml
appveyor.yml
version: "{branch}-{build}" os: Visual Studio 2015 platform: x64 configuration: Release before_build: - cmake -G "Visual Studio 14 2015 Win64" build: project: meshoptimizer.sln
version: "{branch}-{build}" os: Visual Studio 2015 platform: Win32 configuration: Release environment: matrix: - cmake_generator: "Visual Studio 9 2008" msbuild_path: C:\Windows\Microsoft.NET\Framework\v3.5\msbuild - cmake_generator: "Visual Studio 14 2015" msbuild_path: msbuild before_build: - cmake -G "%cmake_generator%" build_script: - "%msbuild_path% meshoptimizer.sln" test: off
Add VS2008 test to Appveyor
Add VS2008 test to Appveyor
YAML
mit
zeux/meshoptimizer,zeux/meshoptimizer,zeux/meshoptimizer
314a02961586f7584209c9232e7cd7ef8eadee7e
appveyor.yml
appveyor.yml
build: false environment: global: BINSTAR_USER: menpo BINSTAR_KEY: secure: fyETJrtllCxpbmu5FLz5KVnRW1qLEfSmZa5GVSIzoWEPejhD/a2kWdhbhRYj1rTj matrix: - PYTHON_VERSION: 3.5 - PYTHON_VERSION: 3.6 platform: - x86 - x64 init: - ps: Start-FileDownload 'https://raw.githubusercontent.com/menpo/condaci/v0.4.x/condaci.py' C:\\condaci.py; echo "Done" - cmd: python C:\\condaci.py setup install: - ps: $env:MINICONDA_DIR = python C:\\condaci.py miniconda_dir - ps: $BUILD_CMD = "${env:MINICONDA_DIR}" + "\\python C:\\condaci.py build conda"; Invoke-Expression $BUILD_CMD
build: false environment: global: BINSTAR_USER: menpo BINSTAR_KEY: secure: fyETJrtllCxpbmu5FLz5KVnRW1qLEfSmZa5GVSIzoWEPejhD/a2kWdhbhRYj1rTj matrix: - PYTHON_VERSION: 2.7 - PYTHON_VERSION: 3.5 - PYTHON_VERSION: 3.6 platform: - x86 - x64 init: - ps: Start-FileDownload 'https://raw.githubusercontent.com/menpo/condaci/v0.4.x/condaci.py' C:\\condaci.py; echo "Done" - cmd: python C:\\condaci.py setup install: - ps: $env:MINICONDA_DIR = python C:\\condaci.py miniconda_dir - cmd: "%MINICONDA_DIR%\\python C:\\condaci.py build conda"
Use CMD rather than Powershell
Use CMD rather than Powershell
YAML
bsd-3-clause
menpo/conda-dlib,menpo/conda-dlib
4ae9c3b7fc5065106120a5d57d3a9cf415b318ec
appveyor.yml
appveyor.yml
version: 0.1.0.{build} install: # Grab a compiled version of compare-test and add it to the PATH variable. - curl -L https://github.com/jonathanvdc/compare-test/releases/download/v0.1.2/compare-test.zip > compare-test.zip - mkdir compare-test - 7z x compare-test.zip -ocompare-test - set PATH="%PATH%;%cd%\compare-test" # Clone ecsc, compile it and add it to the PATH variable. - git clone --depth=5 https://github.com/jonathanvdc/ecsc - nuget restore ecsc\src\ecsc.sln - msbuild /p:Configuration=Release ecsc\src\ecsc.sln - set PATH="%PATH%;%cd%\ecsc\src\ecsc\bin\Release" build_script: # Build cs-wasm with csc - msbuild /p:Configuration=Release cs-wasm.sln # Build cs-wasm with escsc - C:\cygwin\bin\make all after_build: # Run the tests - C:\cygwin\bin\make test
version: 0.1.0.{build} install: # Grab a compiled version of compare-test and add it to the PATH variable. - curl -L https://github.com/jonathanvdc/compare-test/releases/download/v0.1.2/compare-test.zip > compare-test.zip - mkdir compare-test - 7z x compare-test.zip -ocompare-test - set PATH="%PATH%;%cd%\compare-test" - echo %PATH% # Clone ecsc, compile it and add it to the PATH variable. - git clone --depth=5 https://github.com/jonathanvdc/ecsc - nuget restore ecsc\src\ecsc.sln - msbuild /p:Configuration=Release ecsc\src\ecsc.sln - set PATH="%PATH%;%cd%\ecsc\src\ecsc\bin\Release" build_script: # Build cs-wasm with csc - msbuild /p:Configuration=Release cs-wasm.sln # Build cs-wasm with escsc - C:\cygwin\bin\make all after_build: # Run the tests - C:\cygwin\bin\make test
Check that the PATH variable is set correctly
Check that the PATH variable is set correctly
YAML
mit
jonathanvdc/cs-wasm,jonathanvdc/cs-wasm
bf1334046692e79a9a50a748ba9d600ea61c2124
appveyor.yml
appveyor.yml
version: 100.6.0-{build} branches: only: - master image: Visual Studio 2019 configuration: Release platform: Any CPU nuget: disable_publish_on_pr: true before_build: - cmd: >- msbuild /t:restore src/Esri.ArcGISRuntime.Toolkit.sln msbuild /t:restore src/Esri.ArcGISRuntime.Toolkit.sln build: project: src/Esri.ArcGISRuntime.Toolkit.sln verbosity: minimal artifacts: - path: .\Output\NuGet\Release\*.nupkg name: NuGet
version: 100.6.0-{build} branches: only: - master image: Visual Studio 2019 Preview configuration: Release platform: Any CPU nuget: disable_publish_on_pr: true before_build: - cmd: >- msbuild /t:restore src/Esri.ArcGISRuntime.Toolkit.sln msbuild /t:restore src/Esri.ArcGISRuntime.Toolkit.sln build: project: src/Esri.ArcGISRuntime.Toolkit.sln verbosity: minimal artifacts: - path: .\Output\NuGet\Release\*.nupkg name: NuGet
Use preview image until AppVeyor gets VS16.3
Use preview image until AppVeyor gets VS16.3
YAML
apache-2.0
Esri/arcgis-toolkit-dotnet
aca5eff8abfc9a36f0b6a79972ceefe7544cba2c
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: "2" # Install scripts. (runs after repo cloning) install: # Get the Node version with matching major & minor numbers - ps: Install-Product node $env:nodejs_version # Log HTTP requests. - npm config set loglevel http # Typical npm stuff. - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - npm test # Don't actually build. build: off # Finish immediately if one of the jobs fails. matrix: fast_finish: true # Set up cache, clear it on package.json changes. cache: # npm cache. - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # Local npm packages. - node_modules -> package.json # Set build version format here instead of in the admin panel. version: "{build}"
# 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: "3" # Install scripts. (runs after repo cloning) install: # Get the Node version with matching major & minor numbers - ps: Install-Product node $env:nodejs_version # Log HTTP requests. - npm config set loglevel http # Typical npm stuff. - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - npm test # Don't actually build. build: off # Finish immediately if one of the jobs fails. matrix: fast_finish: true # Set up cache, clear it on package.json changes. cache: # npm cache. - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # Local npm packages. - node_modules -> package.json # Set build version format here instead of in the admin panel. version: "{build}"
Update io.js from 2 to 3
AppVeyor: Update io.js from 2 to 3
YAML
mit
EE/grunt-inline-images
a1a8939669fef22c898fad57df2a348fefe73f1a
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.6' 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,rrosenblum/rubocop,tdeo/rubocop,maxjacobson/rubocop,tdeo/rubocop,rrosenblum/rubocop,bbatsov/rubocop,tejasbubane/rubocop,tejasbubane/rubocop,bbatsov/rubocop,tdeo/rubocop,tejasbubane/rubocop,maxjacobson/rubocop
cf41c0e53ea014ba90051b82cedda279d4cbfdb7
.github/workflows/install.yml
.github/workflows/install.yml
name: install on: push: branches: [ master ] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: build: runs-on: ubuntu-latest steps: - name: Setup Perl environment uses: shogo82148/actions-setup-perl@v1.6.2 - uses: actions/checkout@v2 - name: Install Dependencies uses: shogo82148/actions-setup-perl@v1.6.2 run: | cpanm -q -n --no-man-pages App::cpm && \ cpm install -g && cpm install -g . && \ - name: Run help run: | perl scripts/sitebrew help
name: install on: push: branches: [ master ] # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup Perl environment uses: shogo82148/actions-setup-perl@v1.6.2 - name: Install Dependencies run: | cpanm -q -n --no-man-pages App::cpm && \ cpm install -g && cpm install -g . && \ - name: Run help run: | perl scripts/sitebrew help
Fix error: a step cannot have both the `uses` and `run` keys
Fix error: a step cannot have both the `uses` and `run` keys
YAML
cc0-1.0
gugod/sitebrew,gugod/sitebrew
ade9489a0c700bfc4703692871723236ebdc683a
.github/workflows/node.js.yml
.github/workflows/node.js.yml
name: CI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: NODE_VERSION: [12.x, 14.x, 16.x, 17.x] steps: - name: Checkout uses: actions/checkout@v2 - name: Cache uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock- - name: Use Node.js ${{ env.NODE_VERSION }} uses: actions/setup-node@v2.1.2 with: node-version: ${{ env.NODE_VERSION }} - name: Install dependencies run: | npm install - name: Run tests run: | npm test
name: CI on: [push, pull_request] jobs: build: strategy: matrix: platform: [ubuntu-latest, windows-latest] NODE_VERSION: [12.x, 14.x, 16.x, 17.x] runs-on: ${{ matrix.platform }} steps: - name: Checkout uses: actions/checkout@v2 - name: Cache uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock- - name: Use Node.js ${{ env.NODE_VERSION }} uses: actions/setup-node@v2.1.2 with: node-version: ${{ env.NODE_VERSION }} - name: Install dependencies run: | npm install - name: Run tests run: | npm test
Use GitHub Actions for Windows tests as well
Build: Use GitHub Actions for Windows tests as well
YAML
mit
mgol/check-dependencies
6a35bae0bc95ed3f3dea39009e597b3d0e7ecf8b
.github/workflows/phpunit.yml
.github/workflows/phpunit.yml
name: PHPUnit tests on: push: branches: [ master ] pull_request: branches: [ master ] jobs: php-version: runs-on: ubuntu-latest strategy: fail-fast: false matrix: php-version: - "5.4" - "5.5" - "5.6" - "7.0" - "7.1" - "7.2" - "7.3" - "7.4" - "8.0" steps: - uses: actions/checkout@v2 - name: Install PHP uses: "shivammathur/setup-php@v2" with: php-version: "${{ matrix.php-version }}" coverage: "none" ini-values: "zend.assertions=1" - name: Install Composer dependencies run: composer install --no-progress --ansi - name: Run tests ${{ matrix.php-version }} run: SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 bin/simple-phpunit --color=always
name: PHPUnit tests on: push: branches: [ master ] pull_request: branches: [ master ] jobs: php-version: runs-on: ubuntu-latest strategy: fail-fast: false matrix: php-version: - "5.4" - "5.5" - "5.6" - "7.0" - "7.1" - "7.2" - "7.3" - "7.4" - "8.0" - "8.1" steps: - uses: actions/checkout@v2 - name: Install PHP uses: "shivammathur/setup-php@v2" with: php-version: "${{ matrix.php-version }}" coverage: "none" ini-values: "zend.assertions=1" - name: Install Composer dependencies run: composer install --no-progress --ansi - name: Run tests ${{ matrix.php-version }} run: SYMFONY_PHPUNIT_REMOVE_RETURN_TYPEHINT=1 bin/simple-phpunit --color=always
Extend CI testing to PHP 8.1
Extend CI testing to PHP 8.1
YAML
lgpl-2.1
bsweeney/php-font-lib,PhenX/php-font-lib
de49f1e4a1d29c1b8ce39d4c2240ec329b9d55cd
.github/workflows/publish.yml
.github/workflows/publish.yml
name: Publish Package on: release: types: [published] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install node uses: actions/setup-node@v1 with: node-version: '12.x' registry-url: 'https://registry.npmjs.org' - name: Install Python uses: actions/setup-python@v1 with: python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip pip install jupyterlab packaging setuptools twine wheel - name: Test version are matching run: python -c "from release import assertEqualVersion; assertEqualVersion()" - name: Publish the Python package env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} run: | python setup.py sdist bdist_wheel twine upload dist/* - name: Publish the NPM package run: | echo $PRE_RELEASE if [[ $PRE_RELEASE == "true" ]]; then export TAG="next"; else export TAG="latest"; fi npm publish --tag ${TAG} --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} PRE_RELEASE: ${{ github.event.release.prerelease }}
name: Publish Package on: release: types: [published] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install node uses: actions/setup-node@v1 with: node-version: '12.x' registry-url: 'https://registry.npmjs.org' - name: Install Python uses: actions/setup-python@v2 with: python-version: '3.x' - name: Install dependencies run: | python -m pip install --upgrade pip pip install jupyterlab packaging setuptools twine wheel - name: Test version are matching run: python -c "from release import assertEqualVersion; assertEqualVersion()" - name: Publish the Python package env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} run: | python setup.py sdist bdist_wheel twine upload dist/* - name: Publish the NPM package run: | echo $PRE_RELEASE if [[ $PRE_RELEASE == "true" ]]; then export TAG="next"; else export TAG="latest"; fi npm publish --tag ${TAG} --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} PRE_RELEASE: ${{ github.event.release.prerelease }}
Update python action in CD
Update python action in CD
YAML
bsd-3-clause
jupyterlab/jupyterlab-git,jupyterlab/jupyterlab-git,jupyterlab/jupyterlab-git
b8ea0c294f470f14665e846ca065467589142d5e
.github/workflows/release.yml
.github/workflows/release.yml
name: Build, Test, and Publish on release on: release: types: [published] branches: [master] jobs: build: name: Build, test and publish runs-on: ubuntu-latest steps: - uses: actions/checkout@master - uses: actions/setup-node@v1 with: node-version: 14 registry-url: 'https://registry.npmjs.org' - run: npm install - run: npm test - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
name: Build, Test, and Publish on release on: release: types: [published] branches: [master] jobs: build: name: Build, test and publish runs-on: ubuntu-latest steps: - uses: actions/checkout@master - uses: actions/setup-node@v2 with: node-version: 14 registry-url: 'https://registry.npmjs.org' - run: npm install - run: npm test - run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
Update actions/setup-node action to v2
Update actions/setup-node action to v2
YAML
mit
zrrrzzt/is-valid-fodselsnummer-cli
68f92ec0b6290d81fe259a3612c6baf501fa4e04
.github/workflows/publish-subsplits.yml
.github/workflows/publish-subsplits.yml
--- name: Sub-Split Publishing on: push: branches: - 3.x create: tags: - '3.*' delete: tags: - '3.*' jobs: publish_subsplits: runs-on: ubuntu-latest name: Publish package sub-splits steps: - uses: actions/checkout@v2 with: fetch-depth: '0' persist-credentials: 'false' - uses: frankdejonge/use-github-token@1.0.1 with: authentication: 'frankdejonge:${{ secrets.PERSONAL_ACCESS_TOKEN }}' user_name: 'Frank de Jonge' user_email: 'info@frenky.net' - name: Cache splitsh-lite id: splitsh-cache uses: actions/cache@v2 with: path: './.splitsh' key: '${{ runner.os }}-splitsh' - uses: frankdejonge/use-subsplit-publish@1.0.0-beta.4 with: source-branch: '3.x' config-path: './config.subsplit-publish.json' splitsh-path: './.splitsh/splitsh-lite' splitsh-version: 'v1.0.1'
--- name: Sub-Split Publishing on: push: branches: - 3.x create: tags: - '3.*' delete: tags: - '3.*' jobs: publish_subsplits: runs-on: ubuntu-latest name: Publish package sub-splits steps: - uses: actions/checkout@v2 with: fetch-depth: '0' persist-credentials: 'false' - uses: frankdejonge/use-github-token@1.0.1 with: authentication: 'frankdejonge:${{ secrets.PERSONAL_ACCESS_TOKEN }}' user_name: 'Frank de Jonge' user_email: 'info@frenky.net' - name: Cache splitsh-lite id: splitsh-cache uses: actions/cache@v2 with: path: './.splitsh' key: '${{ runner.os }}-splitsh' - uses: frankdejonge/use-subsplit-publish@1.0.0-beta.5 with: source-branch: '3.x' config-path: './config.subsplit-publish.json' splitsh-path: './.splitsh/splitsh-lite' splitsh-version: 'v1.0.1'
Use Beta 5 of subsplit publish.
Use Beta 5 of subsplit publish.
YAML
mit
thephpleague/flysystem,thephpleague/flysystem
1a728b633f3dd4550efb1d73c677cd8d9b91f723
environment.yml
environment.yml
name: qmxgraph dependencies: - attrs>=17 - cherrypy - colorama - flake8 - hypothesis==3.11.0 - jinja2 - pyqt>=5.6 - pytest-timeout - six - pip: - invoke==0.12.2 - pytest-mock - pytest-qt - pytest-rerunfailures - pytest-selenium - pytest-xdist - pytest-xvfb
name: qmxgraph dependencies: - attrs>=17 - cherrypy - colorama - flake8 - hypothesis==3.11.0 - jinja2 - pyqt>=5.6 - pytest-timeout - six - pip: - invoke==0.13.0 - pytest-mock - pytest-qt - pytest-rerunfailures - pytest-selenium - pytest-xdist - pytest-xvfb
Update invoke version using during build
Update invoke version using during build
YAML
mit
ESSS/qmxgraph,ESSS/qmxgraph,ESSS/qmxgraph,ESSS/qmxgraph
6ab3e4bbbec455a3fcf25fa8bfd1d67b0bc6e307
config/local.yml
config/local.yml
######## ember-osf settings ######## local: CLIENT_ID: null PERSONAL_ACCESS_TOKEN: null OAUTH_SCOPES: osf.full_read osf.full_write REDIRECT_URI: http://localhost:5000/register/?next=%2Fpreprints%2F stage: CLIENT_ID: null PERSONAL_ACCESS_TOKEN: null OAUTH_SCOPES: null REDIRECT_URI: https://staging.osf.io/register/?next=%2Fpreprints%2F stage2: CLIENT_ID: null PERSONAL_ACCESS_TOKEN: null OAUTH_SCOPES: null REDIRECT_URI: https://staging2.osf.io/register/?next=%2Fpreprints%2F test: CLIENT_ID: null PERSONAL_ACCESS_TOKEN: null OAUTH_SCOPES: null REDIRECT_URI: https://test.osf.io/register/?next=%2Fpreprints%2F prod: CLIENT_ID: null PERSONAL_ACCESS_TOKEN: null OAUTH_SCOPES: null REDIRECT_URI: https://osf.io/register/?next=2Fpreprints%2F ######### end ember-osf ##########
######## ember-osf settings ######## local: CLIENT_ID: null PERSONAL_ACCESS_TOKEN: null OAUTH_SCOPES: osf.full_read osf.full_write REDIRECT_URI: http://localhost:5000/login/?next=%2Fpreprints%2F stage: CLIENT_ID: null PERSONAL_ACCESS_TOKEN: null OAUTH_SCOPES: null REDIRECT_URI: https://staging.osf.io/login/?next=%2Fpreprints%2F stage2: CLIENT_ID: null PERSONAL_ACCESS_TOKEN: null OAUTH_SCOPES: null REDIRECT_URI: https://staging2.osf.io/login/?next=%2Fpreprints%2F test: CLIENT_ID: null PERSONAL_ACCESS_TOKEN: null OAUTH_SCOPES: null REDIRECT_URI: https://test.osf.io/login/?next=%2Fpreprints%2F prod: CLIENT_ID: null PERSONAL_ACCESS_TOKEN: null OAUTH_SCOPES: null REDIRECT_URI: https://osf.io/login/?next=2Fpreprints%2F ######### end ember-osf ##########
Revert "osf login replaced with register (for now...)"
Revert "osf login replaced with register (for now...)" This reverts commit ff7c53ac42ab8469d0a7664338dcb3c289ba477b.
YAML
apache-2.0
laurenrevere/ember-preprints,pattisdr/ember-preprints,baylee-d/ember-preprints,caneruguz/ember-preprints,CenterForOpenScience/ember-preprints,baylee-d/ember-preprints,caneruguz/ember-preprints,laurenrevere/ember-preprints,CenterForOpenScience/ember-preprints,pattisdr/ember-preprints
1455f2a433c0e5e1d116594cc2df41eb9744ae99
.github/workflows/discord.yml
.github/workflows/discord.yml
name: notify-discord on: push: branches: [master] pull_request: branches: [master] issues: types: [opened] jobs: notify: runs-on: ubuntu-latest steps: - name: Actions for Discord env: DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} uses: Ilshidur/action-discord@0.3.0
name: notify-discord on: push: branches: [master] pull_request_target: branches: [master] issues: types: [opened] jobs: notify: runs-on: ubuntu-latest steps: - name: Actions for Discord env: DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }} uses: Ilshidur/action-discord@0.3.0
Fix broken Discord action for PRs
Fix broken Discord action for PRs Switch to use `pull_request_target` event instead of `pull_request`. This runs in the base and allows accessing `secrets.DISCORD_WEBHOOK`.
YAML
apache-2.0
malcolmr/vim-maktaba,google/vim-maktaba
cd819df51fe609f5c1ffd56d45a9052b06c596b6
.github/workflows/testing.yml
.github/workflows/testing.yml
name: testing on: push: paths: - 'lib/**.js' jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12.x - run: npm ci - name: Run smoke tests timeout-minutes: 2 run: | touch .credential echo ${{ secrets.DIRECT_TESTING_USER }} >> .credential echo ${{ secrets.DIRECT_TESTING_PASSWORD }} >> .credential node test/login.js < .credential node test/smoke.js - name: Remove credentials run: rm -f .credential .env
name: testing on: push: paths: - 'lib/**.js' jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12.x - run: npm install - name: Run smoke tests timeout-minutes: 2 run: | touch .credential echo ${{ secrets.DIRECT_TESTING_USER }} >> .credential echo ${{ secrets.DIRECT_TESTING_PASSWORD }} >> .credential node test/login.js < .credential node test/smoke.js - name: Remove credentials run: rm -f .credential .env
Change `npm ci` to `npm install` because of lock file not exists
chore: Change `npm ci` to `npm install` because of lock file not exists
YAML
mit
lisb/direct-js
d7c73b0678d66e70fc3150c8eb9a2eb71e937fb3
docs/_config.yml
docs/_config.yml
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site settings title: WeTracker description: > # this means to ignore newlines until "baseurl:" A Collaborative, Online Music Creation Suite repository: pgregory/wetracker baseurl: # the subpath of your site, e.g. /blog url: https://www.wetracker.xyz # the base hostname & protocol for your site # Build settings markdown: kramdown # Sass settings sass: style: compressed # Theme settings theme_mode: dark # choices are: 'dark', 'standard', 'markdown' # Customizations your_name: pgregory email: aqsis1@gmail.com navigation: - text: Home url: / - text: Blog url: /blog - text: Docs url: /documentation/intro social: - service: github username: pgregory link: https://github.com/pgregory - service: twitter username: pcgregory link: https://twitter.com/pcgregory - service: facebook username: wetracker link: https://www.facebook.com/wetracker/ # Plugins gems: - jekyll-seo-tag - jekyll-sitemap # Collections collections: documentation: output: true
# Welcome to Jekyll! # # This config file is meant for settings that affect your whole blog, values # which you are expected to set up once and rarely need to edit after that. # For technical reasons, this file is *NOT* reloaded automatically when you use # 'jekyll serve'. If you change this file, please restart the server process. # Site settings title: WeTracker description: > # this means to ignore newlines until "baseurl:" A Collaborative, Online Music Creation Suite repository: pgregory/wetracker baseurl: # the subpath of your site, e.g. /blog url: https://www.wetracker.xyz # the base hostname & protocol for your site # Build settings markdown: kramdown # Sass settings sass: style: compressed # Theme settings theme_mode: dark # choices are: 'dark', 'standard', 'markdown' # Customizations your_name: pgregory email: aqsis1@gmail.com navigation: - text: Home url: / - text: Blog url: /blog - text: Docs url: /documentation/intro social: - service: github username: wetracker link: https://github.com/pgregory/wetracker - service: twitter username: pcgregory link: https://twitter.com/pcgregory - service: facebook username: wetracker link: https://www.facebook.com/wetracker/ # Plugins gems: - jekyll-seo-tag - jekyll-sitemap # Collections collections: documentation: output: true
Change github link to project, not me
Change github link to project, not me
YAML
mit
pgregory/wetracker,pgregory/wetracker
fe1f61f96532b7eb3aa8560ba39a9cb182cf4d65
statix.test/metaborg.yaml
statix.test/metaborg.yaml
--- id: org.metaborg:statix.test:${metaborgVersion} name: StatixTest metaborgVersion: 2.5.0-SNAPSHOT dependencies: compile: - org.metaborg:org.metaborg.meta.lang.esv:${metaborgVersion} - org.metaborg:org.metaborg.meta.lang.template:${metaborgVersion} - org.metaborg:org.metaborg.meta.nabl2.lang:${metaborgVersion} - org.metaborg:org.metaborg.meta.lang.spt:${metaborgVersion} source: - org.metaborg:meta.lib.spoofax:${metaborgVersion} - org.metaborg:org.metaborg.meta.nabl2.shared:${metaborgVersion} - org.metaborg:org.metaborg.meta.nabl2.runtime:${metaborgVersion} - org.metaborg:statix.lang:${metaborgVersion} - org.metaborg:statix.runtime:${metaborgVersion} runtime: nabl2: debug: analysis custom language: sdf: sdf2table: java pretty-print: Statix placeholder: prefix: "$" stratego: format: ctree args: - -la - stratego-lib - -la - stratego-sglr - -la - stratego-gpp - -la - stratego-xtc - -la - stratego-aterm - -la - stratego-sdf - -la - strc build: useBuildSystemSpec: true
--- id: org.metaborg:statix.test:${metaborgVersion} name: StatixTest metaborgVersion: 2.5.0-SNAPSHOT dependencies: compile: - org.metaborg:org.metaborg.meta.lang.esv:${metaborgVersion} - org.metaborg:org.metaborg.meta.lang.template:${metaborgVersion} - org.metaborg:org.metaborg.meta.nabl2.lang:${metaborgVersion} - org.metaborg:org.metaborg.meta.lang.spt:${metaborgVersion} source: - org.metaborg:meta.lib.spoofax:${metaborgVersion} - org.metaborg:org.metaborg.meta.nabl2.shared:${metaborgVersion} - org.metaborg:org.metaborg.meta.nabl2.runtime:${metaborgVersion} - org.metaborg:statix.lang:${metaborgVersion} - org.metaborg:statix.runtime:${metaborgVersion} runtime: nabl2: debug: language: sdf: sdf2table: java pretty-print: Statix placeholder: prefix: "$" stratego: format: ctree args: - -la - stratego-lib - -la - stratego-sglr - -la - stratego-gpp - -la - stratego-xtc - -la - stratego-aterm - -la - stratego-sdf - -la - strc build: useBuildSystemSpec: true
Disable extensive console logging for test project.
Disable extensive console logging for test project.
YAML
apache-2.0
metaborg/nabl,metaborg/nabl,metaborg/nabl
ef51c53a79cb1c8fbf6a8b6e40d059ad49b8f470
planetstack/openstack_observer/steps/sync_controller_networks.yaml
planetstack/openstack_observer/steps/sync_controller_networks.yaml
--- - hosts: 127.0.0.1 connection: local tasks: - quantum_network: auth_url={{ endpoint }} login_username={{ admin_user }} tenant_name={{ tenant_name }} login_tenant_name={{ tenant_name }} login_password={{ admin_password }} name={{ name }} {% if delete %} state=absent {% else %} state=present {% endif %} shared=true - quantum_subnet: auth_url={{ endpoint }} login_username={{ admin_user }} tenant_name={{ tenant_name }} login_tenant_name={{ tenant_name }} login_password={{ admin_password }} name={{ subnet_name }} network_name={{ name }} {% if delete %} state=absent {% else %} state=present cidr={{ cidr }} {% endif %}
--- - hosts: 127.0.0.1 connection: local tasks: - quantum_network: auth_url={{ endpoint }} login_username={{ admin_user }} tenant_name={{ tenant_name }} login_tenant_name={{ tenant_name }} login_password={{ admin_password }} name={{ name }} {% if delete %} state=absent {% else %} state=present {% endif %} shared=true - quantum_subnet: auth_url={{ endpoint }} login_username={{ admin_user }} tenant_name={{ tenant_name }} login_tenant_name={{ tenant_name }} login_password={{ admin_password }} name={{ subnet_name }} network_name={{ name }} {% if delete %} state=absent {% else %} state=present no_gateway=true cidr={{ cidr }} {% endif %}
Disable creation of an OpenStack gateway for private netwroks (and nat networks too, with the latter it does not matter)
Disable creation of an OpenStack gateway for private netwroks (and nat networks too, with the latter it does not matter)
YAML
apache-2.0
wathsalav/xos,wathsalav/xos,wathsalav/xos,wathsalav/xos
bf5a851d4085d9dac7996c68613fc8802fdab54b
manifests/cf-manifest/env-specific/prod-lon.yml
manifests/cf-manifest/env-specific/prod-lon.yml
--- uaa_instances: 3 nats_instances: 3 diego_api_instances: 3 cell_instances: 138 router_instances: 15 api_instances: 15 doppler_instances: 69 log_api_instances: 36 scheduler_instances: 10 cc_worker_instances: 10 cc_hourly_rate_limit: 60000 cc_staging_timeout_in_seconds: 2700 cc_maximum_health_check_timeout_in_seconds: 300 paas_region_name: london prometheus_disk_size: 750GB prometheus_retention_size: 700GB
--- uaa_instances: 3 nats_instances: 3 diego_api_instances: 3 cell_instances: 144 router_instances: 15 api_instances: 15 doppler_instances: 72 log_api_instances: 36 scheduler_instances: 10 cc_worker_instances: 10 cc_hourly_rate_limit: 60000 cc_staging_timeout_in_seconds: 2700 cc_maximum_health_check_timeout_in_seconds: 300 paas_region_name: london prometheus_disk_size: 750GB prometheus_retention_size: 700GB
Increase london cells to 144
Increase london cells to 144 We are getting close to the cell limit of 138, to get some head room increase it to 144 . Also increasing Doppler instances to 72 (>= 50% of cells and needs to be divisible by 3). Log-api instances can stay at 36 (>= 50% of Doppler instances and needs to be divisible by 3).
YAML
mit
alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf
d6b7a87dab2351ac87b86411b41aa415b03f2792
ansible/roles/image-preparation/handlers/main.yaml
ansible/roles/image-preparation/handlers/main.yaml
--- - name: Warn against rebooting debug: msg: | Once this playbook run has finished, do not reboot the device. If the device is rebooted, the resizing of the root filesystem would not happen for users of the image, and their wifi regulatory domain may be set incorrectly. # Skip lint because there's no way that ansible-lint can know at build time # that we're legitimately use shell because of the && that is always # present when this is run. - name: Perform final shutdown shell: sleep 2 && /sbin/shutdown -h now args: warn: no async: 1 poll: 0 when: shutdown_in_image_preparation tags: - skip_ansible_lint
--- - name: Warn against rebooting debug: msg: - =================================================================== - Once this playbook run has finished, do not reboot the device. - If the device is rebooted, the resizing of the root filesystem - would not happen for users of the image, and their wifi regulatory - domain may be set incorrectly. - ==================================================================== - . - ==================================================================== - Wait until the target machine has completely shut down (no blinking - activity from on-board LEDs) before removing power!! - ==================================================================== # Skip lint because there's no way that ansible-lint can know at build time # that we're legitimately use shell because of the && that is always # present when this is run. - name: Perform final shutdown shell: sleep 2 && /sbin/shutdown -h now args: warn: no async: 1 poll: 0 when: shutdown_in_image_preparation tags: - skip_ansible_lint
Clean up final build message
Clean up final build message Re-format and clean up final message to users at the end of the build process.
YAML
apache-2.0
edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi,edwinsteele/biblebox-pi
8beebc30a1adc90905593202bd84ef7f87aeec40
packages/nu/nuxeo.yaml
packages/nu/nuxeo.yaml
homepage: '' changelog-type: markdown hash: b8682a99337ac638b168b676f011c1e2af52fb924163035067b0b7a404f30ae9 test-bench-deps: {} maintainer: alex@xn--wxa.email synopsis: Nuxeo changelog: ! '# Revision history for nuxeo ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: -any base: ! '>=4.10 && <4.11' time: -any text: -any conduit: -any conduit-extra: -any attoparsec: -any all-versions: - '0.1.0.0' - '0.1.0.1' author: Alexandre Peyroux latest: '0.1.0.1' description-type: haddock description: Nuxeo license-name: BSD3
homepage: '' changelog-type: markdown hash: c31010972782c9ed0062fc36da26555e4be16ec2faf37fc3cca1192223841fe9 test-bench-deps: {} maintainer: alex@xn--wxa.email synopsis: Nuxeo changelog: ! '# Revision history for nuxeo ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: -any base: ! '>=4.10 && <4.11' time: -any text: -any conduit: -any conduit-extra: -any attoparsec: -any all-versions: - '0.2.0.0' author: Alexandre Peyroux latest: '0.2.0.0' description-type: haddock description: Nuxeo license-name: BSD3
Update from Hackage at 2018-05-09T14:39:40Z
Update from Hackage at 2018-05-09T14:39:40Z
YAML
mit
commercialhaskell/all-cabal-metadata
1f084aa01d68448cf08dae7cd3351cbf3d443cb1
shippable.yml
shippable.yml
language: ruby rvm: - 2.1.1 #- 2.1.2 env: global: - APP_NAME=ypreg - CI_REPORTS=shippable/testresults COVERAGE_REPORTS=shippable/codecoverage before_script: - cp config/database.shippable.yml config/database.yml - psql -c 'create database ypreg_test;' -U postgres - rake db:migrate after_success : - git push -f git@heroku.com:ypreg.git master notifications: email: recipients: - hdfelix@gmail.com
language: ruby rvm: - 2.1.1 #- 2.1.2 env: global: - APP_NAME=ypreg - CI_REPORTS=shippable/testresults COVERAGE_REPORTS=shippable/codecoverage before_script: - mkdir -p shippable/testresults - mkdir -p shippable/codecoverage - cp config/database.shippable.yml config/database.yml - psql -c 'create database ypreg_test;' -U postgres - rake db:migrate after_success : - git push -f git@heroku.com:ypreg.git master notifications: email: recipients: - hdfelix@gmail.com
Add support for 'testresults' and 'codecoverage' features
Add support for 'testresults' and 'codecoverage' features
YAML
mit
stephen144/ypreg,stephen144/ypreg,stephen144/ypreg
500b320eb30f992322f344f645cc4317210725c4
csc-mysql/docker-compose.yml
csc-mysql/docker-compose.yml
version: '3.5' services: csc-mysql: image: mysql:latest ports: - 3308:3306 volumes: - /docker-nfs/wd-mysql:/var/lib/mysql deploy: replicas: 1 update_config: parallelism: 1 delay: 10s restart_policy: condition: on-failure environment: MYSQL_ROOT_PASSWORD: ${DOCKER_WD_MYSQL_PASSWORD}
version: '3.5' services: csc-mysql: image: mysql:latest ports: - 3306:3306 volumes: - /docker-nfs/wd-mysql:/var/lib/mysql deploy: replicas: 1 update_config: parallelism: 1 delay: 10s restart_policy: condition: on-failure environment: MYSQL_ROOT_PASSWORD: ${DOCKER_WD_MYSQL_PASSWORD}
Change port on csc mysql
Change port on csc mysql
YAML
apache-2.0
uscdev/compose,uscdev/compose,uscdev/compose
fd17f57ff03288ab72bfb8223f62d444fc0f1284
schema/meta.yml
schema/meta.yml
--- "$schema": http://json-schema.org/draft-04/hyper-schema description: Iruka API v1 Alpha Document id: iruka links: - href: https://<your-iruka-server>.com rel: self title: Iruka API v1 Alpha
--- "$schema": http://json-schema.org/draft-04/hyper-schema description: Iruka API v1 Alpha Document id: iruka links: - href: https://<your-iruka-server>.com/api/v1-alpha rel: self title: Iruka API v1 Alpha
Change API path to /api/v1-alpha/
Change API path to /api/v1-alpha/
YAML
mit
spesnova/iruka,spesnova/iruka,spesnova/iruka,spesnova/iruka
bff99394a679ff10d6a0d052c3e9a90acef7c128
build/ansible/roles/ec2_inventory/master/tasks/main.yml
build/ansible/roles/ec2_inventory/master/tasks/main.yml
--- # Creates an EC2 instance to be the ansible master - name: fetch build variables include_vars: "{{ item }}" with_items: - ../../vars/secrets.yml - ../../vars/shared.yml - name: create an ubuntu instance ec2: region: "{{ ec2_region }}" image: "{{ ec2_base_image }}" instance_type: t2.micro key_name: "{{ ec2_provision_key }}" vpc_subnet_id: "{{ ec2_subnet_id }}" group: "{{ ec2_security_group }}" instance_tags: Ansible: Master Name: "{{ ec2_name_prefix }}-master" exact_count: 1 count_tag: Ansible: Master wait: yes assign_public_ip: yes register: ec2_provision_result - name: add it to the tag_Ansible_Master group here add_host: hostname={{ item.public_ip }} groups=tag_Ansible_Master with_items: "{{ ec2_provision_result.instances }}" - name: wait for ssh to come up wait_for: host={{ item.public_dns_name }} port=22 delay=60 timeout=320 state=started with_items: "{{ ec2_provision_result.instances }}" ...
--- # Creates an EC2 instance to be the ansible master - name: fetch build variables include_vars: "{{ item }}" with_items: - ../../vars/secrets.yml - ../../vars/shared.yml - name: create an ubuntu instance ec2: region: "{{ ec2_region }}" image: "{{ ec2_base_image }}" instance_type: t2.micro key_name: "{{ ec2_provision_key }}" vpc_subnet_id: "{{ ec2_subnet_id }}" group: "{{ ec2_security_group }}" instance_tags: Ansible: Master Name: "{{ ec2_name_prefix }}-master" exact_count: 1 count_tag: Ansible: Master wait: yes assign_public_ip: yes register: ec2_provision_result - name: add it to the tag_Ansible_Master group here add_host: hostname={{ item.public_ip }} groups=tag_Ansible_Master with_items: "{{ ec2_provision_result.instances }}" - name: wait for ssh to come up wait_for: host={{ item.public_dns_name }} port=22 delay=60 timeout=320 state=started with_items: "{{ ec2_provision_result.instances }}" - debug: msg: new master instance is {{ item.public_dns_name }} with_items: "{{ ec2_provision_result.instances }}" ...
Add a debug message so we know the public dns for the newly created master instance
Add a debug message so we know the public dns for the newly created master instance
YAML
mit
rsterbin/liturgicalendar,rsterbin/liturgicalendar,rsterbin/liturgicalendar
42c4a7c375a5f3f8eb6b1d956fe00d2356d76666
appveyor.yml
appveyor.yml
version: "{branch} {build}" build: verbosity: detailed build_script: - gradlew.bat build --info branches: only: - master - development artifacts: - path: '**\build\reports\tests' name: 'JUnit'
version: "{branch} {build}" build: verbosity: detailed build_script: - gradlew.bat assemble --info test_script: - gradlew.bat check --info branches: only: - master - development
Split the build into an assemble & test section so as to fit the Appveyor model
Split the build into an assemble & test section so as to fit the Appveyor model
YAML
apache-2.0
ysb33r/groovy-vfs,ysb33r/groovy-vfs
bc1683c621c71ea203e9b9cc62a6e4bae8c2806b
appveyor.yml
appveyor.yml
version: 1.0.{build} skip_tags: true max_jobs: 1 environment: matrix: - JAVA_HOME: C:\Program Files\Java\jdk1.7.0 install: - ps: choco install maven - mvn --version build_script: - mvn package test_script: - mvn test cache: - C:\Users\appveyor\.m2
version: 1.0.{build} skip_tags: true max_jobs: 1 environment: matrix: - JAVA_HOME: C:\Program Files\Java\jdk1.7.0 install: - ps: choco install maven - mvn --version build_script: - mvn -Dhttps.protocols=TLSv1.2 package test_script: - mvn -Dhttps.protocols=TLSv1.2 test cache: - C:\Users\appveyor\.m2
Add https protocols to build/test scripts
Add https protocols to build/test scripts This should fix the error: ``` Could not transfer artifact org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from/to central (https://repo.maven.apache.org/maven2): Received fatal alert: protocol_version" ``` Inspired by https://stackoverflow.com/a/50924208/5019386
YAML
mit
EasyBatch/easybatch-framework,EasyBatch/easybatch-framework
c05c3c824b05d8147108da3d6914273e60e2e3f6
appveyor.yml
appveyor.yml
# scripts that are called at very beginning, before repo cloning init: - git config --global core.autocrlf input # environment variables environment: SNYK_TOKEN: secure: Bq1MJN1u1Vjv2RWMDHsFYiNHe1n36Kn/G1gxB9l92TckT1m58Is6VjEV2EK+L/iC # build cache to preserve files/folders between builds cache: - C:\Users\appveyor\AppData\Roaming\npm\node_modules -> package.json # global npm modules - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # npm cache - node_modules -> package.json # local npm modules # scripts that run after cloning repository install: # Install node 7 - ps: Install-Product node 7 # Install npm 4 - npm install -g npm@4 # install modules - npm install # to run your custom scripts instead of automatic tests test_script: # Output useful info for debugging. - node --version - npm --version # run tests - npm test:cmd # Don't build with msbuild. build: off
# scripts that are called at very beginning, before repo cloning init: - git config --global core.autocrlf input # environment variables environment: SNYK_TOKEN: secure: Bq1MJN1u1Vjv2RWMDHsFYiNHe1n36Kn/G1gxB9l92TckT1m58Is6VjEV2EK+L/iC # build cache to preserve files/folders between builds cache: - C:\Users\appveyor\AppData\Roaming\npm\node_modules -> package.json # global npm modules - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # npm cache - node_modules -> package.json # local npm modules # scripts that run after cloning repository install: # Install node 7 - ps: Install-Product node 7 # Install npm 4 - npm install -g npm@4 # install modules - npm install # to run your custom scripts instead of automatic tests test_script: # Output useful info for debugging. - node --version - npm --version # run tests - npm run test:cmd # Don't build with msbuild. build: off
Refactor cross-platform environment variables in npm scripts
Refactor cross-platform environment variables in npm scripts
YAML
isc
smockle/regexpin
2e8eb3ca73d90b190aa5c30087928498bdaebda1
appveyor.yml
appveyor.yml
image: Visual Studio 2019 build_script: - ps: .\build.ps1 -Target "Appveyor" -Configuration "Release" # disable built-in tests. test: off artifacts: - path: package\*.nupkg - path: package\*.msi - path: package\*.zip deploy: - provider: NuGet server: https://www.myget.org/F/nunit/api/v2 api_key: secure: wtAvJDVl2tfwiVcyLExFHLvZVfUWiQRHsfdHBFCNEATeCHo1Nd8JP642PfY8xhji skip_symbols: true on: branch: master APPVEYOR_REPO_NAME: nunit/nunit-console
image: Visual Studio 2019 build_script: - ps: .\build.ps1 -Target "Appveyor" -Configuration "Release" # disable built-in tests. test: off artifacts: - path: package\*.nupkg - path: package\*.msi - path: package\*.zip deploy: - provider: NuGet server: https://www.myget.org/F/nunit/api/v3/index.json api_key: secure: wtAvJDVl2tfwiVcyLExFHLvZVfUWiQRHsfdHBFCNEATeCHo1Nd8JP642PfY8xhji skip_symbols: true on: branch: master APPVEYOR_REPO_NAME: nunit/nunit-console
Use v3 feed to push to myget so source package is pushed as well
Use v3 feed to push to myget so source package is pushed as well
YAML
mit
nunit/nunit-console,nunit/nunit-console,nunit/nunit-console
b313f545c33fb9df62ab0f96cc9d5d6da5733ed5
appveyor.yml
appveyor.yml
os: Visual Studio 2015 version: 1.0.{build} environment: CLI_VERSION: Latest install: - ps: mkdir -Force ".\.dotnetcli\" | Out-Null - ps: Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/install.ps1" -OutFile ".\.dotnetcli\install.ps1" - ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetcli" - ps: '& .\.dotnetcli\install.ps1 -version "$env:CLI_VERSION" -InstallDir "$env:DOTNET_INSTALL_DIR" -NoPath' - ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path" - ps: npm install -g bower - ps: npm install -g gulp build_script: - ps: dotnet --info - ps: .\Build.cmd nuget: disable_publish_on_pr: true skip_tags: false test: off
os: Visual Studio 2015 version: 1.0.{build} environment: CLI_VERSION: Latest install: - ps: mkdir -Force ".\.dotnetcli\" | Out-Null - ps: Invoke-WebRequest "https://raw.githubusercontent.com/dotnet/cli/rel/1.0.0/scripts/obtain/dotnet-install.ps1" -OutFile ".\.dotnetcli\install.ps1" - ps: $env:DOTNET_INSTALL_DIR = "$pwd\.dotnetcli" - ps: '& .\.dotnetcli\install.ps1 -version "$env:CLI_VERSION" -InstallDir "$env:DOTNET_INSTALL_DIR" -NoPath' - ps: $env:Path = "$env:DOTNET_INSTALL_DIR;$env:Path" - ps: npm install -g bower - ps: npm install -g gulp build_script: - ps: dotnet --info - ps: .\Build.cmd nuget: disable_publish_on_pr: true skip_tags: false test: off
Fix incorrect install script path
Fix incorrect install script path Fix the path for the dotnet CLI install script in GitHub that was incorrect.
YAML
mit
martincostello/api,martincostello/api,martincostello/api
0acbdac66fb806f4c512e077cdcaf9a4a8b66aef
appveyor.yml
appveyor.yml
# appveyor file # http://www.appveyor.com/docs/appveyor-yml init: - git config --global core.autocrlf input # what combinations to test environment: matrix: - nodejs_version: 0.10 - nodejs_version: 0.11 - nodejs_version: 0.12 install: - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) - npm -g install npm@2 - set PATH=%APPDATA%\npm;%PATH% - npm install -g gulp - npm install build: off test_script: - node --version - npm --version - ps: gulp test - cmd: gulp test
# appveyor file # http://www.appveyor.com/docs/appveyor-yml init: - git config --global core.autocrlf input # what combinations to test environment: matrix: - nodejs_version: 0.10 - nodejs_version: 0.11 - nodejs_version: 0.12 install: - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) - npm -g install npm@2.12.1 - set PATH=%APPDATA%\npm;%PATH% - npm install -g gulp - npm install build: off test_script: - node --version - npm --version - ps: gulp test - cmd: gulp test
Use NPM 2.12.1 in Appveyor due to a bug in 2.12.0
Use NPM 2.12.1 in Appveyor due to a bug in 2.12.0
YAML
apache-2.0
resin-io/resin-cli,resin-io/resin-cli,resin-io/resin-cli,resin-io/resin-cli
9158202aa783dbf03fdbc73c83d708a6c315ee41
appveyor.yml
appveyor.yml
init: - git config --global core.autocrlf input version: '{build}' environment: matrix: - nodejs_version: '0.10' install: - ps: Install-Product node $env:nodejs_version - npm install build: off test_script: - node --version - npm --version - npm test
init: - git config --global core.autocrlf input shallow_clone: true version: '{build}' skip_tags: true environment: matrix: - nodejs_version: '0.12' install: - ps: Install-Product node $env:nodejs_version - npm install build: off test_script: - node --version - npm --version - npm test
Update Node version to 0.12 on AppVeyor
Update Node version to 0.12 on AppVeyor
YAML
mit
imagemin/imagemin-pngout
3de960ad6120a69196a11383cd17bea0a27bbbaf
appveyor.yml
appveyor.yml
version: 1.0.0.{build} image: Visual Studio 2017 build_script: - cmd: Build\Build.cmd
version: OmniKassa-{build} image: Visual Studio 2017 build_script: - cmd: Build\Build.cmd
Use a different version number.
Use a different version number.
YAML
mit
dlemstra/OmniKassa
5a93556a251ad173bc3d455e9e2de96cc028862e
appveyor.yml
appveyor.yml
# Version version: '{build}' # Branches #branches: # only: master skip_tags: true # Build Server Image image: Visual Studio 2017 # Install Script install: - cmd: git submodule init - cmd: git submodule update - ps: $env:APPVEYOR_BUILD_NUMBER_PADDED = ([int]$env:appveyor_build_number).ToString("00000") # Build Script build_script: - ps: . .\build.ps1 # Tests test: false # Deploy deploy: false # Notifications notifications: - provider: Slack incoming_webhook: https://hooks.slack.com/services/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 channel: framework on_build_success: true on_build_failure: true on_build_status_changed: true
# Version version: '{build}' # Branches #branches: # only: master skip_tags: true # Build Server Image image: Visual Studio 2017 # Install Script install: - cmd: git submodule init - cmd: git submodule update - ps: $env:APPVEYOR_BUILD_NUMBER_PADDED = ([int]$env:appveyor_build_number).ToString("00000") # Build Script build_script: - ps: . .\build.ps1 # Tests test: false # Deploy deploy: provider: NuGet server: https://ci.appveyor.com/nuget/aliumfx api_key: bpk8im3nsp3x9twj2bt0buw4 artifact: /.*\.nupkg/ # Notifications notifications: - provider: Slack incoming_webhook: https://hooks.slack.com/services/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 channel: framework on_build_success: true on_build_failure: true on_build_status_changed: true
Deploy to internal CI NuGet feed
Deploy to internal CI NuGet feed
YAML
apache-2.0
AliumFX/Framework
96e5b7ee051bfc9367b6d3d8b04b6dad459d305b
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: "4" # Install scripts. (runs after repo cloning) install: # Get the Node version with matching major & minor numbers - ps: Install-Product node $env:nodejs_version # Log HTTP requests. - npm config set loglevel http # Typical npm stuff. - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - npm test # Don't actually build. build: off # Finish immediately if one of the jobs fails. matrix: fast_finish: true # Set up cache, clear it on package.json changes. cache: # npm cache. - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # Local npm packages. - node_modules -> package.json # Set build version format here instead of in the admin panel. version: "{build}"
# 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 after repo cloning) install: # Get the Node version with matching major & minor numbers - ps: Install-Product node $env:nodejs_version # Log HTTP requests. - npm config set loglevel http # Typical npm stuff. - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - npm test # Don't actually build. build: off # Finish immediately if one of the jobs fails. matrix: fast_finish: true # Set up cache, clear it on package.json changes. cache: # npm cache. - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # Local npm packages. - node_modules -> package.json # Set build version format here instead of in the admin panel. version: "{build}"
Test on Node 5 instead of 4
AppVeyor: Test on Node 5 instead of 4
YAML
mit
EE/grunt-defs