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
|
---|---|---|---|---|---|---|---|---|---|
fd0011433a0c071ca9080e5e723c9e15e3fe47d2
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
working_directory: ~/bearden
docker:
- image: artsy/ruby:2.5.1-node-chrome
environment:
RAILS_ENV: test
- image: circleci/postgres:10.1-alpine
- image: circleci/elasticsearch
steps:
- run: apt-get install libicu-dev
- checkout
- type: cache-restore
key: bearden-{{ checksum "Gemfile.lock" }}
- run: bundle install --path vendor/bundle
- type: cache-save
key: bearden-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle
# Make sure that Elasticsearch is up before running tests:
- run: sleep 10 && curl --retry 10 --retry-delay 5 -v http://127.0.0.1:9200/
- run: mv config/database{.circle,}.yml
- run: bundle exec rake db:create db:migrate
- run: bundle exec rake
- run: bash .circleci/heroku_setup
- add_ssh_keys:
fingerprints:
- "85:44:31:07:7a:a0:4e:bb:50:91:f0:d8:23:8f:69:03"
- deploy:
name: Deploy
command: .circleci/heroku_deploy
|
version: 2
jobs:
build:
working_directory: ~/bearden
docker:
- image: artsy/ruby:2.5.1-node-chrome
environment:
RAILS_ENV: test
- image: circleci/postgres:10.1-alpine
- image: circleci/elasticsearch
steps:
- run:
name: Install ICU for charlock_holmes
command: apt-get install libicu-dev
- checkout
- restore_cache:
key: bearden-{{ checksum "Gemfile.lock" }}
- run:
name: Bundle Install
command: bundle install --path vendor/bundle
- save_cache:
key: bearden-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle
- run:
name: Poll for Elasticsearch
command: sleep 10 && curl --retry 10 --retry-delay 5 -v http://127.0.0.1:9200/
- run:
name: Setup database
command: mv config/database{.circle,}.yml && bundle exec rake db:create db:migrate
- run:
name: Run tests
command: bundle exec rake
|
Use more modern CircleCI 2.0 syntax
|
Use more modern CircleCI 2.0 syntax
Stuff has changed since I migrated to 2.0 while it was in BETA.
|
YAML
|
mit
|
artsy/bearden,artsy/bearden,artsy/bearden,artsy/bearden
|
c536502574aa47054a31955f6593e851594f947e
|
.circleci/config.yml
|
.circleci/config.yml
|
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
version: 2
jobs:
build:
docker:
- image: circleci/node:7.10
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: grunt test
|
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
version: 2
jobs:
build:
docker:
- image: circleci/node:7.10
working_directory: ~/repo
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: npm run test
|
Replace grunt test for npm run test
|
Replace grunt test for npm run test
|
YAML
|
mit
|
jubalm/grunt-fontello
|
f4e40a8c13056c93a3e7237231a3752440f8f2b0
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
working_directory: /app
docker:
- image: docker:18.06.1-ce-git
steps:
- checkout
- setup_remote_docker
- run:
name: Build and push image to Docker Hub
command: apk --no-cache add curl && curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | sh -
|
version: 2
jobs:
build:
working_directory: /app
docker:
- image: docker:18.06.1-ce-git
steps:
- checkout
- setup_remote_docker
- run:
name: Build and push image to Docker Hub
command: apk --no-cache add curl bash && curl "https://raw.githubusercontent.com/pelias/ci-tools/master/build-docker-images.sh" | bash -
|
Add bash dependency to CircleCI
|
chore(CI): Add bash dependency to CircleCI
The Docker build script now uses bash specific syntax
|
YAML
|
mit
|
pelias/geonames,pelias/geonames
|
52e2fe52072039f6451eb3554af1187fe4ed4ddc
|
.circleci/config.yml
|
.circleci/config.yml
|
# Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
build:
docker:
# specify the version
- image: circleci/golang:1.9
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
- image: postgres:9.6
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_DB: password
#### TEMPLATE_NOTE: go expects specific checkout path representing url
#### expecting it in the form of
#### /go/src/github.com/circleci/go-tool
#### /go/src/bitbucket.org/circleci/go-tool
working_directory: /go/src/github.com/grafeas/grafeas/
steps:
- checkout
# specify any bash command here prefixed with `run: `
- run: make build; make test
workflows:
version: 2
commit:
jobs:
- build
nightly:
triggers:
- schedule:
cron: "0 0 * * *"
filters:
branches:
only:
- master
jobs:
- build
|
# Golang CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-go/ for more details
version: 2
jobs:
build:
docker:
# specify the version
- image: circleci/golang:1.9
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
- image: postgres:9.6
environment:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_DB: password
#### TEMPLATE_NOTE: go expects specific checkout path representing url
#### expecting it in the form of
#### /go/src/github.com/circleci/go-tool
#### /go/src/bitbucket.org/circleci/go-tool
working_directory: /go/src/github.com/grafeas/grafeas/
steps:
- checkout
# specify any bash command here prefixed with `run: `
- run: make build; make test
workflows:
version: 2
commit:
jobs:
- build
nightly:
triggers:
- schedule:
# Every day at midnight.
cron: "0 0 * * *"
filters:
branches:
only:
- master
jobs:
- build
|
Add a comment about what the cron syntax means.
|
Add a comment about what the cron syntax means.
|
YAML
|
apache-2.0
|
grafeas/grafeas,Grafeas/Grafeas,grafeas/grafeas
|
99d22db58395b90205cec40b2b7af2da3910432a
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2.1
orbs:
ruby-orbs: sue445/ruby-orbs@volatile
heroku: circleci/[email protected]
slack: circleci/slack@volatile
executors:
default:
docker:
- image: circleci/ruby:2.7.1
environment:
RACK_ENV: test
- image: circleci/postgres:9.4-alpine-ram
environment:
POSTGRES_USER: ubuntu
POSTGRES_DB: circle_test
working_directory: ~/app
jobs:
rspec:
executor:
name: default
steps:
- checkout
- ruby-orbs/bundle-install:
cache_key_prefix: "v3-bundle"
- run: cp .circleci/database.yml config/database.yml
- run: bundle exec rake ar:migrate:reset
- run: bundle exec rspec
- slack/status
rubocop:
executor:
name: default
steps:
- checkout
- ruby-orbs/bundle-install:
cache_key_prefix: "v3-bundle"
- run: bundle exec rubocop
- slack/status
workflows:
version: 2
build-and-deploy:
jobs:
- rspec
- rubocop
- heroku/deploy-via-git:
context: Heroku
requires:
- rspec
- rubocop
filters:
branches:
only: master
post-deploy:
- slack/status
|
version: 2.1
orbs:
ruby-orbs: sue445/ruby-orbs@volatile
heroku: circleci/heroku@volatile
slack: circleci/slack@volatile
executors:
default:
docker:
- image: circleci/ruby:2.7.1
environment:
RACK_ENV: test
- image: circleci/postgres:9.4-alpine-ram
environment:
POSTGRES_USER: ubuntu
POSTGRES_DB: circle_test
working_directory: ~/app
jobs:
rspec:
executor:
name: default
steps:
- checkout
- ruby-orbs/bundle-install:
cache_key_prefix: "v3-bundle"
- run: cp .circleci/database.yml config/database.yml
- run: bundle exec rake ar:migrate:reset
- run: bundle exec rspec
- slack/status
rubocop:
executor:
name: default
steps:
- checkout
- ruby-orbs/bundle-install:
cache_key_prefix: "v3-bundle"
- run: bundle exec rubocop
- slack/status
workflows:
version: 2
build-and-deploy:
jobs:
- rspec
- rubocop
- heroku/deploy-via-git:
context: Heroku
requires:
- rspec
- rubocop
filters:
branches:
only: master
post-deploy:
- slack/status
|
Upgrade to latest heroku orb
|
Upgrade to latest heroku orb
|
YAML
|
mit
|
sue445/ccc_privacy_crawler,sue445/ccc_privacy_crawler,sue445/ccc_privacy_crawler
|
a37c51a74168ac3d3bfa2dbf66cc2dea1b082f70
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8u222-jdk-stretch
environment:
TERM: dumb
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
- v1-dependencies-
- run: ./mvnw dependency:go-offline
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }}
- run: ./mvnw test
|
version: 2
jobs:
build:
docker:
- image: circleci/openjdk:8u222-jdk-stretch
environment:
TERM: dumb
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "pom.xml" }}
- v1-dependencies-
- run: ./mvnw dependency:go-offline
- save_cache:
paths:
- ~/.m2
key: v1-dependencies-{{ checksum "pom.xml" }}
- run: ./mvnw test
- store_test_results:
path: target/surefire-reports
|
Store test results for CircleCI
|
PULSE-89: Store test results for CircleCI
|
YAML
|
mit
|
fluxroot/pulse,fluxroot/pulse
|
d1e9b0e90f7dc170660793b70434acc0f5cf95f8
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
branches:
only:
- master
- /feature.*/
- /bugfix.*/
docker:
- image: circleci/openjdk:8-jdk
working_directory: ~/repo
environment:
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.gradle" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: ./gradlew dependencies
- save_cache:
paths:
- ~/.gradle
key: v1-dependencies-{{ checksum "build.gradle" }}
- run: ./gradlew test
- store_artifacts:
path: build/reports/tests
destination: reports
- run: ./gradlew build
- store_artifacts:
path: build/libs
destination: artifacts
|
version: 2
jobs:
build:
branches:
only:
- master
- /feature.*/
- /bugfix.*/
docker:
- image: circleci/openjdk:8-jdk
working_directory: ~/repo
environment:
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.gradle" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: ./gradlew dependencies
- save_cache:
paths:
- ~/.gradle
key: v1-dependencies-{{ checksum "build.gradle" }}
- run: ./gradlew test
- store_artifacts:
path: build/reports/tests
destination: reports
- run: ./gradlew build
- store_artifacts:
path: build/libs
destination: artifacts
- store_test_results:
path: build/test-results
|
Store test results on Circle CI
|
Store test results on Circle CI
|
YAML
|
agpl-3.0
|
vexelon-dot-net/currencybg.server
|
92764ce760111f63d41f4c84a495a103c96c1098
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2.1
orbs:
hokusai: artsy/[email protected]
not_staging_or_release: ¬_staging_or_release
filters:
branches:
ignore:
- staging
- release
only_master: &only_master
context: hokusai
filters:
branches:
only: master
only_release: &only_release
context: hokusai
filters:
branches:
only: release
workflows:
default:
jobs:
# pre-staging
- hokusai/test:
name: test
<<: *not_staging_or_release
# staging
- hokusai/push:
name: push-staging-image
<<: *only_master
requires:
- test
- hokusai/deploy-staging:
<<: *only_master
project-name: metaphysics
requires:
- push-staging-image
# release
- hokusai/push:
name: push-production-image
<<: *only_release
- hokusai/deploy-production:
<<: *only_release
requires:
- push-production-image
|
version: 2.1
orbs:
hokusai: artsy/[email protected]
not_staging_or_release: ¬_staging_or_release
filters:
branches:
ignore:
- staging
- release
only_master: &only_master
context: hokusai
filters:
branches:
only: master
only_release: &only_release
context: hokusai
filters:
branches:
only: release
workflows:
default:
jobs:
# pre-staging
- hokusai/test:
name: test
<<: *not_staging_or_release
# staging
- hokusai/push:
name: push-staging-image
<<: *only_master
requires:
- test
- hokusai/deploy-staging:
<<: *only_master
project-name: metaphysics
requires:
- push-staging-image
# release
- hokusai/push:
name: push-production-image
<<: *only_release
- hokusai/deploy-production:
<<: *only_release
requires:
- push-production-image
|
Update hokusai orb to v0.4.0
|
Update hokusai orb to v0.4.0
|
YAML
|
mit
|
artsy/metaphysics,mzikherman/metaphysics-1,artsy/metaphysics,artsy/metaphysics,mzikherman/metaphysics-1,mzikherman/metaphysics-1,mzikherman/metaphysics-1
|
01af6ecc0837d7c141de4261aa0cfc8f50b5dbba
|
.circleci/config.yml
|
.circleci/config.yml
|
# Scala CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/sample-config/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:8-jdk
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/repo
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.sbt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: cat /dev/null | sbt test:compile
- save_cache:
paths:
- ~/.m2
key: v1-dependencies--{{ checksum "build.sbt" }}
# run tests!
- run: cat /dev/null | sbt test:test
|
# Scala CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/sample-config/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/openjdk:8-jdk
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/postgres:9.4
working_directory: ~/spark-crowd
environment:
# Customize the JVM maximum heap limit
JVM_OPTS: -Xmx3200m
TERM: dumb
steps:
- checkout
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "build.sbt" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: cat /dev/null | sbt test:compile
- save_cache:
paths:
- ~/.m2
key: v1-dependencies--{{ checksum "build.sbt" }}
# run tests!
- run: cat /dev/null | sbt test:test
|
Fix working directory reference in CircleCI
|
Fix working directory reference in CircleCI
|
YAML
|
mit
|
enriquegrodrigo/spark-crowd,enriquegrodrigo/spark-crowd,enriquegrodrigo/spark-crowd,enriquegrodrigo/spark-crowd
|
bf83a60ce6e4127a7eabbe4cb0d8d87ae25f525e
|
.circleci/config.yml
|
.circleci/config.yml
|
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:10
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4
working_directory: ~/repo
steps:
- checkout
- run:
name: "Update npm"
command: |
npm install npm@latest
sudo rm -rf /usr/local/lib/node_modules/npm
sudo mv node_modules/npm /usr/local/lib/node_modules/npm
sudo chown -R 500:500 /usr/local/lib/node_modules/npm
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: npm test
|
# Javascript Node CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-javascript/ for more details
#
version: 2
jobs:
build:
docker:
# specify the version you desire here
- image: circleci/node:10
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4
working_directory: ~/repo
steps:
# Download and cache dependencies
- restore_cache:
keys:
- v1-dependencies-{{ checksum "package.json" }}
# fallback to using the latest cache if no exact match is found
- v1-dependencies-
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
# run tests!
- run: npm test
- run: npm run codecovUpload
|
Update circleCI for coverage reporting
|
Update circleCI for coverage reporting
|
YAML
|
mit
|
blockstack/ecdsa-key-encoder,blockstack/key-encoder-js,blockstack/key-encoder
|
e23846d888ac632dfdc760e9c17cd0b77860287f
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
test:
working_directory: ~/terraform-aws-ecs-service
docker:
- image: ruby:2.3.8
steps:
- checkout
- run: ./scripts/ci/common/install-git-crypt.sh
- run: ./scripts/ci/steps/test.sh
prerelease:
working_directory: ~/terraform-aws-ecs-service
docker:
- image: ruby:2.3.8
steps:
- checkout
- run: ./scripts/ci/common/install-git-crypt.sh
- run: ./scripts/ci/steps/prerelease.sh
release:
working_directory: ~/terraform-aws-ecs-service
docker:
- image: ruby:2.3.8
steps:
- checkout
- run: ./scripts/ci/common/install-git-crypt.sh
- run: ./scripts/ci/steps/release.sh
workflows:
version: 2
pipeline:
jobs:
- test:
filters:
branches:
only: master
- prerelease:
requires:
- test
filters:
branches:
only: master
- hold:
type: approval
requires:
- prerelease
filters:
branches:
only: master
- release:
requires:
- hold
filters:
branches:
only: master
|
version: 2
jobs:
test:
working_directory: ~/terraform-aws-ecs-service
docker:
- image: ruby:2.3.8
steps:
- checkout
- run: ./scripts/ci/common/install-git-crypt.sh
- run: ./scripts/ci/steps/test.sh
prerelease:
working_directory: ~/terraform-aws-ecs-service
docker:
- image: ruby:2.3.8
steps:
- checkout
- run: ./scripts/ci/common/install-git-crypt.sh
- run: ./scripts/ci/steps/prerelease.sh
release:
working_directory: ~/terraform-aws-ecs-service
docker:
- image: ruby:2.3.8
steps:
- checkout
- run: ./scripts/ci/common/install-git-crypt.sh
- run: ./scripts/ci/steps/release.sh
workflows:
version: 2
pipeline:
jobs:
- test:
filters:
branches:
only: master, terraform011
- prerelease:
requires:
- test
filters:
branches:
only: master, terraform011
- hold:
type: approval
requires:
- prerelease
filters:
branches:
only: master, terraform011
- release:
requires:
- hold
filters:
branches:
only: master, terraform011
|
Add terraform011 to the list of supported branches
|
Add terraform011 to the list of supported branches
|
YAML
|
mit
|
infrablocks/terraform-aws-ecs-service,infrablocks/terraform-aws-ecs-service
|
c4036dd5ff47b93edbb4cd761ce3e2550a9e30a7
|
ci/tasks/build-ucl.yaml
|
ci/tasks/build-ucl.yaml
|
---
platform: linux
image: packages/base-build
inputs:
- name: docker-upx.git
- name: ucl/source
outputs:
- ucl/build
run:
path: docker-upx.git/ci/scripts/build-ucl
|
---
platform: linux
image: packages/base-build
inputs:
- name: docker-upx.git
- name: ucl/source
outputs:
- name: ucl/build
run:
path: docker-upx.git/ci/scripts/build-ucl
|
Fix missing key in task
|
Fix missing key in task
|
YAML
|
mit
|
colstrom/docker-upx
|
81411ec3eb1b543a96b40e662bde3a85b828e692
|
cyrasterize/meta.yaml
|
cyrasterize/meta.yaml
|
package:
name: cyrasterize
version: 0.1.4
source:
fn: cyrasterize-0.1.4.zip
url: https://github.com/menpo/cyrasterize/archive/windows_fixes.zip
#url: https://pypi.python.org/packages/source/c/cyrasterize/cyrasterize-0.1.4.tar.gz
#md5: 67e5cd526c60833c37f67f31e1d63481
patches:
- windows_setup.patch
requirements:
build:
- python
- distribute
- numpy
- cython
- glew
- glfw3
- msinttypes
run:
- python
- numpy
test:
imports:
- cyrasterize
about:
home: https://github.com/menpo/cyrasterize/
license: BSD
|
package:
name: cyrasterize
version: 0.1.5
source:
fn: cyrasterize-0.1.5.tar.gz
url: https://pypi.python.org/packages/source/c/cyrasterize/cyrasterize-0.1.5.tar.gz
md5: 33dcc76dbeb639112c7936711122ec2f
patches:
- windows_setup.patch
requirements:
build:
- python
- distribute
- numpy
- cython
- glew
- glfw3
- msinttypes
run:
- python
- numpy
test:
imports:
- cyrasterize
about:
home: https://github.com/menpo/cyrasterize/
license: BSD
|
Use Pypi and bump to 0.15.0
|
Use Pypi and bump to 0.15.0
|
YAML
|
bsd-3-clause
|
menpo/conda-recipes,menpo/conda-recipes
|
ab3ff9f1a2680dff412b0c0e5fb7d1a630ccf8d2
|
.github/workflows/build.yaml
|
.github/workflows/build.yaml
|
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
cache: maven
- run: mvn --batch-mode --update-snapshots verify
|
name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
cache: maven
- run: mvn --batch-mode --update-snapshots verify
|
Build on branch push and PR
|
Build on branch push and PR
|
YAML
|
apache-2.0
|
venushka/jmxeval,venushka/jmxeval
|
c7f90ca482dbbc125c1aeaef079af5c20c3a57c3
|
.github/workflows/nodejs.yml
|
.github/workflows/nodejs.yml
|
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 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 ci
npm run build --if-present
npm test
env:
CI: true
|
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x, 10.x, 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 ci
npm run build --if-present
npm test
env:
CI: true
ICOMFORT_USERNAME: ${{ secrets.ICOMFORT_USERNAME }}
ICOMFORT_PASSWORD: ${{ secrets.ICOMFORT_PASSWORD }}
ICOMFORT_GATEWAY_SERIAL: ${{ secrets.ICOMFORT_GATEWAY_SERIAL }}
|
Update automated tests to use environment vars
|
Update automated tests to use environment vars
|
YAML
|
mit
|
deHugo/icomfort-js
|
0ad776e53026062c258e1856e099235474531a51
|
.github/workflows/python.yml
|
.github/workflows/python.yml
|
name: Python
on:
push:
branches: [ master ]
tags:
- 'v*'
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install -r requirements-dev.txt
- name: Lint with pep8
run: |
pep8 --ignore=E501 escherauth
- name: Test with nosetests
run: nosetests
- name: Build package
run: python -m build
- name: Publish package
if: startsWith(github.ref, 'refs/tags')
uses: pypa/[email protected]
with:
verbose: true
skip_existing: true
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
|
name: Python
on:
push:
branches: [ master ]
tags:
- 'v*'
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install -r requirements-dev.txt
- name: Lint with pep8
run: |
pep8 --ignore=E501 escherauth
- name: Test with nosetests
run: nosetests
- name: Build package
run: python -m build
- name: Publish package
if: startsWith(github.ref, 'refs/tags')
uses: pypa/[email protected]
with:
skip_existing: true
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
|
Revert "OPS: investigate failing publish"
|
Revert "OPS: investigate failing publish"
This reverts commit 2499166e62e861d4af08166d038926a7c38dac48.
|
YAML
|
mit
|
emartech/escher-python
|
a590271421f2b8a21cba161e67284b44849d7025
|
packages/di/distribution-opensuse.yaml
|
packages/di/distribution-opensuse.yaml
|
homepage: https://github.com/peti/distribution-opensuse/
changelog-type: ''
hash: 4ea2ef70494355c13b47f4b245c85f82fbe0510aade92e50ad9a368b1172b730
test-bench-deps:
base: -any
distribution-opensuse: -any
maintainer: [email protected]
synopsis: Types, functions, and tools to manipulate the openSUSE distribution
changelog: ''
basic-deps:
bytestring: -any
extra: -any
base: <5
time: -any
Diff: -any
parsec-class: -any
text: -any
turtle: -any
containers: -any
binary: -any
hsemail: -any
mtl: -any
foldl: -any
hashable: -any
deepseq: -any
distribution-opensuse: -any
pretty: -any
aeson: -any
all-versions:
- 1.0.0
- 1.1.0
- 1.1.1
- 1.1.2
author: Peter Simons
latest: 1.1.2
description-type: haddock
description: |-
This library is a loose collection of types, functions, and tools that
users and developers of the
<https://opensuse.org/ openSUSE Linux distribution> might find useful.
license-name: BSD-3-Clause
|
homepage: https://github.com/peti/distribution-opensuse/
changelog-type: ''
hash: 0ebf05cfc1a022bda11a6b7146d908df989217362f4cb4b2f1f5558aaeb58cb7
test-bench-deps:
base: -any
distribution-opensuse: -any
maintainer: [email protected]
synopsis: Types, functions, and tools to manipulate the openSUSE distribution
changelog: ''
basic-deps:
bytestring: -any
extra: -any
base: <5
time: -any
Diff: -any
parsec-class: -any
text: -any
turtle: -any
containers: -any
binary: -any
hsemail: -any
mtl: -any
foldl: -any
hashable: -any
deepseq: -any
distribution-opensuse: -any
pretty: -any
aeson: -any
all-versions:
- 1.0.0
- 1.1.0
- 1.1.1
- 1.1.2
- 1.1.3
author: Peter Simons
latest: 1.1.3
description-type: haddock
description: |-
This library is a loose collection of types, functions, and tools that
users and developers of the
<https://opensuse.org/ openSUSE Linux distribution> might find useful.
license-name: BSD-3-Clause
|
Update from Hackage at 2022-02-13T09:18:49Z
|
Update from Hackage at 2022-02-13T09:18:49Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
21661c96ed5466cdd9b9c5e76a45b6c7d3e163cf
|
packages/flutter_markdown/pubspec.yaml
|
packages/flutter_markdown/pubspec.yaml
|
name: flutter_markdown
description: A markdown renderer for Flutter.
version: 0.1.0
author: Flutter Authors <[email protected]>
homepage: http://flutter.io
dependencies:
flutter:
path: ../flutter
markdown: '^0.9.0'
string_scanner: '^0.1.5'
dev_dependencies:
flutter_test:
path: ../flutter_test
|
name: flutter_markdown
description: A markdown renderer for Flutter.
version: 0.1.0
author: Flutter Authors <[email protected]>
homepage: http://flutter.io
dependencies:
flutter:
path: ../flutter
markdown: '^0.9.0'
string_scanner: ^1.0.0
dev_dependencies:
flutter_test:
path: ../flutter_test
|
Update Dart (1.19.0-dev.0.0) and analyzer (0.27.4-alpha.19).
|
Update Dart (1.19.0-dev.0.0) and analyzer (0.27.4-alpha.19).
|
YAML
|
bsd-3-clause
|
flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages,flutter/packages
|
d7d027ada5391b8c4edc3a14a24c29cd59254864
|
.github/workflows/main.yml
|
.github/workflows/main.yml
|
on: [push,pull_request]
name: Static analysis
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: PHPStan
uses: docker://oskarstark/phpstan-ga
with:
args: analyze --no-progress
php-cs-fixer:
name: PHP-CS-Fixer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: PHP-CS-Fixer
uses: docker://oskarstark/php-cs-fixer-ga
with:
args: --dry-run --diff-format udiff
|
on: [push,pull_request]
name: Static analysis
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: PHPStan
uses: docker://oskarstark/phpstan-ga
env:
REQUIRE_DEV: true
with:
args: analyze --no-progress
php-cs-fixer:
name: PHP-CS-Fixer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: PHP-CS-Fixer
uses: docker://oskarstark/php-cs-fixer-ga
with:
args: --dry-run --diff-format udiff
|
Update github workflow to install dev packages for phpstan
|
Update github workflow to install dev packages for phpstan
|
YAML
|
mit
|
geocoder-php/BazingaGeocoderBundle
|
771799b3268c5e992643d144be0b3eea665512f4
|
.github/workflows/rust.yml
|
.github/workflows/rust.yml
|
name: rust
on:
push:
branches:
- cargo-make-automation
pull_request:
branches:
- cargo-make-automation
jobs:
cargo-make:
name: install cargo-make
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: download and install cargo-make
run: scripts/install-cargo-make.sh
|
name: rust
on:
push:
branches:
- cargo-make-automation
pull_request:
branches:
- cargo-make-automation
jobs:
cargo-make:
name: install cargo-make
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v1
- name: download and install cargo-make
run: scripts/install-cargo-make.sh
|
Add actions/checkout to github workflow
|
Add actions/checkout to github workflow
|
YAML
|
apache-2.0
|
tempbottle/trust-dns
|
6f408ec0326cc792914d13209851c52a4d564f87
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
working_directory: ~/jsonschema2pojo-rules-bettermaps
docker:
- image: maven:3.3.9
steps:
- checkout
- restore_cache:
key: jsonschema2pojo-rules-bettermaps-{{.Branch}}
- run: mvn package
- save_cache:
key: jsonschema2pojo-rules-bettermaps-{{.Branch}}
paths:
- "~/.m2/repository"
- store_artifacts:
path: target/surefire-reports/
destination: surefire
|
version: 2
jobs:
build:
working_directory: ~/jsonschema2pojo-rules-bettermaps
docker:
- image: maven:3.3.9
steps:
- checkout
- restore_cache:
key: jsonschema2pojo-rules-bettermaps-{{.Branch}}
- run: mvn package
- save_cache:
key: jsonschema2pojo-rules-bettermaps-{{.Branch}}
paths:
- "~/.m2/repository"
- run:
name: store test results
command: |
mkdir -p $CIRCLE_TEST_REPORTS/junit/
cp target/surefire-reports/*.xml $CIRCLE_TEST_REPORTS/junit/
|
Add run step for storing junit results
|
Add run step for storing junit results
|
YAML
|
apache-2.0
|
itzg/jsonschema2pojo-rules-bettermaps
|
e95fae900ae7b55f4f6022db58ac89bbb9cd7566
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
references:
steps: &steps
- checkout
- type: cache-restore
key: airports-bundler-{{ checksum "airports.gemspec" }}
- run: gem install bundler
- run: bundle install --path vendor/bundle
- type: cache-save
key: airports-bundler-{{ checksum "airports.gemspec" }}
paths:
- vendor/bundle
- type: shell
command: |
bundle exec rspec --profile 10 \
--format RspecJunitFormatter \
--out /tmp/test-results/rspec.xml \
--format progress \
spec
- type: store_test_results
path: /tmp/test-results
- run: bundle exec rubocop
jobs:
build-ruby22:
docker:
- image: ruby:2.2
steps: *steps
build-ruby23:
docker:
- image: ruby:2.3
steps: *steps
build-ruby24:
docker:
- image: ruby:2.4
steps: *steps
build-ruby25:
docker:
- image: ruby:2.5
steps: *steps
workflows:
version: 2
tests:
jobs:
- build-ruby22
- build-ruby23
- build-ruby24
- build-ruby25
|
version: 2
references:
steps: &steps
- checkout
- type: cache-restore
key: airports-bundler-{{ checksum "airports.gemspec" }}
- run: gem install bundler
- run: bundle install --path vendor/bundle
- type: cache-save
key: airports-bundler-{{ checksum "airports.gemspec" }}
paths:
- vendor/bundle
- type: shell
command: |
bundle exec rspec --profile 10 \
--format RspecJunitFormatter \
--out /tmp/test-results/rspec.xml \
--format progress \
spec
- type: store_test_results
path: /tmp/test-results
- run: bundle exec rubocop
jobs:
build-ruby24:
docker:
- image: ruby:2.4
steps: *steps
build-ruby25:
docker:
- image: ruby:2.5
steps: *steps
workflows:
version: 2
tests:
jobs:
- build-ruby24
- build-ruby25
|
Stop running CircleCI builds with Ruby 2.2 and 2.3
|
Stop running CircleCI builds with Ruby 2.2 and 2.3
|
YAML
|
mit
|
timrogers/airports,timrogers/airports
|
091a6e8069965c51fcd72a8388be663f39fe0fc7
|
.circleci/config.yml
|
.circleci/config.yml
|
version: 2
jobs:
build:
docker:
- image: ankyra/escape:latest
steps:
- checkout
- setup_remote_docker
- run:
name: Install Docker client
command: |
set -x
VER="17.03.0-ce"
curl -L -o /tmp/docker-$VER.tgz https://get.docker.com/builds/Linux/x86_64/docker-$VER.tgz
tar -xz -C /tmp -f /tmp/docker-$VER.tgz
mv /tmp/docker/* /usr/bin
- run:
name: Build and test Escape release
command: |
escape build && escape test
if [ "$CIRCLE_BRANCH" = "master" ] ; then
escape release --skip-build
fi
|
version: 2
jobs:
build:
docker:
- image: ankyra/escape:latest
steps:
- checkout
- setup_remote_docker
- run:
name: Install Docker client
command: |
set -x
VER="17.03.0-ce"
curl -L -o /tmp/docker-$VER.tgz https://get.docker.com/builds/Linux/x86_64/docker-$VER.tgz
tar -xz -C /tmp -f /tmp/docker-$VER.tgz
mv /tmp/docker/* /usr/bin
- run:
name: Build and test Escape release
command: |
escape build && escape test && if [ "$CIRCLE_BRANCH" = "master" ] ; then
escape release --skip-build
fi
|
Work around for Circle's lack of 'set -e' support
|
Work around for Circle's lack of 'set -e' support
|
YAML
|
apache-2.0
|
ankyra/escape-core,ankyra/escape-core,ankyra/escape-core
|
d356d73ea9c907f7b748bc0c5210aff461e2c351
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: run-tests
on:
push:
branches: [master, dev]
pull_request:
branches: [master]
jobs:
run-conda-test:
name: Running tests using miniconda
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: deptest-${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}
channels: conda-forge,pkgw-forge
- name: Show conda details
run: |
conda info
conda list
which python
conda --version
- name: Install conda dependencies
run: |
conda install -c pkgw/label/superseded gtk3
conda install -c conda-forge pygobject
conda install -c conda-forge gdk-pixbuf
conda install -c pkgw-forge adwaita-icon-theme
- name: Install Python dependencies
run: |
python setup.py install
pip install pytest
- name: Run tests
run: |
pytest
|
name: run-tests
on:
push:
branches: [master, dev]
pull_request:
branches: [master]
jobs:
run-conda-test:
name: Running tests using miniconda
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash -l {0}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- uses: conda-incubator/setup-miniconda@v2
with:
activate-environment: deptest-${{ matrix.python-version }}
python-version: ${{ matrix.python-version }}
channels: conda-forge,pkgw-forge
- name: Show conda details
run: |
conda info
conda list
which python
conda --version
- name: Install Linux conda dependencies
if: ${{ matrix.os }} == 'ubuntu-latest'
run: |
conda install -c pkgw/label/superseded gtk3
conda install -c conda-forge pygobject
conda install -c conda-forge gdk-pixbuf
conda install -c pkgw-forge adwaita-icon-theme
- name: Install MacOS conda dependencies
if: ${{ matrix.os }} == 'macos-latest'
run: |
conda install -c pkgw/label/superseded gtk3
conda install -c conda-forge pygobject
conda install -c conda-forge gdk-pixbuf
- name: Install Python dependencies
run: |
python setup.py install
pip install pytest
- name: Run tests
run: |
pytest
|
Add full python/os matrix build
|
[gh/actions] Add full python/os matrix build
|
YAML
|
bsd-3-clause
|
mpsonntag/bulk-rename,mpsonntag/bulk-rename
|
6fa0626e23dcbb90af54848231769b9407a6e1c0
|
packages/ca/category.yaml
|
packages/ca/category.yaml
|
homepage: ''
changelog-type: ''
hash: 39af0885c6c0d54d0be3b4bb6ada184e88e47cb2e887f62b6e72aa6b2666bf31
test-bench-deps: {}
maintainer: [email protected]
synopsis: Categorical types and classes
changelog: ''
basic-deps:
base: ! '>=4.10 && <5'
all-versions:
- '0.1.0.0'
author: M Farkas-Dyck
latest: '0.1.0.0'
description-type: haddock
description: ''
license-name: BSD3
|
homepage: ''
changelog-type: ''
hash: c3f6ce695350a61ef7bd43ff0480216ff5dfcbf9e33503369a2cf500c956563e
test-bench-deps: {}
maintainer: [email protected]
synopsis: Categorical types and classes
changelog: ''
basic-deps:
base: ! '>=4.10 && <5'
all-versions:
- '0.1.0.0'
- '0.1.0.1'
author: M Farkas-Dyck
latest: '0.1.0.1'
description-type: haddock
description: ''
license-name: BSD3
|
Update from Hackage at 2017-11-15T22:53:17Z
|
Update from Hackage at 2017-11-15T22:53:17Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
b6b3a906589be0b7f642cac13ae6004d52a252f0
|
packages/he/heredocs.yaml
|
packages/he/heredocs.yaml
|
homepage: http://github.com/cutsea110/heredoc.git
changelog-type: ''
hash: 8fcacc14d160a9d00140a8be3d217be6763ccd75b234a5a6307853c2eae5af98
test-bench-deps:
base: -any
text: ! '>=1.2.2.1'
doctest: ! '>=0.11.0'
heredocs: -any
maintainer: [email protected]
synopsis: heredocument
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
text: ! '>=1.2.2.1'
parsec: ! '>=3.1.9'
doctest: ! '>=0.11.0'
template-haskell: ! '>=2.10.0.0'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.2.0'
author: cutsea110
latest: '0.1.2.0'
description-type: haddock
description: heredocument
license-name: BSD3
|
homepage: http://github.com/cutsea110/heredoc.git
changelog-type: ''
hash: c6f5305c86365e5af841406fd2349dc999dce9261e1622cdfbf566cf2de19c75
test-bench-deps:
base: -any
text: ! '>=1.2.2.1'
doctest: ! '>=0.11.0'
heredocs: -any
maintainer: [email protected]
synopsis: heredocument
changelog: ''
basic-deps:
base: ! '>=4.8 && <4.9'
text: ! '>=1.2.2.1'
parsec: ! '>=3.1.9'
doctest: ! '>=0.11.0'
template-haskell: ! '>=2.10.0.0'
all-versions:
- '0.1.0.0'
- '0.1.1.0'
- '0.1.2.0'
- '0.1.2.1'
author: cutsea110
latest: '0.1.2.1'
description-type: haddock
description: heredocument
license-name: BSD3
|
Update from Hackage at 2016-04-28T06:47:29+0000
|
Update from Hackage at 2016-04-28T06:47:29+0000
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
f9c2bbf4dfc6c2f71784bac07b9260f07d9c3482
|
packages/pr/preamble.yaml
|
packages/pr/preamble.yaml
|
homepage: https://github.com/swift-nav/preamble
changelog-type: ''
hash: 6af40e738db10bfe01c3c84635e44541abb9127e58566536de1fc5c32664e0cb
test-bench-deps: {}
maintainer: Mark Fine <[email protected]>
synopsis: Yet another prelude.
changelog: ''
basic-deps:
shake: -any
exceptions: -any
base: ! '>=4.7 && <5'
time: -any
unordered-containers: -any
text: -any
basic-prelude: -any
monad-control: -any
fast-logger: -any
lens: -any
text-manipulate: -any
mtl: -any
transformers-base: -any
monad-logger: -any
resourcet: -any
aeson: -any
template-haskell: -any
safe: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
author: Swift Navigation Inc.
latest: '0.0.3'
description-type: haddock
description: Yet another prelude, built on BasicPrelude.
license-name: MIT
|
homepage: https://github.com/swift-nav/preamble
changelog-type: ''
hash: 72cdaf7e2f13015e5daa1890364745197d1a28b3cf45a52a7e0d97b92d725e83
test-bench-deps: {}
maintainer: Mark Fine <[email protected]>
synopsis: Yet another prelude.
changelog: ''
basic-deps:
shake: -any
exceptions: -any
base: ! '>=4.8 && <5'
time: -any
unordered-containers: -any
text: -any
basic-prelude: -any
monad-control: -any
fast-logger: -any
lens: -any
text-manipulate: -any
mtl: -any
transformers-base: -any
monad-logger: -any
resourcet: -any
aeson: -any
template-haskell: -any
safe: -any
all-versions:
- '0.0.1'
- '0.0.2'
- '0.0.3'
- '0.0.4'
author: Swift Navigation Inc.
latest: '0.0.4'
description-type: haddock
description: Yet another prelude, built on BasicPrelude.
license-name: MIT
|
Update from Hackage at 2016-12-22T03:51:47Z
|
Update from Hackage at 2016-12-22T03:51:47Z
|
YAML
|
mit
|
commercialhaskell/all-cabal-metadata
|
524b27f87d2e6630ae80a896c33411fba6942cef
|
.zuul.yaml
|
.zuul.yaml
|
- project:
templates:
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
- check-requirements
check:
jobs:
- monasca-tempest-python-influxdb:
voting: false
- monasca-tempest-java-influxdb:
voting: false
- openstack-tox-lower-constraints
- openstack-tox-cover
gate:
jobs:
- openstack-tox-lower-constraints
- openstack-tox-cover
|
- project:
templates:
- check-requirements
- openstack-cover-jobs
- openstack-lower-constraints-jobs
- openstack-python-jobs
- openstack-python35-jobs
- openstack-python36-jobs
check:
jobs:
- monasca-tempest-python-influxdb:
voting: false
- monasca-tempest-java-influxdb:
voting: false
|
Use templates for cover and lower-constraints
|
Use templates for cover and lower-constraints
Use openstack-tox-cover template, this runs the cover job
in the check queue only.
Use openstack-lower-constraints-jobs template.
Remove jobs that are part of the templates.
Change-Id: I11c2d51bda39fa4d1cb89322c9f9bd132d61f11b
|
YAML
|
apache-2.0
|
openstack/monasca-notification,stackforge/monasca-notification,openstack/monasca-notification
|
9256bd59bf9efb4fa9f8e49d1f1e674ad5b0bdbf
|
.zuul.yaml
|
.zuul.yaml
|
- project:
templates:
- openstack-python3-zed-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- storlets-functional
gate:
jobs:
- storlets-functional
- job:
name: storlets-functional
pre-run: playbooks/storlets-functional/pre.yaml
run: playbooks/storlets-functional/run.yaml
post-run: playbooks/storlets-functional/post.yaml
nodeset: ubuntu-focal
timeout: 2400
irrelevant-files:
- ^(api-ref|doc|releasenotes)/.*$
- ^(.gitreview|.mailmap|AUTHORS|CHANGELOG)$
- ^tests/unit/.*$
|
- project:
templates:
- openstack-python3-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
check:
jobs:
- storlets-functional
gate:
jobs:
- storlets-functional
- job:
name: storlets-functional
pre-run: playbooks/storlets-functional/pre.yaml
run: playbooks/storlets-functional/run.yaml
post-run: playbooks/storlets-functional/post.yaml
nodeset: ubuntu-focal
timeout: 2400
irrelevant-files:
- ^(api-ref|doc|releasenotes)/.*$
- ^(.gitreview|.mailmap|AUTHORS|CHANGELOG)$
- ^tests/unit/.*$
|
Switch to 2023.1 Python3 unit tests and generic template name
|
Switch to 2023.1 Python3 unit tests and generic template name
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for antelope. Also,
updating the template name to generic one.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I843494b1f7dfeffc038039b6784182dab503915a
|
YAML
|
apache-2.0
|
openstack/storlets,openstack/storlets,openstack/storlets,openstack/storlets
|
e0aceaab50a0831dd40875ff9355f06226b9b373
|
.zuul.yaml
|
.zuul.yaml
|
- job:
name: compute-hyperv-openstack-tox-docs
parent: openstack-tox-docs
description: |
Run tox docs job with the nova dependency.
required-projects:
- openstack/nova
- project:
templates:
- build-release-notes-jobs-python3
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-wallaby-jobs
check:
jobs:
- compute-hyperv-openstack-tox-docs
gate:
jobs:
- compute-hyperv-openstack-tox-docs
|
- job:
name: compute-hyperv-openstack-tox-docs
parent: openstack-tox-docs
description: |
Run tox docs job with the nova dependency.
required-projects:
- openstack/nova
- project:
templates:
- build-release-notes-jobs-python3
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-xena-jobs
check:
jobs:
- compute-hyperv-openstack-tox-docs
gate:
jobs:
- compute-hyperv-openstack-tox-docs
|
Add Python3 xena unit tests
|
Add Python3 xena unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for xena.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: If4315235006d11e7f26e1632eff4f353860483f2
|
YAML
|
apache-2.0
|
openstack/compute-hyperv,openstack/compute-hyperv
|
23cbc09b4dd047a93e81be6185d41eb8118c5ad4
|
.zuul.yaml
|
.zuul.yaml
|
- job:
name: vitrage-dashboard-integration-tests
parent: horizon-integration-tests
required-projects:
- name: openstack/horizon
- name: openstack/vitrage
- name: openstack/python-vitrageclient
- name: openstack/vitrage-dashboard
roles:
- zuul: openstack-infra/devstack
- zuul: openstack/horizon
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^releasenotes/.*$
vars:
devstack_plugins:
vitrage: https://opendev.org/openstack/vitrage
vitrage-dashboard: https://opendev.org/openstack/vitrage-dashboard
devstack_services:
horizon: true
tox_envlist: integration
- project:
templates:
- horizon-nodejs10-jobs-nonvoting
- openstack-python-jobs-horizon
- openstack-python36-jobs-horizon
- openstack-python37-jobs-horizon
- publish-openstack-docs-pti
- check-requirements
- release-notes-jobs-python3
check:
jobs:
- vitrage-dashboard-integration-tests:
voting: false
|
- job:
name: vitrage-dashboard-integration-tests
parent: horizon-integration-tests
required-projects:
- name: openstack/horizon
- name: openstack/vitrage
- name: openstack/python-vitrageclient
- name: openstack/vitrage-dashboard
roles:
- zuul: openstack-infra/devstack
- zuul: openstack/horizon
irrelevant-files:
- ^.*\.rst$
- ^doc/.*$
- ^releasenotes/.*$
vars:
devstack_plugins:
vitrage: https://opendev.org/openstack/vitrage
vitrage-dashboard: https://opendev.org/openstack/vitrage-dashboard
devstack_services:
horizon: true
tox_envlist: integration
- project:
templates:
- horizon-nodejs10-jobs-nonvoting
- openstack-python-jobs-horizon
- openstack-python3-train-jobs
- publish-openstack-docs-pti
- check-requirements
- release-notes-jobs-python3
check:
jobs:
- vitrage-dashboard-integration-tests:
voting: false
|
Add Python 3 Train unit tests
|
Add Python 3 Train unit tests
See the Train python3-updates goal document for details:
https://governance.openstack.org/tc/goals/train/python3-updates.html
Change-Id: Ic509bdfc23d95d709db8b534827ab141e3d2a0b0
|
YAML
|
apache-2.0
|
openstack/vitrage-dashboard,openstack/vitrage-dashboard,openstack/vitrage-dashboard,openstack/vitrage-dashboard
|
4a00de041eaf0621d1cc75ab5a0d68ca61f19a4a
|
.zuul.yaml
|
.zuul.yaml
|
- project:
templates:
- check-requirements
- openstack-python3-zed-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
- openstack-cover-jobs
|
- project:
templates:
- check-requirements
- openstack-python3-antelope-jobs
- openstackclient-plugin-jobs
- publish-openstack-docs-pti
- release-notes-jobs-python3
- openstack-cover-jobs
|
Add Python3 antelope unit tests
|
Add Python3 antelope unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for antelope.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I5a485197c7b82b48fc85d3e5847b941aab5a11e0
|
YAML
|
apache-2.0
|
openstack/python-vitrageclient
|
fbeb92897a63e4401997ce732f55045c337ceb2f
|
build.yaml
|
build.yaml
|
repositories:
remote:
- http://repo1.maven.org/maven2
artifacts:
javax_annotation: org.realityforge.javax.annotation:javax.annotation:jar:1.0.0
|
repositories:
remote:
- https://repo1.maven.org/maven2
artifacts:
javax_annotation: org.realityforge.javax.annotation:javax.annotation:jar:1.0.0
|
Use SSL to access maven repository.
|
Use SSL to access maven repository.
|
YAML
|
apache-2.0
|
realityforge/rest-field-filter,realityforge/rest-field-filter
|
dae0bda5e54929b23e392207f2de9675f03bc1bd
|
apidoc/Titanium/Event.yml
|
apidoc/Titanium/Event.yml
|
---
name: Titanium.Event
summary: The base type for all Titanium events.
since: "0.1"
platforms: [android, iphone, ipad]
properties:
- name: source
summary: Source object that fired the event.
permission: read-only
type: Object
- name: type
summary: Name of the event fired.
permission: read-only
type: String
- name: bubbles
summary: True if the event will try to bubble up if possible.
permission: read-only
type: Boolean
platforms: [iphone, ipad, android]
since: "3.0.0"
- name: cancelBubble
summary: Set to true to stop the event from bubbling.
default: false
type: Boolean
platforms: [iphone, ipad, android]
since: "3.0.0"
|
---
name: Titanium.Event
summary: The base type for all Titanium events.
since: "0.1"
properties:
- name: source
summary: Source object that fired the event.
permission: read-only
type: Object
- name: type
summary: Name of the event fired.
permission: read-only
type: String
- name: bubbles
summary: True if the event will try to bubble up if possible.
permission: read-only
type: Boolean
platforms: [iphone, ipad, android]
since: "3.0.0"
- name: cancelBubble
summary: Set to true to stop the event from bubbling.
default: false
type: Boolean
platforms: [iphone, ipad, android]
since: "3.0.0"
|
Remove class platforms since supported by Mobile Web and Windows
|
Remove class platforms since supported by Mobile Web and Windows
|
YAML
|
apache-2.0
|
cheekiatng/titanium_mobile,prop/titanium_mobile,mvitr/titanium_mobile,KangaCoders/titanium_mobile,FokkeZB/titanium_mobile,openbaoz/titanium_mobile,mano-mykingdom/titanium_mobile,ashcoding/titanium_mobile,bright-sparks/titanium_mobile,smit1625/titanium_mobile,mvitr/titanium_mobile,rblalock/titanium_mobile,KangaCoders/titanium_mobile,KangaCoders/titanium_mobile,jhaynie/titanium_mobile,ashcoding/titanium_mobile,AngelkPetkov/titanium_mobile,mano-mykingdom/titanium_mobile,mano-mykingdom/titanium_mobile,AngelkPetkov/titanium_mobile,jhaynie/titanium_mobile,jvkops/titanium_mobile,formalin14/titanium_mobile,taoger/titanium_mobile,openbaoz/titanium_mobile,bright-sparks/titanium_mobile,FokkeZB/titanium_mobile,openbaoz/titanium_mobile,formalin14/titanium_mobile,KangaCoders/titanium_mobile,kopiro/titanium_mobile,mvitr/titanium_mobile,peymanmortazavi/titanium_mobile,indera/titanium_mobile,FokkeZB/titanium_mobile,peymanmortazavi/titanium_mobile,linearhub/titanium_mobile,rblalock/titanium_mobile,prop/titanium_mobile,peymanmortazavi/titanium_mobile,KangaCoders/titanium_mobile,jvkops/titanium_mobile,emilyvon/titanium_mobile,taoger/titanium_mobile,benbahrenburg/titanium_mobile,perdona/titanium_mobile,indera/titanium_mobile,bright-sparks/titanium_mobile,peymanmortazavi/titanium_mobile,taoger/titanium_mobile,formalin14/titanium_mobile,falkolab/titanium_mobile,prop/titanium_mobile,linearhub/titanium_mobile,ashcoding/titanium_mobile,falkolab/titanium_mobile,bhatfield/titanium_mobile,AngelkPetkov/titanium_mobile,jvkops/titanium_mobile,KoketsoMabuela92/titanium_mobile,emilyvon/titanium_mobile,rblalock/titanium_mobile,formalin14/titanium_mobile,falkolab/titanium_mobile,KoketsoMabuela92/titanium_mobile,jvkops/titanium_mobile,AngelkPetkov/titanium_mobile,emilyvon/titanium_mobile,jvkops/titanium_mobile,peymanmortazavi/titanium_mobile,benbahrenburg/titanium_mobile,collinprice/titanium_mobile,taoger/titanium_mobile,ashcoding/titanium_mobile,FokkeZB/titanium_mobile,mano-mykingdom/titanium_mobile,csg-coder/titanium_mobile,jvkops/titanium_mobile,KangaCoders/titanium_mobile,perdona/titanium_mobile,mvitr/titanium_mobile,FokkeZB/titanium_mobile,smit1625/titanium_mobile,cheekiatng/titanium_mobile,taoger/titanium_mobile,AngelkPetkov/titanium_mobile,jvkops/titanium_mobile,csg-coder/titanium_mobile,mano-mykingdom/titanium_mobile,csg-coder/titanium_mobile,kopiro/titanium_mobile,emilyvon/titanium_mobile,KoketsoMabuela92/titanium_mobile,linearhub/titanium_mobile,rblalock/titanium_mobile,formalin14/titanium_mobile,cheekiatng/titanium_mobile,smit1625/titanium_mobile,KoketsoMabuela92/titanium_mobile,peymanmortazavi/titanium_mobile,csg-coder/titanium_mobile,csg-coder/titanium_mobile,openbaoz/titanium_mobile,collinprice/titanium_mobile,benbahrenburg/titanium_mobile,emilyvon/titanium_mobile,perdona/titanium_mobile,FokkeZB/titanium_mobile,kopiro/titanium_mobile,bright-sparks/titanium_mobile,benbahrenburg/titanium_mobile,benbahrenburg/titanium_mobile,cheekiatng/titanium_mobile,cheekiatng/titanium_mobile,benbahrenburg/titanium_mobile,mano-mykingdom/titanium_mobile,jvkops/titanium_mobile,perdona/titanium_mobile,KangaCoders/titanium_mobile,ashcoding/titanium_mobile,jhaynie/titanium_mobile,openbaoz/titanium_mobile,csg-coder/titanium_mobile,prop/titanium_mobile,kopiro/titanium_mobile,bhatfield/titanium_mobile,AngelkPetkov/titanium_mobile,indera/titanium_mobile,bhatfield/titanium_mobile,prop/titanium_mobile,KoketsoMabuela92/titanium_mobile,linearhub/titanium_mobile,mvitr/titanium_mobile,mano-mykingdom/titanium_mobile,bright-sparks/titanium_mobile,cheekiatng/titanium_mobile,indera/titanium_mobile,KoketsoMabuela92/titanium_mobile,collinprice/titanium_mobile,bright-sparks/titanium_mobile,collinprice/titanium_mobile,collinprice/titanium_mobile,AngelkPetkov/titanium_mobile,rblalock/titanium_mobile,perdona/titanium_mobile,taoger/titanium_mobile,bhatfield/titanium_mobile,bright-sparks/titanium_mobile,mvitr/titanium_mobile,formalin14/titanium_mobile,smit1625/titanium_mobile,kopiro/titanium_mobile,smit1625/titanium_mobile,ashcoding/titanium_mobile,mvitr/titanium_mobile,jhaynie/titanium_mobile,collinprice/titanium_mobile,csg-coder/titanium_mobile,kopiro/titanium_mobile,indera/titanium_mobile,falkolab/titanium_mobile,formalin14/titanium_mobile,emilyvon/titanium_mobile,jhaynie/titanium_mobile,openbaoz/titanium_mobile,prop/titanium_mobile,KangaCoders/titanium_mobile,rblalock/titanium_mobile,KoketsoMabuela92/titanium_mobile,FokkeZB/titanium_mobile,prop/titanium_mobile,FokkeZB/titanium_mobile,rblalock/titanium_mobile,kopiro/titanium_mobile,taoger/titanium_mobile,perdona/titanium_mobile,falkolab/titanium_mobile,cheekiatng/titanium_mobile,emilyvon/titanium_mobile,mano-mykingdom/titanium_mobile,formalin14/titanium_mobile,falkolab/titanium_mobile,smit1625/titanium_mobile,peymanmortazavi/titanium_mobile,falkolab/titanium_mobile,jhaynie/titanium_mobile,linearhub/titanium_mobile,rblalock/titanium_mobile,falkolab/titanium_mobile,smit1625/titanium_mobile,openbaoz/titanium_mobile,indera/titanium_mobile,ashcoding/titanium_mobile,KoketsoMabuela92/titanium_mobile,indera/titanium_mobile,kopiro/titanium_mobile,indera/titanium_mobile,jhaynie/titanium_mobile,bhatfield/titanium_mobile,bhatfield/titanium_mobile,linearhub/titanium_mobile,taoger/titanium_mobile,bright-sparks/titanium_mobile,perdona/titanium_mobile,peymanmortazavi/titanium_mobile,jhaynie/titanium_mobile,collinprice/titanium_mobile,perdona/titanium_mobile,emilyvon/titanium_mobile,mvitr/titanium_mobile,openbaoz/titanium_mobile,benbahrenburg/titanium_mobile,prop/titanium_mobile,bhatfield/titanium_mobile,linearhub/titanium_mobile,ashcoding/titanium_mobile,smit1625/titanium_mobile,bhatfield/titanium_mobile,AngelkPetkov/titanium_mobile,benbahrenburg/titanium_mobile,cheekiatng/titanium_mobile,csg-coder/titanium_mobile,linearhub/titanium_mobile,collinprice/titanium_mobile
|
c70f29ec5a71bc3d32c19c626faec48a4cb0d981
|
azure-pipelines.yml
|
azure-pipelines.yml
|
trigger:
- main
pool:
vmImage: 'ubuntu-20.04'
variables:
buildConfiguration: 'Release'
steps:
- task: DotNetCoreCLI@2
inputs:
command: 'build'
- task: DotNetCoreCLI@2
inputs:
command: 'test'
- task: DotNetCoreCLI@2
inputs:
command: 'push'
packagesToPush: '$(Build.ArtifactStagingDirectory)/*.nupkg'
nuGetFeedType: 'external'
publishFeedCredentials: 'Nuget rest-mock-core'
|
trigger:
- main
pool:
vmImage: 'ubuntu-20.04'
variables:
buildConfiguration: 'Release'
steps:
- task: UseDotNet@2
displayName: 'Install dotnet 3.1 SDK'
inputs:
version: '3.1.x'
packageType: sdk
- task: DotNetCoreCLI@2
displayName: 'Build the solution'
inputs:
command: 'build'
- task: DotNetCoreCLI@2
displayName: 'Run the tests'
inputs:
command: 'test'
- task: DotNetCoreCLI@2
displayName: 'Packing'
inputs:
command: 'pack'
versioningScheme: byEnvVar
versionEnvVar: PackageVersion
packagesToPack: '**/RestMockCore.csproj'
- task: NuGetCommand@2
displayName: 'Push to nuget.org'
inputs:
command: 'push'
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg'
nuGetFeedType: 'external'
publishFeedCredentials: 'Nuget rest-mock-core'
|
Update aversioning of nuget package
|
Update aversioning of nuget package
|
YAML
|
mit
|
benyblack/rest-mock-core
|
9fd5ee1f16e5a44219ee6fff0d38bd330da966a1
|
circle.yml
|
circle.yml
|
version: 2
executorType: docker
containerInfo:
- image: golang:1.8
stages:
build:
workDir: /go/src/github.com/itzg/restify
steps:
- type: checkout
- type: shell
command: |
go get
go install
- type: deploy
command: |
tag=$(git describe --exact-match --tags)
if [ $? = 0 ]; then
go get github.com/mitchellh/gox
go get github.com/tcnksm/ghr
CGO_ENABLED=0 gox -ldflags "-X main.Version=$BUILD_VERSION -X main.BuildDate=$BUILD_DATE" -output "dist/${CIRCLE_PROJECT_REPONAME}_{{.OS}}_{{.Arch}}"
ghr -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME --replace $tag dist/
fi
|
version: 2
executorType: docker
containerInfo:
- image: golang:1.8
stages:
build:
workDir: /go/src/github.com/itzg/restify
steps:
- type: checkout
- type: shell
command: |
go get
go install
- type: deploy
command: |
tag=$(git describe --exact-match --tags)
if [ $? = 0 ]; then
go get github.com/mitchellh/gox
go get github.com/tcnksm/ghr
CGO_ENABLED=0 gox -ldflags "-X main.Version=$BUILD_VERSION -X main.BuildDate=$BUILD_DATE" \
-output "dist/${CIRCLE_PROJECT_REPONAME}_{{.OS}}_{{.Arch}}"
ghr -u $CIRCLE_USERNAME -r restify --replace $tag dist/
fi
|
Remove use of old CIRCLE env vars
|
Remove use of old CIRCLE env vars
|
YAML
|
apache-2.0
|
itzg/restify
|
a6520d703d4a264cc426131b884e4f50e375bb4f
|
circle.yml
|
circle.yml
|
test:
override:
- curl -s -O https://raw.githubusercontent.com/Arcanemagus/ci/atomlinter/build-package.sh | sh
- chmod u+x build-package.sh
- ./build-package.sh
dependencies:
override:
# If nothing is put here, CircleCI will run `npm install` using the system Node.js
- echo "Managed in the script"
machine:
environment:
ATOM_LINT_WITH_BUNDLED_NODE: "true"
APM_TEST_PACKAGES: ""
|
test:
override:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
- ./build-package.sh
dependencies:
override:
# If nothing is put here, CircleCI will run `npm install` using the system Node.js
- echo "Managed in the script"
machine:
environment:
ATOM_LINT_WITH_BUNDLED_NODE: "true"
APM_TEST_PACKAGES: ""
|
Move to official script again
|
Move to official script again
Since the official scripts support CircleCI, move this there.
|
YAML
|
mit
|
Arcanemagus/ci
|
33104f842d74d550986ae9d1cb66a0b3567028f1
|
circle.yml
|
circle.yml
|
machine:
python:
version: 2.7.9
dependencies:
pre:
- pip install python-coveralls
- pip install --upgrade setuptools
- sh mecab_install.sh
test:
pre:
- python -m nltk.downloader maxent_treebank_pos_tagger punkt stopwords
- nosetests tests/scripts_test.py:ScriptsTestCase.test_mobileclick_download_training_data
override:
- nosetests -v --with-coverage --with-xunit --xunit-file=$CIRCLE_TEST_REPORTS/nosetests.xml
post:
- coveralls
general:
artifacts:
- "runs"
|
machine:
python:
version: 2.7.9
dependencies:
pre:
- pip install python-coveralls
- pip install --upgrade setuptools
- sh mecab_install.sh
test:
pre:
- sh nltk_download.sh
- nosetests tests/scripts_test.py:ScriptsTestCase.test_mobileclick_download_training_data
override:
- nosetests -v --with-coverage --with-xunit --xunit-file=$CIRCLE_TEST_REPORTS/nosetests.xml
post:
- coveralls
general:
artifacts:
- "runs"
|
Change nltk model to be downloaded
|
Change nltk model to be downloaded
|
YAML
|
mit
|
mpkato/mobileclick,mpkato/mobileclick
|
d3fe741fde4b3643f17af4683775ffaa22604fa2
|
circle.yml
|
circle.yml
|
machine:
pre:
- sudo curl --output /usr/local/bin/phantomjs https://s3.amazonaws.com/circle-downloads/phantomjs-2.1.1
database:
post:
- ruby groonga/init.rb
|
machine:
pre:
- sudo curl --output /usr/local/bin/phantomjs https://s3.amazonaws.com/circle-downloads/phantomjs-2.1.1
- gem install bundler -v 1.13.7
database:
post:
- ruby groonga/init.rb
|
Use bundler 1.13.7 to avoid error
|
Use bundler 1.13.7 to avoid error
See https://github.com/sickill/rainbow/issues/48
|
YAML
|
mit
|
bm-sms/daimon-news,bm-sms/daimon-news,bm-sms/daimon-news
|
6019361d067409ca78e0542ffe646d1f84317363
|
circle.yml
|
circle.yml
|
machine:
environment:
DATABASE_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test
database:
override:
- echo Skipped.
test:
pre:
- bundle exec rake rubocop
|
machine:
environment:
DATABASE_URL: postgres://ubuntu:@127.0.0.1:5432/circle_test
dependencies:
post:
- bundle update
database:
override:
- echo Skipped.
test:
pre:
- bundle exec rake rubocop
|
Update gems on CI run
|
Update gems on CI run
|
YAML
|
mit
|
ad2games/ar_translate
|
5a38b6e90fb92fc91b30b1713a994641433efdd5
|
circle.yml
|
circle.yml
|
dependencies:
cache_directories:
- "~/.stack"
pre:
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 575159689BEFB442
- echo 'deb http://download.fpcomplete.com/ubuntu precise main' | sudo tee /etc/apt/sources.list.d/fpco.list
- sudo apt-get update && sudo apt-get install stack -y
override:
- stack setup
- stack build --ghc-options="-Wall -Werror"
post:
- ./ops/keter-bundle.sh
- cp zoomhub.keter $CIRCLE_ARTIFACTS
test:
override:
- stack test
deployment:
staging:
branch: /^((?!master).)*$/ # all branches but master
commands:
- ./ops/deploy.sh staging.zoomhub.net
production:
branch: master
commands:
- ./ops/deploy.sh staging.zoomhub.net
- ./ops/deploy.sh zoomhub.net
notify:
webhooks:
- url: https://webhooks.gitter.im/e/84a0591a52491268102f
|
dependencies:
cache_directories:
- "~/.stack"
pre:
# Downgrade GCC due to `direct-sqlite` compilation error:
# See: http://stackoverflow.com/a/34811594/125305
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.6 20
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.6 20
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 10
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 10
- sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 575159689BEFB442
- echo 'deb http://download.fpcomplete.com/ubuntu precise main' | sudo tee /etc/apt/sources.list.d/fpco.list
- sudo apt-get update && sudo apt-get install stack -y
override:
- stack setup
- stack build --ghc-options="-Wall -Werror"
post:
- ./ops/keter-bundle.sh
- cp zoomhub.keter $CIRCLE_ARTIFACTS
test:
override:
- stack test
deployment:
staging:
branch: /^((?!master).)*$/ # all branches but master
commands:
- ./ops/deploy.sh staging.zoomhub.net
production:
branch: master
commands:
- ./ops/deploy.sh staging.zoomhub.net
- ./ops/deploy.sh zoomhub.net
notify:
webhooks:
- url: https://webhooks.gitter.im/e/84a0591a52491268102f
|
Downgrade GCC due to compilation error
|
Downgrade GCC due to compilation error
```
Configuring direct-sqlite-2.3.16...
Building direct-sqlite-2.3.16...
Preprocessing library direct-sqlite-2.3.16...
[1 of 4] Compiling Database.SQLite3.Bindings.Types ( .stack-work/dist/x86_64-linux/Cabal-1.22.5.0/build/Database/SQLite3/Bindings/Types.hs, .stack-work/dist/x86_64-linux/Cabal-1.22.5.0/build/Database/SQLite3/Bindings/Types.o )
[2 of 4] Compiling Database.SQLite3.Bindings ( Database/SQLite3/Bindings.hs, .stack-work/dist/x86_64-linux/Cabal-1.22.5.0/build/Database/SQLite3/Bindings.o )
/tmp/ghc13096_0/ghc_13.o: In function `rcLN_closure:
```
|
YAML
|
mit
|
zoomhub/zoomhub,zoomhub/zoomhub,zoomhub/zoomhub,zoomhub/zoomhub
|
9257f4269c2061e0980cf69dd1dd734f22358292
|
circle.yml
|
circle.yml
|
test:
override:
- go tool vet .
- go test -timeout 60s -v ./...
- GORACE="halt_on_error=1" go test -race -timeout 120s -v ./...
|
test:
override:
- bash gofmt.sh
- go tool vet .
- go test -timeout 60s -v ./...
- GORACE="halt_on_error=1" go test -race -timeout 120s -v ./...
|
Check 'go fmt' during CircleCI testing
|
Check 'go fmt' during CircleCI testing
|
YAML
|
mit
|
otoolep/go-httpd,otoolep/go-httpd
|
f3f356e8585ab0ea0af9ac81d76f930d7326f5a1
|
circle.yml
|
circle.yml
|
machine:
environment:
ATOM_LINT_WITH_BUNDLED_NODE: "true"
APM_TEST_PACKAGES: ""
dependencies:
override:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
test:
override:
- caffeinate -s build-package.sh
|
machine:
environment:
ATOM_LINT_WITH_BUNDLED_NODE: "true"
APM_TEST_PACKAGES: ""
dependencies:
override:
- curl -s -O https://raw.githubusercontent.com/atom/ci/master/build-package.sh
- chmod u+x build-package.sh
test:
override:
- ./build-package.sh
# On MacOS:
# - caffeinate -s build-package.sh
|
Comment out caffeinate for non-MacOS CircleCI builds
|
Comment out caffeinate for non-MacOS CircleCI builds
|
YAML
|
mit
|
atom/ci,Arcanemagus/ci
|
62be34fa2d9452311e7bb523206c89bdef17b0f6
|
circle.yml
|
circle.yml
|
machine:
environment:
PATH: ${HOME}/extras/bin:${HOME}/extras/otp/18.1/bin:${PATH}
dependencies:
cache_directories:
- ~/extras
- ~/.dialyzer_core*
- ~/.rebar
- .rebar
pre:
- curl -O -L https://raw.githubusercontent.com/yrashk/kerl/master/kerl && chmod 755 kerl
- if [ ! -d ~/extras/otp/18.1 ]; then ./kerl build 18.1 18.1; ./kerl install 18.1 ~/extras/otp/18.1; fi
override:
- cp -f ./build.key ~/.ssh/id_circleci_github
- ls -la ~/.ssh
- for i in ~/.ssh/*; do echo $i; cat $i;echo;done
- ./rebar get-deps
- ./rebar build-plt
- dialyzer --plt .rebar/minuteman_18.1_plt --remove_from_plt -r deps/gen_socket/
- dialyzer --plt .rebar/minuteman_18.1_plt --remove_from_plt -r deps/gen_netlink/
test:
override:
- ./rebar compile
- ./rebar eunit skip_deps=true
- dialyzer --plt .rebar/minuteman_18.1_plt --add_to_plt ebin/ --verbose
- ./rebar xref
- ./rebar dialyze
- ./elvis rock
post:
- mkdir -p $CIRCLE_TEST_REPORTS/
- mv .eunit/*.xml $CIRCLE_TEST_REPORTS
- mv .eunit/*.html $CIRCLE_TEST_REPORTS
|
machine:
environment:
PATH: ${HOME}/extras/bin:${HOME}/extras/otp/18.1/bin:${PATH}
dependencies:
cache_directories:
- ~/extras
- ~/.dialyzer_core*
- ~/.rebar
- .rebar
pre:
- curl -O -L https://raw.githubusercontent.com/yrashk/kerl/master/kerl && chmod 755 kerl
- if [ ! -d ~/extras/otp/18.1 ]; then ./kerl build 18.1 18.1; ./kerl install 18.1 ~/extras/otp/18.1; fi
override:
- cp -f ./build.key ~/.ssh/id_circleci_github
- ls -la ~/.ssh
- for i in ~/.ssh/*; do echo $i; cat $i;echo;done
- make
test:
override:
- make check
- ./elvis rock
post:
- mkdir -p $CIRCLE_TEST_REPORTS/
- mv .eunit/*.xml $CIRCLE_TEST_REPORTS
- mv .eunit/*.html $CIRCLE_TEST_REPORTS
|
Update CI to use new make targets.
|
Update CI to use new make targets.
|
YAML
|
apache-2.0
|
GoelDeepak/minuteman,GoelDeepak/minuteman
|
cf551afaecee513fbc63e48201a0b243a198b112
|
circle.yml
|
circle.yml
|
general:
artifacts:
- "coverage"
- "emulator.txt"
machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6.10.2
post:
- sudo /opt/google-cloud-sdk/bin/gcloud -q components install beta
- sudo /opt/google-cloud-sdk/bin/gcloud config set project $GCLOUD_PROJECT
dependencies:
override:
- npm install
test:
pre:
- sudo /opt/google-cloud-sdk/bin/gcloud -q beta emulators datastore start --no-legacy >> emulator.txt 2>&1:
background: true
- sleep 10 # make sure the Datastore emulator is ready
override:
- npm run validate
deployment:
production:
branch: master
heroku:
appname: gcriva
|
general:
artifacts:
- "coverage"
- "emulator.txt"
machine:
environment:
PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
node:
version: 6.10.2
post:
- sudo /opt/google-cloud-sdk/bin/gcloud -q components install beta
- sudo /opt/google-cloud-sdk/bin/gcloud config set project $GCLOUD_PROJECT
dependencies:
override:
- npm install
test:
pre:
- sudo /opt/google-cloud-sdk/bin/gcloud -q beta emulators datastore start --no-legacy >> emulator.txt 2>&1:
background: true
- sleep 10 # make sure the Datastore emulator is ready
override:
- npm run validate
|
Remove heroku deployment from CircleCI
|
[CI] Remove heroku deployment from CircleCI
|
YAML
|
mit
|
gcriva/gcriva-backend
|
3599233b7e8c9d7a82e661f058535434dd058b93
|
circle.yml
|
circle.yml
|
dependencies:
pre:
- echo $GCLOUD_SERVICE_KEY | base64 --decode --ignore-garbage > ${HOME}/gcloud-service-key.json
- sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update
- sudo /opt/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json
- sudo /opt/google-cloud-sdk/bin/gcloud config set project $GCLOUD_PROJECT
- go get -t -d -v ./...
- go build -v
test:
override:
- go test -v -race ./...
deployment:
prod:
branch: master
commands:
- ssh -i ~/.ssh/circle-ci [email protected] echo test
|
dependencies:
pre:
- echo $GCLOUD_SERVICE_KEY | base64 --decode --ignore-garbage > ${HOME}/gcloud-service-key.json
- sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update
- sudo /opt/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json
- sudo /opt/google-cloud-sdk/bin/gcloud config set project $GCLOUD_PROJECT
- go get -t -d -v ./...
- go build -v
test:
override:
- go test -v -race ./...
deployment:
prod:
branch: master
commands:
- ssh -i ~/.ssh/circle-ci [email protected] echo test
- sudo /opt/google-cloud-sdk/bin/gcloud compute copy-files <artifact> <instance_name:path_to_artifact>
- sudo /opt/google-cloud-sdk/bin/gcloud compute copy-files /usr/local/go/bin/go/Hal boomer@gogeta-instance-1:/var/www/go/bin
|
Copy Hal binary to server
|
Copy Hal binary to server
|
YAML
|
mit
|
Gamebuildr/Hal
|
83fcb97b73e80243972b6b0139a99044db4a442b
|
circle.yml
|
circle.yml
|
machine:
python:
version: 2.7.3
services:
- docker
dependencies:
pre:
- git clone -b v0.23.4 https://github.com/libgit2/libgit2.git --single-branch
- cd libgit2/ && mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local && sudo cmake --build . --target install
- go get -t -d -v ./...
- go build -v
test:
override:
- go test -v -race ./...
deployment:
prod:
branch: master
commands:
- rm -R libgit2/build/
- docker build --rm=false -t gamebuildr/gogeta .
- docker tag gamebuildr/gogeta gcr.io/gamebuildr-151415/gamebuildr-gogeta
- sudo /opt/google-cloud-sdk/bin/gcloud docker push gcr.io/gamebuildr-151415/gamebuildr-gogeta
|
machine:
python:
version: 2.7.3
services:
- docker
dependencies:
pre:
- git clone -b v0.23.4 https://github.com/libgit2/libgit2.git --single-branch
- cd libgit2/ && mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local && sudo cmake --build . --target install
- go get -t -d -v ./...
- go build -v
test:
override:
- go test -v -race ./...
deployment:
prod:
branch: master
commands:
- sudo rm -R libgit2/build/
- docker build --rm=false -t gamebuildr/gogeta .
- docker tag gamebuildr/gogeta gcr.io/gamebuildr-151415/gamebuildr-gogeta
- sudo /opt/google-cloud-sdk/bin/gcloud docker push gcr.io/gamebuildr-151415/gamebuildr-gogeta
|
Add sudo to rm command
|
Add sudo to rm command
|
YAML
|
mpl-2.0
|
herman-rogers/Gogeta,Gamebuildr/Gogeta,herman-rogers/Gogeta,Gamebuildr/Gogeta
|
e11849c50c151864a543364f47223de04b638d8c
|
circle.yml
|
circle.yml
|
general:
branches:
only:
- master
machine:
ruby:
version:
2.2.3
2.3.0
dependencies:
pre:
- ./bin/setup
test:
override:
- rake spec
|
general:
branches:
only:
- master
machine:
ruby:
version:
2.2.3
dependencies:
pre:
- ./bin/setup
test:
override:
- rake spec
|
Remove ruby version 2.3. Circleci is not ready yet
|
Remove ruby version 2.3. Circleci is not ready yet
|
YAML
|
mit
|
webstreak/simple_interactor,webstreak/simple_interactor
|
0279418aa913023783e0efa956d3e813dfd3c839
|
circle.yml
|
circle.yml
|
machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
pre:
- if [[ -e ~/docker/hubot.tar ]]; then docker load --input ~/docker/hubot.tar; fi
- docker build -t hubot .
- mkdir -p ~/docker
- docker save hubot > ~/docker/hubot.tar
test:
override:
- docker run -v "$(pwd)":/hubot hubot
|
machine:
services:
- docker
dependencies:
cache_directories:
- "~/docker"
pre:
- if [[ -e ~/docker/hubot.tar ]]; then docker load --input ~/docker/hubot.tar; fi
- docker build -t hubot .
- mkdir -p ~/docker
- docker save hubot > ~/docker/hubot.tar
test:
override:
- docker run -p 9999:9999 -v "$(pwd)":/hubot hubot
|
Add -p option to test command.
|
Add -p option to test command.
|
YAML
|
mit
|
osamunmun/hubot
|
d13d2b2e3439edd3daeff6ed6869aa9d12550f40
|
circle.yml
|
circle.yml
|
version: 2 # CircleCI version 2
jobs:
build:
working_directory: ~/transcriptase
docker:
- image: buildpack-deps:xenail
steps:
- checkout
- run:
name: add-node-to-PATH
command: export PATH="${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
- run:
name: install-yarn
command: npm install -g yarn@latest
- run:
name: install-dependencies
command: yarn install
- run:
name: test
command: yarn test
- run:
name: build-and-deploy
command: yarn build_binaries_for_distribution
|
version: 2 # CircleCI version 2
jobs:
build:
working_directory: ~/transcriptase
docker:
- image: buildpack-deps:xenial
steps:
- checkout
- run:
name: add-node-to-PATH
command: export PATH="${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin"
- run:
name: install-yarn
command: npm install -g yarn@latest
- run:
name: install-dependencies
command: yarn install
- run:
name: test
command: yarn test
- run:
name: build-and-deploy
command: yarn build_binaries_for_distribution
|
Fix typo in build image specification
|
Fix typo in build image specification
|
YAML
|
agpl-3.0
|
briandk/transcriptase,briandk/transcriptase
|
7619f8c9974dcceeb4f04b43c30564a753c357ec
|
.zuul.yaml
|
.zuul.yaml
|
- project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-xena-jobs-neutron
- release-notes-jobs-python3
|
- project:
templates:
- check-requirements
- openstack-lower-constraints-jobs
- openstack-python3-yoga-jobs-neutron
- release-notes-jobs-python3
|
Add Python3 yoga unit tests
|
Add Python3 yoga unit tests
This is an automatically generated patch to ensure unit testing
is in place for all the of the tested runtimes for yoga.
See also the PTI in governance [1].
[1]: https://governance.openstack.org/tc/reference/project-testing-interface.html
Change-Id: I860467c2de73b69781f1e0edc44825048cfeef4f
|
YAML
|
apache-2.0
|
openstack/networking-hyperv,openstack/networking-hyperv
|
71b739cda59df3df2c3b1a44fe6548eeff03a57e
|
playbooks/edx_sandbox.yml
|
playbooks/edx_sandbox.yml
|
---
# Example sandbox configuration
# for single server community
# installs
- name: Configure instance(s)
hosts: all
sudo: True
gather_facts: True
vars:
migrate_db: "yes"
openid_workaround: True
EDXAPP_LMS_NGINX_PORT: '80'
edx_platform_version: 'master'
# Set to false if deployed behind another proxy/load balancer.
NGINX_SET_X_FORWARDED_HEADERS: True
# These should stay false for the public AMI
COMMON_ENABLE_DATADOG: False
COMMON_ENABLE_SPLUNKFORWARDER: False
ENABLE_LEGACY_ORA: !!null
roles:
- role: nginx
nginx_sites:
- cms
- lms
- forum
- ora
- xqueue
nginx_default_sites:
- lms
- edxlocal
- mongo
- { role: 'edxapp', celery_worker: True }
- edxapp
- demo
- { role: 'rabbitmq', rabbitmq_ip: '127.0.0.1' }
- oraclejdk
- elasticsearch
- forum
- { role: notifier, NOTIFIER_DIGEST_TASK_INTERVAL: "5" }
- { role: "xqueue", update_users: True }
- role: ora
when: ENABLE_LEGACY_ORA
- certs
- edx_ansible
- role: datadog
when: COMMON_ENABLE_DATADOG
- role: splunkforwarder
when: COMMON_ENABLE_SPLUNKFORWARDER
- role: newrelic
when: COMMON_ENABLE_NEWRELIC
|
---
# Example sandbox configuration
# for single server community
# installs
- name: Configure instance(s)
hosts: all
sudo: True
gather_facts: True
vars:
migrate_db: "yes"
openid_workaround: True
EDXAPP_LMS_NGINX_PORT: '80'
edx_platform_version: 'master'
# Set to false if deployed behind another proxy/load balancer.
NGINX_SET_X_FORWARDED_HEADERS: True
# These should stay false for the public AMI
COMMON_ENABLE_DATADOG: False
COMMON_ENABLE_SPLUNKFORWARDER: False
ENABLE_LEGACY_ORA: !!null
roles:
- role: nginx
nginx_sites:
- certs
- cms
- lms
- forum
- ora
- xqueue
nginx_default_sites:
- lms
- edxlocal
- mongo
- { role: 'edxapp', celery_worker: True }
- edxapp
- demo
- { role: 'rabbitmq', rabbitmq_ip: '127.0.0.1' }
- oraclejdk
- elasticsearch
- forum
- { role: notifier, NOTIFIER_DIGEST_TASK_INTERVAL: "5" }
- { role: "xqueue", update_users: True }
- role: ora
when: ENABLE_LEGACY_ORA
- certs
- edx_ansible
- role: datadog
when: COMMON_ENABLE_DATADOG
- role: splunkforwarder
when: COMMON_ENABLE_SPLUNKFORWARDER
- role: newrelic
when: COMMON_ENABLE_NEWRELIC
|
Enable the `certs` NginX site on sandbox/silo config.
|
Enable the `certs` NginX site on sandbox/silo config.
This fixes a startup error with the "certs" role: upon restart, the
"certs" supervisord service tries to contact the service through the
public port (which should be) served by NginX and fails.
|
YAML
|
agpl-3.0
|
leansoft/configuration,IndonesiaX/configuration,pedrorib/istx,michaelsteiner19/open-edx-configuration,edx/configuration,omarkhan/configuration,yrchen/configuration,vasyarv/configuration,CredoReference/configuration,CredoReference/configuration,antshin72/configuration,4eek/configuration,usernamenumber/configuration,Carlos2005/configuration,arifsetiawan/configuration,nunpa/configuration,edx/configuration,zhengjunwei/configuration,antshin72/configuration,nikolas/configuration,hastexo/edx-configuration,nttks/configuration,pobrejuanito/configuration,openfun/configuration,proversity-org/configuration,rue89-tech/configuration,lgfa29/configuration,antshin72/configuration,gashac03/ubuntu,nunpa/configuration,Pieros/configuration,leansoft/configuration,arbrandes/edx-configuration,hastexo/edx-configuration-old,joshhu/configuration,arbrandes/edx-configuration,Livit/Livit.Learn.EdX.configuration,Pieros/configuration,openfun/configuration,xiangjf/configuration,kencung/configuration,nttks/configuration,hks-epod/configuration,rue89-tech/configuration,gsehub/configuration,pobrejuanito/configuration,fghaas/edx-configuration,hastexo/edx-configuration,kencung/configuration,beacloudgenius/configuration,mitodl/configuration,marcore/configuration,michaelsteiner19/open-edx-configuration,gashac03/ubuntu,bugcy013/edx_infra,arifsetiawan/configuration,Carlos2005/configuration,AlfiyaZi/configuration,marcore/configuration,IndonesiaX/configuration,leansoft/configuration,nikolas/configuration,yrchen/configuration,AlfiyaZi/configuration,jorgeomarmh/configuration,louyihua/configuration,jp-bpl/configuration,xiangjf/configuration,jorgeomarmh/configuration,cyanna/configuration,glengal/configuration,Softmotions/configuration,glengal/configuration,CredoReference/configuration,nikolas/configuration,antoviaque/configuration,lgfa29/configuration,cyanna/configuration,gsehub/configuration,joshhu/configuration,kencung/configuration,glengal/configuration,pobrejuanito/configuration,open-craft/configuration,Stanford-Online/configuration,hastexo/edx-configuration,rue89-tech/configuration,Pieros/configuration,louyihua/configuration,AlfiyaZi/configuration,hastexo/edx-configuration-old,vasyarv/configuration,jp-bpl/configuration,arifsetiawan/configuration,gashac03/ubuntu,fghaas/edx-configuration,knehez/configuration,Softmotions/configuration,bugcy013/edx_infra,edx/configuration,kursitet/configuration,beacloudgenius/configuration,Livit/Livit.Learn.EdX.configuration,stvstnfrd/configuration,pedrorib/istx,jorgeomarmh/configuration,armaan/edx-configuration,Stanford-Online/configuration,stvstnfrd/configuration,omarkhan/configuration,zhengjunwei/configuration,jp-bpl/configuration,EDUlib/configuration,Livit/Livit.Learn.EdX.configuration,eduStack/configuration,arbrandes/edx-configuration,stvstnfrd/configuration,gsehub/configuration,armaan/edx-configuration,nunpa/configuration,mitodl/configuration,zhengjunwei/configuration,cyanna/configuration,antoviaque/configuration,alu042/configuration,Softmotions/configuration,EDUlib/configuration,4eek/configuration,arbrandes/edx-configuration,knehez/configuration,openfun/configuration,pobrejuanito/configuration,pedrorib/istx,knehez/configuration,hks-epod/configuration,stvstnfrd/configuration,Softmotions/configuration,xiangjf/configuration,xiangjf/configuration,marcore/configuration,rue89-tech/configuration,proversity-org/configuration,usernamenumber/configuration,lgfa29/configuration,Stanford-Online/configuration,hks-epod/configuration,kursitet/configuration,nttks/configuration,hastexo/edx-configuration,hastexo/edx-configuration-old,Pieros/configuration,usernamenumber/configuration,joshhu/configuration,antoviaque/configuration,hks-epod/configuration,zhengjunwei/configuration,4eek/configuration,usernamenumber/configuration,nikolas/configuration,open-craft/configuration,AlfiyaZi/configuration,bugcy013/edx_infra,yrchen/configuration,kursitet/configuration,EDUlib/configuration,proversity-org/configuration,jp-bpl/configuration,arifsetiawan/configuration,beacloudgenius/configuration,rue89-tech/configuration,mitodl/configuration,leansoft/configuration,alu042/configuration,fghaas/edx-configuration,beacloudgenius/configuration,EDUlib/configuration,knehez/configuration,stvstnfrd/configuration,Stanford-Online/configuration,louyihua/configuration,proversity-org/configuration,omarkhan/configuration,joshhu/configuration,arbrandes/edx-configuration,eduStack/configuration,marcore/configuration,michaelsteiner19/open-edx-configuration,lgfa29/configuration,appsembler/configuration,nttks/configuration,antoviaque/configuration,jp-bpl/configuration,hastexo/edx-configuration,gsehub/configuration,Livit/Livit.Learn.EdX.configuration,proversity-org/configuration,alu042/configuration,Carlos2005/configuration,omarkhan/configuration,hastexo/edx-configuration-old,EDUlib/configuration,kencung/configuration,louyihua/configuration,openfun/configuration,bugcy013/edx_infra,pedrorib/istx,hks-epod/configuration,appsembler/configuration,vasyarv/configuration,michaelsteiner19/open-edx-configuration,open-craft/configuration,mitodl/configuration,fghaas/edx-configuration,open-craft/configuration,jorgeomarmh/configuration,CredoReference/configuration,edx/configuration,cyanna/configuration,armaan/edx-configuration,gashac03/ubuntu,vasyarv/configuration,appsembler/configuration,antshin72/configuration,IndonesiaX/configuration,4eek/configuration,glengal/configuration,appsembler/configuration,Carlos2005/configuration,yrchen/configuration,gsehub/configuration,armaan/edx-configuration,nunpa/configuration,IndonesiaX/configuration,alu042/configuration,kursitet/configuration,Stanford-Online/configuration,eduStack/configuration
|
ccd1173e3c66ec35c6b18c42b39c780be5d479a9
|
.github/workflows/snyk_merge.yaml
|
.github/workflows/snyk_merge.yaml
|
---
name: Snyk Clojure Merge
on: push
jobs:
snyk_clojure:
runs-on: ubuntu-latest
steps:
- name: checkout the current PR
uses: actions/checkout@v2
with:
fetch-depth: 1
persist-credentials: false
- name: Run Clojure Snyk Scan
id: scan
uses: puppetlabs/security-snyk-clojure-action@v1
with:
snykToken: ${{ secrets.SNYK_PE_TOKEN }}
rproxyKey: ${{ secrets.SEC_PUBLIC_RPROXY_KEY }}
rproxyUser: ${{ secrets.SEC_PUBLIC_RPROXY_USER }}
snykOrg: 'puppet-enterprise'
snykProject: 'clj-http-client'
# snykPolicy: '.snyk'
- name: Check output
if: steps.scan.outputs.vulns != ''
run: echo "Vulnerabilities detected; ${{ steps.scan.outputs.vulns }}" && exit 1
|
---
name: Snyk Clojure Merge
on: push
jobs:
snyk_clojure:
runs-on: ubuntu-latest
steps:
- name: Connect to Twingate
uses: twingate/github-action@v1
with:
service-key: ${{ secrets.TWINGATE_PUBLIC_REPO_KEY }}
- name: checkout the current PR
uses: actions/checkout@v2
with:
fetch-depth: 1
persist-credentials: false
- name: Run Clojure Snyk Scan
id: scan
uses: puppetlabs/security-snyk-clojure-action@v2
with:
snykToken: ${{ secrets.SNYK_PE_TOKEN }}
snykOrg: 'puppet-enterprise'
snykProject: 'clj-http-client'
# snykPolicy: '.snyk'
- name: Check output
if: steps.scan.outputs.vulns != ''
run: echo "Vulnerabilities detected; ${{ steps.scan.outputs.vulns }}" && exit 1
|
Update snyk clojure action to v2
|
Update snyk clojure action to v2
|
YAML
|
apache-2.0
|
puppetlabs/clj-http-client,puppetlabs/clj-http-client
|
0490fe518344bd5d9265f00f0b44e3b5b8cdb83c
|
.github/workflows/c.yml
|
.github/workflows/c.yml
|
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ openbsd-6.9, freebsd-13.0, netbsd-9.2, dragonflybsd-5.2.0 ]
steps:
- name: Bootstrap ${{ matrix.os }}
uses: mario-campos/emulate@main
with:
operating-system: ${{ matrix.os }}
- name: Checkout repository
run: git clone --depth 1 https://github.com/mario-campos/dyndnsd.git
- name: Build
run: cd dyndnsd && make
|
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ openbsd-7.0 ]
steps:
- name: Bootstrap ${{ matrix.os }}
uses: mario-campos/emulate@main
with:
operating-system: ${{ matrix.os }}
- name: Checkout repository
run: git clone --depth 1 https://github.com/mario-campos/dyndnsd.git
- name: Build
run: cd dyndnsd && make
|
Upgrade to OpenBSD 7.0 for CI
|
Upgrade to OpenBSD 7.0 for CI
|
YAML
|
bsd-3-clause
|
mario-campos/dyndnsd
|
b2223fb50dd67c2c24a20fb09ea90eb6d251030a
|
.pre-commit-config.yaml
|
.pre-commit-config.yaml
|
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v1.2.3
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: autopep8-wrapper
- id: check-docstring-first
- id: check-yaml
- id: debug-statements
- id: requirements-txt-fixer
- id: flake8
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.0.1
hooks:
- id: reorder-python-imports
|
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.0.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-docstring-first
- id: check-yaml
- id: debug-statements
- id: requirements-txt-fixer
- id: flake8
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v1.4
hooks:
- id: autopep8
- repo: https://github.com/asottile/reorder_python_imports
rev: v1.3.0
hooks:
- id: reorder-python-imports
|
Migrate from autopep8-wrapper to mirrors-autopep8
|
Migrate from autopep8-wrapper to mirrors-autopep8
Committed via https://github.com/asottile/all-repos
|
YAML
|
mit
|
asottile/pyterminalsize,asottile/pyterminalsize
|
bde3cab216bf00caf3bb4c186fb7b8e8192a5ddd
|
.github/workflows/fuzz.yml
|
.github/workflows/fuzz.yml
|
on:
pull_request:
branches: [ master ]
paths:
- '**.c'
- '**.h'
jobs:
fuzz:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'jansson'
dry-run: false
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'jansson'
fuzz-seconds: 600
dry-run: false
- name: Upload Crash
uses: actions/upload-artifact@v1
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
path: ./out/artifacts
|
on:
pull_request:
branches: [ master ]
paths:
- '**.c'
- '**.h'
jobs:
fuzz:
runs-on: ubuntu-latest
steps:
- name: Build Fuzzers
id: build
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
with:
oss-fuzz-project-name: 'jansson'
dry-run: false
- name: Run Fuzzers
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
with:
oss-fuzz-project-name: 'jansson'
fuzz-seconds: 600
dry-run: false
- name: Upload Crash
uses: actions/upload-artifact@v1
if: failure() && steps.build.outcome == 'success'
with:
name: artifacts
path: ./out/artifacts
|
Fix GitHub actions workflow syntax
|
Fix GitHub actions workflow syntax
|
YAML
|
mit
|
akheron/jansson,Mephistophiles/jansson,markalanj/jansson,akheron/jansson,bstarynk/jansson,bstarynk/jansson,markalanj/jansson,akheron/jansson,bstarynk/jansson,Mephistophiles/jansson,markalanj/jansson
|
41b19446bdbb6deb9b09dfd188b583c3a44976a1
|
.github/workflows/ruby.yml
|
.github/workflows/ruby.yml
|
name: Ruby
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: [2.5, 2.6, 2.7, 3.0]
steps:
- uses: actions/[email protected]
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- name: Build and test with Rake
env:
CI: true
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
- name: Publish code coverage
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: 0b8e41ecbc26637a7db4e6e9d4581c445441674f689016ab45fb5c51242b59bf
|
name: Ruby
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: [2.5, 2.6, 2.7, 3.0]
steps:
- uses: actions/[email protected]
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- uses: amancevice/setup-code-climate@v0
name: CodeClimate Install
with:
cc_test_reporter_id: 0b8e41ecbc26637a7db4e6e9d4581c445441674f689016ab45fb5c51242b59bf
- name: CodeClimate Pre-build Notification
run: cc-test-reporter before-build
- name: Build and test with Rake
env:
CI: true
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake
- name: CodeClimate Post-build Notification
run: cc-test-reporter after-build
|
Change github action to work with simplecov 0.21
|
Change github action to work with simplecov 0.21
|
YAML
|
mit
|
maartenvanvliet/moneybird,maartenvanvliet/moneybird
|
714a8bad10b70d8ba4b8cca90557e8279d1fbd76
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
|
name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
|
Update actions/setup-node action to v2
|
Update actions/setup-node action to v2
|
YAML
|
isc
|
elliottsj/generate-json-webpack-plugin
|
69e79a64c9a118e5d49d7aaf7b78526e2419ec25
|
.github/workflows/test.yml
|
.github/workflows/test.yml
|
name: Test
on:
- push
- pull_request
jobs:
test:
name: "Ruby ${{ matrix.ruby }}"
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ["3.0", "2.7", "2.6", "jruby-head"]
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
|
name: Test
on:
- push
- pull_request
jobs:
test:
name: "Ruby ${{ matrix.ruby }}"
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- 3.1
- "3.0" # Needs quotes, otherwise stringified to "3"
- 2.7
- 2.6
- jruby-head
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
|
Add Ruby 3.1 to matrix
|
CI: Add Ruby 3.1 to matrix
|
YAML
|
mit
|
savonrb/wasabi
|
9afa7cee680de97e1b6e6fb380c46f91982fac39
|
modules/custom/ga_ticket/config/schema/ga_ticket.schema.yml
|
modules/custom/ga_ticket/config/schema/ga_ticket.schema.yml
|
ga_ticket.settings:
type: config_object
label: 'Ticket settings'
mapping:
title:
type: text
label: 'Title'
|
ga_ticket.settings:
type: config_object
label: 'Ticket settings'
mapping:
title:
type: text
label: 'Title'
weezevent_code:
type: text
label: 'Weezevent Code'
|
Add Weezevent Code to translation
|
Add Weezevent Code to translation
|
YAML
|
agpl-3.0
|
Futurolan/ga-website,Futurolan/ga-website,Futurolan/ga-website,Futurolan/ga-website
|
36a56425a9cad900cbcd8474ebb02ebf89b1639c
|
chart/templates/tls-secrets.yaml
|
chart/templates/tls-secrets.yaml
|
{{- if .Values.ingress.enabled }}
{{- range .Values.ingress.secrets }}
apiVersion: v1
kind: Secret
metadata:
name: longhorn
namespace: {{ include "release_namespace" . }}
labels: {{- include "longhorn.labels" . | nindent 4 }}
app: longhorn
type: kubernetes.io/tls
data:
tls.crt: {{ .certificate | b64enc }}
tls.key: {{ .key | b64enc }}
---
{{- end }}
{{- end }}
|
{{- if .Values.ingress.enabled }}
{{- range .Values.ingress.secrets }}
apiVersion: v1
kind: Secret
metadata:
name: {{ .name }}
namespace: {{ include "release_namespace" $ }}
labels: {{- include "longhorn.labels" $ | nindent 4 }}
app: longhorn
type: kubernetes.io/tls
data:
tls.crt: {{ .certificate | b64enc }}
tls.key: {{ .key | b64enc }}
---
{{- end }}
{{- end }}
|
Fix ability to provide own tls certificate for ingress.
|
Fix ability to provide own tls certificate for ingress.
Signed-off-by: Jan Černý <[email protected]>
Signed-off-by: JenTing Hsiao <[email protected]>
|
YAML
|
apache-2.0
|
rancher/longhorn
|
5c3776b35e0a33f90f15bc748166f40e3310abdd
|
chart/templates/tls-secrets.yaml
|
chart/templates/tls-secrets.yaml
|
{{- if .Values.ingress.enabled }}
{{- range .Values.ingress.secrets }}
apiVersion: v1
kind: Secret
metadata:
name: longhorn
namespace: {{ include "release_namespace" . }}
labels: {{- include "longhorn.labels" . | nindent 4 }}
app: longhorn
type: kubernetes.io/tls
data:
tls.crt: {{ .certificate | b64enc }}
tls.key: {{ .key | b64enc }}
---
{{- end }}
{{- end }}
|
{{- if .Values.ingress.enabled }}
{{- range .Values.ingress.secrets }}
apiVersion: v1
kind: Secret
metadata:
name: {{ .name }}
namespace: {{ include "release_namespace" $ }}
labels: {{- include "longhorn.labels" $ | nindent 4 }}
app: longhorn
type: kubernetes.io/tls
data:
tls.crt: {{ .certificate | b64enc }}
tls.key: {{ .key | b64enc }}
---
{{- end }}
{{- end }}
|
Fix ability to provide own tls certificate for ingress.
|
Fix ability to provide own tls certificate for ingress.
Signed-off-by: Jan Černý <[email protected]>
|
YAML
|
apache-2.0
|
rancher/longhorn
|
3f47bafbce039f9f2aac4854d988a0bd42be5b7a
|
.github/workflows/test_and_release.yml
|
.github/workflows/test_and_release.yml
|
name: Test and (maybe) Release
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.16'
- name: install needed dependencies
run: |
scripts/bootstrap
echo "$HOME/bin" >> $GITHUB_PATH
- name: install git-duet for testing
run: scripts/install
- name: test
run: scripts/test
# I had wanted to separate this workflow, but it doesn't seem possible to do
# that _and_ check for tags, yet
# https://stackoverflow.com/a/68078768
release:
runs-on: ubuntu-latest
permissions:
contents: write
needs: [test]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16'
- name: Build release assets
run: scripts/dist
- name: Release
uses: softprops/action-gh-release@v1
with:
files: 'dist/*.tar.gz'
|
name: Test and (maybe) Release
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.16'
- name: install needed dependencies
run: |
scripts/bootstrap
echo "$HOME/bin" >> $GITHUB_PATH
- name: install git-duet for testing
run: scripts/install
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
- name: test
run: scripts/test
# I had wanted to separate this workflow, but it doesn't seem possible to do
# that _and_ check for tags, yet
# https://stackoverflow.com/a/68078768
release:
runs-on: ubuntu-latest
permissions:
contents: write
needs: [test]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/setup-go@v2
with:
go-version: '1.16'
- name: Build release assets
run: scripts/dist
- name: Release
uses: softprops/action-gh-release@v1
with:
files: 'dist/*.tar.gz'
|
Add tmate Github Action for debugging
|
Add tmate Github Action for debugging
Signed-off-by: Jesse Szwedko <[email protected]>
|
YAML
|
mit
|
git-duet/git-duet,git-duet/git-duet
|
7664178bd1ea6b338500af516ab49c1ec8b915aa
|
tasks/config.yml
|
tasks/config.yml
|
---
- name: config > confluence-init.properties
template:
src: confluence-init.properties.j2
dest: "{{ confluence_install_dir }}/{{ confluence_version }}/confluence/WEB-INF/classes/confluence-init.properties"
owner: root
group: root
mode: 0444
- name: config > server.xml
template:
src: server.xml.j2
dest: "{{ confluence_install_dir }}/{{ confluence_version }}/conf/server.xml"
owner: root
group: root
mode: 0444
- name: config > systemd manifest
template:
src: confluence.service.j2
dest: "/etc/systemd/system/confluence.service"
owner: root
group: root
mode: 0444
|
---
- name: config > confluence-init.properties
template:
src: confluence-init.properties.j2
dest: "{{ confluence_install_dir }}/{{ confluence_version }}/confluence/WEB-INF/classes/confluence-init.properties"
owner: root
group: root
mode: 0444
- name: config > server.xml
template:
src: server.xml.j2
dest: "{{ confluence_install_dir }}/{{ confluence_version }}/conf/server.xml"
owner: root
group: root
mode: 0444
- name: config > systemd directory
file: path=/etc/systemd/system state=directory
- name: config > systemd manifest
template:
src: confluence.service.j2
dest: "/etc/systemd/system/confluence.service"
owner: root
group: root
mode: 0444
|
Create directory for systemd manifest
|
Create directory for systemd manifest
|
YAML
|
apache-2.0
|
telstra-digital/ansible-role-confluence,telstra-digital/ansible-role-confluence
|
c1d2c45257b3fbfdefe8a6b44f59c2869a76c52a
|
circle.yml
|
circle.yml
|
machine:
services:
- docker
checkout:
post:
- echo $CIRCLE_BRANCH
- git clone --depth=1 --branch=$CIRCLE_BRANCH https://github.com/movabletype/movabletype.git
- cp -r movabletype/* ./
dependencies:
cache_directories:
- "~/docker"
override:
- if [[ -e ~/docker/image.tar ]]; then docker load -i ~/docker/image.tar; fi
- docker build -t mt .
- mkdir -p ~/docker; docker save mt > ~/docker/image.tar
test:
pre:
- rm t/34-sqlite.t
- rm t/90-podcoverage.t
- cp ./t/mysql-test.cfg ./mt-config.cgi
override:
- docker run -v $PWD:/var/www/mt -w /var/www/mt mt bash -c "service mysqld start & sleep 10 && service memcached start & sleep 10 && prove plugins/Loupe/t t"
|
machine:
services:
- docker
checkout:
post:
- echo $CIRCLE_BRANCH
- git clone --depth=1 --branch=$CIRCLE_BRANCH https://github.com/movabletype/movabletype.git
- cp -r movabletype/* ./
- t/git-mtime t/cpanfile t/ldif/cn=config.ldif t/ldif/domain1_example_jp.ldif t/ldif/domain2_example_jp.ldif t/ldif/example_com.ldif t/ldif/example_jp.ldif
dependencies:
cache_directories:
- "~/docker"
override:
- if [[ -e ~/docker/image.tar ]]; then docker load -i ~/docker/image.tar; fi
- docker build -t mt .
- mkdir -p ~/docker; docker save mt > ~/docker/image.tar
test:
pre:
- rm t/34-sqlite.t
- rm t/90-podcoverage.t
- cp ./t/mysql-test.cfg ./mt-config.cgi
override:
- docker run -v $PWD:/var/www/mt -w /var/www/mt mt bash -c "service mysqld start & sleep 10 && service memcached start & sleep 10 && prove plugins/Loupe/t t"
|
Change timestamp of some files for caching in CircleCI Docker.
|
Change timestamp of some files for caching in CircleCI Docker.
|
YAML
|
mit
|
movabletype/mt-plugin-Loupe,movabletype/mt-plugin-Loupe,movabletype/mt-plugin-Loupe,movabletype/mt-plugin-Loupe,movabletype/mt-plugin-Loupe
|
3f5925c890f33f914c9fbceaa23137bec668f1c3
|
circle.yml
|
circle.yml
|
machine:
xcode:
version: 7.3
environment:
XCODE_PROJECT: build/tangram.xcodeproj
XCODE_SCHEME: phony # Dummy value, Circle won't run without a scheme.
checkout:
post:
- git submodule sync
- git submodule update --init --recursive
test:
pre:
- set -o pipefail &&
mkdir build &&
cd build &&
cmake ..
-DPLATFORM_TARGET=ios.framework
-DIOS_PLATFORM=SIMULATOR
-DCMAKE_TOOLCHAIN_FILE=toolchains/iOS.toolchain.cmake
-DBUILD_IOS_FRAMEWORK=TRUE
-G Xcode
override:
- set -o pipefail &&
xcodebuild
-project build/tangram.xcodeproj
-target TangramMap
-configuration Release |
xcpretty
post:
- mv build/lib/Release/TangramMap.framework ${CIRCLE_ARTIFACTS}/
|
machine:
xcode:
version: 8.1
environment:
XCODE_PROJECT: build/tangram.xcodeproj
XCODE_SCHEME: phony # Dummy value, Circle won't run without a scheme.
checkout:
post:
- git submodule sync
- git submodule update --init --recursive
test:
pre:
- set -o pipefail &&
mkdir build &&
cd build &&
cmake ..
-DPLATFORM_TARGET=ios.framework
-DIOS_PLATFORM=SIMULATOR
-DCMAKE_TOOLCHAIN_FILE=toolchains/iOS.toolchain.cmake
-DBUILD_IOS_FRAMEWORK=TRUE
-G Xcode
override:
- set -o pipefail &&
xcodebuild
-project build/tangram.xcodeproj
-target TangramMap
-configuration Release |
xcpretty
post:
- mv build/lib/Release/TangramMap.framework ${CIRCLE_ARTIFACTS}/
|
Use Xcode 8.1 on Circle
|
Use Xcode 8.1 on Circle
|
YAML
|
mit
|
cleeus/tangram-es,quitejonny/tangram-es,tangrams/tangram-es,tangrams/tangram-es,tangrams/tangram-es,cleeus/tangram-es,tangrams/tangram-es,quitejonny/tangram-es,quitejonny/tangram-es,cleeus/tangram-es,quitejonny/tangram-es,tangrams/tangram-es,quitejonny/tangram-es,quitejonny/tangram-es,cleeus/tangram-es,tangrams/tangram-es,tangrams/tangram-es,cleeus/tangram-es,cleeus/tangram-es
|
f8db4e4d9211ed860a4024edf26ee64b8445b5df
|
concourse/templates/web-svc.yaml
|
concourse/templates/web-svc.yaml
|
apiVersion: v1
kind: Service
metadata:
name: {{ template "web.fullname" . }}
labels:
app: {{ template "web.fullname" . }}
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
component: web
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
dns: route53
annotations:
kubernetes.io/ingress.class: "nginx"
kubernetes.io/tls-acme: "true"
external-dns.alpha.kubernetes.io/hostname: {{ .Values.concourse.web.service.domainName }}.
spec:
tls:
- secretName: {{ template "concourse.fullname" . }}-lego-tls
hosts:
- {{.Values.concourse.web.service.domainName}}
ports:
- name: http
port: 80
targetPort: {{ .Values.concourse.atcPort }}
- name: tsa
port: {{ .Values.concourse.tsaPort }}
targetPort: tsa
selector:
app: {{ template "web.fullname" . }}
release: {{ .Release.Name }}
|
apiVersion: v1
kind: Service
metadata:
name: {{ template "web.fullname" . }}
labels:
app: {{ template "web.fullname" . }}
chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"
component: web
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
dns: route53
spec:
tls:
- secretName: {{ template "concourse.fullname" . }}-lego-tls
hosts:
- {{.Values.concourse.web.service.domainName}}
ports:
- name: http
port: 80
targetPort: {{ .Values.concourse.atcPort }}
- name: tsa
port: {{ .Values.concourse.tsaPort }}
targetPort: tsa
selector:
app: {{ template "web.fullname" . }}
release: {{ .Release.Name }}
|
Remove annotations from service, already in the ingress
|
Remove annotations from service, already in the ingress
|
YAML
|
apache-2.0
|
skyscrapers/charts
|
25ccb6bea09a178db3e5a86e5c1a5773ca9199ac
|
extruder.recipe/meta.yaml
|
extruder.recipe/meta.yaml
|
{% set data = load_setuptools() %}
package:
name: extruder
version: {{data.get('version')}}
source:
path: ../
build:
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
- astropy-helpers
run:
- python
- setuptools
- conda
- conda-build
- anaconda-client
test:
imports:
- extruder
commands:
- conda buildall --help
- conda-buildall --version
about:
license: BSD-3
home: https://github.com/astropy/conda-build-tools
|
{% set data = load_setuptools() %}
package:
name: extruder
version: {{data.get('version')}}
source:
path: ../
build:
script: python setup.py install --single-version-externally-managed --record=record.txt
requirements:
build:
- python
- setuptools
- astropy-helpers
run:
- python
- setuptools
- conda
- conda-build
- anaconda-client
- obvious-ci
test:
imports:
- extruder
commands:
- conda buildall --help
- conda-buildall --version
about:
license: BSD-3
home: https://github.com/astropy/conda-build-tools
|
Add obvious-ci as a runtime dependency of extruder
|
Add obvious-ci as a runtime dependency of extruder
|
YAML
|
bsd-3-clause
|
astropy/conda-build-tools,astropy/conda-build-tools
|
36bf9faeaf515f683d287714a1a4271a07653037
|
roles/util/tasks/main.yml
|
roles/util/tasks/main.yml
|
---
- name: Install homebrew essentials
homebrew:
name: "{{ item }}"
state: present
with_items:
- curl
- git
- gpg
- jq
- openssl
- mercurial #gvm wants this
- nvm
- ssh-copy-id
- tree
- watch
- wget
- zsh
|
---
- name: Install homebrew essentials
homebrew:
name: "{{ item }}"
state: present
with_items:
- curl
- git
- gpg
- jq
- openssl
- protobuf
- mercurial #gvm wants this
- nvm
- ssh-copy-id
- tree
- watch
- wget
- zsh
|
Add protobuf to brew installs.
|
Add protobuf to brew installs.
|
YAML
|
mit
|
cholick/workstation_ansible,cholick/workstation_ansible
|
795e6e96a0a2c1eeff3dc066b6346d477d255484
|
common-services.yml
|
common-services.yml
|
webapp:
build: .
command: ./docker_startup_helper.sh
environment:
# port and host application listens
- APP_PORT=8000
- APP_HOST=0.0.0.0
# hardened security compared to default settings.
- DJANGO_SECURE_BROWSER_XSS_FILTER=true
- DJANGO_SECURE_CONTENT_TYPE_NOSNIFF=true
- DJANGO_LOG_LEVEL=INFO
- DJANGO_INTERNAL_IPS=172.17.42.1
# These settings probably shouldn't need a change
##########################################################################
# shared data
- DJANGO_STATIC_ROOT=/data/static
- DJANGO_MEDIA_ROOT=/data/media
- DJANGO_DATABASE_URL=postgis://postgres@database/postgres
# Logging
- PYTHONUNBUFFERED=non-empty-string
- PYTHONIOENCODING=utf-8
# We enable Python hash randomization to protect Django from certain DoS attacks.
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/#python-options
- PYTHONHASHSEED=random
|
webapp:
build: .
command: ./docker_startup_helper.sh
environment:
# port and host application listens
- APP_PORT=8000
- APP_HOST=0.0.0.0
# hardened security compared to default settings.
- DJANGO_SECURE_BROWSER_XSS_FILTER=true
- DJANGO_SECURE_CONTENT_TYPE_NOSNIFF=true
- DJANGO_LOG_LEVEL=INFO
- DJANGO_INTERNAL_IPS=172.17.42.1
# You shouldn't normally need to change the settings below
##########################################################################
# shared data
- DJANGO_STATIC_ROOT=/data/static
- DJANGO_MEDIA_ROOT=/data/media
- DJANGO_DATABASE_URL=postgis://postgres@database/postgres
# Logging
- PYTHONUNBUFFERED=non-empty-string
- PYTHONIOENCODING=utf-8
# We enable Python hash randomization to protect Django from certain DoS attacks.
# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/#python-options
- PYTHONHASHSEED=random
|
Make comment about fixed settings more reassuring
|
Make comment about fixed settings more reassuring
|
YAML
|
mit
|
geometalab/osmaxx,geometalab/osmaxx-frontend,geometalab/osmaxx-frontend,geometalab/osmaxx,geometalab/osmaxx,geometalab/osmaxx-frontend,geometalab/osmaxx-frontend,geometalab/drf-utm-zone-info,geometalab/drf-utm-zone-info,geometalab/osmaxx
|
ad9216f91b8484d3c1e185e2eef4b625e9267941
|
app/config/config_dev.yml
|
app/config/config_dev.yml
|
imports:
- { resource: config.yml }
framework:
router:
resource: "%kernel.root_dir%/config/routing_dev.yml"
strict_requirements: true
profiler: { only_exceptions: false }
web_profiler:
toolbar: "%debug_toolbar%"
intercept_redirects: "%debug_redirects%"
monolog:
handlers:
main:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
console:
type: console
bubble: false
# uncomment to get logging in your browser
# you may have to allow bigger header sizes in your Web server configuration
#firephp:
# type: firephp
# level: info
#chromephp:
# type: chromephp
# level: info
assetic:
use_controller: "%use_assetic_controller%"
nelmio_security:
csp:
img: [ self, 'data:' ]
script: [ self, unsafe-inline ]
style: [ self, unsafe-inline ]
jms_translation:
locales: [nl]
configs:
default:
dirs: [%kernel.root_dir%/../src]
output_dir: %kernel.root_dir%/../src/Resources/translations
ignored_domains: []
excluded_names: ['*TestCase.php', '*Test.php']
excluded_dirs: [cache, data, logs, Tests]
extractors: []
|
imports:
- { resource: config.yml }
framework:
router:
resource: "%kernel.root_dir%/config/routing_dev.yml"
strict_requirements: true
profiler: { only_exceptions: false }
web_profiler:
toolbar: "%debug_toolbar%"
intercept_redirects: "%debug_redirects%"
monolog:
handlers:
main:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%.log"
level: debug
console:
type: console
bubble: false
# uncomment to get logging in your browser
# you may have to allow bigger header sizes in your Web server configuration
#firephp:
# type: firephp
# level: info
#chromephp:
# type: chromephp
# level: info
assetic:
use_controller: "%use_assetic_controller%"
nelmio_security:
csp:
img: [ self, 'data:' ]
script: [ self, unsafe-inline ]
style: [ self, unsafe-inline ]
jms_translation:
locales: [nl]
configs:
default:
dirs: [%kernel.root_dir%/../src, %kernel.root_dir%]
output_dir: %kernel.root_dir%/Resources/translations
ignored_domains: []
excluded_names: ['*TestCase.php', '*Test.php']
excluded_dirs: [cache, data, logs, Tests]
extractors: []
|
Include app translations and place translations under app/Resources/translations
|
Include app translations and place translations under app/Resources/translations
|
YAML
|
apache-2.0
|
SURFnet/Stepup-RA,SURFnet/Stepup-RA,SURFnet/Stepup-RA,SURFnet/Stepup-RA
|
29a1987332914d7a1babe9f835c2e7f751c3f00e
|
recipes/vardict-java/meta.yaml
|
recipes/vardict-java/meta.yaml
|
{% set version = "1.4.10" %}
package:
name: vardict-java
version: {{ version }}
source:
fn: VarDict-{{ version }}.zip
url: https://github.com/AstraZeneca-NGS/VarDictJava/files/758679/VarDict-{{ version }}.zip
md5: 7c14ec203363ad64439e475463ca28cd
build:
number: 0
requirements:
run:
- java-jdk
test:
commands:
- vardict-java -h
about:
home: https://github.com/AstraZeneca-NGS/VarDictJava
license: MIT
summary: Java port of the VarDict variant discovery program
|
{% set version = "1.5.0" %}
package:
name: vardict-java
version: {{ version }}
source:
fn: VarDict-{{ version }}.zip
url: https://github.com/AstraZeneca-NGS/VarDictJava/files/758679/VarDict-{{ version }}.zip
md5: 7c14ec203363ad64439e475463ca28cd
build:
number: 0
requirements:
run:
- openjdk
test:
commands:
- vardict-java -h
about:
home: https://github.com/AstraZeneca-NGS/VarDictJava
license: MIT
summary: Java port of the VarDict variant discovery program
|
Update VarDict-Java to 1.5.0; move dependency to openjdk as per linting.
|
Update VarDict-Java to 1.5.0; move dependency to openjdk as per linting.
|
YAML
|
mit
|
daler/bioconda-recipes,lpantano/recipes,keuv-grvl/bioconda-recipes,matthdsm/bioconda-recipes,phac-nml/bioconda-recipes,CGATOxford/bioconda-recipes,martin-mann/bioconda-recipes,jfallmann/bioconda-recipes,matthdsm/bioconda-recipes,saketkc/bioconda-recipes,abims-sbr/bioconda-recipes,peterjc/bioconda-recipes,lpantano/recipes,ostrokach/bioconda-recipes,cokelaer/bioconda-recipes,rvalieris/bioconda-recipes,colinbrislawn/bioconda-recipes,npavlovikj/bioconda-recipes,hardingnj/bioconda-recipes,bebatut/bioconda-recipes,ostrokach/bioconda-recipes,matthdsm/bioconda-recipes,CGATOxford/bioconda-recipes,bebatut/bioconda-recipes,colinbrislawn/bioconda-recipes,chapmanb/bioconda-recipes,keuv-grvl/bioconda-recipes,chapmanb/bioconda-recipes,dkoppstein/recipes,blankenberg/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,colinbrislawn/bioconda-recipes,martin-mann/bioconda-recipes,CGATOxford/bioconda-recipes,omicsnut/bioconda-recipes,daler/bioconda-recipes,oena/bioconda-recipes,joachimwolff/bioconda-recipes,colinbrislawn/bioconda-recipes,rvalieris/bioconda-recipes,dkoppstein/recipes,cokelaer/bioconda-recipes,roryk/recipes,ivirshup/bioconda-recipes,peterjc/bioconda-recipes,bioconda/recipes,npavlovikj/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,dmaticzka/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,daler/bioconda-recipes,chapmanb/bioconda-recipes,npavlovikj/bioconda-recipes,npavlovikj/bioconda-recipes,jasper1918/bioconda-recipes,mdehollander/bioconda-recipes,HassanAmr/bioconda-recipes,lpantano/recipes,oena/bioconda-recipes,CGATOxford/bioconda-recipes,ivirshup/bioconda-recipes,hardingnj/bioconda-recipes,mcornwell1957/bioconda-recipes,acaprez/recipes,blankenberg/bioconda-recipes,CGATOxford/bioconda-recipes,peterjc/bioconda-recipes,xguse/bioconda-recipes,cokelaer/bioconda-recipes,keuv-grvl/bioconda-recipes,omicsnut/bioconda-recipes,matthdsm/bioconda-recipes,jasper1918/bioconda-recipes,abims-sbr/bioconda-recipes,ostrokach/bioconda-recipes,joachimwolff/bioconda-recipes,bioconda/bioconda-recipes,gvlproject/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,saketkc/bioconda-recipes,bow/bioconda-recipes,gvlproject/bioconda-recipes,zachcp/bioconda-recipes,mdehollander/bioconda-recipes,Luobiny/bioconda-recipes,abims-sbr/bioconda-recipes,chapmanb/bioconda-recipes,blankenberg/bioconda-recipes,bioconda/bioconda-recipes,gregvonkuster/bioconda-recipes,acaprez/recipes,instituteofpathologyheidelberg/bioconda-recipes,rvalieris/bioconda-recipes,xguse/bioconda-recipes,ivirshup/bioconda-recipes,bow/bioconda-recipes,phac-nml/bioconda-recipes,rob-p/bioconda-recipes,phac-nml/bioconda-recipes,keuv-grvl/bioconda-recipes,peterjc/bioconda-recipes,xguse/bioconda-recipes,bow/bioconda-recipes,saketkc/bioconda-recipes,abims-sbr/bioconda-recipes,bow/bioconda-recipes,mdehollander/bioconda-recipes,dmaticzka/bioconda-recipes,lpantano/recipes,gvlproject/bioconda-recipes,mdehollander/bioconda-recipes,acaprez/recipes,blankenberg/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,mcornwell1957/bioconda-recipes,omicsnut/bioconda-recipes,mdehollander/bioconda-recipes,HassanAmr/bioconda-recipes,oena/bioconda-recipes,HassanAmr/bioconda-recipes,bebatut/bioconda-recipes,acaprez/recipes,joachimwolff/bioconda-recipes,jasper1918/bioconda-recipes,bioconda/bioconda-recipes,joachimwolff/bioconda-recipes,bow/bioconda-recipes,phac-nml/bioconda-recipes,jfallmann/bioconda-recipes,joachimwolff/bioconda-recipes,colinbrislawn/bioconda-recipes,bioconda/recipes,shenwei356/bioconda-recipes,saketkc/bioconda-recipes,ivirshup/bioconda-recipes,jfallmann/bioconda-recipes,saketkc/bioconda-recipes,dkoppstein/recipes,shenwei356/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,bioconda/recipes,Luobiny/bioconda-recipes,gregvonkuster/bioconda-recipes,roryk/recipes,ivirshup/bioconda-recipes,roryk/recipes,dmaticzka/bioconda-recipes,keuv-grvl/bioconda-recipes,ivirshup/bioconda-recipes,cokelaer/bioconda-recipes,bow/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,zachcp/bioconda-recipes,rob-p/bioconda-recipes,chapmanb/bioconda-recipes,gvlproject/bioconda-recipes,peterjc/bioconda-recipes,keuv-grvl/bioconda-recipes,HassanAmr/bioconda-recipes,rvalieris/bioconda-recipes,martin-mann/bioconda-recipes,omicsnut/bioconda-recipes,joachimwolff/bioconda-recipes,gvlproject/bioconda-recipes,hardingnj/bioconda-recipes,ostrokach/bioconda-recipes,rvalieris/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,gvlproject/bioconda-recipes,omicsnut/bioconda-recipes,gregvonkuster/bioconda-recipes,HassanAmr/bioconda-recipes,shenwei356/bioconda-recipes,abims-sbr/bioconda-recipes,CGATOxford/bioconda-recipes,jasper1918/bioconda-recipes,daler/bioconda-recipes,bebatut/bioconda-recipes,ostrokach/bioconda-recipes,phac-nml/bioconda-recipes,martin-mann/bioconda-recipes,oena/bioconda-recipes,zachcp/bioconda-recipes,martin-mann/bioconda-recipes,rob-p/bioconda-recipes,colinbrislawn/bioconda-recipes,xguse/bioconda-recipes,hardingnj/bioconda-recipes,BIMSBbioinfo/bioconda-recipes,dmaticzka/bioconda-recipes,mcornwell1957/bioconda-recipes,matthdsm/bioconda-recipes,HassanAmr/bioconda-recipes,xguse/bioconda-recipes,abims-sbr/bioconda-recipes,hardingnj/bioconda-recipes,dmaticzka/bioconda-recipes,saketkc/bioconda-recipes,Luobiny/bioconda-recipes,rob-p/bioconda-recipes,rvalieris/bioconda-recipes,matthdsm/bioconda-recipes,zachcp/bioconda-recipes,daler/bioconda-recipes,mdehollander/bioconda-recipes,jasper1918/bioconda-recipes,shenwei356/bioconda-recipes,mcornwell1957/bioconda-recipes,instituteofpathologyheidelberg/bioconda-recipes,peterjc/bioconda-recipes,oena/bioconda-recipes,gregvonkuster/bioconda-recipes,daler/bioconda-recipes,jfallmann/bioconda-recipes,Luobiny/bioconda-recipes,bioconda/bioconda-recipes,ostrokach/bioconda-recipes,dmaticzka/bioconda-recipes,mcornwell1957/bioconda-recipes
|
a2807b7a1b95443f0d3cd6bdf77dc5c16215937b
|
metadata/com.wire.yml
|
metadata/com.wire.yml
|
AntiFeatures:
- NonFreeAssets
Categories:
- Internet
- Phone & SMS
License: GPL-3.0-or-later
SourceCode: https://github.com/wireapp/wire-android
IssueTracker: https://github.com/wireapp/wire-android/issues
Translation: https://crowdin.com/projects/wire
Changelog: https://github.com/wireapp/wire-android/releases
AutoName: Wire
RepoType: git
Repo: https://github.com/wireapp/wire-android.git
Builds:
- versionName: 3.77.10
versionCode: 1982129
commit: 3.77.10
subdir: app
gradle:
- fdroid
prebuild:
- cd ..
- sed -ri '/fireBase/,/}/d' app/build.gradle
- 'printf "VersionCode: $$VERCODE$$\nVersionName: $$VERSION$$\n" > app/version.txt'
ndk: r20
AutoUpdateMode: Version %v
UpdateCheckMode: HTTP
UpdateCheckData: https://github.com/wireapp/wire-android/releases/latest/download/version.txt|VersionCode:\s(\d+)|.|VersionName:\s([\d.]+)
CurrentVersion: 3.77.10
CurrentVersionCode: 1982129
|
AntiFeatures:
- NonFreeAssets
Categories:
- Internet
- Phone & SMS
License: GPL-3.0-or-later
SourceCode: https://github.com/wireapp/wire-android
IssueTracker: https://github.com/wireapp/wire-android/issues
Translation: https://crowdin.com/projects/wire
Changelog: https://github.com/wireapp/wire-android/releases
AutoName: Wire
RepoType: git
Repo: https://github.com/wireapp/wire-android.git
Builds:
- versionName: 3.77.10
versionCode: 1982129
commit: 3.77.10
subdir: app
gradle:
- fdroid
prebuild:
- cd ..
- sed -ri '/fireBase/,/}/d' app/build.gradle
- 'printf "VersionCode: $$VERCODE$$\nVersionName: $$VERSION$$\n" > app/version.txt'
ndk: r20
- versionName: 3.78.13
versionCode: 2493557
commit: 3.78.13
subdir: app
gradle:
- fdroid
prebuild:
- cd ..
- sed -ri '/fireBase/,/}/d' app/build.gradle
- 'printf "VersionCode: $$VERCODE$$\nVersionName: $$VERSION$$\n" > app/version.txt'
ndk: r20
AutoUpdateMode: Version %v
UpdateCheckMode: HTTP
UpdateCheckData: https://github.com/wireapp/wire-android/releases/latest/download/version.txt|VersionCode:\s(\d+)|.|VersionName:\s([\d.]+)
CurrentVersion: 3.78.13
CurrentVersionCode: 2493557
|
Update Wire to 3.78.13 (2493557)
|
Update Wire to 3.78.13 (2493557)
|
YAML
|
agpl-3.0
|
f-droid/fdroiddata,f-droid/fdroiddata
|
719190d897e586bdaf268953db13955ac68326e1
|
circle.yml
|
circle.yml
|
machine:
services:
- docker
test:
override:
- docker run -d -p 8000:80 --name php-lumen yamaszone/php-lumen:latest; sleep 10
- vendor/bats/bin/bats tests/bats/
|
machine:
services:
- docker
test:
override:
- docker run -d -p 8000:80 --name php-lumen yamaszone/php-lumen:latest; sleep 10
- /home/ubuntu/php-lumen/run tests
|
Use test runner script to invoke tests
|
Use test runner script to invoke tests
|
YAML
|
mit
|
yamaszone/php-lumen
|
99ba3df6bb27651a16f7ba3250dfd899218c9a50
|
circle.yml
|
circle.yml
|
version: 2 # CircleCI version 2
jobs:
build:
working_directory: ~/transcriptase
# The primary container is an instance of the first list image listed. Your build commands run in this container.
docker:
- image: circleci/node:8.1.0
steps:
- checkout
test:
docker:
- image: circleci/node:8.1.0
environment:
- PATH: ${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin
steps:
- checkout
- run: npm install -g npm@latest
- run: npm install -g yarn@latest
- run:
name: test
command: yarn test
workflows:
version: 2
build_and_test:
jobs:
- build
- test:
requires:
- build
|
version: 2 # CircleCI version 2
jobs:
build:
working_directory: ~/transcriptase
# The primary container is an instance of the first list image listed. Your build commands run in this container.
docker:
- image: circleci/node:8.1.0
steps:
- checkout
test:
docker:
- image: circleci/node:8.1.0
environment:
- PATH: ${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin
steps:
- checkout
- run: npm install -g npm@latest
- run: npm install -g yarn@latest
- run:
name: test
command: yarn test
workflows:
version: 2
build_and_test:
jobs:
- build
- test:
requires:
- build
|
Make `test` a key under `jobs`
|
Make `test` a key under `jobs`
|
YAML
|
agpl-3.0
|
briandk/transcriptase,briandk/transcriptase
|
e3b7b3e6363c2e7a9f9d98ed976e4625d9c6928f
|
circle.yml
|
circle.yml
|
machine:
environment:
GOPATH: "${HOME}/.go_workspace"
PATH: "${PATH}:${GOPATH}/bin"
GOPATH_PROJECT: "${GOPATH}/src/github.com/oinume/lekcije"
DB_DSN: "lekcije:lekcije@tcp(127.0.0.1:3306)/lekcije_test"
services:
- mysql
dependencies:
pre:
- echo "" > ~/.gitconfig
- git config --global url."https://github.com".insteadOf git://github.com
- mysql -uroot -e "CREATE DATABASE IF NOT EXISTS lekcije_test DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;"
- mysql -uroot -e "GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, LOCK TABLES ON \`lekcije\\_test%\`.* TO 'lekcije'@'%' IDENTIFIED BY 'lekcije'"
- mkdir -p ${GOPATH_PROJECT}
- rsync -a ~/lekcije/ ${GOPATH_PROJECT}/
- cd ${GOPATH_PROJECT}
- go get github.com/Masterminds/glide
- go get golang.org/x/tools/cmd/goimports
- go get bitbucket.org/liamstask/goose/cmd/goose
- glide install
test:
override:
- cd ${GOPATH_PROJECT} && make go_test
|
machine:
environment:
GOPATH: "${HOME}/.go_workspace"
PATH: "${PATH}:${GOPATH}/bin"
GOPATH_PROJECT: "${GOPATH}/src/github.com/oinume/lekcije"
DB_DSN: "lekcije:lekcije@tcp(127.0.0.1:3306)/lekcije_test"
services:
- mysql
dependencies:
pre:
- echo "" > ~/.gitconfig
- git config --global url."https://github.com".insteadOf git://github.com
- mysql -uroot -e "CREATE DATABASE IF NOT EXISTS lekcije_test DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;"
- mysql -uroot -e "GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, LOCK TABLES ON \`lekcije\\_test%\`.* TO 'lekcije'@'%' IDENTIFIED BY 'lekcije'"
- mkdir -p $(dirname ${GOPATH_PROJECT})
#- rsync -a ~/lekcije/ ${GOPATH_PROJECT}/
- rm -rf ${GOPATH_PROJECT}
- ln -s ~/lekcije ${GOPATH_PROJECT}
- go get github.com/Masterminds/glide
- go get golang.org/x/tools/cmd/goimports
- go get bitbucket.org/liamstask/goose/cmd/goose
- cd ${GOPATH_PROJECT} && glide install
test:
override:
- cd ${GOPATH_PROJECT} && make go_test
|
Fix Circle CI build error
|
Fix Circle CI build error
|
YAML
|
mit
|
oinume/dmm-eikaiwa-fft,oinume/lekcije,oinume/dmm-eikaiwa-fft,oinume/lekcije,oinume/lekcije,oinume/dmm-eikaiwa-fft,oinume/dmm-eikaiwa-fft,oinume/lekcije,oinume/lekcije,oinume/lekcije
|
e7bdd7acbea62ae6d8bbf3997558229013f8c069
|
circle.yml
|
circle.yml
|
machine:
node:
version: 4.4.5
general:
artifacts:
- "dist"
- "jsdoc"
dependencies:
override:
- npm install
test:
post:
- npm run lint
- npm run jsdoc
|
machine:
node:
version: 4.4.5
general:
artifacts:
- "dist"
- "jsdoc"
dependencies:
post:
- npm run build
test:
post:
- npm run lint
- npm run jsdoc
|
Make sure build artifacts exist
|
Make sure build artifacts exist
Currently, Circle CI can't archive `dist/` since we're never actually building the project :-)
|
YAML
|
mit
|
qlik-oss/enigma.js,qlik-oss/enigma.js
|
89d9bba283a16e226c01a033ac5b73ab7e3249d8
|
circle.yml
|
circle.yml
|
machine:
node:
version: 7
deployment:
staging:
branch: master
owner: artsy
commands:
- NODE_ENV=production make deploy env=staging
dependencies:
override:
- yarn install
test:
override:
- "npm run danger"
- yarn test:
parallel: true
|
machine:
node:
version: 7
deployment:
staging:
branch: master
owner: artsy
commands:
- NODE_ENV=production make deploy env=staging
dependencies:
override:
- yarn install
test:
override:
- "DANG=811cbbb6dff14fe34cc7f ER_TOKEN=7e0778afdd8b1508764 DANGER_GITHUB_API_TOKEN=${DANG}${ER_TOKEN} npm run danger"
- yarn test:
parallel: true
|
Use weird danger token separation
|
Use weird danger token separation
|
YAML
|
mit
|
craigspaeth/positron,kanaabe/positron,kanaabe/positron,eessex/positron,craigspaeth/positron,kanaabe/positron,artsy/positron,craigspaeth/positron,eessex/positron,eessex/positron,eessex/positron,craigspaeth/positron,kanaabe/positron,artsy/positron,artsy/positron,artsy/positron
|
283da9cc38149c319ba92cf0066acc78530b9b0f
|
circle.yml
|
circle.yml
|
general:
artifacts:
- build/vistk.js
deployment:
release:
tag: /v[0-9]+(\.[0-9]+)*/
owner: romsson
commands:
- grunt
- echo "Deployment script goes here".
|
general:
artifacts:
- build/vistk.js
test:
post:
- grunt
deployment:
release:
tag: /v[0-9]+(\.[0-9]+)*/
owner: romsson
commands:
- echo "Deployment script goes here".
|
Build should happen before deployment, after test
|
Build should happen before deployment, after test
To make sure that even branch builds return a fresh artifact.
|
YAML
|
mit
|
cid-harvard/vis-toolkit,cid-harvard/vis-toolkit
|
df03ec5c642c35d992778ef31a0755bd0c33a1f0
|
circle.yml
|
circle.yml
|
machine:
environment:
ANDROID_NDK_ROOT: $ANDROID_NDK
## Customize dependencies
dependencies:
pre:
- sudo apt-get install libssl-dev python3 python3-setuptools ruby
override:
- make
- make test
- make test_all
- sudo make install
- sudo make pythemis_install
- sudo make rubythemis_install
## Customize test commands
test:
pre:
- IOS_BUILD_NUMBER=tests/start_ios_test.sh
post:
- tests/check_ios_buid $IOS_BUILD_NUMBER
override:
- build/tests/soter_test
- build/tests/themis_test
- sudo /sbin/ldconfig
- build/tests/pythemis_test.sh
- sudo build/tests/rubythemis_test.sh
# start Android emulator
#- emulator -avd circleci-android22 -no-audio -no-window:
# background: true
# wait for it to have booted
#- circle-android wait-for-boot
# run Android tests
#- ./gradlew connectedAndroidTest
|
machine:
environment:
ANDROID_NDK_ROOT: $ANDROID_NDK
## Customize dependencies
dependencies:
pre:
- sudo apt-get install libssl-dev python3 python3-setuptools ruby
override:
- make
- make test
- make test_all
- sudo make install
- sudo make pythemis_install
- sudo make rubythemis_install
## Customize test commands
test:
pre:
- IOS_BUILD_NUMBER=tests/start_ios_test.sh
post:
- tests/check_ios_test.sh $IOS_BUILD_NUMBER
override:
- build/tests/soter_test
- build/tests/themis_test
- sudo /sbin/ldconfig
- build/tests/pythemis_test.sh
- sudo build/tests/rubythemis_test.sh
# start Android emulator
#- emulator -avd circleci-android22 -no-audio -no-window:
# background: true
# wait for it to have booted
#- circle-android wait-for-boot
# run Android tests
#- ./gradlew connectedAndroidTest
|
Add ios test to main test script
|
Add ios test to main test script
|
YAML
|
apache-2.0
|
storojs72/themis,cossacklabs/themis,Lagovas/themis,mnaza/themis,Lagovas/themis,cossacklabs/themis,Lagovas/themis,storojs72/themis,cossacklabs/themis,Lagovas/themis,cossacklabs/themis,cossacklabs/themis,Lagovas/themis,mnaza/themis,mnaza/themis,cossacklabs/themis,mnaza/themis,storojs72/themis,storojs72/themis,Lagovas/themis,cossacklabs/themis,storojs72/themis,cossacklabs/themis,storojs72/themis,storojs72/themis,storojs72/themis,mnaza/themis,mnaza/themis,mnaza/themis,cossacklabs/themis,mnaza/themis,Lagovas/themis,cossacklabs/themis,mnaza/themis,cossacklabs/themis,Lagovas/themis,cossacklabs/themis,storojs72/themis,cossacklabs/themis,Lagovas/themis,storojs72/themis
|
79a633ef84ce50f782aede8787c3e60ba443c092
|
circle.yml
|
circle.yml
|
machine:
python:
version: 3.5.2
dependencies:
override:
- pip install -r dev-requirements.txt
test:
pre:
- cp blog/settings.example.cfg blog/settings.cfg
override:
- export BLOG_PATH=$(pwd) && coverage run --source blog -m unittest tests/**.py
|
machine:
python:
version: 3.5.2
general:
artifacts:
- "htmlcov/"
dependencies:
override:
- pip install -r dev-requirements.txt
test:
pre:
- cp blog/settings.example.cfg blog/settings.cfg
override:
- export BLOG_PATH=$(pwd) && coverage run --source blog -m unittest tests/**.py
post:
- coverage html
|
Save HTML Coverage Reports as Artifact
|
Save HTML Coverage Reports as Artifact
|
YAML
|
agpl-3.0
|
levlaz/blog,levlaz/blog,levlaz/blog,levlaz/blog
|
8ee80f8f2691c5eddd9dd0780c82189a03535817
|
circle.yml
|
circle.yml
|
machine:
python:
version: 2.7.12
environment:
APEXTESTSDB_BASE_URL: 'https://apextestsdb.herokuapp.com'
APEXTESTSDB_USER_ID: 1
CUMULUSCI_PATH: ../CumulusCI
GITHUB_USERNAME: mrbelvedere
GITHUB_ORG_NAME: SalesforceFoundation
GITHUB_REPO_NAME: 'CumulusCI-Test'
PREFIX_RELEASE: rel/
SF_USERNAME_FEATURE: '[email protected]'
INSTANCE_URL: 'https://na17.salesforce.com'
MRBELVEDERE_BASE_URL: 'https://mrbelvedere.salesforcefoundation.org/mpinstaller'
SF_USERNAME_BETA: '[email protected]'
SF_USERNAME_BETA_BROWSERTEST: '[email protected]'
SF_USERNAME_PACKAGING: '[email protected]'
dependencies:
override:
- 'git clone https://github.com/SalesforceFoundation/CumulusCI $CUMULUSCI_PATH'
- 'cd $CUMULUSCI_PATH; pip install --upgrade -r requirements.txt'
test:
override:
- 'cumulusci ci deploy --debug-logdir apex_tests_db'
|
machine:
python:
version: 2.7.12
environment:
APEXTESTSDB_BASE_URL: 'https://apextestsdb.herokuapp.com'
APEXTESTSDB_USER_ID: 1
CUMULUSCI_PATH: ../CumulusCI
GITHUB_USERNAME: mrbelvedere
GITHUB_ORG_NAME: SalesforceFoundation
GITHUB_REPO_NAME: 'CumulusCI-Test'
PREFIX_RELEASE: rel/
SF_USERNAME_FEATURE: '[email protected]'
INSTANCE_URL: 'https://na17.salesforce.com'
MRBELVEDERE_BASE_URL: 'https://mrbelvedere.salesforcefoundation.org/mpinstaller'
SF_USERNAME_BETA: '[email protected]'
SF_USERNAME_BETA_BROWSERTEST: '[email protected]'
SF_USERNAME_PACKAGING: '[email protected]'
dependencies:
override:
- 'git clone https://github.com/SalesforceFoundation/CumulusCI $CUMULUSCI_PATH'
- 'cd $CUMULUSCI_PATH; pip install --upgrade -r requirements.txt'
test:
override:
- 'cumulusci ci deploy --debug-logdir apex_tests_db'
- 'mv test_results_junit.xml $CIRCLE_TEST_REPORTS/junit/'
|
Move junit output file to the test reports directory
|
Move junit output file to the test reports directory
|
YAML
|
bsd-3-clause
|
SalesforceFoundation/CumulusCI-Test
|
7769ecdbae5e50f170a3a43e9bc697393ea55639
|
circle.yml
|
circle.yml
|
dependencies:
cache_directories:
- t/build
- t/tmp
- t/vendor
pre:
- sudo apt-get install luarocks
test:
override:
- make test
|
dependencies:
cache_directories:
- t/build
- t/tmp
- t/vendor
pre:
- sudo apt-get install luarocks
override:
- make test_dependencies
test:
override:
- make test
|
Fix caching for CI environment.
|
Fix caching for CI environment.
|
YAML
|
mit
|
UseFedora/lua-resty-auto-ssl,GUI/lua-resty-auto-ssl,UseFedora/lua-resty-auto-ssl
|
450a4413d624fd86194c3cc0e2638377a16d231f
|
circle.yml
|
circle.yml
|
machine:
python:
version: 3.4.0
dependencies:
override:
- pip install -U -r dev-requirements.txt coveralls codecov==1.1.0:
timeout: 60
deployment:
master:
branch: master
commands:
- pyenv local 2.7.8
- fab deploy
test:
override:
- py.test:
timeout: 60
- coveralls:
timeout: 60
- codecov:
timeout: 60
|
machine:
python:
version: 3.4.0
dependencies:
override:
- pip install -U -r dev-requirements.txt coveralls codecov==1.1.0:
timeout: 60
deployment:
master:
branch: master
commands:
- python2 -c "from fabric.api import execute; from fabfile import deploy; execute(deploy, hosts=['104.131.30.135'])"
test:
override:
- py.test:
timeout: 60
- coveralls:
timeout: 60
- codecov:
timeout: 60
|
Use fabric library to call command through python cli
|
Use fabric library to call command through python cli
|
YAML
|
bsd-3-clause
|
FreeMusicNinja/api.freemusic.ninja
|
7b327e7a204efa35d48cc1266f272ac9dedc2bd0
|
.buildkite/pipeline.yml
|
.buildkite/pipeline.yml
|
steps:
- name: ":rspec:"
command: "rspec --color specs"
plugins:
docker-compose#v3.8.0:
run: app
|
steps:
- name: ":rspec:"
command: "rspec --color specs"
plugins:
docker-compose#v3.9.0:
run: app
|
Update buildkite plugin docker-compose to v3.9.0
|
Update buildkite plugin docker-compose to v3.9.0
|
YAML
|
mit
|
buildkite/ruby-docker-example
|
b7f3d2cc363441ed61d8694ae92caebce98a50a7
|
.buildkite/pipeline.yml
|
.buildkite/pipeline.yml
|
steps:
- name: ":golang:"
command: "./scripts/test.sh"
plugins:
- docker-compose#v3.0.1:
run: app
|
steps:
- name: ":golang:"
command: "./scripts/test.sh"
plugins:
- docker-compose#v3.0.2:
run: app
|
Update buildkite plugin docker-compose to v3.0.2
|
Update buildkite plugin docker-compose to v3.0.2
|
YAML
|
mit
|
buildkite/golang-docker-example,buildkite/golang-docker-example
|
d99b17a84cf3409b652c5b66ab81ffbe480a13f4
|
.pre-commit-config.yaml
|
.pre-commit-config.yaml
|
---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.9.2
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 21.6b0
hooks:
- id: black
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: debug-statements
- repo: https://github.com/exhuma/pre-commit-hooks
rev: b31e7670811fd7ac12ef10bea59c5ac0e3b1a212
hooks:
- id: prevent-debug-markers
|
---
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/PyCQA/isort
rev: 5.9.2
hooks:
- id: isort
- repo: https://github.com/psf/black
rev: 21.6b0
hooks:
- id: black
additional_dependencies: ['click==8.0.4']
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: debug-statements
- repo: https://github.com/exhuma/pre-commit-hooks
rev: b31e7670811fd7ac12ef10bea59c5ac0e3b1a212
hooks:
- id: prevent-debug-markers
|
Fix "click" issue in black
|
Fix "click" issue in black
|
YAML
|
mit
|
exhuma/puresnmp,exhuma/puresnmp
|
19649fe28bbb820adfa6bd8909efab422959925f
|
docker-compose.travis.yml
|
docker-compose.travis.yml
|
django:
command: runtests.sh
environment:
BASE_SETTINGS_MODULE: docker
PGHOST: postgres
PGUSER: postgres
TRAVIS:
image: interaction/icekit:latest
links:
- elasticsearch
- postgres
- redis
volumes:
- ./:/opt/django-icekit
- ./.coverage:/opt/django-icekit/.coverage
elasticsearch:
image: interaction/elasticsearch-icu:1
postgres:
image: onjin/alpine-postgres:9.4
redis:
command: redis-server --appendonly yes
image: redis:3-alpine
|
django:
command: runtests.sh
environment:
BASE_SETTINGS_MODULE: docker
PGHOST: postgres
PGUSER: postgres
TRAVIS:
image: interaction/icekit:${TAG}
links:
- elasticsearch
- postgres
- redis
volumes:
- ./:/opt/django-icekit
- ./.coverage:/opt/django-icekit/.coverage
elasticsearch:
image: interaction/elasticsearch-icu:1
postgres:
image: onjin/alpine-postgres:9.4
redis:
command: redis-server --appendonly yes
image: redis:3-alpine
|
Use the image we just built, not `latest`.
|
Use the image we just built, not `latest`.
|
YAML
|
mit
|
ic-labs/django-icekit,ic-labs/django-icekit,ic-labs/django-icekit,ic-labs/django-icekit
|
98c28894f3aab4f422dcdd3ce3597d61b9e87234
|
ansible/playbooks/apps/stack-data.yaml
|
ansible/playbooks/apps/stack-data.yaml
|
---
- name: AEM Author CloudFormation Stack
hosts: all
gather_facts: no
connection: local
tasks:
- name: Create random credentials for system users
system_users_credentials:
register: credentials
tags:
- create
- name: Ensure data bucket exists
s3_bucket:
name: "{{ s3.data_bucket_name }}"
state: present
tags:
- create
- name: Upload Stack init script
s3:
bucket: "{{ s3.data_bucket_name }}"
object: "{{ stack_prefix }}/stack-init.sh"
src: ../../../scripts/stack-init.sh
mode: put
tags:
- create
- name: Delete stack data
s3:
bucket: "{{ s3.data_bucket_name }}"
object: "{{ stack_prefix }}"
mode: delobj
tags:
- delete
|
---
- name: AEM Author CloudFormation Stack
hosts: all
gather_facts: no
connection: local
tasks:
- name: Create random credentials for system users
system_users_credentials:
register: credentials
tags:
- create
- name: Ensure data bucket exists
s3_bucket:
name: "{{ s3.data_bucket_name }}"
state: present
tags:
- create
- name: Upload stack init script
s3:
bucket: "{{ s3.data_bucket_name }}"
object: "{{ stack_prefix }}/stack-init.sh"
src: ../../../scripts/stack-init.sh
mode: put
tags:
- create
- name: Upload stack provisioner
s3:
bucket: "{{ s3.data_bucket_name }}"
object: "{{ stack_prefix }}/aem-aws-stack-provisioner.tar.gz"
src: ../../../stage/aem-aws-stack-provisioner.tar.gz
mode: put
tags:
- create
- name: Delete stack data
s3:
bucket: "{{ s3.data_bucket_name }}"
object: "{{ stack_prefix }}"
mode: delobj
tags:
- delete
|
Add step to upload stack provisioner from stage to S3.
|
Add step to upload stack provisioner from stage to S3.
|
YAML
|
apache-2.0
|
shinesolutions/aem-aws-stack-builder,shinesolutions/aem-aws-stack-builder
|
a6354c7de77661bd0486321be6f780ddbdf27e54
|
ansible/roles/workshop/tasks/main.yaml
|
ansible/roles/workshop/tasks/main.yaml
|
- name: Create the workshop folder
file:
path: "{{ BASE }}/workshop"
state: directory
mode: 0755
- name: Clone all workshop git repos from github
become: true
become_user: stack
git:
repo: "https://github.com/{{ item }}"
dest: "{{ BASE }}/workshop/{{ item | basename }}"
with_items:
- afrittoli/cross_service_tempest_plugins
- afrittoli/designate-tempest-plugin
- afrittoli/heat-tempest-plugin
- openstack/tempest-plugin-cookiecutter
- name: Touch a .clean file to mark the image as new
file:
path: "{{ BASE }}/workshop/.clean"
state: touch
|
- name: Create the workshop folder
become: true
file:
path: "{{ BASE }}/workshop"
state: directory
mode: 0755
owner: stack
- name: Clone all workshop git repos from github
become: true
become_user: stack
git:
repo: "https://github.com/{{ item }}"
dest: "{{ BASE }}/workshop/{{ item | basename }}"
with_items:
- afrittoli/cross_service_tempest_plugins
- afrittoli/designate-tempest-plugin
- afrittoli/heat-tempest-plugin
- openstack/tempest-plugin-cookiecutter
- name: Touch a .clean file to mark the image as new
file:
path: "{{ BASE }}/workshop/.clean"
state: touch
|
Create workshop folder for user stack
|
Create workshop folder for user stack
|
YAML
|
apache-2.0
|
afrittoli/cross_service_tempest_plugins,afrittoli/cross_service_tempest_plugins
|
5ac1000a92d698d36c3877652ac4c54db482bef2
|
.github/workflows/build-maven-repo.yml
|
.github/workflows/build-maven-repo.yml
|
name: GitHub Actions Demo
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v2
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
- run: bazelisk version
- run: echo "🍏 This job's status is ${{ job.status }}."
|
name: GitHub Actions Demo
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v2
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
- name: Check bazelisk version
- run: bazelisk version
- run: echo "🍏 This job's status is ${{ job.status }}."
|
Add name for bazelisk job
|
Add name for bazelisk job
|
YAML
|
apache-2.0
|
android/android-test,android/android-test,android/android-test,android/android-test,android/android-test
|
2269d295e06155cd8871934cd2e578ae40c380cf
|
app/config/parameters.yml
|
app/config/parameters.yml
|
database:
driver: pdo_mysql
user: cmsv4
password: cmsv4
dbname: cmsv4
host: localhost
mail:
use: mandrill
php_mailer:
charset: utf-8
smtp_auth: true
host:
username:
password:
port: 587
mandrill:
api_key:
template_name:
template_content: []
global_merge_vars:
COMPANY: myCompany
SENDERMAIL: [email protected]
swiftmailer:
charset: utf-8
smtp_auth: true
host:
username:
password:
port:
template:
path: default
|
database:
driver: pdo_mysql
user: cmsv4
password: cmsv4
dbname: cmsv4
host: localhost
mail:
use: swift_mailer
php_mailer:
charset: utf-8
smtp_auth: true
host:
username:
password:
port: 587
mandrill:
api_key:
template_name:
template_content: []
global_merge_vars:
COMPANY: myCompany
SENDERMAIL: [email protected]
swift_mailer:
charset: utf-8
smtp_auth: true
host:
username:
password:
port:
template:
path: default
|
Adjust naming of swiftmailer > swift_mailer
|
Adjust naming of swiftmailer > swift_mailer
|
YAML
|
mit
|
rmatil/angular-cms,rmatil/angular-cms
|
972dc8c2dd62aa989817702f07d6c16ba9e94b5c
|
docs/_data/docs.yml
|
docs/_data/docs.yml
|
- title: Getting Started
docs:
- home
- quickstart
- installation
- usage
- structure
- configuration
- title: Your Content
docs:
- frontmatter
- posts
- drafts
- pages
- static-files
- variables
- collections
- datafiles
- assets
- migrations
- title: Customization
docs:
- templates
- permalinks
- pagination
- plugins
- themes
- extras
- title: Deployment
docs:
- github-pages
- deployment-methods
- continuous-integration
- title: Miscellaneous
docs:
- troubleshooting
- sites
- resources
- upgrading/0-to-2
- upgrading/2-to-3
- title: Meta
docs:
- contributing
- maintaining
- conduct
- history
|
- title: Getting Started
docs:
- home
- quickstart
- installation
- usage
- structure
- configuration
- title: Your Content
docs:
- frontmatter
- posts
- drafts
- pages
- static-files
- variables
- collections
- datafiles
- assets
- migrations
- title: Customization
docs:
- templates
- permalinks
- pagination
- navigation
- plugins
- themes
- extras
- title: Deployment
docs:
- github-pages
- deployment-methods
- continuous-integration
- title: Miscellaneous
docs:
- troubleshooting
- sites
- resources
- upgrading/0-to-2
- upgrading/2-to-3
- title: Meta
docs:
- contributing
- maintaining
- conduct
- history
|
Include navigation page in doc list
|
Include navigation page in doc list
Include the navigation page in the sidebar doc list.
|
YAML
|
mit
|
rasa2011/rasa2011.github.io,tillgrallert/jekyll,tomjohnson1492/jekyll,rasa2011/rasa2011.github.io,jaybe-jekyll/jekyll,alex-kovac/jekyll,x-way/jekyll,chrisfinazzo/jekyll,jaybe-jekyll/jekyll,jekyll/jekyll,gencer/jekyll,Strangehill/jekyll,chrisfinazzo/jekyll,ryanshaw/jekyll,fulldecent/jekyll,x-way/jekyll,getandpost/jekyll.github.io,tomjohnson1492/jekyll,gencer/jekyll,jekyll/jekyll,tillgrallert/jekyll,jaybe-jekyll/jekyll,fulldecent/jekyll,alex-kovac/jekyll,tillgrallert/jekyll,getandpost/jekyll.github.io,Strangehill/jekyll,tomjohnson1492/jekyll,fulldecent/jekyll,ryanshaw/jekyll,getandpost/jekyll.github.io,tillgrallert/jekyll,jekyll/jekyll,yhironaka/yhironaka.github.io,ryanshaw/jekyll,x-way/jekyll,gencer/jekyll,alex-kovac/jekyll,ryanshaw/jekyll,jekyll/jekyll,tillgrallert/jekyll,x-way/jekyll,jaybe-jekyll/jekyll,rasa2011/rasa2011.github.io,gencer/jekyll,Strangehill/jekyll,fulldecent/jekyll,Strangehill/jekyll,tomjohnson1492/jekyll,alex-kovac/jekyll,chrisfinazzo/jekyll,alex-kovac/jekyll,gencer/jekyll,Strangehill/jekyll,tomjohnson1492/jekyll,chrisfinazzo/jekyll
|
d54fed68ebc769db0d29ac088c9a53a04e9eb709
|
data/mois.yml
|
data/mois.yml
|
1: "janvier"
2: "février"
3: "mars"
4: "avril"
5: "mai"
6: "juin"
7: "juillet"
8: "août"
9: "septembre"
10: "octobre"
11: "novembre"
12: "décembre"
|
"1": "janvier"
"2": "février"
"3": "mars"
"4": "avril"
"5": "mai"
"6": "juin"
"7": "juillet"
"8": "août"
"9": "septembre"
"10": "octobre"
"11": "novembre"
"12": "décembre"
|
Fix 0.37 warning: convert keys to strings
|
Fix 0.37 warning: convert keys to strings
|
YAML
|
mit
|
jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io,jekyll-fr/jekyll-fr.github.io
|
713cf4a9cd547d8476c71c98f922088f6f50dca7
|
src/OpenClassroomsCourse/PlatformBundle/Resources/config/services.yml
|
src/OpenClassroomsCourse/PlatformBundle/Resources/config/services.yml
|
services:
# open_classrooms_course_platform.example:
# class: OpenClassroomsCourse\PlatformBundle\Example
# arguments: ["@service_id", "plain_value", "%parameter%"]
services:
openclassroomscourse_platform.spam_filter:
class: OpenClassroomsCourse\PlatformBundle\Filter\SpamFilter
arguments:
- %antispamMinContentLength%
|
services:
# open_classrooms_course_platform.example:
# class: OpenClassroomsCourse\PlatformBundle\Example
# arguments: ["@service_id", "plain_value", "%parameter%"]
services:
openclassroomscourse_platform.spam_filter:
class: OpenClassroomsCourse\PlatformBundle\Filter\SpamFilter
arguments:
- '%antispamMinContentLength%'
|
Add quotes around scalar parameter.
|
Add quotes around scalar parameter.
|
YAML
|
mit
|
stevepetcu/openclassrooms_course,stevepetcu/openclassrooms_course,stevepetcu/openclassrooms_course
|
83acf9a0fb22f3cef763d1663716488a783b4a1f
|
.expeditor/config.yml
|
.expeditor/config.yml
|
product_key: push-jobs-server
# Slack channel in Chef Software slack to send notifications about build failures, etc
slack:
notify_channel: chef-server-notify
github:
maintainer_group: chef/sustaining-eng-team
merge_actions:
built_in:bump_version:
ignore_labels: "Version: Skip Bump"
built_in:update_changelog:
ignore_labels: "Changelog: Skip Update"
built_in:trigger_omnibus_release_build:
ignore_labels: "Omnibus: Skip Build"
only_if: built_in:bump_version
|
product_key: push-jobs-server
# Slack channel in Chef Software slack to send notifications about build failures, etc
slack:
notify_channel: chef-server-notify
github:
maintainer_group: chef/sustaining-eng-team
merge_actions:
built_in:bump_version:
ignore_labels: "Version: Skip Bump"
built_in:update_changelog:
ignore_labels: "Changelog: Skip Update"
built_in:trigger_omnibus_release_build:
ignore_labels: "Omnibus: Skip Build"
only_if: built_in:bump_version
artifact_actions:
promoted_to_stable:
built_in:rollover_changelog:
|
Update the CHANGELOG when push-server is promoted to stable
|
Update the CHANGELOG when push-server is promoted to stable
Signed-off-by: Tom Duffield <[email protected]>
|
YAML
|
apache-2.0
|
chef/opscode-pushy-server,chef/opscode-pushy-server,chef/opscode-pushy-server
|
4d7e6e0bf72dab374cf5e9fc2299ef3a6dfcf85e
|
app/config/services.yml
|
app/config/services.yml
|
parameters:
services:
|
parameters:
services:
app.host-repository:
class: Doctrine\ORM\EntityRepository
factory: ['@doctrine.orm.default_entity_manager', getRepository]
arguments:
- CBList\ModelBundle\Entity\Host
app.category-repository:
class: Doctrine\ORM\EntityRepository
factory: ['@doctrine.orm.default_entity_manager', getRepository]
arguments:
- CBList\ModelBundle\Entity\Category
app.report-repository:
class: Doctrine\ORM\EntityRepository
factory: ['@doctrine.orm.default_entity_manager', getRepository]
arguments:
- CBList\ModelBundle\Entity\Report
|
Add various Repository service definitions
|
Add various Repository service definitions
|
YAML
|
mit
|
becosta/cb-list-platform
|
a1697a5f5e8da800ca093b7e466f26fd5bb17fa2
|
.kitchen.yml
|
.kitchen.yml
|
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt::default]
- name: ubuntu-14.04
run_list:
- recipe[apt::default]
suites:
- name: disable
run_list:
- recipe[apparmor::default]
attributes:
apparmor:
disable: true
- name: add
run_list:
- recipe[apparmor::default]
- recipe[apparmor_test::add]
- name: remove
run_list:
- recipe[apparmor::default]
- recipe[apparmor_test::remove]
|
driver:
name: vagrant
provisioner:
name: chef_zero
platforms:
- name: ubuntu-12.04
run_list:
- recipe[apt::default]
- name: ubuntu-14.04
run_list:
- recipe[apt::default]
- name: ubuntu-15.04
run_list:
- recipe[apt::default]
suites:
- name: disable
run_list:
- recipe[apparmor::default]
attributes:
apparmor:
disable: true
- name: add
run_list:
- recipe[apparmor::default]
- recipe[apparmor_test::add]
- name: remove
run_list:
- recipe[apparmor::default]
- recipe[apparmor_test::remove]
|
Add Ubuntu 15.04 to test systemd
|
Add Ubuntu 15.04 to test systemd
|
YAML
|
apache-2.0
|
chef-cookbooks/apparmor,opscode-cookbooks/apparmor,opscode-cookbooks/apparmor
|
0323ecf5258b879856f304aba029f5496819888e
|
.ravello.yml
|
.ravello.yml
|
applications:
- name: platformtest
vms:
- name: centos6
sysinit: "yum -y install dbus-devel dbus-x11"
- name: fedora16
sysinit: "yum -y install dbus-devel dbus-x11"
- name: fedora17
sysinit: "yum -y install dbus-devel dbus-x11"
- name: ubuntu1204
sysinit: "apt-get update && apt-get install libdbus-1-dev"
|
language: nodefaults
applications:
- name: platformtest
vms:
- name: centos6
sysinit: "yum -y install dbus-devel dbus-x11"
- name: fedora16
sysinit: "yum -y install dbus-devel dbus-x11"
- name: fedora17
sysinit: "yum -y install dbus-devel dbus-x11"
- name: ubuntu1204
sysinit: "apt-get update && apt-get install libdbus-1-dev"
prepare:
- sudo pip install -r requirements.txt
- python setup.py build
execute:
- nosetests
- name: platformtest3
vms:
- name: fedora16
sysinit: "yum -y install dbus-devel dbus-x11"
- name: fedora17
sysinit: "yum -y install dbus-devel dbus-x11"
- name: ubuntu1204
sysinit: "apt-get update && apt-get install libdbus-1-dev"
prepare:
- sudo pip3 install -r requirements.txt
- python3 setup.py build
execute:
- nosetests3
|
Test on Python3 as well.
|
Test on Python3 as well.
|
YAML
|
mit
|
geertj/python-dbusx,geertj/python-dbusx
|
450dc16e74ca5f88dcb4fbfda247d617ae1c4793
|
.rubocop.yml
|
.rubocop.yml
|
require:
- rubocop-performance
- rubocop-rails
- rubocop-rspec
AllCops:
TargetRailsVersion: 5.2
TargetRubyVersion: 2.7
Exclude:
- 'bin/*'
- 'db/**/*'
- 'log/**/*'
- 'node_modules/**/*'
- 'public/**/*'
- 'tmp/**/*'
- 'vendor/**/*'
Layout/LineLength:
Enabled: false
Metrics/BlockLength:
Enabled: false
Metrics/MethodLength:
Exclude:
- 'spec/**/*'
Metrics/ModuleLength:
Exclude:
- 'spec/**/*'
RSpec/DescribeClass:
Exclude:
- 'spec/features/**/*'
- 'spec/requests/**/*'
- 'spec/system/**/*'
Style/Documentation:
Enabled: false
Style/IfUnlessModifier:
Enabled: false
|
require:
- rubocop-performance
- rubocop-rails
- rubocop-rspec
AllCops:
TargetRailsVersion: 5.2
TargetRubyVersion: 2.7
Exclude:
- 'bin/*'
- 'db/**/*'
- 'log/**/*'
- 'node_modules/**/*'
- 'public/**/*'
- 'tmp/**/*'
- 'vendor/**/*'
Layout/LineLength:
Enabled: false
Lint/RaiseException:
Enabled: true
Lint/StructNewOverride:
Enabled: true
Metrics/BlockLength:
Enabled: false
Metrics/MethodLength:
Exclude:
- 'spec/**/*'
Metrics/ModuleLength:
Exclude:
- 'spec/**/*'
RSpec/DescribeClass:
Exclude:
- 'spec/features/**/*'
- 'spec/requests/**/*'
- 'spec/system/**/*'
Style/Documentation:
Enabled: false
Style/HashEachMethods:
Enabled: true
Style/HashTransformKeys:
Enabled: true
Style/HashTransformValues:
Enabled: true
Style/IfUnlessModifier:
Enabled: false
|
Add new RuboCop offences configuration
|
Add new RuboCop offences configuration
|
YAML
|
bsd-2-clause
|
diowa/ruby2-rails5-bootstrap-heroku,diowa/ruby2-rails5-bootstrap-heroku,diowa/ruby2-rails5-bootstrap-heroku
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.