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
22fe816914cefe33a9d27f5424ba562726513992
circle.yml
circle.yml
machine: services: - docker environment: CGO_ENABLED: "0" GOOS: "linux" GOARCH: "amd64" GOPATH: "$HOME/go" GS_WD: "$HOME/go/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" dependencies: override: - sudo add-apt-repository ppa:masterminds/glide -y - sudo apt-get update - sudo apt-get install glide -y - mkdir -p $HOME/go/src/github.com/$CIRCLE_PROJECT_USERNAME - cp -rf $HOME/$CIRCLE_PROJECT_REPONAME $HOME/go/src/github.com/$CIRCLE_PROJECT_USERNAME test: override: - cd $GS_WD && go test -v $(glide novendor) - cd $GS_WD && go build -a -v -tags netgo -ldflags "-w -X main.gitCommit=$(git rev-parse --short HEAD)"
machine: environment: CGO_ENABLED: "0" GOOS: "linux" GOARCH: "amd64" GOPATH: "$HOME/go" GS_WD: "$HOME/go/src/github.com/$CIRCLE_PROJECT_USERNAME/$CIRCLE_PROJECT_REPONAME" dependencies: override: - sudo add-apt-repository ppa:masterminds/glide -y - sudo apt-get update - sudo apt-get install glide -y - mkdir -p $HOME/go/src/github.com/$CIRCLE_PROJECT_USERNAME - cp -rf $HOME/$CIRCLE_PROJECT_REPONAME $HOME/go/src/github.com/$CIRCLE_PROJECT_USERNAME test: override: - cd $GS_WD && go test -v $(glide novendor) - cd $GS_WD && go build -a -v -tags netgo -ldflags "-w -X main.gitCommit=$(git rev-parse --short HEAD)"
Remove docker service since we’re not using it
Remove docker service since we’re not using it
YAML
apache-2.0
giantswarm/k8scloudconfig,giantswarm/k8scloudconfig
cb5e3cfb3af72892dfc917311e59d495f6cdfd04
build/ansible/roles/ansible_master/tasks/main.yml
build/ansible/roles/ansible_master/tasks/main.yml
--- # These tasks set up an EC2 instance to be the ansible master - name: add the ansible ppa apt_repository: repo='ppa:ansible/ansible' - name: install packages apt: name={{ item }} state=latest with_items: - ansible - python-pip - git - name: install boto pip: name=boto state=latest - name: write the ansible config template: src=../templates/ansible.cfg.j2 dest=/etc/ansible/ansible.cfg - name: write the boto config template: src=../templates/boto.cfg.j2 dest=/home/{{ deploy_user }}/.boto - name: write the environment profile copy: content="export ANSIBLE_HOSTS=\"/etc/ansible/ec2.py\"" dest=/etc/profile.d/ec2-ansible.sh - name: write the EC2 dynamic inventory config copy: src=../files/ec2.ini dest=/etc/ansible/ec2.ini - name: write the EC2 dynamic inventory script copy: src=../files/ec2.py dest=/etc/ansible/ec2.py mode=0755 - name: write the bash profile template: src=../templates/bash_profile.j2 dest=/home/{{ deploy_user }}/.bash_profile ...
--- # These tasks set up an EC2 instance to be the ansible master - name: add the ansible ppa apt_repository: repo='ppa:ansible/ansible' - name: install packages apt: name={{ item }} state=latest with_items: - ansible - python-pip - git - name: install boto pip: name=boto state=latest - name: install boto3 pip: name=boto3 state=latest - name: write the ansible config template: src=../templates/ansible.cfg.j2 dest=/etc/ansible/ansible.cfg - name: write the boto config template: src=../templates/boto.cfg.j2 dest=/home/{{ deploy_user }}/.boto - name: write the environment profile copy: content="export ANSIBLE_HOSTS=\"/etc/ansible/ec2.py\"" dest=/etc/profile.d/ec2-ansible.sh - name: write the EC2 dynamic inventory config copy: src=../files/ec2.ini dest=/etc/ansible/ec2.ini - name: write the EC2 dynamic inventory script copy: src=../files/ec2.py dest=/etc/ansible/ec2.py mode=0755 - name: write the bash profile template: src=../templates/bash_profile.j2 dest=/home/{{ deploy_user }}/.bash_profile ...
Make sure boto3 is installed as well
Make sure boto3 is installed as well
YAML
mit
rsterbin/liturgicalendar,rsterbin/liturgicalendar,rsterbin/liturgicalendar
a022a8c14b9d80a4b912ddf318f59673adc7a930
src/main/resources/application.yml
src/main/resources/application.yml
spring: application: name: Configurator management: port: 8000
spring: application: name: Configurator management: port: 8000 context-path: /admin/actuator
Change context path of Actuator
Change context path of Actuator
YAML
apache-2.0
sandjelkovic/configurator,sandjelkovic/configurator,sandjelkovic/configurator
d60375bee62c41b285924c4d94917f19deb672aa
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - JEKYLL_ENV=staging preview_output_directory: _site install_dependencies_command: bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv" working_dir: "/srv" instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_env: - JEKYLL_ENV=staging preview_output_directory: _site install_dependencies_command: bundle install --path vendor/bundle preview_docker_image: forestryio/ruby:2.6 mount_path: "/srv" working_dir: "/srv" instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
akshaykhale1992/akshaykhale1992.github.io,akshaykhale1992/akshaykhale1992.github.io,akshaykhale1992/akshaykhale1992.github.io,akshaykhale1992/akshaykhale1992.github.io
527a407b12c481394049295a6022e2d194598b67
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: true admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all - type: directory path: _deep-speeling-blog label: Deep Speeling create: all match: "**/*" upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:"
--- new_page_extension: md auto_deploy: true admin_path: '' webhook_url: sections: - type: directory path: _deep-speeling-blog label: Deep Speeling Blog create: all match: "**/*" - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all - type: directory path: _deep-speeling-blog label: Deep Speeling create: all match: "**/*" upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:"
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
mdcramer/Deep-Speeling-Blog,mdcramer/Deep-Speeling-Blog,mdcramer/Deep-Speeling-Blog
d361d52f927953ddd14cf2a2a728ca1d31c27315
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all upload_dir: uploads public_path: "/uploads" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_command: bundle exec jekyll build --drafts --unpublished --future -d _site publish_command: bundle exec jekyll build -d _site preview_env: - JEKYLL_ENV=staging publish_env: - JEKYLL_ENV=production preview_output_directory: _site output_directory: _site
--- new_page_extension: md auto_deploy: false admin_path: webhook_url: sections: - type: jekyll-posts label: Posts create: all - type: jekyll-pages label: Pages create: all upload_dir: images public_path: "/images" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_command: bundle exec jekyll build --drafts --unpublished --future -d _site publish_command: bundle exec jekyll build -d _site preview_env: - JEKYLL_ENV=staging publish_env: - JEKYLL_ENV=production preview_output_directory: _site output_directory: _site
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io
1d19b54c54589807cec17767bf011cf186084168
docker/config/alpharpc_config.yml
docker/config/alpharpc_config.yml
parameters: logger_client_handler_file: php://stdout logger_client_handler_level: 0 logger_worker_handler_file: php://stdout logger_worker_handler_level: 0 client_handler: tcp://0.0.0.0:61002 worker_handler: tcp://0.0.0.0:61003 client_handler_worker_handler: ipc:///home/alpharpc/alpharpc/ipc/alpharpc_client_handler_worker_handler.ipc worker_handler_status: ipc:///home/alpharpc/alpharpc/ipc/alpharpc_worker_status.ipc # This value should be less than or equal to the delay provided to the clients and worker. manager_delay: 1000
parameters: logger_client_handler_file: php://stdout logger_client_handler_level: 200 logger_worker_handler_file: php://stdout logger_worker_handler_level: 200 client_handler: tcp://0.0.0.0:61002 worker_handler: tcp://0.0.0.0:61003 client_handler_worker_handler: ipc:///home/alpharpc/alpharpc/ipc/alpharpc_client_handler_worker_handler.ipc worker_handler_status: ipc:///home/alpharpc/alpharpc/ipc/alpharpc_worker_status.ipc # This value should be less than or equal to the delay provided to the clients and worker. manager_delay: 1000
Increase the loglevel in Docker
Increase the loglevel in Docker To reduce the amount of repetitive loglines.
YAML
bsd-3-clause
alphacomm/alpharpc,alphacomm/alpharpc
69e0a6b48856f40958813663ff91eec736215c87
macos.conf.yaml
macos.conf.yaml
- shell: - mkdir -p ~/.gradle ~/Library/Caches/gradle/{caches,wrapper} && ln -fhs ~/Library/Caches/gradle/{caches,wrapper} ~/.gradle/ - mkdir -p ~/.groovy ~/Library/Caches/groovy/grapes && ln -fhs ~/Library/Caches/groovy/grapes ~/.groovy/ - mkdir -p ~/.ivy2 ~/Library/Caches/ivy2/cache && ln -fhs ~/Library/Caches/ivy2/cache ~/.ivy2/ - mkdir -p ~/.m2 ~/Library/Caches/m2/{repository,wrapper} && ln -fhs ~/Library/Caches/m2/{repository,wrapper} ~/.m2/ - ln -fhs ~/Library/Caches/sbt ~/.sbt - mkdir -p ~/.terraform.d ~/Library/Caches/terraform/plugins && ln -fhs ~/Library/Caches/terraform/plugins ~/.terraform.d/plugin-cache
- shell: - mkdir -p ~/.gradle ~/Library/Caches/gradle/{caches,wrapper} && ln -fhs ~/Library/Caches/gradle/{caches,wrapper} ~/.gradle/ - mkdir -p ~/.groovy ~/Library/Caches/groovy/grapes && ln -fhs ~/Library/Caches/groovy/grapes ~/.groovy/ - mkdir -p ~/.ivy2 ~/Library/Caches/ivy2/cache && ln -fhs ~/Library/Caches/ivy2/cache ~/.ivy2/ - mkdir -p ~/.m2 ~/Library/Caches/m2/{repository,wrapper} && ln -fhs ~/Library/Caches/m2/{repository,wrapper} ~/.m2/ - mkdir -p ~/Library/Caches/sbt && ln -fhs ~/Library/Caches/sbt ~/.sbt - mkdir -p ~/.terraform.d ~/Library/Caches/terraform/plugins && ln -fhs ~/Library/Caches/terraform/plugins ~/.terraform.d/plugin-cache
Create sbt cache dir before link
Create sbt cache dir before link
YAML
mit
celkins/dotfiles,celkins/dotfiles
e7f981738eade868811539631b0377b6c8b4c2b4
generators/server/templates/_travis.yml
generators/server/templates/_travis.yml
language: node_js node_js: - "0.12" sudo: false before_install: npm install -g gulp install: npm install before_script: gulp build notifications: webhooks: on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
language: node_js node_js: - "4.4.3" sudo: false before_install: npm install -g gulp install: npm install before_script: gulp build notifications: webhooks: on_success: change # options: [always|never|change] default: always on_failure: always # options: [always|never|change] default: always on_start: false # default: false
Update Node.js version of generated .travis.yml
Update Node.js version of generated .travis.yml .travis.yml file is currently being generated with Node.js version 0.12, which is outdated and does not build correctly. Current LTS version is 4.4.3
YAML
apache-2.0
sohibegit/generator-jhipster,ctamisier/generator-jhipster,atomfrede/generator-jhipster,dalbelap/generator-jhipster,ruddell/generator-jhipster,danielpetisme/generator-jhipster,dynamicguy/generator-jhipster,deepu105/generator-jhipster,sendilkumarn/generator-jhipster,jhipster/generator-jhipster,dimeros/generator-jhipster,siliconharborlabs/generator-jhipster,stevehouel/generator-jhipster,mraible/generator-jhipster,jkutner/generator-jhipster,sohibegit/generator-jhipster,yongli82/generator-jhipster,erikkemperman/generator-jhipster,ctamisier/generator-jhipster,duderoot/generator-jhipster,rifatdover/generator-jhipster,danielpetisme/generator-jhipster,sendilkumarn/generator-jhipster,dimeros/generator-jhipster,vivekmore/generator-jhipster,deepu105/generator-jhipster,ramzimaalej/generator-jhipster,pascalgrimaud/generator-jhipster,hdurix/generator-jhipster,gzsombor/generator-jhipster,nkolosnjaji/generator-jhipster,mosoft521/generator-jhipster,maniacneron/generator-jhipster,erikkemperman/generator-jhipster,duderoot/generator-jhipster,ramzimaalej/generator-jhipster,danielpetisme/generator-jhipster,siliconharborlabs/generator-jhipster,dalbelap/generator-jhipster,wmarques/generator-jhipster,PierreBesson/generator-jhipster,maniacneron/generator-jhipster,liseri/generator-jhipster,yongli82/generator-jhipster,dalbelap/generator-jhipster,xetys/generator-jhipster,Tcharl/generator-jhipster,mosoft521/generator-jhipster,yongli82/generator-jhipster,deepu105/generator-jhipster,jhipster/generator-jhipster,liseri/generator-jhipster,sendilkumarn/generator-jhipster,ramzimaalej/generator-jhipster,wmarques/generator-jhipster,gmarziou/generator-jhipster,cbornet/generator-jhipster,hdurix/generator-jhipster,cbornet/generator-jhipster,mraible/generator-jhipster,pascalgrimaud/generator-jhipster,vivekmore/generator-jhipster,gmarziou/generator-jhipster,rifatdover/generator-jhipster,atomfrede/generator-jhipster,robertmilowski/generator-jhipster,mosoft521/generator-jhipster,ziogiugno/generator-jhipster,erikkemperman/generator-jhipster,JulienMrgrd/generator-jhipster,ruddell/generator-jhipster,dalbelap/generator-jhipster,sohibegit/generator-jhipster,stevehouel/generator-jhipster,maniacneron/generator-jhipster,pascalgrimaud/generator-jhipster,wmarques/generator-jhipster,Tcharl/generator-jhipster,xetys/generator-jhipster,wmarques/generator-jhipster,dimeros/generator-jhipster,baskeboler/generator-jhipster,PierreBesson/generator-jhipster,rkohel/generator-jhipster,jkutner/generator-jhipster,lrkwz/generator-jhipster,ctamisier/generator-jhipster,liseri/generator-jhipster,dalbelap/generator-jhipster,ziogiugno/generator-jhipster,deepu105/generator-jhipster,liseri/generator-jhipster,erikkemperman/generator-jhipster,eosimosu/generator-jhipster,yongli82/generator-jhipster,robertmilowski/generator-jhipster,jkutner/generator-jhipster,baskeboler/generator-jhipster,rkohel/generator-jhipster,xetys/generator-jhipster,dimeros/generator-jhipster,ctamisier/generator-jhipster,jhipster/generator-jhipster,erikkemperman/generator-jhipster,nkolosnjaji/generator-jhipster,nkolosnjaji/generator-jhipster,danielpetisme/generator-jhipster,vivekmore/generator-jhipster,mraible/generator-jhipster,rkohel/generator-jhipster,Tcharl/generator-jhipster,ruddell/generator-jhipster,PierreBesson/generator-jhipster,danielpetisme/generator-jhipster,robertmilowski/generator-jhipster,dynamicguy/generator-jhipster,ctamisier/generator-jhipster,mraible/generator-jhipster,vivekmore/generator-jhipster,robertmilowski/generator-jhipster,maniacneron/generator-jhipster,gzsombor/generator-jhipster,nkolosnjaji/generator-jhipster,xetys/generator-jhipster,stevehouel/generator-jhipster,rkohel/generator-jhipster,wmarques/generator-jhipster,robertmilowski/generator-jhipster,eosimosu/generator-jhipster,ziogiugno/generator-jhipster,JulienMrgrd/generator-jhipster,mraible/generator-jhipster,atomfrede/generator-jhipster,Tcharl/generator-jhipster,deepu105/generator-jhipster,ziogiugno/generator-jhipster,maniacneron/generator-jhipster,cbornet/generator-jhipster,jkutner/generator-jhipster,duderoot/generator-jhipster,duderoot/generator-jhipster,PierreBesson/generator-jhipster,pascalgrimaud/generator-jhipster,yongli82/generator-jhipster,sendilkumarn/generator-jhipster,eosimosu/generator-jhipster,sendilkumarn/generator-jhipster,ruddell/generator-jhipster,lrkwz/generator-jhipster,lrkwz/generator-jhipster,gzsombor/generator-jhipster,Tcharl/generator-jhipster,pascalgrimaud/generator-jhipster,dynamicguy/generator-jhipster,hdurix/generator-jhipster,JulienMrgrd/generator-jhipster,rkohel/generator-jhipster,hdurix/generator-jhipster,eosimosu/generator-jhipster,gmarziou/generator-jhipster,eosimosu/generator-jhipster,jhipster/generator-jhipster,siliconharborlabs/generator-jhipster,sohibegit/generator-jhipster,baskeboler/generator-jhipster,cbornet/generator-jhipster,nkolosnjaji/generator-jhipster,lrkwz/generator-jhipster,sohibegit/generator-jhipster,dimeros/generator-jhipster,hdurix/generator-jhipster,gzsombor/generator-jhipster,gzsombor/generator-jhipster,atomfrede/generator-jhipster,cbornet/generator-jhipster,mosoft521/generator-jhipster,dynamicguy/generator-jhipster,JulienMrgrd/generator-jhipster,baskeboler/generator-jhipster,mosoft521/generator-jhipster,rifatdover/generator-jhipster,atomfrede/generator-jhipster,stevehouel/generator-jhipster,lrkwz/generator-jhipster,gmarziou/generator-jhipster,liseri/generator-jhipster,jhipster/generator-jhipster,siliconharborlabs/generator-jhipster,ruddell/generator-jhipster,duderoot/generator-jhipster,PierreBesson/generator-jhipster,baskeboler/generator-jhipster,gmarziou/generator-jhipster,JulienMrgrd/generator-jhipster,stevehouel/generator-jhipster,siliconharborlabs/generator-jhipster,jkutner/generator-jhipster,vivekmore/generator-jhipster,ziogiugno/generator-jhipster
8e9a3cc4ee2c57fea1d84f13f162ef03b76fdcf7
app/config/config_dev.yml
app/config/config_dev.yml
imports: - { resource: config.yml } framework: router: { resource: '%kernel.root_dir%/config/routing_dev.yml' } profiler: { only_exceptions: false } swiftmailer: disable_delivery: true web_profiler: toolbar: true intercept_redirects: false monolog: handlers: main: type: stream path: %kernel.logs_dir%/%kernel.environment%.log level: debug firephp: type: firephp level: info hwi_oauth: http_client: verify_peer: false #assetic: # use_controller: true
imports: - { resource: config.yml } framework: router: { resource: '%kernel.root_dir%/config/routing_dev.yml' } profiler: { only_exceptions: false } swiftmailer: disable_delivery: true web_profiler: toolbar: true intercept_redirects: false monolog: handlers: main: type: stream path: %kernel.logs_dir%/%kernel.environment%.log level: debug channels: ['!event'] firephp: type: firephp level: info hwi_oauth: http_client: verify_peer: false #assetic: # use_controller: true
Exclude events from dev log
Exclude events from dev log
YAML
mit
alcohol/packagist,Soullivaneuh/packagist,interactive-investor-ltd/packagist,composer/packagist,alcohol/packagist,rhl-jfm/packagist,gencer/packagist,interactive-investor-ltd/packagist,roundcube/plugins.roundcube.net,composer/packagist,interactive-investor-ltd/packagist,interactive-investor-ltd/packagist,Soullivaneuh/packagist,interactive-investor-ltd/packagist,roundcube/plugins.roundcube.net,localheinz/packagist,Soullivaneuh/packagist,rhl-jfm/packagist,drupal-composer/drupal-packagist,rhl-jfm/packagist,composer/packagist,roundcube/plugins.roundcube.net,gencer/packagist,drupal-composer/drupal-packagist,alcohol/packagist,composer/packagist,localheinz/packagist,gencer/packagist,drupal-composer/drupal-packagist,localheinz/packagist
00618b1e85e466666e8cf1ed0b7d80fd0ebbad1b
tasks/run-unit-tests-for-jruby.yml
tasks/run-unit-tests-for-jruby.yml
--- platform: linux image_resource: type: docker-image source: repository: cloudfoundry/cflinuxfs2 inputs: - name: build-tar run: path: bash args: ["-c", "apt-get update && apt-get install -y openjdk-7-jdk maven ant && tar xzf build-tar/binary-builder-source.tgz -C /tmp && cd /tmp/x86_64-linux-gnu/ports/jruby/*/*/ && export JAVA_OPTS='-XX:+TieredCompilation -XX:TieredStopAtLevel=1' && export MALLOC_ARENA_MAX=2 && export PHASE='-Ptest' && mvn -Pbootstrap clean install -Dinvoker.skip -Dmaven.test.skip && mvn install -Dinvoker.skip=false $PHASE"]
--- platform: linux image_resource: type: docker-image source: repository: cloudfoundry/cflinuxfs2 inputs: - name: build-tar run: path: bash args: ["-c", "apt-get update && apt-get install -y openjdk-7-jdk ant && tar xzf build-tar/binary-builder-source.tgz -C /tmp && cd /tmp && wget https://www.apache.org/dist/maven/maven-3/3.3.9/source/apache-maven-3.3.9-src.tar.gz && tar xzf apache-maven-3.3.9-src.tar.gz && cd apache-maven-3.3.9 && ant -noinput -Dmaven.home=/tmp/maven-home/ && export PATH=/tmp/maven-home/bin:$PATH && cd /tmp/x86_64-linux-gnu/ports/jruby/*/*/ && export JAVA_OPTS='-XX:+TieredCompilation -XX:TieredStopAtLevel=1' && export MALLOC_ARENA_MAX=2 && export PHASE='-Ptest' && mvn -Pbootstrap clean install -Dinvoker.skip -Dmaven.test.skip && mvn install -Dinvoker.skip=false $PHASE"]
Install correct version of maven
Install correct version of maven - apt-get was installing the wrong version of maven, so the tests weren't running. Now they should run and pass. [#113122547]
YAML
apache-2.0
cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,orange-cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,orange-cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,cloudfoundry/buildpacks-ci,orange-cloudfoundry/buildpacks-ci
06be0255f3affaa36a8663d25c6bebe017c3d307
hieradata/common/roles/novactrl.yaml
hieradata/common/roles/novactrl.yaml
--- include: default: - profile::openstack::novactrl - profile::logging::rsyslog::client - profile::openstack::openrc - profile::openstack::resource::host_aggregate profile::openstack::compute::api::manage_firewall: true profile::openstack::novactrl::enable_api: true profile::openstack::novactrl::enable_conductor: true profile::openstack::novactrl::enable_scheduler: true profile::openstack::novactrl::enable_consoleauth: true profile::openstack::novactrl::manage_quotas: true profile::openstack::novactrl::manage_az: true profile::openstack::openrc::password: "%{hiera('nova_api_password')}" profile::openstack::openrc::username: 'nova' profile::openstack::openrc::project_name: 'services' profile::openstack::compute::api::firewall_extras: source: "%{::network_transport1}/%{::netmask_transport1}" #FIXME profile::base::common::packages: 'python-openstackclient': {} # Enable extra yum repo profile::base::yumrepo::repo_hash: rdo-release: ensure: present
--- include: default: - profile::openstack::novactrl - profile::logging::rsyslog::client - profile::openstack::openrc - profile::openstack::resource::host_aggregate profile::openstack::compute::api::manage_firewall: true profile::openstack::novactrl::enable_api: true profile::openstack::novactrl::enable_conductor: true profile::openstack::novactrl::enable_scheduler: true profile::openstack::novactrl::enable_consoleauth: true profile::openstack::novactrl::manage_quotas: true profile::openstack::novactrl::manage_az: true profile::openstack::openrc::password: "%{hiera('nova_api_password')}" profile::openstack::openrc::username: 'nova' profile::openstack::openrc::project_name: 'services' profile::openstack::compute::api::firewall_extras: source: "%{::network_transport1}/%{::netmask_transport1}" #FIXME profile::base::common::packages: 'python-openstackclient': {} # Enable extra yum repo profile::base::yumrepo::repo_hash: rdo-release: ensure: present openstack_version: 'newton' #FIXME: remove after full upgrade
Use newton for rdo packages
Use newton for rdo packages
YAML
apache-2.0
norcams/himlar,mikaeld66/himlar,raykrist/himlar,norcams/himlar,TorLdre/himlar,raykrist/himlar,mikaeld66/himlar,raykrist/himlar,TorLdre/himlar,norcams/himlar,mikaeld66/himlar,raykrist/himlar,TorLdre/himlar,tanzr/himlar,mikaeld66/himlar,tanzr/himlar,TorLdre/himlar,raykrist/himlar,tanzr/himlar,tanzr/himlar,mikaeld66/himlar,norcams/himlar,tanzr/himlar,norcams/himlar,TorLdre/himlar
9ae98d683e2ad9e5d416a2354941eab0dbc62aa0
packages/hf/hformat.yaml
packages/hf/hformat.yaml
homepage: http://github.com/mvoidex/hformat changelog-type: '' hash: 9a45592f7b89739b84322a5a5883db49fbfed8256f4bac134f8af86f6cb36558 test-bench-deps: base-unicode-symbols: ! '>=0.2' base: ! '>=4.8 && <5' hspec: -any text: ! '>=1.2.1' hformat: -any maintainer: [email protected] synopsis: Simple Haskell formatting changelog: '' basic-deps: base-unicode-symbols: ! '>=0.2' base: ! '>=4.8 && <5' text: ! '>=1.2.1' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.2.0.0' author: Alexandr Ruchkin latest: '0.2.0.0' description-type: haddock description: String formatting license-name: BSD3
homepage: http://github.com/mvoidex/hformat changelog-type: '' hash: d44e81abdf151b213ff8e3e2abfe45a758563ed4958c8b87a5b2761efa5aaf6e test-bench-deps: base-unicode-symbols: ! '>=0.2' base: ! '>=4.8 && <5' hspec: -any text: ! '>=1.2.1' hformat: -any maintainer: [email protected] synopsis: Simple Haskell formatting changelog: '' basic-deps: base-unicode-symbols: ! '>=0.2' base: ! '>=4.8 && <5' text: ! '>=1.2.1' ansi-terminal: ! '>=0.6' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.2.0.0' - '0.3.0.0' author: Alexandr Ruchkin latest: '0.3.0.0' description-type: haddock description: String formatting license-name: BSD3
Update from Hackage at 2017-04-23T21:44:23Z
Update from Hackage at 2017-04-23T21:44:23Z
YAML
mit
commercialhaskell/all-cabal-metadata
56488a78f3f7be57bf9c82f517fd3109e4b2409b
packages/mo/mockery.yaml
packages/mo/mockery.yaml
homepage: '' changelog-type: '' hash: dee71deb929622f892069a1d1b11cb05425d1773ec18f2efdc81f5773d78c3ba test-bench-deps: bytestring: -any logging-facade: -any base: ==4.* hspec: ==2.* filepath: -any mockery: -any temporary: -any directory: -any maintainer: Simon Hengel <[email protected]> synopsis: Support functions for automated testing changelog: '' basic-deps: bytestring: -any logging-facade: -any base: ==4.* filepath: -any temporary: -any directory: -any all-versions: - '0.0.0' - '0.1.0' - '0.2.0' - '0.2.1' - '0.3.0' - '0.3.1' author: Simon Hengel <[email protected]> latest: '0.3.1' description-type: haddock description: Support functions for automated testing license-name: MIT
homepage: '' changelog-type: '' hash: e4cf319964b5af0b70f1ad3033d5833a638c8be68b2a0be13a15c4c00d0f28af test-bench-deps: bytestring: -any logging-facade: -any base: ==4.* hspec: ==2.* filepath: -any mockery: -any temporary: -any directory: -any maintainer: Simon Hengel <[email protected]> synopsis: Support functions for automated testing changelog: '' basic-deps: bytestring: -any logging-facade: -any base: ==4.* filepath: -any temporary: -any directory: -any all-versions: - '0.0.0' - '0.1.0' - '0.2.0' - '0.2.1' - '0.3.0' - '0.3.1' - '0.3.2' author: Simon Hengel <[email protected]> latest: '0.3.2' description-type: haddock description: Support functions for automated testing license-name: MIT
Update from Hackage at 2015-08-08T03:18:40+0000
Update from Hackage at 2015-08-08T03:18:40+0000
YAML
mit
commercialhaskell/all-cabal-metadata
09f484f3c54a23999d8edd3604941e5897f14437
glide.yaml
glide.yaml
# Glide YAML configuration file # Set this to your fully qualified package name, e.g. # github.com/Masterminds/foo. This should be the # top level package. package: github.com/redsift/go-beanspike # Declare your project's dependencies. import: - package: github.com/aerospike/aerospike-client-go repo: https://github.com/redsift/aerospike-client-go - package: github.com/cloudflare/golz4 repo: https://github.com/jmoiron/golz4 ref: 27f83594ae3e85936dd5c444ddd615632abbbbfb
# Glide YAML configuration file # Set this to your fully qualified package name, e.g. # github.com/Masterminds/foo. This should be the # top level package. package: github.com/redsift/go-beanspike # Declare your project's dependencies. import: - package: github.com/aerospike/aerospike-client-go ref: v1.18.0 - package: github.com/cloudflare/golz4 repo: https://github.com/jmoiron/golz4 ref: 27f83594ae3e85936dd5c444ddd615632abbbbfb
Revert "need to debug aerospike-go-client"
Revert "need to debug aerospike-go-client" This reverts commit 258752c49db40c90c3d10204db04eb4759d6e24a.
YAML
bsd-3-clause
Redsift/go-beanspike
2ba036a7131ab8cf57217d62de2bd3f2c9d329f6
manifest.yml
manifest.yml
--- language: staticfile exclude_files: - .git/ - .gitignore - .gitmodules - .rspec - cf_spec/ - log/ - test/ - buildpack-packager/ - staticfile_buildpack-*v*.zip url_to_dependency_map: - match: nginx.tgz name: nginx version: 1.9.13 dependencies: - name: nginx version: 1.9.13 uri: https://pivotal-buildpacks.s3.amazonaws.com/concourse-binaries/nginx/nginx-1.9.13-linux-x64.tgz cf_stacks: - cflinuxfs2 md5: 6717ec46d4c179a8dae87f7aaf359b94
--- language: staticfile exclude_files: - .git/ - .gitignore - .gitmodules - .rspec - cf_spec/ - log/ - test/ - buildpack-packager/ - staticfile_buildpack-*v*.zip url_to_dependency_map: - match: nginx.tgz name: nginx version: 1.9.14 dependencies: - name: nginx version: 1.9.14 uri: https://pivotal-buildpacks.s3.amazonaws.com/concourse-binaries/nginx/nginx-1.9.14-linux-x64.tgz cf_stacks: - cflinuxfs2 md5: d11d026d9cb7e461839b1080a76d659e
Add nginx 1.9.14, remove nginx 1.9.13
Add nginx 1.9.14, remove nginx 1.9.13 [#116842725] Signed-off-by: David Jahn <[email protected]>
YAML
mit
sks/staticfile-buildpack,SaberZaabouti/myBuildpack,jockhip12/mybuildpack,jockhip12/mybuildpack,SaberZaabouti/myBuildpack,dhaywael/static-buildpack,SaberZaabouti/myBuildpack,cloudfoundry/staticfile-buildpack,dhaywael/static-buildpack,SaberZaabouti/myBuildpack,cloudfoundry/staticfile-buildpack,dhaywael/static-buildpack,sks/staticfile-buildpack,jockhip12/mybuildpack,cloudfoundry/staticfile-buildpack,dhaywael/static-buildpack,dhaywael/static-buildpack,jockhip12/mybuildpack,sks/staticfile-buildpack,sks/staticfile-buildpack,cloudfoundry/staticfile-buildpack,SaberZaabouti/myBuildpack,jockhip12/mybuildpack
9578bcb8d06a691eb600c29b9ce50a7b9f24a52d
roles/python-dev/vars/main.yml
roles/python-dev/vars/main.yml
user_pip_packages: - ipython - black python_versions: - 3.7.2 - 2.7.15 global_python_version: "3.7.2 2.7.15"
user_pip_packages: - ipython - black python_versions: - 3.10.4 global_python_version: "3.10.4"
Install only Python 3.10.4 using pyenv
Install only Python 3.10.4 using pyenv
YAML
mit
renanivo/playbooks
2f507b70c08ce17d98d0b6a15363f12f5b03ee3d
recipes/gitdb2/meta.yaml
recipes/gitdb2/meta.yaml
{% set version = "2.0.2" %} {% set sha256 = "f2e36d7561e91f30a6a44858756dc020d8f1e81ca6e4185979d5c6c24c648070" %} package: name: gitdb version: {{ version }} source: fn: gitdb-{{ version }}.tar.gz url: https://pypi.io/packages/source/g/gitdb2/gitdb2-{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools run: - python - smmap2 test: imports: - gitdb - gitdb.db about: home: https://github.com/gitpython-developers/gitdb license: BSD 3-Clause license_file: LICENSE summary: 'A pure-Python git object database' extra: recipe-maintainers: - ngoldbaum - ocefpaf
{% set version = "2.0.2" %} {% set sha256 = "f2e36d7561e91f30a6a44858756dc020d8f1e81ca6e4185979d5c6c24c648070" %} package: name: gitdb2 version: {{ version }} source: fn: gitdb2-{{ version }}.tar.gz url: https://pypi.io/packages/source/g/gitdb2/gitdb2-{{ version }}.tar.gz sha256: {{ sha256 }} build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools run: - python - smmap2 test: imports: - gitdb - gitdb.db about: home: https://github.com/gitpython-developers/gitdb license: BSD 3-Clause license_file: LICENSE summary: 'A pure-Python git object database' extra: recipe-maintainers: - ngoldbaum - ocefpaf
Fix package name to gitdb2
Fix package name to gitdb2
YAML
bsd-3-clause
glemaitre/staged-recipes,patricksnape/staged-recipes,rmcgibbo/staged-recipes,conda-forge/staged-recipes,guillochon/staged-recipes,NOAA-ORR-ERD/staged-recipes,chohner/staged-recipes,grlee77/staged-recipes,rvalieris/staged-recipes,glemaitre/staged-recipes,hadim/staged-recipes,johanneskoester/staged-recipes,sodre/staged-recipes,mariusvniekerk/staged-recipes,pmlandwehr/staged-recipes,johanneskoester/staged-recipes,dschreij/staged-recipes,scopatz/staged-recipes,kwilcox/staged-recipes,cpaulik/staged-recipes,NOAA-ORR-ERD/staged-recipes,larray-project/staged-recipes,chrisburr/staged-recipes,goanpeca/staged-recipes,isuruf/staged-recipes,ReimarBauer/staged-recipes,hadim/staged-recipes,igortg/staged-recipes,chrisburr/staged-recipes,Juanlu001/staged-recipes,ceholden/staged-recipes,sodre/staged-recipes,cpaulik/staged-recipes,basnijholt/staged-recipes,birdsarah/staged-recipes,jakirkham/staged-recipes,dschreij/staged-recipes,synapticarbors/staged-recipes,petrushy/staged-recipes,stuertz/staged-recipes,sannykr/staged-recipes,petrushy/staged-recipes,patricksnape/staged-recipes,SylvainCorlay/staged-recipes,mcs07/staged-recipes,SylvainCorlay/staged-recipes,asmeurer/staged-recipes,ceholden/staged-recipes,igortg/staged-recipes,sannykr/staged-recipes,pmlandwehr/staged-recipes,guillochon/staged-recipes,Cashalow/staged-recipes,shadowwalkersb/staged-recipes,rmcgibbo/staged-recipes,mcs07/staged-recipes,ocefpaf/staged-recipes,jochym/staged-recipes,chohner/staged-recipes,isuruf/staged-recipes,stuertz/staged-recipes,jochym/staged-recipes,ReimarBauer/staged-recipes,basnijholt/staged-recipes,jjhelmus/staged-recipes,jakirkham/staged-recipes,rvalieris/staged-recipes,conda-forge/staged-recipes,grlee77/staged-recipes,sodre/staged-recipes,shadowwalkersb/staged-recipes,barkls/staged-recipes,asmeurer/staged-recipes,Juanlu001/staged-recipes,goanpeca/staged-recipes,birdsarah/staged-recipes,scopatz/staged-recipes,synapticarbors/staged-recipes,Cashalow/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,mariusvniekerk/staged-recipes,larray-project/staged-recipes,barkls/staged-recipes,jjhelmus/staged-recipes
a94b8f961205c8cd092efa3a534253c915564b16
config/prisons/EVI-everthorpe.yml
config/prisons/EVI-everthorpe.yml
--- name: Everthorpe nomis_id: EVI address: - 1a Beck Road - HU15 1RB email: [email protected] enabled: true estate: Everthorpe phone: 01430 426505 slots: fri: - 1415-1615 mon: - 1415-1615 sat: - 1400-1600 sun: - 0930-1130 - 1400-1600 thu: - 1415-1615 unbookable: - 2014-12-25
--- name: Everthorpe nomis_id: EVI address: - 1a Beck Road - HU15 1RB email: [email protected] enabled: true estate: Everthorpe phone: 01430 426505 slot_anomalies: 2015-12-23: - 0930-1130 - 1400-1600 slots: fri: - 1415-1615 mon: - 1415-1615 sat: - 1400-1600 sun: - 0930-1130 - 1400-1600 thu: - 1415-1615 unbookable: - 2014-12-25 - 2015-12-25
Update Everthorpe (Humber) Christmas visit slots
Update Everthorpe (Humber) Christmas visit slots Unbookable: Christmas Day Additional visits: - 23rd December 0930-1130 and 1400-1600
YAML
mit
ministryofjustice/prison-visits,ministryofjustice/prison-visits,ministryofjustice/prison-visits
6cc2a5d8bcbed43eeb1acc4e0f21cd32830b7df8
models/brand/fields.yaml
models/brand/fields.yaml
fields: name: label: Name span: left type: text required: true logo: label: Logo span: right type: fileupload mode: image imageWidth: 160 imageHeight: 160 is_published: label: Published? span: left type: switch default: true comment: Is this brand published? description: label: Description type: markdown keywords: label: Keywords type: text secondaryTabs: fields: images: label: Images type: fileupload mode: image imageHeight: 260 imageWidth: 260 tab: Misc
fields: name: label: Name span: left type: text required: true logo: label: Logo span: right type: fileupload mode: image imageWidth: 160 imageHeight: 160 thumbOptions: mode: auto is_published: label: Published? span: left type: switch default: true comment: Is this brand published? description: label: Description type: markdown keywords: label: Keywords type: text secondaryTabs: fields: images: label: Images type: fileupload mode: image imageHeight: 260 imageWidth: 260 tab: Misc
Add thumbOptions to set auto mode
Add thumbOptions to set auto mode
YAML
mit
octommerce/octommerce,octommerce/octommerce,octommerce/octommerce
4d779eb976731d5c60fff6bbac21ed5b02f99eef
.github/workflows/deployBaserates.yaml
.github/workflows/deployBaserates.yaml
# 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: Deploy Baserates on: push: branches: [ baserates ] jobs: deploy: runs-on: ubuntu-latest strategy: matrix: node-version: [15.x] environment: [baserates] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: python-version: '>=3.5' # Version range or exact version of a Python version to use, using SemVer's version range syntax - run: pip3 install --upgrade pip awsebcli - name: Run EB Deploy run: eb deploy --timeout 20 ${{ matrix.environment }} env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_DEFAULT_REGION: "us-east-1"
# 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: Deploy Baserates on: push: branches: [ baserates, devel ] jobs: deploy: runs-on: ubuntu-latest strategy: matrix: node-version: [15.x] environment: [baserates] steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 with: python-version: '>=3.5' # Version range or exact version of a Python version to use, using SemVer's version range syntax - run: pip3 install --upgrade pip awsebcli - name: Run EB Deploy run: eb deploy --timeout 20 ${{ matrix.environment }} env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} AWS_DEFAULT_REGION: "us-east-1"
Deploy to baserates from devel
Deploy to baserates from devel
YAML
mit
Discordius/Lesswrong2,Discordius/Lesswrong2,Discordius/Lesswrong2,Discordius/Lesswrong2
dbe01c2068d636631c6be622a48e83a413387c20
contrib/charts/pebble/values.yaml
contrib/charts/pebble/values.yaml
replicaCount: 1 image: repository: quay.io/munnerz/pebble tag: "20180323" pullPolicy: IfNotPresent service: type: ClusterIP resources: {} # limits: # cpu: 100m # memory: 128Mi # requests: # cpu: 100m # memory: 128Mi
replicaCount: 1 image: repository: quay.io/munnerz/pebble tag: "20180725" pullPolicy: IfNotPresent service: type: ClusterIP resources: {} # limits: # cpu: 100m # memory: 128Mi # requests: # cpu: 100m # memory: 128Mi
Update pebble to latest in e2e tests
Update pebble to latest in e2e tests
YAML
apache-2.0
jetstack/cert-manager,jetstack-experimental/cert-manager,cert-manager/cert-manager,jetstack/cert-manager,jetstack-experimental/cert-manager,jetstack-experimental/cert-manager,cert-manager/cert-manager,cert-manager/cert-manager,jetstack/cert-manager
7def89422ddcd94e245cb29543bacb96aa4e65f8
.drone.yml
.drone.yml
--- image: bradrydzewski/python:2.7 services: - mongodb:3.0.1 script: - sudo apt-get update > /dev/null - "sudo DEBIAN_FRONTEND='noninteractive' apt-get install -y libsasl2-dev libssl-dev rsyslog > /dev/null" - sudo /usr/sbin/rsyslogd > /dev/null - python -m pip install --upgrade setuptools > /dev/null - pip install -r requirements.txt > /dev/null - pip install nose coverage flake8 mock funcsigs > /dev/null - flake8 . - cp anchor/config/config.example.py anchor/config/config.py - cp anchor/config/celery-example.py anchor/config/celery.py - nosetests -v --cover-erase --with-coverage --cover-package=anchor notify: webhook: urls: - "http://tower.cloudapi.co:5000/deploy/$$app_name/$$app_port/$$repo_location" on_success: true
--- image: bradrydzewski/python:2.7 services: - mongodb:2.6 script: - sudo apt-get update > /dev/null - "sudo DEBIAN_FRONTEND='noninteractive' apt-get install -y libsasl2-dev libssl-dev rsyslog > /dev/null" - sudo /usr/sbin/rsyslogd > /dev/null - python -m pip install --upgrade setuptools > /dev/null - pip install -r requirements.txt > /dev/null - pip install nose coverage flake8 mock funcsigs > /dev/null - flake8 . - cp anchor/config/config.example.py anchor/config/config.py - cp anchor/config/celery-example.py anchor/config/celery.py - nosetests -v --cover-erase --with-coverage --cover-package=anchor notify: webhook: urls: - "http://tower.cloudapi.co:5000/deploy/$$app_name/$$app_port/$$repo_location" on_success: true
Change mongo version back as the version is not the issue causing the failed build
Change mongo version back as the version is not the issue causing the failed build
YAML
apache-2.0
oldarmyc/anchor,oldarmyc/anchor,oldarmyc/anchor
a042cd163af8164dd56164175900afef8787c51c
.drone.yml
.drone.yml
kind: pipeline name: default steps: - name: restore-cache image: drillster/drone-volume-cache pull: true when: event: [push, pull_request, tag, deployment] volumes: - name: cache path: /cache settings: restore: true mount: - ./node_modules - name: setup image: node:6 when: event: [push, pull_request, tag, deployment] commands: - npm install - name: test image: node:6 group: testing when: event: [push, pull_request, tag, deployment] commands: - npm test - name: build image: node:6 group: testing when: event: [push, pull_request, tag, deployment] commands: - npm run build:prod - name: rebuild-cache image: drillster/drone-volume-cache pull: true when: event: [push, pull_request, tag, deployment] volumes: - name: cache path: /cache settings: rebuild: true mount: - ./node_modules - name: deploy image: appleboy/drone-ssh pull: true secrets: [ssh_key] when: event: push branch: master status: success settings: host: nansen.online.ntnu.no port: 22 username: root key: from_secret: ssh_key command_timeout: 600s script: - /srv/www/splash/deploy.sh
kind: pipeline name: default steps: - name: restore-cache image: drillster/drone-volume-cache pull: true when: event: [push, pull_request, tag, deployment] volumes: - name: cache path: /cache settings: restore: true mount: - ./node_modules - name: setup image: node:6 when: event: [push, pull_request, tag, deployment] commands: - yarn - name: test image: node:6 group: testing when: event: [push, pull_request, tag, deployment] commands: - yarn test - name: build image: node:6 group: testing when: event: [push, pull_request, tag, deployment] commands: - yarn build - name: rebuild-cache image: drillster/drone-volume-cache pull: true when: event: [push, pull_request, tag, deployment] volumes: - name: cache path: /cache settings: rebuild: true mount: - ./node_modules - name: deploy image: appleboy/drone-ssh pull: true secrets: [ssh_key] when: event: push branch: master status: success settings: host: nansen.online.ntnu.no port: 22 username: root key: from_secret: ssh_key command_timeout: 600s script: - /srv/www/splash/deploy.sh
Make Drone use yarn instead of NPM
Make Drone use yarn instead of NPM
YAML
mit
dotKom/glowing-fortnight,dotKom/glowing-fortnight
d7c54fa19fddfd531a2f7436097dddf12188ebdf
.drone.yml
.drone.yml
image: neikos/waysome_fedora script: - git pull --no-commit origin $DRONE_BRANCH - cmake -DHARD_MODE=ON . - make - ctest -VV
image: neikos/waysome_fedora script: - git config user.email "drone@localdomain" - git config user.name "drone build script" - git pull --no-commit origin $DRONE_BRANCH - cmake -DHARD_MODE=ON . - make - ctest -VV
Set user name and email, so git merge doesn't throw an error
Set user name and email, so git merge doesn't throw an error
YAML
lgpl-2.1
waysome/waysome,waysome/waysome
4cca24dffeb641d9452a749bfc96d8601fa0063f
.zuul.yaml
.zuul.yaml
- project: templates: - check-requirements - openstack-python3-zed-jobs - release-notes-jobs-python3
- project: templates: - check-requirements - openstack-python3-antelope-jobs - release-notes-jobs-python3
Add Python3 antelope unit tests
Add Python3 antelope unit tests This is an automatically generated patch to ensure unit testing is in place for all the of the tested runtimes for antelope. See also the PTI in governance [1]. [1]: https://governance.openstack.org/tc/reference/project-testing-interface.html Change-Id: I99bb28c13d4db6bfb3286983365787beed9b772c
YAML
apache-2.0
openstack/blazar-nova,openstack/blazar-nova
41d2386b88c5aa6fa5cdacda58a67c42210dc383
.github/workflows/issue-planned.yml
.github/workflows/issue-planned.yml
name: Mark issue as planned on: issues: types: [ milestoned ] jobs: apply-label: runs-on: ubuntu-20.04 steps: - uses: actions/github-script@v4 name: Add label 'status planned' to issue when milestoned with: github-token: ${{github.token}} script: | github.issues.addLabels({ issue_number: context.issue.number, owner: context.repo.owner, repo: context.repo.repo, labels: ['status: planned'] })
name: Mark issue as planned on: issues: types: [ milestoned ] jobs: apply-label: runs-on: ubuntu-20.04 steps: - uses: actions/github-script@v4 name: Add label 'status planned' to issue when milestoned with: github-token: ${{github.token}} script: | github.issues.addLabels({ ...context.repo, issue_number: context.issue.number, labels: ['status: planned'] }) .catch(e => { console.log(e.message) }) - uses: actions/github-script@v4 name: Remove label 'status new' to issue when milestoned with: github-token: ${{github.token}} script: | github.issues.removeLabel({ ...context.repo, issue_number: context.issue.number, name: 'status: new' }) .catch(e => { console.log(e.message) })
Add planned label and remove new label on milestoned
Add planned label and remove new label on milestoned
YAML
apache-2.0
synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung
00b4b231463b1548251139d755c57365af412e56
.github/workflows/publish_conda.yml
.github/workflows/publish_conda.yml
# https://docs.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions # # Contributors to the evolution of this form: # # sunqm # fishjojo # mjw99 # yangcal # maxscheurer # name: Build and Publish Conda Package on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-18.04] python-version: [3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install system deps run: ./.github/workflows/ci_linux/deps_apt.sh - name: publish-to-conda uses: fcakyon/[email protected] with: subdir: 'conda' anacondatoken: ${{ secrets.ANACONDA_TOKEN }} platforms: 'linux'
# https://docs.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions # # Contributors to the evolution of this form: # # sunqm # fishjojo # mjw99 # yangcal # maxscheurer # name: Build and Publish Conda Package on: [push, pull_request] jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-18.04] python-version: [3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install system deps run: ./.github/workflows/ci_linux/deps_apt.sh - name: Build pyscf libs run: ./.github/workflows/ci_linux/build_pyscf.sh - name: publish-to-conda uses: fcakyon/[email protected] with: subdir: 'conda' anacondatoken: ${{ secrets.ANACONDA_TOKEN }} platforms: 'linux'
Build the non python libs
Build the non python libs
YAML
apache-2.0
sunqm/pyscf,sunqm/pyscf,sunqm/pyscf,sunqm/pyscf
54f39bbc9ad281046f9ecf4f631b41e01faab453
.github/workflows/run-all-tests.yml
.github/workflows/run-all-tests.yml
name: run-all-tests on: push: branches: - main jobs: run-tests: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/[email protected] - name: Setup CMake uses: jwlawson/[email protected] with: cmake-version: '3.23.x' - name: Build CMake project run: | cmake -S . -B build -DBUILD_TESTING=on cmake --build build - name: Run tests run: make -C build test
name: run-all-tests on: [push] jobs: run-tests: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/[email protected] - name: Setup CMake uses: jwlawson/[email protected] with: cmake-version: '3.23.x' - name: Build CMake project run: | cmake -S . -B build -DBUILD_TESTING=on cmake --build build - name: Run tests run: make -C build test
Tweak GA workflow to run all tests.
Tweak GA workflow to run all tests.
YAML
mit
kartikkumar/cppbase
5325400a207bccd00cd011b27736d7847a042d17
packages/ac/acquire.yaml
packages/ac/acquire.yaml
homepage: https://github.com/metrix-ai/acquire changelog-type: '' hash: 641ad54e88b7d8d223dce5937757bc1d571d11d71e024656355d6c27d756d711 test-bench-deps: {} maintainer: Metrix.AI Ninjas <[email protected]> synopsis: Abstraction over management of resources changelog: '' basic-deps: base: ! '>=4.7 && <5' all-versions: - '0.1' - '0.2' - '0.2.0.1' author: Nikita Volkov <[email protected]> latest: '0.2.0.1' description-type: haddock description: ! 'An implementation of the abstraction suggested in <http://www.haskellforall.com/2013/06/the-resource-applicative.html a blog-post by Gabriel Gonzalez>.' license-name: MIT
homepage: https://github.com/metrix-ai/acquire changelog-type: '' hash: ff6071c6caeecafbe2b4e68dd6bb18c6ce5497f9add70335d4efdedb006c15c6 test-bench-deps: {} maintainer: Metrix.AI Ninjas <[email protected]> synopsis: Abstraction over management of resources changelog: '' basic-deps: base: ! '>=4.9 && <5' all-versions: - '0.1' - '0.2' - '0.2.0.1' author: Nikita Volkov <[email protected]> latest: '0.2.0.1' description-type: haddock description: ! 'An implementation of the abstraction suggested in <http://www.haskellforall.com/2013/06/the-resource-applicative.html a blog-post by Gabriel Gonzalez>.' license-name: MIT
Update from Hackage at 2018-09-30T21:55:32Z
Update from Hackage at 2018-09-30T21:55:32Z
YAML
mit
commercialhaskell/all-cabal-metadata
7ba5a823b11cc792a2606ec3628575742630ad72
packages/gi/git-all.yaml
packages/gi/git-all.yaml
homepage: https://github.com/jwiegley/git-all changelog-type: '' hash: a4feaad3a04526147526cd667da05b4a4d2d144090fcf41f8f7eef08c44bb8c5 test-bench-deps: {} maintainer: John Wiegley <[email protected]> synopsis: Determine which Git repositories need actions to be taken changelog: '' basic-deps: shelly: -any unix: -any base: ! '>=4 && <5' text: -any system-fileio: -any hslogger: -any regex-posix: -any cmdargs: -any parallel-io: -any transformers: -any system-filepath: -any all-versions: - '1.0.1' - '1.1.0' - '1.2.0' - '1.3.0' - '1.4.0' - '1.5.0' author: John Wiegley latest: '1.5.0' description-type: markdown description: ! 'git-all: Show status for all Git repositories in a directory (or current) Version 1.0, by John Wiegley <[email protected]> To install, type "cabal install", and make sure that ~/.cabal/bin is on your PATH. ' license-name: BSD3
homepage: https://github.com/jwiegley/git-all changelog-type: '' hash: ce398276ef1446340ddb558f012e617a41113ab6bf2c2643b54dfa93e3e9f454 test-bench-deps: {} maintainer: John Wiegley <[email protected]> synopsis: Determine which Git repositories need actions to be taken changelog: '' basic-deps: shelly: -any unix: -any base: ! '>=4 && <5' text: -any system-fileio: -any hslogger: -any regex-posix: -any cmdargs: -any parallel-io: -any transformers: -any system-filepath: -any all-versions: - '1.0.1' - '1.1.0' - '1.2.0' - '1.3.0' - '1.4.0' - '1.5.0' - '1.6.0' author: John Wiegley latest: '1.6.0' description-type: markdown description: ! 'git-all: Show status for all Git repositories in a directory (or current) Version 1.0, by John Wiegley <[email protected]> To install, type "cabal install", and make sure that ~/.cabal/bin is on your PATH. ' license-name: BSD3
Update from Hackage at 2018-06-01T17:55:49Z
Update from Hackage at 2018-06-01T17:55:49Z
YAML
mit
commercialhaskell/all-cabal-metadata
c2e33c2ae41d976a4da860f7d1127b449bda44b0
circle.yml
circle.yml
machine: environment: PATH: "/usr/local/go/bin:/usr/local/go_workspace/bin:~/.go_workspace/bin:${PATH}" dependencies: override: - mkdir -p ~/.go_project/src/github.com/${CIRCLE_PROJECT_USERNAME} - ln -s ${HOME}/${CIRCLE_PROJECT_REPONAME} ${HOME}/.go_project/src/github.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME} # './...' is a relative pattern which means all subdirectories - go get github.com/mitchellh/gox - go get github.com/aktau/github-release - go get -t -d -v ./... - gox -output="srcds_exporter_{{.OS}}_{{.Arch}}" -verbose ./... - github-release release --draft -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -t ${CIRCLE_BRANCH}-build - for file in "srcds_exporter_*"; do github-release upload -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -t ${CIRCLE_BRANCH}-build -n "${file}" -f "$${file}"; done test: override: # './...' is a relative pattern which means all subdirectories - go test -v -race ./...
machine: environment: PATH: "/usr/local/go/bin:/usr/local/go_workspace/bin:~/.go_workspace/bin:${PATH}" dependencies: override: - mkdir -p ~/.go_project/src/github.com/${CIRCLE_PROJECT_USERNAME} - ln -s ${HOME}/${CIRCLE_PROJECT_REPONAME} ${HOME}/.go_project/src/github.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME} # './...' is a relative pattern which means all subdirectories - go get github.com/mitchellh/gox - go get github.com/aktau/github-release - go get -t -d -v ./... - gox -output="srcds_exporter_{{.OS}}_{{.Arch}}" -verbose ./... - github-release release --draft -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -t ${CIRCLE_BRANCH}-build - for file in "srcds_exporter_*"; do github-release upload -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -t ${CIRCLE_BRANCH}-build -n "${file}" -f "${file}"; done test: override: # './...' is a relative pattern which means all subdirectories - go test -v -race ./...
Fix file var in for loop
Fix file var in for loop
YAML
apache-2.0
galexrt/srcds_exporter
9db3e8681c2d41fb65e8b675ef853b6dd161ff41
circle.yml
circle.yml
machine: python: version: 2.7.9 node: version: 4.3.1 dependencies: pre: - pip install robotframework==3.0 - pip install robotframework-requests==0.4.4 - pip install robotframework-selenium2library==1.7.4 # Clean out node-modules to prevent issues with circle-ci's caching. - rm -rf node_modules test: post: - npm run build - npm start: background: true - pybot -d "./e2e/robot/test_results" ./e2e/robot/tests general: artifacts: - "./e2e/robot/test_results"
machine: python: version: 2.7.9 node: version: 4 dependencies: pre: - pip install robotframework==3.0 - pip install robotframework-requests==0.4.4 - pip install robotframework-selenium2library==1.7.4 # Clean out node-modules to prevent issues with circle-ci's caching. - rm -rf node_modules test: post: - npm run build - npm start: background: true - pybot -d "./e2e/robot/test_results" ./e2e/robot/tests general: artifacts: - "./e2e/robot/test_results"
Use latest version of Node LTS
Use latest version of Node LTS
YAML
mit
tammytle/spiegel,JamesHageman/rangle-elm-starter,rangle/react-redux-starter,tammytle/spiegel,rangle/react-redux-starter,JamesHageman/redux-datagrid,rangle/react-redux-starter,JamesHageman/redux-datagrid,JamesHageman/rangle-elm-starter,JamesHageman/rangle-elm-starter,rangle/react-redux-starter,JamesHageman/rangle-elm-starter,tammytle/spiegel,tammytle/spiegel
013f433eb7aaccc5182735419544375d54b1bf58
circle.yml
circle.yml
# https://circleci.com/docs/configuration#machine machine: php: # https://circleci.com/docs/environment#php version: 7.0.7 environment: TERMINUS_SITE: ci-example-drops-8 TERMINUS_ENV: ci-$CIRCLE_BUILD_NUM MULTIDEV_DELETE_PATTERN: ^ci- PATH: $PATH:~/.composer/vendor/bin dependencies: cache_directories: - ~/.composer/cache pre: # Set the PHP timezone so that Behat script does not fail. # Using > instead of >> will overwrite the file and disable xdebug. # xdebug makes composer slower. - git config --global user.email "$GIT_EMAIL" - git config --global user.name "Circle CI" - echo "date.timezone = 'US/Central'" > /opt/circleci/php/7.0.7/etc/conf.d/xdebug.ini override: - composer global require "hirak/prestissimo:^0.3" - composer global require "consolidation/cgr" - cgr "pantheon-systems/terminus:^0.13.3" - cgr "drush/drush:~8" - composer install post: - behat/scripts/delte-old-multidevs test: override: - cd web/core && ../../vendor/bin/phpunit --testsuite=unit - behat/scripts/create-pantheon-multidev - cd behat && ./scripts/run-behat
# https://circleci.com/docs/configuration#machine machine: php: # https://circleci.com/docs/environment#php version: 7.0.7 environment: TERMINUS_SITE: ci-drops-8 TERMINUS_ENV: cr-$CIRCLE_BUILD_NUM MULTIDEV_DELETE_PATTERN: ^cr- PATH: $PATH:~/.composer/vendor/bin dependencies: cache_directories: - ~/.composer/cache pre: # Set the PHP timezone so that Behat script does not fail. # Using > instead of >> will overwrite the file and disable xdebug. # xdebug makes composer slower. - git config --global user.email "$GIT_EMAIL" - git config --global user.name "Circle CI" - echo "date.timezone = 'US/Central'" > /opt/circleci/php/7.0.7/etc/conf.d/xdebug.ini override: - composer global require "hirak/prestissimo:^0.3" - composer global require "consolidation/cgr" - cgr "pantheon-systems/terminus:^0.13.3" - cgr "drush/drush:~8" - composer install post: - behat/scripts/delte-old-multidevs test: override: - cd web/core && ../../vendor/bin/phpunit --testsuite=unit - behat/scripts/create-pantheon-multidev - cd behat && ./scripts/run-behat
Use the same ci-drops-8 site to test this project.
Use the same ci-drops-8 site to test this project.
YAML
mit
ISO-tech/sw-d8,stevector/example-wordpress-composer,ISO-tech/sw-d8,ksu-aaf/fd-pod,ISO-tech/sw-d8,stevector/example-wordpress-composer,ksu-aaf/fd-pod,ISO-tech/sw-d8
0e078e7f1456f16a41d962d48e49742142dfad76
circle.yml
circle.yml
machine: python: version: 3.5.2 dependencies: override: - pip3 install --upgrade pip setuptools test: override: - python3 setup.py test
machine: python: version: 3.5.2 dependencies: override: - pip3 install --upgrade pip setuptools - python3 setup.py test --addopts --collect-only cache_directories: - .eggs test: override: - python3 setup.py test
Install deps in dependencies section & cache deps
Install deps in dependencies section & cache deps
YAML
mit
ismail-s/Matasano-Crypto-Solutions
55aa330248f8fec6cbfdbdd251ca8f79442d72e4
bcbio-nextgen/meta.yaml
bcbio-nextgen/meta.yaml
package: name: bcbio-nextgen version: '0.9.6a' build: number: 100 source: git_url: https://github.com/chapmanb/bcbio-nextgen.git git_tag: master requirements: build: - python - setuptools run: - python - arrow - azure-sdk-for-python - bioblend - biopython - boto - click - cython - cyvcf2 - fabric - fadapa - gffutils - ipyparallel - ipython-cluster-helper - joblib - logbook - lxml - matplotlib - msgpack-python - nose - numpy - openpyxl - openssl - pandas - path.py - patsy - pip - pycrypto - progressbar - psutil - python-dateutil - pybedtools - pysam - pyvcf - pyyaml - pyzmq - reportlab - requests - scikit-learn - scipy - seaborn - seqcluster - sh - sqlalchemy - statsmodels - tabulate - toolz - tornado test: imports: - bcbio.distributed.ipython - bcbio.distributed.multi - bcbio.pipeline.main - bcbio.provenance.do about: home: https://github.com/chapmanb/bcbio-nextgen license: MIT summary: Validated, scalable, community developed variant calling and RNA-seq analysis
package: name: bcbio-nextgen version: '0.9.6a' build: number: 100 source: git_url: https://github.com/chapmanb/bcbio-nextgen.git git_tag: master requirements: build: - python - setuptools run: - python - arrow - azure-sdk-for-python - bioblend - biopython - boto - click - cython - cyvcf2 - fabric - fadapa - gffutils - ipyparallel - ipython-cluster-helper - joblib - logbook - lxml - matplotlib - msgpack-python - nose - numpy - openpyxl - openssl - pandas - path.py - patsy - pip - pycrypto - progressbar - psutil - python-dateutil - pybedtools - pysam - pyvcf - pyyaml - pyzmq - reportlab - requests - scikit-learn - scipy - seaborn - seqcluster - sh - sqlalchemy - statsmodels - tabulate - toolz - tornado - libgfortran test: imports: - bcbio.distributed.ipython - bcbio.distributed.multi - bcbio.pipeline.main - bcbio.provenance.do about: home: https://github.com/chapmanb/bcbio-nextgen license: MIT summary: Validated, scalable, community developed variant calling and RNA-seq analysis
Add libgfortran to bcbio-nextgen requirements
Add libgfortran to bcbio-nextgen requirements Fix "libgfortran.so.1: cannot open shared object file" issue
YAML
mit
alexandrucoman/bcbio-dev-conda,alexandrucoman/bcbio-dev-conda
8dbc253d8fdc5ec45901bb490f46e1b3e0ff8306
circle.yml
circle.yml
machine: java: version: openjdk8 environment: TERM: dumb dependencies: cache_directories: - "~/.m2" - "~/.gradle" test: override: - ./gradlew build
machine: java: version: openjdk8 environment: TERM: dumb dependencies: pre: - rm -f ~/.gradle/caches/modules-2/modules-2.lock - rm -rf ~/.gradle/caches/*/{file-changes,fileHashes,plugin-resolution,scripts,scripts-remapped,gradle-script-kotlin}/ cache_directories: - "~/.gradle/caches/" - "~/.gradle/wrapper/" test: override: - ./gradlew build
Use Travis setup in CircleCI
Use Travis setup in CircleCI
YAML
mit
DemonWav/IntelliJBukkitSupport,DemonWav/MinecraftDev,DemonWav/MinecraftDevIntelliJ,minecraft-dev/MinecraftDev,DemonWav/MinecraftDevIntelliJ,minecraft-dev/MinecraftDev,DemonWav/MinecraftDev,minecraft-dev/MinecraftDev,DemonWav/MinecraftDevIntelliJ,DemonWav/MinecraftDev
496ddf7f46e38e43dff9b3275a218b63d652dcf5
circle.yml
circle.yml
dependencies: pre: - npm install -g cypress-cli test: override: - npm test - npm start -- --silent background: true - cypress ci # requires CYPRESS_CI_KEY (https://docs.cypress.io/docs/continuous-integration#section-acquire-a-cypress-secret-key)
dependencies: pre: - npm install -g cypress-cli - npm install -g forever test: override: - npm test - forever start server.js - cypress ci # requires CYPRESS_CI_KEY (https://docs.cypress.io/docs/continuous-integration#section-acquire-a-cypress-secret-key)
Use forever package to run node in the background for cypress
Use forever package to run node in the background for cypress
YAML
mit
ilmoraunio/mamk-demo-automation-testing,ilmoraunio/mamk-demo-automation-testing
ceacc55eee5fb069265f4113e32ed83e49bd11c4
updates/version.yaml
updates/version.yaml
1.0.1: First version of ClearCacheWidget 1.0.2: Translate for brazilian portuguese 1.0.3: Fix support multiple widgets on the dashboard
1.0.1: First version of ClearCacheWidget 1.0.2: Translate for brazilian portuguese 1.0.3: Fix support multiple widgets on the dashboard
Fix support multiple widgets on the dashboard
Fix support multiple widgets on the dashboard
YAML
mit
romanov-acc/octobercms_clearcachewidget,romanov-acc/octobercms_clearcachewidget
0fe786263d67cc355a12d50d0a70263637cd49e7
packages/ca/cardano-coin-selection.yaml
packages/ca/cardano-coin-selection.yaml
homepage: https://github.com/input-output-hk/cardano-coin-selection#readme changelog-type: markdown hash: 3d965d9b01ef6f61b31e34ccf18aedb44611b9e3a56a4e094e3027e15c7e7ac5 test-bench-deps: quiet: -any cardano-coin-selection: -any fmt: -any bytestring: -any base: '>=4.7 && <5' hspec: -any text: -any memory: -any containers: -any cryptonite: -any transformers: -any random: -any deepseq: -any QuickCheck: -any vector: -any maintainer: [email protected] synopsis: Algorithms for coin selection and fee balancing. changelog: | ## [1.0.0] - 2020-04-29 Initial release. basic-deps: quiet: -any bytestring: -any base: '>=4.7 && <5' text: -any containers: -any cryptonite: -any transformers: -any deepseq: -any all-versions: - 1.0.0 author: IOHK latest: 1.0.0 description-type: haddock description: Please see the README on GitHub at <https://github.com/input-output-hk/cardano-coin-selection> license-name: Apache-2.0
homepage: https://github.com/input-output-hk/cardano-coin-selection#readme changelog-type: markdown hash: 810e0984b5bd369aa3ef235a37cc10ed3fde959645a7dce940ca5a8cb00eb5b1 test-bench-deps: quiet: -any cardano-coin-selection: -any fmt: -any bytestring: -any base: '>=4.7 && <5' hspec: -any text: -any memory: -any containers: -any cryptonite: -any transformers: '>=0.5.6.0' random: -any deepseq: -any QuickCheck: -any vector: -any maintainer: [email protected] synopsis: Algorithms for coin selection and fee balancing. changelog: | ## [1.0.0] - 2020-04-29 Initial release. basic-deps: quiet: -any bytestring: -any base: '>=4.7 && <5' text: -any containers: -any cryptonite: -any transformers: '>=0.5.6.0' deepseq: -any all-versions: - 1.0.0 author: IOHK latest: 1.0.0 description-type: haddock description: Please see the README on GitHub at <https://github.com/input-output-hk/cardano-coin-selection> license-name: Apache-2.0
Update from Hackage at 2020-05-06T09:28:52Z
Update from Hackage at 2020-05-06T09:28:52Z
YAML
mit
commercialhaskell/all-cabal-metadata
2897656c69d1706fd1e4b7044eed50106044e44c
.github/workflows/update-assets-manifest.yml
.github/workflows/update-assets-manifest.yml
name: Update assets-manifest on: push: branches: - "dependabot/npm_and_yarn/**" workflow_dispatch: jobs: build: name: Update assets-manifest runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 with: persist-credentials: false fetch-depth: 0 - name: Cache npm dependencies uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node- - name: Install node and npm run: ./mvnw --batch-mode frontend:install-node-and-npm - name: Install npm dependencies and build run: | npm ci npm run build - name: Assets-Manifest commit run: | git config --local user.name "Tobias Schneider[bot]" git config --local user.email [email protected] git diff --quiet --name-only src/main/webapp/WEB-INF/assets-manifest.json || (git add src/main/webapp/WEB-INF/assets-manifest.json; git commit -m "[dependabot skip] Adapt assets-manifest") - name: Assets-Manifest push uses: ad-m/[email protected] with: github_token: ${{ secrets.GITHUB_TOKEN }} branch: ${{ github.ref }}
name: Update assets-manifest on: pull_request_target: branches: - "dependabot/npm_and_yarn/**" workflow_dispatch: jobs: build: name: Update assets-manifest runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v2 with: persist-credentials: false fetch-depth: 0 - name: Cache npm dependencies uses: actions/cache@v2 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node- - name: Install node and npm run: ./mvnw --batch-mode frontend:install-node-and-npm - name: Install npm dependencies and build run: | npm ci npm run build - name: Assets-Manifest commit run: | git config --local user.name "Tobias Schneider[bot]" git config --local user.email [email protected] git diff --quiet --name-only src/main/webapp/WEB-INF/assets-manifest.json || (git add src/main/webapp/WEB-INF/assets-manifest.json; git commit -m "[dependabot skip] Adapt assets-manifest") - name: Assets-Manifest push uses: ad-m/[email protected] with: github_token: ${{ secrets.GITHUB_TOKEN }} branch: ${{ github.ref }}
Change to pull_request_target without own pat
Change to pull_request_target without own pat
YAML
apache-2.0
synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung,synyx/urlaubsverwaltung
b259d7c5f3be0e618e3748cd783bdc4c2a68b5e6
.appveyor.yml
.appveyor.yml
environment: matrix: - TARGET: x86_64-pc-windows-msvc - TARGET: i686-pc-windows-msvc - TARGET: x86_64-pc-windows-gnu - TARGET: i686-pc-windows-gnu install: - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-host %TARGET% - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - rustc -vV - cargo -vV build: false test_script: - cargo build --verbose - cargo test --verbose
environment: matrix: - TARGET: x86_64-pc-windows-msvc - TARGET: i686-pc-windows-msvc - TARGET: x86_64-pc-windows-gnu - TARGET: i686-pc-windows-gnu install: - curl -sSf -o rustup-init.exe https://win.rustup.rs/ - rustup-init.exe -y --default-host %TARGET% - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - rustc -vV - cargo -vV build: false test_script: - cargo test --verbose skip_branch_with_pr: true
Stop Appveyor from building PRs twice
Stop Appveyor from building PRs twice
YAML
apache-2.0
seanmonstar/reqwest
695a820473eaa0370e4e076c29a9e7df60ff3f9e
.github/workflows/bazel-build.yml
.github/workflows/bazel-build.yml
name: "Test Bazel Build" on: push: branches: [ master ] pull_request: branches: [ master ] schedule: - cron: "0 0 * * *" jobs: build: runs-on: ubuntu-latest env: BAZEL: bazelisk-linux-amd64 steps: - uses: actions/checkout@v2 with: submodules: recursive - name: Mount bazel cache uses: actions/cache@v2 with: # See https://docs.bazel.build/versions/master/output_directories.html path: "~/.cache/bazel" # Create a new cache entry whenever Bazel files change. # See https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows key: ${{ runner.os }}-build-${{ hashFiles('**/*.bzl', '**/*.bazel') }} restore-keys: | ${{ runner.os }}-build- - name: Install bazelisk run: | curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.4.0/$BAZEL" chmod +x $BAZEL sudo mv $BAZEL /usr/local/bin/bazel - name: Build and run tests run: bazel test //proto/tests:pi_proto_tests //proto/tests:pi_proto_server_tests
name: "Test Bazel Build" on: push: branches: [ master ] pull_request: branches: [ master ] schedule: - cron: "0 0 * * *" jobs: build: runs-on: ubuntu-latest env: BAZEL: bazelisk-linux-amd64 steps: - uses: actions/checkout@v2 with: submodules: recursive - name: Mount bazel cache uses: actions/cache@v2 with: # See https://docs.bazel.build/versions/master/output_directories.html path: "~/.cache/bazel" # Create a new cache entry whenever Bazel files change. # See https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows key: bazel-${{ runner.os }}-build-${{ hashFiles('**/*.bzl', '**/*.bazel') }} restore-keys: | bazel-${{ runner.os }}-build- - name: Install bazelisk run: | curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.4.0/$BAZEL" chmod +x $BAZEL sudo mv $BAZEL /usr/local/bin/bazel - name: Build and run tests run: bazel test //proto/tests:pi_proto_tests //proto/tests:pi_proto_server_tests
Discard existing Bazel cache for Github build
Discard existing Bazel cache for Github build There seems to be a Bazel issue which can be resolved by expunging the cache: bazelbuild/bazel#9213
YAML
apache-2.0
p4lang/PI,p4lang/PI,p4lang/PI,p4lang/PI
ba788d3b7a88b7ec605e279e249c392c27339dd2
.github/workflows/close_stale.yml
.github/workflows/close_stale.yml
name: "Close stale issues" on: schedule: - cron: "0 0 * * *" jobs: stale: runs-on: ubuntu-latest steps: - uses: actions/[email protected] with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove the "stale" label or comment or this will be closed in 14 days.' stale-pr-message: 'This pull request is stale because it has been open 90 days with no activity. Remove the "stale" label or comment or this will be closed in 14 days.' days-before-stale: 180 days-before-close: 28 exempt-issue-labels: 'blocked' exempt-pr-labels: 'blocked'
name: "Close stale issues" on: schedule: - cron: "0 0 * * *" jobs: stale: runs-on: ubuntu-latest steps: - uses: actions/[email protected] with: repo-token: ${{ secrets.GITHUB_TOKEN }} stale-issue-message: 'This issue is stale because it has been open 90 days with no activity. Remove the "stale" label or comment or this will be closed in 14 days.' stale-pr-message: 'This pull request is stale because it has been open 90 days with no activity. Remove the "stale" label or comment or this will be closed in 14 days.' days-before-stale: 180 days-before-close: 28 exempt-issue-labels: 'blocked' exempt-pr-labels: 'blocked'
Update actions/stale action to v3.0.19
Update actions/stale action to v3.0.19
YAML
apache-2.0
dropwizard/dropwizard,phambryan/dropwizard,dropwizard/dropwizard,dropwizard/dropwizard,phambryan/dropwizard,phambryan/dropwizard
526764c74e23755878f05e49775e9b6384a37bc7
.github/workflows/dotnet-core.yml
.github/workflows/dotnet-core.yml
name: .NET Core Builds on: push: branches: [ dev ] pull_request: branches: [ dev ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET 5.0 uses: actions/setup-dotnet@v1 with: dotnet-version: 5.0.202 - name: Setup .NET Core 3.1 uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.407 - name: Setup .NET Core 2.1 uses: actions/setup-dotnet@v1 with: dotnet-version: 2.1.814 - name: Install dependencies run: dotnet restore - name: Build run: dotnet build --configuration Release --no-restore - name: Test.Mutant run: dotnet test --no-restore --verbosity normal ./Test.Mutant/Test.Mutant.csproj
name: .NET Core Builds on: push: branches: [ dev ] pull_request: branches: [ dev ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup .NET 5.0 uses: actions/setup-dotnet@v1 with: dotnet-version: 5.0.202 - name: Setup .NET Core 3.1 uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.407 - name: Setup .NET Core 2.1 uses: actions/setup-dotnet@v1 with: dotnet-version: 2.1.814 - name: Install dependencies run: dotnet restore - name: Build run: dotnet build --configuration Release --no-restore - name: Test.Mutant run: dotnet test --no-restore --verbosity normal
Fix typo in github build action
Fix typo in github build action
YAML
apache-2.0
AltaModaTech/netcore-extensions
360876871852a33f8d74da02854d56bf970d7f55
.github/workflows/pmg-testing.yml
.github/workflows/pmg-testing.yml
name: Pymatgen testing on: [push] jobs: build: strategy: max-parallel: 6 matrix: os: [ubuntu-latest, macOS-latest] python-version: [3.6, 3.7] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt pip install -r requirements-optional.txt - name: Install binary dependencies (Linux) if: matrix.os == "ubuntu-latest" run: | export PATH=$PATH:`pwd`/cmd_line/bader/Linux_64bit:`pwd`/cmd_line/aconvasp/Linux_64bit:`pwd`/cmd_line/boltztrap/Linux_64bit - name: Test with pytest env: PMG_MAPI_KEY: ${{ secrets.PMG_MAPI_KEY }} run: | pip install -e . pytest pymatgen
name: Pymatgen testing on: [push] jobs: build: strategy: max-parallel: 6 matrix: os: [ubuntu-latest, macOS-latest] python-version: [3.6, 3.7] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v1 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v1 with: python-version: ${{ matrix.python-version }} - name: Install Python dependencies run: | python -m pip install --upgrade pip pip install -r requirements.txt pip install -r requirements-optional.txt - name: Install binary dependencies (Linux) if: matrix.os == 'ubuntu-latest' run: | export PATH=$PATH:`pwd`/cmd_line/bader/Linux_64bit:`pwd`/cmd_line/aconvasp/Linux_64bit:`pwd`/cmd_line/boltztrap/Linux_64bit - name: Test with pytest env: PMG_MAPI_KEY: ${{ secrets.PMG_MAPI_KEY }} run: | pip install -e . pytest pymatgen
Fix to use single quotes for string literal
Fix to use single quotes for string literal
YAML
mit
mbkumar/pymatgen,gVallverdu/pymatgen,tschaume/pymatgen,mbkumar/pymatgen,davidwaroquiers/pymatgen,gVallverdu/pymatgen,richardtran415/pymatgen,gVallverdu/pymatgen,vorwerkc/pymatgen,gmatteo/pymatgen,vorwerkc/pymatgen,richardtran415/pymatgen,mbkumar/pymatgen,vorwerkc/pymatgen,fraricci/pymatgen,davidwaroquiers/pymatgen,tschaume/pymatgen,tschaume/pymatgen,richardtran415/pymatgen,tschaume/pymatgen,davidwaroquiers/pymatgen,gmatteo/pymatgen,fraricci/pymatgen,vorwerkc/pymatgen,gVallverdu/pymatgen,mbkumar/pymatgen,richardtran415/pymatgen,tschaume/pymatgen,fraricci/pymatgen,davidwaroquiers/pymatgen,fraricci/pymatgen
f4b85534e1e28c99633c5b1a57f6e1ccd6b39886
.github/workflows/python-test.yml
.github/workflows/python-test.yml
name: Test python package on: [push] jobs: build-linux: runs-on: ubuntu-latest strategy: max-parallel: 1 matrix: python-version: [2.7, 3.4, 3.5, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | pip install -r requirements.txt - name: Test run: | python -m unittest discover -v
name: Test python package on: [push] jobs: build-linux: runs-on: ubuntu-latest strategy: max-parallel: 1 matrix: python-version: [3.4, 3.5, 3.6, 3.7, 3.8] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | pip install -r requirements.txt - name: Test run: | python -m unittest discover -v
Remove 2.7 from python-version matrix
Remove 2.7 from python-version matrix
YAML
mit
mick88/samp-client
636a78d0fd7944014e1898c7370cb8f3ac489024
.fixtures.yml
.fixtures.yml
fixtures: repositories: "stdlib": "git://github.com/puppetlabs/puppetlabs-stdlib.git" "inifile": "git://github.com/puppetlabs/puppetlabs-inifile" "keystone": "git://github.com/stackforge/puppet-keystone.git" "mysql": repo: "git://github.com/puppetlabs/puppetlabs-mysql.git" ref: 'origin/0.x' "nova": "git://github.com/stackforge/puppet-nova.git" "vswitch": "git://github.com/bodepd/puppet-vswitch" symlinks: "neutron": "#{source_dir}"
fixtures: repositories: "stdlib": "git://github.com/puppetlabs/puppetlabs-stdlib.git" "inifile": "git://github.com/puppetlabs/puppetlabs-inifile" "keystone": "git://github.com/stackforge/puppet-keystone.git" "mysql": repo: "git://github.com/puppetlabs/puppetlabs-mysql.git" ref: 'origin/0.x' "nova": "git://github.com/stackforge/puppet-nova.git" "vswitch": "git://github.com/stackforge/puppet-vswitch" symlinks: "neutron": "#{source_dir}"
Update remote url for puppet-vswitch
Update remote url for puppet-vswitch Change-Id: Ieffc717df0c796dbd90ab5c8bc38426ed0d9bc17
YAML
apache-2.0
aldavud/puppet-neutron,hkumarmk/puppet-neutron,openstack/puppet-neutron,IPnett/puppet-neutron,JioCloud/puppet-neutron,NeCTAR-RC/puppet-neutron,fuel-infra/puppet-neutron,larsks/puppet-neutron,varunarya10/puppet-neutron,redhat-cip/puppet-neutron,aldavud/puppet-neutron,DarkHorseComics/puppet-neutron,larsks/puppet-neutron,trihoangvo/puppet-neutron,cloudbuy/puppet-neutron,fuel-infra/puppet-neutron,aldavud/puppet-neutron,markvoelker/puppet-neutron,arnaudmorinol/puppet-neutron,IPnett/puppet-neutron,rdo-puppet-modules/puppet-neutron,CiscoSystems/puppet-neutron,JioCloud/puppet-neutron,openstack/puppet-neutron,fuel-infra/puppet-neutron,varunarya10/puppet-neutron,arnaudmorinol/puppet-neutron,NeCTAR-RC/puppet-neutron,redhat-cip/puppet-neutron,cloudbuy/puppet-neutron,hkumarmk/puppet-neutron,CiscoSystems/puppet-neutron,rdo-puppet-modules/puppet-neutron,IPnett/puppet-neutron,hkumarmk/puppet-neutron,JioCloud/puppet-neutron,trihoangvo/puppet-neutron,redhat-cip/puppet-neutron,DarkHorseComics/puppet-neutron,markvoelker/puppet-neutron,NeCTAR-RC/puppet-neutron,cloudbuy/puppet-neutron,CiscoSystems/puppet-neutron,plumgrid/puppet-neutron,plumgrid/puppet-neutron
1713547cfd7d0691f63ca5c1c8bf156da17de1b3
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: CI on: push: pull_request: schedule: - cron: '0 0 * * *' jobs: ci: runs-on: ubuntu-latest strategy: matrix: ruby-version: - '2.6' - '2.7' services: postgres: image: manageiq/postgresql:10 env: POSTGRESQL_USER: root POSTGRESQL_PASSWORD: smartvm POSTGRESQL_DATABASE: vmdb_test options: --health-cmd pg_isready --health-interval 2s --health-timeout 5s --health-retries 5 ports: - 5432:5432 env: PGHOST: localhost PGPASSWORD: smartvm CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} steps: - uses: actions/checkout@v2 - name: Set up system run: bin/before_install - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - name: Prepare tests run: bin/setup - name: Run tests run: bundle exec rake - name: Report code coverage if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7' }} continue-on-error: true uses: paambaati/[email protected]
name: CI on: push: pull_request: workflow_dispatch: schedule: - cron: '0 0 * * *' jobs: ci: runs-on: ubuntu-latest strategy: matrix: ruby-version: - '2.6' - '2.7' services: postgres: image: manageiq/postgresql:10 env: POSTGRESQL_USER: root POSTGRESQL_PASSWORD: smartvm POSTGRESQL_DATABASE: vmdb_test options: --health-cmd pg_isready --health-interval 2s --health-timeout 5s --health-retries 5 ports: - 5432:5432 env: PGHOST: localhost PGPASSWORD: smartvm CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} steps: - uses: actions/checkout@v2 - name: Set up system run: bin/before_install - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true - name: Prepare tests run: bin/setup - name: Run tests run: bundle exec rake - name: Report code coverage if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '2.7' }} continue-on-error: true uses: paambaati/[email protected]
Add manual option for CI github workflow
Add manual option for CI github workflow
YAML
apache-2.0
ManageIQ/manageiq-providers-amazon,ManageIQ/manageiq-providers-amazon
ff9dc6f88bcb48ca26008b9ed6714f9c67d4768e
tests/_envs/travis-ci-hub.yml
tests/_envs/travis-ci-hub.yml
modules: enabled: - \SuiteCRM\Test\Driver\WebDriver config: \SuiteCRM\Test\Driver\WebDriver: url: "http://localhost/" wait: 5 port: 9515 # ChromeDriver port browser: chrome window_size: false capabilities: chromeOptions: args: ["--headless", "--disable-gpu", "window-size=1920x1080"] binary: "google-chrome-stable"
modules: enabled: - \SuiteCRM\Test\Driver\WebDriver config: \SuiteCRM\Test\Driver\WebDriver: url: "http://localhost/" wait: 5 port: 9515 # ChromeDriver port browser: chrome window_size: false capabilities: chromeOptions: args: ["--headless", "--disable-gpu", "window-size=1920x1080"] binary: "google-chrome"
Add chrome headless config to acceptance tests
Add chrome headless config to acceptance tests
YAML
agpl-3.0
gcoop-libre/SuiteCRM,cumanacr/SuiteCRM,ChangezKhan/SuiteCRM,JimMackin/SuiteCRM,horus68/SuiteCRM-Horus68,JimMackin/SuiteCRM,salesagility/SuiteCRM,salesagility-davidthomson/SuiteCRM,lionixevolve/SuiteCRM,Dillon-Brown/SuiteCRM,cumanacr/SuiteCRM,salesagility-davidthomson/SuiteCRM,samus-aran/SuiteCRM,samus-aran/SuiteCRM,salesagility/SuiteCRM,pribeiro42/SuiteCRM,dfstrauss/SuiteCRM,salesagility-davidthomson/SuiteCRM,daniel-samson/SuiteCRM,cumanacr/SuiteCRM,daniel-samson/SuiteCRM,MikeyJC/SuiteCRM,horus68/SuiteCRM-Horus68,JanSiero/SuiteCRM,pgorod/SuiteCRM,MikeyJC/SuiteCRM,pgorod/SuiteCRM,gcoop-libre/SuiteCRM,lionixevolve/SuiteCRM,dfstrauss/SuiteCRM,Dillon-Brown/SuiteCRM,willrennie/SuiteCRM,JanSiero/SuiteCRM,lionixevolve/LionixCRM,pribeiro42/SuiteCRM,Dillon-Brown/SuiteCRM,gody01/SuiteCRM,ChangezKhan/SuiteCRM,pribeiro42/SuiteCRM,gody01/SuiteCRM,lionixevolve/LionixCRM,Dillon-Brown/SuiteCRM,JimMackin/SuiteCRM,gody01/SuiteCRM,daniel-samson/SuiteCRM,dfstrauss/SuiteCRM,lionixevolve/LionixCRM,daniel-samson/SuiteCRM,willrennie/SuiteCRM,horus68/SuiteCRM-Horus68,JanSiero/SuiteCRM,JanSiero/SuiteCRM,samus-aran/SuiteCRM,willrennie/SuiteCRM,JimMackin/SuiteCRM,lionixevolve/SuiteCRM,horus68/SuiteCRM-Horus68,lionixevolve/LionixCRM,dfstrauss/SuiteCRM,salesagility/SuiteCRM,MikeyJC/SuiteCRM,MikeyJC/SuiteCRM,pribeiro42/SuiteCRM,lionixevolve/SuiteCRM,salesagility-davidthomson/SuiteCRM,gody01/SuiteCRM,gcoop-libre/SuiteCRM,lionixevolve/LionixCRM,gcoop-libre/SuiteCRM,ChangezKhan/SuiteCRM,pgorod/SuiteCRM,ChangezKhan/SuiteCRM,lionixevolve/LionixCRM,pgorod/SuiteCRM,willrennie/SuiteCRM,cumanacr/SuiteCRM,salesagility/SuiteCRM,samus-aran/SuiteCRM
6741b0349a98909b2f64bb1af39d9de0813ee1b6
metadata/nya.kitsunyan.foxydroid.yml
metadata/nya.kitsunyan.foxydroid.yml
Categories: - System License: GPL-3.0-or-later AuthorName: Foxy McFoxtail AuthorEmail: [email protected] SourceCode: https://github.com/kitsunyan/foxy-droid IssueTracker: https://github.com/kitsunyan/foxy-droid/issues AutoName: Foxy Droid RepoType: git Repo: https://github.com/kitsunyan/foxy-droid Binaries: https://github.com/kitsunyan/foxy-droid/releases/download/%v/foxy-droid-%v.apk Builds: - versionName: '1.0' versionCode: 1 commit: '1.0' gradle: - yes - versionName: '1.1' versionCode: 2 commit: '1.1' gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags ^[0-9.]+$ CurrentVersion: '1.1' CurrentVersionCode: 2
Categories: - System License: GPL-3.0-or-later AuthorName: Foxy McFoxtail AuthorEmail: [email protected] SourceCode: https://github.com/kitsunyan/foxy-droid IssueTracker: https://github.com/kitsunyan/foxy-droid/issues AutoName: Foxy Droid RepoType: git Repo: https://github.com/kitsunyan/foxy-droid Binaries: https://github.com/kitsunyan/foxy-droid/releases/download/%v/foxy-droid-%v.apk Builds: - versionName: '1.0' versionCode: 1 commit: '1.0' gradle: - yes - versionName: '1.1' versionCode: 2 commit: '1.1' gradle: - yes - versionName: '1.2' versionCode: 3 commit: '1.2' gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags ^[0-9.]+$ CurrentVersion: '1.2' CurrentVersionCode: 3
Update Foxy Droid to 1.2 (3)
Update Foxy Droid to 1.2 (3)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
6ec92b06d4954af86d1e99949c8ff06843b45920
roles/pip/tasks/main.yml
roles/pip/tasks/main.yml
--- - name: install pip yum: name: python-pip state: installed when: ansible_distribution == 'CentOS' - name: install pip apt: name: python-pip when: ansible_distribution == 'Debian'
--- - name: install pip yum: name: python-pip state: installed update_cache: yes when: ansible_distribution == 'CentOS' - name: install pip apt: name: python-pip update_cache: yes when: ansible_distribution == 'Debian'
Update package management before install pip
Update package management before install pip
YAML
apache-2.0
osu-mist/ansible-roles
0993e0334bc90f16c2cb4965aed8300b54baaa61
addons/cluster-autoscaler/v1.4.0.yaml
addons/cluster-autoscaler/v1.4.0.yaml
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: cluster-autoscaler namespace: kube-system labels: k8s-app: cluster-autoscaler spec: replicas: 1 selector: matchLabels: k8s-app: cluster-autoscaler template: metadata: labels: k8s-app: cluster-autoscaler annotations: scheduler.alpha.kubernetes.io/tolerations: '[{"key":"dedicated", "value":"master"}]' spec: containers: - name: cluster-autoscaler image: {{IMAGE}} resources: limits: cpu: 100m memory: 300Mi requests: cpu: 100m memory: 300Mi command: - ./cluster-autoscaler - --cloud-provider={{CLOUD_PROVIDER}} - --nodes={{MIN_NODES}}:{{MAX_NODES}}:{{GROUP_NAME}} env: - name: AWS_REGION value: {{AWS_REGION}} volumeMounts: - name: ssl-certs mountPath: {{SSL_CERT_PATH}} readOnly: true volumes: - name: ssl-certs hostPath: path: {{SSL_CERT_PATH}} nodeSelector: kubernetes.io/role: master
apiVersion: extensions/v1beta1 kind: Deployment metadata: name: cluster-autoscaler namespace: kube-system labels: k8s-app: cluster-autoscaler spec: replicas: 1 selector: matchLabels: k8s-app: cluster-autoscaler template: metadata: labels: k8s-app: cluster-autoscaler annotations: # For 1.6, we keep the old tolerations in case of a downgrade to 1.5 scheduler.alpha.kubernetes.io/tolerations: '[{"key":"dedicated", "value":"master"}]' spec: containers: - name: cluster-autoscaler image: {{IMAGE}} resources: limits: cpu: 100m memory: 300Mi requests: cpu: 100m memory: 300Mi command: - ./cluster-autoscaler - --cloud-provider={{CLOUD_PROVIDER}} - --nodes={{MIN_NODES}}:{{MAX_NODES}}:{{GROUP_NAME}} env: - name: AWS_REGION value: {{AWS_REGION}} volumeMounts: - name: ssl-certs mountPath: {{SSL_CERT_PATH}} readOnly: true volumes: - name: ssl-certs hostPath: path: {{SSL_CERT_PATH}} nodeSelector: node-role.kubernetes.io/master: "" tolerations: - key: "node-role.kubernetes.io/master" effect: NoSchedule
Set tolerations on cluster-autoscaler.yaml as field for Kubernetes 1.6 support
Set tolerations on cluster-autoscaler.yaml as field for Kubernetes 1.6 support
YAML
apache-2.0
sethpollack/kops,andrewsykim/kops,reactiveops/kops,robinpercy/kops,blakebarnett/kops,DualSpark/kops,kubernetes/kops,MadDogTechnology/kops,andrewsykim/kops,chrislovecnm/kops,aledbf/kops,kris-nova/kops,robinpercy/kops,MadDogTechnology/kops,blakebarnett/kops,MadDogTechnology/kops,gambol99/kops,pdh/kops,austinmoore-/kops,WillemMali/kops,faraazkhan/kops,sethpollack/kops,aledbf/kops,tsupertramp/kops,andrewsykim/kops,mad01/kops,chrislovecnm/kops,DualSpark/kops,sethpollack/kops,leandrocr/kops,pdh/kops,faraazkhan/kops,BradErz/kops,DualSpark/kops,kris-nova/kops,reactiveops/kops,leandrocr/kops,gambol99/kops,robinpercy/kops,aledbf/kops,robinpercy/kops,tsupertramp/kops,gambol99/kops,austinmoore-/kops,kubernetes/kops,sethpollack/kops,justinsb/kops,WillemMali/kops,austinmoore-/kops,aledbf/kops,blakebarnett/kops,pdh/kops,chrislovecnm/kops,justinsb/kops,reactiveops/kops,andrewsykim/kops,mad01/kops,tsupertramp/kops,faraazkhan/kops,WillemMali/kops,BradErz/kops,mad01/kops,mad01/kops,leandrocr/kops,BradErz/kops,leandrocr/kops,tsupertramp/kops,justinsb/kops,faraazkhan/kops,kris-nova/kops,kris-nova/kops,WillemMali/kops,reactiveops/kops,MadDogTechnology/kops,austinmoore-/kops,BradErz/kops,DualSpark/kops,gambol99/kops,kubernetes/kops,blakebarnett/kops,pdh/kops,chrislovecnm/kops
3e7d8b0c39a8f4dea04df409ce41dbf3a1e18fb5
config/locales/ne/shared.yml
config/locales/ne/shared.yml
--- ne: shared: breadcrumbs_home: browse: prefix: title: get_emails: language_direction: language_name: topics: title:
--- ne: shared: breadcrumbs_home: browse: prefix: title: get_emails: language_direction: ltr language_name: नेपाली topics: title:
Add language name and direction for Nepali
Add language name and direction for Nepali This appeared to be missing from the locale files.
YAML
mit
alphagov/collections,alphagov/collections,alphagov/collections,alphagov/collections
f73d1a7065e52f97f0ef5e2d704f2e6287001615
appveyor.yml
appveyor.yml
environment: matrix: - nodejs_version: "0.10" - nodejs_version: "0.12" - nodejs_version: "1.0" - nodejs_version: "2.0" - nodejs_version: "2.5" - nodejs_version: "3.0" install: # From https://github.com/nodejs/nan/blob/master/appveyor.yml - ps: Install-Product node $env:nodejs_version - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) - IF %nodejs_version% LSS 1 npm -g install npm - IF %nodejs_version% LSS 1 set PATH=%APPDATA%\npm;%PATH% - npm run prepublish - npm install test_script: - npm test build: off version: "{build}"
environment: matrix: - nodejs_version: "0.10" - nodejs_version: "0.12" - nodejs_version: "2.5" - nodejs_version: "3.0" install: # From https://github.com/nodejs/nan/blob/master/appveyor.yml - ps: Install-Product node $env:nodejs_version - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) - IF %nodejs_version% LSS 1 npm -g install npm - IF %nodejs_version% LSS 1 set PATH=%APPDATA%\npm;%PATH% - npm run prepublish - npm install test_script: - npm test build: off version: "{build}"
Remove old io.js versions from matrix
Remove old io.js versions from matrix I guess I can live with a few versions of io.js not being supported under windows; Things seem to work now for node.js and for recent io.js versions.
YAML
mit
addaleax/lzma-native,addaleax/lzma-native,addaleax/lzma-native,addaleax/lzma-native
4565837435b129a75e110ec67c0a4aa78e0769fb
appveyor.yml
appveyor.yml
version: 1.0.{build} environment: nodejs_version: "6" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:nodejs_version # install modules - npm install only_commits: message: /build-release/ build_script: - ps: npm run build:webapp:prod - ps: npm run build:win
version: 1.0.{build} environment: nodejs_version: "6" # Install scripts. (runs after repo cloning) install: # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:nodejs_version # install modules - npm install only_commits: message: /build-release/ build_script: - ps: npm run build:webapp:prod - ps: npm run build:win branches: only: - master pull_requests: do_not_increment_build_number: true environment: GH_TOKEN: secure: D04x8djK8cRtoR47RIi3HC3FArLnefMpk368HefDJoVwEvYUilileOceRA6gkBZ7 skip_tags: true
Adjust yaml to build only on master
Adjust yaml to build only on master
YAML
isc
nick-michael/razer-paint,nick-michael/razer-paint
307836cb7ecb650414193d7e336e080c657ea874
appveyor.yml
appveyor.yml
version: '1.0.{build}' image: Visual Studio 2017 #branches: # only: # - master init: # Good practise, because Windows line endings are different from Unix/Linux ones - cmd: git config --global core.autocrlf true install: # Install repo specific stuff here before_build: # Display .NET Core version - cmd: dotnet --version # Display minimal restore text - cmd: dotnet restore --verbosity m build_script: - cmd: dotnet build -c Release after_build: # For once the build has completed clone_depth: 1 test_script: # run the unit tests (requires changing into the test directory) - cmd: dotnet test ./Tests/Tests.csproj --no-build -c Release on_finish : # any cleaup in here deploy_script: - ps: .\deployment.ps1 -Project src\Sharpy\Sharpy.csproj -Repo https://github.com/inputfalken/Sharpy -Deploy $true -useDocfx $true - ps: .\deployment.ps1 -Project src\Sharpy.Core\Sharpy.Core.csproj -Repo https://github.com/inputfalken/Sharpy -Deploy $true -useDocfx $false
version: '1.0.{build}' image: Visual Studio 2017 #branches: # only: # - master init: # Good practise, because Windows line endings are different from Unix/Linux ones - cmd: git config --global core.autocrlf true install: # Install repo specific stuff here before_build: # Display .NET Core version - cmd: dotnet --version # Display minimal restore text - cmd: dotnet restore --verbosity m build_script: - cmd: dotnet build -c Release after_build: # For once the build has completed clone_depth: 1 test_script: # run the unit tests (requires changing into the test directory) - cmd: dotnet test ./Tests/Tests.csproj --no-build -c Release on_finish : # any cleaup in here deploy_script: - ps: .\deployment.ps1 -Project src\Sharpy\Sharpy.csproj -Repo https://github.com/inputfalken/Sharpy -Deploy $true -useDocfx $true -DeletePackage $true - ps: .\deployment.ps1 -Project src\Sharpy.Core\Sharpy.Core.csproj -Repo https://github.com/inputfalken/Sharpy -Deploy $true -useDocfx $false
Delete previous package when running Sharpy deployment
Delete previous package when running Sharpy deployment Former-commit-id: ad4b98f6ba3e55c477d526bd57149c3f8f0e64a8
YAML
mit
inputfalken/Sharpy
24ea116ab8de0232f74f4dd2ac974f292bdf453f
appveyor.yml
appveyor.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. version: "{build}-{branch}" shallow_clone: true platform: x64 configuration: Debug cache: - .\lang\cs\packages - C:\Users\appveyor\.m2 # install section: install maven, protoc etc. install: - ps: .\dev\appveyor-install-dependencies.ps1 build_script: - cmd: msbuild .\lang\cs\Org.Apache.REEF.sln /p:Configuration="Debug" /p:Platform="x64" /m test_script: - cmd: msbuild .\lang\cs\TestRunner.proj /p:Configuration="Debug" /p:Platform="x64" notifications: - provider: Email on_build_success: false on_build_failure: false on_build_status_changed: false
# 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. version: "{build}-{branch}" shallow_clone: true os: - Visual Studio 2013 - Visual Studio 2015 platform: x64 configuration: Debug cache: - .\lang\cs\packages - C:\Users\appveyor\.m2 # install section: install maven, protoc etc. install: - ps: .\dev\appveyor-install-dependencies.ps1 build_script: - cmd: msbuild .\lang\cs\Org.Apache.REEF.sln /p:Configuration="Debug" /p:Platform="x64" /m test_script: - cmd: msbuild .\lang\cs\TestRunner.proj /p:Configuration="Debug" /p:Platform="x64" notifications: - provider: Email on_build_success: false on_build_failure: false on_build_status_changed: false
Add AppVeyor build for VS2013
[REEF-1634] Add AppVeyor build for VS2013 JIRA: [REEF-1634](https://issues.apache.org/jira/browse/REEF-1634) Pull request: This closes #1150
YAML
apache-2.0
afchung/incubator-reef,apache/incubator-reef,anupam128/reef,tcNickolas/incubator-reef,shravanmn/reef,motus/reef,motus/reef,dongjoon-hyun/reef,motus/reef,jwang98052/reef,markusweimer/reef,singlis/reef,dongjoon-hyun/incubator-reef,apache/incubator-reef,nachocano/incubator-reef,jwang98052/incubator-reef,markusweimer/reef,dongjoon-hyun/reef,singlis/reef,anupam128/reef,markusweimer/reef,markusweimer/reef,nachocano/incubator-reef,nachocano/incubator-reef,markusweimer/reef,shravanmn/reef,jwang98052/incubator-reef,shravanmn/reef,anupam128/reef,afchung/reef,markusweimer/reef,afchung/incubator-reef,tcNickolas/incubator-reef,markusweimer/incubator-reef,anupam128/reef,anupam128/reef,tcNickolas/reef,nachocano/incubator-reef,dongjoon-hyun/reef,dougmsft/reef,tcNickolas/incubator-reef,jwang98052/incubator-reef,dongjoon-hyun/incubator-reef,motus/reef,tcNickolas/incubator-reef,shravanmn/reef,jwang98052/reef,motus/reef,dongjoon-hyun/incubator-reef,apache/reef,apache/reef,jwang98052/reef,apache/reef,afchung/reef,tcNickolas/reef,tcNickolas/incubator-reef,dongjoon-hyun/incubator-reef,tcNickolas/incubator-reef,afchung/reef,markusweimer/reef,dongjoon-hyun/incubator-reef,jwang98052/reef,motus/reef,jwang98052/reef,markusweimer/incubator-reef,anupam128/reef,afchung/incubator-reef,dongjoon-hyun/reef,apache/reef,shravanmn/reef,jwang98052/incubator-reef,dougmsft/reef,tcNickolas/reef,jwang98052/incubator-reef,afchung/reef,tcNickolas/incubator-reef,jwang98052/reef,dongjoon-hyun/reef,dougmsft/reef,tcNickolas/reef,markusweimer/incubator-reef,apache/reef,apache/incubator-reef,singlis/reef,shravanmn/reef,jwang98052/incubator-reef,dongjoon-hyun/reef,dongjoon-hyun/incubator-reef,nachocano/incubator-reef,motus/reef,dougmsft/reef,dongjoon-hyun/incubator-reef,shravanmn/reef,apache/incubator-reef,dongjoon-hyun/reef,afchung/reef,apache/reef,markusweimer/incubator-reef,apache/reef,singlis/reef,jwang98052/reef,tcNickolas/reef,afchung/reef,apache/incubator-reef,markusweimer/incubator-reef,markusweimer/incubator-reef,tcNickolas/reef,dougmsft/reef,singlis/reef,afchung/incubator-reef,nachocano/incubator-reef,afchung/incubator-reef,jwang98052/incubator-reef,apache/incubator-reef,singlis/reef,afchung/incubator-reef,nachocano/incubator-reef,singlis/reef,dougmsft/reef,anupam128/reef,afchung/incubator-reef,afchung/reef,tcNickolas/reef,apache/incubator-reef,dougmsft/reef,markusweimer/incubator-reef
499e4a808f2f71b3bae0ce2bc41d94c9ec231492
appveyor.yml
appveyor.yml
version: 1.0.{build} environment: BrowserStack_UserName: secure: 1pPava/umi31t0fUJWpcaw== BrowserStack_AccessKey: secure: Hpvay+UTQJ0RPuhYSEckLmeHzjMmq8hFzVLGVns+Z/c= assembly_info: patch: true file: AssemblyVersion.cs assembly_version: "1.0.0.0" assembly_file_version: "{version}.0" assembly_informational_version: "{version}.0" build: project: src\MartinCostello.BrowserStack.Automate.msbuild verbosity: minimal after_build: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - pip install codecov - codecov -f "src\BuildOutput\MartinCostello.BrowserStack.Automate_coverage.xml" artifacts: - path: src\BuildOutput\*.nupkg nuget: disable_publish_on_pr: true skip_tags: false test: off
version: 1.0.{build} environment: BrowserStack_UserName: secure: 1pPava/umi31t0fUJWpcaw== BrowserStack_AccessKey: secure: kTuv757nz0qovSIwBwGIIFeb2X3PXJuci0mJjGMJuIk= assembly_info: patch: true file: AssemblyVersion.cs assembly_version: "1.0.0.0" assembly_file_version: "{version}.0" assembly_informational_version: "{version}.0" build: project: src\MartinCostello.BrowserStack.Automate.msbuild verbosity: minimal after_build: - "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%" - pip install codecov - codecov -f "src\BuildOutput\MartinCostello.BrowserStack.Automate_coverage.xml" artifacts: - path: src\BuildOutput\*.nupkg nuget: disable_publish_on_pr: true skip_tags: false test: off
Update BrowserStack Automate access key
Update BrowserStack Automate access key
YAML
apache-2.0
martincostello/browserstack-automate
21f8dc4a95c1bb46914c612850ddef5e853a15d1
appveyor.yml
appveyor.yml
environment: matrix: - PYTHON: "C:\Python33-x64" - PYTHON: "C:\Python36-x64" test_script: - "%PYTHON%\\python.exe test.py"
environment: matrix: - PYTHON: "C:\\Python33-x64" - PYTHON: "C:\\Python36-x64" test_script: - "%PYTHON%\\python.exe test.py"
Fix Python paths for AppVeyor CI
Fix Python paths for AppVeyor CI
YAML
mit
somebody1234/Charcoal
e8951ac0bca41b7cfef40e9302b23d2053129981
appveyor.yml
appveyor.yml
version: 1.0.{build} environment: matrix: - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python36" - PYTHON: "C:\\Python36-x64" install: - cmd: "%PYTHON%\\python.exe -m pip install --upgrade pip wheel" build: off test_script: - cmd: "%PYTHON%\\python.exe -m pip install ." - cmd: "%PYTHON%\\python.exe setup.py test" - dir - mkdir wheels - cmd: "%PYTHON%\\python.exe -m pip wheel . --wheel-dir=wheels" - dir wheels artifacts: - path: wheels\*
version: 1.0.{build} environment: matrix: - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python36" - PYTHON: "C:\\Python36-x64" - PYTHON: "C:\\Python37" - PYTHON: "C:\\Python37-x64" - PYTHON: "C:\\Python38" - PYTHON: "C:\\Python38-x64" install: - cmd: "%PYTHON%\\python.exe -m pip install --upgrade pip wheel" build: off test_script: - cmd: "%PYTHON%\\python.exe -m pip install ." - cmd: "%PYTHON%\\python.exe setup.py test" - dir - mkdir wheels - cmd: "%PYTHON%\\python.exe -m pip wheel . --wheel-dir=wheels" - dir wheels artifacts: - path: wheels\*
Test also Python 3.7 and 3.8
Test also Python 3.7 and 3.8
YAML
bsd-3-clause
WojciechMula/pyahocorasick,WojciechMula/pyahocorasick,pombredanne/pyahocorasick,pombredanne/pyahocorasick,pombredanne/pyahocorasick,WojciechMula/pyahocorasick,pombredanne/pyahocorasick,WojciechMula/pyahocorasick
9e5b70416d566440379df8c1adb43885a83e505d
appveyor.yml
appveyor.yml
version: "#{build}" cache: - node_modules init: - git config --global core.autocrlf input skip_tags: true clone_depth: 5 build: off install: - ps: Install-Product node 4.4.0 x64 - npm install test_script: - npm run test-ci-build notifications: - provider: Slack incoming_webhook: https://hooks.slack.com/services/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 - provider: Email to: - [email protected] on_build_status_changed: true
version: "#{build}" cache: - node_modules init: - git config --global core.autocrlf input skip_tags: true clone_depth: 5 build: off install: - npm install test_script: - npm run test-ci-build notifications: - provider: Slack incoming_webhook: https://hooks.slack.com/services/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 - provider: Email to: - [email protected] on_build_status_changed: true
Use default 4.x for now.
Use default 4.x for now.
YAML
mpl-2.0
forthright/vile
e32c572a24f3df9537e2e33c878a4eeffd297d74
appveyor.yml
appveyor.yml
# Atom-AppVeyor-CI-Template # version format version: "{build}" # Operating system (build VM template) os: Windows Server 2012 R2 init: - cmd: rd /s /q %CHOCOLATEYINSTALL% - ps: iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')) # scripts that run after cloning repository install: - cinst atom - cd %APPVEYOR_BUILD_FOLDER% - "%LOCALAPPDATA%/atom/bin/apm install" # to run your custom scripts instead of automatic MSBuild build_script: - cd %APPVEYOR_BUILD_FOLDER% - "%LOCALAPPDATA%/atom/bin/apm test" # to disable automatic tests test: off # to disable deployment deploy: off
# Atom-AppVeyor-CI-Template # version format version: "{build}" # Operating system (build VM template) os: Windows Server 2012 R2 init: - cmd: rd /s /q %CHOCOLATEYINSTALL% - ps: iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1')) # scripts that run after cloning repository install: - cinst atom - cd %APPVEYOR_BUILD_FOLDER% - "%LOCALAPPDATA%/atom/bin/apm install" # to run your custom scripts instead of automatic MSBuild build_script: - cd %APPVEYOR_BUILD_FOLDER% - "%LOCALAPPDATA%/atom/bin/apm test --path %LOCALAPPDATA%/atom/bin/atom" # to disable automatic tests test: off # to disable deployment deploy: off
Add path to test command
Add path to test command
YAML
mit
atom/wrap-guide
0ecd3cb06cdbb3866979eea48e5eec11192208cd
appveyor.yml
appveyor.yml
# http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf input # Test against these versions of Node.js. environment: matrix: - nodejs_version: "2" # Install scripts. (runs after repo cloning) install: # Get the Node version with matching major & minor numbers - ps: Install-Product node $env:nodejs_version # Log HTTP requests. - npm config set loglevel http # Typical npm stuff. - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - npm test # Don't actually build. build: off # Finish immediately if one of the jobs fails. matrix: fast_finish: true # Set up cache, clear it on package.json changes. cache: # npm cache. - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # Local npm packages. - node_modules -> package.json # Set build version format here instead of in the admin panel. version: "{build}"
# http://www.appveyor.com/docs/appveyor-yml clone_depth: 10 # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf input # Test against these versions of Node.js. environment: matrix: - nodejs_version: "3" # Install scripts. (runs after repo cloning) install: # Get the Node version with matching major & minor numbers - ps: Install-Product node $env:nodejs_version # Log HTTP requests. - npm config set loglevel http # Typical npm stuff. - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - npm test # Don't actually build. build: off # Finish immediately if one of the jobs fails. matrix: fast_finish: true # Set up cache, clear it on package.json changes. cache: # npm cache. - C:\Users\appveyor\AppData\Roaming\npm-cache -> package.json # Local npm packages. - node_modules -> package.json # Set build version format here instead of in the admin panel. version: "{build}"
Update io.js from 2 to 3
AppVeyor: Update io.js from 2 to 3
YAML
mit
mzgol/grunt-check-dependencies,mgol/grunt-check-dependencies
17d3e73c96da641e7de07f38713dd45bc88c8077
appveyor.yml
appveyor.yml
image: Visual Studio 2017 install: - choco install gitversion.portable -pre -y before_build: - ps: | dotnet restore quince.sln gitversion /l console /output buildserver /updateassemblyinfo configuration: Release build: project: quince.sln verbosity: minimal test_script: - ps: | cd NetworkedPlanet.Quince.Tests dotnet test --filter "Category!=GitWrapper"
image: Visual Studio 2017 install: - choco install gitversion.portable -pre -y before_build: - ps: | dotnet restore quince.sln gitversion /l console /output buildserver /updateassemblyinfo configuration: Release build: project: quince.sln verbosity: minimal test_script: - ps: | cd NetworkedPlanet.Quince.Tests dotnet test --filter "Category!=GitWrapper"
Fix for whitespace issue in YAML
Fix for whitespace issue in YAML
YAML
mit
NetworkedPlanet/quince
5c829e9b7fbeaaeb31b060dbbcbf11795e38c2e0
appveyor.yml
appveyor.yml
version: 3.1.{build} skip_tags: true image: Visual Studio 2017 Preview configuration: Release dotnet_csproj: patch: true file: '**\*.csproj' version: '{version}' package_version: '{version}' before_build: - ps: >- dotnet restore Push-Location "src/Noobot.Console/Configuration/" copy "config.default.json" "config.json" Pop-Location build: publish_nuget: true include_nuget_references: true verbosity: minimal before_package: - cmd: dotnet publish ".\src\Noobot.Console\Noobot.Console.csproj" -c "Release" -r "win-x64" -f "netcoreapp2.0" after_build: - ps: >- $buildPath = Resolve-Path ".\bin\Release\*\win-x64\publish" Write-Host "Zipping $buildPath" 7z a noobot.zip "$buildPath\*" test: off artifacts: - path: noobot.zip deploy: - provider: GitHub auth_token: secure: 8t4+xbVlkXA/FY3516ThrMibGxfCT7ZcSwyZw7KNwUlCH08KMPtznY2QphEn1n/z artifact: noobot.zip,/.*\.nupkg/ draft: true on: branch: master
version: 3.1.{build} skip_tags: true image: Visual Studio 2017 Preview configuration: Release dotnet_csproj: patch: true file: '**\*.csproj' version: '{version}' package_version: '{version}' before_build: - ps: >- dotnet restore Push-Location "src/Noobot.Console/Configuration/" copy "config.default.json" "config.json" Pop-Location build: publish_nuget: true include_nuget_references: true verbosity: minimal before_package: - cmd: dotnet publish ".\src\Noobot.Console\Noobot.Console.csproj" -c "Release" -r "win-x64" -f "netcoreapp2.0" after_build: - ps: >- $buildPath = Resolve-Path ".\src\Noobot.Console\bin\Release\*\*\publish" Write-Host "Zipping $buildPath" 7z a noobot.zip "$buildPath\*" test: off artifacts: - path: noobot.zip deploy: - provider: GitHub auth_token: secure: 8t4+xbVlkXA/FY3516ThrMibGxfCT7ZcSwyZw7KNwUlCH08KMPtznY2QphEn1n/z artifact: noobot.zip,/.*\.nupkg/ draft: true on: branch: master
Fix path reference for build
Fix path reference for build
YAML
mit
Workshop2/noobot,noobot/noobot
b2aa0d3813b3ece36fb814a11977ce7c80c9ed9f
appveyor.yml
appveyor.yml
version: '{build}' environment: matrix: - JAVA_HOME: C:\Program Files\Java\jdk9 branches: except: - gh-pages install: - cmd: SET PATH=%JAVA_HOME%\bin;%PATH% - cmd: SET MAVEN_OPTS=-Xmx4g - cmd: SET JAVA_OPTS=-Xmx4g - cmd: mvn --version - cmd: java -version build_script: - mvn --batch-mode post-integration-test -DskipTests test_script: - mvn --batch-mode post-integration-test cache: - C:\Users\appveyor\.m2
version: '{build}' environment: matrix: - JAVA_HOME: C:\Program Files\Java\jdk1.8.0 branches: except: - gh-pages os: Windows Server 2012 install: - cmd: SET PATH=%JAVA_HOME%\bin;%PATH% - cmd: SET MAVEN_OPTS=-Xmx4g - cmd: SET JAVA_OPTS=-Xmx4g - cmd: mvn --version - cmd: java -version build_script: - mvn --batch-mode post-integration-test -DskipTests test_script: - mvn --batch-mode post-integration-test cache: - C:\Users\appveyor\.m2
Revert "Run Travis CI on Java 9"
Revert "Run Travis CI on Java 9" This reverts commit 46a8a3d as it doesn't yet seem to work on Travis, even though https://github.com/appveyor/ci/issues/1186 suggests it.
YAML
apache-2.0
triceo/zonkybot,triceo/robozonky,RoboZonky/robozonky,triceo/zonkybot,RoboZonky/robozonky,triceo/robozonky
b0435420073fd8c8b2fddd7c1fb72df62c6bfc98
appveyor.yml
appveyor.yml
environment: matrix: - JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe" branches: only: - master - /release-.*/ notifications: - provider: Email on_build_success: false on_build_failure: false on_build_status_changed: false install: # Download most recent Julia Windows binary - ps: (new-object net.webclient).DownloadFile( $("http://s3.amazonaws.com/"+$env:JULIAVERSION), "C:\projects\julia-binary.exe") # Run installer silently, output to C:\projects\julia - C:\projects\julia-binary.exe /S /D=C:\projects\julia build_script: # Need to convert from shallow to complete for Pkg.clone to work - IF EXIST .git\shallow (git fetch --unshallow) - C:\projects\julia\bin\julia -e "ENV[\"PYTHON\"]=\"\"; Pkg.add(\"PyPlot\")" - C:\projects\julia\bin\julia -e "Pkg.clone(pwd(), \"Weave\"); versioninfo(); Pkg.build(\"Weave\")" test_script: - C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"Weave\")"
environment: matrix: - JULIA_URL: "https://julialang-s3.julialang.org/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe" branches: only: - master - /release-.*/ notifications: - provider: Email on_build_success: false on_build_failure: false on_build_status_changed: false install: - ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12" # Download most recent Julia Windows binary - ps: (new-object net.webclient).DownloadFile( $env:JULIA_URL, "C:\projects\julia-binary.exe") # Run installer silently, output to C:\projects\julia - C:\projects\julia-binary.exe /S /D=C:\projects\julia build_script: # Need to convert from shallow to complete for Pkg.clone to work - IF EXIST .git\shallow (git fetch --unshallow) - C:\projects\julia\bin\julia -e "ENV[\"PYTHON\"]=\"\"; Pkg.add(\"PyPlot\")" - C:\projects\julia\bin\julia -e "Pkg.clone(pwd(), \"Weave\"); versioninfo(); Pkg.build(\"Weave\")" test_script: - C:\projects\julia\bin\julia --check-bounds=yes -e "Pkg.test(\"Weave\")"
Update CI URLs to point to new caching infrastructure
Update CI URLs to point to new caching infrastructure
YAML
mit
mpastell/Weave.jl
17c65a778640cad491b382f58064242c0637dcd0
appveyor.yml
appveyor.yml
# https://ci.appveyor.com/project/lektor/lektor environment: global: # Test against the latest version of this Node.js version NODE_JS_VERSION: "6" matrix: - PYTHON: "C:\\Python27" - PYTHON: "C:\\Python35" - PYTHON: "C:\\Python36" install: # Install python dependencies and package - "%PYTHON%\\python.exe -m pip install -r requirements.txt" - "%PYTHON%\\python.exe setup.py develop" # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:NODE_JS_VERSION # Install node modules - cd lektor\admin - npm install . - npm run webpack - cd .. - cd .. # Not a .NET project build: false test_script: # Run Python tests - "%PYTHON%\\python.exe --version" - "%PYTHON%\\Scripts\\pytest.exe . --tb=short -v --cov=lektor" # Run JS tests - node --version - npm --version - npm run lint - npm test
# https://ci.appveyor.com/project/lektor/lektor environment: matrix: # Node 6 - PYTHON: "C:\\Python27" NODE_JS_VERSION: "6" - PYTHON: "C:\\Python35" NODE_JS_VERSION: "6" - PYTHON: "C:\\Python36" NODE_JS_VERSION: "6" # Node 7 - PYTHON: "C:\\Python27" NODE_JS_VERSION: "7" - PYTHON: "C:\\Python35" NODE_JS_VERSION: "7" - PYTHON: "C:\\Python36" NODE_JS_VERSION: "7" # Node 8 - PYTHON: "C:\\Python27" NODE_JS_VERSION: "8" - PYTHON: "C:\\Python35" NODE_JS_VERSION: "8" - PYTHON: "C:\\Python36" NODE_JS_VERSION: "8" install: # Install python dependencies and package - "%PYTHON%\\python.exe -m pip install -r requirements.txt" - "%PYTHON%\\python.exe setup.py develop" # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:NODE_JS_VERSION # Install node modules - cd lektor\admin - npm install . - npm run webpack - cd .. - cd .. # Not a .NET project build: false test_script: # Run Python tests - "%PYTHON%\\python.exe --version" - "%PYTHON%\\Scripts\\pytest.exe . --tb=short -v --cov=lektor" # Run JS tests - node --version - npm --version - npm run lint - npm test
Add node 7 and 8 testing
Add node 7 and 8 testing
YAML
bsd-3-clause
lektor/lektor,lektor/lektor,lektor/lektor,lektor/lektor
c3a3ea951aa16bda1d94c72580fa23094d27aa7d
appveyor.yml
appveyor.yml
version: 0.2.{build} pull_requests: do_not_increment_build_number: true assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}' before_build: - nuget restore platform: - Any CPU configuration: - Release build: project: ReportUnit.sln parallel: true verbosity: quiet after_build: - nunit3-console .\ReportUnitTest\bin\Release\ReportUnitTest.dll --result=ReportUnitTestResults.xml;format=AppVeyor deploy: - provider: GitHub tag: v$(appveyor_build_version) release: reportunit-latest-build auth_token: secure: aF0fLLmz97WNRikUBXRnLxJVJIn7sb7+h0uUH21d4S6zdAB0lfv3JGE5xPbcmUl6 artifact: ReportUnit\bin\Release\* draft: false prerelease: false force_update: true
version: 0.2.{build} pull_requests: do_not_increment_build_number: true assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}' before_build: - nuget restore platform: - Any CPU configuration: - Release build: project: ReportUnit.sln parallel: true verbosity: quiet after_build: - nunit3-console .\ReportUnitTest\bin\Release\ReportUnitTest.dll --result=ReportUnitTestResults.xml;format=AppVeyor artifacts: - path: ReportUnit\bin\Release name: ReportUnit type: zip deploy: - provider: GitHub tag: v$(appveyor_build_version) release: reportunit-latest-build auth_token: secure: aF0fLLmz97WNRikUBXRnLxJVJIn7sb7+h0uUH21d4S6zdAB0lfv3JGE5xPbcmUl6 artifact: ReportUnit draft: false prerelease: false force_update: true
Define artifact and call it in deploy by name
Define artifact and call it in deploy by name
YAML
mit
ekirmayer/reportunit,ekirmayer/reportunit,reportunit/reportunit,ekirmayer/reportunit,reportunit/reportunit,reportunit/reportunit
ca2b9632924d62c7357d0c5a7f9e8bf43832724f
appveyor.yml
appveyor.yml
version: '0.3.0' assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}-rc1' before_build: - nuget restore
version: '0.3.0.{build}' assembly_info: patch: true file: '**\AssemblyInfo.*' assembly_version: '{version}' assembly_file_version: '{version}' assembly_informational_version: '{version}-rc1' before_build: - nuget restore
Add build value into version
Add build value into version
YAML
mit
rollbar/Rollbar.NET
27533efdfa36568ce42d34d1b4a8a4fba260046a
example/example-etcd-cluster-with-backup.yaml
example/example-etcd-cluster-with-backup.yaml
apiVersion: "coreos.com/v1" kind: "EtcdCluster" metadata: name: "etcd-cluster-with-backup" spec: size: 3 version: "v3.1.0-alpha.1" backup: # short snapshot interval for testing, do not use this in production! snapshotIntervalInSecond: 30 maxBackups: 5 volumeSizeInMB: 512 storageType: "PersistentVolume"
apiVersion: "coreos.com/v1" kind: "EtcdCluster" metadata: name: "etcd-cluster-with-backup" spec: size: 3 version: "v3.1.0-alpha.1" backup: # short snapshot interval for testing, do not use this in production! backupIntervalInSecond: 30 maxBackups: 5 volumeSizeInMB: 512 storageType: "PersistentVolume"
Update backup interval name in example
Update backup interval name in example
YAML
apache-2.0
icyxieex/operator,coreos/etcd-operator,fatduo/etcd-operator,hongchaodeng/etcd-operator,fatduo/etcd-operator,coreos/etcd-operator,hongchaodeng/etcd-operator,icyxieex/operator
8fed85967a309fbeee09fe0ae1914cc416f955cc
packages/ha/haskell-compression.yaml
packages/ha/haskell-compression.yaml
homepage: http://xy30.com changelog-type: '' hash: be6c33d04b30134d4e1e77459ac61607d00ccf4d69013f885b649bb6e27ce9c4 test-bench-deps: {} maintainer: [email protected] synopsis: compress files changelog: '' basic-deps: bimap: <10000 bytestring: <10000 base: <10000 booleanlist: <10000 containers: <10000 all-versions: - '0.1' - '0.1.1' - '0.2' author: Alan Hawkins latest: '0.2' description-type: haddock description: A program to compress a file license-name: GPL-3
homepage: http://xy30.com changelog-type: '' hash: a04fe486edccf020ab715a3952b80f3b6fdefdabb7c37adbf8ca7b9732e05ab0 test-bench-deps: {} maintainer: [email protected] synopsis: compress files changelog: '' basic-deps: bimap: <10000 bytestring: <10000 base: <10000 containers: <10000 boolean-list: <10000 all-versions: - '0.1' - '0.1.1' - '0.2' - '0.3' author: Alan Hawkins latest: '0.3' description-type: haddock description: A program to compress a file license-name: GPL-3
Update from Hackage at 2017-10-26T06:59:47Z
Update from Hackage at 2017-10-26T06:59:47Z
YAML
mit
commercialhaskell/all-cabal-metadata
9c44d119c4663d12c2ca88f9ff5499be74d0550e
packages/et/eternity-timestamped.yaml
packages/et/eternity-timestamped.yaml
homepage: https://github.com/metrix-ai/eternity-timestamped changelog-type: '' hash: eb044382a6ae36d11aeb50966d97c1d7d96ccf943244bb946e430398182295bf test-bench-deps: {} maintainer: Metrix.AI Ninjas <[email protected]> synopsis: Automatic timestamping for Eternity changelog: '' basic-deps: eternity: ! '>=0.1 && <0.2' cereal: ! '>=0.5.4 && <0.6' base: ! '>=4.8 && <5' time: ! '>=1.8 && <2' text: ! '>=1 && <2' potoki: ! '>=0.9 && <0.10' generic-random: ! '>=1 && <1.1' foldl: ! '>=1.3.5 && <2' hashable: ! '>=1.2 && <2' attoparsec: ! '>=0.13 && <0.14' QuickCheck: ! '>=2.8.1 && <3' directory: ! '>=1.3 && <2' all-versions: - '0.1' author: Nikita Volkov <[email protected]> latest: '0.1' description-type: haddock description: '' license-name: MIT
homepage: https://github.com/metrix-ai/eternity-timestamped changelog-type: '' hash: 5d0555b2f3ff22431869c75be03646f74145a0baf3157189fd32bbdee6b6d845 test-bench-deps: {} maintainer: Metrix.AI Ninjas <[email protected]> synopsis: Automatic timestamping for Eternity changelog: '' basic-deps: eternity: ! '>=0.1 && <0.2' cereal: ! '>=0.5.4 && <0.6' base: ! '>=4.8 && <5' time: ! '>=1.8 && <2' text: ! '>=1 && <2' potoki: ! '>=0.9 && <0.10' generic-random: ! '>=1 && <1.1' foldl: ! '>=1.3.5 && <2' hashable: ! '>=1.2 && <2' attoparsec: ! '>=0.13 && <0.14' QuickCheck: ! '>=2.8.1 && <3' directory: ! '>=1.3 && <2' all-versions: - '0.1' - '0.2' author: Nikita Volkov <[email protected]> latest: '0.2' description-type: haddock description: '' license-name: MIT
Update from Hackage at 2018-02-28T07:21:02Z
Update from Hackage at 2018-02-28T07:21:02Z
YAML
mit
commercialhaskell/all-cabal-metadata
fb57860e938b18fd77bfa4ac1da36fedccfbcd0b
db/seeds/prisons/CKI-cookham-wood.yml
db/seeds/prisons/CKI-cookham-wood.yml
--- name: Cookham Wood nomis_id: CKI address: |- Sir Evelyn Road postcode: ME1 3LU email_address: [email protected] phone_no: 01634 202557 enabled: true recurring: wed: - 1345-1615 sat: - 0930-1130 - 1430-1630 sun: - 0930-1130 - 1430-1630
--- name: Cookham Wood nomis_id: CKI address: |- Sir Evelyn Road postcode: ME1 3LU email_address: [email protected] phone_no: 01634 202557 enabled: true recurring: wed: - 1415-1615 sat: - 0930-1130 - 1430-1630 sun: - 0930-1130 - 1430-1630
Update Cookham Wood Wednesday visit slots
Update Cookham Wood Wednesday visit slots
YAML
mit
ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-public,ministryofjustice/prison-visits-public,ministryofjustice/prison-visits-public,ministryofjustice/prison-visits-2,ministryofjustice/prison-visits-public
1f62dc26b1f451366336027e8e1a18d9a2a6135d
.forestry/settings.yml
.forestry/settings.yml
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: img public_path: "/img" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" build: preview_command: jekyll build --drafts --unpublished --future publish_command: bundle exec jekyll build -d _site preview_env: - JEKYLL_ENV=staging publish_env: - JEKYLL_ENV=production preview_output_directory: _site output_directory: _site instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site
--- new_page_extension: md auto_deploy: false admin_path: '' webhook_url: sections: - type: jekyll-pages label: Pages create: all - type: jekyll-posts label: Posts create: all upload_dir: img public_path: "/img" front_matter_path: '' use_front_matter_path: false file_template: ":filename:" instant_preview: true build: preview_command: jekyll build --drafts --unpublished --future publish_command: bundle exec jekyll build -d _site preview_env: - JEKYLL_ENV=staging publish_env: - JEKYLL_ENV=production preview_output_directory: _site output_directory: _site instant_preview_command: bundle exec jekyll serve --drafts --unpublished --future --port 8080 --host 0.0.0.0 -d _site
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
apache-2.0
gerbenjacobs/gerbenjacobs.github.io,gerbenjacobs/gerbenjacobs.github.io,gerbenjacobs/gerbenjacobs.github.io,gerbenjacobs/gerbenjacobs.github.io
c3badd2412285416db42660eb1382aef4910f49e
metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml
metadata/com.github.ashutoshgngwr.tenbitclockwidget.yml
Categories: - Time - Theming License: GPL-3.0-only WebSite: https://ashutoshgngwr.github.io/10-bitClockWidget SourceCode: https://github.com/ashutoshgngwr/10-bitClockWidget IssueTracker: https://github.com/ashutoshgngwr/10-bitClockWidget/issues AutoName: 10-bit Clock Widget Description: 10-bit Clock Widget uses 10 binary dots and their color to represent current time in 12-hour format. RepoType: git Repo: https://github.com/ashutoshgngwr/10-bitClockWidget.git Builds: - versionName: 1.6-1 versionCode: 161 commit: v1.6-1 subdir: 10-bitClockWidget/app gradle: - yes - versionName: 1.6-2 versionCode: 162 commit: v1.6-2 subdir: 10-bitClockWidget/app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.6-2 CurrentVersionCode: 162
Categories: - Time - Theming License: GPL-3.0-only WebSite: https://ashutoshgngwr.github.io/10-bitClockWidget SourceCode: https://github.com/ashutoshgngwr/10-bitClockWidget IssueTracker: https://github.com/ashutoshgngwr/10-bitClockWidget/issues AutoName: 10-bit Clock Widget Description: 10-bit Clock Widget uses 10 binary dots and their color to represent current time in 12-hour format. RepoType: git Repo: https://github.com/ashutoshgngwr/10-bitClockWidget.git Builds: - versionName: 1.6-1 versionCode: 161 commit: v1.6-1 subdir: 10-bitClockWidget/app gradle: - yes - versionName: 1.6-2 versionCode: 162 commit: v1.6-2 subdir: 10-bitClockWidget/app gradle: - yes - versionName: 1.6-3 versionCode: 163 commit: v1.6-3 subdir: 10-bitClockWidget/app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.6-3 CurrentVersionCode: 163
Update 10-bit Clock Widget to 1.6-3 (163)
Update 10-bit Clock Widget to 1.6-3 (163)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
b803098eb40f65fe37578324e1dacd84a7c199d1
.github/dependabot.yml
.github/dependabot.yml
version: 2 updates: - package-ecosystem: bundler directory: / schedule: interval: daily allow: # Security updates - dependency-name: brakeman dependency-type: direct # Internal gems - dependency-name: "govuk*" dependency-type: direct - dependency-name: gds-api-adapters dependency-type: direct - dependency-name: govspeak dependency-type: direct - dependency-name: plek dependency-type: direct - dependency-name: rubocop-govuk dependency-type: direct # Framework gems - dependency-name: jasmine-rails dependency-type: direct - dependency-name: minitest-spec-rails dependency-type: direct - dependency-name: rails dependency-type: direct # Ruby needs to be upgraded manually in multiple places, so cannot # be upgraded by Dependabot. That effectively makes the below # config redundant, as ruby is the only updatable thing in the # Dockerfile, although this may change in the future. We hope this # config will save a dev from trying to upgrade ruby via Dependabot. - package-ecosystem: docker ignore: - dependency-name: ruby directory: / schedule: interval: weekly
version: 2 updates: - package-ecosystem: bundler directory: / schedule: interval: daily allow: # Security updates - dependency-name: brakeman dependency-type: direct # Internal gems - dependency-name: "govuk*" dependency-type: direct - dependency-name: gds-api-adapters dependency-type: direct - dependency-name: govspeak dependency-type: direct - dependency-name: plek dependency-type: direct - dependency-name: rubocop-govuk dependency-type: direct - dependency-name: slimmer dependency-type: direct # Framework gems - dependency-name: jasmine-rails dependency-type: direct - dependency-name: minitest-spec-rails dependency-type: direct - dependency-name: rails dependency-type: direct # Ruby needs to be upgraded manually in multiple places, so cannot # be upgraded by Dependabot. That effectively makes the below # config redundant, as ruby is the only updatable thing in the # Dockerfile, although this may change in the future. We hope this # config will save a dev from trying to upgrade ruby via Dependabot. - package-ecosystem: docker ignore: - dependency-name: ruby directory: / schedule: interval: weekly
Add slimmer to Dependabot config
Add slimmer to Dependabot config This got missed in the initial config creation. As Slimmer is an internal gem, it should be added to the config. https://trello.com/c/uPoriyfJ/2049-add-dependabot-configuration-to-each-repo-blitz-pair
YAML
mit
alphagov/collections,alphagov/collections,alphagov/collections,alphagov/collections
6d3d443d30b2de94613cf1a86cac456d2f69e192
helm_deploy/cla-public/values-production.yaml
helm_deploy/cla-public/values-production.yaml
# Default values for cla-public in a production environment. # This is a YAML-formatted file. # Declare variables to be passed into your templates. image: pullPolicy: IfNotPresent environment: production backend_base_uri: https://fox.civillegaladvice.service.gov.uk laalaa_api_host: https://laa-legal-adviser-api-production.cloud-platform.service.justice.gov.uk google_maps_api_key: AIzaSyB_75-8mb5ZGgBh95USV07dupsoB8dxcDY replicaCount: 2 ingress: enabled: true secretName: tls-certificate # Lists don't deep merge, so this list of envVars overrides anything defined in an earlier values file envVars: - name: DEBUG value: "False" - name: MOJ_GA_ID value: UA-37377084-21 - name: GDS_GA_ID value: UA-145652997-1 - name: MOJ_GA_ID value: GTM-MWL77F6
# Default values for cla-public in a production environment. # This is a YAML-formatted file. # Declare variables to be passed into your templates. image: pullPolicy: IfNotPresent environment: production backend_base_uri: https://fox.civillegaladvice.service.gov.uk laalaa_api_host: https://laa-legal-adviser-api-production.cloud-platform.service.justice.gov.uk google_maps_api_key: AIzaSyB_75-8mb5ZGgBh95USV07dupsoB8dxcDY replicaCount: 2 ingress: enabled: true secretName: tls-certificate # Lists don't deep merge, so this list of envVars overrides anything defined in an earlier values file envVars: - name: DEBUG value: "False" - name: MOJ_GA_ID value: UA-37377084-21 - name: GDS_GA_ID value: UA-145652997-1 - name: MOJ_GTM_ID value: GTM-MWL77F6
Fix GTM/GA env var on production
Fix GTM/GA env var on production The new env var was intended to switch on Google Tag Manager but there was a typo so it actually overrode (and therefore broke) the GA implementation
YAML
mit
ministryofjustice/cla_public,ministryofjustice/cla_public,ministryofjustice/cla_public,ministryofjustice/cla_public
40eacec63e9d9c143b0d064dddf4f1f05f2339e0
ansible/roles/kibana/tasks/main.yml
ansible/roles/kibana/tasks/main.yml
--- # tasks file for kibana # include the distro-specific stuff - include: debian.yml when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu' - include: rhel.yml when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux' - name: Copy the Kibana config template: src: kibana.yml dest: /etc/kibana/kibana.yml owner: root group: root mode: 0644 notify: restart kibana - name: Register the consul service consul: service_name: kibana service_port: 5601 when: consul_enabled == True - name: Install and enable the kibana plugins command: "./bin/kibana-plugin install {{ item }}" args: chdir: /usr/share/kibana ignore_errors: true with_items: - xpack notify: restart kibana - name: Destroy and rebuild the caches file: name: "/usr/share/kibana/optimize/{{ item }}" state: absent with_items: - bundles - .babelcache.json notify: restart kibana - name: Open the firewall for Kibana firewalld: port: 5601/tcp immediate: true permanent: true state: enabled - name: Start the kibana service service: name=kibana state=started
--- # tasks file for kibana # include the distro-specific stuff - include: debian.yml when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu' - include: rhel.yml when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux' - name: Copy the Kibana config template: src: kibana.yml dest: /etc/kibana/kibana.yml owner: root group: root mode: 0644 notify: restart kibana - name: Register the consul service consul: service_name: kibana service_port: 5601 when: consul_enabled == True - name: Install and enable the kibana plugins become: true become_user: kibana command: "./bin/kibana-plugin install {{ item }}" args: chdir: /usr/share/kibana ignore_errors: true with_items: - xpack notify: restart kibana - name: Destroy and rebuild the caches file: name: "/usr/share/kibana/optimize/{{ item }}" state: absent with_items: - bundles - .babelcache.json notify: restart kibana - name: Open the firewall for Kibana firewalld: port: 5601/tcp immediate: true permanent: true state: enabled - name: Start the kibana service service: name=kibana state=started
Install x-pack as the kibana user
Install x-pack as the kibana user
YAML
mit
proffalken/aws-blog-framework,proffalken/aws-blog-framework,proffalken/aws-blog-framework
ab00ad86c8d71ffac771c0a9c51cfaefba2de01a
app/config/routing.yml
app/config/routing.yml
app: resource: "@AppBundle/Controller/" type: annotation admin_area: resource: "@SonataAdminBundle/Resources/config/routing/sonata_admin.xml" prefix: /admin _sonata_admin: resource: . type: sonata_admin prefix: /admin sonata_user_security: resource: "@SonataUserBundle/Resources/config/routing/sonata_security_1.xml" sonata_user_profile: resource: "@SonataUserBundle/Resources/config/routing/sonata_profile_1.xml" prefix: /profile sonata_user_change_password: resource: "@SonataUserBundle/Resources/config/routing/sonata_change_password_1.xml" prefix: /profile sonata_user_admin_security: resource: '@SonataUserBundle/Resources/config/routing/admin_security.xml' prefix: /admin api_login_check: path: /api/login_check
app: resource: "@AppBundle/Controller/" type: annotation admin_area: resource: "@SonataAdminBundle/Resources/config/routing/sonata_admin.xml" prefix: /admin _sonata_admin: resource: . type: sonata_admin prefix: /admin sonata_user_security: resource: "@SonataUserBundle/Resources/config/routing/sonata_security_1.xml" sonata_user_profile: resource: "@SonataUserBundle/Resources/config/routing/sonata_profile_1.xml" prefix: /profile sonata_user_change_password: resource: "@SonataUserBundle/Resources/config/routing/sonata_change_password_1.xml" prefix: /profile sonata_user_admin_security: resource: '@SonataUserBundle/Resources/config/routing/admin_security.xml' prefix: /admin sonata_user_admin_resetting: resource: '@SonataUserBundle/Resources/config/routing/admin_resetting.xml' prefix: /admin/resetting api_login_check: path: /api/login_check
Add Sonata's `/admin/resetting` route (errors otherwise)
Add Sonata's `/admin/resetting` route (errors otherwise)
YAML
mit
Sheffugees/asylumjourney,Sheffugees/asylumjourney
4879cbf2948844d1f0f48a42f7b5a56a73b6ff3f
.commitlintrc.yml
.commitlintrc.yml
--- extends: - '@commitlint/config-conventional' rules: subject-case: [2, 'always', 'sentence-case'] type-enum: - 2 - always - - feat - fix - improvement - docs - test - chore - refactor - style - perf - ci - revert scope-empty: [1, 'never'] scope-enum: - 1 - 'always' - - core - utilities - settings - typesetter - frames - shaper - classes - measurements - inputs - backends - pdf - images - cli - fonts - debug - languages - build - tooling - packages - package-manager - travis - azure - manual - examples - installation - readme help: | **Possible types**: `feat`: Adds a new feature. `fix`: Solves a bug. `docs`: Adds or alters documentation. `test`: Adds or modifies tests. `chore`: Change build process, tooling or dependencies. `refactor`: Rewrites code without feature, performance or bug changes. `style`: Improves formatting, white-space. `perf`: Improves performance. `ci`: Changes to our CI configuration files and scripts (example scopes: travis, azure) `revert`: Changes that reverting other changes
--- extends: - '@commitlint/config-conventional' rules: subject-case: [2, 'always', 'sentence-case'] type-enum: - 2 - always - - feat - fix - improvement - docs - test - chore - refactor - style - perf - ci - revert scope-empty: [1, 'never'] scope-enum: - 1 - 'always' - - core - utilities - settings - typesetter - frames - shaper - classes - measurements - inputs - backends - pdf - images - cli - fonts - debug - languages - build - tooling - packages - package-manager - travis - azure - github - manual - examples - installation - readme help: | **Possible types**: `feat`: Adds a new feature. `fix`: Solves a bug. `docs`: Adds or alters documentation. `test`: Adds or modifies tests. `chore`: Change build process, tooling or dependencies. `refactor`: Rewrites code without feature, performance or bug changes. `style`: Improves formatting, white-space. `perf`: Improves performance. `ci`: Changes to our CI configuration files and scripts (example scopes: travis, azure) `revert`: Changes that reverting other changes
Add github as allowable module name in commit messages
chore(tooling): Add github as allowable module name in commit messages
YAML
mit
alerque/sile,alerque/sile,alerque/sile,alerque/sile
71e4206708be2fda6808d2529e8e599e50fd4726
.readthedocs.yaml
.readthedocs.yaml
# .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required version: 2 # Set the version of Python and other tools you might need build: os: ubuntu-20.04 tools: python: "3.7" # You can also specify other tool versions: # nodejs: "16" # rust: "1.55" # golang: "1.17" # Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/conf.py # If using Sphinx, optionally build your docs in additional formats such as PDF # formats: # - pdf # Optionally declare the Python requirements required to build your docs python: install: - requirements: docs/requirements.txt
# .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details # Required version: 2 # Set the version of Python and other tools you might need build: os: ubuntu-20.04 tools: python: "3.7" # You can also specify other tool versions: # nodejs: "16" # rust: "1.55" # golang: "1.17" # Build documentation in the docs/ directory with Sphinx sphinx: configuration: docs/conf.py fail_on_warning: true # If using Sphinx, optionally build your docs in additional formats such as PDF # formats: # - pdf # Optionally declare the Python requirements required to build your docs python: install: - requirements: docs/requirements.txt
Break the docs on warning (maybe)
Break the docs on warning (maybe)
YAML
mit
CiwPython/Ciw
0b898bcdf0e759a9f6bb2c4341e15aa8bff6fc52
.github/workflows/build-ci.yml
.github/workflows/build-ci.yml
name: build-ci on: [push] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: bahmutov/[email protected] with: useRollingCache: true - uses: browser-actions/setup-chrome@latest - run: chrome --version - run: lerna run min - run: lerna run test-cov - name: Publish to coveralls.io uses: coverallsapp/[email protected] with: github-token: ${{ github.token }} path-to-lcov: ./packages/diffhtml/coverage/lcov.info base-path: ./packages/diffhtml
name: build-ci on: push: pull_request: jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: bahmutov/[email protected] with: useRollingCache: true - uses: browser-actions/setup-chrome@latest - run: chrome --version - run: lerna run min - run: lerna run test-cov - name: Publish to coveralls.io uses: coverallsapp/[email protected] with: github-token: ${{ github.token }} path-to-lcov: ./packages/diffhtml/coverage/lcov.info base-path: ./packages/diffhtml
Change actions hook to be push/pull_request
Change actions hook to be push/pull_request
YAML
mit
tbranyen/diffhtml,tbranyen/diffhtml,tbranyen/diffhtml,tbranyen/diffhtml
81ba9185544563d72febae66de7a718eb48320f3
.github/workflows/coverity.yml
.github/workflows/coverity.yml
name: Coverity on: push: branches: [main] jobs: coverity: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: vapier/coverity-scan-action@v1 with: email: ${{ secrets.COVERITY_SCAN_EMAIL }} token: ${{ secrets.COVERITY_SCAN_TOKEN }}
name: Coverity on: push: branches: [master] jobs: coverity: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: vapier/coverity-scan-action@v1 with: email: ${{ secrets.COVERITY_SCAN_EMAIL }} token: ${{ secrets.COVERITY_SCAN_TOKEN }}
Fix branch name in Coverity workflow.
Fix branch name in Coverity workflow.
YAML
bsd-3-clause
wxsBSD/yara,wxsBSD/yara,VirusTotal/yara,wxsBSD/yara,hillu/yara,hillu/yara,hillu/yara,VirusTotal/yara,wxsBSD/yara,VirusTotal/yara,VirusTotal/yara,hillu/yara,VirusTotal/yara,wxsBSD/yara,hillu/yara
502f4229f08381f82fc1ac1690d39cdc8600c78c
.github/workflows/gh-pages.yml
.github/workflows/gh-pages.yml
name: GitHub Pages on: push: branches: - main # Set a branch to deploy pull_request: jobs: deploy: runs-on: ubuntu-20.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: "0.96.0" extended: true - name: Build run: hugo --minify --gc --cleanDestinationDir - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public
name: GitHub Pages on: push: branches: - main # Set a branch to deploy pull_request: jobs: deploy: runs-on: ubuntu-20.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v2 with: submodules: true # Fetch Hugo themes (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - name: Setup Hugo uses: peaceiris/actions-hugo@v2 with: hugo-version: "0.98.0" extended: true - name: Build run: hugo --minify --gc --cleanDestinationDir - name: Deploy uses: peaceiris/actions-gh-pages@v3 if: ${{ github.ref == 'refs/heads/main' }} with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public
Update Hugo version to 0.98.0
Update Hugo version to 0.98.0
YAML
mit
wldomiciano/wldomiciano.github.io,wldomiciano/wldomiciano.github.io,wldomiciano/wldomiciano.github.io
b47a8106c06c7e074561e9e535508b40c4f16f17
.appveyor.yml
.appveyor.yml
build: false shallow_clone: false version: '2.0.0.{build}' platform: 'x64' clone_folder: C:\projects\simplesamlphp environment: matrix: - PHP_VERSION: "7.2" - PHP_VERSION: "7.3" - PHP_VERSION: "7.4" install: - ps: Invoke-WebRequest "https://raw.githubusercontent.com/ChadSikorra/ps-install-php/master/Install-PHP.ps1" -OutFile "Install-PHP.ps1" - ps: .\Install-PHP.ps1 -Version $Env:PHP_VERSION -Highest -Arch x64 -Extensions mbstring,intl,openssl,curl,pdo_mysql,pdo_sqlite - refreshenv - cd C:\projects\simplesamlphp - php -r "readfile('https://getcomposer.org/installer');" | php before_test: - cd C:\projects\simplesamlphp # For 2.0 (or once the externalized modules are no longer included), remove the --ignore-platform-reqs - php composer.phar install --no-interaction --no-progress --optimize-autoloader --prefer-source --no-ansi --ignore-platform-reqs test_script: - cd C:\projects\simplesamlphp - vendor\bin\phpunit.bat
build: false shallow_clone: false version: '2.0.0.{build}' platform: 'x64' clone_folder: C:\projects\simplesamlphp environment: matrix: - PHP_VERSION: "7.4" install: - ps: Invoke-WebRequest "https://raw.githubusercontent.com/ChadSikorra/ps-install-php/master/Install-PHP.ps1" -OutFile "Install-PHP.ps1" - ps: .\Install-PHP.ps1 -Version $Env:PHP_VERSION -Highest -Arch x64 -Extensions mbstring,intl,openssl,curl,pdo_mysql,pdo_sqlite - refreshenv - cd C:\projects\simplesamlphp - php -r "readfile('https://getcomposer.org/installer');" | php before_test: - cd C:\projects\simplesamlphp # For 2.0 (or once the externalized modules are no longer included), remove the --ignore-platform-reqs - php composer.phar install --no-interaction --no-progress --optimize-autoloader --prefer-source --no-ansi --ignore-platform-reqs test_script: - cd C:\projects\simplesamlphp - vendor\bin\phpunit.bat
Remove tests for older PHP-versions
Remove tests for older PHP-versions
YAML
lgpl-2.1
dnmvisser/simplesamlphp,dnmvisser/simplesamlphp,simplesamlphp/simplesamlphp,dnmvisser/simplesamlphp,dnmvisser/simplesamlphp,simplesamlphp/simplesamlphp,simplesamlphp/simplesamlphp,ghalse/simplesamlphp,ghalse/simplesamlphp,ghalse/simplesamlphp,ghalse/simplesamlphp,simplesamlphp/simplesamlphp
2567afb4cea88d9484572de92f8e530912ec1642
.appveyor.yml
.appveyor.yml
build: false platform: x86 clone_folder: c:\projects\cocur\chain cache: - '%LOCALAPPDATA%\Composer\files' install: - ps: Set-Service wuauserv -StartupType Manual - cinst -y php composer - refreshenv - cd c:\tools\php72 - copy php.ini-production php.ini /Y - echo date.timezone="UTC" >> php.ini - echo extension_dir=ext >> php.ini - echo extension=php_openssl.dll >> php.ini - echo extension=php_mbstring.dll >> php.ini - echo extension=php_curl.dll >> php.ini - echo memory_limit=3G >> php.ini - cd %APPVEYOR_BUILD_FOLDER% - composer install --no-interaction --no-progress test_script: - cd %APPVEYOR_BUILD_FOLDER% - php vendor\phpunit\phpunit\phpunit
build: false platform: x86 clone_folder: c:\projects\cocur\chain cache: - '%LOCALAPPDATA%\Composer\files' install: - ps: Set-Service wuauserv -StartupType Manual - cinst -y php composer - refreshenv - cd c:\tools\php73 - copy php.ini-production php.ini /Y - echo date.timezone="UTC" >> php.ini - echo extension_dir=ext >> php.ini - echo extension=php_openssl.dll >> php.ini - echo extension=php_mbstring.dll >> php.ini - echo extension=php_curl.dll >> php.ini - echo memory_limit=3G >> php.ini - cd %APPVEYOR_BUILD_FOLDER% - composer install --no-interaction --no-progress test_script: - cd %APPVEYOR_BUILD_FOLDER% - php vendor\phpunit\phpunit\phpunit
Use PHP 7.3 in AppVeyor builds
Use PHP 7.3 in AppVeyor builds
YAML
mit
cocur/chain
1affc25395278626606be5c46832cb3e92377a54
.appveyor.yml
.appveyor.yml
image: Visual Studio 2019 platform: x64 environment: HOME: "%HOMEDRIVE%%HOMEPATH%" PYTHON: C:\Python38 SCONS_CACHE_ROOT: "%HOME%\\scons_cache" SCONS_CACHE_LIMIT: 1024 matrix: - GD_PLATFORM: windows TOOLS: yes TARGET: release_debug init: - ps: if ($env:APPVEYOR_REPO_BRANCH -ne "master") { $env:APPVEYOR_CACHE_SKIP_SAVE = "true" } cache: - "%SCONS_CACHE_ROOT%" install: - SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - pip install scons==3.1.2 before_build: - echo %GD_PLATFORM% - python --version - scons --version - set "SCONS_CACHE=%SCONS_CACHE_ROOT%\%APPVEYOR_REPO_BRANCH%" build_script: - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% debug_symbols=no verbose=yes progress=no gdnative_wrapper=yes
image: Visual Studio 2019 platform: x64 environment: HOME: "%HOMEDRIVE%%HOMEPATH%" PYTHON: C:\Python38 SCONS_CACHE_ROOT: "%HOME%\\scons_cache" SCONS_CACHE_LIMIT: 1024 matrix: - GD_PLATFORM: windows TOOLS: yes TARGET: release_debug init: - ps: if ($env:APPVEYOR_REPO_BRANCH -ne "3.2") { $env:APPVEYOR_CACHE_SKIP_SAVE = "true" } cache: - "%SCONS_CACHE_ROOT%" install: - SET "PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - pip install scons==3.1.2 before_build: - echo %GD_PLATFORM% - python --version - scons --version - set "SCONS_CACHE=%SCONS_CACHE_ROOT%\%APPVEYOR_REPO_BRANCH%" build_script: - scons platform=%GD_PLATFORM% target=%TARGET% tools=%TOOLS% debug_symbols=no verbose=yes progress=no gdnative_wrapper=yes
Enable Appveyor cache on 3.2 branch.
Enable Appveyor cache on 3.2 branch.
YAML
mit
ex/godot,ex/godot,ex/godot,ex/godot,ex/godot,ex/godot,ex/godot,ex/godot
5cc9491cbf569b75e2553210a9ee1157396c86ae
.appveyor.yml
.appveyor.yml
build: off install: - cinst jdk9 -version 9.0.1.11 -params 'installdir=C:\\jdk9' - SET JAVA_HOME=C:\jdk9 - SET PATH=C:\jdk9\bin;%PATH% test_script: - gradlew --no-daemon -version - gradlew --no-daemon --stacktrace build
build: off install: - cinst jdk9 -version 9.0.4.11 -params 'installdir=C:\\jdk9' - SET JAVA_HOME=C:\jdk9 - SET PATH=C:\jdk9\bin;%PATH% test_script: - gradlew --no-daemon -version - gradlew --no-daemon --stacktrace build
Upgrade Java installation to 9.0.4-11
Upgrade Java installation to 9.0.4-11 http://www.oracle.com/technetwork/java/javase/9-0-4-relnotes-4021191.html https://chocolatey.org/packages/jdk9/
YAML
epl-1.0
junit-team/junit-lambda,sbrannen/junit-lambda
b4941c7ba19038a76d43e5522ec83f7ee07e2df8
packages/fq/fquery.yaml
packages/fq/fquery.yaml
homepage: '' changelog-type: '' hash: 5102465299d2a547ceddb759eb0172acbbc8db1b14453586fa081688183f7519 test-bench-deps: {} maintainer: Sergei Trofimovich <[email protected]> synopsis: Installed package query tool for Gentoo Linux changelog: '' basic-deps: extensible-exceptions: -any unix: -any base: ! '>=2 && <5' process: -any parsec: -any regex-compat: -any hashtables: -any directory: -any all-versions: - '0.2.1' - '0.2.1.1' - '0.2.1.2' - '0.2.1.3' - '0.2.1.4' - '0.2.1.5' author: David Wang <[email protected]>, Sergei Trofimovich <[email protected]> latest: '0.2.1.5' description-type: haddock description: ! 'Installed package query tool for Gentoo Linux Home page <http://home.exetel.com.au/tjaden/fquery/>' license-name: OtherLicense
homepage: '' changelog-type: '' hash: b71c74d999b636ffc33148259670ed5b86bb5354dae7ed7cb57ce95354b86c53 test-bench-deps: {} maintainer: Sergei Trofimovich <[email protected]> synopsis: Installed package query tool for Gentoo Linux changelog: '' basic-deps: unix: -any base: ! '>=4 && <5' filepath: -any process: -any parsec: -any regex-compat: -any hashtables: -any directory: -any all-versions: - '0.2.1' - '0.2.1.1' - '0.2.1.2' - '0.2.1.3' - '0.2.1.4' - '0.2.1.5' - '0.2.2' author: David Wang <[email protected]>, Sergei Trofimovich <[email protected]> latest: '0.2.2' description-type: haddock description: ! 'Installed package query tool for Gentoo Linux Home page <http://home.exetel.com.au/tjaden/fquery/>' license-name: OtherLicense
Update from Hackage at 2016-02-06T14:21:22+0000
Update from Hackage at 2016-02-06T14:21:22+0000
YAML
mit
commercialhaskell/all-cabal-metadata
152ff6b77b3edcd1151d691ab4c48c19626b51c7
packages/gr/gridfs.yaml
packages/gr/gridfs.yaml
homepage: http://github.com/btubbs/haskell-gridfs#readme changelog-type: '' hash: c2834314e314944369f13b254c49a25ff9ee9523079f5a77d237abe26fb8b1d2 test-bench-deps: {} maintainer: [email protected] synopsis: GridFS (MongoDB file storage) implementation changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' time: -any text: -any monad-control: -any pureMD5: -any conduit: -any conduit-extra: -any tagged: -any mongoDB: -any mtl: -any bson: -any transformers: -any resourcet: -any all-versions: - '0.1.0.1' author: Martin Norbäck Olivers latest: '0.1.0.1' description-type: haddock description: Please see README.md license-name: OtherLicense
homepage: http://github.com/btubbs/haskell-gridfs#readme changelog-type: '' hash: 9c61d6dff8ea41cf19a2694bcaa9f203e3a0f61f49e6e065b66143817d138c58 test-bench-deps: {} maintainer: [email protected] synopsis: GridFS (MongoDB file storage) implementation changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' time: -any text: -any monad-control: -any pureMD5: -any conduit: -any conduit-extra: -any tagged: -any mongoDB: -any mtl: -any bson: -any transformers: -any resourcet: -any all-versions: - '0.1.0.1' - '0.1.0.2' author: Martin Norbäck Olivers latest: '0.1.0.2' description-type: haddock description: Please see README.md license-name: OtherLicense
Update from Hackage at 2016-02-19T09:24:40+0000
Update from Hackage at 2016-02-19T09:24:40+0000
YAML
mit
commercialhaskell/all-cabal-metadata
ec31df52d28dd98d3e79e382e7ffb19dee1de8be
packages/ra/radius.yaml
packages/ra/radius.yaml
homepage: https://github.com/erickg/radius#readme changelog-type: '' hash: 92b8d899c3f39c5eaa474e4a4af3c706fcd0ffb41e75623c60e69701b56b4825 test-bench-deps: {} maintainer: [email protected] synopsis: Remote Authentication Dial In User Service (RADIUS) changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' pretty-hex: -any binary: -any iproute: -any all-versions: - '0.1.0.0' author: Erick Gonzalez latest: '0.1.0.0' description-type: markdown description: ! "# Remote Authentication Dial In User Service (RADIUS)\n\nThis module compiles RADIUS packet definitions and different attributes as specified in RFC 2865, as well as de/coding functions to serialize and deserialize RADIUS packets to/from binary data. \n\nRADIUS extensions in RFC 2869 are also supported, as well as RFC 3162 for IPv6 related attributes\n\n" license-name: BSD3
homepage: https://github.com/erickg/radius#readme changelog-type: '' hash: d8a79e5939eaf41d593b68aee2a859c69e6b17e13620a2d3014ec3faffb7f84e test-bench-deps: {} maintainer: [email protected] synopsis: Remote Authentication Dial In User Service (RADIUS) changelog: '' basic-deps: bytestring: -any base: ! '>=4.7 && <5' pretty-hex: -any binary: -any iproute: -any all-versions: - '0.1.0.0' - '0.2.0.0' author: Erick Gonzalez latest: '0.2.0.0' description-type: markdown description: ! "# Remote Authentication Dial In User Service (RADIUS)\n\nThis module compiles RADIUS packet definitions and different attributes as specified in RFC 2865, as well as de/coding functions to serialize and deserialize RADIUS packets to/from binary data. \n\nRADIUS extensions in RFC 2869 are also supported, as well as RFC 3162 for IPv6 related attributes\n\n" license-name: BSD3
Update from Hackage at 2017-10-22T10:12:48Z
Update from Hackage at 2017-10-22T10:12:48Z
YAML
mit
commercialhaskell/all-cabal-metadata
d68c325dbc758b99d5b1bb5102e52de83e54f460
.codeclimate.yml
.codeclimate.yml
engines: duplication: enabled: true config: languages: - ruby - javascript - python - php fixme: enabled: true phpmd: enabled: true checks: Controversial/CamelCasePropertyName: enabled: false ratings: paths: - "**.inc" - "**.js" - "**.jsx" - "**.module" - "**.php" - "**.py" - "**.rb" exclude_paths: - test/
engines: duplication: enabled: true config: languages: - ruby - javascript - python - php fixme: enabled: true phpmd: enabled: true checks: Controversial/CamelCasePropertyName: enabled: false Controversial/CamelCaseParameterName: enabled: false ratings: paths: - "**.inc" - "**.js" - "**.jsx" - "**.module" - "**.php" - "**.py" - "**.rb" exclude_paths: - test/
Exclude CamelCaseParameterName check from code quality review
Exclude CamelCaseParameterName check from code quality review
YAML
mit
CartRover/cartrover-php
2062ff9cc6ef20c14f5593d695c306b4126cc2af
.codeclimate.yml
.codeclimate.yml
engines: eslint: enabled: true nodesecurity: enabled: true ratings: paths: - "lib/**.js" - "test/**.js" exclude_paths: - "test/fixtures"
engines: nodesecurity: enabled: true ratings: paths: - "lib/**.js" - "test/**.js" exclude_paths: - "test/fixtures"
Disable eslint for CC for now
Disable eslint for CC for now
YAML
bsd-3-clause
Strider-CD/core
1221bb1d4790ab7ff4de29a99f3a5a8e897d0e91
.codeclimate.yml
.codeclimate.yml
engines: pmd: enabled: true config: rules: - "java-basic" - "java-design" - "java-empty" - "java-naming" - "java-optimization" - "java-unnecessary" - "java-unusedcode" ratings: paths: - "**.java"
engines: pmd: enabled: true config: rules: - "java-basic" - "java-design" - "java-empty" - "java-naming" - "java-optimizations" - "java-unnecessary" - "java-unusedcode" ratings: paths: - "**.java"
Fix typo in PMD ruleset name
Fix typo in PMD ruleset name
YAML
bsd-3-clause
koraktor/mavanagaiata
40d802fa26553d198d10445aaad7d95097c63c50
.readthedocs.yml
.readthedocs.yml
version: 2 build: os: ubuntu-20.04 tools: python: "3.8" python: install: - method: pip path: . sphinx: configuration: docs/conf.py
version: 2 build: os: ubuntu-20.04 tools: python: "3.8" python: install: - method: pip path: . sphinx: configuration: doc/conf.py
Fix path to Sphinx config
Fix path to Sphinx config
YAML
mit
nickstenning/honcho,nickstenning/honcho
498ced2c12ed57e4710e481be2253f689e85d714
roles/neutron_compute/tasks/main.yml
roles/neutron_compute/tasks/main.yml
--- # The MIT License (MIT) # # Copyright (c) 2015 Taio Jia (jiasir) <[email protected]> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #- name: Configure prerequisites # include: configure_prerequisites.yml - name: Install the Networking components include: install_the_networking_components
--- # The MIT License (MIT) # # Copyright (c) 2015 Taio Jia (jiasir) <[email protected]> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. #- name: Configure prerequisites # include: configure_prerequisites.yml #- name: Install the Networking components # include: install_the_networking_components.yml - name: Configure the Networking common components include: configure_the_Networking_common_components.yml
Configure the Networking common components
Configure the Networking common components
YAML
mit
spops/playback,jiasir/playback,spops/playback,nofdev/playback,spops/playback,spops/playback
f6dff9ebf6353497e43e97a14c8747658e72ceba
fluentd-daemonset-papertrail.yaml
fluentd-daemonset-papertrail.yaml
apiVersion: extensions/v1beta1 kind: DaemonSet metadata: name: fluentd namespace: kube-system labels: k8s-app: fluentd-logging version: v1 kubernetes.io/cluster-service: "true" spec: template: metadata: labels: k8s-app: fluentd-logging version: v1 kubernetes.io/cluster-service: "true" spec: tolerations: - key: node-role.kubernetes.io/master effect: NoSchedule containers: - name: fluentd image: fluent/fluentd-kubernetes-daemonset:papertrail env: - name: FLUENT_PAPERTRAIL_HOST value: "logsX.papertrailapp.com" - name: FLUENT_PAPERTRAIL_PORT value: "XXXXX" - name: FLUENT_HOSTNAME value: "MYCLUSTER" resources: limits: memory: 200Mi requests: cpu: 100m memory: 200Mi volumeMounts: - name: varlog mountPath: /var/log - name: varlibdockercontainers mountPath: /var/lib/docker/containers readOnly: true terminationGracePeriodSeconds: 30 volumes: - name: varlog hostPath: path: /var/log - name: varlibdockercontainers hostPath: path: /var/lib/docker/containers
apiVersion: extensions/v1beta1 kind: DaemonSet metadata: name: fluentd namespace: kube-system labels: k8s-app: fluentd-logging version: v1 kubernetes.io/cluster-service: "true" spec: updateStrategy: type: RollingUpdate template: metadata: labels: k8s-app: fluentd-logging version: v1 kubernetes.io/cluster-service: "true" spec: tolerations: - key: node-role.kubernetes.io/master effect: NoSchedule containers: - name: fluentd image: fluent/fluentd-kubernetes-daemonset:papertrail env: - name: FLUENT_PAPERTRAIL_HOST value: "logsX.papertrailapp.com" - name: FLUENT_PAPERTRAIL_PORT value: "XXXXX" - name: FLUENT_HOSTNAME value: "MYCLUSTER" resources: limits: memory: 200Mi requests: cpu: 100m memory: 200Mi volumeMounts: - name: varlog mountPath: /var/log - name: varlibdockercontainers mountPath: /var/lib/docker/containers readOnly: true terminationGracePeriodSeconds: 30 volumes: - name: varlog hostPath: path: /var/log - name: varlibdockercontainers hostPath: path: /var/lib/docker/containers
Change update type strategy of the Daemonset to RollingUpdate
Change update type strategy of the Daemonset to RollingUpdate
YAML
apache-2.0
fluent/fluentd-kubernetes-daemonset,fluent/fluentd-kubernetes-daemonset,fluent/fluentd-kubernetes-daemonset
ae760f1903e605e8315a38ddb3131537cade94c1
jenkins/jobs/tripleo-quickstart-builders.yml
jenkins/jobs/tripleo-quickstart-builders.yml
- builder: name: 'tripleo-quickstart-builder' builders: - shining-panda: build-environment: 'virtualenv' python-version: 'system-CPython-2.7' nature: 'shell' clear: true use-distribute: false system-site-packages: false ignore-exit-code: false command: | bash $WORKSPACE/tripleo-quickstart/ci-scripts/get-node.sh export VIRTHOST=$(head -n1 $WORKSPACE/virthost) echo $VIRTHOST pushd $WORKSPACE/tripleo-quickstart bash $WORKSPACE/tripleo-quickstart/ci-scripts/{test}.sh \ {release} \ {build_system} \ {topology} \ {job_type} popd
- builder: name: 'tripleo-quickstart-builder' builders: - shell: | bash $WORKSPACE/tripleo-quickstart/ci-scripts/get-node.sh export VIRTHOST=$(head -n1 $WORKSPACE/virthost) echo $VIRTHOST pushd $WORKSPACE/tripleo-quickstart bash $WORKSPACE/tripleo-quickstart/ci-scripts/{test}.sh \ {release} \ {build_system} \ {topology} \ {job_type} popd
Use shell builder for tripleo-quickstart
Use shell builder for tripleo-quickstart We now handle virtualenv creation for all of the jobs via quickstart.sh, so we can get rid of shiningpanda. Change-Id: I3bdcd14a2983a7574457b96bb46380a509664aa7
YAML
apache-2.0
rdo-infra/ci-config,redhat-openstack/rdo-infra,redhat-openstack/rdo-infra,rdo-infra/ci-config,rdo-infra/ci-config,redhat-openstack/rdo-infra,rdo-infra/ci-config,redhat-openstack/rdo-infra