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
52d2b8b65564a5c72d8727cec697f59105090cc6
app/config/config_live.yml
app/config/config_live.yml
imports: - { resource: /etc/royaloperahouse.ini } - { resource: config.yml } monolog: handlers: main: type: stream path: %kernel.logs_dir%/%kernel.environment%.log level: debug
imports: - { resource: config.yml } monolog: handlers: main: type: stream path: %kernel.logs_dir%/%kernel.environment%.log level: debug
Remove legacy reference to an internal configuration file.
Remove legacy reference to an internal configuration file.
YAML
mit
royaloperahouse/stack-manager,royaloperahouse/stack-manager
ec5d9cd4087f52889d5010c431d645e569a5118e
app/config/config_prod.yml
app/config/config_prod.yml
imports: - { resource: config.yml } # In production environment you should know that the parameters for URL generation # always pass the requirements. Otherwise it would break your link (or even site with # strict_requirements = true). So we can disable the requirements check completely for # enhanced performance with strict_requirements = null. framework: router: strict_requirements: null doctrine: orm: metadata_cache_driver: apc result_cache_driver: apc query_cache_driver: apc monolog: handlers: main: type: fingers_crossed action_level: error handler: nested nested: type: rotating_file path: %kernel.logs_dir%/%kernel.environment%.log level: notice sentry: type: raven dsn: %sentry_dsn% level: notice
imports: - { resource: config.yml } # In production environment you should know that the parameters for URL generation # always pass the requirements. Otherwise it would break your link (or even site with # strict_requirements = true). So we can disable the requirements check completely for # enhanced performance with strict_requirements = null. framework: router: strict_requirements: null doctrine: orm: metadata_cache_driver: apc result_cache_driver: apc query_cache_driver: apc monolog: handlers: main: type: fingers_crossed action_level: error handler: nested nested: type: rotating_file path: %kernel.logs_dir%/%kernel.environment%.log level: notice
Remove sentry configuration from production
Remove sentry configuration from production
YAML
mit
ChrisdAutume/EtuUTT,ChrisdAutume/EtuUTT,ungdev/EtuUTT,ungdev/EtuUTT,ChrisdAutume/EtuUTT,ungdev/EtuUTT,ungdev/EtuUTT,ChrisdAutume/EtuUTT
28aa39a0a079abef98ae47de064e5f9ae83a0c23
metadata/com.github.niqdev.ipcam.yml
metadata/com.github.niqdev.ipcam.yml
Categories: - Internet License: MIT AuthorName: niqdev AuthorEmail: niqdev.info@gmail.com SourceCode: https://github.com/niqdev/ipcam-view IssueTracker: https://github.com/niqdev/ipcam-view/issues AutoName: IPCam Demo Description: |- Demo app for the [https://github.com/niqdev/ipcam-view ipcam-view library] with current features handle basic authentication, multiple camera in one activity and take snapshots. RepoType: git Repo: https://github.com/niqdev/ipcam-view.git Builds: - versionName: 1.7.0 versionCode: 10 commit: v1.7.0 subdir: app gradle: - yes scandelete: - mjpeg-view/src/main/jniLibs - versionName: 1.8.0 versionCode: 11 commit: v1.8.0 subdir: app gradle: - yes scandelete: - mjpeg-view/src/main/jniLibs - versionName: 1.9.0 versionCode: 12 commit: v1.9.0 subdir: app gradle: - yes scandelete: - mjpeg-view/src/main/jniLibs AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.9.0 CurrentVersionCode: 12
Categories: - Internet License: MIT AuthorName: niqdev AuthorEmail: niqdev.info@gmail.com SourceCode: https://github.com/niqdev/ipcam-view IssueTracker: https://github.com/niqdev/ipcam-view/issues AutoName: IPCam Demo Description: |- Demo app for the [https://github.com/niqdev/ipcam-view ipcam-view library] with current features handle basic authentication, multiple camera in one activity and take snapshots. RepoType: git Repo: https://github.com/niqdev/ipcam-view.git Builds: - versionName: 1.7.0 versionCode: 10 commit: v1.7.0 subdir: app gradle: - yes scandelete: - mjpeg-view/src/main/jniLibs - versionName: 1.8.0 versionCode: 11 commit: v1.8.0 subdir: app gradle: - yes scandelete: - mjpeg-view/src/main/jniLibs - versionName: 1.9.0 versionCode: 12 commit: v1.9.0 subdir: app gradle: - yes scandelete: - mjpeg-view/src/main/jniLibs AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.7.0 CurrentVersionCode: 10
Update CV of IPCam Demo to 1.7.0 (10)
Update CV of IPCam Demo to 1.7.0 (10)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
b57992928ea669e694aa8bd671a4d28b9c358698
.github/workflows/convert-blogpost-to-xml.yml
.github/workflows/convert-blogpost-to-xml.yml
#Run jekyll2cms in a Docker container to convert the new blogpost into XML name: convert-blogpost-to-xml on: push: branches: - master jobs: pull-jekyll2cms-docker-image: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Pull Docker image run: docker pull jekyll2cms/jekyll2cms:latest run-jekyll2cms-docker-image: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Run Docker image run: docker run jekyll2cms/jekyll2cms:latest --env JEKYLL_START_NOTIFICATION=yes --env REPOSITORY_REMOTE_URL=https://github.com/s-gbz/devblog --env REPOSITORY_LOCAL_USER_NAME=${{ secrets.REPOSITORY_LOCAL_USER_NAME }} --env REPOSITORY_LOCAL_USER_MAIL=${{ REPOSITORY_LOCAL_USER_MAIL }} --env REPOSITORY_LOCAL_USER_PASSWORD=${{ secrets.REPOSITORY_LOCAL_USER_PASSWORD }}
#Run jekyll2cms in a Docker container to convert the new blogpost into XML name: convert-blogpost-to-xml on: push: branches: - master jobs: pull-and-run-jekyll2cms-docker-image: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Pull Docker image run: docker pull jekyll2cms/jekyll2cms:latest - name: Run Docker image run: docker run jekyll2cms/jekyll2cms:latest --env JEKYLL_START_NOTIFICATION=yes --env REPOSITORY_REMOTE_URL=https://github.com/s-gbz/devblog --env REPOSITORY_LOCAL_USER_NAME=${{ secrets.REPOSITORY_LOCAL_USER_NAME }} --env REPOSITORY_LOCAL_USER_MAIL=${{ REPOSITORY_LOCAL_USER_MAIL }} --env REPOSITORY_LOCAL_USER_PASSWORD=${{ secrets.REPOSITORY_LOCAL_USER_PASSWORD }}
Unify pull & run steps
Unify pull & run steps
YAML
mit
adessoAG/devblog,adessoAG/devblog,adessoAG/devblog,adessoAG/devblog
ad1f6adf3c34648b3608b59cd7543620f568e643
circle.yml
circle.yml
dependencies: pre: - echo $GCLOUD_SERVICE_KEY | base64 --decode --ignore-garbage > ${HOME}/gcloud-service-key.json - sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update - sudo /opt/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json - sudo /opt/google-cloud-sdk/bin/gcloud config set project $GCLOUD_PROJECT - ssh-keygen -f ~/.ssh/google_compute_engine -N "" - go get -t -d -v ./... - go build -v test: override: - go test -v -race ./... deployment: prod: branch: master commands: - sudo /opt/google-cloud-sdk/bin/gcloud compute ssh gogeta-instance-1 --command="echo Running Hal"
dependencies: pre: - echo $GCLOUD_SERVICE_KEY | base64 --decode --ignore-garbage > ${HOME}/gcloud-service-key.json - sudo /opt/google-cloud-sdk/bin/gcloud --quiet components update - sudo /opt/google-cloud-sdk/bin/gcloud auth activate-service-account --key-file ${HOME}/gcloud-service-key.json - sudo /opt/google-cloud-sdk/bin/gcloud config set project $GCLOUD_PROJECT - ssh-keygen -f ~/.ssh/google_compute_engine -N "" - go get -t -d -v ./... - go build -v test: override: - go test -v -race ./... deployment: prod: branch: master commands: - sudo /opt/google-cloud-sdk/bin/gcloud compute ssh gogeta-instance-1 --zone=europe-west1-b --command="echo Running Hal"
Add zone to compute instance request
Add zone to compute instance request
YAML
mit
Gamebuildr/Hal
0fda7da80abcee4fb79da591f7137d6c0afd906e
circle.yml
circle.yml
--- machine: java: version: oraclejdk8 environment: TERM: dumb checkout: post: - "if [ -e .git/shallow ]; then git fetch --unshallow; fi" - git fetch --tags - git submodule update --init --remote dependencies: override: - ./gradlew --stacktrace --parallel client:dependencies plugins:dependencies test: override: - ./gradlew --stacktrace --parallel test
--- machine: java: version: oraclejdk8 environment: TERM: dumb checkout: post: - "if [ -e .git/shallow ]; then git fetch --unshallow; fi" - git fetch --tags - git submodule update --init --remote dependencies: override: - ./gradlew --stacktrace --parallel client:dependencies plugins:dependencies test: override: - ./gradlew --stacktrace --parallel test general: artifacts: - plugins/dist - client/build/libs
Add artifacts to meta build.
Add artifacts to meta build.
YAML
mit
DMDirc/Meta,csmith/Meta
03206d3a8357da158e77f63b1192ae22e4a9e0fb
circle.yml
circle.yml
machine: ruby: version: 1.9.3-p385 node: version: 6.2.2 dependencies: pre: - 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc' - npm set progress=false bundler: without: - benchmark - deploy - production - debug cache_directories: - .bundle/ test: override: - bundle exec rspec spec - ./node_modules/.bin/slate-tools test
machine: ruby: version: 1.9.3-p385 node: version: 6.2.2 dependencies: pre: - 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc' - npm set progress=false bundler: without: - benchmark - deploy - production - debug cache_directories: - .bundle/ test: override: - bundle exec rspec spec
Remove linting from CI tests
Remove linting from CI tests
YAML
mit
t-kelly/slate,t-kelly/slate
2353b037cd4a0e3d395209fd2f4f97c21b759f12
circle.yml
circle.yml
machine: services: - docker dependencies: override: - docker info - sudo pip install --upgrade docker-compose==1.2.0 # builds the image as a dependency - docker build -t soutech/champaign_web . test: override: # tests the built image through docker-compose - annotate-output docker-compose -f circle/docker-compose.yml run web database: override: - echo "look in circle/run-tests for database setup for testing environment" deployment: hub: # change back to master! branch: aws-deploy commands: - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS - docker push soutech/champaign_web
machine: services: - docker dependencies: override: - docker info - sudo pip install --upgrade docker-compose==1.2.0 # builds the image as a dependency - docker build -t soutech/champaign_web . test: override: # tests the built image through docker-compose - annotate-output docker-compose -f circle/docker-compose.yml run web database: override: - echo "look in circle/run-tests for database setup for testing environment" deployment: hub: # change back to master! branch: aws-update-branch commands: - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS - docker push soutech/champaign_web # deploy to elastic beanstalk # elasticbeanstalk: # branch: master # commands: # - docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS # - ./deploy.sh $CIRCLE_SHA1
Change yaml deploy branch to aws-update-branch to pass through tests in build and to push to Docker Hub.
Change yaml deploy branch to aws-update-branch to pass through tests in build and to push to Docker Hub.
YAML
mit
SumOfUs/Champaign,SumOfUs/Champaign,SumOfUs/Champaign,SumOfUs/Champaign,SumOfUs/Champaign
aea115c7f9935fd75c96fae66b05796213a3f675
circle.yml
circle.yml
dependencies: cache_directories: - ~/rethinkdb pre: - | if [ ! -f ~/rethinkdb/*.deb ] ; then source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add - sudo apt-get update mkdir ~/rethinkdb cd ~/rethinkdb apt-get download rethinkdb fi - sudo dpkg -i ~/rethinkdb/*.deb post: - rethinkdb: background: true test: pre: - sleep 30 override: - npm run test post: - cp coverage.html $CIRCLE_ARTIFACTS
machine: node: version: 0.12.0 dependencies: cache_directories: - ~/rethinkdb pre: - | if [ ! -f ~/rethinkdb/*.deb ] ; then source /etc/lsb-release && echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" | sudo tee /etc/apt/sources.list.d/rethinkdb.list wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add - sudo apt-get update mkdir ~/rethinkdb cd ~/rethinkdb apt-get download rethinkdb fi - sudo dpkg -i ~/rethinkdb/*.deb post: - rethinkdb: background: true test: pre: - sleep 10 override: - npm run test post: - cp coverage.html $CIRCLE_ARTIFACTS
Make CircleCI use node v0.12.0
Make CircleCI use node v0.12.0
YAML
mit
FOUfashion/api
6039c97268277da51f1364af0833895171d32657
circle.yml
circle.yml
# Set up the machine machine: environment: COVERALLS_REPO_TOKEN: 26O5nwca92Yp0383fqlTwPQKAz4652pEo # Install stuff dependencies: cache_directories: - "~/miniconda3/pkgs" override: - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - pushd ${HOME}/miniconda3/pkgs && find -maxdepth 1 -mindepth 1 -type d | xargs rm -rf && popd - chmod +x miniconda.sh - ./miniconda.sh -b -f - ${HOME}/miniconda3/bin/conda config --add channels desilinguist - ${HOME}/miniconda3/bin/conda update --yes conda - ${HOME}/miniconda3/bin/conda install --file conda_requirements.txt --yes - ${HOME}/miniconda3/bin/pip install nose-cov python-coveralls - ${HOME}/miniconda3/bin/pip install -e . # Run test test: override: - ${HOME}/miniconda3/bin/nosetests -v tests --with-coverage --cover-package=rsmtool --cov-config .coveragerc post: - cd ${HOME}/rsmtool && ${HOME}/miniconda3/bin/coveralls
# Set up the machine machine: environment: COVERALLS_REPO_TOKEN: 26O5nwca92Yp0383fqlTwPQKAz4652pEo # Install stuff dependencies: cache_directories: - "~/miniconda3/pkgs" override: - wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh - pushd ${HOME}/miniconda3/pkgs && find -maxdepth 1 -mindepth 1 -type d | xargs rm -rf && popd - chmod +x miniconda.sh - ./miniconda.sh -b -f - ${HOME}/miniconda3/bin/conda config --add channels desilinguist - ${HOME}/miniconda3/bin/conda update --yes conda - ${HOME}/miniconda3/bin/conda create --name rsmenv --file conda_requirements.txt --yes - ${HOME}/miniconda3/envs/rsmenv/bin/pip install nose-cov python-coveralls - ${HOME}/miniconda3/envs/rsmenv/bin/pip install -e . # Run test test: override: - ${HOME}/miniconda3/envs/rsmenv/bin/nosetests -v tests --with-coverage --cover-package=rsmtool --cov-config .coveragerc post: - cd ${HOME}/rsmtool && ${HOME}/miniconda3/envs/rsmenv/bin/coveralls
Create new conda environment instead of using root environment.
Create new conda environment instead of using root environment.
YAML
apache-2.0
EducationalTestingService/rsmtool
634ae8917067abf025265091a979c30b3f5e603f
circle.yml
circle.yml
dependencies: override: - curl -L https://atom.io/download/deb -o atom-amd64.deb - sudo dpkg --install atom-amd64.deb || true - sudo apt-get update - sudo apt-get -f install - node --version - npm --version - atom --version - npm prune - npm install - apm rebuild - npm run build test: override: - npm test machine: node: version: 6.3.0
dependencies: override: - curl -L https://atom.io/download/deb -o atom-amd64.deb - sudo dpkg --install atom-amd64.deb || true - sudo apt-get update - sudo apt-get -f install - node --version - npm --version - atom --version - npm prune - npm install - apm rebuild - npm run compile test: override: - npm test machine: node: version: 6.3.0
Fix ci build script name
:bug: Fix ci build script name
YAML
mit
steelbrain/consistent-env
c72a6f15f8493a9e43dfe496f4a41b2197ef8d6c
circle.yml
circle.yml
machine: java: version: oraclejdk8 dependencies: pre: - echo y | android update sdk --no-ui --all --filter "android-23" - echo y | android update sdk --no-ui --all --filter "build-tools-23.0.1" test: override: # start the emulator - emulator -avd circleci-android21 -no-audio -no-window: background: true parallel: true # wait for it to have booted - circle-android wait-for-boot # run tests against the emulator. - ./gradlew :demo:connectedAndroidTest # copy the build outputs to artifacts - cp -r mv2m/build/outputs $CIRCLE_ARTIFACTS # copy the test results to the test results directory. - cp -r mv2m/build/outputs/androidTest-results/* $CIRCLE_TEST_REPORTS
machine: java: version: oraclejdk8 dependencies: pre: - echo y | android update sdk --no-ui --all --filter "android-23" - echo y | android update sdk --no-ui --all --filter "build-tools-23.0.1" test: override: - ./gradlew :demo:test :demo:jacocoUnitTestReport # start the emulator - emulator -avd circleci-android21 -no-audio -no-window: background: true parallel: true # wait for it to have booted - circle-android wait-for-boot # run tests against the emulator. - ./gradlew :demo:connectedAndroidTest # copy the build outputs to artifacts - cp -r mv2m/build/outputs $CIRCLE_ARTIFACTS # copy the test results to the test results directory. - cp -r mv2m/build/outputs/androidTest-results/* $CIRCLE_TEST_REPORTS
Build and junit tests before starting the emulator
Build and junit tests before starting the emulator
YAML
apache-2.0
fabioCollini/mv2m
6c987b9006e0ddf2bceb238dc62f13b2a2c54a3a
circle.yml
circle.yml
machine: services: - docker environment: PACKER_VERSION: 0.10.1 general: branches: ignore: - gh-pages # list of branches to ignore dependencies: pre: - > sudo apt-get update && sudo apt-get install -qq wget unzip && pushd /usr/bin && echo "Downloading packer ${PACKER_VERSION}..." && sudo wget --no-verbose https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip && echo "Installing packer ${PACKER_VERSION}..." && sudo unzip packer_${PACKER_VERSION}_linux_amd64.zip && sudo rm packer_${PACKER_VERSION}_linux_amd64.zip test: override: - make lint # deployment: # release: # tag: /[0-9]+(\.[0-9]+)*/ # owner: circleci # commands: # - make push template=jessie # - make push template=archlinux # - make push template=kali
machine: services: - docker environment: PACKER_VERSION: 0.10.1 general: branches: ignore: - gh-pages # list of branches to ignore dependencies: pre: - > sudo apt-get update && sudo apt-get install -qq wget unzip && pushd /usr/bin && echo "Downloading packer ${PACKER_VERSION}..." && sudo wget --no-verbose https://releases.hashicorp.com/packer/${PACKER_VERSION}/packer_${PACKER_VERSION}_linux_amd64.zip && echo "Installing packer ${PACKER_VERSION}..." && sudo unzip packer_${PACKER_VERSION}_linux_amd64.zip && sudo rm packer_${PACKER_VERSION}_linux_amd64.zip test: override: - VAGRANTCLOUD_TOKEN="1234567890" make lint # deployment: # release: # tag: /[0-9]+(\.[0-9]+)*/ # owner: circleci # commands: # - make push template=jessie # - make push template=archlinux # - make push template=kali
Fix CircleCI with fake token
Fix CircleCI with fake token Signed-off-by: Nicolas Lamirault <57a11b2dec5b8363280015e1663433805cc2169e@gmail.com>
YAML
apache-2.0
nlamirault/bento
a2f1f0ce8675244f44f5aca5392d32108fa2043c
circle.yml
circle.yml
machine: python: version: 3.5.2 dependencies: pre: - pip install --upgrade pip - pip install sphinx-foundation-theme - git clone -b gh-pages git@github.com:KitwareMedical/SlicerITKUltrasoundDoc Documentation/build/html - cd Documentation/build/html && git config user.name CircleCI && git config user.email "matt.mccormick@kitware.com" test: override: - cd Documentation && make html && cd build/html && git add * && git commit -m "Build on $(date) of $(cd ..; git rev-parse --short HEAD)" || true deployment: documentation: branch: master commands: - cd Documentation/build/html && git push origin gh-pages
machine: python: version: 3.5.2 dependencies: pre: - pip install --upgrade pip - pip install sphinx-foundation-theme - pip install ctk-cli - git clone -b gh-pages git@github.com:KitwareMedical/SlicerITKUltrasoundDoc Documentation/build/html - cd Documentation/build/html && git config user.name CircleCI && git config user.email "matt.mccormick@kitware.com" test: override: - cd Documentation && make html && cd build/html && git add * && git commit -m "Build on $(date) of $(cd ..; git rev-parse --short HEAD)" || true deployment: documentation: branch: master commands: - cd Documentation/build/html && git push origin gh-pages
Install ctk-cli in CircleCI dependencies
DOC: Install ctk-cli in CircleCI dependencies
YAML
apache-2.0
KitwareMedical/SlicerITKUltrasound,KitwareMedical/SlicerITKUltrasound
2da4669db9485576fd5a317b1e3094c06e5e99ff
circle.yml
circle.yml
dependencies: override: - bundle install - npm install -g sassdoc general: branches: ignore: - gh-pages test: override: - bundle exec rake post: - sassdoc core/ --parse --verbose --strict
dependencies: override: - bundle install - npm install -g sassdoc general: branches: ignore: - gh-pages machine: node: version: 6.9.5 test: override: - bundle exec rake post: - sassdoc core/ --parse --verbose --strict
Set the version of Node.js for CircleCI
Set the version of Node.js for CircleCI
YAML
mit
thoughtbot/bourbon,Jazz-Man/bourbon,thoughtbot/bourbon,Jazz-Man/bourbon
fef18b6fd2dc1d88216c62dc08d263a35b3fbc20
circle.yml
circle.yml
version: 2 jobs: build: working_directory: ~/code docker: - image: circleci/android:api-26-alpha environment: JVM_OPTS: -Xmx3200m steps: - checkout - restore_cache: key: jars-{{ checksum "build.gradle" }}-{{ checksum "library/build.gradle" }} - run: name: Setup emulator command: sdkmanager "system-images;android-22;default;armeabi-v7a" && (echo "no" | avdmanager create avd -n test -k "system-images;android-22;default;armeabi-v7a") & - run: name: Download Dependencies command: ./gradlew androidDependencies - save_cache: paths: - ~/.gradle key: jars-{{ checksum "build.gradle" }}-{{ checksum "library/build.gradle" }} - run: name: Run Tests command: ./gradlew check - store_artifacts: path: library/build/reports destination: reports - store_test_results: path: library/build/test-results
version: 2 jobs: build: working_directory: ~/code docker: - image: circleci/android:api-26-alpha environment: JVM_OPTS: -Xmx3200m steps: - checkout - restore_cache: key: jars-{{ checksum "build.gradle" }}-{{ checksum "library/build.gradle" }} - run: name: Setup emulator command: sdkmanager "system-images;android-22;default;armeabi-v7a" && avdmanager list avd && (echo "no" | avdmanager create avd -n test -k "system-images;android-22;default;armeabi-v7a") & - run: name: Download Dependencies command: ./gradlew androidDependencies - save_cache: paths: - ~/.gradle key: jars-{{ checksum "build.gradle" }}-{{ checksum "library/build.gradle" }} - run: name: Run Tests command: adb devices && ./gradlew check :demo:connectedAndroidTest - store_artifacts: path: library/build/reports destination: reports - store_test_results: path: library/build/test-results
Add UI test task and debug info to CircleCI
Add UI test task and debug info to CircleCI
YAML
mit
thyrlian/AwesomeValidation,thyrlian/AwesomeValidation
d48a593523daa166cfdf02e9ebdf4d6eda0a59b6
circle.yml
circle.yml
machine: node: version: 0.12.7 dependencies: # cache_directories: pre: - sudo /opt/google-cloud-sdk/bin/gcloud -q components update - sudo chown -R ubuntu:ubuntu ~/.config/gcloud - echo $GCLOUD_AUTH_KEY | base64 --decode > ~/gcloud_auth.json - gcloud auth activate-service-account $GCLOUD_AUTH_EMAIL --key-file ~/gcloud_auth.json - gcloud config set project $GCLOUD_PROJECT_ID override: - npm install - bower install test: override: - grunt test post: - grunt deployment: master: branch: master owner: o19s commands: - gsutil rsync -R dist gs://splainer.io/
machine: node: version: 0.12.7 dependencies: # cache_directories: pre: - sudo /opt/google-cloud-sdk/bin/gcloud -q components update - sudo chown -R ubuntu:ubuntu ~/.config/gcloud - echo $GCLOUD_AUTH_KEY | base64 --decode > ~/gcloud_auth.json - gcloud auth activate-service-account $GCLOUD_AUTH_EMAIL --key-file ~/gcloud_auth.json - gcloud config set project $GCLOUD_PROJECT_ID override: - npm install - npm install -g bower - bower install test: override: - grunt test post: - grunt deployment: master: branch: master owner: o19s commands: - gsutil rsync -R dist gs://splainer.io/
Install bower before running bower install
Install bower before running bower install
YAML
apache-2.0
o19s/splainer,o19s/splainer,o19s/splainer
6483689123e6e9832faa85e97790ae889f051c35
metadata/de.bahnhoefe.deutschlands.bahnhofsfotos.yml
metadata/de.bahnhoefe.deutschlands.bahnhofsfotos.yml
Categories: - Navigation - Games License: MIT AuthorName: Railwaystations Team WebSite: https://railway-stations.org SourceCode: https://github.com/RailwayStations/RSAndroidApp IssueTracker: https://github.com/RailwayStations/RSAndroidApp/issues AutoName: Railway station photos RepoType: git Repo: https://github.com/RailwayStations/RSAndroidApp.git Builds: - versionName: 12.2.2 versionCode: 48 commit: 12.2.2 subdir: app gradle: - yes - versionName: 12.2.5 versionCode: 51 commit: 12.2.5 subdir: app gradle: - yes - versionName: 12.3.0 versionCode: 52 commit: 12.3.0 subdir: app gradle: - yes - versionName: 12.3.1 versionCode: 53 commit: 12.3.1 subdir: app gradle: - yes - versionName: 12.3.2 versionCode: 54 commit: 12.3.2 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 12.3.2 CurrentVersionCode: 54
Categories: - Navigation - Games License: MIT AuthorName: Railwaystations Team WebSite: https://railway-stations.org SourceCode: https://github.com/RailwayStations/RSAndroidApp IssueTracker: https://github.com/RailwayStations/RSAndroidApp/issues AutoName: Railway station photos RepoType: git Repo: https://github.com/RailwayStations/RSAndroidApp.git Builds: - versionName: 12.2.2 versionCode: 48 commit: 12.2.2 subdir: app gradle: - yes - versionName: 12.2.5 versionCode: 51 commit: 12.2.5 subdir: app gradle: - yes - versionName: 12.3.0 versionCode: 52 commit: 12.3.0 subdir: app gradle: - yes - versionName: 12.3.1 versionCode: 53 commit: 12.3.1 subdir: app gradle: - yes - versionName: 12.3.2 versionCode: 54 commit: 12.3.2 subdir: app gradle: - yes - versionName: 12.4.1 versionCode: 56 commit: 12.4.1 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 12.4.1 CurrentVersionCode: 56
Update Railway station photos to 12.4.1 (56)
Update Railway station photos to 12.4.1 (56)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
04a4fb92f1a83dfef502dea2780275a774cbdcfa
recipes/pluginbase/meta.yaml
recipes/pluginbase/meta.yaml
{% set name = "pluginbase" %} {% set version = "0.5" %} {% set sha256 = "b4f830242a078a4f44c978a84f3365bba4d008fdd71a591c71447f4df35354dd" %} package: name: {{ name|lower }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: {{ sha256 }} build: noarch: python number: 0 script: python setup.py install --single-version-externally-managed --record=record.txt requirements: host: - python - setuptools run: - python about: home: http://github.com/mitsuhiko/pluginbase license: BSD-3-Clause license_file: LICENSE summary: A support library for building plugins sytems in Python. dev_url: https://github.com/mitsuhiko/pluginbase extra: recipe-maintainers: - windelbouwman - windelbouwmanbosch
{% set name = "pluginbase" %} {% set version = "0.5" %} {% set sha256 = "b4f830242a078a4f44c978a84f3365bba4d008fdd71a591c71447f4df35354dd" %} package: name: {{ name|lower }} version: {{ version }} source: fn: {{ name }}-{{ version }}.tar.gz url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: {{ sha256 }} build: noarch: python number: 0 script: python setup.py install --single-version-externally-managed --record=record.txt requirements: host: - python - setuptools run: - python test: imports: - pluginbase about: home: http://github.com/mitsuhiko/pluginbase license: BSD-3-Clause license_file: LICENSE summary: A support library for building plugins sytems in Python. dev_url: https://github.com/mitsuhiko/pluginbase extra: recipe-maintainers: - windelbouwman - windelbouwmanbosch
Add a test section to check if the module is importable.
Add a test section to check if the module is importable.
YAML
bsd-3-clause
patricksnape/staged-recipes,Juanlu001/staged-recipes,petrushy/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,pmlandwehr/staged-recipes,ceholden/staged-recipes,mcs07/staged-recipes,ocefpaf/staged-recipes,SylvainCorlay/staged-recipes,rvalieris/staged-recipes,jakirkham/staged-recipes,kwilcox/staged-recipes,stuertz/staged-recipes,igortg/staged-recipes,ReimarBauer/staged-recipes,chrisburr/staged-recipes,sodre/staged-recipes,sodre/staged-recipes,petrushy/staged-recipes,scopatz/staged-recipes,rvalieris/staged-recipes,guillochon/staged-recipes,igortg/staged-recipes,isuruf/staged-recipes,chrisburr/staged-recipes,sodre/staged-recipes,ocefpaf/staged-recipes,shadowwalkersb/staged-recipes,stuertz/staged-recipes,asmeurer/staged-recipes,pmlandwehr/staged-recipes,dschreij/staged-recipes,sannykr/staged-recipes,isuruf/staged-recipes,Cashalow/staged-recipes,birdsarah/staged-recipes,mariusvniekerk/staged-recipes,rmcgibbo/staged-recipes,scopatz/staged-recipes,sannykr/staged-recipes,NOAA-ORR-ERD/staged-recipes,synapticarbors/staged-recipes,jjhelmus/staged-recipes,NOAA-ORR-ERD/staged-recipes,hadim/staged-recipes,ceholden/staged-recipes,Cashalow/staged-recipes,mariusvniekerk/staged-recipes,hadim/staged-recipes,asmeurer/staged-recipes,goanpeca/staged-recipes,synapticarbors/staged-recipes,patricksnape/staged-recipes,barkls/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,rmcgibbo/staged-recipes,mcs07/staged-recipes,Juanlu001/staged-recipes,SylvainCorlay/staged-recipes,conda-forge/staged-recipes,cpaulik/staged-recipes,barkls/staged-recipes,shadowwalkersb/staged-recipes,basnijholt/staged-recipes,glemaitre/staged-recipes,basnijholt/staged-recipes,glemaitre/staged-recipes,jjhelmus/staged-recipes,ReimarBauer/staged-recipes,guillochon/staged-recipes,cpaulik/staged-recipes,kwilcox/staged-recipes,birdsarah/staged-recipes,jochym/staged-recipes,dschreij/staged-recipes,johanneskoester/staged-recipes,jakirkham/staged-recipes
59de783535e5aabd5d68cd1d6ab425a8cd754b47
.github/workflows/ghsa-sync-jira.yml
.github/workflows/ghsa-sync-jira.yml
name: GitHub Security Alerts for Jira on: schedule: - cron: '0 */1 * * *' jobs: syncSecurityAlerts: runs-on: ubuntu-latest steps: - name: "Sync security alerts to Jira issues" uses: reload/github-security-jira@v1.x env: GH_SECURITY_TOKEN: ${{ secrets.GH_TOKEN }} JIRA_TOKEN: ${{ secrets.JIRA_TOKEN }} JIRA_HOST: ${{ secrets.JIRA_HOST_URL }} JIRA_USER: ${{ secrets.JIRA_USER }} JIRA_PROJECT: SEC JIRA_ISSUE_TYPE: Bug JIRA_RESTRICTED_COMMENT_ROLE: Administrator
name: GitHub Security Alerts for Jira on: schedule: - cron: '0 */6 * * *' jobs: syncSecurityAlerts: runs-on: ubuntu-latest steps: - name: "Sync security alerts to Jira issues" uses: reload/github-security-jira@v1.x env: GH_SECURITY_TOKEN: ${{ secrets.GH_TOKEN }} JIRA_TOKEN: ${{ secrets.JIRA_TOKEN }} JIRA_HOST: ${{ secrets.JIRA_HOST_URL }} JIRA_USER: ${{ secrets.JIRA_USER }} JIRA_PROJECT: SEC JIRA_ISSUE_TYPE: Bug JIRA_RESTRICTED_COMMENT_ROLE: Administrator
Change security sync to every 6 hours
Change security sync to every 6 hours
YAML
mit
syntacticNaCl/budgeit,syntacticNaCl/budgeit,syntacticNaCl/budgeit
f067ebc8095b3db7814d08cdbc10741520a23919
.github/workflows/release-please.yml
.github/workflows/release-please.yml
on: push: branches: - main name: release-please jobs: release-please: runs-on: ubuntu-latest steps: - uses: google-github-actions/release-please-action@v3 with: release-type: node package-name: release-please-action - uses: actions/checkout@v2 if: ${{ steps.release.outputs.pr }} - uses: actions/setup-node@v1 if: ${{ steps.release.outputs.release_created }} with: node-version: 16 - name: Write test credentials if: ${{ steps.release.outputs.release_created }} run: | echo "${CLASP_CREDENTIALS}" > "${HOME}/.clasprc.json" env: CLASP_CREDENTIALS: ${{secrets.LIBRARIES_OWNER_CLASP_TOKEN}} - name: Depoy scripts if: ${{ steps.release.outputs.release_created }} run: | npx @google/clasp push npx @google/clasp version
on: push: branches: - main name: release-please jobs: release-please: runs-on: ubuntu-latest steps: - uses: google-github-actions/release-please-action@v3 with: release-type: node package-name: release-please-action - uses: actions/checkout@v2 if: ${{ steps.release.outputs.pr }} - uses: actions/setup-node@v1 if: ${{ steps.release.outputs.release_created }} with: node-version: 16 - name: Write test credentials if: ${{ steps.release.outputs.release_created }} run: | echo "${CLASP_CREDENTIALS}" > "${HOME}/.clasprc.json" env: CLASP_CREDENTIALS: ${{secrets.LIBRARIES_OWNER_CLASP_TOKEN}} - name: Depoy scripts if: ${{ steps.release.outputs.release_created }} run: | npx @google/clasp push MESSAGE=$(git log -1 --pretty=%B) npx @google/clasp version ${MESSAGE}
Add message when deploying new version
chore: Add message when deploying new version
YAML
apache-2.0
gsuitedevs/apps-script-oauth1,googleworkspace/apps-script-oauth1
3d5d9706f74fc53107387a872885fd6248476ffe
wercker.yml
wercker.yml
build: box: id: niaquinto/gradle entrypoint: /bin/bash -c steps: - script: name: Build java code code: | gradle assemble - script: name: Run Junit Tests code: | gradle test deploy: box: coenvl/alpine-git steps: - add-to-known_hosts: hostname: github.com fingerprint: SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8 - add-ssh-key: keyname: anonymous_github - script: name: Run anonymization script code: | ./anonymyze.sh
build: box: id: niaquinto/gradle entrypoint: /bin/sh -c "/bin/bash" steps: - script: name: Build java code code: | gradle assemble - script: name: Run Junit Tests code: | gradle test deploy: box: coenvl/alpine-git steps: - add-to-known_hosts: hostname: github.com fingerprint: SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8 - add-ssh-key: keyname: anonymous_github - script: name: Run anonymization script code: | ./anonymyze.sh
Fix from guys at slack
Fix from guys at slack
YAML
apache-2.0
coenvl/jSAM,coenvl/jSAM
c7da6bd3a3933eaca74e3a0a16e777784ffc97d7
lib/jekyll_picture_tag/defaults/presets.yml
lib/jekyll_picture_tag/defaults/presets.yml
markup: auto formats: [original] widths: [400, 600, 800, 1000] fallback_width: 800 fallback_format: original noscript: false link_source: false quality: 75
markup: auto formats: [original] widths: [400, 600, 800, 1000] fallback_width: 800 fallback_format: original noscript: false link_source: false quality: 75 data_sizes: true
Set default data_size setting true
Set default data_size setting true
YAML
bsd-3-clause
robwierzbowski/jekyll-picture-tag
e375bfea8b073ad4c26266a4a72520577e9df147
.binstar.yml
.binstar.yml
package: odo user: blaze platform: - linux-64 - linux-32 - osx-64 - win-32 - win-64 engine: - python=2.6 - python=2.7 - python=3.3 - python=3.4 before_script: - python -V script: - conda config --add channels blaze - conda build conda.recipe env: - LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 iotimeout: 120 build_targets: conda notifications: email: recipients: ['mrocklin@continuum.io', 'phillip.cloud@continuum.io'] --- platform: win-32 engine: python=2.6 env: LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 exclude: true --- platform: win-64 engine: python=2.6 env: LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 exclude: true
package: odo user: blaze platform: - linux-64 - linux-32 - osx-64 - win-32 - win-64 engine: - python=2.6 - python=2.7 - python=3.3 - python=3.4 before_script: - python -V install: - conda config --add channels blaze script: - conda build conda.recipe env: - LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 iotimeout: 120 build_targets: conda notifications: email: recipients: ['mrocklin@continuum.io', 'phillip.cloud@continuum.io'] --- platform: win-32 engine: python=2.6 env: LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 exclude: true --- platform: win-64 engine: python=2.6 env: LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 exclude: true
Move config add to install key
Move config add to install key
YAML
bsd-3-clause
cpcloud/odo,Dannnno/odo,ContinuumIO/odo,alexmojaki/odo,quantopian/odo,cowlicks/odo,ContinuumIO/odo,Dannnno/odo,quantopian/odo,cowlicks/odo,blaze/odo,alexmojaki/odo,blaze/odo,ywang007/odo,ywang007/odo,cpcloud/odo
750ac9cc155538c5fd18619881fcf0ca43821bf8
.codacy.yaml
.codacy.yaml
--- exclude_paths: - "**/src/test/**/*.*"
--- exclude_paths: - "**/src/test/**/*.*" # Exclude logging package because of underscored names. - "**/src/main/**/logging/*.*"
Exclude `logging` package from Codacy testing because of method names prefixed with underscores.
Exclude `logging` package from Codacy testing because of method names prefixed with underscores. This is pretty safe, since the main quality check is done by Error Prone.
YAML
apache-2.0
SpineEventEngine/base,SpineEventEngine/base,SpineEventEngine/base
e0255cc2027de05eb4c148d18789ce2e51b21548
.rubocop.yml
.rubocop.yml
AllCops: Exclude: - 'Gemfile' - 'Guardfile' - 'Rakefile' - 'bin/**/*' - 'config/**/*' - 'db/**/*' - 'lib/**/*' - 'spec/**/*' - 'app/helpers/flashes_helper.rb' - 'vendor/**/*' Layout/SpaceInsideHashLiteralBraces: Enabled: false Metrics/LineLength: Max: 85 Style/Documentation: Exclude: - 'app/controllers/**/*' - 'app/helpers/**.*' Style/ParallelAssignment: Enabled: false Style/TrailingCommaInArguments: EnforcedStyleForMultiline: comma Style/TrailingCommaInArrayLiteral: EnforcedStyleForMultiline: comma Style/TrailingCommaInHashLiteral: EnforcedStyleForMultiline: comma
AllCops: Exclude: - 'Gemfile' - 'Guardfile' - 'Rakefile' - 'bin/**/*' - 'config/**/*' - 'db/**/*' - 'lib/**/*' - 'spec/**/*' - 'app/helpers/flashes_helper.rb' - 'vendor/**/*' Layout/SpaceInsideHashLiteralBraces: Enabled: false Metrics/LineLength: Max: 85 Naming/UncommunicativeMethodParamName: Exclude: - 'app/models/github_api/response_object_converter.rb' Security/MarshalLoad: Exclude: - 'app/models/portfolio.rb' Style/Documentation: Exclude: - 'app/controllers/**/*' - 'app/helpers/**.*' Style/ParallelAssignment: Enabled: false Style/TrailingCommaInArguments: EnforcedStyleForMultiline: comma Style/TrailingCommaInArrayLiteral: EnforcedStyleForMultiline: comma Style/TrailingCommaInHashLiteral: EnforcedStyleForMultiline: comma
Add exceptions for unhelpful cops
Add exceptions for unhelpful cops
YAML
agpl-3.0
nilbus/github-portfolio,nilbus/github-portfolio,nilbus/github-portfolio,nilbus/github-portfolio
4a695af7d8ac4ada301d37081f2abb268f37b250
roles/common/tasks/main.yaml
roles/common/tasks/main.yaml
--- - name: Set up locales locale_gen: name={{item}} state=present sudo: true with_items: - fr_FR.UTF-8 - en_US.UTF-8 - name: apt-get update apt: update_cache=yes cache_valid_time=3600 sudo: true - name: apt-get upgrade apt: upgrade=full sudo: true - name: Set hostname hostname: name={{inventory_hostname}} sudo: true - name: Install vim apt: pkg=vim state=installed sudo: true
--- - name: Set up locales locale_gen: name={{item}} state=present sudo: true with_items: - fr_FR.UTF-8 - en_US.UTF-8 - name: apt-get update apt: update_cache=yes cache_valid_time=3600 sudo: true - name: apt-get upgrade apt: upgrade=full sudo: true - name: Set hostname hostname: name={{inventory_hostname}} sudo: true - name: Setup new hostname to loopback in /etc/hosts lineinfile: 'dest=/etc/hosts regexp="^127.0.1.1" line="127.0.1.1 {{inventory_hostname}}"' sudo: true - name: Install vim apt: pkg=vim state=installed sudo: true
Fix hostname should resolve to loopback in /etc/hosts
Fix hostname should resolve to loopback in /etc/hosts
YAML
mit
adrienkohlbecker/hypervisor,adrienkohlbecker/hypervisor
95e5f87e0026b90b37673e5aa38fc332e22da97b
roles/hipache/tasks/main.yml
roles/hipache/tasks/main.yml
--- # tasks file for hipach - name: Add tsuru repositories. apt_repository: repo='ppa:tsuru/ppa' update_cache=yes - name: Install system packages. apt: update_cache=true name="{{ item }}" with_items: packages - name: Install Hipache packages with npm npm: global=yes name=hipache state=present - name: copy hipache upstart script copy: src=hipache.upstart dest=/etc/init/hipache.conf owner=root group=root mode=0644 notify: - restart hipache - name: Copy configuration file. template: src=hipache.conf.j2 dest=/etc/hipache.conf notify: - restart hipache
--- # tasks file for hipach - name: Add tsuru repositories. apt_repository: repo='ppa:tsuru/ppa' update_cache=yes - name: Install system packages. apt: update_cache=true name="{{ item }}" with_items: packages # hipache package shipped with ubuntu does not allow # to specify an external redis server. - name: Install Hipache packages with npm npm: global=yes name=hipache state=present - name: copy hipache upstart script copy: src=hipache.upstart dest=/etc/init/hipache.conf owner=root group=root mode=0644 notify: - restart hipache - name: Create hipache log directory. file: dest=/var/log/hipache state=directory - name: Copy configuration file. template: src=hipache.conf.j2 dest=/etc/hipache.conf notify: - restart hipache
Create hipache log dir. (needed if hipache is not installed form apt repository)
Create hipache log dir. (needed if hipache is not installed form apt repository)
YAML
mit
alphagov/ansible-playbook-gandalf
897f3b11993e2732f41e1892fd93036ae0f73698
packages/ha/halves.yaml
packages/ha/halves.yaml
homepage: '' changelog-type: '' hash: b6b9529cbd3a85fab3dc42eeded2a8c7426de98cf92ff02613ba56679f339743 test-bench-deps: base: -any halves: -any hedgehog: ! '>=0.5 && <0.6' lens: -any maintainer: brian@brianmckenna.org synopsis: Splitting/combining data structures to/from halves, quarters, eighths changelog: '' basic-deps: base: ! '>=4.7 && <4.11' lens: ! '>=4.15 && <4.18' all-versions: - '0.1.0.0' author: Brian McKenna latest: '0.1.0.0' description-type: haddock description: Splitting/combining data structures to/from halves, quarters, eighths. license-name: BSD3
homepage: '' changelog-type: '' hash: eaccb9882e48d4d247f0d1258858f1949622642048b7f64fd9b88b432f94544c test-bench-deps: base: -any halves: -any hedgehog: ! '>=0.5 && <0.7' lens: -any maintainer: brian@brianmckenna.org synopsis: Split or combine data structures to and from halves, quarters, eighths changelog: '' basic-deps: base: ! '>=4.7 && <4.12' lens: ! '>=4.15 && <4.18' all-versions: - '0.1.0.0' - '0.1.0.1' author: Brian McKenna latest: '0.1.0.1' description-type: haddock description: Split or combine data structures to and from halves, quarters, eighths. license-name: BSD3
Update from Hackage at 2018-10-15T10:59:11Z
Update from Hackage at 2018-10-15T10:59:11Z
YAML
mit
commercialhaskell/all-cabal-metadata
f73e8a672086f131b4050caa98f697d8c20d9108
prow/prowjobs/kubeflow/kubeflow-presubmits.yaml
prow/prowjobs/kubeflow/kubeflow-presubmits.yaml
presubmits: kubeflow/pipelines: - name: kubeflow-pipeline-frontend-v2-test cluster: kubeflow optional: true always_run: false skip_report: true spec: containers: - image: node:12 command: - /bin/sh args: - -c - cd ./frontend && npm run test:ci:prow
presubmits: kubeflow/pipelines: - name: kubeflow-pipeline-frontend-v2-test cluster: build-kubeflow optional: true always_run: false skip_report: true spec: containers: - image: node:12 command: - /bin/sh args: - -c - cd ./frontend && npm run test:ci:prow
Correct kubeflow build cluster name
Correct kubeflow build cluster name
YAML
apache-2.0
GoogleCloudPlatform/oss-test-infra,GoogleCloudPlatform/oss-test-infra
c26c87d1e1ec1e3ee40c9d3ac614466c981fd8d5
locale/flarum-likes.yml
locale/flarum-likes.yml
flarum-likes: ## # UNIQUE KEYS - The following keys are used in only one location each. ## # Strings in this namespace are used by the admin interface. admin: # These strings are used in the Permissions page of the admin interface. permissions: like_posts_label: Like posts # Strings in this namespace are used by the forum user interface. forum: # These strings are used by the Notifications dropdown, a.k.a. "the bell". notifications: post_liked_text: "{username} liked your post" # These strings are displayed beneath individual posts. post: like_link: Like liked_by_text: "{users} likes this.|{users} like this." liked_by_self_text: "{users} like this." # Can be pluralized to agree with the number of users! others_link: "{count} others" unlike_link: Unlike you_text: You # These strings are used by the Users Who Like This modal dialog. post_likes: title: Users Who Like This # These strings are used in the Settings page. settings: notify_post_liked_label: Someone likes my post
flarum-likes: ## # UNIQUE KEYS - The following keys are used in only one location each. ## # Strings in this namespace are used by the admin interface. admin: # These strings are used in the Permissions page of the admin interface. permissions: like_posts_label: Like posts # Strings in this namespace are used by the forum user interface. forum: # These strings are used by the Notifications dropdown, a.k.a. "the bell". notifications: post_liked_text: "{username} liked your post" # These strings are displayed beneath individual posts. post: like_link: Like liked_by_text: "{users} likes this.|{users} like this." liked_by_self_text: "{users} like this." # Can be pluralized to agree with the number of users! others_link: "{count} others" unlike_link: Unlike you_text: You # These strings are used by the Users Who Like This modal dialog. post_likes: title: Users Who Like This # These strings are used in the Settings page. settings: notify_post_liked_label: Someone likes one of my posts
Modify the label for the notification preference setting
Modify the label for the notification preference setting
YAML
mit
raweba/flarum-ext-danish,ogioncz/flarum-ext-czech,pladask/flarum-ext-norwegian-nynorsk,balkanje/flarum-ext-bosnian1,flarum/flarum-ext-english,pladask/flarum-ext-norwegian-bokmal,FlarumChina/flarum-ext-simplified-chinese-pro,ogioncz/flarum-ext-czech,pladask/flarum-ext-norwegian-nynorsk,flarum/english,pladask/flarum-ext-norwegian-bokmal,FlarumChina/flarum-ext-simplified-chinese-pro,gtugablue/flarum-ext-portuguese
a45c268eae919deaa163518f507d3f58af303785
shippable.yml
shippable.yml
language: none build: pre_ci: - docker build -t masecret . pre_ci_boot: image_name: masecret ci: - nosetest
language: none build: pre_ci: - docker build -t masecret . pre_ci_boot: image_name: masecret ci: - nosetests
Fix command name to run inside CI container
Fix command name to run inside CI container
YAML
mit
orangain/masecret
5a3113848649d9bda17054c4ec45b42e0adab7ad
recipes/boost_histogram/conda_build_config.yaml
recipes/boost_histogram/conda_build_config.yaml
c_compiler: # [win] - vs2017 # [win] - vs2017 # [win] - vs2017 # [win] cxx_compiler: # [win] - vs2017 # [win] - vs2017 # [win] - vs2017 # [win] vc: # [win] - 14.1 # [win] - 14.1 # [win] - 14.1 # [win] python: # [win] - 2.7 # [win] - 3.6 # [win] - 3.7 # [win]
c_compiler: # [win] - vs2017 # [win] - vs2017 # [win] cxx_compiler: # [win] - vs2017 # [win] - vs2017 # [win] vc: # [win] - 14.1 # [win] - 14.1 # [win] python: # [win] - 3.6 # [win] - 3.7 # [win]
Drop Python 2.7 support on Windows
Drop Python 2.7 support on Windows
YAML
bsd-3-clause
mariusvniekerk/staged-recipes,kwilcox/staged-recipes,ocefpaf/staged-recipes,conda-forge/staged-recipes,SylvainCorlay/staged-recipes,scopatz/staged-recipes,SylvainCorlay/staged-recipes,patricksnape/staged-recipes,stuertz/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,conda-forge/staged-recipes,hadim/staged-recipes,goanpeca/staged-recipes,mariusvniekerk/staged-recipes,asmeurer/staged-recipes,jakirkham/staged-recipes,dschreij/staged-recipes,petrushy/staged-recipes,johanneskoester/staged-recipes,ReimarBauer/staged-recipes,isuruf/staged-recipes,ocefpaf/staged-recipes,birdsarah/staged-recipes,jochym/staged-recipes,dschreij/staged-recipes,Juanlu001/staged-recipes,igortg/staged-recipes,petrushy/staged-recipes,scopatz/staged-recipes,birdsarah/staged-recipes,ReimarBauer/staged-recipes,patricksnape/staged-recipes,goanpeca/staged-recipes,igortg/staged-recipes,chrisburr/staged-recipes,chrisburr/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,kwilcox/staged-recipes,mcs07/staged-recipes,mcs07/staged-recipes,johanneskoester/staged-recipes,hadim/staged-recipes,asmeurer/staged-recipes,Juanlu001/staged-recipes
b7e0e615bbab6f069e38f926956eba68bd5e7718
metadata/com.github.cvzi.screenshottile.yml
metadata/com.github.cvzi.screenshottile.yml
Categories: - System - Multimedia License: GPL-3.0-only SourceCode: https://github.com/cvzi/ScreenshotTile IssueTracker: https://github.com/cvzi/ScreenshotTile/issues AutoName: Screenshot Tile (NoRoot) Description: |- Adds a button/tile to the quick settings panel to take screenshots. After install you need to add the button/tile to your quick settings and then grant the permissions to record screen captures and save images to the internal storage. This is a fork of [https://github.com/ipcjs/ScreenshotTile ScreenshotTile] but does not require root. If you have root access, you should use the original app, it's faster and more reliant than this fork. RepoType: git Repo: https://github.com/cvzi/ScreenshotTile Builds: - versionName: 1.0.0 versionCode: 1 commit: v1.0.0 subdir: app gradle: - yes - versionName: 1.0.1 versionCode: 2 commit: v1.0.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.0.1 CurrentVersionCode: 2
Categories: - System - Multimedia License: GPL-3.0-only SourceCode: https://github.com/cvzi/ScreenshotTile IssueTracker: https://github.com/cvzi/ScreenshotTile/issues AutoName: Screenshot Tile (NoRoot) Description: |- Adds a button/tile to the quick settings panel to take screenshots. After install you need to add the button/tile to your quick settings and then grant the permissions to record screen captures and save images to the internal storage. This is a fork of [https://github.com/ipcjs/ScreenshotTile ScreenshotTile] but does not require root. If you have root access, you should use the original app, it's faster and more reliant than this fork. RepoType: git Repo: https://github.com/cvzi/ScreenshotTile Builds: - versionName: 1.0.0 versionCode: 1 commit: v1.0.0 subdir: app gradle: - yes - versionName: 1.0.1 versionCode: 2 commit: v1.0.1 subdir: app gradle: - yes - versionName: 1.0.2 versionCode: 3 commit: v1.0.2 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.0.2 CurrentVersionCode: 3
Update Screenshot Tile (NoRoot) to 1.0.2 (3)
Update Screenshot Tile (NoRoot) to 1.0.2 (3)
YAML
agpl-3.0
f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata
505da2f99446a5f31f48148602e17348dd8818f3
.github/workflows/merge-dependabot-upgrades.yml
.github/workflows/merge-dependabot-upgrades.yml
# See https://github.com/ridedott/merge-me-action/ # This workflow automates merges from patches sent by Dependabot, and # only by dependabot, once the other CI workflows pass name: Auto-merge Dependabot PRs on: workflow_run: types: - completed workflows: - "Continuous Integration" jobs: merge-me: name: Auto-merge Dependabot PRs runs-on: ubuntu-latest steps: - name: Auto-Merge if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ridedott/merge-me-action@v2.9.78 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE
# See https://github.com/ridedott/merge-me-action/ # This workflow automates merges from patches sent by Dependabot, and # only by dependabot, once the other CI workflows pass name: Auto-merge Dependabot PRs on: workflow_run: types: - completed workflows: - "Continuous Integration" jobs: merge-me: name: Auto-merge Dependabot PRs runs-on: ubuntu-latest steps: - name: Auto-Merge if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ridedott/merge-me-action@v2.9.79 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE
Bump ridedott/merge-me-action from 2.9.78 to 2.9.79
Bump ridedott/merge-me-action from 2.9.78 to 2.9.79 Bumps [ridedott/merge-me-action](https://github.com/ridedott/merge-me-action) from 2.9.78 to 2.9.79. - [Release notes](https://github.com/ridedott/merge-me-action/releases) - [Changelog](https://github.com/ridedott/merge-me-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/ridedott/merge-me-action/compare/v2.9.78...v2.9.79) --- updated-dependencies: - dependency-name: ridedott/merge-me-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@github.com>
YAML
mit
Ocramius/DoctrineBatchUtils
c3b24f46589d73ad1baf41524303d3f4d2d88277
http_methods/pubspec.yaml
http_methods/pubspec.yaml
name: http_methods version: 1.0.0 description: | List of all HTTP methods registered with IANA as list of strings, and metadata such as whether a method idempotent. homepage: https://github.com/google/dart-neats/tree/master/http_methods repository: https://github.com/google/dart-neats.git issue_tracker: https://github.com/google/dart-neats/labels/pkg:http_methods dev_dependencies: test: ^1.5.1 pedantic: ^1.4.0 environment: sdk: '>=2.0.0 <3.0.0'
name: http_methods version: 2.0.0-nullsafety.0 description: | List of all HTTP methods registered with IANA as list of strings, and metadata such as whether a method idempotent. homepage: https://github.com/google/dart-neats/tree/master/http_methods repository: https://github.com/google/dart-neats.git issue_tracker: https://github.com/google/dart-neats/labels/pkg:http_methods dev_dependencies: test: ^1.16.0-nullsafety pedantic: ^1.10.0-nullsafety environment: sdk: '>=2.12.0-0 <3.0.0'
Migrate http_methods to Dart null safety
Migrate http_methods to Dart null safety
YAML
apache-2.0
google/dart-neats,google/dart-neats
7e943e93268eb95119b747ac03c1e56acd019026
apps/elekto/deployment.yaml
apps/elekto/deployment.yaml
apiVersion: apps/v1 kind: Deployment metadata: name: elekto namespace: elekto labels: app: elekto spec: replicas: 1 selector: matchLabels: app: elekto strategy: type: Recreate template: metadata: labels: app: elekto spec: containers: - image: ghcr.io/elekto-io/elekto:sha-c25fc16 imagePullPolicy: Always name: elekto ports: - containerPort: 8080 protocol: TCP readinessProbe: failureThreshold: 5 httpGet: path: /health port: 8080 scheme: HTTP initialDelaySeconds: 30 periodSeconds: 60 timeoutSeconds: 5 resources: limits: memory: 1500M securityContext: allowPrivilegeEscalation: false privileged: false envFrom: - configMapRef: name: elekto-config - secretRef: name: elekto-secret terminationMessagePath: /dev/termination-log terminationMessagePolicy: File restartPolicy: Always terminationGracePeriodSeconds: 30
apiVersion: apps/v1 kind: Deployment metadata: name: elekto namespace: elekto labels: app: elekto spec: replicas: 1 selector: matchLabels: app: elekto strategy: type: Recreate template: metadata: labels: app: elekto spec: containers: - image: ghcr.io/elekto-io/elekto:sha-46597d4 imagePullPolicy: Always name: elekto ports: - containerPort: 8080 protocol: TCP readinessProbe: failureThreshold: 5 httpGet: path: /health port: 8080 scheme: HTTP initialDelaySeconds: 30 periodSeconds: 60 timeoutSeconds: 5 resources: limits: memory: 1500M securityContext: allowPrivilegeEscalation: false privileged: false envFrom: - configMapRef: name: elekto-config - secretRef: name: elekto-secret terminationMessagePath: /dev/termination-log terminationMessagePolicy: File restartPolicy: Always terminationGracePeriodSeconds: 30
Update elekto to 0.5.1 version
Update elekto to 0.5.1 version This is partly an attempt to address issue 2955 with recasting ballots, also some UI wording improvements Signed-off-by: Josh Berkus <c028c213ed5efcf30c3f4fc7361dbde0c893c5b7@agliodbs.com>
YAML
apache-2.0
kubernetes/k8s.io,kubernetes/k8s.io,kubernetes/k8s.io,kubernetes/k8s.io
15bfbc5078d113a6f7d4df737f9af70a4f809474
site/.forestry/front_matter/templates/event.yml
site/.forestry/front_matter/templates/event.yml
--- pages: - event/kindergarten-coffee.md - event/lego-ninjago-movie-morning.md hide_body: false fields: - name: date label: Today's Date type: datetime hidden: false default: '' config: required: true - name: publishdate label: Post Publish Date type: datetime hidden: false default: '' config: required: true - name: expirydate label: Post Expiration Date type: datetime hidden: false default: '' config: required: true - name: start label: Start Date and Time type: datetime hidden: false default: '' config: required: true - name: end label: End Date and Time type: datetime hidden: false default: '' config: required: true - name: title label: Event name type: text hidden: false default: '' config: required: true - name: location label: Location type: text hidden: false default: '' description: Enter the street address for the event. config: required: true - name: image label: Featured Image type: file hidden: false default: '' - name: description label: Event Summary type: textarea hidden: false default: '' description: Short description of the event. - name: type label: Type type: text hidden: true default: event
--- pages: - event/kindergarten-coffee.md - event/lego-ninjago-movie-morning.md hide_body: false fields: - name: date label: Today's Date type: datetime hidden: false default: '' config: required: true - name: publishdate label: Post Publish Date type: datetime hidden: false default: '' config: required: true description: The date that you want the post to show up after. - name: expirydate label: Post Expiration Date type: datetime hidden: false default: Invalid date config: required: true description: The date that the post should stop showing up on the site. - name: start label: Event Start Date/Time type: datetime hidden: false default: Invalid date config: required: true description: What date and time does the event start? - name: end label: End Date and Time type: datetime hidden: false default: Invalid date config: required: true description: What date/time does the event end? - name: title label: Event Title type: text hidden: false default: '' config: required: true description: What is the title of this event? - name: location label: Location type: text hidden: false default: '' description: Enter the street address for the event. config: required: true - name: image label: Featured Image type: file hidden: false default: '' - name: description label: Event Summary type: textarea hidden: false default: '' description: Short description of the event. - name: type label: Type type: text hidden: true default: event
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
IslandViewPTA/islandview-pta-site,IslandViewPTA/islandview-pta-site,IslandViewPTA/islandview-pta-site
a7fb3cf1821c5f57177eecccb682fa94bef4cac5
ci/parameters.yml
ci/parameters.yml
email-server: "smtp.svc.pivotal.io" email-from: "ci@spring.io" email-to: ["spring-boot-dev@pivotal.io"] github-repo: "https://github.com/spring-projects/spring-boot.git" github-repo-name: "spring-projects/spring-boot" docker-hub-organization: "springci" artifactory-server: "https://repo.spring.io/" branch: "2.0.x" build-name: "spring-boot" pipeline-name: "spring-boot-2.0.x" concourse-url: "https://ci.spring.io" bintray-subject: "spring" bintray-repo: "jars"
email-server: "smtp.svc.pivotal.io" email-from: "ci@spring.io" email-to: ["spring-boot-dev@pivotal.io"] github-repo: "https://github.com/spring-projects/spring-boot.git" github-repo-name: "spring-projects/spring-boot" docker-hub-organization: "springci" artifactory-server: "https://repo.spring.io" branch: "2.0.x" build-name: "spring-boot" pipeline-name: "spring-boot-2.0.x" concourse-url: "https://ci.spring.io" bintray-subject: "spring" bintray-repo: "jars"
Remove extra / from artifactory server param
Remove extra / from artifactory server param Fixes gh-13535
YAML
apache-2.0
wilkinsona/spring-boot,hello2009chen/spring-boot,drumonii/spring-boot,spring-projects/spring-boot,joshiste/spring-boot,tiarebalbi/spring-boot,scottfrederick/spring-boot,eddumelendez/spring-boot,rweisleder/spring-boot,scottfrederick/spring-boot,mbenson/spring-boot,kdvolder/spring-boot,rweisleder/spring-boot,shakuzen/spring-boot,lburgazzoli/spring-boot,felipeg48/spring-boot,zhanhb/spring-boot,NetoDevel/spring-boot,aahlenst/spring-boot,tiarebalbi/spring-boot,dreis2211/spring-boot,wilkinsona/spring-boot,yangdd1205/spring-boot,drumonii/spring-boot,ilayaperumalg/spring-boot,hello2009chen/spring-boot,hello2009chen/spring-boot,spring-projects/spring-boot,Buzzardo/spring-boot,chrylis/spring-boot,wilkinsona/spring-boot,mdeinum/spring-boot,drumonii/spring-boot,royclarkson/spring-boot,htynkn/spring-boot,lburgazzoli/spring-boot,royclarkson/spring-boot,zhanhb/spring-boot,philwebb/spring-boot,kdvolder/spring-boot,htynkn/spring-boot,dreis2211/spring-boot,ilayaperumalg/spring-boot,jxblum/spring-boot,chrylis/spring-boot,donhuvy/spring-boot,Buzzardo/spring-boot,Buzzardo/spring-boot,chrylis/spring-boot,rweisleder/spring-boot,ilayaperumalg/spring-boot,philwebb/spring-boot,Buzzardo/spring-boot,eddumelendez/spring-boot,htynkn/spring-boot,donhuvy/spring-boot,mdeinum/spring-boot,kdvolder/spring-boot,scottfrederick/spring-boot,jxblum/spring-boot,michael-simons/spring-boot,donhuvy/spring-boot,scottfrederick/spring-boot,mdeinum/spring-boot,joshiste/spring-boot,royclarkson/spring-boot,yangdd1205/spring-boot,philwebb/spring-boot,eddumelendez/spring-boot,dreis2211/spring-boot,mbenson/spring-boot,spring-projects/spring-boot,NetoDevel/spring-boot,lburgazzoli/spring-boot,ilayaperumalg/spring-boot,joshiste/spring-boot,zhanhb/spring-boot,spring-projects/spring-boot,NetoDevel/spring-boot,wilkinsona/spring-boot,tiarebalbi/spring-boot,NetoDevel/spring-boot,vpavic/spring-boot,vpavic/spring-boot,tiarebalbi/spring-boot,michael-simons/spring-boot,philwebb/spring-boot,felipeg48/spring-boot,shakuzen/spring-boot,royclarkson/spring-boot,hello2009chen/spring-boot,aahlenst/spring-boot,zhanhb/spring-boot,drumonii/spring-boot,spring-projects/spring-boot,jxblum/spring-boot,mdeinum/spring-boot,royclarkson/spring-boot,drumonii/spring-boot,mbenson/spring-boot,rweisleder/spring-boot,eddumelendez/spring-boot,michael-simons/spring-boot,Buzzardo/spring-boot,donhuvy/spring-boot,dreis2211/spring-boot,zhanhb/spring-boot,shakuzen/spring-boot,jxblum/spring-boot,aahlenst/spring-boot,joshiste/spring-boot,chrylis/spring-boot,aahlenst/spring-boot,ptahchiev/spring-boot,michael-simons/spring-boot,yangdd1205/spring-boot,kdvolder/spring-boot,drumonii/spring-boot,mbenson/spring-boot,felipeg48/spring-boot,lburgazzoli/spring-boot,dreis2211/spring-boot,michael-simons/spring-boot,mdeinum/spring-boot,mbenson/spring-boot,ptahchiev/spring-boot,jxblum/spring-boot,Buzzardo/spring-boot,jxblum/spring-boot,rweisleder/spring-boot,aahlenst/spring-boot,vpavic/spring-boot,ptahchiev/spring-boot,rweisleder/spring-boot,ptahchiev/spring-boot,scottfrederick/spring-boot,vpavic/spring-boot,htynkn/spring-boot,felipeg48/spring-boot,ptahchiev/spring-boot,joshiste/spring-boot,wilkinsona/spring-boot,felipeg48/spring-boot,joshiste/spring-boot,vpavic/spring-boot,philwebb/spring-boot,ilayaperumalg/spring-boot,chrylis/spring-boot,spring-projects/spring-boot,philwebb/spring-boot,vpavic/spring-boot,htynkn/spring-boot,mdeinum/spring-boot,donhuvy/spring-boot,chrylis/spring-boot,felipeg48/spring-boot,tiarebalbi/spring-boot,htynkn/spring-boot,ptahchiev/spring-boot,shakuzen/spring-boot,shakuzen/spring-boot,dreis2211/spring-boot,donhuvy/spring-boot,kdvolder/spring-boot,aahlenst/spring-boot,zhanhb/spring-boot,lburgazzoli/spring-boot,scottfrederick/spring-boot,michael-simons/spring-boot,kdvolder/spring-boot,tiarebalbi/spring-boot,eddumelendez/spring-boot,hello2009chen/spring-boot,ilayaperumalg/spring-boot,shakuzen/spring-boot,eddumelendez/spring-boot,wilkinsona/spring-boot,mbenson/spring-boot,NetoDevel/spring-boot
31c3a573e835362811d3d0afbac969ff29bacdc2
asm-acm-tutorial/root-sync/deployments/ingress-gateway/kustomization.yaml
asm-acm-tutorial/root-sync/deployments/ingress-gateway/kustomization.yaml
# Copyright 2022 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # [START anthosconfig_deployments_ingress_gateway_kustomization_kustomization] apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - github.com/GoogleCloudPlatform/anthos-service-mesh-samples/docs/ingress-gateway-asm-manifests/base?ref=main namespace: asm-ingress patches: - patch: |- apiVersion: apps/v1 kind: Deployment metadata: name: asm-ingressgateway annotations: config.kubernetes.io/depends-on: mesh.cloud.google.com/namespaces/istio-system/ControlPlaneRevision/asm-managed # [END anthosconfig_deployments_ingress_gateway_kustomization_kustomization]
# Copyright 2022 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # [START anthosconfig_deployments_ingress_gateway_kustomization_kustomization] apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - github.com/GoogleCloudPlatform/anthos-service-mesh-samples/docs/ingress-gateway-asm-manifests/base?ref=main namespace: asm-ingress # [END anthosconfig_deployments_ingress_gateway_kustomization_kustomization]
Fix asm-ingress deployment (no depends-on anymore)
Fix asm-ingress deployment (no depends-on anymore)
YAML
apache-2.0
GoogleCloudPlatform/anthos-config-management-samples
d2b193ff78bb8e3186205e08744d1312a9da6cef
query-specifications/bi-read-20.yaml
query-specifications/bi-read-20.yaml
workload: BI operation: read number: 20 title: Recruitment description: | Given a *Company* `company` and a *Person* `person2` (who is known to be working at another *Company*), find a *Person* (`person1`) working the in the `company` who have the top-20 shortest path to `person2` through people who have studied together. On this path, we only consider edges between *Persons* who know each other and attended the same university and set the weight of the edge to the absolute difference between the year of enrolment plus 1 (`studyAt.classYear + 1`). If there are multiple *Person* `person1` nodes with the same shortest path, return all of them. parameters: - name: company type: Long String description: "*Companies* with a similar number of employees (former or current) are selected" - name: person2Id type: ID result: - name: person1.id type: ID - name: totalWeight type: 64-bit Integer category: calculated sort: - name: person1.id direction: asc limit: 20 choke_points: [3.3, 7.6, 7.7, 8.4, 8.6] relevance: | Implementations can either pre-compute edge weights or compute them on-the-fly. To find a weighted shortest path efficiently, implementations can use e.g. a bidirectional Dijkstra algorithm.
workload: BI operation: read number: 20 title: Recruitment description: | Given a *Company* `company` and a *Person* `person2` (who is known to be working at another *Company*), find a *Person* (`person1`) working the in the `company` who have the top-20 shortest path to `person2` through people who have studied together. On this path, we only consider edges between *Persons* who know each other and attended the same university and set the weight of the edge to the absolute difference between the year of enrolment plus 1 (`studyAt.classYear + 1`). If there are multiple *Person* `person1` nodes with the same shortest path, return all of them. parameters: - name: company type: Long String description: "*Companies* with a similar number of employees (former or current) are selected" - name: person2Id type: ID result: - name: person1.id type: ID - name: totalWeight type: 64-bit Integer category: calculated sort: - name: totalWeight direction: desc - name: person1.id direction: asc limit: 20 choke_points: [3.3, 7.6, 7.7, 8.4, 8.6] relevance: | Implementations can either pre-compute edge weights or compute them on-the-fly. To find a weighted shortest path efficiently, implementations can use e.g. a bidirectional Dijkstra algorithm.
Add more sorting to Q20 results
Add more sorting to Q20 results
YAML
apache-2.0
ldbc/ldbc_snb_docs,ldbc/ldbc_snb_docs,ldbc/ldbc_snb_docs
eea5ceeac95561faf35882c286ab850c5f61c581
templates/jenkins/jenkins.yml
templates/jenkins/jenkins.yml
# Container for running Jenkins with a local jobs volume # Run this image via # - `docker-compose -f jenkins.yml -p <%= machineName %> run jenkins` version: '2.1' services: jenkins: image: phase2/jenkins-docker:1.9.1 volumes: # Primary jenkins configuration. Direct file mount prevents writing updates from running instance. - ./env/jenkins/config.xml:/var/jenkins_home/config.xml # Mount the local project jobs into Jenkins - ./env/jenkins/jobs:/var/jenkins_home/jobs # Mount the docker socket so we can execute from within this container - /var/run/docker.sock:/var/run/docker.sock # Mount a stable location for the Jenkins workspace - /opt/development/<%= projectName %>/jenkins/env/workspace:/opt/development/<%= projectName %>/jenkins/env/workspace # SSH key grants read access to private Git repositories. - ~/.ssh/${DEVTOOLS_SSH_KEY:-id_rsa}:/root/.ssh/devtools.key environment: VIRTUAL_HOST: build.<%= host.devcloud %> VIRTUAL_PORT: 8080 labels: com.dnsdock.name: jenkins com.dnsdock.image: <%= domain %>
# Container for running Jenkins with a local jobs volume # Run this image via # - `docker-compose -f jenkins.yml -p <%= machineName %> run jenkins` version: '2.1' services: jenkins: image: phase2/jenkins-docker:latest volumes: # Primary jenkins configuration. Direct file mount prevents writing updates from running instance. - ./env/jenkins/config.xml:/var/jenkins_home/config.xml # Mount the local project jobs into Jenkins - ./env/jenkins/jobs:/var/jenkins_home/jobs # Mount the docker socket so we can execute from within this container - /var/run/docker.sock:/var/run/docker.sock # Mount a stable location for the Jenkins workspace - /opt/development/<%= projectName %>/jenkins/env/workspace:/opt/development/<%= projectName %>/jenkins/env/workspace # SSH key grants read access to private Git repositories. - ~/.ssh/${DEVTOOLS_SSH_KEY:-id_rsa}:/root/.ssh/devtools.key environment: VIRTUAL_HOST: build.<%= host.devcloud %> VIRTUAL_PORT: 8080 labels: com.dnsdock.name: jenkins com.dnsdock.image: <%= domain %>
Update Jenkins docker image to use 'latest'.
Update Jenkins docker image to use 'latest'.
YAML
mit
phase2/generator-outrigger-drupal,phase2/generator-outrigger-drupal,phase2/generator-outrigger-drupal
e71989d9b19e02ad0e23141760195546233270c6
Magic/src/main/resources/examples/survival/crafting/wand.yml
Magic/src/main/resources/examples/survival/crafting/wand.yml
wand: # This defines the recipe output- a template wand will be created, and # then upgraded based on its enchanting path and the # of levels in parenthesis output: wand output_type: wand # Used as a substitute item when the wand item is naturally crafted # This is mainly for the resource pack, so players don't craft a wood hoe # and get some weird non-wand but wand-looking item. # This means that, by default, crafting a wood hoe will get you an iron hoe. # If you don't want this behavior, just empty out this field. # substitute: iron_hoe # Don't disable the default recipe disable_default: false # Recipes that will be discovered when crafting this one discover: - magicbow - magicsword - talisman - apprenticeboots - apprenticechestplate - apprenticeleggings - apprenticehelmet - broomstick - camera - divinghelmet - flashboots - goggles - magichat - magictorch - mastersword - mirrorshield - rabbitboots - rocketboots # This defines the materials that will be required to craft this wand materials: o: magicheart i: stick # This defines the shape of the recipe, row_1 is the top. Each row may # have up to 3 characters that map to the materials listed above. row_1: o row_2: i row_3: ""
wand: # This defines the recipe output output: wand # This makes sure you get the wand version, in case of name collisions # Probably not necessary output_type: wand # Used as a substitute item when the wand item is naturally crafted # This is mainly for the resource pack, so players don't craft a wood hoe # and get some weird non-wand but wand-looking item. # This means that, by default, crafting a wood hoe will get you an iron hoe. # substitute: iron_hoe # Don't disable the default recipe disable_default: false # Recipes that will be discovered when crafting this one discover: - magicbow - magicsword - talisman - apprenticeboots - apprenticechestplate - apprenticeleggings - apprenticehelmet - broomstick - camera - divinghelmet - flashboots - goggles - magichat - magictorch - mastersword - mirrorshield - rabbitboots - rocketboots # This defines the materials that will be required to craft this wand materials: o: magicheart i: stick # This defines the shape of the recipe, row_1 is the top. Each row may # have up to 3 characters that map to the materials listed above. row_1: o row_2: i row_3: ""
Add crafting and effects examples
Add crafting and effects examples
YAML
mit
elBukkit/MagicPlugin,elBukkit/MagicPlugin,elBukkit/MagicPlugin
83b6cc66822ad602d6bf4ef48cbdeac2352f90c6
test/docker-compose.yml
test/docker-compose.yml
version: '3' services: db-sql-server: container_name: data-quality-test-db-sql-server image: data-quality-test-db-sql-server restart: always build: context: . dockerfile: ./db-sql-server/Dockerfile environment: ACCEPT_EULA: "Y" SA_PASSWORD: "1234-abcd" command: ["/bin/bash", "entrypoint.sh"] ports: - 9000:1433 networks: - data-quality-test-network db-mysql: container_name: data-quality-test-db-mysql image: data-quality-test-db-mysql restart: always build: context: . dockerfile: ./db-mysql/Dockerfile environment: MYSQL_ROOT_PASSWORD: "1234" ports: - 9001:3306 networks: - data-quality-test-network db-postgresql: container_name: data-quality-test-db-postgresql image: data-quality-test-db-postgresql restart: always build: context: . dockerfile: ./db-postgresql/Dockerfile environment: POSTGRES_USER: "postgres" POSTGRES_PASSWORD: "1234" POSTGRES_DATABASE: "star_wars" ports: - 9002:5432 networks: - data-quality-test-network networks: data-quality-test-network:
version: '3' services: db-sql-server: container_name: data-quality-test-db-sql-server image: data-quality-test-db-sql-server restart: always build: context: . dockerfile: ./db-sql-server/Dockerfile environment: ACCEPT_EULA: "Y" SA_PASSWORD: "1234-abcd" command: ["/bin/bash", "entrypoint.sh"] ports: - 9000:1433 db-mysql: container_name: data-quality-test-db-mysql image: data-quality-test-db-mysql restart: always build: context: . dockerfile: ./db-mysql/Dockerfile environment: MYSQL_ROOT_PASSWORD: "1234" ports: - 9001:3306 db-postgresql: container_name: data-quality-test-db-postgresql image: data-quality-test-db-postgresql restart: always build: context: . dockerfile: ./db-postgresql/Dockerfile environment: POSTGRES_USER: "postgres" POSTGRES_PASSWORD: "1234" POSTGRES_DATABASE: "star_wars" ports: - 9002:5432
Remove network for test containers
Remove network for test containers
YAML
apache-2.0
alexisrolland/data-quality,alexisrolland/data-quality,alexisrolland/data-quality,alexisrolland/data-quality
d2507464e9026be2a4ab04c325b5e3a94254c22f
app/config/config_test.yml
app/config/config_test.yml
imports: - { resource: config_prod.yml } - { resource: parameters_test.yml } - { resource: security_test.yml } parameters: doctrine.dbal.connection_factory.class: 'Oro\Component\Testing\Doctrine\PersistentConnectionFactory' framework: test: ~ session: storage_id: session.storage.mock_file csrf_protection: true profiler: enabled: false services: twig.extension.debug: class: Twig_Extensions_Extension_Debug tags: - { name: twig.extension } oro_message_queue.test.message_collector: class: Oro\Bundle\MessageQueueBundle\Test\Functional\MessageCollector decorates: oro_message_queue.client.message_producer arguments: - '@oro_message_queue.test.message_collector.inner' swiftmailer: disable_delivery: true oro_require_js: js_engine: ~
imports: - { resource: config_prod.yml } - { resource: parameters_test.yml } - { resource: security_test.yml } parameters: doctrine.dbal.connection_factory.class: 'Oro\Component\Testing\Doctrine\PersistentConnectionFactory' framework: test: ~ session: storage_id: session.storage.mock_file csrf_protection: true profiler: enabled: false services: twig.extension.debug: class: Twig_Extensions_Extension_Debug tags: - { name: twig.extension } oro_message_queue.test.message_collector: class: Oro\Bundle\MessageQueueBundle\Test\Functional\MessageCollector decorates: oro_message_queue.client.message_producer arguments: - '@oro_message_queue.test.message_collector.inner' swiftmailer: disable_delivery: true oro_require_js: js_engine: ~ # configure loose default password requirements for auto-generated test users oro_user: settings: password_min_length: value: 2 password_upper_case: value: false password_numbers: value: false password_special_chars: value: false
Exclude test env from password demands
BAP-10931: Exclude test env from password demands - revert passwords from some tests
YAML
mit
orocrm/platform-application,orocrm/platform-application
0f87eed6f73be7f8d54a0f0458e2fad44976da7d
app/config/routing_dev.yml
app/config/routing_dev.yml
_welcome: pattern: / defaults: { _controller: AcmeDemoBundle:Welcome:index } _demo_secured: resource: "@AcmeDemoBundle/Controller/SecuredController.php" type: annotation _demo: resource: "@AcmeDemoBundle/Controller/DemoController.php" type: annotation prefix: /demo _assetic: resource: . type: assetic _wdt: resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml" prefix: /_wdt _profiler: resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml" prefix: /_profiler _configurator: resource: "@SensioDistributionBundle/Resources/config/routing/webconfigurator.xml" prefix: /_configurator _main: resource: routing.yml
_assetic: resource: . type: assetic _wdt: resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml" prefix: /_wdt _profiler: resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml" prefix: /_profiler _configurator: resource: "@SensioDistributionBundle/Resources/config/routing/webconfigurator.xml" prefix: /_configurator _main: resource: routing.yml
Revert "Revert "Revert "Revert "Removed demo paths""""
Revert "Revert "Revert "Revert "Removed demo paths"""" This reverts commit cc6e6367ffc6dff9139fcc7ef2c5e867c7eb9e5a.
YAML
mit
joekukish/PeerReviewingSuite,joekukish/PeerReviewingSuite
408c3d66edbacc79d8eb357102f4da21b5e05fe2
metadata.yaml
metadata.yaml
name: docker summary: Deploys Docker Engine, a lightweight runtime and packaging tool. maintainer: Charles Butler <charles.butler@ubuntu.com> description: | Deploys Docker Engine, a portable, lightweight runtime and packaging tool. tags: - ops - application_development subordinate: false provides: docker-containers: interface: containers events: interface: docker-socket requires: network: interface: overlay-network optional: true logging: interface: docker-socket optional: true
name: docker summary: Deploys Docker Engine, a lightweight runtime and packaging tool. maintainer: Charles Butler <charles.butler@ubuntu.com> description: | Deploys Docker Engine, a portable, lightweight runtime and packaging tool. tags: - ops - application_development subordinate: false provides: docker-containers: interface: containers # events: # interface: docker-socket requires: network: interface: overlay-network # logging: # interface: docker-socket
Comment out the 2 relations that are not implemented yet - pending contributions from @whitmo
Comment out the 2 relations that are not implemented yet - pending contributions from @whitmo
YAML
bsd-3-clause
chuckbutler/docker-charm,chuckbutler/docker-charm
a414ecf61ce2a9b2e2b9c5ed19dc6fb44476ef49
meta/main.yml
meta/main.yml
--- galaxy_info: author: Ben Webber description: Provision a vanilla Minecraft server license: Apache 2.0 min_ansible_version: 1.8 platforms: - name: Ubuntu versions: - trusty - xenial - name: Debian versions: - wheezy - jessie - name: EL versions: - 7 categories: - system dependencies: []
--- galaxy_info: author: Ben Webber description: Provision a vanilla Minecraft server license: Apache 2.0 min_ansible_version: 1.8 platforms: - name: Ubuntu versions: - trusty - xenial - name: Debian versions: - jessie - name: EL versions: - 7 categories: - system dependencies: []
Remove unsupported Debian version from Galaxy metadata
Remove unsupported Debian version from Galaxy metadata
YAML
apache-2.0
devops-coop/ansible-minecraft,devops-coop/ansible-minecraft,devops-coop/ansible-minecraft
93bc3b657b69e4886dcfef7a2502e165f2cd90d2
.codecov.yml
.codecov.yml
comment: off github_checks: annotations: false coverage: status: patch: default: target: 95% project: default: threshold: 1%
comment: off github_checks: annotations: false coverage: status: patch: default: target: 95% only_pulls: true project: default: threshold: 1%
Remove Codecov Patch status outside PRs
Remove Codecov Patch status outside PRs
YAML
mit
OpenZeppelin/openzeppelin-contracts,OpenZeppelin/openzeppelin-contracts,OpenZeppelin/openzeppelin-contracts
b1b1f56ac05dac52c2abeb146381d6b1ac191e81
materialize.libraries.yml
materialize.libraries.yml
global-styling: version: VERSION css: theme: css/materialize.min.css: { weight: -10 } modules: css/drupal-toolbar.css: { weight: -10 } global-scripts: js: js/materialize.min.js: {} dependencies: - core/jquery - core/jquery.once - core/drupal.ajax - core/drupal - core/drupalSettings
global-styling: version: VERSION css: theme: css/materialize.min.css: { weight: -10 } modules: css/drupal-toolbar.css: { weight: -10 } fonts: 'https://fonts.googleapis.com/icon?family=Material+Icons': { type: external } global-scripts: js: js/materialize.min.js: {} dependencies: - core/jquery - core/jquery.once - core/drupal.ajax - core/drupal - core/drupalSettings
Add google material icons font.
Add google material icons font.
YAML
mit
archual/drupal_materialize_theme,archual/drupal_materialize_theme,archual/drupal_materialize_theme
400dce25e83cfa1889b913a4766ebbf6217b6031
.kitchen.yml
.kitchen.yml
--- driver: name: vagrant provisioner: name: chef_solo platforms: - name: ubuntu-12.04 - name: centos-6.4 suites: - name: default run_list: - recipe[digitalocean_dns::default] attributes:
--- driver: name: vagrant provisioner: name: chef_solo platforms: - name: ubuntu-12.04 - name: ubuntu-14.04 - name: centos-6.5 suites: - name: default run_list: - recipe[digitalocean_dns::default] attributes:
Add 14.04 and update to the latest centos 6 minor
Add 14.04 and update to the latest centos 6 minor
YAML
apache-2.0
skottler/chef-digitalocean_dns
02fcf78f66063d9cbc6c853eb61279294d47a739
.rubocop.yml
.rubocop.yml
require: rubocop-rspec inherit_from: - .rubocop_todo.yml - .rubocop_rspec.yml AllCops: DisplayCopNames: true # Display the name of the failing cops TargetRubyVersion: 2.1 Exclude: - 'gemfiles/vendor/**/*' - 'vendor/**/*' - '**/.irbrc' Gemspec/RequiredRubyVersion: Enabled: false Metrics/BlockLength: Enabled: false Metrics/BlockNesting: Max: 2 Metrics/LineLength: Enabled: false Metrics/MethodLength: Max: 15 Metrics/ParameterLists: Max: 4 Layout/AccessModifierIndentation: EnforcedStyle: outdent Layout/DotPosition: EnforcedStyle: trailing Layout/SpaceInsideHashLiteralBraces: EnforcedStyle: no_space Lint/UnusedBlockArgument: Exclude: - 'spec/**/*.rb' - 'gemfiles/vendor/**/*' - 'vendor/**/*' - '**/.irbrc' Style/ClassVars: Enabled: false Style/CollectionMethods: PreferredMethods: map: 'collect' reduce: 'inject' find: 'detect' find_all: 'select' Style/Documentation: Enabled: false Style/DoubleNegation: Enabled: false Style/EmptyMethod: EnforcedStyle: expanded Style/Encoding: Enabled: false Style/TrailingCommaInLiteral: EnforcedStyleForMultiline: comma
require: rubocop-rspec inherit_from: - .rubocop_todo.yml - .rubocop_rspec.yml AllCops: DisplayCopNames: true # Display the name of the failing cops TargetRubyVersion: 2.1 Exclude: - 'gemfiles/vendor/**/*' - 'vendor/**/*' - '**/.irbrc' Gemspec/RequiredRubyVersion: Enabled: false Metrics/BlockLength: Enabled: false Metrics/BlockNesting: Max: 2 Metrics/LineLength: Enabled: false Metrics/MethodLength: Max: 15 Metrics/ParameterLists: Max: 4 Layout/AccessModifierIndentation: EnforcedStyle: outdent Layout/DotPosition: EnforcedStyle: trailing Layout/SpaceInsideHashLiteralBraces: EnforcedStyle: no_space Lint/UnusedBlockArgument: Exclude: - 'spec/**/*.rb' - 'gemfiles/vendor/**/*' - 'vendor/**/*' - '**/.irbrc' RSpec/NestedGroups: Enabled: false Style/ClassVars: Enabled: false Style/CollectionMethods: PreferredMethods: map: 'collect' reduce: 'inject' find: 'detect' find_all: 'select' Style/Documentation: Enabled: false Style/DoubleNegation: Enabled: false Style/EmptyMethod: EnforcedStyle: expanded Style/Encoding: Enabled: false Style/TrailingCommaInLiteral: EnforcedStyleForMultiline: comma
Enable nested contexts in RSpec
Enable nested contexts in RSpec Remove rubocop rule disallowing larger nesting of examples
YAML
mit
mavenlink/oauth2,intridea/oauth2,mavenlink/oauth2,ShakrMedia/oauth2
ae18bd9d25c45ac5fc8f00843f498dfe324dc4e1
.rubocop.yml
.rubocop.yml
# Lining up the attributes of some methods is advantageous for readability Style/SpaceBeforeFirstArg: Enabled: false # Chef methods tend to be self-documenting Style/Documentation: Enabled: false # Offense count: 1 Style/ClassVars: Exclude: - 'libraries/default.rb' # The default 79 character limit is sometimes unproductive. Metrics/LineLength: Max: 120 # The default 10 lines limit is unrealistic. Metrics/MethodLength: Max: 50 Metrics/AbcSize: Enabled: false Metrics/CyclomaticComplexity: Enabled: false AllCops: Exclude: - 'Guardfile' - 'Rakefile' - 'vendor/bundle/**/*'
# Offense count: 1 Style/ClassVars: Exclude: - 'libraries/default.rb'
Drop unnecessary Rubocop rules b/c cookstyle
Drop unnecessary Rubocop rules b/c cookstyle
YAML
apache-2.0
SimpleFinance/chef-zookeeper,evertrue/zookeeper-cookbook,criteo-forks/chef-zookeeper,evertrue/zookeeper-cookbook,SimpleFinance/chef-zookeeper,evertrue/zookeeper-cookbook,SimpleFinance/chef-zookeeper
de013b730a98af43c8817febf93dc5986ddae678
.drone.yml
.drone.yml
image: bradrydzewski/go:1.4 notify: email: recipients: - drone@clever.com slack: on_failure: true on_started: false on_success: false webhook_url: $$slack_webhook script: - go get - go test -v
image: clever/drone-go:1.5 notify: email: recipients: - drone@clever.com slack: on_failure: true on_started: false on_success: false webhook_url: $$slack_webhook script: - go get - go test -v
Use Go 1.5 Drone image
Use Go 1.5 Drone image
YAML
apache-2.0
Clever/discovery-go
159f4563c042ff0ecee650c820e18b2d658f2dea
.zuul.yaml
.zuul.yaml
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-python3-wallaby-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-python3-xena-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
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: I01d7c2ed0666f0af0993784943338c0ee6c5af40
YAML
apache-2.0
openstack/oslo.vmware
1f5e01b3f2fde239213de96c3472bca71ff709ea
.zuul.yaml
.zuul.yaml
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-python3-yoga-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-python3-zed-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
Add Python3 zed unit tests
Add Python3 zed unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for zed. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I3c6623fe5c5df7a965458ba1b2bc5dde0900d237
YAML
apache-2.0
openstack/oslo.service
2ddcb2019371ef79ee6f935122b58fbf2f5c7c90
.zuul.yaml
.zuul.yaml
- project: name: containerd/containerd merge-mode: merge check: jobs: - containerd-build-arm64 - containerd-test-arm64 - containerd-integration-test-arm64 - job: name: containerd-build-arm64 parent: init-test description: | Containerd build in openlab cluster. run: .zuul/playbooks/containerd-build/run.yaml nodeset: ubuntu-xenial-arm64-openlab voting: false - job: name: containerd-test-arm64 parent: init-test description: | Containerd unit tests in openlab cluster. run: .zuul/playbooks/containerd-build/unit-test.yaml nodeset: ubuntu-xenial-arm64-openlab voting: false - job: name: containerd-integration-test-arm64 parent: init-test description: | Containerd unit tests in openlab cluster. run: .zuul/playbooks/containerd-build/integration-test.yaml nodeset: ubuntu-xenial-arm64-openlab voting: false
- project: name: containerd/containerd merge-mode: merge check: jobs: - containerd-build-arm64 - containerd-test-arm64 - containerd-integration-test-arm64 - job: name: containerd-build-arm64 parent: init-test description: | Containerd build in openlab cluster. run: .zuul/playbooks/containerd-build/run.yaml nodeset: ubuntu-xenial-arm64-openlab - job: name: containerd-test-arm64 parent: init-test description: | Containerd unit tests in openlab cluster. run: .zuul/playbooks/containerd-build/unit-test.yaml nodeset: ubuntu-xenial-arm64-openlab - job: name: containerd-integration-test-arm64 parent: init-test description: | Containerd unit tests in openlab cluster. run: .zuul/playbooks/containerd-build/integration-test.yaml nodeset: ubuntu-xenial-arm64-openlab
Make OpenLab's CI jobs blocking
Make OpenLab's CI jobs blocking Since the jobs are relatively stable, we have official ARM binaries and we could technically still ignore them, we should remove "voting: false" from them. Signed-off-by: Kazuyoshi Kato <732288c132d39c7d9231a005036e5ecd0fff1d64@amazon.com>
YAML
apache-2.0
containerd/containerd,estesp/containerd,containerd/containerd,thaJeztah/containerd,estesp/containerd,dmcgowan/containerd,mikebrow/containerd,thaJeztah/containerd,mikebrow/containerd,dmcgowan/containerd
ecd98a719ddd7bd07664eae5d9c065f778e7b7f1
packages/ca/casing.yaml
packages/ca/casing.yaml
homepage: '' changelog-type: '' hash: a1ea21789906302930300b68ffd40373bc731e9254b43d1f35e8ba7368b2acce test-bench-deps: base: ! '>=4.8 && <5' casing: -any tasty-hunit: -any tasty: -any maintainer: tdammers@gmail.com synopsis: Convert between various source code casing conventions changelog: '' basic-deps: split: -any base: ! '>=4.8 && <5' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.1.0 - 0.1.2.1 - 0.1.3.0 - 0.1.4.0 author: Tobias Dammers latest: 0.1.4.0 description-type: haddock description: ! 'Converts between camelCase, PascalCase, kebab-case, and three flavors of snake_case.' license-name: MIT
homepage: '' changelog-type: '' hash: 0ff791d7563fef211a65c9b7df9c2dfddd41096be53225234f36f3428d7d62a6 test-bench-deps: base: ! '>=4.8 && <5' casing: -any tasty-hunit: -any tasty: -any maintainer: tdammers@gmail.com synopsis: Convert between various source code casing conventions changelog: '' basic-deps: split: -any base: ! '>=4.8 && <5' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.1.0 - 0.1.2.1 - 0.1.3.0 - 0.1.4.0 - 0.1.4.1 author: Tobias Dammers latest: 0.1.4.1 description-type: haddock description: |- Converts between camelCase, PascalCase, kebab-case, and three flavors of snake_case. license-name: MIT
Update from Hackage at 2019-09-05T09:39:03Z
Update from Hackage at 2019-09-05T09:39:03Z
YAML
mit
commercialhaskell/all-cabal-metadata
c7bc474932d19c4defbcee81dbfccdfe90b6db57
packages/ht/htiled.yaml
packages/ht/htiled.yaml
homepage: '' changelog-type: '' hash: da5487d7622958d22b41642704d5f3ac5849fa0db2d9ff6f8a50635d2e397dce test-bench-deps: {} maintainer: cra+code@cra.no synopsis: Import from the Tiled map editor. changelog: '' basic-deps: bytestring: -any split: -any base: ==4.* base64-bytestring: ! '>1' filepath: -any containers: ! '>=0.4 && <0.6' hxt: ==9.* zlib: ==0.5.* all-versions: - '0.0.2' - '0.0.3' - '0.1.0' - '0.1.1' - '0.1.1.1' - '0.1.1.2' - '0.1.2.0' author: Christian Rødli Amble latest: '0.1.2.0' description-type: haddock description: ! 'Import maps from the .tmx map format generated by Tiled, <http://www.mapeditor.org>.' license-name: BSD3
homepage: '' changelog-type: '' hash: 34640c02c74ccabb8ca805367c47d0a50695ff2427fc05b68957d14c64b1b586 test-bench-deps: {} maintainer: cra+code@cra.no synopsis: Import from the Tiled map editor. changelog: '' basic-deps: bytestring: -any split: -any base: ==4.* base64-bytestring: ! '>1' filepath: -any containers: ! '>=0.4 && <0.6' hxt: ==9.* zlib: ==0.5.* all-versions: - '0.0.2' - '0.0.3' - '0.1.0' - '0.1.1' - '0.1.1.1' - '0.1.1.2' - '0.1.2.0' - '0.1.3.0' author: Christian Rødli Amble latest: '0.1.3.0' description-type: haddock description: ! 'Import maps from the .tmx map format generated by Tiled, <http://www.mapeditor.org>.' license-name: BSD3
Update from Hackage at 2015-10-26T17:17:11+0000
Update from Hackage at 2015-10-26T17:17:11+0000
YAML
mit
commercialhaskell/all-cabal-metadata
2c42f9a71b900f2d6b2dcca45ae69724fbe19698
packages/sl/Slides.yaml
packages/sl/Slides.yaml
homepage: '' changelog-type: '' hash: b51284d6d90ad506e8f73dbe9ffe6132ae5d9e4080f2197b3a971a395db4e026 test-bench-deps: {} maintainer: lukahorvat9@gmail.com synopsis: Generate slides from Haskell code changelog: '' basic-deps: diagrams-lib: ==1.3.* base: ! '>=4.8 && <4.9' diagrams-svg: ==1.3.* regexpr: ==0.5.* utf8-string: ==0.3.* file-embed: ==0.0.* colour: ==2.3.* all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' - '0.1.0.4' author: Luka Horvat latest: '0.1.0.4' description-type: haddock description: Make presentations in Haskell with diagrams license-name: MIT
homepage: '' changelog-type: '' hash: 675bc03ad67b4e6ee5d05d11fd14de1724962b16283e68d05a1ef903542821e5 test-bench-deps: {} maintainer: lukahorvat9@gmail.com synopsis: Generate slides from Haskell code changelog: '' basic-deps: diagrams-lib: ==1.3.* base: ! '>=4.8 && <4.9' diagrams-svg: ==1.3.* regexpr: ==0.5.* utf8-string: ==0.3.* file-embed: ==0.0.* colour: ==2.3.* all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' - '0.1.0.4' - '0.1.0.5' author: Luka Horvat latest: '0.1.0.5' description-type: haddock description: Make presentations in Haskell with diagrams license-name: MIT
Update from Hackage at 2015-10-21T20:17:18+0000
Update from Hackage at 2015-10-21T20:17:18+0000
YAML
mit
commercialhaskell/all-cabal-metadata
d79af401f148baecb7285402831fcbbc608b4063
tasks/configure-tomcat.yml
tasks/configure-tomcat.yml
# # Configure Tomcat # - name: generate a custom "setenv.sh" from template, provides the ability to configure Tomcat at start-up from outside the container template: src: setenv.sh.j2 dest: "{{ tomcat_catalina_base }}/bin/setenv.sh" mode: ug+x - name: "generate a custom 'jmxremote.password' from template in {{ java_home }}/jre/lib/management/ folder, to use pasword protected JMX ports" template: src: jmxremote.password.j2 dest: "{{ java_home }}/jre/lib/management/{{ tomcat_process_name }}.jmxremote.password" owner: "{{ tomcat_system_user }}" group: "{{ tomcat_system_group }}" mode: 0600 - name: "generate a custom 'jmxremote.access' from template in {{ java_home }}/jre/lib/management/ folder, to use pasword protected JMX ports" template: src: jmxremote.access.j2 dest: "{{ java_home }}/jre/lib/management/{{ tomcat_process_name }}.jmxremote.access" owner: "{{ tomcat_system_user }}" group: "{{ tomcat_system_group }}" mode: 0640
# # Configure Tomcat # - name: generate a custom "setenv.sh" from template, provides the ability to configure Tomcat at start-up from outside the container template: src: setenv.sh.j2 dest: "{{ tomcat_catalina_base }}/bin/setenv.sh" mode: ug+x - name: "generate a custom '{{ tomcat_process_name }}.jmxremote.password' from template, to use pasword protected JMX ports" template: src: jmxremote.password.j2 dest: "{{ tomcat_catalina_base }}/conf/{{ tomcat_process_name }}.jmxremote.password" owner: "{{ tomcat_system_user }}" group: "{{ tomcat_system_group }}" mode: 0600 - name: "generate a custom '{{ tomcat_process_name }}.jmxremote.access' from template, to use pasword protected JMX ports" template: src: jmxremote.access.j2 dest: "{{ tomcat_catalina_base }}/conf/{{ tomcat_process_name }}.jmxremote.access" owner: "{{ tomcat_system_user }}" group: "{{ tomcat_system_group }}" mode: 0640
Fix JMX authentication files location
Fix JMX authentication files location
YAML
mit
KAMI911/ansible-role-tomcat,KAMI911/ansible-role-tomcat
db7fdc63d775092b13091f9d8f7392614ce66f20
AppVeyor.yml
AppVeyor.yml
version: 1.14.0.{build} branches: only: - master skip_tags: true clone_folder: C:\Cube\Cube.FileSystem image: Visual Studio 2017 nuget: project_feed: true disable_publish_on_pr: true platform: Any CPU configuration: Release before_build: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - nuget sources add -name Cube.Core -source https://ci.appveyor.com/nuget/cube.core - nuget restore Cube.FileSystem.sln build: parallel: true project: Cube.FileSystem.sln publish_nuget: true verbosity: minimal test_script: - > ..\packages\OpenCover.4.7.922\tools\OpenCover.Console.exe -log:Error -register:user -target:nunit3-console.exe -targetargs:Cube.FileSystem.Tests.dll -targetdir:Tests\bin\Release -returntargetcode -hideskipped:All -output:CoverResults.xml -filter:"+[Cube*]* -[*]*NativeMethods -[*]*Properties.*" after_test: - xcopy /q /Y /I Tests\bin\Release\Cube.FileSystem.Tests.log TestLog\ - xcopy /q /Y /I CoverResults.xml TestLog\ - pip install codecov - codecov -f CoverResults.xml artifacts: - path: TestLog
version: 1.14.0.{build} branches: only: - master skip_tags: true clone_folder: C:\Cube\Cube.FileSystem image: Visual Studio 2017 nuget: project_feed: true disable_publish_on_pr: true platform: Any CPU configuration: Release before_build: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - nuget sources add -name Cube.Core -source https://ci.appveyor.com/nuget/cube.core - nuget restore Cube.FileSystem.sln build: parallel: true project: Cube.FileSystem.sln publish_nuget: true verbosity: minimal test_script: - > ..\packages\OpenCover.4.7.922\tools\OpenCover.Console.exe -log:Error -register:user -target:../packages/NUnit.ConsoleRunner.3.9.0/tools/nunit3-console.exe -targetargs:Cube.FileSystem.Tests.dll -targetdir:Tests\bin\Release -returntargetcode -hideskipped:All -output:CoverResults.xml -filter:"+[Cube*]* -[*]*NativeMethods -[*]*Properties.*" after_test: - xcopy /q /Y /I Tests\bin\Release\Cube.FileSystem.Tests.log TestLog\ - xcopy /q /Y /I CoverResults.xml TestLog\ - pip install codecov - codecov -f CoverResults.xml artifacts: - path: TestLog
Fix to use latest NUnit.
Fix to use latest NUnit.
YAML
apache-2.0
cube-soft/Cube.FileSystem,cube-soft/Cube.Core,cube-soft/Cube.FileSystem,cube-soft/Cube.Core
3068416ed4b1d9b0a7ae737a97ab8afc46db2a72
metadata/ogz.tripeaks.yml
metadata/ogz.tripeaks.yml
Categories: - Games License: GPL-3.0-only SourceCode: https://github.com/mimoguz/tripeaks-gdx IssueTracker: https://github.com/mimoguz/tripeaks-gdx/issues Changelog: https://github.com/mimoguz/tripeaks-gdx/releases AutoName: TriPeaks RepoType: git Repo: https://github.com/mimoguz/tripeaks-gdx Builds: - versionName: '0.1' versionCode: 1 commit: '0.1' subdir: android gradle: - yes - versionName: '0.20' versionCode: 3 commit: '0.20' subdir: android gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '0.20' CurrentVersionCode: 3
Categories: - Games License: GPL-3.0-only SourceCode: https://github.com/mimoguz/tripeaks-gdx IssueTracker: https://github.com/mimoguz/tripeaks-gdx/issues Changelog: https://github.com/mimoguz/tripeaks-gdx/releases AutoName: TriPeaks RepoType: git Repo: https://github.com/mimoguz/tripeaks-gdx Builds: - versionName: '0.1' versionCode: 1 commit: '0.1' subdir: android gradle: - yes - versionName: '0.20' versionCode: 3 commit: '0.20' subdir: android gradle: - yes - versionName: '0.30' versionCode: 4 commit: '0.30' subdir: android gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '0.30' CurrentVersionCode: 4
Update TriPeaks to 0.30 (4)
Update TriPeaks to 0.30 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
6f666a8eb6e3a0f0c6909a6631eb8b3abc14d964
config/final.yml
config/final.yml
--- final_name: bosh-google-cpi blobstore: provider: s3 options: bucket_name: bosh-cpi-artifacts host: storage.googleapis.com
--- final_name: bosh-google-cpi blobstore: provider: s3 options: bucket: bosh-cpi-artifacts bucket_name: bosh-cpi-artifacts host: storage.googleapis.com endpoint: https://storage.googleapis.com
Support GCS blobstore client for un-authenticated use
config: Support GCS blobstore client for un-authenticated use
YAML
apache-2.0
cloudfoundry-incubator/bosh-google-cpi-release,evandbrown/bosh-google-cpi-release,cloudfoundry-incubator/bosh-google-cpi-release,erjohnso/bosh-google-cpi-release,evandbrown/bosh-google-cpi-release,erjohnso/bosh-google-cpi-release,evandbrown/bosh-google-cpi-release,cloudfoundry-incubator/bosh-google-cpi-release,evandbrown/bosh-google-cpi-release,erjohnso/bosh-google-cpi-release,erjohnso/bosh-google-cpi-release,cloudfoundry-incubator/bosh-google-cpi-release
e45a391e99d629683897be07f45133e98a7aa2af
appveyor.yml
appveyor.yml
version: '{build}' skip_tags: true environment: JAVA_OPTS: -XX:+CMSClassUnloadingEnabled -Xmx2g MAVEN_OPTS: -XX:+CMSClassUnloadingEnabled -Xmx2g PATH: C:\maven\apache-maven-3.3.9\bin;%JAVA_HOME%\bin;%PATH% matrix: - JAVA_HOME: C:\Program Files\Java\jdk1.8.0 install: - ps: | Add-Type -AssemblyName System.IO.Compression.FileSystem if (!(Test-Path -Path "C:\maven" )) { (new-object System.Net.WebClient).DownloadFile('http://www.us.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip', 'C:\maven-bin.zip') [System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven") } - cmd: mvn --version - cmd: java -version build_script: - mvn -B -e -P!generateproduct -Dio.sarl.docs.tests.skip=true clean install cache: - C:\maven\ -> appveyor.yml - C:\Users\appveyor\.m2 -> pom.xml
version: '{build}' skip_tags: true environment: JAVA_HOME: C:\Program Files\Java\jdk1.8.0 JAVA_OPTS: -XX:+CMSClassUnloadingEnabled -Xms512m -Xmx2g MAVEN_OPTS: -XX:+CMSClassUnloadingEnabled -Xms512m -Xmx2g PATH: C:\maven\apache-maven-3.3.9\bin;%JAVA_HOME%\bin;%PATH% install: - ps: | Add-Type -AssemblyName System.IO.Compression.FileSystem if (!(Test-Path -Path "C:\maven" )) { (new-object System.Net.WebClient).DownloadFile('http://www.us.apache.org/dist/maven/maven-3/3.3.9/binaries/apache-maven-3.3.9-bin.zip', 'C:\maven-bin.zip') [System.IO.Compression.ZipFile]::ExtractToDirectory("C:\maven-bin.zip", "C:\maven") } - cmd: mvn --version - cmd: java -version build_script: - mvn -B -e -P!generateproduct -Dio.sarl.docs.tests.skip=true clean install cache: - C:\maven\ -> appveyor.yml - C:\Users\appveyor\.m2 -> pom.xml
Change the memory configuration for AppVeyor.
[ci] Change the memory configuration for AppVeyor. Signed-off-by: Stéphane Galland <23860b554af9116d4237121086bd6767cdd4ff4b@arakhne.org>
YAML
apache-2.0
sarl/sarl,sarl/sarl,sarl/sarl,jgfoster/sarl,sarl/sarl,jgfoster/sarl,sarl/sarl,sarl/sarl,jgfoster/sarl,jgfoster/sarl
d0623f96ad24ba8d6487fc1efb41ee65dfe1b2d0
appveyor.yml
appveyor.yml
image: - Visual Studio 2017 install: - choco install gitversion.portable -pre -y platform: - Any CPU configuration: - Release assembly_info: patch: false before_build: - dotnet restore src\GitTools.Testing.sln - ps: gitversion /l console /output buildserver /updateAssemblyInfo build: project: src\GitTools.Testing.sln after_build: - cmd: dotnet pack src\GitTools.Testing\GitTools.Testing.csproj /p:PackageVersion="%GitVersion_NuGetVersion%" /p:NoBuild=true /p:PackageOutputPath=%APPVEYOR_BUILD_FOLDER% - cmd: appveyor PushArtifact "GitTools.Testing.%GitVersion_NuGetVersion%.nupkg" cache: - src\packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
image: - Visual Studio 2017 install: - choco install gitversion.portable -pre -y configuration: - Release assembly_info: patch: false before_build: - dotnet restore src\GitTools.Testing.sln - ps: gitversion /l console /output buildserver /updateAssemblyInfo build: project: src\GitTools.Testing.sln after_build: - cmd: dotnet pack src\GitTools.Testing\GitTools.Testing.csproj /p:PackageVersion="%GitVersion_NuGetVersion%" /p:NoBuild=true /p:PackageOutputPath=%APPVEYOR_BUILD_FOLDER% - cmd: appveyor PushArtifact "GitTools.Testing.%GitVersion_NuGetVersion%.nupkg" cache: - src\packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
Remove Platform: Any CPU because it is built by default
Remove Platform: Any CPU because it is built by default
YAML
mit
GitTools/GitTools.Testing
26e8dec77eac713502357344dbafb59114471a6c
packages/hp/HPi.yaml
packages/hp/HPi.yaml
homepage: https://github.com/WJWH/HPi changelog-type: '' hash: d0b4dbca3ac3de6e21f6fcc2e8a897055717d8af60b4146f3068f89ee1aa7099 test-bench-deps: {} maintainer: wjw.hillen@gmail.com synopsis: GPIO and I2C functions for the Raspberry Pi. changelog: '' basic-deps: bytestring: ==0.9.* base: ==4.5.* all-versions: - '0.1.0.0' - '0.2.0' - '0.3.0' - '0.4.0' author: Wander Hillen latest: '0.4.0' description-type: haddock description: This package is a FFI wrapper around the bcm2835 library by Mike McCauley, it also includes a few utility functions for easier use of the imported functions. license-name: BSD3
homepage: https://github.com/WJWH/HPi changelog-type: '' hash: 9c788f1d9e351b60d7e226788f37bf34e49bd8f798fa7e18a2fed983695c1624 test-bench-deps: {} maintainer: wjw.hillen@gmail.com synopsis: GPIO, I2C and SPI functions for the Raspberry Pi. changelog: '' basic-deps: bytestring: <0.11 base: <5 all-versions: - '0.1.0.0' - '0.2.0' - '0.3.0' - '0.4.0' - '0.5.0' author: Wander Hillen latest: '0.5.0' description-type: haddock description: This package is a FFI wrapper around the bcm2835 library by Mike McCauley, it also includes a few utility functions for easier use of the imported functions. license-name: BSD3
Update from Hackage at 2015-09-25T15:37:49+0000
Update from Hackage at 2015-09-25T15:37:49+0000
YAML
mit
commercialhaskell/all-cabal-metadata
a819fc9e10172318bb00b8f89cabf4d407be5ac1
packages/di/dib.yaml
packages/di/dib.yaml
homepage: '' changelog-type: '' hash: 94b2cdd8cf1faa7ae6f8cda8c3884b0cb8737d121739cafb0d1d129ffc11d4dc test-bench-deps: {} maintainer: Brett Lajzer synopsis: A simple, forward build system. changelog: '' basic-deps: cereal: -any bytestring: -any base: ! '>=4.4 && <4.10' time: -any text: -any filepath: -any process: -any containers: -any mtl: -any digest: -any directory: -any all-versions: - '0.5.0' - '0.6.0' - '0.6.1' - '0.7.0' author: Brett Lajzer latest: '0.7.0' description-type: haddock description: Dib is a simple, forward build system consisting of a library and a driver application. Build scripts are written in Haskell instead of a bespoke language. license-name: MIT
homepage: '' changelog-type: '' hash: 29d0209eb144e1fcf0a9a4f46dd89167e8513ba02a381ad65aba9f5e1c9329db test-bench-deps: {} maintainer: Brett Lajzer synopsis: A simple, forward build system. changelog: '' basic-deps: cereal: -any bytestring: -any base: ! '>=4.4 && <4.11' time: -any text: -any filepath: -any process: -any containers: -any mtl: -any digest: -any directory: -any all-versions: - '0.5.0' - '0.6.0' - '0.6.1' - '0.7.0' - '0.7.1' author: Brett Lajzer latest: '0.7.1' description-type: haddock description: Dib is a simple, forward build system consisting of a library and a driver application. Build scripts are written in Haskell instead of a bespoke language. license-name: MIT
Update from Hackage at 2018-01-02T22:05:31Z
Update from Hackage at 2018-01-02T22:05:31Z
YAML
mit
commercialhaskell/all-cabal-metadata
ae28ba640fabd667a8ca170ad93927405e184bce
packages/ea/eap.yaml
packages/ea/eap.yaml
homepage: https://github.com/erickg/eap#readme changelog-type: '' hash: 86ff91d1dc52147cb2ab797f3a5125ebc99492735434c864bf447b39f3361680 test-bench-deps: {} maintainer: erick@codemonkeylabs.de synopsis: Extensible Authentication Protocol (EAP) changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' pretty-hex: -any memory: -any binary: -any cryptonite: -any mtl: -any all-versions: - '0.1.0.0' - '0.6.0.0' - '0.7.0.0' - '0.8.0.0' author: Erick Gonzalez latest: '0.8.0.0' description-type: markdown description: ! '# Extensible Authentication Protocol - EAP This module provides types and definitions as well as on the wire encoding and decoding of EAP packets and messages as per RFC 3748 ' license-name: BSD3
homepage: https://github.com/erickg/eap#readme changelog-type: '' hash: 1442c24b0c356e940e92533a9a34aef7851a8858ac28817905d525bdd16196f9 test-bench-deps: {} maintainer: erick@codemonkeylabs.de synopsis: Extensible Authentication Protocol (EAP) changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' pretty-hex: -any memory: -any binary: -any cryptonite: -any mtl: -any all-versions: - '0.1.0.0' - '0.6.0.0' - '0.7.0.0' - '0.8.0.0' - '0.9.0.0' author: Erick Gonzalez latest: '0.9.0.0' description-type: markdown description: ! '# Extensible Authentication Protocol - EAP This module provides types and definitions as well as on the wire encoding and decoding of EAP packets and messages as per RFC 3748 ' license-name: BSD3
Update from Hackage at 2017-10-26T13:25:33Z
Update from Hackage at 2017-10-26T13:25:33Z
YAML
mit
commercialhaskell/all-cabal-metadata
90dc24040f7fa3a94be6172fab005cab2b6e81eb
packages/chiffchaff-multi/.travis.yml
packages/chiffchaff-multi/.travis.yml
language: node_js matrix: include: - node_js: '0.10' - node_js: '0.12' - node_js: iojs - node_js: 4 - node_js: 5 - node_js: 6 - node_js: node env: COVERALLS=1
language: node_js matrix: include: - node_js: '0.10' - node_js: '0.12' - node_js: iojs - node_js: 4 - node_js: 5 - node_js: 6 - node_js: node
Disable Coveralls until we have tests
Disable Coveralls until we have tests
YAML
mit
zentrick/chiffchaff,zentrick/chiffchaff
f86ef07f3bcea176c66a7f76d1a4dd86254c1423
.buildkite/pipeline.yml
.buildkite/pipeline.yml
steps: - label: run bats tests plugins: docker-compose#v3.0.2: run: tests - label: ":bash: Shellcheck" plugins: shellcheck#v1.1.2: files: - hooks/* - label: ":sparkles: Linter" plugins: plugin-linter#v2.0.0: id: golang - label: test running a specific version command: go version plugins: ${BUILDKITE_REPO}#${BUILDKITE_COMMIT}: version: 1.10.2 - label: test cross compiling command: go build ./tests/helloworld plugins: ${BUILDKITE_REPO}#${BUILDKITE_COMMIT}: version: 1.10.2 environment: - GOOS=android - GOARCH=arm - GOARM=7
steps: - label: run bats tests plugins: docker-compose#v3.0.2: run: tests - label: ":bash: Shellcheck" plugins: shellcheck#v1.1.2: files: - hooks/* - label: ":sparkles: Linter" plugins: plugin-linter#v2.0.0: id: golang - label: test running a specific version command: go version plugins: ${BUILDKITE_REPO}#${BUILDKITE_COMMIT}: version: 1.13.8 - label: test cross compiling command: go build ./tests/helloworld plugins: ${BUILDKITE_REPO}#${BUILDKITE_COMMIT}: version: 1.13.8 environment: - GOOS=linux - GOARCH=arm - GOARM=7
Fix invalid android+arm test combo
Fix invalid android+arm test combo
YAML
mit
buildkite-plugins/golang-buildkite-plugin,buildkite-plugins/golang-buildkite-plugin
d1a0f83053e87c86851d1ec82a8b26f553fce9cc
.buildkite/pipeline.yml
.buildkite/pipeline.yml
steps: - name: ":rspec:" command: "rspec --color specs" plugins: docker-compose#v2.5.0: run: app
steps: - name: ":rspec:" command: "rspec --color specs" plugins: docker-compose#v2.5.1: run: app
Update buildkite plugin docker-compose to v2.5.1
Update buildkite plugin docker-compose to v2.5.1
YAML
mit
buildkite/ruby-docker-example
38629eee7e007b965745a0c32df29c14d5378c7d
config/packages/sentry.yaml
config/packages/sentry.yaml
parameters: env(SENTRY_DSN): "https://c70286fb157048be9ebc6e918e8c2b79@o200403.ingest.sentry.io/1323198" sentry: dsn: '%env(SENTRY_DSN)%' options: before_send: 'App\Service\SentryBeforeSend'
parameters: env(SENTRY_DSN): "https://c70286fb157048be9ebc6e918e8c2b79@o200403.ingest.sentry.io/1323198" sentry: dsn: '%env(SENTRY_DSN)%' options: before_send: 'App\Service\SentryBeforeSend' when@test: sentry: dsn: ~ tracing: false
Disable tracing in test env
Disable tracing in test env This conflicts with out fixtures loader and causes other weird issues, we don't need it here so disable it.
YAML
mit
Trott/ilios,thecoolestguy/ilios,dartajax/ilios,ilios/ilios,Trott/ilios,stopfstedt/ilios,dartajax/ilios,stopfstedt/ilios,thecoolestguy/ilios,ilios/ilios
1c41acef86d09fc288ff68bccd7f3e97bb5b2193
.forestry/front_matter/templates/pessoal2022.yml
.forestry/front_matter/templates/pessoal2022.yml
--- label: pessoal2022 hide_body: false fields: - type: text name: title label: title - type: text name: layout label: layout - type: datetime name: date label: date - type: list name: tags label: tags - type: boolean name: comments label: comments - type: file name: image label: image - type: text name: type label: type
--- label: pessoal2022 hide_body: false fields: - type: text name: layout label: layout default: post hidden: true - name: type type: select default: '' config: required: false options: - post - talk source: type: simple section: file: path: label: type - type: text name: title label: title - name: image type: text config: required: false label: image default: https://res.cloudinary.com/jesstemporal/image/upload/v1640360835/covers/pessoal_unbpf7.png - type: datetime name: date label: date - type: list name: tags label: tags - type: boolean name: comments label: comments - name: related type: boolean label: related - name: posts_list type: list config: use_select: false min: max: label: posts_list showOnly: field: related value: true - name: lang type: select default: [] config: required: false options: - pt - en source: type: simple section: file: path: label: lang - name: translated type: text config: required: false label: translated description: "/" - name: translator type: boolean label: translator - name: author_note_link type: select default: '' config: required: false options: - professoradeboraazevedo@gmail.com source: type: simple section: file: path: label: author_note_link showOnly: field: translator value: true - name: author_note type: text config: required: false label: author_note description: This blog post was adapted for English by [name]. showOnly: field: translator value: true
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io
cb613ee2e456a9c26e3b109106ef63cb5da711d2
pubspec.yaml
pubspec.yaml
name: sass version: 1.0.0-dev description: A Sass implementation in Dart. author: Dart Team <misc@dartlang.org> homepage: https://github.com/dart-lang/sass executables: dart-sass: sass environment: sdk: '>=1.8.0 <2.0.0' dependencies: args: "^0.13.0" charcode: "^1.1.0" collection: "^1.1.0" path: "^1.0.0" source_span: "^1.0.0" string_scanner: ">=0.1.5 <2.0.0" tuple: "^1.0.0" dev_dependencies: archive: "^1.0.0" dart_style: "^0.2.9" grinder: "^0.8.0" http: "^0.11.0" js: "^0.6.0" node_preamble: "^1.0.0" test: "^0.12.0" yaml: "^2.0.0"
name: sass version: 1.0.0-dev description: A Sass implementation in Dart. author: Dart Team <misc@dartlang.org> homepage: https://github.com/dart-lang/sass executables: dart-sass: sass environment: sdk: '>=1.19.0 <2.0.0' dependencies: args: "^0.13.0" charcode: "^1.1.0" collection: "^1.1.0" path: "^1.0.0" source_span: "^1.0.0" string_scanner: ">=0.1.5 <2.0.0" tuple: "^1.0.0" dev_dependencies: archive: "^1.0.0" dart_style: "^0.2.9" grinder: "^0.8.0" http: "^0.11.0" js: "^0.6.0" node_preamble: "^1.0.0" test: "^0.12.0" yaml: "^2.0.0"
Use a more conservative SDK version.
Use a more conservative SDK version.
YAML
mit
sass/dart-sass,sass/dart-sass
003d2c5dd02a4d519143dd4cd3c935fbfbbe28e7
.github/workflows/coding-standards.yml
.github/workflows/coding-standards.yml
name: Coding standards on: [ 'push', 'pull_request' ] jobs: cs: name: Coding standards runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: 7.4 tools: composer:v2, cs2pr coverage: none - name: Cache dependencies installed with Composer uses: actions/cache@v2 with: path: ~/.composer/cache key: php-74-composer-locked-${{ hashFiles('composer.lock') }} restore-keys: php-74-composer-locked- - name: Install PHP dependencies run: composer install --no-interaction --no-progress --no-suggest - name: PHP CodeSniffer run: vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr
name: Coding standards on: [ 'push', 'pull_request' ] jobs: cs: name: Coding standards runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: 7.4 tools: composer, cs2pr coverage: none - name: Cache dependencies installed with Composer uses: actions/cache@v2 with: path: ~/.composer/cache key: php-74-composer-locked-${{ hashFiles('composer.lock') }} restore-keys: php-74-composer-locked- - name: Install PHP dependencies run: composer install --no-interaction --no-progress --no-suggest - name: PHP CodeSniffer run: vendor/bin/phpcs -q --no-colors --report=checkstyle | cs2pr
Use composer v1 for now
Use composer v1 for now
YAML
mit
PHP-DI/PhpDocReader
e3160b58d9c9cde3e4be9d2ded8292b6a1505ac0
.github/workflows/publish-to-nuget.yml
.github/workflows/publish-to-nuget.yml
name: Publish to Nuget on: workflow_dispatch jobs: create-release: runs-on: windows-2022 env: Configuration: Release Solution_Name: Source\EpubReader.sln steps: - name: Checkout uses: actions/checkout@v2 with: fetch-depth: 0 - name: Install .NET 6 uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.x - name: Setup MSBuild uses: microsoft/setup-msbuild@v1.0.2 - name: Restore dependencies run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration /p:RestorePackagesConfig=true - name: Build solution run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration - name: Make Nuget package run: nuget.exe pack Source\VersOne.Epub\VersOne.Epub.nuspec - name: Publish Nuget package run: nuget.exe push *.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey ${{ secrets.NugetApiKey }} -SkipDuplicate
name: Publish to Nuget on: workflow_dispatch jobs: create-release: runs-on: windows-2022 env: Configuration: Release Solution_Name: Source\EpubReader.sln steps: - name: Checkout uses: actions/checkout@v2 with: fetch-depth: 0 - name: Install .NET 6 uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.x - name: Setup MSBuild uses: microsoft/setup-msbuild@v1.0.2 - name: Restore dependencies run: msbuild $env:Solution_Name /t:Restore /p:Configuration=$env:Configuration /p:RestorePackagesConfig=true - name: Build solution run: msbuild $env:Solution_Name /p:Configuration=$env:Configuration - name: Make Nuget package run: nuget.exe pack Source\VersOne.Epub\VersOne.Epub.nuspec - name: Publish Nuget package run: nuget.exe push *.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey ${{ secrets.NUGET_API_KEY }} -SkipDuplicate
Change Nuget API key parameter capitalization
Change Nuget API key parameter capitalization
YAML
unlicense
vers-one/EpubReader
1f881a47d2d1159c339414a3f2b92cf109a3c349
docs/_data/navigation.yaml
docs/_data/navigation.yaml
# If you want to link only specific pages in your header, add the path to the # pages in order as they should show up. main: - title: "Docs" url: /plank/docs/getting-started/tutorial.html - title: "GitHub" url: https://github.com/pinterest/plank new_window: true
# If you want to link only specific pages in your header, add the path to the # pages in order as they should show up. main: - title: "Docs" url: /plank/docs/getting-started/installation.html - title: "GitHub" url: https://github.com/pinterest/plank new_window: true
Update "Docs" link in header to point to "Installation"
Update "Docs" link in header to point to "Installation"
YAML
apache-2.0
pinterest/plank,pinterest/plank,maicki/plank,pinterest/plank,maicki/plank,pinterest/plank,maicki/plank,maicki/plank
8a13b81b98b87e233520ba67e20c21fdd202ab9e
website/_data/venue.yml
website/_data/venue.yml
Room-1 : name: Kings type: Classroom size: 50 Room-2: name: Portland type: Classroom size: 50 Room-3: name: Larch type: Cabaret size: 30 Room-4: name: Montague type: Cabaret size: 30 Room-5: name: Maulden type: Cabaret size: 30 Room-6: name: Pedley type: Cabaret size: 30 Villa-1: name: OwaspSamm Villa Villa-2: name: Mobile Project Villa Villa-3: name: DevSecCon Villa Villa-4: name: Threat Model Villa Villa-5: name: PhotoBox Villa Villa-6: name: Capital One Villa
Room-1 : name: Kings type: Classroom size: 50 Room-2: name: Portland type: Classroom size: 50 Room-3: name: Larch type: Cabaret size: 30 Room-4: name: Montague type: Cabaret size: 30 Room-5: name: Maulden type: Cabaret size: 30 Room-6: name: Pedley type: Cabaret size: 30 Villa-1: name: OwaspSamm Villa Villa-2: name: Mobile Project Villa Villa-3: name: DevSecCon Villa Villa-4: name: Threat Model Villa Villa-5: name: Juice Shop Villa Villa-7: name: Testing Guide Villa Villa-8: name: Owasp Projects Villa-9: name: PhotoBox Villa Villa-10: name: Capital One Villa
Add villas by screenshot from @diniscruz - Sorry if you get a merge conflict... ;-)
Add villas by screenshot from @diniscruz - Sorry if you get a merge conflict... ;-)
YAML
apache-2.0
OWASP/owasp-summit-2017,OWASP/owasp-summit-2017,OWASP/owasp-summit-2017,OWASP/owasp-summit-2017
e7369436f31f8d1f7392ebbd21ad817bb927d75f
.github/workflows/assign-pr.yml
.github/workflows/assign-pr.yml
name: 'Auto Assign PR' on: pull_request: jobs: add-reviews: runs-on: ubuntu-latest steps: - uses: kentaro-m/auto-assign-action@v1.1.2 with: repo-token: "${{ secrets.GITHUB_TOKEN }}"
name: 'Auto Assign PR' on: pull_request_target jobs: add-reviews: runs-on: ubuntu-latest steps: - uses: kentaro-m/auto-assign-action@v1.1.1 with: repo-token: "${{ secrets.GITHUB_TOKEN }}"
Fix permissions for assign PR action.
Fix permissions for assign PR action.
YAML
mit
jenkinsci/analysis-model,jenkinsci/analysis-model,jenkinsci/analysis-model,jenkinsci/analysis-model
da1eeb069da9c7ac450a7b83474401f01e256c34
.github/workflows/automerge.yml
.github/workflows/automerge.yml
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/merge-me-action@v2.9.143 with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/merge-me-action@v2.9.149 with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
Bump ridedott/merge-me-action from 2.9.143 to 2.9.149
Bump ridedott/merge-me-action from 2.9.143 to 2.9.149
YAML
mit
fizyk/pyramid_localize
466be45e6f24fd914e9293502ad0afc52bdb7b0e
.github/workflows/android.yaml
.github/workflows/android.yaml
name: CI for Android # https://github.com/google/mozc/blob/master/docs/build_mozc_in_docker.md # Run on push. on: push # Prevent previous workflows from running. concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} cancel-in-progress: true jobs: build: # https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md runs-on: ubuntu-20.04 timeout-minutes: 60 steps: - name: checkout uses: actions/checkout@v2 with: submodules: 'recursive' - name: setup run: | # Change the default Android NDK version. # https://github.com/actions/virtual-environments/issues/5595 ANDROID_ROOT=/usr/local/lib/android ANDROID_SDK_ROOT=${ANDROID_ROOT}/sdk ANDROID_NDK_ROOT=${ANDROID_SDK_ROOT}/ndk-bundle ln -sfn $ANDROID_SDK_ROOT/ndk/21.4.7075529 $ANDROID_NDK_ROOT - name: build working-directory: ./src run: | bazel build --config oss_android package
name: CI for Android # https://github.com/google/mozc/blob/master/docs/build_mozc_in_docker.md # Run on push. on: push # Prevent previous workflows from running. concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} cancel-in-progress: true jobs: build: # https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md runs-on: ubuntu-20.04 timeout-minutes: 60 steps: - name: checkout uses: actions/checkout@v2 with: submodules: 'recursive' - name: setup run: | # Android NDK # Bazel has not yet supported Android NDK 22 or later. # https://github.com/bazelbuild/bazel/issues/12889 # Install Android NDK 21. # https://github.com/actions/runner-images/issues/5930 ANDROID_SDK_ROOT=/usr/local/lib/android/sdk SDKMANAGER=${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager echo "y" | $SDKMANAGER "ndk;21.4.7075529" echo "ANDROID_NDK_HOME=$ANDROID_SDK_ROOT/ndk/21.4.7075529" >> $GITHUB_ENV - name: build working-directory: ./src run: | bazel build --config oss_android package
Use Android NDK 21 in GitHub Actions.
Use Android NDK 21 in GitHub Actions. * This will fix the current build error for GitHub Actions. PiperOrigin-RevId: 467605371
YAML
bsd-3-clause
fcitx/mozc,fcitx/mozc,google/mozc,google/mozc,fcitx/mozc,fcitx/mozc,google/mozc,fcitx/mozc,google/mozc,google/mozc
50dc5be9c9ed7176a2bc3e86d57e9a2b96535ce6
.github/workflows/javalint.yaml
.github/workflows/javalint.yaml
name: Java Presubmit on: [push] jobs: formatting: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 # v2 minimum required # Recommended: latest versions of Google Java Format require JDK 11+ - uses: actions/setup-java@v1 with: java-version: "11" - uses: axel-op/googlejavaformat-action@v3 with: args: "--skip-sorting-imports --replace" skipCommit: true - uses: EndBug/add-and-commit@v4 with: author_email: acnwigwe@google.com message: "Autoformat java files" add: "*.java" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Java Presubmit on: [push] jobs: formatting: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 # v2 minimum required # Recommended: latest versions of Google Java Format require JDK 11+ - uses: actions/setup-java@v1 with: java-version: "11" - uses: axel-op/googlejavaformat-action@v3 with: args: "--skip-sorting-imports --skip-removing-unused-imports --replace" skipCommit: true - uses: EndBug/add-and-commit@v4 with: author_email: acnwigwe@google.com message: "Autoformat java files" add: "*.java" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Fix issue with formatter removing certain imports
Fix issue with formatter removing certain imports
YAML
apache-2.0
googleinterns/step19-2020,googleinterns/step19-2020,googleinterns/step19-2020
ef175f3e3ed7e11dbadab4f84f9ff45c6b93ecac
.github/workflows/workflow.yml
.github/workflows/workflow.yml
name: Build Status on: push: branches: [master] pull_request: branches: [master] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm test env: CI: true
name: Build Status on: workflow_dispatch: push: branches: [master] pull_request: branches: [master] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm test env: CI: true
Allow manual trigger of build action
Allow manual trigger of build action
YAML
mit
cjbarth/passport-saml,cjbarth/passport-saml,bergie/passport-saml
3b34d6829a451c81705586a5ecdcec83aa2e25c0
openforcefield/meta.yaml
openforcefield/meta.yaml
package: name: openforcefield version: 0.2.0 source: git_url: https://github.com/openforcefield/openforcefield.git git_tag: 0.2.0 build: preserve_egg_dir: True number: 0 # Build number and string do not work together. #string: py{{ py }}_a1 # Alpha version 1. skip: True # [py27 or py35] extra: #force_upload: True upload: main # Upload to anaconda with the "main" label. requirements: build: - python - setuptools run: - python - numpy - networkx - parmed - rdkit - ambermini - packaging # Serialization: Should these be optional? - toml - bson - msgpack-python - xmltodict about: home: https://github.com/openforcefield/openforcefield license: MIT license_file: LICENSE description: The Open Forcefield Toolkit provides implementations of the SMIRNOFF format, parameterization engine, and other tools.
package: name: openforcefield version: 0.2.0 source: git_url: https://github.com/openforcefield/openforcefield.git git_tag: 0.2.0 build: preserve_egg_dir: True number: 0 # Build number and string do not work together. #string: py{{ py }}_a1 # Alpha version 1. skip: True # [win or py27 or py35] extra: force_upload: True upload: main # Upload to anaconda with the "main" label. requirements: build: - python - setuptools run: - python - numpy - openmm - networkx - parmed - rdkit - ambermini - packaging # Serialization: Should these be optional? - toml - bson - msgpack-python - xmltodict - pyyaml - cairo ==1.16 about: home: https://github.com/openforcefield/openforcefield license: MIT license_file: LICENSE description: The Open Forcefield Toolkit provides implementations of the SMIRNOFF format, parameterization engine, and other tools.
Fix issue with rdkit/cairo/python versions
[openforcefield] Fix issue with rdkit/cairo/python versions
YAML
mit
peastman/conda-recipes,peastman/conda-recipes,omnia-md/conda-recipes,omnia-md/conda-recipes,peastman/conda-recipes,omnia-md/conda-recipes
633e144b7996762614f4074c273564255a922596
.github/workflows/ci.yml
.github/workflows/ci.yml
name: CI on: [push] jobs: ci: name: CI - OS ${{ matrix.os }}, Node.js ${{ matrix.node-version }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] node-version: [14.x, 16.x] steps: - name: Check out repository code uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: 'npm' - name: Install run: npm ci - name: Lint run: npm run lint - name: Build run: npm run prod - name: Test run: npm run test - name: Upload coverage report uses: codecov/codecov-action@v3 - name: Set up SonarQube uses: warchant/setup-sonar-scanner@v3 - name: Run SonarQube run: sonar-scanner
name: CI on: [push] jobs: ci: name: CI - OS ${{ matrix.os }}, Node.js ${{ matrix.node-version }} runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] node-version: [14.x, 16.x] steps: - name: Check out repository code uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: 'npm' - name: Install run: npm ci - name: Lint run: npm run lint - name: Build run: npm run prod - name: Test run: npm run test - name: Upload coverage report uses: codecov/codecov-action@v3 - name: SonarCloud Scan uses: sonarsource/sonarcloud-github-action@master env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Add SonarCloud scan to Github Action CI
Add SonarCloud scan to Github Action CI
YAML
mit
michaeldzjap/react-signature-pad-wrapper,michaeldzjap/react-signature-pad-wrapper,michaeldzjap/react-signature-pad-wrapper,michaeldzjap/react-signature-pad-wrapper
aaeca4638b9c8ba0e5b246e2e024f2b46c29d05e
.github/workflows/go.yml
.github/workflows/go.yml
name: Go on: [push] jobs: build: name: Build runs-on: ubuntu-latest steps: - name: Set up Go 1.15 uses: actions/setup-go@v2 with: go-version: 1.15 id: go - name: Check out code uses: actions/checkout@v2 with: fetch-depth: 0 - name: Get dependencies run: | go get -v -t -d ./... - name: Test run: go test -v ./... - name: Lint uses: golangci/golangci-lint-action@v2.2.1 with: version: v1.31 - name: Cross-compile uses: goreleaser/goreleaser-action@v2 if: github.ref == 'refs/heads/main' with: version: latest args: build --snapshot - name: Release uses: goreleaser/goreleaser-action@v2 if: startsWith(github.ref, 'refs/tags/') with: version: latest args: release --rm-dist env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
name: Go on: [push] jobs: build: name: Build runs-on: ubuntu-latest steps: - name: Set up Go 1.15 uses: actions/setup-go@v2 with: go-version: 1.15 id: go - name: Check out code uses: actions/checkout@v2 with: fetch-depth: 0 - name: Get dependencies run: | go get -v -t -d ./... - name: Test run: go test -v ./... - name: Lint uses: golangci/golangci-lint-action@v2.2.1 with: version: v1.32 - name: Cross-compile uses: goreleaser/goreleaser-action@v2 if: github.ref == 'refs/heads/main' with: version: latest args: build --snapshot - name: Release uses: goreleaser/goreleaser-action@v2 if: startsWith(github.ref, 'refs/tags/') with: version: latest args: release --rm-dist env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
Revert "Don't upgrade linter that much."
Revert "Don't upgrade linter that much." This reverts commit 233eb490dcca89a6e2f69cf19dc6c878213b8a5c.
YAML
apache-2.0
codahale/usl
94c7f3c764ec49b1323d63b786675bd4371f85d9
.github/workflows/pr.yml
.github/workflows/pr.yml
name: pr/push checks on: [push, pull_request] jobs: build: name: Build, Test, Coverage runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.17 - name: Lint uses: golangci/golangci-lint-action@v2 - name: Build run: go build -v ./... - name: Test run: go test -v ./... - name: Initialize CodeQL uses: github/codeql-action/init@v1 with: language: 'go' - name: CodeQL Analysis uses: github/codeql-action/analyze@v1
name: pr/push checks on: [push, pull_request] jobs: build: name: Build, Test, Coverage runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Go uses: actions/setup-go@v2 with: go-version: 1.17 - name: Lint uses: golangci/golangci-lint-action@v2 - name: Build run: go build -v ./... - name: Test run: go test -v ./... - name: Run coverage run: go test -race -coverprofile=coverage.out -covermode=atomic - name: Upload coverage to Codecov run: bash <(curl -s https://codecov.io/bash) - name: Initialize CodeQL uses: github/codeql-action/init@v1 with: language: 'go' - name: CodeQL Analysis uses: github/codeql-action/analyze@v1
Add coverage calc on each commit
Add coverage calc on each commit
YAML
mit
ekalinin/awsping
c1e78d49e24f992a0db14f22d5b1c95a96c98fb8
packages/n-/n-tuple.yaml
packages/n-/n-tuple.yaml
homepage: https://github.com/athanclark/n-tuple#readme changelog-type: '' hash: 977c03c730d02324266ea98afa6bf230c1295b260419397df5e90d54d7801839 test-bench-deps: {} maintainer: athan.clark@gmail.com synopsis: Homogeneous tuples of arbitrary length. changelog: '' basic-deps: base: ! '>=4.7 && <5' singletons: -any vector: -any all-versions: - '0.0.0' - '0.0.1' - '0.0.1.1' author: Athan Clark latest: '0.0.1.1' description-type: markdown description: ! "# n-tuple\n\n\n```haskell\n{-# LANGUAGE DataKinds -#}\n\nimport Data.NTuple\n\n\nfoo :: NTuple 3 String\nfoo\n = incl _3 \"three\"\n . incl _2 \"two\"\n . incl _1 \"one\"\n $ empty\n\n\none :: String\none = proj _1 foo\n\ntwo :: String\ntwo = proj _2 foo\n```\n" license-name: BSD3
homepage: https://github.com/athanclark/n-tuple#readme changelog-type: '' hash: 2450891bbb59819ea14889fb863ee8fea52ee1056ce73d458b6a1ce2005ef0b9 test-bench-deps: {} maintainer: athan.clark@gmail.com synopsis: Homogeneous tuples of arbitrary length. changelog: '' basic-deps: base: ==4.10.* singletons: ! '>=2.3 && <2.4' vector: -any all-versions: - '0.0.0' - '0.0.1' - '0.0.1.1' - '0.0.2.0' author: Athan Clark latest: '0.0.2.0' description-type: markdown description: ! "# n-tuple\n\n\n```haskell\n{-# LANGUAGE DataKinds -#}\n\nimport Data.NTuple\n\n\nfoo :: NTuple 3 String\nfoo\n = incl _3 \"three\"\n . incl _2 \"two\"\n . incl _1 \"one\"\n $ empty\n\n\none :: String\none = proj _1 foo\n\ntwo :: String\ntwo = proj _2 foo\n```\n" license-name: BSD3
Update from Hackage at 2018-03-16T01:03:29Z
Update from Hackage at 2018-03-16T01:03:29Z
YAML
mit
commercialhaskell/all-cabal-metadata
694c667c3e0dadd1ad30179078916ca13c2d9ded
cluster/manifests/kube-janitor/rules-config.yaml
cluster/manifests/kube-janitor/rules-config.yaml
{{ if ne .Environment "production" }} apiVersion: v1 kind: ConfigMap metadata: name: kube-janitor namespace: kube-system data: rules.yaml: |- # example rules configuration to set TTL for arbitrary objects # see https://github.com/hjacobs/kube-janitor for details rules: - id: require-application-label # remove deployments and statefulsets without a label "application" resources: - deployments - statefulsets # see http://jmespath.org/specification.html jmespath: "!(spec.template.metadata.labels.application) && metadata.creationTimestamp > '2019-04-15'" ttl: 7d - id: temporary-cdp-namespaces # delete all temporary e2e namespaces (created by CDP) with a name starting with "d-*" resources: - namespaces # this uses JMESPath's built-in "starts_with" function # see http://jmespath.org/specification.html#starts-with jmespath: "starts_with(metadata.name, 'd-')" ttl: 24h {{ end }}
{{ if ne .Environment "production" }} apiVersion: v1 kind: ConfigMap metadata: name: kube-janitor namespace: kube-system data: rules.yaml: |- # example rules configuration to set TTL for arbitrary objects # see https://github.com/hjacobs/kube-janitor for details rules: - id: require-application-label # remove deployments and statefulsets without a label "application" resources: - deployments - statefulsets # see http://jmespath.org/specification.html jmespath: "!(spec.template.metadata.labels.application) && metadata.creationTimestamp > '2019-04-15'" ttl: 7d - id: temporary-cdp-namespaces # delete all temporary e2e namespaces (created by CDP) with a name starting with "d-*" resources: - namespaces # this uses JMESPath's built-in "starts_with" function # see http://jmespath.org/specification.html#starts-with jmespath: "starts_with(metadata.name, 'd-')" ttl: 24h - id: cleanup-resources-from-pull-requests # delete all resources in namespaces matching .*-pr-.* which allows to put resources build from # pull requests into a namespace like my-project-pr-123 which get automatically cleaned up after 24h # and don't mess up the cluster, see #2930. resources: - namespaces jmespath: "contains(metadata.name, '-pr-')" ttl: 24h {{ end }}
Introduce new rule to cleanup resources from pullrequests
Introduce new rule to cleanup resources from pullrequests The rule cleans up resources in namespaces matching `*.-pr-.*` like `my-app-pr-123`. TODO: we need to inform the developers as we cannot check whether the part after `-pr-` is a number. `my-pr-app` would match, too and would get cleaned up!
YAML
mit
zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws,zalando-incubator/kubernetes-on-aws
44aaebdb47c97d1287c9d85108a0da9e6b672dfe
metadata/foss.cnugteren.nlweer.yml
metadata/foss.cnugteren.nlweer.yml
AntiFeatures: - NonFreeNet Categories: - Science & Education License: MIT SourceCode: https://github.com/CNugteren/NLWeer IssueTracker: https://github.com/CNugteren/NLWeer/issues Changelog: https://raw.githubusercontent.com/CNugteren/NLWeer/HEAD/CHANGELOG AutoName: NLWeer RepoType: git Repo: https://github.com/CNugteren/NLWeer Builds: - versionName: 1.1.0 versionCode: 2 commit: v1.1.0 subdir: app gradle: - yes - versionName: 1.2.0 versionCode: 3 commit: v1.2.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.2.0 CurrentVersionCode: 3
AntiFeatures: - NonFreeNet Categories: - Science & Education License: MIT SourceCode: https://github.com/CNugteren/NLWeer IssueTracker: https://github.com/CNugteren/NLWeer/issues Changelog: https://raw.githubusercontent.com/CNugteren/NLWeer/HEAD/CHANGELOG AutoName: NLWeer RepoType: git Repo: https://github.com/CNugteren/NLWeer Builds: - versionName: 1.1.0 versionCode: 2 commit: v1.1.0 subdir: app gradle: - yes - versionName: 1.2.0 versionCode: 3 commit: v1.2.0 subdir: app gradle: - yes - versionName: 1.3.0 versionCode: 4 commit: v1.3.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.3.0 CurrentVersionCode: 4
Update NLWeer to 1.3.0 (4)
Update NLWeer to 1.3.0 (4)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
652afefc8ae58142542882067ea73cad606ccc3b
metadata/net.ktnx.mobileledger.yml
metadata/net.ktnx.mobileledger.yml
Categories: - Money License: GPL-3.0-or-later SourceCode: https://git.ktnx.net/?p=mobile-ledger.git Changelog: https://git.ktnx.net/?p=mobile-ledger.git;a=blob;f=CHANGES.md;hb=HEAD AutoName: MoLe RepoType: git Repo: https://git.ktnx.net/git/mobile-ledger.git Builds: - versionName: '0.6' versionCode: 16 commit: v0.6 subdir: app gradle: - yes - versionName: '0.7' versionCode: 17 commit: v0.7 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '0.7' CurrentVersionCode: 17
Categories: - Money License: GPL-3.0-or-later SourceCode: https://git.ktnx.net/?p=mobile-ledger.git Changelog: https://git.ktnx.net/?p=mobile-ledger.git;a=blob;f=CHANGES.md;hb=HEAD AutoName: MoLe RepoType: git Repo: https://git.ktnx.net/git/mobile-ledger.git Builds: - versionName: '0.6' versionCode: 16 commit: v0.6 subdir: app gradle: - yes - versionName: '0.7' versionCode: 17 commit: v0.7 subdir: app gradle: - yes - versionName: '0.8' versionCode: 18 commit: v0.8 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: '0.8' CurrentVersionCode: 18
Update MoLe to 0.8 (18)
Update MoLe to 0.8 (18)
YAML
agpl-3.0
f-droid/fdroid-data,f-droid/fdroiddata,f-droid/fdroiddata
8d263ae96b0e32a9ade6d9d098c66ce05792aa5f
ruby/rvm/tasks/main.yml
ruby/rvm/tasks/main.yml
--- - name: packages apt: pkg: "{{ item }}" update_cache: yes state: present cache_valid_time: 86400 with_flattened: - rvm_packages - rvm_custom_packages - include: gpg_keys.yml when: rvm_gpg_keys != '' - name: Install RVM shell: > curl -L https://get.rvm.io | bash -s stable --autolibs=disable --auto-dotfiles args: creates: ~/.rvm sudo: yes sudo_user: "{{ rvm_user }}" - name: ruby versions shell: > ~/.rvm/bin/rvm install {{ '--default' if item == rvm_default else '' }} {{ item }} args: creates: "~/.rvm/rubies/ruby-{{ item }}" sudo: yes sudo_user: "{{ rvm_user }}" with_flattened: - rvm_rubies - "{{ rvm_default }}" - name: facts set_fact: RUBY_PREFIX: '~/.rvm/bin/rvm default do ' RUBY_BIN: '/home/{{ rvm_user }}/.rvm/gems/ruby-{{ rvm_default }}/wrappers/ruby' - name: Install gems shell: > {{RUBY_PREFIX}} gem install {{item}} sudo: yes sudo_user: "{{ rvm_user }}" with_flattened: - rvm_install_gems register: ruby_rvm_bundler_result changed_when: > "Fetching" in ruby_rvm_bundler_result.stdout
--- - name: packages apt: pkg: "{{ item }}" update_cache: yes state: present cache_valid_time: 86400 with_flattened: - rvm_packages - rvm_custom_packages - include: gpg_keys.yml when: rvm_gpg_keys != '' - name: Install RVM shell: > curl -L https://get.rvm.io | bash -s stable --autolibs=disable --auto-dotfiles args: creates: ~/.rvm sudo: yes sudo_user: "{{ rvm_user }}" - name: ruby versions shell: > ~/.rvm/bin/rvm install {{ '--default' if item == rvm_default else '' }} {{ item }} args: creates: "~/.rvm/rubies/ruby-{{ item }}" sudo: yes sudo_user: "{{ rvm_user }}" with_flattened: - rvm_rubies - "{{ rvm_default }}" - name: facts set_fact: RUBY_PREFIX: '~/.rvm/bin/rvm default do ' RUBY_BIN: '/home/{{ rvm_user }}/.rvm/gems/ruby-{{ rvm_default }}/wrappers/ruby' - name: install gems shell: > {{RUBY_PREFIX}} gem install {{item}} sudo: yes sudo_user: "{{ rvm_user }}" with_flattened: - rvm_install_gems
Revert "added 'changed_when' to indicate whether the gems had been installed or not"
Revert "added 'changed_when' to indicate whether the gems had been installed or not" This reverts commit 529715bd34b29e3a78d817b95d08b61bfa063323.
YAML
mit
dresden-weekly/ansible-rails,dresden-weekly/ansible-rails,arBmind/ansible-rails
987f4bd3563d930bc823496bf7313155dd553a29
docker-compose-example.yaml
docker-compose-example.yaml
redash: build: . ports: - "5000:5000" - "9001:9001" links: - redis - postgres stdin_open: true redis: image: redis:3.0 ports: - "6379:6379" postgres: image: postgres:9.4 ports: - "5432:5432"
redash: build: . ports: - "5000:5000" - "9001:9001" links: - redis - postgres env_file: .env redis: image: redis:3.0 ports: - "6379:6379" postgres: image: postgres:9.4 ports: - "5432:5432"
Use .env file through Dockefile
Use .env file through Dockefile Signed-off-by: John Wu <50f3f01caa053693ce619d596e14b0ff3901ab49@leapoahead.com>
YAML
bsd-2-clause
chriszs/redash,getredash/redash,stefanseifert/redash,alexanderlz/redash,44px/redash,crowdworks/redash,vishesh92/redash,chriszs/redash,guaguadev/redash,alexanderlz/redash,crowdworks/redash,guaguadev/redash,EverlyWell/redash,denisov-vlad/redash,moritz9/redash,44px/redash,M32Media/redash,EverlyWell/redash,pubnative/redash,guaguadev/redash,imsally/redash,easytaxibr/redash,M32Media/redash,getredash/redash,moritz9/redash,imsally/redash,amino-data/redash,M32Media/redash,pubnative/redash,ninneko/redash,akariv/redash,ninneko/redash,pubnative/redash,hudl/redash,stefanseifert/redash,jmvasquez/redashtest,jmvasquez/redashtest,rockwotj/redash,imsally/redash,useabode/redash,stefanseifert/redash,vishesh92/redash,jmvasquez/redashtest,jmvasquez/redashtest,akariv/redash,ninneko/redash,denisov-vlad/redash,ninneko/redash,getredash/redash,hudl/redash,amino-data/redash,guaguadev/redash,rockwotj/redash,vishesh92/redash,akariv/redash,amino-data/redash,rockwotj/redash,hudl/redash,easytaxibr/redash,chriszs/redash,stefanseifert/redash,44px/redash,pubnative/redash,denisov-vlad/redash,denisov-vlad/redash,useabode/redash,EverlyWell/redash,alexanderlz/redash,denisov-vlad/redash,imsally/redash,moritz9/redash,vishesh92/redash,amino-data/redash,ninneko/redash,EverlyWell/redash,crowdworks/redash,guaguadev/redash,getredash/redash,pubnative/redash,hudl/redash,jmvasquez/redashtest,getredash/redash,moritz9/redash,useabode/redash,crowdworks/redash,useabode/redash,easytaxibr/redash,rockwotj/redash,alexanderlz/redash,easytaxibr/redash,44px/redash,akariv/redash,M32Media/redash,akariv/redash,stefanseifert/redash,easytaxibr/redash,chriszs/redash
67e04a39fe07957780e16bae205488d5c345efc9
openstack/tempest/neutron-tempest/values.yaml
openstack/tempest/neutron-tempest/values.yaml
# You can override subchart values here, e.g. concurrency run_pattern: neutron_tempest_plugin.api concurrency: 4
# You can override subchart values here, e.g. concurrency run_pattern: neutron_tempest_plugin.api|tempest.api.network concurrency: 4
Add regex for more tests
[tempest][neutron] Add regex for more tests
YAML
apache-2.0
sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts
86477783afd20f9228f37e3dfab82afcd6f4bf46
config/feature_flags/learning_activities_rce.yml
config/feature_flags/learning_activities_rce.yml
rce_auto_save: state: hidden display_name: RCE Auto-Save description: |- If RCE Enhancements are also enabled, the RCE will auto-save your work as you go applies_to: Course root_opt_in: true cc_in_rce_video_tray: state: hidden display_name: Edit Closed Captions description: Edit closed captions/subtitles to videos from the video options tray in the RCE applies_to: SiteAdmin rce_lti_favorites: state: hidden display_name: Support favorite LTI tools in the RCE description: Let the site administrator select up to 2 LTI apps as favorites, which will then be displayed in the RCE's toolbar applies_to: SiteAdmin rce_pretty_html_editor: state: hidden display_name: Pretty RCE HTML Editor description: A much better HTML code editor for the RCE, though it suffers from being inaccessible to screenreader users. applies_to: SiteAdmin
rce_auto_save: state: hidden display_name: RCE Auto-Save description: |- If RCE Enhancements are also enabled, the RCE will auto-save your work as you go applies_to: Course root_opt_in: true cc_in_rce_video_tray: state: hidden display_name: RCE Edit Closed Captions description: Edit closed captions/subtitles to videos from the video options tray in the RCE applies_to: SiteAdmin rce_lti_favorites: state: hidden display_name: Support favorite LTI tools in the RCE description: Let the site administrator select up to 2 LTI apps as favorites, which will then be displayed in the RCE's toolbar applies_to: SiteAdmin rce_pretty_html_editor: state: hidden display_name: RCE Pretty HTML Editor description: A much better HTML code editor for the RCE, though it suffers from being inaccessible to screenreader users. applies_to: SiteAdmin
Update RCE flag labels to group them on settings page
Update RCE flag labels to group them on settings page closes LS-1802 flag=none test plan: - on the site_admin/settings page > expect the RCE related flags to be grouped together in each section Change-Id: Ic6a07096f3e9a393f5a25ec30537131df4d95179 Reviewed-on: https://gerrit.instructure.com/c/canvas-lms/+/256956 Tested-by: Service Cloud Jenkins <9144042a601061f88f1e1d7a1753ea3e2972119d@instructure.com> Reviewed-by: Robin Kuss <0b206b54367b2de0334896ea45826f0e3194bd35@instructure.com> QA-Review: Robin Kuss <0b206b54367b2de0334896ea45826f0e3194bd35@instructure.com> Product-Review: Peyton Craighill <b6cfaee6364b0ff4306081e7e83cf8ccde7c2fba@instructure.com>
YAML
agpl-3.0
instructure/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,sfu/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,instructure/canvas-lms,sfu/canvas-lms,instructure/canvas-lms
2204f99405a8bb70f14146d5700150cdffe07c57
.bmi/frost_number/info.yaml
.bmi/frost_number/info.yaml
author: J. Scott Stewart doi: email: james.stewart@colorado.edu license: GPL summary: Frost Number model per Nelson and Outcalt 1987 url: version: 0.0.1
author: J. Scott Stewart doi: email: james.stewart@colorado.edu license: GPL url: version: 0.0.1 summary: "From Nelson and Outcalt (1987), the 'frost number', a dimensionless ratio defined by manipulation of either freezing and thawing degree-day sums or frost and thaw penetration depths, can be used to define an unambiguous latitudinal zonation of permafrost continuity. The index is computed using several variables influencing the depth of frost and thaw penetration, and can be related mathematically to the existence and continuity of permafrost. Although the frost number is a useful device for portraying the distribution of contemporary permafrost at continental scales, it is not capable of detecting relict permafrost and should not be mapped over small areas unless numerous climate stations are located in the region of interest."
Add abstract text from Nelson and Outcalt to summary
Add abstract text from Nelson and Outcalt to summary
YAML
mit
permamodel/permamodel,permamodel/permamodel
78e9f42c7e92275255ee674802846df250910dec
.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, 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: yarn - run: yarn build
# 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, 14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: yarn - run: yarn build
Update actions/setup-node action to v2
Update actions/setup-node action to v2
YAML
mit
scriptex/forms-validator,scriptex/forms-validator
9d41abdb1bc3fba1953748db69a797f9dadbd7d5
.github/workflows/maven.yml
.github/workflows/maven.yml
name: Java 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 Maven run: mvn test --file pom.xml -B
name: Java CI on: [push] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up JDK 1.8 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Build with Maven run: mvn test jacoco:report --file pom.xml -B - uses: codecov/codecov-action@v1 with: file: ./**/target/site/jacoco/jacoco.xml name: codecov
Add codecov for github actions.
Add codecov for github actions.
YAML
mit
javadev/underscore-java,javadev/underscore-java
c314b5fbd4f780b69b4788305931f1241d9472a3
.github/workflows/maven.yml
.github/workflows/maven.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. name: Java CI on: [push] jobs: build: runs-on: ubuntu-latest continue-on-error: ${{ matrix.experimental }} strategy: matrix: java: [ 7, 8, 11, 14 ] experimental: [false] include: - node: 15-ea experimental: true steps: - uses: actions/checkout@v1 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build with Maven run: mvn --batch-mode apache-rat:check javadoc:javadoc -Ddoclint=all package --file pom.xml # run: mvn --batch-mode apache-rat:check package --file pom.xml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. name: Java CI on: [push] jobs: build: runs-on: ubuntu-latest continue-on-error: ${{ matrix.experimental }} strategy: matrix: java: [ 7, 8, 11, 14 ] experimental: [false] include: - java: 15-ea experimental: true steps: - uses: actions/checkout@v1 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build with Maven run: mvn --batch-mode apache-rat:check javadoc:javadoc -Ddoclint=all package --file pom.xml # run: mvn --batch-mode apache-rat:check package --file pom.xml
Fix GitHub action for Java 15-ea.
Fix GitHub action for Java 15-ea.
YAML
apache-2.0
apache/commons-validator,apache/commons-validator,apache/commons-validator