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
cda6762bc743d9a7832b95d4bd56e905b1b9933c
.circleci/config.yml
.circleci/config.yml
version: 2.1 commands: test-nodejs: steps: - run: name: Versions command: npm version - checkout - restore_cache: keys: - v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }} - v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-master-{{ .Environment.CIRCLE_JOB }} - run: name: Install dependencies command: npm ci - run: name: Test command: npm test - save-npm-cache save-npm-cache: steps: - save_cache: key: v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package-lock.json" }} paths: - ~/.npm/_cacache jobs: node-v8: docker: - image: node:8 steps: - test-nodejs node-v10: docker: - image: node:10 steps: - test-nodejs node-v11: docker: - image: node:11 steps: - test-nodejs workflows: node-multi-build: jobs: - node-v8 - node-v10 - node-v11
version: 2.1 commands: test-nodejs: steps: - run: name: Versions command: npm version - checkout - restore_cache: keys: - v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }} - v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-master-{{ .Environment.CIRCLE_JOB }} - run: name: Install dependencies command: npm ci - run: name: Test command: npm test - save-npm-cache save-npm-cache: steps: - save_cache: key: v{{ .Environment.CIRCLE_CACHE_VERSION }}-{{ arch }}-npm-cache-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package-lock.json" }} paths: - ~/.npm/_cacache jobs: node-v8: docker: - image: node:8 steps: - test-nodejs node-v10: docker: - image: node:10 steps: - test-nodejs node-v12: docker: - image: node:12 steps: - test-nodejs workflows: node-multi-build: jobs: - node-v8 - node-v10 - node-v12
Test with Node v12 instead of v11
Test with Node v12 instead of v11
YAML
mit
ghost-inspector/grunt-ghost-inspector
4b7c054ef0fcd166bb39a13806db46c12526cd42
.circleci/config.yml
.circleci/config.yml
version: 2.1 orbs: hokusai: artsy/hokusai@0.7.4 not_staging_or_release: &not_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: build-deploy: jobs: - hokusai/test: <<: *not_staging_or_release - hokusai/push: name: push-staging-image <<: *only_master requires: - hokusai/test - hokusai/deploy-staging: <<: *only_master project-name: 'doppler' requires: - push-staging-image - hokusai/deploy-production: <<: *only_release
version: 2.1 orbs: hokusai: artsy/hokusai@0.7.5 not_staging_or_release: &not_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: build-deploy: jobs: - hokusai/test: <<: *not_staging_or_release - hokusai/push: name: push-staging-image <<: *only_master requires: - hokusai/test - hokusai/deploy-staging: <<: *only_master project-name: 'doppler' requires: - push-staging-image - hokusai/deploy-production: <<: *only_release
Update hokusai orb from 0.7.4 to v0.7.5
Update hokusai orb from 0.7.4 to v0.7.5
YAML
mit
artsy/doppler,artsy/doppler,artsy/doppler,artsy/doppler
770ea12b812c1170be2c3c4d4f98985641c4a9dd
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: working_directory: ~/iypm docker: - image: minn/node-awscli:latest steps: - checkout - restore_cache: key: deps-{{ checksum "package.json" }} - run: yarn install - save_cache: key: deps-{{ checksum "package.json" }} paths: - ~/.cache - run: yarn build - run: yarn test - deploy: name: Sync S3 bucket and invalidate Cloudfront cache command: | aws s3 sync build s3://${S3_BUCKET_PROD} --delete aws configure set preview.cloudfront true aws cloudfront create-invalidation --distribution-id ${CF_DIST_ID} --paths "*"
version: 2 jobs: build: working_directory: ~/iypm docker: - image: minn/node-awscli:latest steps: - checkout - restore_cache: key: deps-{{ checksum "package.json" }} - run: yarn install - save_cache: key: deps-{{ checksum "package.json" }} paths: - ~/.cache - run: yarn build - run: yarn test - deploy: name: Sync S3 bucket and invalidate Cloudfront cache command: | aws s3 sync build s3://${S3_BUCKET_PROD} --delete aws configure set preview.cloudfront true aws cloudfront create-invalidation --distribution-id ${CF_DIST_ID} --paths "/*"
Fix CircleCI Cloudfront wildcard invalidation path
Fix CircleCI Cloudfront wildcard invalidation path
YAML
mpl-2.0
MinnSoe/ifyoupayme,MinnSoe/ifyoupayme,MinnSoe/ifyoupayme
d63e1925f4432ab5aadf452c02244392105b50ae
.circleci/config.yml
.circleci/config.yml
version: 2.1 jobs: build: environment: GO111MODULE: "on" CONSUL_VERSION: 1.8.0 VAULT_VERSION: 1.4.2 docker: - image: docker.mirror.hashicorp.services/circleci/golang:latest working_directory: /go/src/github.com/hashicorp/consul-template steps: - checkout - restore_cache: keys: - ct-modcache-v1-{{ checksum "go.mod" }} - run: | curl -sLo consul.zip https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip unzip consul.zip sudo cp consul /usr/local/bin/ - run: | curl -sLo vault.zip https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_linux_amd64.zip unzip vault.zip sudo cp vault /usr/local/bin/ - run: | make test - save_cache: key: ct-modcache-v1-{{ checksum "go.mod" }} paths: - /go/pkg/mod
version: 2.1 jobs: build: environment: GO111MODULE: "on" CONSUL_VERSION: 1.8.0 VAULT_VERSION: 1.4.2 docker: - image: docker.mirror.hashicorp.services/cimg/go:1.17 steps: - checkout - restore_cache: keys: - ct-modcache-v1-{{ checksum "go.mod" }} - run: | curl -sLo consul.zip https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip unzip consul.zip sudo cp consul /usr/local/bin/ - run: | curl -sLo vault.zip https://releases.hashicorp.com/vault/${VAULT_VERSION}/vault_${VAULT_VERSION}_linux_amd64.zip unzip vault.zip sudo cp vault /usr/local/bin/ - run: | make test - save_cache: key: ct-modcache-v1-{{ checksum "go.mod" }} paths: - /go/pkg/mod
Replace deprecated 'circleci/golang' with 'cimg/go' image
Replace deprecated 'circleci/golang' with 'cimg/go' image Context for deprecating 'circleci/golang': https://discuss.circleci.com/t/legacy-convenience-image-deprecation/41034 Removed working_dir: - Reason: This was causing circleci error: "mkdir: cannot create directory ‘/go’: Permission denied" - Solution: Referred to Consul PR for this fix. The working_dir is redundant
YAML
mpl-2.0
hashicorp/consul-template,hashicorp/consul-template
57247a389ce77ad4069911aac9b1e1b7b544160b
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: # specify the version you desire here - image: circleci/node:8.9.1 # 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 # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "react-front/package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: cd react-front && npm install - save_cache: paths: - react-front/node_modules key: v1-dependencies-{{ checksum "react-front/package.json" }} # run tests! - run: cd react-front && npm test workflows: version: 2 build_and_test: jobs: - build - test
version: 2 jobs: build: docker: # specify the version you desire here - image: circleci/node:8.9.1 # 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 # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "react-front/package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: cd react-front && npm install - save_cache: paths: - react-front/node_modules key: v1-dependencies-{{ checksum "react-front/package.json" }} # run tests! - run: cd react-front && npm test workflows: version: 2 build_and_test: jobs: - build
Remove non needed step in workflow
Remove non needed step in workflow
YAML
mit
adaschevici/firebase-demo,adaschevici/firebase-demo,adaschevici/firebase-demo
b7d5a3caa6df4c7169986a98f4d21e92601aac29
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/node:8 working_directory: ~/protocol steps: - checkout - run: name: npm install command: npm install - save_cache: key: protocol-{{ .Environment.CIRCLE_SHA1 }} paths: - ~/protocol lint: docker: - image: circleci/node:8 working_directory: ~/protocol steps: - restore_cache: keys: - protocol-{{ .Environment.CIRCLE_SHA1 }} - run: name: Run linting command: npm run lint test-contracts: docker: - image: circleci/node:8 environment: SOLC_VERSION: '0.4.25' working_directory: ~/protocol steps: - restore_cache: keys: - protocol-{{ .Environment.CIRCLE_SHA1 }} - setup_remote_docker: version: 17.09.0-ce - run: name: Install Dockerized solc command: docker pull ethereum/solc:$SOLC_VERSION - run: name: Compile contracts command: npm run compile - run: name: Run unit tests with coverage reporting command: npm run test:coverage:coveralls - run: name: Run integration tests command: npm run test:integration workflows: version: 2 main: jobs: - build - lint: requires: - build - test-contracts: requires: - build
version: 2 jobs: build: docker: - image: circleci/node:8 working_directory: ~/protocol steps: - checkout - run: name: npm install command: npm install - save_cache: key: protocol-{{ .Environment.CIRCLE_SHA1 }} paths: - ~/protocol lint: docker: - image: circleci/node:8 working_directory: ~/protocol steps: - restore_cache: keys: - protocol-{{ .Environment.CIRCLE_SHA1 }} - run: name: Run linting command: npm run lint test-contracts: docker: - image: circleci/node:8 environment: SOLC_VERSION: '0.4.25' working_directory: ~/protocol steps: - restore_cache: keys: - protocol-{{ .Environment.CIRCLE_SHA1 }} - setup_remote_docker: version: 17.09.0-ce - run: name: Install Dockerized solc command: docker pull ethereum/solc:$SOLC_VERSION - run: name: Run tests with coverage reporting command: npm run test:coverage:coveralls no_output_timeout: 20m workflows: version: 2 main: jobs: - build - lint: requires: - build - test-contracts: requires: - build
Extend CircleCI test-contracts no_output_timeout to 20m
Extend CircleCI test-contracts no_output_timeout to 20m
YAML
mit
livepeer/protocol,livepeer/protocol,livepeer/protocol
8374758b7c0a8bd161a7a28a3735ed2514172c17
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/golang:1.9.4 steps: - checkout - run: command: pwd - run: name: mkdir command: mkdir -p /go/src/github.com/${CIRCLE_PROJECT_USERNAME} - run: name: ln command: ln -s /home/circleci/project /go/src/github.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME} - run: name: go get readline command: go get -d -v github.com/chzyer/readline - run: name: go get yaml command: go get -d -v gopkg.in/yaml.v2 - run: name: go generate command: go generate -v ./... - run: name: go build command: go build -v github.com/candid82/joker - run: name: linter tests command: ./linter-tests.sh - run: name: flag tests command: ./flag-tests.sh
version: 2 jobs: build: docker: - image: circleci/golang:1.9.4 steps: - checkout - run: command: pwd - run: name: mkdir command: mkdir -p /go/src/github.com/${CIRCLE_PROJECT_USERNAME} - run: name: ln command: ln -s /home/circleci/project /go/src/github.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME} - run: name: go get readline command: go get -d -v github.com/chzyer/readline - run: name: go get profile command: go get -d -v github.com/pkg/profile - run: name: go get yaml command: go get -d -v gopkg.in/yaml.v2 - run: name: go generate command: go generate -v ./... - run: name: go build command: go build -v github.com/candid82/joker - run: name: linter tests command: ./linter-tests.sh - run: name: flag tests command: ./flag-tests.sh
Add pkg/profile as a dependency
Add pkg/profile as a dependency Per PR request.
YAML
epl-1.0
candid82/joker,candid82/joker,candid82/joker
b6286b926e9b6f0a2da697cbc05c3248aa3a7eb9
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: springcloud/pipeline-base user: appuser environment: _JAVA_OPTIONS: "-Xms1024m -Xmx2048m" TERM: dumb branches: ignore: - gh-pages # list of branches to ignore steps: - checkout - restore_cache: key: sc-build-{{ .Branch }} - run: name: "Download dependencies" command: ./mvnw -s .settings.xml -U --fail-never dependency:go-offline || true - save_cache: key: sc-build-{{ .Branch }} paths: - ~/.m2 - run: name: "Running build" command: ./mvnw -Pdocs -s .settings.xml clean org.jacoco:jacoco-maven-plugin:prepare-agent install -U -P sonar -nsu --batch-mode -Dmaven.test.redirectTestOutputToFile=true -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn - run: name: "Aggregate test results" when: always command: | mkdir -p ~/junit/ find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} ~/junit/ \; bash <(curl -s https://codecov.io/bash) - store_artifacts: path: ~/junit/ destination: artifacts - store_test_results: path: ~/junit/ destination: testartifacts
version: 2 jobs: build: docker: - image: springcloud/pipeline-base user: appuser environment: _JAVA_OPTIONS: "-Xms1024m -Xmx2048m" TERM: dumb branches: ignore: - gh-pages # list of branches to ignore steps: - checkout - restore_cache: key: sc-build-{{ .Branch }} - run: name: "Download dependencies" command: ./mvnw -s .settings.xml -U --fail-never dependency:go-offline || true - save_cache: key: sc-build-{{ .Branch }} paths: - ~/.m2 - run: name: "Running build" command: ./mvnw -X -s .settings.xml clean org.jacoco:jacoco-maven-plugin:prepare-agent install -U -P sonar -nsu --batch-mode -Dmaven.test.redirectTestOutputToFile=true -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn - run: name: "Aggregate test results" when: always command: | mkdir -p ~/junit/ find . -type f -regex ".*/target/.*-reports/.*" -exec cp {} ~/junit/ \; bash <(curl -s https://codecov.io/bash) - store_artifacts: path: ~/junit/ destination: artifacts - store_test_results: path: ~/junit/ destination: testartifacts
Revert "Try building with docs on Circle."
Revert "Try building with docs on Circle." This reverts commit 2d1f2b3e110f47f5dc42ee8db86518f0cf40409e.
YAML
apache-2.0
spring-cloud/spring-cloud-build,spring-cloud/spring-cloud-build
e2ca1701e6aaaf4ff8b7daf0b0b94b790a6fc68a
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/openjdk:8-jdk-browsers - image: buildpack-deps:trusty steps: - add_ssh_keys: fingerprints: - "f1:69:76:4f:b0:2a:c6:a5:dd:71:b7:ce:89:8b:43:20" - run: git clone ssh://github.com/rsahlin/vecmath.git - checkout - run: mvn compile
version: 2 jobs: build: docker: - image: circleci/openjdk:8-jdk-browsers - image: buildpack-deps:trusty steps: - add_ssh_keys: fingerprints: - "49:3f:9c:ba:5e:6f:67:d7:db:ed:58:4c:8e:5d:67:89" - run: git clone ssh://github.com/rsahlin/vecmath.git - checkout - run: mvn compile
Add ssh key to circleci
Add ssh key to circleci
YAML
apache-2.0
rsahlin/graphics-by-opengl,rsahlin/graphics-by-opengl,rsahlin/graphics-by-opengl
c21a552e15239c1617b409fac66d30487a3fc523
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/node:6.11.1 steps: - checkout - restore_cache: keys: - v1-dependency-cache-{{ checksum "package.json" }} - v1-dependency-cache - run: yarn install - save_cache: key: v1-dependency-cache-{{ checksum "package.json" }} paths: - node_modules - ~/.cache/yarn - run: yarn validate
version: 2 jobs: build: docker: - image: circleci/node:6.11.1 steps: - checkout - restore_cache: keys: - v1-dependency-cache-{{ checksum "yarn.lock" }} - v1-dependency-cache - run: yarn install - save_cache: key: v1-dependency-cache-{{ checksum "yarn.lock" }} paths: - node_modules - ~/.cache/yarn - run: yarn validate
Change circle cache to yarn.lock
Change circle cache to yarn.lock
YAML
mit
CodingZeal/redux-persist-sensitive-storage
b25f0c615df9e6f0a886eb9b2ecd2a5bd30fbbd3
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: machine: image: circleci/classic:201808-01 working_directory: ~/project steps: - checkout - run: name: Setup nvim ppa command: sudo add-apt-repository --yes ppa:neovim-ppa/unstable - run: name: APT update command: sudo apt-get update - run: name: Install dependencies command: sudo apt-get install -y neovim python-pip python-dev cmake qt5-default - run: name: build command: | mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_GCOV=ON .. cmake --build . -- VERBOSE=1 - run: name: test command: | cd build ctest -VV
version: 2 jobs: build: machine: image: ubuntu-1604:201903-01 working_directory: ~/project steps: - checkout - run: name: Setup nvim ppa command: sudo add-apt-repository --yes ppa:neovim-ppa/unstable - run: name: APT update command: sudo apt-get update - run: name: Install dependencies command: sudo apt-get install -y neovim python-pip python-dev cmake qt5-default - run: name: build command: | mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Debug -DUSE_GCOV=ON .. cmake --build . -- VERBOSE=1 - run: name: test command: | cd build ctest -VV
Use a different ubuntu image for CircleCI
Use a different ubuntu image for CircleCI To avoid the recent issues with apt locks, we are moving to a more recent release.
YAML
isc
equalsraf/neovim-qt,equalsraf/neovim-qt,equalsraf/neovim-qt,equalsraf/neovim-qt
8fefeaf4dd975f0bfb5aecf303c2251fb5d8c7b1
.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.1 jobs: build: docker: - image: circleci/node:15.12 working_directory: ~/repo steps: - checkout # Download and cache dependencies - restore_cache: keys: - v15-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v15-dependencies- - run: npm install - save_cache: paths: - node_modules key: v15-dependencies-{{ checksum "package.json" }} - run: npm run lint - run: npm test
# JavaScript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2.1 jobs: build: docker: - image: circleci/node:15.13 working_directory: ~/repo steps: - checkout # Download and cache dependencies - restore_cache: keys: - v15-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v15-dependencies- - run: npm install - save_cache: paths: - node_modules key: v15-dependencies-{{ checksum "package.json" }} - run: npm run lint - run: npm test
Update circleci/node Docker tag to v15.13
Update circleci/node Docker tag to v15.13 Signed-off-by: Renovate Bot <c71e7261d37a4f6ae4cfb0cbd79081310a237e67@renovateapp.com>
YAML
mit
paazmaya/tozan
2bae2f5fa1d6a376a35ee1f2e0584fe49e01784c
.circleci/config.yml
.circleci/config.yml
# .circleci/config.yml version: 2.1 jobs: build-and-test: macos: xcode: 13.2.1 environment: FL_OUTPUT_DIR: output steps: - checkout - store_artifacts: path: output - store_test_results: path: output/scan swiftlint: docker: - image: bytesguy/swiftlint:latest auth: username: mydockerhub-user password: $DOCKERHUB_PASSWORD # context / project UI env-var reference steps: - checkout - run: swiftlint lint --reporter junit | tee result.xml - store_artifacts: path: result.xml - store_test_results: path: result.xml workflows: build-test: jobs: - swiftlint - build-and-test
# .circleci/config.yml version: 2.1 jobs: build-and-test: macos: xcode: 13.2.1 environment: FL_OUTPUT_DIR: output docker: - image: bytesguy/swiftlint:latest auth: username: mydockerhub-user password: $DOCKERHUB_PASSWORD # context / project UI env-var reference steps: - checkout - run: swiftlint lint --reporter junit | tee result.xml - store_artifacts: path: result.xml - store_test_results: path: result.xml workflows: build-test: jobs: - build-and-test
Build and test just runs SwiftLint for now
Build and test just runs SwiftLint for now
YAML
apache-2.0
SuperAwesomeLTD/sa-mobile-sdk-ios-demo,SuperAwesomeLTD/sa-mobile-sdk-ios-demo,SuperAwesomeLTD/sa-mobile-sdk-ios-demo,SuperAwesomeLTD/sa-mobile-sdk-ios-demo
6ae90f6d25cd0406dac96ce5a009ccd0688b01cf
.readthedocs.yaml
.readthedocs.yaml
version: 2 build: os: ubuntu-20.04 tools: python: "3" sphinx: builder: html configuration: nbgrader/docs/source/conf.py python: install: - method: pip path: . extra_requirements: - docs
version: 2 build: os: ubuntu-20.04 tools: python: "3" nodejs: "16" sphinx: builder: html configuration: nbgrader/docs/source/conf.py python: install: - method: pip path: . extra_requirements: - docs
Add nodejs as dependency for building readthedoc
Add nodejs as dependency for building readthedoc
YAML
bsd-3-clause
jhamrick/nbgrader,jupyter/nbgrader,jupyter/nbgrader,jhamrick/nbgrader,jupyter/nbgrader,jupyter/nbgrader,jhamrick/nbgrader,jhamrick/nbgrader,jupyter/nbgrader
a538d0989537d14e7ef575400f2a26c1b578f6fd
recipes/cykhash/meta.yaml
recipes/cykhash/meta.yaml
{% set version = "1.0.2" %} {% set name = "cykhash" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 2ed17bffaccce3564407f41fce96ed79cc00a72427b3957674ea89148c1844e1 build: number: 0 noarch: python script: "{{ PYTHON }} -m pip install . --no-deps -vv" requirements: build: - {{ compiler('c') }} - {{ compiler('cxx') }} host: - python >=3.5 - pip - cython >=0.28 run: - python >=3.5 test: imports: - cykhash about: home: https://github.com/realead/cykhash license: MIT license_file: 'LICENSE' summary: 'cython wrapper for khash-sets/maps, efficient implementation of `isin` and `unique`' extra: recipe-maintainers: - htenkanen
{% set version = "1.0.2" %} {% set name = "cykhash" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: 2ed17bffaccce3564407f41fce96ed79cc00a72427b3957674ea89148c1844e1 build: number: 0 noarch: python script: "{{ PYTHON }} -m pip install . --no-deps -vv" requirements: build: - {{ compiler('c') }} - {{ compiler('cxx') }} host: - python >=3.5 - pip - cython >=0.28 run: - python >=3.5 test: imports: - cykhash about: home: https://github.com/realead/cykhash license: MIT license_file: 'LICENSE' summary: 'cython wrapper for khash-sets/maps, efficient implementation of `isin` and `unique`' extra: recipe-maintainers: - htenkanen - realead
Add Egor as maintainer of the recipe (with permission)
Add Egor as maintainer of the recipe (with permission)
YAML
bsd-3-clause
petrushy/staged-recipes,stuertz/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes,mariusvniekerk/staged-recipes,SylvainCorlay/staged-recipes,petrushy/staged-recipes,patricksnape/staged-recipes,scopatz/staged-recipes,ReimarBauer/staged-recipes,SylvainCorlay/staged-recipes,stuertz/staged-recipes,chrisburr/staged-recipes,mariusvniekerk/staged-recipes,scopatz/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,chrisburr/staged-recipes,igortg/staged-recipes,goanpeca/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes,patricksnape/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,hadim/staged-recipes,igortg/staged-recipes,ReimarBauer/staged-recipes,ocefpaf/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes
6b467a21343f16f4de5964a45578de8c866bbf79
test-integration/commands.yml
test-integration/commands.yml
- description: Command help should display help information command: ../../../../../bin/sendman --help exitcode: 0 output: 'Usage: sendman' - description: Command init should display message about creating sample configuration file command: ../../../../../bin/sendman init exitcode: 0 output: 'Creating sample configuration file: .sendman.json' - description: Command send should display error message when command: ../../../../../bin/sendman send exitcode: 0 output: 'no such file or directory ''/path/to/local/dir'''
- params: sendman: ../../../../../bin/sendman - description: Command help should display help information command: '{sendman} --help' exitcode: 0 output: 'Usage: sendman' - description: Command init should display message about creating sample configuration file command: '{sendman} init' exitcode: 0 output: 'Creating sample configuration file: .sendman.json' - description: Command send should display error message when command: '{sendman} send' exitcode: 0 output: 'no such file or directory ''/path/to/local/dir'''
Simplify integration test by using params.
Simplify integration test by using params.
YAML
mit
cliffano/sendman
2d6e258f0e999e4d632523bbcded5f6afeb5a0b8
manifests/cf-manifest/test-config/acceptance_tests.yml
manifests/cf-manifest/test-config/acceptance_tests.yml
--- api: api.((system_domain)) apps_domain: ((app_domain)) system_domain: ((system_domain)) admin_user: ((admin_user)) admin_password: ((admin_password)) test_password: ((secrets_test_user_password)) skip_ssl_validation: false backend: "diego" skip_diego_unsupported_tests: true include_tasks: true include_v3: true include_security_groups: true include_routing: true include_internet_dependent: true include_logging: true include_operator: true include_services: true include_ssh: true include_docker: true include_route_services: true include_zipkin: true artifacts_directory: "/tmp/artifacts" use_existing_user: false include_container_networking: true name_prefix: ((name_prefix))
--- api: api.((system_domain)) apps_domain: ((app_domain)) system_domain: ((system_domain)) admin_user: ((admin_user)) admin_password: ((admin_password)) test_password: ((secrets_test_user_password)) skip_ssl_validation: false backend: "diego" skip_diego_unsupported_tests: true include_tasks: true include_v3: true include_security_groups: true include_routing: true include_internet_dependent: true include_logging: true include_operator: true include_service_discovery: true include_services: true include_ssh: true include_docker: true include_route_services: true include_zipkin: true artifacts_directory: "/tmp/artifacts" use_existing_user: false include_container_networking: true name_prefix: ((name_prefix))
Enable service discovery in upstream A/C tests
Enable service discovery in upstream A/C tests
YAML
mit
alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf
c9dba15d56ebce0867e200dc1034ec0443007d3a
.github/workflows/android.yml
.github/workflows/android.yml
name: Android CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Build with Gradle run: ./gradlew app:assembleDebug
name: Android CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: set up JDK 11 uses: actions/setup-java@v2 with: java-version: '11' distribution: 'adopt' cache: gradle - name: Build with Gradle run: ./gradlew app:assembleDebug
Update github actions java version
Update github actions java version
YAML
apache-2.0
erdemolkun/instant-rates
df8d5b1b04b4e16a9a14ba00dd29f23c72dd729f
.github/workflows/release.yml
.github/workflows/release.yml
name: Release on: push: tags: - \d+.\d+.\d+ jobs: build-and-push-stdlib-documentation: name: Build and Push standard library documentation runs-on: ubuntu-latest container: image: ponylang/ponyc-ci-stdlib-builder:latest steps: - uses: actions/checkout@v1 - name: Build and push run: "bash .ci-scripts/build-and-push-stdlib-documentation $STDLIB_TOKEN" env: STDLIB_TOKEN: ${{ secrets.STDLIB_TOKEN }} homebrew: name: Bump Homebrew formula runs-on: ubuntu-latest steps: - uses: mislav/bump-homebrew-formula-action@eb843fa04b91b8bc5d4953899e3fff15c95f347c with: formula-name: ponyc env: COMMITTER_TOKEN: ${{ secrets.HOMEBREW_RELEASE_TOKEN }}
name: Release on: push: tags: - \d+.\d+.\d+ jobs: build-and-push-stdlib-documentation: name: Build and Push standard library documentation runs-on: ubuntu-latest container: image: ponylang/ponyc-ci-stdlib-builder:latest steps: - uses: actions/checkout@v1 - name: Build and push run: "bash .ci-scripts/build-and-push-stdlib-documentation,bash $STDLIB_TOKEN" env: STDLIB_TOKEN: ${{ secrets.STDLIB_TOKEN }} homebrew: name: Bump Homebrew formula runs-on: ubuntu-latest steps: - uses: mislav/bump-homebrew-formula-action@eb843fa04b91b8bc5d4953899e3fff15c95f347c with: formula-name: ponyc env: COMMITTER_TOKEN: ${{ secrets.HOMEBREW_RELEASE_TOKEN }}
Fix error in standard library building documentation
Fix error in standard library building documentation
YAML
bsd-2-clause
kulibali/ponyc,kulibali/ponyc,dipinhora/ponyc,jemc/ponyc,jemc/ponyc,sgebbie/ponyc,ponylang/ponyc,ponylang/ponyc,sgebbie/ponyc,jemc/ponyc,sgebbie/ponyc,ponylang/ponyc,dipinhora/ponyc,kulibali/ponyc,sgebbie/ponyc,dipinhora/ponyc,sgebbie/ponyc,kulibali/ponyc
5fba5e1219225ebe052205cac6fb529d0cbf6af2
.github/workflows/rubocop.yml
.github/workflows/rubocop.yml
name: reviewdog on: [pull_request] jobs: rubocop: name: runner / rubocop runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@v1 - uses: ruby/setup-ruby@v1 with: ruby-version: 2.7.0 - name: rubocop uses: reviewdog/action-rubocop@v1 with: rubocop_version: gemfile github_token: ${{ secrets.github_token }} reporter: github-pr-check
name: reviewdog on: [pull_request] jobs: rubocop: name: runner / rubocop runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@v2 - uses: ruby/setup-ruby@v1 with: ruby-version: 2.7.0 - name: rubocop uses: reviewdog/action-rubocop@v1 with: rubocop_version: gemfile github_token: ${{ secrets.github_token }} reporter: github-pr-check
Bump GHA checkout to v2
Bump GHA checkout to v2
YAML
mit
fog/fog-libvirt,fog/fog-libvirt
be5e5d06311cebf93a774475c4b06d61899d91e8
recipes/accimage/meta.yaml
recipes/accimage/meta.yaml
{% set name = "accimage" %} {% set version = "0.1" %} package: name: {{ name|lower }} version: {{ version }} source: git_url: https://github.com/pytorch/accimage.git git_rev: '1e81f95' build: skip: true # [win] number: 0 script: "{{ PYTHON }} -m pip install . --no-deps -vv" requirements: build: - {{ compiler('c') }} - setuptools host: - python - libjpeg-turbo - ipp - ipp-include run: - libjpeg-turbo - ipp - python test: imports: - accimage about: home: https://github.com/pytorch/accimage license: BSD-2-Clause license_family: BSD license_file: LICENSE summary: accimage is a fast PIL replacement leaning on libjpeg-turbo and Intel IPP. description: | accimage is a fast PIL replacement leaning on libjpeg-turbo and Intel IPP. extra: recipe-maintainers: - willprice
{% set name = "accimage" %} {% set version = "0.1" %} package: name: {{ name|lower }} version: {{ version }} source: git_url: https://github.com/pytorch/accimage.git git_rev: '1e81f95' build: skip: true # [win] number: 0 script: "{{ PYTHON }} -m pip install . --no-deps -vv" requirements: build: - {{ compiler('c') }} - setuptools host: - python - libjpeg-turbo - intel-ipp run: - libjpeg-turbo - intel-ipp - python test: imports: - accimage about: home: https://github.com/pytorch/accimage license: BSD-2-Clause license_family: BSD license_file: LICENSE summary: accimage is a fast PIL replacement leaning on libjpeg-turbo and Intel IPP. description: | accimage is a fast PIL replacement leaning on libjpeg-turbo and Intel IPP. extra: recipe-maintainers: - willprice
Switch from intel channel ipp to conda channel ipp
Switch from intel channel ipp to conda channel ipp
YAML
bsd-3-clause
goanpeca/staged-recipes,stuertz/staged-recipes,stuertz/staged-recipes,Juanlu001/staged-recipes,chrisburr/staged-recipes,ceholden/staged-recipes,jjhelmus/staged-recipes,asmeurer/staged-recipes,johanneskoester/staged-recipes,scopatz/staged-recipes,Juanlu001/staged-recipes,SylvainCorlay/staged-recipes,mariusvniekerk/staged-recipes,patricksnape/staged-recipes,birdsarah/staged-recipes,patricksnape/staged-recipes,cpaulik/staged-recipes,basnijholt/staged-recipes,hadim/staged-recipes,kwilcox/staged-recipes,kwilcox/staged-recipes,chrisburr/staged-recipes,synapticarbors/staged-recipes,dschreij/staged-recipes,ceholden/staged-recipes,isuruf/staged-recipes,scopatz/staged-recipes,birdsarah/staged-recipes,rmcgibbo/staged-recipes,synapticarbors/staged-recipes,jakirkham/staged-recipes,jochym/staged-recipes,ocefpaf/staged-recipes,rmcgibbo/staged-recipes,goanpeca/staged-recipes,cpaulik/staged-recipes,SylvainCorlay/staged-recipes,mcs07/staged-recipes,igortg/staged-recipes,igortg/staged-recipes,mcs07/staged-recipes,jochym/staged-recipes,dschreij/staged-recipes,jjhelmus/staged-recipes,mariusvniekerk/staged-recipes,asmeurer/staged-recipes,ReimarBauer/staged-recipes,johanneskoester/staged-recipes,petrushy/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,isuruf/staged-recipes,basnijholt/staged-recipes,conda-forge/staged-recipes,ReimarBauer/staged-recipes,petrushy/staged-recipes,hadim/staged-recipes,conda-forge/staged-recipes
e461acc90a5360896139ed07989572e3697b61ed
tests/unit/docker-compose.yml
tests/unit/docker-compose.yml
version: "3" services: identidock_unit_tester: build: ../.. image: aroyd/identidock_unit_test:${IDENTIDOCK_UNIT_TEST_IMAGE_TAG:-latest} environment: ENV: UNIT_TEST
version: "3" services: identidock_unit_tester: build: ../.. image: aroyd/identidock_unit_test:${IDENTIDOCK_UNIT_TEST_IMAGE_TAG:-latest} environment: ENV: UNIT_TEST # volumes: # - .:/project
Add volumes directive but commented
Add volumes directive but commented
YAML
mit
anirbanroydas/ci-testing-python,anirbanroydas/ci-testing-python,anirbanroydas/ci-testing-python
9f045459eec5a4bbf6fce81c07a84a0b4524bc9b
swift/swift-test/.travis.yml
swift/swift-test/.travis.yml
# Based on: https://github.com/IBM-Swift/Kitura/blob/master/.travis.yml matrix: include: - os: linux dist: trusty sudo: required - os: osx osx_image: xcode8.2 sudo: required before_install: - git clone https://github.com/IBM-Swift/Package-Builder.git # Install minizip as dependency for PerfectZip - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget http://mirrors.kernel.org/ubuntu/pool/universe/m/minizip/libminizip-dev_1.1-8_amd64.deb; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget http://mirrors.kernel.org/ubuntu/pool/universe/m/minizip/libminizip1_1.1-8_amd64.deb; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo dpkg -i libminizip*; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install minizip; fi before_script: # TODO: get more information about the build - echo "$TRAVIS_BUILD_DIR" - find $TRAVIS_BUILD_DIR | egrep -v \.git script: - ./Package-Builder/build-package.sh -projectDir $TRAVIS_BUILD_DIR after_script: # TODO: get more information about the build - echo "$TRAVIS_BUILD_DIR" - find $TRAVIS_BUILD_DIR | egrep -v \.git
# Based on: https://github.com/IBM-Swift/Kitura/blob/master/.travis.yml matrix: include: - os: linux dist: trusty sudo: required - os: osx osx_image: xcode8.3 sudo: required before_install: - git clone https://github.com/IBM-Swift/Package-Builder.git # Install minizip as dependency for PerfectZip - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget http://mirrors.kernel.org/ubuntu/pool/universe/m/minizip/libminizip-dev_1.1-8_amd64.deb; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then wget http://mirrors.kernel.org/ubuntu/pool/universe/m/minizip/libminizip1_1.1-8_amd64.deb; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then sudo dpkg -i libminizip*; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install minizip; fi script: - ./Package-Builder/build-package.sh -projectDir $TRAVIS_BUILD_DIR after_script: # TODO: get more information about the build - echo "$TRAVIS_BUILD_DIR" - find $TRAVIS_BUILD_DIR | egrep -v \.git
Update to Xcode 8.3 (Swift 3.1) and only dump build info at the end
Update to Xcode 8.3 (Swift 3.1) and only dump build info at the end
YAML
mit
bmaupin/junkpile,bmaupin/junkpile,bmaupin/junkpile,bmaupin/junkpile,bmaupin/junkpile,bmaupin/junkpile,bmaupin/junkpile,bmaupin/junkpile,bmaupin/junkpile
5b92cf99815b8b60a433583208cb0672dd406f4c
roles/ceph/tasks/build.yml
roles/ceph/tasks/build.yml
--- - name: add ceph repo key apt_key: url="https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/release.asc" - name: add pycurl apt: pkg="python-pycurl" update_cache=yes cache_valid_time=3600 - name: add ceph repo apt_repository: repo="deb http://ceph.com/debian-{{ ceph_release }} precise main" update_cache=no - name: add ceph extras repo apt_repository: repo="deb http://ceph.com/packages/ceph-extras/debian precise main" update_cache=no - name: add ceph package apt: pkg="ceph" update_cache=yes cache_valid_time=3600 - name: add ceph-extras package apt: pkg="ceph-extras" update_cache=yes cache_valid_time=3600
--- - name: add ceph repo key apt_key: url="https://ceph.com/git/?p=ceph.git;a=blob_plain;f=keys/release.asc" - name: add pycurl apt: pkg="python-pycurl" update_cache=yes cache_valid_time=3600 - name: add ceph repo apt_repository: repo="deb http://ceph.com/debian-{{ ceph_release }} precise main" update_cache=no - name: add ceph extras repo apt_repository: repo="deb http://ceph.com/packages/ceph-extras/debian precise main" update_cache=no - name: add ceph package apt: pkg="ceph" update_cache=yes cache_valid_time=3600
Remove bug in ceph tasks
Remove bug in ceph tasks
YAML
mit
medlefsen/ansible-test
955e32b35ff470bb90e10be119fd68d5ad0300b2
roles/video/tasks/main.yml
roles/video/tasks/main.yml
- name: Install ppas apt_repository: repo={{ item }} state=absent codename="sylvia" with_items: "{{ ppas }}" become: True - name: Install ppas apt_repository: repo={{ item }} state=present codename="xenial" with_items: "{{ ppas }}" become: True - name: Install video packages package: name={{ item }} state=present with_items: "{{ packages }}" become: True - name: Install scripts file: src="{{ role_path }}/files/{{ item }}" dest="/usr/local/bin/{{ item }}" state=link with_items: "{{ scripts }}" become: True - name: Clone pulverize repo git: repo="https://github.com/sciactive/pulverize" dest="/var/repos/pulverize" - name: Link pulverize.php into /usr/local/bin file: src="/var/repos/pulverize/pulverize.php" dest="/usr/local/bin/pulverize.php" state="link" become: True
- name: Remove sylvia obs wrong repo apt_repository: repo={{ item }} state=absent codename="sylvia" with_items: "{{ ppas }}" become: True - name: Remove sonya obs wrong repo apt_repository: repo={{ item }} state=absent codename="sonya" with_items: "{{ ppas }}" become: True - name: Install ppas apt_repository: repo={{ item }} state=present codename="xenial" with_items: "{{ ppas }}" become: True - name: Install video packages package: name={{ item }} state=present with_items: "{{ packages }}" become: True - name: Install scripts file: src="{{ role_path }}/files/{{ item }}" dest="/usr/local/bin/{{ item }}" state=link with_items: "{{ scripts }}" become: True - name: Clone pulverize repo git: repo="https://github.com/sciactive/pulverize" dest="/var/repos/pulverize" - name: Link pulverize.php into /usr/local/bin file: src="/var/repos/pulverize/pulverize.php" dest="/usr/local/bin/pulverize.php" state="link" become: True
Add sonya wrong codename to remove for obs repository
Add sonya wrong codename to remove for obs repository
YAML
apache-2.0
mansonjesus/ansible-playbooks
1749b8cc97ab2ababbb1a9ae34b70a7eac528d9c
docs/_config.yml
docs/_config.yml
defaults: - scope: path: "" values: layout: default - scope: path: "docs" values: layout: docs tab: docs sass: sass_dir: _sass style: :compressed baseurl: "/kato" highlighter: rouge lsi: false markdown: redcarpet redcarpet: extensions: [with_toc_data, tables] safe: true source: .
defaults: - scope: path: "" values: layout: default - scope: path: "docs" values: layout: docs tab: docs sass: sass_dir: _sass style: :compressed baseurl: "/kato" highlighter: rouge lsi: false markdown: kramdown redcarpet: extensions: [with_toc_data, tables] safe: true source: .
Replace no longer supported redcarpet markdown engine with kramdown
Replace no longer supported redcarpet markdown engine with kramdown
YAML
apache-2.0
h0tbird/kato,katosys/kato,h0tbird/kato
8230cc8a1e9d3ce7c4571e6b18e3bede286fecdf
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/config.yml
blank_issues_enabled: false contact_links: - name: Feature request url: https://github.com/laravel/framework/discussions about: 'For ideas or feature requests, start a new discussion' - name: Support question url: https://github.com/laravel/framework/discussions about: 'This repository is only for reporting bugs. For support, start a new discussion' - name: Documentation issue url: https://github.com/laravel/docs about: For documentation issues, open a pull request at the laravel/docs repository
blank_issues_enabled: false contact_links: - name: Feature request url: https://github.com/laravel/valet/discussions about: 'For ideas or feature requests, start a new discussion' - name: Support question url: https://github.com/laravel/valet/discussions about: 'This repository is only for reporting bugs. For support, start a new discussion' - name: Documentation issue url: https://github.com/laravel/docs about: For documentation issues, open a pull request at the laravel/docs repository
Update GitHub issue template to point to Valet discussions
Update GitHub issue template to point to Valet discussions
YAML
mit
laravel/valet,laravel/valet,laravel/valet
b119b564dfb6939de38ff8728b656361a34e75bc
.github/ISSUE_TEMPLATE/config.yml
.github/ISSUE_TEMPLATE/config.yml
contact_links: - name: Support request url: https://forum.openzeppelin.com/c/support/contracts/18 about: Ask the community in the Community Forum
contact_links: - name: Questions & Support Requests url: https://forum.openzeppelin.com/c/support/contracts/18 about: Ask in the OpenZeppelin Forum
Improve wording for forum link in new issue templates
Improve wording for forum link in new issue templates
YAML
mit
OpenZeppelin/openzeppelin-contracts,OpenZeppelin/openzeppelin-contracts,OpenZeppelin/openzeppelin-contracts
8963a103751b1064f4e3f7142b808d5eff42f75a
install.conf.yaml
install.conf.yaml
- defaults: link: create: true relink: true - clean: ['~', '~/.config'] - link: ~/.config/base16-shell: base16-shell ~/.config/zsh: zsh ~/.config/nvim: nvim ~/.config/git/config: git/config ~/.config/tmux: tmux - shell: - [git submodule update --init --recursive, Installing submodules]
- defaults: link: create: true relink: true - clean: ['~', '~/.config'] - link: ~/.config/base16-shell: base16-shell ~/.config/zsh: zsh ~/.config/nvim: nvim ~/.config/nvim/autoload/lightline/colorscheme/base16.vim: nvim/vim-base16-lightline/autoload/lightline/colorscheme/base16.vim ~/.config/git/config: git/config ~/.config/tmux: tmux - shell: - [git submodule update --init --recursive, Installing submodules]
Add symlink for base16 lightline colorscheme
Add symlink for base16 lightline colorscheme
YAML
mit
andrew-dias/dotfiles,andrew-dias/dotfiles-base
13b1920fe5a63be712da004f9632d16e39652b9a
install.conf.yaml
install.conf.yaml
- shell: - [mkdir -p ~/.config, Creating config folder] - [mkdir -p ~/.local/share/npm, Creating npm folder] - [test ! -e ~/.npmrc && echo prefix=/home/$(whoami)/.local/share/npm > npmrc, Creating npmrc with packages dir prefix] - link: ~/.config/i3: config/i3 ~/.config/i3status: config/i3status ~/.config/htop: config/htop ~/.config/gtk-2.0: config/gtk-2.0 ~/.config/gtk-3.0: config/gtk-3.0 ~/.gtkrc-2.0: config/gtk-2.0/gtkrc-2.0 ~/.mplayer: config/mplayer ~/.aliases: aliases ~/.functions: functions ~/.exports: exports ~/.bash_profile: bash_profile ~/.bash_logout: bash_logout ~/.bashrc: bashrc ~/.xinitrc: xinitrc ~/.Xresources: Xresources ~/.npmrc: npmrc
- shell: - [mkdir -p ~/.config, Creating config folder] - [mkdir -p ~/.local/share/npm, Creating npm folder] - [test ! -e ~/.npmrc && echo prefix=/home/$(whoami)/.local/share/npm > npmrc, Creating npmrc with packages dir prefix] - clean: ['~'] - link: ~/.config/i3: config/i3 ~/.config/i3status: config/i3status ~/.config/htop: config/htop ~/.config/gtk-2.0: config/gtk-2.0 ~/.config/gtk-3.0: config/gtk-3.0 ~/.gtkrc-2.0: config/gtk-2.0/gtkrc-2.0 ~/.mplayer: config/mplayer ~/.aliases: aliases ~/.functions: functions ~/.exports: exports ~/.bash_profile: bash_profile ~/.bash_logout: bash_logout ~/.bashrc: bashrc ~/.xinitrc: xinitrc ~/.Xresources: Xresources ~/.npmrc: npmrc
Remove dead symlinks from home dir
Remove dead symlinks from home dir
YAML
mit
petersandor/dotfiles
28590c10ba7e4acaa823c7df9ef94b148f9b6020
test/rate-limit-policies.yml
test/rate-limit-policies.yml
# See cmd/shell.go for definitions of these rate limits. totalCertificates: window: 2160h threshold: 100000 certificatesPerName: window: 2160h threshold: 2 overrides: ratelimit.me: 1 # Hostnames used by the letsencrypt client integration test. le.wtf: 10000 le1.wtf: 10000 le2.wtf: 10000 le3.wtf: 10000 nginx.wtf: 10000 good-caa-reserved.com: 10000 bad-caa-reserved.com: 10000 registrationOverrides: 101: 1000 registrationsPerIP: window: 168h # 1 week threshold: 3 overrides: 127.0.0.1: 1000000 pendingAuthorizationsPerAccount: window: 168h # 1 week, should match pending authorization lifetime. threshold: 3 certificatesPerFQDNSet: window: 24h threshold: 5
# See cmd/shell.go for definitions of these rate limits. totalCertificates: window: 2160h threshold: 100000 certificatesPerName: window: 2160h threshold: 2 overrides: ratelimit.me: 1 # Hostnames used by the letsencrypt client integration test. le.wtf: 10000 le1.wtf: 10000 le2.wtf: 10000 le3.wtf: 10000 nginx.wtf: 10000 good-caa-reserved.com: 10000 bad-caa-reserved.com: 10000 registrationOverrides: 101: 1000 registrationsPerIP: window: 168h # 1 week threshold: 3 overrides: 127.0.0.1: 1000000 pendingAuthorizationsPerAccount: window: 168h # 1 week, should match pending authorization lifetime. threshold: 3 certificatesPerFQDNSet: window: 24h threshold: 5 overrides: le.wtf: 10000 le1.wtf: 10000 le2.wtf: 10000 le3.wtf: 10000 le.wtf,le1.wtf: 10000
Add overrides for FQDNSet in test
Add overrides for FQDNSet in test
YAML
mpl-2.0
mehmooda/boulder,jfrazelle/boulder,jcjones/boulder,jsha/boulder,jfrazelle/boulder,ZCloud-Firstserver/boulder,benileo/boulder,patf/boulder,ibukanov/boulder,benileo/boulder,ibukanov/boulder,letsencrypt/boulder,bmw/boulder,mehmooda/boulder,lucasallan/boulder,patf/boulder,lucasallan/boulder,jsha/boulder,jfrazelle/boulder,benileo/boulder,ZCloud-Firstserver/boulder,jfrazelle/boulder,bmw/boulder,lucasallan/boulder,sophie-h/boulder,sophie-h/boulder,jcjones/boulder,mehmooda/boulder,sophie-h/boulder,ZCloud-Firstserver/boulder,ibukanov/boulder,letsencrypt/boulder,patf/boulder,jcjones/boulder,benileo/boulder,jcjones/boulder,bmw/boulder,ZCloud-Firstserver/boulder,letsencrypt/boulder,jsha/boulder,patf/boulder,mehmooda/boulder
bb2a9c42c3db00c9dd56c0dfb188c36ef10e85d2
tasks/letsencrypt-conf.yml
tasks/letsencrypt-conf.yml
--- - name: Create letsencrypt user user: name=letsencrypt state=present system=yes uid=1250 - name: Create /etc/letsencrypt directory file: path=/etc/letsencrypt state=directory mode=0700 owner=letsencrypt - name: Copy cli.ini template: src=cli.ini dest=/etc/letsencrypt/cli.ini owner=letsencrypt - stat: path=/etc/letsencrypt/domains.conf register: letsencrypt_domains_conf_file - name: Touch domains.conf if absent file: path=/etc/letsencrypt/domains.conf state=touch mode=600 owner=letsencrypt when: letsencrypt_domains_conf_file.stat.exists == False - name: Check if dhparam file exists stat: path=/etc/letsencrypt/dhparam.pem register: dhparam_file - name: Generate dhparam file (could take a while...) shell: openssl dhparam -out /etc/letsencrypt/dhparam.pem 2048 && chmod 400 /etc/letsencrypt/dhparam.pem when: dhparam_file.stat.exists == False
--- - name: Create letsencrypt user user: name=letsencrypt state=present system=yes uid=1250 createhome=no - name: Create /etc/letsencrypt directory file: path=/etc/letsencrypt state=directory mode=0700 owner=letsencrypt - name: Copy cli.ini template: src=cli.ini dest=/etc/letsencrypt/cli.ini owner=letsencrypt - stat: path=/etc/letsencrypt/domains.conf register: letsencrypt_domains_conf_file - name: Touch domains.conf if absent file: path=/etc/letsencrypt/domains.conf state=touch mode=600 owner=letsencrypt when: letsencrypt_domains_conf_file.stat.exists == False - name: Check if dhparam file exists stat: path=/etc/letsencrypt/dhparam.pem register: dhparam_file - name: Generate dhparam file (could take a while...) shell: openssl dhparam -out /etc/letsencrypt/dhparam.pem 2048 && chmod 400 /etc/letsencrypt/dhparam.pem when: dhparam_file.stat.exists == False
Add createhome=no option on Create LE user statement
Add createhome=no option on Create LE user statement
YAML
mit
cedricblondeau/ansible-role-h2o-docker-proxy-letsencrypt,cedricblondeau/ansible-role-h2o-docker-proxy-letsencrypt
629ae80f421288d687a02434b2cd9327300f5e22
resources/mode-list.yml
resources/mode-list.yml
- name: 'custom' description: 'Minimum set of services to join into a cluster' - name: 'core' description: 'Basic set of services to create a cluster' - name: 'full' description: 'All services running to perform a full cluster experience' - name: 'chef' description: 'Chef server node' - name: 'kafka' description: 'Kafka server node'
- name: 'custom' description: 'Minimum set of services to join into a cluster' - name: 'core' description: 'Basic set of services to create a cluster' - name: 'full' description: 'All services running to perform a full cluster experience' - name: 'chef' description: 'Chef server node' - name: 'kafka' description: 'Kafka server node' - name: 'druid' description: 'Druid server node'
Add druid mode to list
Add druid mode to list
YAML
agpl-3.0
redBorder/redborder-manager,redBorder/redborder-manager
c0c0644f2c1a06d43efc1255cc6e64334510b121
.blade.yml
.blade.yml
load_paths: - test/src - test/vendor - assets - polyfills - src logical_paths: - trix.js - test.js - trix.css build: logical_paths: - trix.js - trix-core.js - trix.css path: dist js_compressor: uglifier plugins: sauce_labs: browsers: Google Chrome: os: Mac, Windows version: -2 Firefox: os: Mac, Windows version: -2 Safari: platform: Mac version: -3 Microsoft Edge: version: -2 Internet Explorer: version: 11 iPhone: version: [9.1, 8.4] Motorola Droid 4 Emulator: version: [5.1, 4.4]
load_paths: - test/src - test/vendor - assets - polyfills - src logical_paths: - trix.js - test.js - trix.css build: logical_paths: - trix.js - trix-core.js - trix.css path: dist js_compressor: uglifier plugins: sauce_labs: browsers: Google Chrome: os: Mac, Windows version: -2 Firefox: os: Mac, Windows version: -2 Safari: platform: Mac version: -3 Microsoft Edge: version: -2 Internet Explorer: version: 11 iPhone: version: [9.2, 8.4] Motorola Droid 4 Emulator: version: [5.1, 4.4]
Test on latest available iOS version
Test on latest available iOS version
YAML
mit
basecamp/trix,urossmolnik/trix,ChenMichael/trix,basecamp/trix,ChenMichael/trix,GabiGrin/trix,urossmolnik/trix,basecamp/trix,GabiGrin/trix,GabiGrin/trix,urossmolnik/trix,ChenMichael/trix,basecamp/trix
d44f747d38ee8517dd28ea4dbedb599a349dfb82
.drone.yml
.drone.yml
image: go1.3 git: path: github.com/ciarand/bot env: - GOROOT=/usr/local/go - PATH=$PATH:$GOROOT/bin:$GOPATH/bin script: - make test
image: go1.3 git: path: github.com/ciarand/bot env: - GOROOT=/usr/local/go - PATH=$PATH:$GOROOT/bin:$GOPATH/bin script: - go get ./... - make test
Add the go-get step to the build process
Add the go-get step to the build process
YAML
isc
killix/bot,killix/bot,ciarand/bot,ciarand/bot
f01b2e9025d33aeff3bf22ea2568bda036878819
.zuul.yaml
.zuul.yaml
- project: templates: - check-requirements - publish-openstack-docs-pti - openstack-cover-jobs - openstack-lower-constraints-jobs - openstack-python3-wallaby-jobs - lib-forward-testing-python3 - release-notes-jobs-python3 check: jobs: - neutron-tempest-plugin-api # This job comes from lib-forward-testing-python3 template, # but it is limited to 2h there and we want to set # for it 3h timeout - tempest-full-py3: timeout: 10800 gate: jobs: - neutron-tempest-plugin-api # This job comes from lib-forward-testing-python3 template, # but it is limited to 2h there and we want to set # for it 3h timeout - tempest-full-py3: timeout: 10800
- project: templates: - check-requirements - publish-openstack-docs-pti - openstack-cover-jobs - openstack-lower-constraints-jobs - openstack-python3-xena-jobs - lib-forward-testing-python3 - release-notes-jobs-python3 check: jobs: - neutron-tempest-plugin-api # This job comes from lib-forward-testing-python3 template, # but it is limited to 2h there and we want to set # for it 3h timeout - tempest-full-py3: timeout: 10800 gate: jobs: - neutron-tempest-plugin-api # This job comes from lib-forward-testing-python3 template, # but it is limited to 2h there and we want to set # for it 3h timeout - tempest-full-py3: timeout: 10800
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: Id7e03dc3dfd166ad2e5e61cf8f6516943ba391bf
YAML
apache-2.0
openstack/neutron-lib,openstack/neutron-lib,openstack/neutron-lib,openstack/neutron-lib
045ab135c50bf31e1741c77c79c8f6d664877fff
.github/workflows/cibuild.yml
.github/workflows/cibuild.yml
name: CI Build on: push: paths-ignore: - 'docs/**' - '.github/**/*docs*' pull_request: paths-ignore: - 'docs/**' - '.github/**/*docs*' env: LC_ALL: en_US.UTF-8 defaults: run: shell: bash jobs: JDKxx_Matrix: strategy: matrix: java: [ 11 ] os: [ ubuntu-latest, windows-latest ] name: JDK${{ matrix.java }} ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: - name: Git Checkout uses: actions/checkout@v2 - name: Set up Java ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build run: | ./.github/scripts/build.sh - name: Publish if: success() && (matrix.java == '11') && (matrix.os == 'ubuntu-latest') && (github.repository == 'osgi/osgi.enroute') && (github.ref == 'refs/heads/master') && (github.event_name != 'pull_request') run: | ./.github/scripts/publish.sh env: REPOSITORY_USERNAME: ${{ secrets.REPOSITORY_USERNAME }} REPOSITORY_PASSWORD: ${{ secrets.REPOSITORY_PASSWORD }}
name: CI Build on: push: paths-ignore: - 'docs/**' - '.github/**/*docs*' pull_request: paths-ignore: - 'docs/**' - '.github/**/*docs*' env: LC_ALL: en_US.UTF-8 defaults: run: shell: bash jobs: JDKxx_Matrix: strategy: matrix: java: [ 11 ] os: [ ubuntu-latest, windows-latest ] name: JDK${{ matrix.java }} ${{ matrix.os }} runs-on: ${{ matrix.os }} steps: - name: Git Checkout uses: actions/checkout@v2 - name: Set up Java ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build run: | ./.github/scripts/build.sh - name: Publish if: success() && (matrix.java == '11') && (matrix.os == 'ubuntu-latest') && (github.repository == 'osgi/osgi.enroute') && (github.ref == 'refs/heads/main') && (github.event_name != 'pull_request') run: | ./.github/scripts/publish.sh env: REPOSITORY_USERNAME: ${{ secrets.REPOSITORY_USERNAME }} REPOSITORY_PASSWORD: ${{ secrets.REPOSITORY_PASSWORD }}
Change to use main branch as the canonical branch
actions: Change to use main branch as the canonical branch Signed-off-by: BJ Hargrave <3d26bb3930946e3370762d769a073cece444c2d8@bjhargrave.com>
YAML
apache-2.0
osgi/osgi.enroute,osgi/osgi.enroute
18a7feec4886d8834deab921d569717e8eda9182
.github/workflows/runtime.yml
.github/workflows/runtime.yml
name: Runtime Test on: workflow_dispatch: schedule: - cron: '0 0 * * 5' push: branches: [master, main, develop] jobs: macos: runs-on: macos-latest strategy: matrix: go: ['1.14', '1.15'] steps: - name: Checkout uses: actions/checkout@v2 - name: Go uses: actions/setup-go@v2 with: go-version: ${{ matrix.go }} - name: Install tesseract run: brew install tesseract - name: Install pkg run: go get -u -v -t ./... - name: Test run: go test -v -cover ./... test: runs-on: ubuntu-latest strategy: matrix: runtime: - ubuntu - alpine - archlinux - centos - debian - fedora - mingw - quickstart steps: - name: checkout uses: actions/checkout@v2 - name: ${{ matrix.runtime }} shell: 'script -q -e -c "bash {0}"' run: bash ./test/runtime --driver docker --build --run ${{ matrix.runtime }}
name: Runtime Test on: workflow_dispatch: schedule: - cron: '0 0 * * 5' push: branches: [master, main, develop] jobs: macos: runs-on: macos-latest strategy: matrix: go: ['1.14', '1.15'] steps: - name: Checkout uses: actions/checkout@v2 - name: Go uses: actions/setup-go@v2 with: go-version: ${{ matrix.go }} - name: Install tesseract run: brew install tesseract - name: Install pkg run: go get -u -v -t ./... - name: Test run: go test -v -cover ./... test: runs-on: ubuntu-latest strategy: matrix: runtime: - ubuntu - alpine - archlinux - centos - debian - fedora - mingw - quickstart steps: - name: checkout uses: actions/checkout@v2 - name: ${{ matrix.runtime }} shell: 'script -q -e -c "bash {0}"' run: bash ./test/runtime --build --run ${{ matrix.runtime }} vagrant-test: runs-on: macos-10.15 strategy: matrix: runtime: - freebsd steps: - name: checkout uses: actions/checkout@v2 - name: ${{ matrix.runtime }} run: bash ./test/runtime --build --run ${{ matrix.runtime }}
Enable FreeBSD test on CI workflow
Enable FreeBSD test on CI workflow
YAML
mit
otiai10/gosseract,otiai10/gosseract,otiai10/gosseract,otiai10/gosseract
8751eda8880dd3b4697d5026f919a80cfb68bda7
.github/workflows/windows.yml
.github/workflows/windows.yml
name: LIEF Windows Tests on: push: branches: - master - enhancement/windows-ci pull_request: jobs: build: runs-on: windows-latest strategy: matrix: python-version: [3.6, 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 system dependencies run: | choco install ninja python -m pip install --upgrade pip setuptools python -m pip install wheel mako - uses: ilammy/msvc-dev-cmd@v1 with: toolset: "14.16" - name: Build and Test run: | python ./setup.py --ninja --sdk bdist_wheel shell: cmd
name: LIEF Windows Tests on: push: branches: - master pull_request: jobs: build: runs-on: windows-latest strategy: matrix: python-version: [3.6, 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 system dependencies run: | choco install ninja python -m pip install --upgrade pip setuptools python -m pip install wheel mako - uses: ilammy/msvc-dev-cmd@v1 with: toolset: "14.16" - name: Build and Test run: | python ./setup.py --ninja --sdk --lief-test bdist_wheel shell: cmd
Enable tests in github actions
Enable tests in github actions
YAML
apache-2.0
lief-project/LIEF,lief-project/LIEF,lief-project/LIEF,lief-project/LIEF
64ed60a23f8a9cad42b9feca63487be7af843c92
install_files/ansible-base/roles/development/tasks/main.yml
install_files/ansible-base/roles/development/tasks/main.yml
--- - name: install apt package deps for dev environment apt: pkg="{{ item }}" state=latest with_items: dev_deps - name: install pip deps for dev env pip: requirements="{{ dev_pip_requirements }}"
--- - name: install apt package deps for dev environment apt: pkg="{{ item }}" state=latest with_items: dev_deps - name: install pip deps for dev env pip: requirements="{{ dev_pip_requirements }}" - name: set SECUREDROP_ENV in bashrc lineinfile: dest: /home/{{ securedrop_user }}/.bashrc state: present insertafter: EOF line: "export SECUREDROP_ENV=dev"
Set SECUREDROP_ENV for development environment
Set SECUREDROP_ENV for development environment This makes running certain tasks manually, such as the individual `source.py` or `journalist.py` applications, less error-prone. You need to set `SECUREDROP_ENV=dev` in order to have `FlaskConfig.DEBUG = True`, which is necessary for Flask to serve the static files.
YAML
agpl-3.0
mark-in/securedrop-prov-upstream,mark-in/securedrop-prov-upstream,mark-in/securedrop-prov-upstream,mark-in/securedrop-prov-upstream
68a23f1d77dd712ff2e276463e0a37a5a0ba1869
packages.yml
packages.yml
passengers: - dotfile - homebrew - vundle - rvm - git_repo - npm directory_name: "tilde" rubies: - ruby-1.9.3 - ruby-2.0.0 - ruby-2.1.2 brews: - the_silver_searcher - arangodb - chicken - clisp - doxygen - git - graphviz - haskell-platform - htop-osx - hub - imagemagick - leiningen - libxml2 - jq - macvim: - --override-system-vim - mysql - node - optipng - postgresql - reattach-to-user-namespace - redis - rlwrap - rust - swi-prolog - tig - tmux - tree - wget - zsh npms: - bower - docco - grunt-cli - jshint - jslint - yo repos: "zsh-users/zsh-syntax-highlighting": "~/.zsh/plugins/zsh-syntax-highlighting"
passengers: - dotfile - homebrew - vundle - rvm - git_repo - npm directory_name: "tilde" rubies: - ruby-1.9.3 - ruby-2.0.0 - ruby-2.1.2 brews: - the_silver_searcher - arangodb - chicken - clisp - doxygen1831 - git - graphviz - haskell-platform - htop-osx - hub - imagemagick - leiningen - libxml2 - jq - macvim: - --override-system-vim - mysql - node - optipng - postgresql - reattach-to-user-namespace - redis - rlwrap - rust - swi-prolog - tig - tmux - tree - wget - zsh npms: - bower - docco - grunt-cli - jshint - jslint - yo repos: "zsh-users/zsh-syntax-highlighting": "~/.zsh/plugins/zsh-syntax-highlighting"
Install Doxygen 1.8.3.1 via my Homebrew Versions Recipe
Install Doxygen 1.8.3.1 via my Homebrew Versions Recipe This is the version I need for ArangoDB documentation.
YAML
mit
moonglum/dotfiles,moonglum/dotfiles,bascht/dotfiles-1,bascht/dotfiles-1
10cb80f0360e2f2282642ab98ac65e524eb80e6c
.github/workflows/acceptance.yml
.github/workflows/acceptance.yml
name: Tests (acceptance) on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: max-parallel: 5 matrix: python-version: [3.6, 3.7, 3.8] 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: | pip install pytest==6.1.1 xkcdpass==1.17.6 python setup.py develop - name: Run acceptance tests env: GITLAB_EE_LICENSE: ${{ secrets.GITLAB_EE_LICENSE }} run: | ./dev/run_gitlab_in_docker.sh py.test gitlabform/gitlabform/test/test_archive_project.py py.test gitlabform/gitlabform/test/test_branches.py
name: Tests (acceptance) on: [push, pull_request] jobs: test: runs-on: ubuntu-latest strategy: max-parallel: 5 matrix: python-version: [3.6, 3.7, 3.8] 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: | pip install pytest==6.1.1 xkcdpass==1.17.6 python setup.py develop - name: Run acceptance tests env: GITLAB_EE_LICENSE: ${{ secrets.GITLAB_EE_LICENSE }} run: | ./dev/run_gitlab_in_docker.sh py.test gitlabform/gitlabform/test/test_archive_project.py py.test gitlabform/gitlabform/test/test_branches.py py.test gitlabform/gitlabform/test/test_deploy_keys.py py.test gitlabform/gitlabform/test/test_files.py
Enable more tests in GHA
Enable more tests in GHA
YAML
mit
egnyte/gitlabform,egnyte/gitlabform
47aae91b4d4a6673fbb4fbc0a46ac13b26e9237e
.github/workflows/deployment.yml
.github/workflows/deployment.yml
name: Deployment on: push jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 14 - run: yarn install - run: yarn test publish-gh: needs: test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 14 - run: yarn install - run: yarn build - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public
name: Deployment on: push jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 14 - run: yarn install - run: yarn test publish-gh: needs: test runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 14 - run: yarn install - run: yarn build - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./build
Deploy via Github Actions (try 5)
Deploy via Github Actions (try 5)
YAML
mit
enbock/Time-Tracker,enbock/Time-Tracker,enbock/Time-Tracker,enbock/Time-Tracker
9af17d0273ff2d169ddf426a41755e5e473c7354
playbooks/roles/aws_digitalmarketplace_api/tasks/main.yml
playbooks/roles/aws_digitalmarketplace_api/tasks/main.yml
--- - name: Digital Marketplace API Elastic Beanstalk app ({{state}}) cloudformation: stack_name: "digitalmarketplace-api-{{ environment_name }}" state: "{{ state }}" region: "{{ aws_region }}" disable_rollback: false template: ../cloudformation_templates/aws_digitalmarketplace_api_app.json template_parameters: ApplicationName: "digitalmarketplace-api" register: digitalmarketplace_api_app_stack when: skip_base is not defined tags: - digitalmarketplace-api - base - name: Digital Marketplace API Elastic Beanstalk env ({{state}}) cloudformation: stack_name: "digitalmarketplace-api-{{ name_suffix }}" state: "{{ state }}" region: "{{ aws_region }}" disable_rollback: false template: ../cloudformation_templates/aws_digitalmarketplace_api_env.json template_parameters: ApplicationName: "digitalmarketplace-api" EnvironmentName: "dmapi-{{ name_suffix_short }}" DBName: "digitalmarketplace_{{ name_suffix | replace('-', '_') }}" DBUser: "digitalmarketplace" DBPassword: "{{ dmapi_db_password }}" DBInstanceType: "{{ dmapi_db_instance_type }}" DBAllocatedStorage: "{{ dmapi_db_allocated_storage }}" register: digitalmarketplace_api_env_stack tags: - digitalmarketplace-api
--- - name: Digital Marketplace API Elastic Beanstalk app ({{state}}) cloudformation: stack_name: "digitalmarketplace-api-{{ environment_name }}" state: "{{ state }}" region: "{{ aws_region }}" disable_rollback: false template: ../cloudformation_templates/aws_digitalmarketplace_api_app.json template_parameters: ApplicationName: "digitalmarketplace-api" register: digitalmarketplace_api_app_stack tags: - digitalmarketplace-api - base - name: Digital Marketplace API Elastic Beanstalk env ({{state}}) cloudformation: stack_name: "digitalmarketplace-api-{{ name_suffix }}" state: "{{ state }}" region: "{{ aws_region }}" disable_rollback: false template: ../cloudformation_templates/aws_digitalmarketplace_api_env.json template_parameters: ApplicationName: "digitalmarketplace-api" EnvironmentName: "dmapi-{{ name_suffix_short }}" DBName: "digitalmarketplace_{{ name_suffix | replace('-', '_') }}" DBUser: "digitalmarketplace" DBPassword: "{{ dmapi_db_password }}" DBInstanceType: "{{ dmapi_db_instance_type }}" DBAllocatedStorage: "{{ dmapi_db_allocated_storage }}" register: digitalmarketplace_api_env_stack tags: - digitalmarketplace-api
Remove skip_base condition in favour of 'base' tag
Remove skip_base condition in favour of 'base' tag
YAML
mit
alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws,alphagov/digitalmarketplace-aws
acbd41d0c02c77935c1b1bbeb2e9d10be4c0ffa1
concourse/pipeline-master.yaml
concourse/pipeline-master.yaml
version: 2.1 resource_types: # Set status of build in github for master - name: github-status type: docker-image source: repository: dpb587/github-status-resource tag: master resources: - name: code type: git source: uri: https://github.com/phpdocker-io/kong-certbot-agent.git branch: master - name: master-status type: github-status source: repository: phpdocker-io/kong-certbot-agent branch: master access_token: {{github-access-token}} jobs: - name: analyze-master public: true plan: - get: code trigger: true - put: notify-master-being-built resource: master-status params: { state: "pending", commit: "code" } - task: run tests file: code/concourse/task-run-tests.yaml on_failure: put: master-status params: { state: "failure", commit: "code" } - put: notify-build-success resource: master-status params: { state: "success", commit: "code" } - task: code coverage reports params: CODECOV_TOKEN: {{codecov-token}} file: code/concourse/task-codecov.yaml
version: 2.1 resource_types: # Set status of build in github for master - name: github-status type: docker-image source: repository: dpb587/github-status-resource tag: master resources: - name: code type: git source: uri: https://github.com/phpdocker-io/kong-certbot-agent.git branch: master - name: master-status type: github-status source: repository: phpdocker-io/kong-certbot-agent branch: master access_token: {{github-access-token}} # Docker hub - name: container-registry type: docker-image source: email: {{docker-hub-email}} username: {{docker-hub-user}} password: {{docker-hub-password}} repository: phpdockerio/kong-certbot-agent jobs: - name: analyze-master public: true plan: - get: code trigger: true - put: notify-master-being-built resource: master-status params: { state: "pending", commit: "code" } - task: run tests file: code/concourse/task-run-tests.yaml on_failure: put: master-status params: { state: "failure", commit: "code" } - put: notify-build-success resource: master-status params: { state: "success", commit: "code" } - put: container-registry params: build: code tag_as_latest: true additional_tags: code/release - task: code coverage reports params: CODECOV_TOKEN: {{codecov-token}} file: code/concourse/task-codecov.yaml
Add in versioned docker builds
Add in versioned docker builds
YAML
mit
luispabon/kong-certbot-agent,luispabon/kong-certbot-agent
067be978e30516e5f3eba171af9a32209c58065f
config/application.example.yml
config/application.example.yml
development: # required. default should be fine if your postgresql server is running locally. DATABASE_URL: postgres://localhost # required for login to work. register an application @ twitch.tv/settings/connections. TWITCH_CLIENT_ID: TWITCH_CLIENT_SECRET: test: # required to be able to run tests DATABASE_URL: postgres://localhost # you don't need to fill out anything past here unless you're deploying this somewhere production: DATABASE_URL: TWITCH_CLIENT_ID: TWITCH_CLIENT_SECRET: NEW_RELIC_LICENSE_KEY: ROLLBAR_ACCESS_TOKEN: # used for signing cookies. generate a secure one with `rake secret` splitsio_secret_key_base:
development: # required. default should be fine if your postgresql server is running locally. DATABASE_URL: postgres://localhost # required for login to work. register an application @ twitch.tv/settings/connections. # when registering, use a redirect uri of http://localhost:3000/auth/twitch/callback TWITCH_CLIENT_ID: TWITCH_CLIENT_SECRET: test: # required to be able to run tests DATABASE_URL: postgres://localhost # you don't need to fill out anything past here unless you're deploying this somewhere production: DATABASE_URL: TWITCH_CLIENT_ID: TWITCH_CLIENT_SECRET: NEW_RELIC_LICENSE_KEY: ROLLBAR_ACCESS_TOKEN: # used for signing cookies. generate a secure one with `rake secret` splitsio_secret_key_base:
Add a note about Twitch redirect URI to yml config
Add a note about Twitch redirect URI to yml config
YAML
agpl-3.0
BatedUrGonnaDie/splits-io,glacials/splits-io,glacials/splits-io,glacials/splits-io,BatedUrGonnaDie/splits-io,BatedUrGonnaDie/splits-io,BatedUrGonnaDie/splits-io,glacials/splits-io
b53fffe25287e9135494ae8247ef5a096b5622fc
tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.CMS.CmsAddress.dcm.yml
tests/Doctrine/Tests/ORM/Mapping/yaml/Doctrine.Tests.Models.CMS.CmsAddress.dcm.yml
Doctrine\Tests\Models\CMS\CmsAddress: type: entity table: cms_address entityListeners: CmsAddressListener: namedNativeQueries: find-all: resultSetMapping: mapping-find-all query: SELECT id, country, city FROM cms_addresses find-by-id: name: find-by-id resultClass: CmsAddress query: SELECT * FROM cms_addresses WHERE id = ? count: name: count resultSetMapping: mapping-count query: SELECT COUNT(*) AS count FROM cms_addresses sqlResultSetMappings: mapping-find-all: entityResult: address: entityClass: CmsAddress fieldResult: 0: name: id column: id 1: name: city column: city 2: name: country column: country mapping-without-fields: name: mapping-without-fields entityResult: address: entityClass: CmsAddress mapping-count: name: mapping-count columnResult: count: name: count id: id: type: integer generator: strategy: AUTO fields: country: type: string length: 50 city: type: string length: 50 zip: type: string length: 50 oneToOne: user: targetEntity: CmsUser inversedBy: address joinColumn: referencedColumnName: id
Doctrine\Tests\Models\CMS\CmsAddress: type: entity table: cms_address entityListeners: CmsAddressListener: ~ namedNativeQueries: find-all: resultSetMapping: mapping-find-all query: SELECT id, country, city FROM cms_addresses find-by-id: name: find-by-id resultClass: CmsAddress query: SELECT * FROM cms_addresses WHERE id = ? count: name: count resultSetMapping: mapping-count query: SELECT COUNT(*) AS count FROM cms_addresses sqlResultSetMappings: mapping-find-all: entityResult: address: entityClass: CmsAddress fieldResult: 0: name: id column: id 1: name: city column: city 2: name: country column: country mapping-without-fields: name: mapping-without-fields entityResult: address: entityClass: CmsAddress mapping-count: name: mapping-count columnResult: count: name: count id: id: type: integer generator: strategy: AUTO fields: country: type: string length: 50 city: type: string length: 50 zip: type: string length: 50 oneToOne: user: targetEntity: CmsUser inversedBy: address joinColumn: referencedColumnName: id
Fix YAML EntityListener definition in tests
Fix YAML EntityListener definition in tests
YAML
mit
fprochazka/doctrine2,Tobion/doctrine2,nicolas-grekas/doctrine2,javiereguiluz/doctrine2,PatidarWeb/doctrine2,zeroedin-bill/doctrine2,steevanb/doctrine2-fix-persistent-collection-clear,deeky666/doctrine2,1ed/doctrine2,rezonant/doctrine2,cyberid41/doctrine2,PatidarWeb/doctrine2,ehimen/doctrine2,Ocramius/doctrine2,issei-m/doctrine2,javiereguiluz/doctrine2,tomaszmadeyski/doctrine2,1ed/doctrine2,gnat42/doctrine2,phansys/doctrine2,mihai-stancu/doctrine2,giosh94mhz/doctrine2,Luwdo/doctrine2,PowerKiKi/doctrine2,emiel-silverstreet/doctrine2,AdactiveSAS/doctrine2,c960657/doctrine2,Tobion/doctrine2,guiwoda/doctrine2,BlueM/doctrine2,mikeSimonson/doctrine2,hellomedia/doctrine2,DataSyntax/doctrine2,nicoschoenmaker/doctrine2,bookbottles/doctrine2,levelfivehub/doctrine2,rezonant/doctrine2,emiel-silverstreet/doctrine2,vershnik/doctrine2,renan/doctrine2,localheinz/doctrine2,jaimz22/doctrine2,dag-io/doctrine2,Sitetheory/doctrine2,zeroedin-bill/doctrine2,easybiblabs/doctrine2,qu1m/doctrine2,TomasVotruba/doctrine2,DataSyntax/doctrine2,PatidarWeb/doctrine2,nicolas-grekas/doctrine2,SocialbitGmbH/doctrine2,brenodouglas/doctrine2,bocharsky-bw/doctrine2,Metabor/doctrine2,BenMorel/doctrine2,Majkl578/doctrine2,brabeji/doctrine2,DethCount/doctrine2,hellomedia/doctrine2,mente/doctrine2,ehimen/doctrine2,tiger-seo/doctrine2,janlanger/doctrine2,DethCount/doctrine2,doctrine/doctrine2,fabiocarneiro/doctrine2,giosh94mhz/doctrine2,brabeji/doctrine2,bigfoot90/doctrine2,gnat42/doctrine2,cybermo/doc-tr-ine,damour/doctrine2,acrobat/doctrine2,Metabor/doctrine2,bigfoot90/doctrine2,holtkamp/doctrine2,bookbottles/doctrine2,TomasVotruba/doctrine2,beanworks/doctrine2,jaimz22/doctrine2,Tony133/doctrine2,brenodouglas/doctrine2,sergeyz/doctrine2,satomif/doctrine2,gencer/doctrine2,mihai-stancu/doctrine2,phansys/doctrine2,Metabor/doctrine2,mikeSimonson/doctrine2,BenMorel/doctrine2,tPl0ch/doctrine2,nayluge/doctrine2,Luwdo/doctrine2,DHager/doctrine2,dave1010/doctrine2,holtkamp/doctrine2,Majkl578/doctrine2,janlanger/doctrine2,xhuberty/doctrine2,stof/doctrine2,nayluge/doctrine2,yurybykov/doctrine2,hallabro/doctrine2,aivus/doctrine2,AdactiveSAS/doctrine2,shieldo/doctrine2,Tony133/doctrine2,SocialbitGmbH/doctrine2,tiger-seo/doctrine2,nicovogelaar/doctrine2,phansys/doctrine2,xhuberty/doctrine2,stof/doctrine2,c960657/doctrine2,hallabro/doctrine2,z38/doctrine2,guiwoda/doctrine2,gencer/doctrine2,deeky666/doctrine2,dave1010/doctrine2,easybiblabs/doctrine2,sustmi/doctrine2,dave1010/doctrine2,bocharsky-bw/doctrine2,Amrit01/doctrine2,kinncj/doctrine2,Amrit01/doctrine2,Ocramius/doctrine2,mente/doctrine2,nicovogelaar/doctrine2,satomif/doctrine2,meeuw/doctrine2,lcobucci/doctrine2,verschoof/doctrine2,PowerKiKi/doctrine2,lcobucci/doctrine2,shieldo/doctrine2,verschoof/doctrine2,Hikariii/doctrine2,deviantintegral/doctrine2,peterkokot/doctrine2,javiereguiluz/doctrine2,qu1m/doctrine2,deguif/doctrine2,cyberid41/doctrine2,tomaszmadeyski/doctrine2,sergeyz/doctrine2,vershnik/doctrine2,damour/doctrine2,peterkokot/doctrine2,steevanb/doctrine2-fix-persistent-collection-clear,yurybykov/doctrine2,kinncj/doctrine2,aivus/doctrine2,sustmi/doctrine2,acrobat/doctrine2,fprochazka/doctrine2,DHager/doctrine2,doctrine/doctrine2,z38/doctrine2,Sitetheory/doctrine2,deviantintegral/doctrine2,levelfivehub/doctrine2,issei-m/doctrine2,renan/doctrine2,cybermo/doc-tr-ine,fabiocarneiro/doctrine2,beanworks/doctrine2,nicoschoenmaker/doctrine2,deguif/doctrine2,BlueM/doctrine2,meeuw/doctrine2,dag-io/doctrine2,localheinz/doctrine2,Ocramius/doctrine2,peterkokot/doctrine2,Hikariii/doctrine2,tPl0ch/doctrine2
e1a2bb3cad89b31abde441dad645526e5bbe7882
catalog/Security/rails_authentication.yml
catalog/Security/rails_authentication.yml
name: Web Authentication description: Handle the authentication of users in web applications written in frameworks like Rails projects: - adauth - authlogic - authorizme - clearance - current_user - cz_auth - devise - devise_oauth2_providable - doorkeeper - envylabs/BlueLightSpecial - letmein - monban - omniauth - rack-cas - rodauth - rpx_now - sorcery - switch_user - technoweenie/restful-authentication - userbin
name: Web Authentication description: Handle the authentication of users in web applications written in frameworks like Rails projects: - adauth - authlogic - authorizme - clearance - current_user - cz_auth - devise - devise_oauth2_providable - doorkeeper - envylabs/BlueLightSpecial - letmein - monban - omniauth - rack-cas - rodauth - rpx_now - sorcery - switch_user - technoweenie/restful-authentication - userbin - webauthn
Add webauthn to Web Authentication category
Add webauthn to Web Authentication category
YAML
mit
rubytoolbox/catalog
e0a020bfc968ab34766262a89e6a7adf905d2a1c
meta/main.yml
meta/main.yml
--- galaxy_info: author: Michael Scherer description: Simple ansible role to manage httpd, used by others modules company: Red Hat license: MIT # Use 2.0 due to the tor package requirements min_ansible_version: 2.0 # Only tested with EL 7 and EL 6. No reason anything do # not work anywhere else, just no time to test. # I would welcome patches platforms: - name: EL versions: - 6 - 7 categories: - system dependencies: - role: tor when: "use_hidden_service == True" # List your role dependencies here, one per line. Only # dependencies available via galaxy should be listed here. # Be sure to remove the '[]' above if you add dependencies # to this list.
--- galaxy_info: author: Michael Scherer description: Simple ansible role to manage httpd, used by others modules company: Red Hat license: MIT # Use 2.0 due to the tor package requirements min_ansible_version: 2.0 # Only tested with EL 7 and EL 6. No reason anything do # not work anywhere else, just no time to test. # I would welcome patches platforms: - name: EL versions: - 6 - 7 categories: - system dependencies: - role: tor when: use_hidden_service
Clean the conditional used for enabling hidden services
Clean the conditional used for enabling hidden services
YAML
mit
OSAS/ansible-role-httpd
0a5cf113d52510457947da5a100dfab21e0fe474
pubspec.yaml
pubspec.yaml
name: scheduled_test version: 0.9.0 author: "Dart Team <misc@dartlang.org>" homepage: http://www.dartlang.org description: > A package for writing readable tests of asynchronous behavior. This package works by building up a queue of asynchronous tasks called a "schedule", then executing those tasks in order. This allows the tests to read like synchronous, linear code, despite executing asynchronously. dependencies: http: ">=0.9.0 <0.10.0" path: ">=0.9.0 <0.10.0" stack_trace: ">=0.9.0 <0.10.0" unittest: ">=0.9.0 <0.10.0" environment: sdk: ">=0.8.10+6 <2.0.0"
name: scheduled_test version: 0.9.1 author: "Dart Team <misc@dartlang.org>" homepage: http://www.dartlang.org description: > A package for writing readable tests of asynchronous behavior. This package works by building up a queue of asynchronous tasks called a "schedule", then executing those tasks in order. This allows the tests to read like synchronous, linear code, despite executing asynchronously. dependencies: http: ">=0.9.0 <0.10.0" path: ">=0.9.0 <0.10.0" stack_trace: ">=0.9.1 <0.10.0" unittest: ">=0.9.0 <0.10.0" environment: sdk: ">=0.8.10+6 <2.0.0"
Increment package versions for stack trace changes.
Increment package versions for stack trace changes. R=rnystrom@google.com BUG= Review URL: https://codereview.chromium.org//110613003 git-svn-id: b90127a0f73590c96be848d3e4cb640efa9a7657@30997 260f80e4-7a28-3924-810f-c04153c831b5
YAML
bsd-3-clause
dart-archive/scheduled_test,dart-lang/scheduled_test
fe48803c746545a4f73f731b7facb38e1e063fa2
data/templates/ive/config.yml
data/templates/ive/config.yml
name: Jony Ive Redesigns Things default: - link: https://www.apple.com/pr/bios/jonathan-ive.html aliases: - jony - best-thing-ever
name: Jony Ive Redesigns Things default: - We Think - You'll Love It link: https://www.apple.com/pr/bios/jonathan-ive.html aliases: - jony - best-thing-ever
Add default text for Jony Ive
Add default text for Jony Ive
YAML
mit
joshfriend/memegen,joshfriend/memegen,DanLindeman/memegen,joshfriend/memegen,DanLindeman/memegen,joshfriend/memegen,DanLindeman/memegen,DanLindeman/memegen
6ce8bd69efae1433100268f90d9e038477051b35
qa/rolling-upgrade/src/test/resources/rest-api-spec/test/mixed_cluster/20_security.yml
qa/rolling-upgrade/src/test/resources/rest-api-spec/test/mixed_cluster/20_security.yml
--- "Verify user and role in mixed cluster": - do: headers: Authorization: "Basic bmF0aXZlX3VzZXI6Y2hhbmdlbWU=" cluster.health: wait_for_status: yellow wait_for_nodes: 2 timeout: 25s - match: { timed_out: false } - do: xpack.security.get_user: username: "native_user" - match: { native_user.username: "native_user" } - match: { native_user.roles.0: "native_role" } - do: xpack.security.get_role: name: "native_role" - match: { native_role.cluster.0: "all" } - match: { native_role.indices.0.names.0: "test_index" } - match: { native_role.indices.0.privileges.0: "all" } - do: xpack.security.clear_cached_roles: name: "native_role" - do: xpack.security.clear_cached_realms: realms: "_all" --- "verify users for default password migration in mixed cluster": - do: xpack.security.get_user: username: "kibana,logstash_system" - match: { kibana.enabled: false } - match: { logstash_system.enabled: true }
--- "Verify user and role in mixed cluster": - do: headers: Authorization: "Basic bmF0aXZlX3VzZXI6Y2hhbmdlbWU=" cluster.health: wait_for_status: yellow wait_for_nodes: 2 timeout: 25s - match: { timed_out: false } - do: xpack.security.get_user: username: "native_user" - match: { native_user.username: "native_user" } - match: { native_user.roles.0: "native_role" } - do: xpack.security.get_role: name: "native_role" - match: { native_role.cluster.0: "all" } - match: { native_role.indices.0.names.0: "test_index" } - match: { native_role.indices.0.privileges.0: "all" } - do: xpack.security.clear_cached_roles: name: "native_role" - do: xpack.security.clear_cached_realms: realms: "_all" --- "verify users for default password migration in mixed cluster": - skip: version: "5.0.0 - " reason: https://github.com/elastic/x-pack-elasticsearch/issues/1516 - do: xpack.security.get_user: username: "kibana,logstash_system" - match: { kibana.enabled: false } - match: { logstash_system.enabled: true }
Mark default password migration test as skipped
Mark default password migration test as skipped This test fails reliably, so this commit marks the test as awaits fix. Original commit: elastic/x-pack-elasticsearch@8eb8b732ba82c94a442ce543977fb6c87a4ceb5d
YAML
apache-2.0
gingerwizard/elasticsearch,strapdata/elassandra,nknize/elasticsearch,uschindler/elasticsearch,GlenRSmith/elasticsearch,vroyer/elassandra,nknize/elasticsearch,scorpionvicky/elasticsearch,strapdata/elassandra,HonzaKral/elasticsearch,gfyoung/elasticsearch,coding0011/elasticsearch,uschindler/elasticsearch,coding0011/elasticsearch,uschindler/elasticsearch,gfyoung/elasticsearch,scorpionvicky/elasticsearch,gfyoung/elasticsearch,robin13/elasticsearch,GlenRSmith/elasticsearch,gingerwizard/elasticsearch,GlenRSmith/elasticsearch,uschindler/elasticsearch,HonzaKral/elasticsearch,gingerwizard/elasticsearch,gingerwizard/elasticsearch,GlenRSmith/elasticsearch,robin13/elasticsearch,scorpionvicky/elasticsearch,strapdata/elassandra,gfyoung/elasticsearch,HonzaKral/elasticsearch,gingerwizard/elasticsearch,scorpionvicky/elasticsearch,scorpionvicky/elasticsearch,strapdata/elassandra,HonzaKral/elasticsearch,gingerwizard/elasticsearch,strapdata/elassandra,gfyoung/elasticsearch,vroyer/elassandra,nknize/elasticsearch,coding0011/elasticsearch,robin13/elasticsearch,vroyer/elassandra,uschindler/elasticsearch,coding0011/elasticsearch,robin13/elasticsearch,GlenRSmith/elasticsearch,coding0011/elasticsearch,nknize/elasticsearch,nknize/elasticsearch,robin13/elasticsearch,gingerwizard/elasticsearch
1a4488c84156a84cbd27910c7102b5333e686f7f
.travis.yml
.travis.yml
language: ruby gemfile: - Gemfile rvm: - "1.9.3" - "2.0.0" before_install: - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" - "export DISPLAY=:99.0" - "export JASMINE_BROWSER=firefox" before_script: - mv .env.travis .env - cp config/database.yml.sample config/database.yml - rm db/seeds.rb - mv db/seeds.travis.rb db/seeds.rb script: - bundle exec rake db:migrate - bundle exec rake db:load_test_data - bundle exec rake travis:specs - bundle exec rake jasmine:ci
language: ruby gemfile: - Gemfile rvm: - "1.9.3" - "2.0.0" before_install: - "/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -ac -screen 0 1280x1024x16" - "export DISPLAY=:99.0" - "export JASMINE_BROWSER=firefox" before_script: - mv .env.travis .env - cp config/database.yml.sample config/database.yml - rm db/seeds.rb - mv db/seeds.travis.rb db/seeds.rb script: - bundle exec rake db:migrate - bundle exec rake travis:specs - bundle exec rake jasmine:ci
Remove loading test data from Travis.
Remove loading test data from Travis. + Originally added here: 4f0a24d1a9273be00e9d9e1adbd210aa80fa49cd
YAML
agpl-3.0
teikei/teikei,teikei/teikei,sjockers/teikei,sjockers/teikei,sjockers/teikei,teikei/teikei
791c3625dc86ea90b038e41faae27c8f432f1f4f
docker-compose.yml
docker-compose.yml
web: build: . command: run --debug --db-migrate --db-timeout 10 --bind 0.0.0.0:5000 ports: - "5001:5000" links: - postgres volumes: - /var/run/docker.sock:/var/run/docker.sock - ./dockci:/code/dockci postgres: image: postgres environment: POSTGRES_USER: dockci POSTGRES_PASSWORD: letmein registry: image: registry:2 ports: - "5000:5000"
web: build: . command: run --debug --db-migrate --db-timeout 10 --bind 0.0.0.0:5000 ports: - "5001:5000" links: - postgres volumes: - /var/run/docker.sock:/var/run/docker.sock - ./dockci:/code/dockci - ./alembic:/code/alembic postgres: image: postgres environment: POSTGRES_USER: dockci POSTGRES_PASSWORD: letmein registry: image: registry:2 ports: - "5000:5000"
Add alembic local volume to compose
Add alembic local volume to compose
YAML
isc
RickyCook/DockCI,sprucedev/DockCI,sprucedev/DockCI-Agent,sprucedev/DockCI,RickyCook/DockCI,sprucedev/DockCI-Agent,sprucedev/DockCI,RickyCook/DockCI,sprucedev/DockCI,RickyCook/DockCI
212b9005e99556ea8fd46e8b2660c16eb2cafd43
docker-compose.yml
docker-compose.yml
version: "3.8" services: jekyll-build: command: jekyll serve --incremental --future --unpublished --watch --livereload environment: TZ: Asia/Tokyo image: jekyll/minimal ports: - 4100:4000 - 35729:35729 volumes: - $PWD:/srv/jekyll
version: "3.8" services: jekyll-build: command: jekyll serve --incremental --future --unpublished --watch --force_polling --livereload environment: TZ: Asia/Tokyo image: jekyll/minimal ports: - 4100:4000 - 35729:35729 volumes: - $PWD:/srv/jekyll
Add force option to make regeneration work
Add force option to make regeneration work
YAML
mit
horimislime/horimisli.me,horimislime/horimisli.me,horimislime/horimisli.me
a73254afd186609d890a3868541c7f207a364f1c
docker-compose.yml
docker-compose.yml
wordpress: build: docker/wordpress links: - db:db volumes: - ./wordpress:/var/www/html - ./plugin:/data ports: - 81:80 db: image: mysql:5.5 environment: MYSQL_ROOT_PASSWORD: example MYSQL_DATABASE: wordpress
wordpress: build: docker/wordpress links: - db:db volumes: - ./wordpress:/var/www/html - ./plugin:/data db: image: mysql:5.5 environment: MYSQL_ROOT_PASSWORD: example MYSQL_DATABASE: wordpress
Remove ports from WordPress container
Remove ports from WordPress container It doesn't work well to expose the port if the uri inside does not match outside
YAML
mit
hirowatari/Docker-for-Wordpress-Plugin-Testing,hirowatari/Docker-for-Wordpress-Plugin-Testing
1afcb69687f54ed112a9086665ce0cd82e9685c0
docker-compose.yml
docker-compose.yml
version: "3.7" services: redcoat: image: redcoat:latest container_name: redcoat_app ports: - "3000:3000" expose: - 3000 networks: - redcoat depends_on: - redcoat_db redcoat_db: image: mongo container_name: redcoat_db volumes: - ./mongodb/data:/data/db ports: - "27017:27017" networks: - redcoat networks: redcoat:
version: "3.7" services: redcoat: image: redcoat:latest container_name: redcoat_app ports: - "3000:3000" expose: - 3000 networks: - redcoat depends_on: - redcoat_db redcoat_db: image: mongo container_name: redcoat_db volumes: - nlpdata:/data/db ports: - "27017:27017" networks: - redcoat networks: redcoat: volumes: nlpdata:
Edit volumes to work on Windows and UNIX machines.
Edit volumes to work on Windows and UNIX machines.
YAML
apache-2.0
Michael-Stewart-Webdev/annotation-tool,Michael-Stewart-Webdev/annotation-tool
b321f4b3c4ad771409784ca3facf767d5e3a9f15
docker-compose.yml
docker-compose.yml
version: "3.1" secrets: aws_access_key: external: true aws_secret_access_key: external: true services: web: image: ezmiller/datemo-nginx-proxy:latest ports: - "80:80" datemo: image: ezmiller/datemo:latest environment: - DATOMIC_CLOUD_STACK_NAME=datemo depends_on: - web - datomic-socks-proxy ports: - "8080:8080" secrets: - aws_access_key - aws_secret_access_key
version: "3.2" secrets: aws_access_key: external: true aws_secret_access_key: external: true services: web: image: ezmiller/datemo-nginx-proxy:latest ports: - mode: host target: 80 published: 80 datemo: image: ezmiller/datemo:latest environment: - DATOMIC_CLOUD_STACK_NAME=datemo depends_on: - web - datomic-socks-proxy ports: - "8080:8080" secrets: - aws_access_key - aws_secret_access_key
Fix web port not open on swarm
Fix web port not open on swarm Need to specify mode = host. New docker-compose 3.2 syntax for doing this.
YAML
epl-1.0
ezmiller/datemo
c0d95dc1e82267cbb4d50c9c0f4a23a0c207a0eb
Resources/config/services.yml
Resources/config/services.yml
parameters: gluggi.routing.requirements.key: '[a-z0-9-_]+' services: gluggi.assets: class: Becklyn\GluggiBundle\Assets\LayoutAssets arguments: - '@gluggi.config' - '@assets.packages' gluggi.finder: class: Becklyn\GluggiBundle\Component\GluggiFinder arguments: - '@gluggi.component_type_registry' gluggi.layout.bundle_paths: class: Becklyn\GluggiBundle\LayoutBundleIntegration\BundlePaths arguments: - '@kernel' public: false gluggi.component_type_registry: class: Becklyn\GluggiBundle\ComponentType\ComponentTypeRegistry arguments: - '@gluggi.layout.bundle_paths' public: false gluggi.component.configuration: class: Becklyn\GluggiBundle\Component\ComponentConfiguration arguments: - '@twig' gluggi.twig.extension: class: Becklyn\GluggiBundle\Twig\GluggiTwigExtension arguments: - '@gluggi.finder' - '@gluggi.config' - '@service_container' tags: - { name: twig.extension } public: false gluggi.config: class: Becklyn\GluggiBundle\Configuration\GluggiConfig arguments: - ~ # all parameters set via the extension - ~ - [] - [] - []
parameters: gluggi.routing.requirements.key: '[a-z0-9-_]+' services: gluggi.assets: class: Becklyn\GluggiBundle\Assets\LayoutAssets arguments: - '@gluggi.config' - '@assets.packages' gluggi.finder: class: Becklyn\GluggiBundle\Component\GluggiFinder arguments: - '@gluggi.component_type_registry' gluggi.layout.bundle_paths: class: Becklyn\GluggiBundle\LayoutBundleIntegration\BundlePaths arguments: - '@kernel' public: false gluggi.component_type_registry: class: Becklyn\GluggiBundle\ComponentType\ComponentTypeRegistry arguments: - '@gluggi.layout.bundle_paths' public: false gluggi.component.configuration: class: Becklyn\GluggiBundle\Component\ComponentConfiguration arguments: - '@twig' gluggi.twig.extension: class: Becklyn\GluggiBundle\Twig\GluggiTwigExtension arguments: - '@gluggi.finder' - '@gluggi.config' - '@service_container' tags: - { name: twig.extension } public: false gluggi.config: class: Becklyn\GluggiBundle\Configuration\GluggiConfig arguments: - ~ # all parameters set via the extension - ~ - [] - [] - [] - []
Add missing definition for the last argument
Add missing definition for the last argument
YAML
bsd-3-clause
Becklyn/GluggiBundle,Becklyn/GluggiBundle,Becklyn/GluggiBundle
ed3620918758782696d8e61252d8830304ea0deb
metadata/se.lublin.mumla.yml
metadata/se.lublin.mumla.yml
Categories: - Internet License: GPL-3.0-only AuthorName: Daniel Lublin and contributors AuthorEmail: mumla@lublin.se WebSite: https://mumla-app.gitlab.io SourceCode: https://gitlab.com/quite/mumla IssueTracker: https://gitlab.com/quite/mumla/issues AutoName: Mumla RepoType: git Repo: https://gitlab.com/quite/mumla.git Builds: - versionName: 3.4.2 versionCode: 76 commit: 3.4.2 subdir: app submodules: true gradle: - official rm: - libraries/humla/tools - libraries/humla/libs/humla-spongycastle/core/src/test/data build: - cd ../libraries/humla/libs/humla-spongycastle - gradle jar buildjni: - ../libraries/humla/src/main/jni ndk: r21 AutoUpdateMode: Version %v UpdateCheckMode: Tags ^[^-]*$ CurrentVersion: 3.4.2 CurrentVersionCode: 76
Categories: - Internet License: GPL-3.0-only AuthorName: Daniel Lublin and contributors AuthorEmail: mumla@lublin.se WebSite: https://mumla-app.gitlab.io SourceCode: https://gitlab.com/quite/mumla IssueTracker: https://gitlab.com/quite/mumla/issues AutoName: Mumla RepoType: git Repo: https://gitlab.com/quite/mumla.git Builds: - versionName: 3.4.2 versionCode: 76 commit: 3.4.2 subdir: app submodules: true gradle: - official rm: - libraries/humla/tools - libraries/humla/libs/humla-spongycastle/core/src/test/data build: - cd ../libraries/humla/libs/humla-spongycastle - gradle jar buildjni: - ../libraries/humla/src/main/jni ndk: r21 - versionName: 3.4.3 versionCode: 77 commit: 3.4.3 subdir: app submodules: true gradle: - official rm: - libraries/humla/tools - libraries/humla/libs/humla-spongycastle/core/src/test/data build: - cd ../libraries/humla/libs/humla-spongycastle - gradle jar buildjni: - ../libraries/humla/src/main/jni ndk: r21 AutoUpdateMode: Version %v UpdateCheckMode: Tags ^[^-]*$ CurrentVersion: 3.4.3 CurrentVersionCode: 77
Update Mumla to 3.4.3 (77)
Update Mumla to 3.4.3 (77)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
b950c8778993a356017e67925589caaa8eb67e5c
docs/_project.yaml
docs/_project.yaml
name: TFX breadcrumb_name: For Production home_url: /tfx/ parent_project_metadata_path: /_project.yaml description: > TFX is an end-to-end platform, spanning from data ingestion, training, to production-grade serving. use_site_branding: true #color: orange hide_from_products_list: true content_license: cc3-apache2 buganizer_id: 174941
name: TFX breadcrumb_name: For Production home_url: /tfx/ parent_project_metadata_path: /_project.yaml description: > TFX is an end-to-end platform, spanning from data ingestion, training, to production-grade serving. use_site_branding: true #color: orange hide_from_products_list: true content_license: cc3-apache2 buganizer_id: 174941 include: /_project_included.yaml
Add dev summit announcement banner to all projects.
Add dev summit announcement banner to all projects. PiperOrigin-RevId: 236066165
YAML
apache-2.0
tensorflow/tfx,tensorflow/tfx
8fbc1cfe8fda144f4d6c927ce05bfbc925ed21e1
pubspec.yaml
pubspec.yaml
name: analyzer_cli version: 1.1.1 author: Dart Team <misc@dartlang.org> description: Command line interface for the Dart Analyzer. homepage: https://github.com/dart-lang/analyzer_cli environment: sdk: '>=1.12.0 <2.0.0' dependencies: analyzer: ^0.26.0+6 args: ^0.13.0 cli_util: ^0.0.1 dev_compiler: ^0.1.1 linter: ^0.1.3 package_config: ^0.1.1 plugin: ^0.1.0 yaml: ^2.1.2 dev_dependencies: mockito: ^0.8.2 test: ^0.12.0
name: analyzer_cli version: 1.1.1 author: Dart Team <misc@dartlang.org> description: Command line interface for the Dart Analyzer. homepage: https://github.com/dart-lang/analyzer_cli environment: sdk: '>=1.12.0 <2.0.0' dependencies: analyzer: ^0.26.1+8 args: ^0.13.0 cli_util: ^0.0.1 dev_compiler: ^0.1.1 linter: ^0.1.3 package_config: ^0.1.1 plugin: ^0.1.0 yaml: ^2.1.2 dev_dependencies: mockito: ^0.8.2 test: ^0.12.0
Change analyzer dependency to 0.28.1+8.
Change analyzer dependency to 0.28.1+8. This brings in fixes which are required to support lints with the new task model.
YAML
bsd-3-clause
googlearchive/analyzer_cli,googlearchive/analyzer_cli,dart-lang/analyzer_cli,dart-lang/analyzer_cli
468354d562944ca8552782b2eb33602509c38bc9
config/sphinx.yml
config/sphinx.yml
development: enable_star: true min_prefix_len: 3 max_matches: 100000 port: 9312 test: enable_star: true min_prefix_len: 3 max_matches: 100000 port: 9313 production: enable_star: true min_prefix_len: 3 max_matches: 100000
development: enable_star: true min_prefix_len: 3 max_matches: 100000 port: 9312 test: enable_star: true min_prefix_len: 3 max_matches: 100000 port: 9313 cucumber: enable_star: true min_prefix_len: 3 max_matches: 100000 port: 9313 production: enable_star: true min_prefix_len: 3 max_matches: 100000
Add stuff for cucumber environment.
Add stuff for cucumber environment.
YAML
apache-2.0
lincompch/stizun,sabcio/stizun,lincompch/stizun,sabcio/stizun,lincompch/stizun,lincompch/stizun,sabcio/stizun,lincompch/stizun,sabcio/stizun
2cb0b1e56d3367f126ca03279480d369594f10b6
_data/authors.yml
_data/authors.yml
# Authors rachel_whitton: name: Rachel Whitton avatar: http://pantheon.io/sites/default/files/styles/540x540_top/public/RachelNew.jpg github: //github.com/rachelwhitton twitter: rachwhitton bio: "Technical Content Writer" jennifer_rondeau: name: Jennifer Rondeau avatar: http://docslikecode.com/images/jennifer_rondeau.png github: //github.com/bradamant3 twitter: bradamante bio: "Technical Writing Manager" leon_barnard: name: Leon Barnard avatar: https://pbs.twimg.com/profile_images/855131146195042304/isNkZpYS.jpg github: //github.com/balsamiqLeon twitter: leonbarnard bio: "Designer and Writer" adam_locke: name: Adam Locke avatar: http://docslikecode.com/images/adam_locke.jpg github: //github.com/lockewritesdocs twitter: iamlockeness bio: "API Writer" diana_lakatos: name: Diána Lakatos avatar: https://pronovix.com/sites/default/files/styles/526x526/public/diana_lakatos.png twitter: bio: "Senior Technical Writer"
# Authors rachel_whitton: name: Rachel Whitton avatar: http://pantheon.io/sites/default/files/styles/540x540_top/public/RachelNew.jpg github: //github.com/rachelwhitton twitter: rachwhitton bio: "Technical Content Writer" jennifer_rondeau: name: Jennifer Rondeau avatar: http://docslikecode.com/images/jennifer_rondeau.png github: //github.com/bradamant3 twitter: bradamante bio: "Technical Writing Manager" leon_barnard: name: Leon Barnard avatar: https://pbs.twimg.com/profile_images/855131146195042304/isNkZpYS.jpg github: //github.com/balsamiqLeon twitter: leonbarnard bio: "Designer and Writer" adam_locke: name: Adam Locke avatar: http://docslikecode.com/images/adam_locke.jpg github: //github.com/lockewritesdocs twitter: iamlockeness bio: "API Writer" diana_lakatos: name: Diána Lakatos avatar: https://pronovix.com/sites/default/files/styles/526x526/public/diana_lakatos.png github: //github.com/diana-lakatos twitter: bio: "Senior Technical Writer"
Add GitHub username for diana_lakatos entry
Add GitHub username for diana_lakatos entry
YAML
mit
justwriteclick/docslikecode,justwriteclick/docslikecode,justwriteclick/docslikecode
253210d9be23e2f926d8a11474e05b6b64dfff3b
.forestry/front_matter/templates/projet.yml
.forestry/front_matter/templates/projet.yml
--- label: Projet hide_body: false fields: - type: text name: title label: title - type: datetime name: date label: date - type: number name: weight label: weight - type: list name: alias label: alias - type: text name: redirect label: redirect - type: boolean name: published label: published - type: text name: typora-root-url label: typora-root-url
--- label: Projet hide_body: false fields: - type: text name: title label: Title config: required: true - type: datetime name: date label: Date config: date_format: YYYY-MM-DD required: true - type: number name: weight label: Weight config: required: true - type: text name: redirect label: Redirect config: required: true - type: boolean name: published label: Published - type: list name: alias label: Alias - type: text name: typora-root-url label: typora-root-url hidden: true
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
Narno/arnaudligny.fr,Narno/arnaudligny.fr,Narno/arnaudligny.fr
8ca1d05f3d0e392530446f41a70e6c6636b400ff
.github/workflows/check-clang-tidy-llpc.yml
.github/workflows/check-clang-tidy-llpc.yml
name: Code style check on: pull_request: jobs: clang-tidy: name: clang-tidy runs-on: "ubuntu-20.04" steps: - name: Checkout LLPC run: | git clone https://github.com/${GITHUB_REPOSITORY}.git . git fetch origin +${GITHUB_SHA}:${GITHUB_REF} --update-head-ok git checkout ${GITHUB_SHA} - name: Generate Docker base image tag string run: | echo "IMAGE_TAG=amdvlk_release_clang:nightly" \ | tee -a $GITHUB_ENV - name: Fetch the latest prebuilt AMDVLK run: docker pull "${{secrets.DOCKER_USR}}/$IMAGE_TAG" - name: Build and Test with Docker run: docker build . --file docker/llpc-clang-tidy.Dockerfile --build-arg AMDVLK_IMAGE="${{secrets.DOCKER_USR}}/$IMAGE_TAG" --build-arg LLPC_REPO_NAME="${GITHUB_REPOSITORY}" --build-arg LLPC_REPO_REF="${GITHUB_REF}" --build-arg LLPC_REPO_SHA="${GITHUB_SHA}" --build-arg LLPC_BASE_REF="${{ github.base_ref }}" --tag llpc/ci-shaderdb
name: Code style check on: pull_request: jobs: clang-tidy: name: clang-tidy runs-on: "ubuntu-20.04" steps: - name: Checkout LLPC run: | git clone https://github.com/${GITHUB_REPOSITORY}.git . git fetch origin +${GITHUB_SHA}:${GITHUB_REF} --update-head-ok git checkout ${GITHUB_SHA} - name: Generate Docker base image tag string run: | echo "IMAGE_TAG=amdvlk_release_clang:nightly" \ | tee -a $GITHUB_ENV - name: Fetch the latest prebuilt AMDVLK run: docker pull "amdvlkadmin/$IMAGE_TAG" - name: Build and Test with Docker run: docker build . --file docker/llpc-clang-tidy.Dockerfile --build-arg AMDVLK_IMAGE="amdvlkadmin/$IMAGE_TAG" --build-arg LLPC_REPO_NAME="${GITHUB_REPOSITORY}" --build-arg LLPC_REPO_REF="${GITHUB_REF}" --build-arg LLPC_REPO_SHA="${GITHUB_SHA}" --build-arg LLPC_BASE_REF="${{ github.base_ref }}" --tag llpc/ci-shaderdb
Update docker usr name to fix fork repo PR test failure
[CI] Update docker usr name to fix fork repo PR test failure
YAML
mit
GPUOpen-Drivers/llpc,GPUOpen-Drivers/llpc,GPUOpen-Drivers/llpc,GPUOpen-Drivers/llpc,GPUOpen-Drivers/llpc
14a6f7565eb0d9eb9b43e5645dda0ddd26ebc331
manifests/cf-manifest/operations.d/100-cf-update-vm-types.yml
manifests/cf-manifest/operations.d/100-cf-update-vm-types.yml
# TODO: Review instance sizes that are different to cf-deployment - type: replace path: /instance_groups/name=api/vm_type value: large - type: replace path: /instance_groups/name=cc-worker/vm_type value: medium - type: replace path: /instance_groups/name=diego-api/vm_type value: large - type: replace path: /instance_groups/name=doppler/vm_type value: large - type: replace path: /instance_groups/name=log-api/vm_type value: large - type: replace path: /instance_groups/name=nats/vm_type value: medium - type: replace path: /instance_groups/name=scheduler/vm_type value: large - type: replace path: /instance_groups/name=uaa/vm_type value: medium - type: replace path: /instance_groups/name=rotate-cc-database-key/vm_type value: errand - type: replace path: /instance_groups/name=router/vm_type value: router - type: replace path: /instance_groups/name=diego-cell/vm_type value: cell
# TODO: Review instance sizes that are different to cf-deployment - type: replace path: /instance_groups/name=api/vm_type value: large - type: replace path: /instance_groups/name=cc-worker/vm_type value: medium - type: replace path: /instance_groups/name=diego-api/vm_type value: xlarge - type: replace path: /instance_groups/name=doppler/vm_type value: large - type: replace path: /instance_groups/name=log-api/vm_type value: large - type: replace path: /instance_groups/name=nats/vm_type value: medium - type: replace path: /instance_groups/name=scheduler/vm_type value: large - type: replace path: /instance_groups/name=uaa/vm_type value: medium - type: replace path: /instance_groups/name=rotate-cc-database-key/vm_type value: errand - type: replace path: /instance_groups/name=router/vm_type value: router - type: replace path: /instance_groups/name=diego-cell/vm_type value: cell
Scale up diego-api instance type to xlarge
Scale up diego-api instance type to xlarge
YAML
mit
alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf,alphagov/paas-cf
6136155c8a010b7a0dd2c7a7d07948f5e909b4f6
_data/navigation.yml
_data/navigation.yml
# Site navigation links - title: Work url: /work/ excerpt: "Things designed, illustrated, or developed by Michael Rose." image: relic-scout-teaser.png - title: Articles url: /articles/ excerpt: "A collection of thoughts, inspiration, mistakes, and other minutia." image: skinny-bones-theme-teaser.jpg - title: Mastering Paper url: /mastering-paper/ excerpt: "A collection of tutorials and techniques to help master Paper by 53." image: paper-53-grid-teaser.jpg - title: PaperFaces url: /paperfaces/ excerpt: "Gallery of every PaperFaces portrait drawn to date with Paper by 53." image: paperfaces-project-teaser.jpg - title: About url: /about/ excerpt: "Michael Rose is just another boring, tattooed, time traveling designer from Buffalo." image: about-teaser.jpg
# Site navigation links - title: Work url: /work/ excerpt: "Things designed, illustrated, or developed by Michael Rose." image: relic-scout-teaser-150.png - title: Articles url: /articles/ excerpt: "A collection of thoughts, inspiration, mistakes, and other minutia." image: skinny-bones-theme-teaser-150.jpg - title: Mastering Paper url: /mastering-paper/ excerpt: "A collection of tutorials and techniques to help master Paper by 53." image: paper-53-grid-teaser-150.jpg - title: PaperFaces url: /paperfaces/ excerpt: "Gallery of every PaperFaces portrait drawn to date with Paper by 53." image: paperfaces-project-teaser-150.jpg - title: About url: /about/ excerpt: "Michael Rose is just another boring, tattooed, time traveling designer from Buffalo." image: about-teaser-150.jpg
Optimize teaser images - Reduce to 400x250 px - Reduce off canvas menu teasers to 150px wide
Optimize teaser images - Reduce to 400x250 px - Reduce off canvas menu teasers to 150px wide
YAML
mit
mmistakes/made-mistakes-jekyll,mmistakes/made-mistakes-jekyll,zhelezko/made-mistakes-jekyll,blogtips/blogtips.github.io,wakermahmud/made-mistakes-jekyll,zhelezko/made-mistakes-jekyll,blogtips/blogtips.github.io,wakermahmud/made-mistakes-jekyll,bcmoseley/made-mistakes-jekyll,mmistakes/made-mistakes-jekyll,blogtips/blogtips.github.io,zhelezko/made-mistakes-jekyll,bcmoseley/made-mistakes-jekyll,wakermahmud/made-mistakes-jekyll,bcmoseley/made-mistakes-jekyll
9bf33979c451dcc0721b5c8d7fc2f7916795dbc8
.github/workflows/gh-pages.yml
.github/workflows/gh-pages.yml
name: GitHub Pages on: push: branches: - main pull_request: jobs: deploy: runs-on: ubuntu-latest concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 - name: Build shell: bash run: | cd $GITHUB_WORKSPACE/tools/ci ./docs.sh - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: $GITHUB_WORKSPACE/tools/ci/docs/doxygen/html
name: GitHub Pages on: push: branches: - master pull_request: jobs: deploy: runs-on: ubuntu-latest concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 - name: Build shell: bash run: | cd $GITHUB_WORKSPACE/tools/ci ./docs.sh - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: $GITHUB_WORKSPACE/tools/ci/docs/doxygen/html
Change default branch to master.
Change default branch to master.
YAML
mit
msteinbeck/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline,msteinbeck/tinyspline
edd098460288f056d45802dd50567f29837b7db6
hiera/data/role/uc.yaml
hiera/data/role/uc.yaml
rjil::jiocloud::consul_role: bootstrapserver rjil::system::ntp::server: true ntp::servers: - pool.ntp.org apache::default_vhost: false rjil::glance::backend: file
rjil::jiocloud::consul_role: bootstrapserver rjil::system::ntp::server: true ntp::servers: - pool.ntp.org apache::default_vhost: false rjil::glance::backend: file nova::api::neutron_metadata_proxy_shared_secret: false
Disable metadata proxy when using Ironic
Disable metadata proxy when using Ironic
YAML
apache-2.0
rahul1aggarwal/puppet-rjil,akash1808/puppet-rjil,roopali8/puppet-rjil,anshprat/puppet-rjil,sorenh/puppet-rjil,devendermishrajio/puppet-rjil,d4devops/puppet-openstack_cloud,saneax/puppet-rjil,sajuptpm/puppet-rjil-temp,bafna/try-dss,rakeshmi/puppet-rjil,sorenh/puppet-rjil,sajuptpm/puppet-rjil,ajayaa/puppet-rjil,upadhyay-prashant/puppet-rjil,rohit-k/puppet-rjil,JioCloud/puppet-rjil-keystone,d4devops/puppet-openstack_cloud,rohit-k/puppet-rjil,devendermishrajio/puppet-rjil,JioCloud/puppet-rjil,roopali8/puppet-rjil,punituee/puppet-rjil,jiocloudDSS/puppet-dss,JioCloud/puppet-rjil,sorenh/puppet-rjil,akash1808/puppet-rjil,jiocloudDSS/puppet-dss,pandeyop/puppet-rjil,alokjani/puppet-rjil,rohit-k/puppet-rjil,hkumarmk/puppet-rjil,bafna/puppet-rjil,alokjani/puppet-rjil,rahul1aggarwal/puppet-rjil,sajuptpm/puppet-rjil,rahul1aggarwal/puppet-rjil,anshprat/puppet-rjil,amar266/puppet-rjil,rohit-k/puppet-rjil,sajuptpm/puppet-rjil-temp,sajuptpm/puppet-rjil,anshprat/puppet-rjil,JioCloud/puppet-rjil-keystone,JioCloud/puppet-rjil-keystone,upadhyay-prashant/puppet-rjil,jiocloudDSS/puppet-dss,hkumarmk/puppet-rjil,jiocloudDSS/puppet-dss,sajuptpm/puppet-rjil-temp,JioCloud/puppet-rjil,rakeshmi/puppet-rjil,amar266/puppet-rjil,akash1808/puppet-rjil,saneax/puppet-rjil,swamireddy/puppet-rjil,bafna/puppet-rjil,amar266/puppet-rjil,rakeshmi/puppet-rjil,JioCloud/puppet-rjil,d4devops/puppet-openstack_cloud,alokjani/puppet-rjil,saneax/puppet-rjil,punituee/puppet-rjil,sorenh/puppet-rjil,punituee/puppet-rjil,bafna/try-dss,ajayaa/puppet-rjil,upadhyay-prashant/puppet-rjil,vpramo/puppet-rjil,vpramo/puppet-rjil,upadhyay-prashant/puppet-rjil,sajuptpm/puppet-rjil-temp,hkumarmk/puppet-rjil,devendermishrajio/puppet-rjil,amar266/puppet-rjil,bafna/try-dss,d4devops/puppet-openstack_cloud,roopali8/puppet-rjil,devendermishrajio/puppet-rjil,alokjani/puppet-rjil,rahul1aggarwal/puppet-rjil,vpramo/puppet-rjil,bafna/puppet-rjil,anshprat/puppet-rjil,rakeshmi/puppet-rjil,pandeyop/puppet-rjil,akash1808/puppet-rjil,hkumarmk/puppet-rjil,ajayaa/puppet-rjil,punituee/puppet-rjil,JioCloud/puppet-rjil-keystone,roopali8/puppet-rjil,swamireddy/puppet-rjil,swamireddy/puppet-rjil,swamireddy/puppet-rjil,saneax/puppet-rjil,ajayaa/puppet-rjil,pandeyop/puppet-rjil,sajuptpm/puppet-rjil,bafna/puppet-rjil,vpramo/puppet-rjil,bafna/try-dss
fa7292e05c51e5a0317a5db329975e0f07fd01bd
ansible/terminate_workers.yml
ansible/terminate_workers.yml
# terminate workers for this environment --- - debug: msg="{{ ec2_id }}" - pause: prompt="ctrl-C TO NOT TERMINATE INSTANCES" - name: stop rqworker gracefully shell: /usr/local/bin/stop-rqworker.sh tags: - stop-worker - name: terminate workers local_action: module: ec2 state: absent region: "{{ region }}" instance_ids: "{{ ec2_id }}" tags: - terminate-instance
# terminate workers for this environment --- - debug: msg="{{ ec2_id }}" - pause: prompt="ctrl-C TO NOT TERMINATE INSTANCES" tags: - terminate-instances - name: stop rqworker gracefully shell: /usr/local/bin/stop-rqworker.sh tags: - stop-worker - name: terminate workers local_action: module: ec2 state: absent region: "{{ region }}" instance_ids: "{{ ec2_id }}" tags: - terminate-instances
Make chance to bail tagged my terminate-instances as well.
Make chance to bail tagged my terminate-instances as well.
YAML
bsd-3-clause
ucldc/ingest_deploy,mredar/ingest_deploy,ucldc/ingest_deploy,mredar/ingest_deploy
3ce88b0c67946ad75d263ebc227ee4dd96d1224d
packages/hs/hs-functors.yaml
packages/hs/hs-functors.yaml
homepage: '' changelog-type: '' hash: 036e72232f7eb056da5df537b2d5ae7bf6881afd21f5a39891ff321b10a2aac8 test-bench-deps: {} maintainer: m.farkasdyck@gmail.com synopsis: Functors from products of Haskell and its dual to Haskell changelog: '' basic-deps: base: ! '>=4.9 && <5' transformers: ! '>=0.4.2 && <0.6' all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.3.0 author: M Farkas-Dyck latest: 0.1.3.0 description-type: haddock description: '' license-name: BSD-3-Clause
homepage: '' changelog-type: '' hash: 3056c0bb7df1a3bac649f2e4b40a3cac23c4db65d2c8cb7eeaf959f780e05320 test-bench-deps: {} maintainer: m.farkasdyck@gmail.com synopsis: Functors from products of Haskell and its dual to Haskell changelog: '' basic-deps: base: ! '>=4.9 && <5' transformers: ! '>=0.4.2 && <0.6' all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.3.0 - 0.1.3.1 author: M Farkas-Dyck latest: 0.1.3.1 description-type: haddock description: '' license-name: BSD-3-Clause
Update from Hackage at 2019-03-26T21:53:58Z
Update from Hackage at 2019-03-26T21:53:58Z
YAML
mit
commercialhaskell/all-cabal-metadata
b25c5541fbebc7e54c7142718559d8936948d0c3
packages/ll/llvm-pretty.yaml
packages/ll/llvm-pretty.yaml
homepage: '' changelog-type: '' hash: ed5e5f3a6c475d3db769ad2f10016daa226b8b6238a929c2fc2e606c477fb6bd test-bench-deps: {} maintainer: awesomelyawesome@gmail.com synopsis: A pretty printing library inspired by the llvm binding. changelog: '' basic-deps: base: ! '>=4 && <5' parsec: ! '>=3' monadLib: ! '>=3.6.1' containers: ! '>=0.4' pretty: ! '>=1.0.1' all-versions: - '0.1.0.0' - '0.2.0.0' - '0.3.0.0' - '0.3.1.0' - '0.3.1.1' - '0.4.0.0' - '0.4.0.1' - '0.5' - '0.6.0.0' - '0.7.0.0' - '0.7.1.0' author: Trevor Elliott latest: '0.7.1.0' description-type: haddock description: ! 'A pretty printing library that was inspired by the LLVM binding by Lennart Augustsson. The library provides a monadic interface to a pretty printer, that allows functions to be defined and called, generating the corresponding LLVM assembly when run.' license-name: BSD3
homepage: '' changelog-type: '' hash: e0cf52185e804e2f83c495d6dad1eca6845e8a509353bdbff12388e554caf137 test-bench-deps: {} maintainer: awesomelyawesome@gmail.com synopsis: A pretty printing library inspired by the llvm binding. changelog: '' basic-deps: base: ! '>=4 && <5' parsec: ! '>=3' monadLib: ! '>=3.6.1' containers: ! '>=0.4' pretty: ! '>=1.0.1' all-versions: - '0.1.0.0' - '0.2.0.0' - '0.3.0.0' - '0.3.1.0' - '0.3.1.1' - '0.4.0.0' - '0.4.0.1' - '0.5' - '0.6.0.0' - '0.7.0.0' - '0.7.1.0' - '0.7.1.1' author: Trevor Elliott latest: '0.7.1.1' description-type: haddock description: ! 'A pretty printing library that was inspired by the LLVM binding by Lennart Augustsson. The library provides a monadic interface to a pretty printer, that allows functions to be defined and called, generating the corresponding LLVM assembly when run.' license-name: BSD3
Update from Hackage at 2017-07-01T00:08:33Z
Update from Hackage at 2017-07-01T00:08:33Z
YAML
mit
commercialhaskell/all-cabal-metadata
a1b32a877ef9d0f31a3adcd51797a40d0dd2a7bc
packages/mi/micrologger.yaml
packages/mi/micrologger.yaml
homepage: https://github.com/savannidgerinel/micrologger#readme changelog-type: '' hash: f36f8fb983565c76a4e20b1bc2c3753a53755dbfdd44484661be275fa88532f3 test-bench-deps: {} maintainer: savanni@savannidgerinel.com synopsis: A super simple logging module. Only for use for very simple projects. changelog: '' basic-deps: base: ! '>=4.7 && <5' time: ! '>=1.5 && <1.6' text: ! '>=1.2 && <1.3' transformers: ! '>=0.4 && <0.5' text-format: ! '>=0.3 && <0.4' all-versions: - '0.2.0.1' author: Savanni D'Gerinel latest: '0.2.0.1' description-type: haddock description: A super simple logging module. Only for use for very simple projects. license-name: BSD3
homepage: https://github.com/savannidgerinel/micrologger#readme changelog-type: '' hash: cc4692f975962b1b35c3a075c3d22b40e6e983b9ee4bc7c358ae909a2c4dd822 test-bench-deps: base: -any hspec: -any text: -any micrologger: -any aeson: -any maintainer: savanni@savannidgerinel.com synopsis: A super simple logging module. Only for use for very simple projects. changelog: '' basic-deps: base: ! '>=4.7 && <5' time: ! '>=1.5 && <1.6' text: ! '>=1.2 && <1.3' containers: ! '>=0.5.6 && <0.6' transformers: ! '>=0.4 && <0.5' text-format: ! '>=0.3 && <0.4' aeson: ! '>=0.9 && <0.12' all-versions: - '0.2.0.1' - '0.3.0.0' author: Savanni D'Gerinel latest: '0.3.0.0' description-type: haddock description: A super simple logging module. Only for use for very simple projects. license-name: BSD3
Update from Hackage at 2016-08-04T01:52:01+0000
Update from Hackage at 2016-08-04T01:52:01+0000
YAML
mit
commercialhaskell/all-cabal-metadata
976ae3b0917e23460280e3b57ebeaa96d39c0de7
.github/workflows/build.yml
.github/workflows/build.yml
name: build on: push: branches: [ master ] pull_request: branches: [ master ] env: DISPLAY: :99 WDM_GITHUBTOKEN: ${{ secrets.WDM_GITHUBTOKEN }} GITHUB_TOKEN: ${{ secrets.WDM_GITHUBTOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest ] java: [ '11' ] steps: - name: Checkout GitHub repo uses: actions/checkout@v2 - name: Set up Java uses: actions/setup-java@v2 with: distribution: 'temurin' java-version: ${{ matrix.java }} - name: Start Xvfb run: Xvfb :99 & - name: Run tests run: mvn -B test - name: Upload analysis to SonarCloud if: success() && !contains(github.ref, 'pull') run: > mvn -B sonar:sonar -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=bonigarcia-github -Dsonar.projectKey=io.github.bonigarcia:selenium-jupiter - name: Upload coverage to Codecov if: success() && !contains(github.ref, 'pull') uses: codecov/codecov-action@v1
name: build on: push: branches: [ master ] pull_request: branches: [ master ] env: DISPLAY: :99 WDM_GITHUBTOKEN: ${{ secrets.WDM_GITHUBTOKEN }} GITHUB_TOKEN: ${{ secrets.WDM_GITHUBTOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ ubuntu-latest ] java: [ '11' ] steps: - name: Checkout GitHub repo uses: actions/checkout@v2 - name: Set up Java uses: actions/setup-java@v2 with: distribution: 'temurin' java-version: ${{ matrix.java }} - name: Start Xvfb run: Xvfb :99 & - name: Run tests uses: nick-invision/retry@v2.7.1 with: timeout_minutes: 20 max_attempts: 3 command: mvn -B test - name: Upload analysis to SonarCloud if: success() && !contains(github.ref, 'pull') run: > mvn -B sonar:sonar -Dsonar.host.url=https://sonarcloud.io -Dsonar.organization=bonigarcia-github -Dsonar.projectKey=io.github.bonigarcia:selenium-jupiter - name: Upload coverage to Codecov if: success() && !contains(github.ref, 'pull') uses: codecov/codecov-action@v1
Include retries in workflow execution
Include retries in workflow execution
YAML
apache-2.0
bonigarcia/selenium-jupiter,bonigarcia/selenium-jupiter
e71a527a88efae0c72992767cee469a46954ee86
.github/workflows/build.yml
.github/workflows/build.yml
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: build on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 13.x, 14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run build --if-present - run: npm test - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} flag-name: run-${{ matrix.test_number }} parallel: true coverage: runs-on: ubuntu-latest needs: build steps: - name: Coveralls Finished uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} parallel-finished: true
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: build on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 13.x, 14.x, 15.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm run build --if-present - run: npm test - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} flag-name: run-${{ matrix.test_number }} parallel: true coverage: runs-on: ubuntu-latest needs: build steps: - name: Coveralls Finished uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} parallel-finished: true
Add nodejs 15.x to test matrix
Add nodejs 15.x to test matrix
YAML
mit
albe/node-event-store,albe/node-event-storage
ae6bd0e5516599f2728ee3b83d75a912e15dd3b9
.github/workflows/main.yaml
.github/workflows/main.yaml
name: CI on: [push, pull_request, workflow_dispatch] jobs: backend-ci: strategy: fail-fast: false runs-on: ubuntu-latest container: fedorapython/fedora-python-tox:latest steps: - uses: actions/checkout@v3 - name: Install RPM dependencies run: | dnf install -y krb5-devel - name: Install base Python dependencies run: | python3 -m pip install --upgrade tox - name: execute tox run: tox frontend-ci: strategy: fail-fast: false runs-on: ubuntu-latest container: fedora:latest steps: - uses: actions/checkout@v3 - name: install npm run: dnf install -y npm - name: install frontend run: | pushd frontend/ npm install popd - name: run eslint run: | pushd frontend/ npm run lint-check popd - name: run type-check run: | pushd frontend/ npm run type-check popd - name: run type-check run: | pushd frontend/ npm run test:unit -- run popd
name: CI on: [push, pull_request, workflow_dispatch] jobs: backend-ci: strategy: fail-fast: false runs-on: ubuntu-latest container: fedorapython/fedora-python-tox:latest steps: - uses: actions/checkout@v3 - name: Install RPM dependencies run: | dnf install -y krb5-devel libpq-devel - name: Install base Python dependencies run: | python3 -m pip install --upgrade tox - name: execute tox run: tox frontend-ci: strategy: fail-fast: false runs-on: ubuntu-latest container: fedora:latest steps: - uses: actions/checkout@v3 - name: install npm run: dnf install -y npm - name: install frontend run: | pushd frontend/ npm install popd - name: run eslint run: | pushd frontend/ npm run lint-check popd - name: run type-check run: | pushd frontend/ npm run type-check popd - name: run type-check run: | pushd frontend/ npm run test:unit -- run popd
Enable installing psycopg package in CI
Enable installing psycopg package in CI The `psycopg` module needs libpq-devel to be installed to build its native extension. Signed-off-by: Nils Philippsen <ad3fa8d847df2b57853a376ad688e4be8041ecd4@redhat.com>
YAML
lgpl-2.1
fedora-infra/fmn,fedora-infra/fmn,fedora-infra/fmn,fedora-infra/fmn,fedora-infra/fmn
e4d00f3e70428697586786fb35a6b652d055a3a8
ansible/local.yml
ansible/local.yml
--- # Playbook to set-up and configure local server #Keep the role "configure_sphinx" commented unless you want to #create indexes and start the search daemon (indexing takes 6-8 hours) - hosts: all become: true gather_facts: yes roles: - common - common_debian - common_vagrant - setup_nginx - setup_php - setup_mysql - { role: update_code, become: false } - { role: setup_database, import_csv: 'no' } - install_sphinx - { role: configure_sphinx, sphinx_create_indexes: no } - { role: setup_nihongoparserd, force_install: no } - { role: setup_sinoparserd, force_install: no } - { role: setup_suggestd, force_install: no } - { role: setup_tatodetect, force_install: no }
--- # Playbook to set-up and configure local server #Keep the role "configure_sphinx" commented unless you want to #create indexes and start the search daemon (indexing takes 6-8 hours) - hosts: all become: true gather_facts: yes roles: - common - common_debian - common_vagrant - setup_nginx - setup_php - setup_mysql - { role: update_code, become: false } - { role: setup_database, import_csv: 'no' } - install_sphinx - { role: configure_sphinx, sphinx_create_indexes: true } - { role: setup_nihongoparserd, force_install: no } - { role: setup_sinoparserd, force_install: no } - { role: setup_suggestd, force_install: no } - { role: setup_tatodetect, force_install: no }
Create indexes on machine provision
Create indexes on machine provision We need indexes (even empty ones) to get the daemon running properly.
YAML
agpl-3.0
Tatoeba/tatoeba2,Tatoeba/tatoeba2,Tatoeba/tatoeba2,Tatoeba/tatoeba2,Tatoeba/tatoeba2
38b4309d10ed55a2bd6848b121672d387982ac10
defaults/main.yml
defaults/main.yml
--- dynatrace_collector_installer_bitsize: 64 dynatrace_collector_linux_install_dir: /opt dynatrace_collector_linux_installer_file_name: dynatrace-collector-linux-x86.jar dynatrace_collector_linux_installer_file_url: "http://downloads.dynatracesaas.com/6.3/{{ dynatrace_collector_linux_installer_file_name }}" dynatrace_collector_agent_port: 9998 dynatrace_collector_server_hostname: localhost dynatrace_collector_server_port: 6698 dynatrace_collector_jvm_xms: dynatrace_collector_jvm_xmx: dynatrace_collector_jvm_perm_size: dynatrace_collector_jvm_max_perm_size: dynatrace_collector_owner: dynatrace dynatrace_collector_group: dynatrace dynatrace_collector_role_name: Dynatrace.Dynatrace-Collector
--- dynatrace_collector_installer_bitsize: 64 dynatrace_collector_linux_install_dir: /opt dynatrace_collector_linux_installer_file_name: dynatrace-collector-6.5.0.1289-linux-x86.jar dynatrace_collector_linux_installer_file_url: "https://files.dynatrace.com/downloads/OnPrem/dynaTrace/6.5/6.5.0.1289/{{ dynatrace_collector_linux_installer_file_name }}" dynatrace_collector_agent_port: 9998 dynatrace_collector_server_hostname: localhost dynatrace_collector_server_port: 6699 dynatrace_collector_jvm_xms: dynatrace_collector_jvm_xmx: dynatrace_collector_jvm_perm_size: dynatrace_collector_jvm_max_perm_size: dynatrace_collector_owner: dynatrace dynatrace_collector_group: dynatrace dynatrace_collector_role_name: Dynatrace.Dynatrace-Collector
Update ansible script to use version 6.5 GA
[JLT-167479] Update ansible script to use version 6.5 GA
YAML
mit
dynaTrace/Dynatrace-Collector-Ansible,dynaTrace/Dynatrace-Collector-Ansible
6e1198a8c01da5759bcb429d18f576c0d9ec97bb
defaults/main.yml
defaults/main.yml
--- i3_packages: - i3 - i3lock - i3status - pulseaudio - pulseaudio-utils - scrot - xserver-xorg - imagemagick i3_packages_state: present i3_conf_template: config i3_conf_dir: ~/.config/i3 i3_conf_file: /config
--- i3_packages: - i3 - i3lock - i3status - pulseaudio - scrot - xorg-server - imagemagick i3_packages_state: present i3_conf_template: config i3_conf_dir: ~/.config/i3 i3_conf_file: /config
Update default arch requirement package list
Update default arch requirement package list
YAML
mit
nephelaiio/ansible-role-i3,nephelaiio/ansible-role-i3
31ce434c8be6f05e20517952b999d9c1fd942831
Configuration/Settings.yaml
Configuration/Settings.yaml
Neos: Flow: security: authentication: providers: Typo3BackendProvider: requestPatterns: 'Flowpack.Neos.FrontendLogin:NeosBackend': pattern: Flowpack\Neos\FrontendLogin\Security\NeosRequestPattern 'Flowpack.Neos.FrontendLogin:Frontend': provider: PersistedUsernamePasswordProvider requestPatterns: 'Flowpack.Neos.FrontendLogin:NeosFrontend': pattern: Flowpack\Neos\FrontendLogin\Security\NeosRequestPattern patternOptions: matchFrontend: true Neos: typoScript: autoInclude: Flowpack.Neos.FrontendLogin: true userInterface: translation: autoInclude: Flowpack.Neos.FrontendLogin: - 'NodeTypes/*'
Neos: Flow: security: authentication: providers: Typo3BackendProvider: requestPatterns: 'Flowpack.Neos.FrontendLogin:NeosBackend': pattern: Flowpack\Neos\FrontendLogin\Security\NeosRequestPattern 'Flowpack.Neos.FrontendLogin:Frontend': provider: PersistedUsernamePasswordProvider requestPatterns: 'Flowpack.Neos.FrontendLogin:NeosFrontend': pattern: Flowpack\Neos\FrontendLogin\Security\NeosRequestPattern patternOptions: matchFrontend: true Neos: fusion: autoInclude: Flowpack.Neos.FrontendLogin: true userInterface: translation: autoInclude: Flowpack.Neos.FrontendLogin: - 'NodeTypes/*'
Fix autoloading config for fusion
BUGFIX: Fix autoloading config for fusion
YAML
mit
Flowpack/Flowpack.Neos.FrontendLogin,Flowpack/Flowpack.Neos.FrontendLogin,kdambekalns/Flowpack.Neos.FrontendLogin,kdambekalns/Flowpack.Neos.FrontendLogin
6b7f414d0b158e04e059f6f06f4c581b6908473d
rest-api/src/main/resources/paths/studies/v5_studies_studyId_participants_self_demographics_assessment.yml
rest-api/src/main/resources/paths/studies/v5_studies_studyId_participants_self_demographics_assessment.yml
post: operationId: saveDemographicUserAssessmentSelf summary: Save/overwrite all demographics for a user description: Save/overwrite all demographics for a user (study-level, posted by the user), uses the assessment JSON model tags: - Study Participants - _For Consented Users security: - BridgeSecurity: [] parameters: - $ref: ../../index.yml#/parameters/studyId - name: DemographicUser required: true in: body schema: $ref: ../../definitions/demographic_user.yml responses: 200: description: OK schema: $ref: ../../definitions/demographic_user.yml 400: $ref: ../../responses/400_message.yml # also $ref: ../../responses/400_invalid_entity.yml 401: $ref: ../../responses/401.yml 404: description: Account does not exist or is not in this study. schema: $ref: ../../definitions/message.yml 410: $ref: ../../responses/410.yml 412: $ref: ../../responses/412.yml
post: operationId: saveDemographicUserAssessmentSelf summary: Save/overwrite all demographics for a user description: Save/overwrite all demographics for a user (study-level, posted by the user), uses the assessment JSON model tags: - Study Participants - _For Consented Users security: - BridgeSecurity: [] parameters: - $ref: ../../index.yml#/parameters/studyId - name: DemographicUser required: true in: body schema: $ref: ../../definitions/demographic_user_assessment.yml responses: 200: description: OK schema: $ref: ../../definitions/demographic_user.yml 400: $ref: ../../responses/400_message.yml # also $ref: ../../responses/400_invalid_entity.yml 401: $ref: ../../responses/401.yml 404: description: Account does not exist or is not in this study. schema: $ref: ../../definitions/message.yml 410: $ref: ../../responses/410.yml 412: $ref: ../../responses/412.yml
Fix input for assessment endpoint
Fix input for assessment endpoint
YAML
apache-2.0
DwayneJengSage/BridgeJavaSDK,Sage-Bionetworks/BridgeJavaSDK,Sage-Bionetworks/BridgeJavaSDK,DwayneJengSage/BridgeJavaSDK
2a232cc07b96b26d5b34541434dd22ee545a03eb
data/releases.yml
data/releases.yml
url: https://github.com/JetBrains/kotlin/releases latest: version: 1.2.70 url: https://github.com/JetBrains/kotlin/releases/tag/v1.2.70 runtime_size: 964KB date: September 12, 2018
url: https://github.com/JetBrains/kotlin/releases latest: version: 1.2.71 url: https://github.com/JetBrains/kotlin/releases/tag/v1.2.71 runtime_size: 964KB date: September 24, 2018
Update Kotlin version to 1.2.71
Update Kotlin version to 1.2.71
YAML
apache-2.0
JetBrains/kotlin-web-site,JetBrains/kotlin-web-site,JetBrains/kotlin-web-site,hltj/kotlin-web-site-cn,hltj/kotlin-web-site-cn,JetBrains/kotlin-web-site,hltj/kotlin-web-site-cn,hltj/kotlin-web-site-cn,JetBrains/kotlin-web-site,hltj/kotlin-web-site-cn,JetBrains/kotlin-web-site,hltj/kotlin-web-site-cn
8012224bcd974cedff004578cc950ecf5230e944
playbooks/installer/ospd/post_install/external_network.yml
playbooks/installer/ospd/post_install/external_network.yml
--- #TODO: remove this when the templating system is in place - name: External network creation hosts: undercloud gather_facts: no become: yes become_user: "{{ installer.user.name }}" vars: first_controller: "{{ groups.controller | first }}" tasks: - name: get the default floating ip pool name from the controller shell: "grep -oP \"(?<=default_floating_pool=)(.*$)\" /etc/nova/nova.conf" register: pool_name delegate_to: first_controller become_user: root become: yes - name: create the external network shell: "source ~/overcloudrc; neutron net-create {{ pool_name.stdout_lines|last }} --router:external --provider:physical_network datacentre --provider:network_type flat" # TODO: move the hard coded value to a variable - name: create the external subnet shell: "source ~/overcloudrc; neutron subnet-create {{ pool_name.stdout_lines|last }} 10.0.0.1/24 --name external_subnet --enable-dhcp=False --allocation-pool start=10.0.0.210,end=10.0.0.250 --gateway 10.0.0.1"
--- #TODO: remove this when the templating system is in place - name: External network creation hosts: undercloud gather_facts: no become: yes become_user: "{{ installer.user.name }}" vars: first_controller: "{{ groups.controller | first }}" tasks: - name: get the default floating ip pool name from the controller shell: "grep -oP \"(?<=default_floating_pool=)(.*$)\" /etc/nova/nova.conf" register: pool_name delegate_to: "{{ first_controller }}" become_user: root become: yes - name: create the external network shell: "source ~/overcloudrc; neutron net-create {{ pool_name.stdout_lines|last }} --router:external --provider:physical_network datacentre --provider:network_type flat" # TODO: move the hard coded value to a variable - name: create the external subnet shell: "source ~/overcloudrc; neutron subnet-create {{ pool_name.stdout_lines|last }} 10.0.0.1/24 --name external_subnet --enable-dhcp=False --allocation-pool start=10.0.0.210,end=10.0.0.250 --gateway 10.0.0.1"
Make sure the first_controller is variable not a string
Make sure the first_controller is variable not a string Looks like the floating ip pool name was read from the undercloud-0 instead of delegating to the specified node. Also looks like the currently used ansible version ignores the delegates-to parameter if it does not exists. Using the "{{ var_name }}' style. Change-Id: I44f02dbf8dd238c7b9efc34e612883043657bfd4
YAML
apache-2.0
okolisny/InfraRed,redhat-openstack/infrared,redhat-openstack/infrared,redhat-openstack/infrared,okolisny/InfraRed,okolisny/InfraRed
de07019f2d399a0cab0f836ff1337d38547ce45d
kaminari-core/test/fake_app/config/database_gha.yml
kaminari-core/test/fake_app/config/database_gha.yml
sqlite3: &sqlite3 adapter: sqlite3 database: <%= File.expand_path '../../kaminari_test.sqlite3', __FILE__ %> pool: 5 timeout: 5000 postgresql: &postgresql adapter: postgresql host: localhost username: postgres password: postgres database: kaminari_test mysql: &mysql adapter: mysql2 host: localhost username: root password: root database: kaminari_test test: <<: *<%= ENV['DB'] %>
sqlite3: &sqlite3 adapter: sqlite3 database: <%= File.expand_path '../../kaminari_test.sqlite3', __FILE__ %> pool: 5 timeout: 5000 postgresql: &postgresql adapter: postgresql host: localhost username: postgres password: <%= ENV['POSTGRES_PASSWORD'] %> database: kaminari_test mysql: &mysql adapter: mysql2 host: localhost username: root password: root database: kaminari_test test: <<: *<%= ENV['DB'] %>
Revert "Revert "GHA Postgres password is stored in POSTGRES_PASSWORD envvar""
Revert "Revert "GHA Postgres password is stored in POSTGRES_PASSWORD envvar"" This reverts commit 677b8965ac9bfe382d15afd2a8f1e71755d24e96.
YAML
mit
kaminari/kaminari,kaminari/kaminari
e5ecf1ca9ca77b36c7cb090b3311d90707a86c41
defaults/main.yml
defaults/main.yml
--- # file: macports/defaults/main.yml # # defaults file macports_version: 2.5.2 macports_tarball_url: "http://downloads.sourceforge.net/project/macports/MacPorts/{{ macports_version }}/" macports_build_from_source: no macports_selfupdate: yes macports_upgrade_outdated: yes macports_force_install: no macports_installer: macosx: '10.13': name: "MacPorts-{{ macports_version }}-10.13-HighSierra.pkg" '10.12': name: "MacPorts-{{ macports_version }}-10.12-Sierra.pkg" '10.11': name: "MacPorts-{{ macports_version }}-10.11-ElCapitan.pkg" '10.10': name: "MacPorts-{{ macports_version }}-10.10-Yosemite.pkg" '10.9': name: "MacPorts-{{ macports_version }}-10.9-Mavericks.pkg" '10.8': name: "MacPorts-{{ macports_version }}-10.8-MountainLion.pkg" '10.7': name: "MacPorts-{{ macports_version }}-10.7-Lion.pkg" '10.6': name: "MacPorts-{{ macports_version }}-10.6-SnowLeopard.pkg"
--- # file: macports/defaults/main.yml # # defaults file macports_version: 2.5.4 macports_tarball_url: "https://distfiles.macports.org/MacPorts/" macports_build_from_source: no macports_selfupdate: yes macports_upgrade_outdated: yes macports_force_install: no macports_installer: macosx: '10.14': name: "MacPorts-{{ macports_version }}-10.14-Mojave.pkg" '10.13': name: "MacPorts-{{ macports_version }}-10.13-HighSierra.pkg" '10.12': name: "MacPorts-{{ macports_version }}-10.12-Sierra.pkg" '10.11': name: "MacPorts-{{ macports_version }}-10.11-ElCapitan.pkg" '10.10': name: "MacPorts-{{ macports_version }}-10.10-Yosemite.pkg" '10.9': name: "MacPorts-{{ macports_version }}-10.9-Mavericks.pkg" '10.8': name: "MacPorts-{{ macports_version }}-10.8-MountainLion.pkg" '10.7': name: "MacPorts-{{ macports_version }}-10.7-Lion.pkg" '10.6': name: "MacPorts-{{ macports_version }}-10.6-SnowLeopard.pkg"
Add 10.14 Mojave Update tarball url Update macports_version to 2.5.4
Add 10.14 Mojave Update tarball url Update macports_version to 2.5.4
YAML
bsd-3-clause
ansiblebit/macports,ansiblebit/macports,ansiblebit/macports
28d495af611c73a23004fece4b75fe51c402788a
defaults/main.yml
defaults/main.yml
--- # defaults file for ansible-puppet copy_hieradata: false copy_puppet: false hieradata: /etc/puppet/hieradata # manage_config: False puppet_server: puppet certname: "{{ ansible_fqdn }}" puppet_data_binding_terminus: hiera puppet_reports: store puppet_basemodulepath: '$confdir/modules:/usr/share/puppet/modules' puppet_environmentpath: '$confdir/environments' puppet_hiera_datadir: '/etc/puppet/hieradata' puppet_environment: production
--- # defaults file for ansible-puppet copy_hieradata: false copy_puppet: false hieradata: /etc/puppet/hieradata # manage_config: False puppet_server: puppet certname: "{{ ansible_fqdn }}" puppet_data_binding_terminus: hiera puppet_reports: store puppet_basemodulepath: '$confdir/modules:/opt/system-config/production/modules' puppet_environmentpath: '$confdir/environments' puppet_hiera_datadir: '/etc/puppet/hieradata' puppet_environment: production
Add extra path for our own puppet modules in environment
Add extra path for our own puppet modules in environment Change-Id: Ic501a34f79325bd2032c43f7ca36f19cae16e3e5
YAML
apache-2.0
openstack-infra/ansible-puppet,openstack-infra/ansible-puppet
c120943f70fece1f4ddce2a4bdd7c9ed1f3e99a8
test/data/state-pension-topup-questions-and-responses.yml
test/data/state-pension-topup-questions-and-responses.yml
--- :dob_age?: - "TODO: What is your date of birth?" :gender?: - male - female :how_much_extra_per_week?: - "TODO: How much would you like to get per week?"
--- :dob_age?: - 1951-04-06 # > MALE_YOUNGEST_DOB :gender?: - male - female :how_much_extra_per_week?: - 20
Fix TODO items in responses for state-pension-topup test
Fix TODO items in responses for state-pension-topup test
YAML
mit
askl56/smart-answers,stwalsh/smart-answers,tadast/smart-answers,aledelcueto/smart-answers,stwalsh/smart-answers,stwalsh/smart-answers,askl56/smart-answers,askl56/smart-answers,tadast/smart-answers,tadast/smart-answers,alphagov/smart-answers,aledelcueto/smart-answers,alphagov/smart-answers,alphagov/smart-answers,alphagov/smart-answers,stwalsh/smart-answers,tadast/smart-answers,aledelcueto/smart-answers,askl56/smart-answers,aledelcueto/smart-answers
b8726dda834dec0efbcd435d6c69296fbe125bbd
stack.yaml
stack.yaml
flags: {} packages: - '.' resolver: lts-8.10 extra-deps: - messagepack-0.5.4
flags: {} packages: - '.' resolver: lts-8.10 extra-deps: []
Remove messagepack constraint as it is conflicting with cabal anyway
Remove messagepack constraint as it is conflicting with cabal anyway
YAML
apache-2.0
saep/nvim-hs
4ceeafb01835f9d94455afb0165253abfef0d18e
deploy/roles/aws-public-keys/tasks/main.yml
deploy/roles/aws-public-keys/tasks/main.yml
--- - name: add demo public key ec2_key: region: "{{ aws_region }}" name: "demo-key" key_material: "{{ item }}" with_file: "keys/demo.pub"
--- - name: add demo public key ec2_key: region: "{{ aws_region }}" name: "{{ ssh_key_name }}" key_material: "{{ item }}" with_file: "keys/demo.pub"
Use variable for key name.
Use variable for key name.
YAML
mit
lupinsky/aws-demo,lupinsky/aws-demo,lupinsky/aws-demo
a00cbc98861828f78dfae5ee8fe11fb8a66e5d55
src/Kunstmaan/RedirectBundle/Resources/config/services.yml
src/Kunstmaan/RedirectBundle/Resources/config/services.yml
parameters: kunstmaan_redirect.menu.adaptor.class: 'Kunstmaan\RedirectBundle\Helper\Menu\RedirectMenuAdaptor' kunstmaan_redirect.redirect_repository.class: 'Kunstmaan\RedirectBundle\Repository\RedirectRepository' kunstmaan_redirect.redirect.class: 'Kunstmaan\RedirectBundle\Entity\Redirect' services: kunstmaan_redirect.menu.adaptor: class: '%kunstmaan_redirect.menu.adaptor.class%' tags: - { name: 'kunstmaan_admin.menu.adaptor' } kunstmaan_redirect.repositories.redirect: class: '%kunstmaan_redirect.redirect_repository.class%' factory: ['@doctrine.orm.entity_manager', getRepository] arguments: ['%kunstmaan_redirect.redirect.class%'] kunstmaan_redirect.redirectrouter: class: Kunstmaan\RedirectBundle\Router\RedirectRouter arguments: ['@kunstmaan_redirect.repositories.redirect', '@kunstmaan_admin.domain_configuration'] tags: - { name: router, priority: 1 }
parameters: kunstmaan_redirect.menu.adaptor.class: 'Kunstmaan\RedirectBundle\Helper\Menu\RedirectMenuAdaptor' kunstmaan_redirect.redirect_repository.class: 'Kunstmaan\RedirectBundle\Repository\RedirectRepository' kunstmaan_redirect.redirect.class: 'Kunstmaan\RedirectBundle\Entity\Redirect' services: kunstmaan_redirect.menu.adaptor: class: '%kunstmaan_redirect.menu.adaptor.class%' tags: - { name: 'kunstmaan_admin.menu.adaptor' } kunstmaan_redirect.repositories.redirect: class: '%kunstmaan_redirect.redirect_repository.class%' factory: ['@doctrine.orm.entity_manager', getRepository] arguments: ['%kunstmaan_redirect.redirect.class%'] kunstmaan_redirect.redirectrouter: class: Kunstmaan\RedirectBundle\Router\RedirectRouter arguments: ['@kunstmaan_redirect.repositories.redirect', '@kunstmaan_admin.domain_configuration'] tags: - { name: router, priority: 1 } kunstmaan_redirect.form.type: class: Kunstmaan\RedirectBundle\Form\RedirectAdminType arguments: ['@kunstmaan_admin.domain_configuration'] tags: - { name: form.type, alias: kunstmaan_redirect_form_type }
Fix issue with form type arguments
[RedirectBundle] Fix issue with form type arguments
YAML
mit
roderik/KunstmaanBundlesCMS,jverdeyen/KunstmaanBundlesCMS,fchris82/KunstmaanBundlesCMS,mlebkowski/KunstmaanBundlesCMS,wesleylancel/KunstmaanBundlesCMS,iBenito/KunstmaanBundlesCMS,mwoynarski/KunstmaanBundlesCMS,diskwriter/KunstmaanBundlesCMS,webtown-php/KunstmaanBundlesCMS,roderik/KunstmaanBundlesCMS,sandergo90/KunstmaanBundlesCMS,webtown-php/KunstmaanBundlesCMS,jockri/KunstmaanBundlesCMS,FVKVN/KunstmaanBundlesCMS,dbeerten/KunstmaanBundlesCMS,tarjei/KunstmaanBundlesCMS,tarjei/KunstmaanBundlesCMS,iBenito/KunstmaanBundlesCMS,Devolicious/KunstmaanBundlesCMS,roderik/KunstmaanBundlesCMS,mlebkowski/KunstmaanBundlesCMS,fchris82/KunstmaanBundlesCMS,hgabka/KunstmaanBundlesCMS,bakie/KunstmaanBundlesCMS,treeleaf/KunstmaanBundlesCMS,hgabka/KunstmaanBundlesCMS,jverdeyen/KunstmaanBundlesCMS,zizooboats/KunstmaanBundlesCMS,webtown-php/KunstmaanBundlesCMS,iBenito/KunstmaanBundlesCMS,tarjei/KunstmaanBundlesCMS,bakie/KunstmaanBundlesCMS,zizooboats/KunstmaanBundlesCMS,sandergo90/KunstmaanBundlesCMS,wesleylancel/KunstmaanBundlesCMS,diskwriter/KunstmaanBundlesCMS,dbeerten/KunstmaanBundlesCMS,iBenito/KunstmaanBundlesCMS,mlebkowski/KunstmaanBundlesCMS,tarjei/KunstmaanBundlesCMS,fchris82/KunstmaanBundlesCMS,hgabka/KunstmaanBundlesCMS,Devolicious/KunstmaanBundlesCMS,diskwriter/KunstmaanBundlesCMS,bakie/KunstmaanBundlesCMS,insiders/KunstmaanBundlesCMS,wesleylancel/KunstmaanBundlesCMS,jockri/KunstmaanBundlesCMS,mwoynarski/KunstmaanBundlesCMS,dbeerten/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS,FVKVN/KunstmaanBundlesCMS,bakie/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS,treeleaf/KunstmaanBundlesCMS,fchris82/KunstmaanBundlesCMS,jockri/KunstmaanBundlesCMS,wesleylancel/KunstmaanBundlesCMS,FVKVN/KunstmaanBundlesCMS,jverdeyen/KunstmaanBundlesCMS,insiders/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS,sandergo90/KunstmaanBundlesCMS,mwoynarski/KunstmaanBundlesCMS,insiders/KunstmaanBundlesCMS,FVKVN/KunstmaanBundlesCMS,hgabka/KunstmaanBundlesCMS,Numkil/KunstmaanBundlesCMS,Kunstmaan/KunstmaanBundlesCMS,Devolicious/KunstmaanBundlesCMS,wame/KunstmaanBundlesCMS,webtown-php/KunstmaanBundlesCMS,wame/KunstmaanBundlesCMS,mlebkowski/KunstmaanBundlesCMS,roderik/KunstmaanBundlesCMS,hgabka/KunstmaanBundlesCMS,webtown-php/KunstmaanBundlesCMS,Numkil/KunstmaanBundlesCMS,wame/KunstmaanBundlesCMS,dbeerten/KunstmaanBundlesCMS,treeleaf/KunstmaanBundlesCMS,jverdeyen/KunstmaanBundlesCMS,Numkil/KunstmaanBundlesCMS,zizooboats/KunstmaanBundlesCMS,treeleaf/KunstmaanBundlesCMS,sandergo90/KunstmaanBundlesCMS,Numkil/KunstmaanBundlesCMS,diskwriter/KunstmaanBundlesCMS,zizooboats/KunstmaanBundlesCMS,jockri/KunstmaanBundlesCMS,insiders/KunstmaanBundlesCMS,mwoynarski/KunstmaanBundlesCMS,Devolicious/KunstmaanBundlesCMS,wame/KunstmaanBundlesCMS
77e56441f1a9ef62feea59109f3574d00fbb9694
common/hiera-steps-tasks.yaml
common/hiera-steps-tasks.yaml
- name: Hiera config include_role: name: tripleo_hieradata - name: Hiera symlink become: true file: src: /etc/puppet/hiera.yaml dest: /etc/hiera.yaml state: link force: true - name: Hieradata from vars include_role: name: tripleo_hieradata tasks_from: hieradata_vars.yaml vars: hieradata_templates_list: - bootstrap_node - all_nodes - vip_data - net_ip_map - cloud_domain - fqdn - service_names - service_configs - extraconfig - role_extraconfig - name: Ensure ansible_managed hieradata file exists include_role: name: tripleo_hieradata tasks_from: ansible_hieradata.yml
- name: Hiera config include_role: name: tripleo_hieradata - name: Hiera symlink become: true file: src: /etc/puppet/hiera.yaml dest: /etc/hiera.yaml state: link force: true - name: Hieradata from vars include_role: name: tripleo_hieradata tasks_from: hieradata_vars.yaml vars: hieradata_templates_list: - bootstrap_node - all_nodes - vip_data - net_ip_map - cloud_domain - fqdn - service_names - service_configs - extraconfig - role_extraconfig - ovn_chassis_mac_map - name: Ensure ansible_managed hieradata file exists include_role: name: tripleo_hieradata tasks_from: ansible_hieradata.yml
Add OVN chassis macs to hieradata
Add OVN chassis macs to hieradata Add the tempalte in tripleo-ansible to the list of hieradata_templates in common/hiera-steps-tasks.yaml Depends-On: https://review.opendev.org/733719 Related-Bug: #1881593 Change-Id: I0a57374c5b58f5953b079b6690ecc77887ec8751
YAML
apache-2.0
openstack/tripleo-heat-templates,openstack/tripleo-heat-templates
abd47d0de8002311b5dd4d46658cabfe93481a1a
recipes/jupyterlab-spellchecker/meta.yaml
recipes/jupyterlab-spellchecker/meta.yaml
{% set name = "jupyterlab-spellchecker" %} {% set version = "0.5.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/jupyterlab-spellchecker-{{ version }}.tar.gz sha256: c2feb33273810cfd54271a29eaed1ffdb88d3ef0b0a5d33495b5954f164ee269 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - jupyter_packaging - pip - python >=3.6 run: - jupyterlab ~=3.0 - python >=3.6 test: imports: - jupyterlab_spellchecker commands: - pip check requires: - pip about: home: https://github.com/jupyterlab-contrib/spellchecker summary: A spell checker for JupyterLab. license: BSD-3-Clause license_file: LICENSE extra: recipe-maintainers: - krassowski
{% set name = "jupyterlab-spellchecker" %} {% set version = "0.5.2" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/jupyterlab-spellchecker-{{ version }}.tar.gz sha256: c2feb33273810cfd54271a29eaed1ffdb88d3ef0b0a5d33495b5954f164ee269 build: number: 0 noarch: python script: {{ PYTHON }} -m pip install . -vv requirements: host: - jupyter-packaging - pip - python >=3.6 run: - jupyterlab ~=3.0 - python >=3.6 test: imports: - jupyterlab_spellchecker commands: - pip check requires: - pip about: home: https://github.com/jupyterlab-contrib/spellchecker summary: A spell checker for JupyterLab. license: BSD-3-Clause license_file: LICENSE extra: recipe-maintainers: - krassowski
Use jupyter-packaging instead of jupyter_packaging
Use jupyter-packaging instead of jupyter_packaging
YAML
bsd-3-clause
jochym/staged-recipes,johanneskoester/staged-recipes,kwilcox/staged-recipes,jochym/staged-recipes,igortg/staged-recipes,kwilcox/staged-recipes,mariusvniekerk/staged-recipes,jakirkham/staged-recipes,stuertz/staged-recipes,jakirkham/staged-recipes,ocefpaf/staged-recipes,hadim/staged-recipes,scopatz/staged-recipes,goanpeca/staged-recipes,stuertz/staged-recipes,scopatz/staged-recipes,patricksnape/staged-recipes,mariusvniekerk/staged-recipes,patricksnape/staged-recipes,johanneskoester/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,ReimarBauer/staged-recipes,ReimarBauer/staged-recipes,conda-forge/staged-recipes,igortg/staged-recipes,goanpeca/staged-recipes,hadim/staged-recipes
ef2d56ba2dae0215a38e8aef67cc9b1dc2b0a2f6
roles/qb/nodejs/yarn/setup/tasks/main.yml
roles/qb/nodejs/yarn/setup/tasks/main.yml
--- # tasks file for qb/yarn/setup - name: Manage Yarn installation on MacOSX include: "{{ role_path }}/tasks/distribution/{{ ansible_distribution }}/main.yml" - name: Add global Yarn packages with_items: "{{ yarn_setup_global_packages }}" stream: cmd: "yarn global add {{ item }}"
--- # tasks file for qb/yarn/setup - name: Manage Yarn installation on MacOSX include_tasks: "{{ role_path }}/tasks/distribution/{{ ansible_distribution }}/main.yml" - name: Add global Yarn packages with_items: "{{ yarn_setup_global_packages }}" stream: cmd: "yarn global add {{ item }}"
Change an include to include_tasks
Change an include to include_tasks
YAML
mit
nrser/qb,nrser/qb,nrser/qb,nrser/qb
27b5a7199f9164189c96f28288d356661bb775b1
cloudbuild.yaml
cloudbuild.yaml
substitutions: _REGION: us-central1 steps: - name: 'gcr.io/k8s-skaffold/skaffold' entrypoint: 'sh' args: - -xe - -c - | # Build and push images skaffold build --file-output=/workspace/artifacts.json \ --default-repo gcr.io/$PROJECT_ID \ --push=true # Test images skaffold test --build-artifacts=/workspace/artifacts.json - name: 'google/cloud-sdk:latest' entrypoint: 'sh' args: - -xe - -c - | gcloud alpha deploy apply --file deploy/pipeline.yaml \ --file deploy/staging.yaml \ --file deploy/canary.yaml \ --file deploy/prod.yaml \ --region ${_REGION} gcloud alpha deploy releases create $SHORT_SHA-$(date +%s) \ --delivery-pipeline web-app \ --description "$(git log -1 --pretty='%s')" \ --region ${_REGION} \ --build-artifacts /workspace/artifacts.json artifacts: objects: location: 'gs://$PROJECT_ID-gceme-artifacts/' paths: - '/workspace/artifacts.json' options: machineType: E2_HIGHCPU_8 timeout: 3600s
substitutions: _REGION: us-central1 steps: - name: 'gcr.io/k8s-skaffold/skaffold' entrypoint: 'sh' args: - -xe - -c - | # Build and push images skaffold build --file-output=/workspace/artifacts.json \ --default-repo gcr.io/$PROJECT_ID \ --push=true # Test images skaffold test --build-artifacts=/workspace/artifacts.json - name: 'google/cloud-sdk:latest' entrypoint: 'sh' args: - -xe - -c - | gcloud alpha deploy apply --region ${_REGION} --file deploy/pipeline.yaml gcloud alpha deploy apply --region ${_REGION} --file deploy/staging.yaml gcloud alpha deploy apply --region ${_REGION} --file deploy/canary.yaml gcloud alpha deploy apply --region ${_REGION} --file deploy/prod.yaml gcloud alpha deploy releases create $SHORT_SHA-$(date +%s) \ --delivery-pipeline web-app \ --description "$(git log -1 --pretty='%s')" \ --region ${_REGION} \ --build-artifacts /workspace/artifacts.json artifacts: objects: location: 'gs://$PROJECT_ID-gceme-artifacts/' paths: - '/workspace/artifacts.json' options: machineType: E2_HIGHCPU_8 timeout: 3600s
Use individual apply commands for each file
Use individual apply commands for each file
YAML
apache-2.0
google/golden-path-for-app-delivery,google/golden-path-for-app-delivery,google/golden-path-for-app-delivery
bfb278545705e68eb49afd3fd0124446246d3d9e
cloudbuild.yaml
cloudbuild.yaml
options: env: - "TERRAFORM_ENVIRONMENT_PATH=environments/prod" steps: - id: 'branch name' name: 'alpine' entrypoint: 'sh' args: - '-c' - | echo "***********************" echo "Branch: $BRANCH_NAME" echo "***********************" - id: 'tf init' name: 'hashicorp/terraform:0.12.20' entrypoint: 'sh' args: - '-c' - | cd "${TERRAFORM_ENVIRONMENT_PATH}" terraform init || exit 1 cd ../../ - id: 'tf plan' name: 'hashicorp/terraform:0.12.20' entrypoint: 'sh' args: - '-c' - | cd "${TERRAFORM_ENVIRONMENT_PATH}" terraform plan || exit 1 cd ../../ - id: 'tf apply' name: 'hashicorp/terraform:0.12.20' entrypoint: 'sh' args: - '-c' - | if [ -d "${BRANCH_NAME}" = "master" ]; then cd "${TERRAFORM_ENVIRONMENT_PATH}" echo $BRANCH_NAME exit 0 terraform apply -auto-approve || exit 1 else echo "***************************** SKIPPING APPLYING *******************************" echo "Not on master branch. Current branch is: $BRANCH_NAME" echo "*******************************************************************************" fi
steps: - id: 'branch name' name: 'alpine' entrypoint: 'sh' args: - '-c' - | echo "***********************" echo "Branch: $BRANCH_NAME" echo "***********************" - id: 'tf init' name: 'hashicorp/terraform:0.12.20' entrypoint: 'sh' args: - '-c' - | cd $_TERRAFORM_ENVIRONMENT_PATH terraform init || exit 1 cd ../../ - id: 'tf plan' name: 'hashicorp/terraform:0.12.20' entrypoint: 'sh' args: - '-c' - | cd $_TERRAFORM_ENVIRONMENT_PATH terraform plan || exit 1 cd ../../ - id: 'tf apply' name: 'hashicorp/terraform:0.12.20' entrypoint: 'sh' args: - '-c' - | if [ -d "${BRANCH_NAME}" = "master" ]; then cd $_TERRAFORM_ENVIRONMENT_PATH echo $BRANCH_NAME exit 0 terraform apply -auto-approve || exit 1 else echo "***************************** SKIPPING APPLYING *******************************" echo "Not on master branch. Current branch is: $BRANCH_NAME" echo "*******************************************************************************" fi substitutions: _TERRAFORM_ENVIRONMENT_PATH: 'environments/prod'
Use substitutions in cloud build
Use substitutions in cloud build
YAML
mit
ferrarimarco/home-lab,ferrarimarco/home-lab
6c228db8689c9c43a60a377b31887cecd1ff67e8
cluster/vm.yaml
cluster/vm.yaml
apiVersion: kubevirt.io/v1alpha1 kind: VM metadata: name: testvm spec: domain: devices: graphics: - type: spice interfaces: - source: network: default type: network video: - model: type: qxl disks: - type: network snapshot: external device: disk driver: name: qemu type: raw cache: none source: host: name: iscsi-demo-target port: "3260" protocol: iscsi name: iqn.2017-01.io.kubevirt:sn.42/2 target: dev: vda serials: - type: pty target: port: 0 consoles: - type: pty target: type: serial port: 0 memory: unit: MB value: 64 name: testvm os: type: os: hvm type: qemu
apiVersion: kubevirt.io/v1alpha1 kind: VM metadata: name: testvm spec: domain: devices: graphics: - type: spice interfaces: - type: network source: network: default video: - model: type: qxl disks: - type: network snapshot: external device: disk driver: name: qemu type: raw cache: none source: host: name: iscsi-demo-target port: "3260" protocol: iscsi name: iqn.2017-01.io.kubevirt:sn.42/2 target: dev: vda serials: - type: pty target: port: 0 consoles: - type: pty target: type: serial port: 0 memory: unit: MB value: 64 os: type: os: hvm type: qemu
Increase readability of example VM yaml
Increase readability of example VM yaml
YAML
apache-2.0
stu-gott/kubevirt,sungwonh/kubevirt,rmohr/kubevirt,kubevirt/kubevirt,fabiand/kubevirt,davidvossel/kubevirt,stu-gott/kubevirt,rmohr/kubevirt,davidvossel/kubevirt,mpolednik/kubevirt,kubevirt/kubevirt,kubevirt/kubevirt,fabiand/kubevirt,stu-gott/kubevirt,davidvossel/kubevirt,kubevirt/kubevirt,davidvossel/kubevirt,mpolednik/kubevirt,sungwonh/kubevirt,admiyo/kubevirt,stu-gott/kubevirt,admiyo/kubevirt
a7a4c2ddbaca358b53d2167c5ab81259d11f21ff
lib/generators/ops_care/templates/skylight.yml
lib/generators/ops_care/templates/skylight.yml
--- authentication: <%= ENV['SKYLIGHT_AUTHENTICATION'] %> ignored_endpoints: - ok_computer#index - ok_computer#show alert_log_file: log/skylight.log
--- authentication: <%= ENV['SKYLIGHT_AUTHENTICATION'] %> ignored_endpoints: - ok_computer/ok_computer#index - ok_computer/ok_computer#show alert_log_file: log/skylight.log
Fix Skylight ignored path config
Fix Skylight ignored path config
YAML
mit
reinteractive/OpsCare,reinteractive/OpsCare
89142db06edeab4ec427bbb10117d9c502329c61
spec/fixtures/users.yml
spec/fixtures/users.yml
root: name: Root User email: root@stockaid-domain.com encrypted_password: <%= User.new.send(:password_digest, "sudopwd123") %> role: admin acme_root: name: Acme Root email: root@stockaid-acme-domain.com encrypted_password: <%= User.new.send(:password_digest, "sudopwd123") %> role: none acme_normal: name: Acme Normal email: normal@stockaid-acme-domain.com encrypted_password: <%= User.new.send(:password_digest, "normalpwd123") %> role: none foo_inc_root: name: Foo Root email: root@stockaid-foo-inc-domain.com encrypted_password: <%= User.new.send(:password_digest, "sudopwd123") %> role: none
root: name: Root User phone_number: (408) 555-1234 address: 123 Broadway, Campbell, CA email: root@stockaid-domain.com encrypted_password: <%= User.new.send(:password_digest, "sudopwd123") %> role: admin acme_root: name: Acme Root phone_number: (408) 555-2222 address: 222 Broadway, Campbell, CA email: root@stockaid-acme-domain.com encrypted_password: <%= User.new.send(:password_digest, "sudopwd123") %> role: none acme_normal: name: Acme Normal phone_number: (408) 555-3333 address: 333 Broadway, Campbell, CA email: normal@stockaid-acme-domain.com encrypted_password: <%= User.new.send(:password_digest, "normalpwd123") %> role: none foo_inc_root: name: Foo Root phone_number: (408) 555-4444 address: 444 Broadway, Campbell, CA email: root@stockaid-foo-inc-domain.com encrypted_password: <%= User.new.send(:password_digest, "sudopwd123") %> role: none
Add new fields that aren't nullable
Add new fields that aren't nullable
YAML
mit
icodeclean/StockAid,on-site/StockAid,icodeclean/StockAid,on-site/StockAid,on-site/StockAid,icodeclean/StockAid
2e0b25d145f7e2357cd75470663a085e51f78611
schemata/redesignrating.yaml
schemata/redesignrating.yaml
--- id: "redesignrating.json" "$schema": "http://json-schema.org/draft-04/schema" title: Redesign rating description: '' type: object properties: layoutRating: type: integer description: "Layout rating" minimum: 1 maximum: 5 typographyRating: type: integer description: "Typography rating" minimum: 1 maximum: 5 colorRating: type: integer description: "Color rating" minimum: 1 maximum: 5 filterRating: type: integer description: "Image filters rating" minimum: 1 maximum: 5 additionalProperties: false required: [layoutRating, typographyRating, colorRating]
--- id: "redesignrating.json" "$schema": "http://json-schema.org/draft-04/schema" title: Redesign rating description: '' type: object properties: layoutRating: type: integer description: "Layout rating" minimum: 1 maximum: 5 typographyRating: type: integer description: "Typography rating" minimum: 1 maximum: 5 colorRating: type: integer description: "Color rating" minimum: 1 maximum: 5 brandColors: type: array description: "New user-selected brand colors for the site" items: "$ref": "base.json#/definitions/hexcolor" minItems: 1 maxItems: 5 filterRating: type: integer description: "Image filters rating" minimum: 1 maximum: 5 additionalProperties: false
Allow brand colors in redesign rating
Allow brand colors in redesign rating
YAML
mit
the-grid/apidocs,the-grid/apidocs,the-grid/apidocs,the-grid/apidocs