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
114c00f6aa286b1c3cde86d171b25ae7928b5ed2
.forestry/front_matter/templates/author.yml
.forestry/front_matter/templates/author.yml
--- label: Author hide_body: is_partial: fields: - name: authors label: Authors type: field_group_list fields: - name: bio label: Bio type: text hidden: false default: '' - name: name label: Name type: text hidden: false default: '' - name: avatar label: Avatar type: text hidden: false default: '' hidden: false default: ''
--- label: Author hide_body: true is_partial: false fields: - name: authors label: Authors type: field_group_list fields: - name: name label: Name type: text hidden: false default: '' - type: textarea name: bio label: Bio config: required: true - type: text name: twitter label: Twitter - type: file name: avatar label: Avatar hidden: false default: ''
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
gatsbimantico/blog,wkadwaikar/wkadwaikar.github.io,wkadwaikar/wkadwaikar.github.io,gatsbimantico/blog
8c07a88a823a84aebe987cdb717f318ed00a872d
mkdocs.yml
mkdocs.yml
site_name: JabRef Developer Documentation repo_url: https://github.com/jabref/jabref/ theme: name: 'material'
site_name: JabRef Developer Documentation repo_url: https://github.com/jabref/jabref/ theme: name: readthedocs
Change docs theme to readthedocs
Change docs theme to readthedocs
YAML
mit
JabRef/jabref,Siedlerchr/jabref,sauliusg/jabref,sauliusg/jabref,Siedlerchr/jabref,sauliusg/jabref,JabRef/jabref,JabRef/jabref,sauliusg/jabref,Siedlerchr/jabref,JabRef/jabref,Siedlerchr/jabref
be4358e3d8851debb6b43dd22c4f920f85045229
mkdocs.yml
mkdocs.yml
site_name: Djangae Documentation repo_url: https://github.com/potatolondon/djangae pages: - Home: index.md - Installation & Deployment: installation.md - Datastore & Django Integration: - The Database Backend: db_backend.md - Migrations: migrations.md - Migration examples: migration_examples.md - Djangae Model Fields: fields.md - Local/remote management commands: sandbox.md - Environment: environment.md - Storage backends: storage.md - Contrib apps: - Datastore eventual consistency: consistency.md - Gauth authentication: gauth.md - Map Reduce: mappers.md - Pagination: pagination.md - Scheduled backups: backup.md - Security: security.md - Thread locking: locking.md - Unique constraint tool: uniquetool.md - Contributing & Testing: contributing.md - Release notes: - Overview: release_notes/index.md - "Version 0.9.10": release_notes/0_9_10.md theme: readthedocs
site_name: Djangae Documentation repo_url: https://github.com/potatolondon/djangae pages: - Home: index.md - Installation & Deployment: installation.md - Datastore & Django Integration: - The Database Backend: db_backend.md - Migrations: migrations.md - Migration examples: migration_examples.md - Djangae Model Fields: fields.md - Local/remote management commands: sandbox.md - Environment: environment.md - Storage backends: storage.md - Background Processing: deferred.md - Contrib apps: - Datastore eventual consistency: consistency.md - Gauth authentication: gauth.md - Map Reduce: mappers.md - Pagination: pagination.md - Scheduled backups: backup.md - Security: security.md - Thread locking: locking.md - Unique constraint tool: uniquetool.md - Contributing & Testing: contributing.md - Release notes: - Overview: release_notes/index.md - "Version 0.9.10": release_notes/0_9_10.md theme: readthedocs
Add link to the deferred docs
Add link to the deferred docs Fixes #1033
YAML
bsd-3-clause
potatolondon/djangae,potatolondon/djangae
757b79c52ebf1e473fd78b31f5ef7cdbb08e55fc
tasks/copy.yml
tasks/copy.yml
--- - name: Synchronize default files {{ freebsd_postinstall_copy_dir }}/default (relative to playbooks directory) synchronize: > src="{{ freebsd_postinstall_copy_dir }}/default/" dest="/" archive="no" recursive="yes" times="yes" perms="yes" checksum="yes" tags: freebsd_postinstall_default_copy - name: Check existence of {{ role_path }}/{{ freebsd_postinstall_copy_dir }}/{{ rc_conf_hostname }} local_action: > stat path="{{ role_path }}/{{ freebsd_postinstall_copy_dir }}/{{ rc_conf_hostname }}" register: optional_copy tags: freebsd_postinstall_optional_copy # NOTE: playbooks directory IS NOT local_action modules current # working directory. Absolute path role_path is needed. - name: Synchronize host specific files {{ freebsd_postinstall_copy_dir }}/{{ rc_conf_hostname }} (relative to playbooks directory) synchronize: > src="{{ freebsd_postinstall_copy_dir }}/{{ rc_conf_hostname }}/" dest="/" archive="no" recursive="yes" times="yes" perms="yes" checksum="yes" when: optional_copy.stat.exists tags: freebsd_postinstall_optional_copy # EOF ...
--- - name: Synchronize default files {{ freebsd_postinstall_copy_dir }}/default (relative to playbooks directory) synchronize: > src="{{ freebsd_postinstall_copy_dir }}/default/" dest="/" checksum="yes" times="no" perms="no" owner="no" group="no" tags: freebsd_postinstall_default_copy - name: Check existence of {{ role_path }}/{{ freebsd_postinstall_copy_dir }}/{{ rc_conf_hostname }} local_action: > stat path="{{ role_path }}/{{ freebsd_postinstall_copy_dir }}/{{ rc_conf_hostname }}" register: optional_copy tags: freebsd_postinstall_optional_copy # NOTE: playbooks directory IS NOT local_action modules current # working directory. Absolute path role_path is needed. - name: Synchronize host specific files {{ freebsd_postinstall_copy_dir }}/{{ rc_conf_hostname }} (relative to playbooks directory) synchronize: > src="{{ freebsd_postinstall_copy_dir }}/{{ rc_conf_hostname }}/" dest="/" checksum="yes" times="no" perms="no" owner="no" group="no" when: optional_copy.stat.exists tags: freebsd_postinstall_optional_copy # EOF ...
Copy does not synchronize user,group,date and permisions.
Copy does not synchronize user,group,date and permisions.
YAML
bsd-2-clause
vbotka/ansible-freebsd-postinstall
152db4d4524835cd74f774330204447e506b7680
tasks/main.yml
tasks/main.yml
--- # tasks file for ansible-sdkman - name: Install SDKMAN include_tasks: install.yml - block: - name: Run SDKMAN tasks include_tasks: sdkman.yml - name: Persist additional SDKMAN environment variables include_tasks: persist_env.yml loop: - .bash_profile - .profile - .bashrc - .zshrc loop_control: loop_var: sdkman_profile environment: SDKMAN_DIR: '{{ sdkman_dir }}' SDKMAN_OFFLINE_MODE: 'false' become: '{{ sdkman_user != ansible_user_id }}' become_user: '{{ sdkman_user }}'
--- # tasks file for ansible-sdkman - name: Install SDKMAN include_tasks: install.yml - block: - name: Run SDKMAN tasks include_tasks: sdkman.yml - name: Persist additional SDKMAN environment variables include_tasks: persist_env.yml loop: - .bash_profile - .profile - .bashrc - .zshrc loop_control: loop_var: sdkman_profile environment: SDKMAN_DIR: '{{ sdkman_dir }}' SDKMAN_OFFLINE_MODE: 'false' become: '{{ sdkman_user != ansible_user_id }}' become_user: '{{ sdkman_user }}' - name: Update alternatives alternatives: name: "{{ item.name }}" path: "{{ sdkman_dir }}/candidates/{{ item.candidate }}/current/bin/{{ item.name }}" link: "{{ item.link }}" loop: "{{ sdkman_update_alternatives }}" become: yes tags: - sdkman_privilege
Implement task to update alternatives
Implement task to update alternatives
YAML
apache-2.0
Comcast/ansible-sdkman
cc53cdbf0ee1627b32d3bfe8102ccc3644e7e1a5
tasks/main.yml
tasks/main.yml
--- - name: Install package dependencies for {{ rails_app_shortname }} apt: pkg={{ item }} with_items: rails_app_pkg_dependencies - include: rails_app_user.yml tags: - rails_app_user - include: deploy.yml tags: - deploy - include: vhost.yml tags: - vhost - include: vhost_redirect.yml tags: - vhost - include: configure.yml tags: - security - include: postgresql.yml tags: - postgres when: rails_app_db_adapter == 'postgresql' - include: mysql.yml tags: - mysql when: rails_app_db_adapter == 'mysql' - include: sidekiq.yml tags: - sidekiq when: rails_app_sidekiq - include: logrotate.yml tags: - logs when: rails_app_log_rotation
--- - name: Install package dependencies for {{ rails_app_shortname }} apt: pkg={{ item }} with_items: "{{ rails_app_pkg_dependencies }}" - include: rails_app_user.yml tags: - rails_app_user - include: deploy.yml tags: - deploy - include: vhost.yml tags: - vhost - include: vhost_redirect.yml tags: - vhost - include: configure.yml tags: - security - include: postgresql.yml tags: - postgres when: rails_app_db_adapter == 'postgresql' - include: mysql.yml tags: - mysql when: rails_app_db_adapter == 'mysql' - include: sidekiq.yml tags: - sidekiq when: rails_app_sidekiq - include: logrotate.yml tags: - logs when: rails_app_log_rotation
Update syntax for newer ansible
Update syntax for newer ansible
YAML
mit
thermistor/ansible-rails_app
e51b551603bf15fc92ad003cef142fac485e8339
tasks/main.yml
tasks/main.yml
--- # Installation - name: Install Transmission apt: name=transmission-daemon state=present tags: transmission # Configuration - name: Make sure transmission is not running service: name=transmission-daemon state=stopped ignore_errors: true tags: transmission - name: Add downloads folder file: path={{ transmission_download_dir }} owner={{ transmission_user }} group={{ transmission_user }} state=directory mode=0777 tags: transmission - name: Add watch dir file: path={{ transmission_watch_dir }} owner={{ transmission_user }} group={{ transmission_user }} state=directory when: transmission_watch_dir_enabled tags: transmission - name: Add incomplete folder file: path={{ transmission_incomplete_dir }} owner={{ transmission_user }} group={{ transmission_user }} state=directory mode=0777 when: transmission_incomplete_dir_enabled tags: transmission - name: Copy Transmission configuration template: src=settings.json dest=/etc/transmission-daemon/settings.json tags: transmission # Service start - name: Start transmission service: name=transmission-daemon state=started ignore_errors: true tags: transmission
--- # Installation - name: Install Transmission apt: name=transmission-daemon state=present tags: transmission # Configuration - name: Make sure transmission is not running service: name=transmission-daemon state=stopped ignore_errors: true tags: transmission - name: Add downloads folder file: path={{ transmission_download_dir }} owner={{ transmission_user }} group=debian-transmission state=directory mode=0775 tags: transmission - name: Add watch dir file: path={{ transmission_watch_dir }} owner={{ transmission_user }} group=debian-transmission state=directory when: transmission_watch_dir_enabled tags: transmission - name: Add incomplete folder file: path={{ transmission_incomplete_dir }} owner={{ transmission_user }} group=debian-transmission state=directory mode=0775 when: transmission_incomplete_dir_enabled tags: transmission - name: Copy Transmission configuration template: src=settings.json dest=/etc/transmission-daemon/settings.json tags: transmission - name: Add current user to transmission group user: name: "{{ transmission_user }}" groups: debian-transmission append: yes tags: transmission # Service start - name: Start transmission service: name=transmission-daemon state=started ignore_errors: true tags: transmission
Set folders group to debian-transmission and add user to that group
Set folders group to debian-transmission and add user to that group
YAML
mit
elboletaire/ansible-transmission
0b6f08ead739db63f9c1033a7de716df1d75d132
cucumber.yml
cucumber.yml
<% rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" rerun_opts = rerun.to_s.strip.empty? ? "--format progress features" : "--format pretty #{rerun}" std_opts = "--format progress features --tags ~@wip" begin require 'rspec/expectations' std_opts << ' --tags ~@rspec1' rescue LoadError # rspec 1 std_opts << ' --tags ~@rspec2' end %> default: <%= std_opts %> --dotcucumber features/.cucumber jruby: <%= std_opts %> --tags ~@spork --tags ~@wire jruby_win: <%= std_opts %> --tags ~@spork --tags ~@wire CUCUMBER_FORWARD_SLASH_PATHS=true windows_mri: <%= std_opts %> --tags ~@jruby --tags ~@spork --tags ~@wire --tags ~@needs-many-fonts CUCUMBER_FORWARD_SLASH_PATHS=true ruby_1_9: <%= std_opts %> --tags ~@jruby --tags ~@fails_on_1_9 wip: --tags @wip:3 --wip features none: --format pretty rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
<% rerun = File.file?('rerun.txt') ? IO.read('rerun.txt') : "" rerun_opts = rerun.to_s.strip.empty? ? "--format progress features" : "--format pretty #{rerun}" std_opts = "--format progress features --tags ~@wip" begin require 'rspec/expectations' std_opts << ' --tags ~@rspec1' rescue LoadError # rspec 1 std_opts << ' --tags ~@rspec2' end %> default: <%= std_opts %> --tags ~@jruby --dotcucumber features/.cucumber jruby: <%= std_opts %> --tags ~@spork --tags ~@wire jruby_win: <%= std_opts %> --tags ~@spork --tags ~@wire CUCUMBER_FORWARD_SLASH_PATHS=true windows_mri: <%= std_opts %> --tags ~@jruby --tags ~@spork --tags ~@wire --tags ~@needs-many-fonts CUCUMBER_FORWARD_SLASH_PATHS=true ruby_1_9: <%= std_opts %> --tags ~@jruby --tags ~@fails_on_1_9 wip: --tags @wip:3 --wip features none: --format pretty rerun: <%= rerun_opts %> --format rerun --out rerun.txt --strict --tags ~@wip
Exclude jruby scenarios by default
Exclude jruby scenarios by default
YAML
mit
dg-ratiodata/cucumber-ruby,marxarelli/cucumber,cucumber/cucumber-ruby,danascheider/cucumber-ruby,shivashankar2020/mands,shivashankar2020/mands,enkessler/cucumber-ruby,twalpole/cucumber,richarda/cucumber,cucumber/cucumber-ruby,jasonkarns/cucumber-ruby,jasonkarns/cucumber-ruby,shadow000902/cucumber-ruby,brasmusson/cucumber,nfredrik/cucumber-ruby,CW5000/CWFDerpy,sideci-sample/sideci-sample-cucumber,CW5000/CWFDerpy,phoebeclarke/cucumber-ruby,martinma4/cucumber-ruby,enkessler/cucumber-ruby,martinma4/cucumber-ruby,shadow000902/cucumber-ruby,dg-ratiodata/cucumber-ruby,twalpole/cucumber,richarda/cucumber,nfredrik/cucumber-ruby,dg-ratiodata/cucumber-ruby,cucumber/cucumber-ruby,sideci-sample/sideci-sample-cucumber,marxarelli/cucumber,enkessler/cucumber-ruby,phoebeclarke/cucumber-ruby,jasonkarns/cucumber-ruby,danascheider/cucumber-ruby,tom025/cucumber,tom025/cucumber,tom025/cucumber,shivashankar2020/mands,brasmusson/cucumber
597aeac231da024a67d5ab7a6c30a7d0341cbcc6
roles/minio/tasks/main.yml
roles/minio/tasks/main.yml
--- - name: include os-specific variables include_vars: "{{ ansible_os_family }}.yml" - name: create minio group group: name: "{{ minio_group }}" state: present - name: create minio user user: name: "{{ minio_user }}" group: "{{ minio_group }}" shell: /bin/bash - name: create minio config dir file: path=/home/ubuntu/.minio state=directory owner=minio group=users mode=g+rw - name: generate the minio config template: src: minio_config.json.j2 dest: /home/ubuntu/.minio/config.json - stat: path={{ minio_server_datadir }}/minio.log register: p - name: create minio.log file: path={{ minio_server_datadir }}/minio.log state=touch owner=minio group=sys when: p.stat.exists is defined and not p.stat.exists - include: server.yml when: not skip_server - include: client.yml when: not skip_client - name: Install S3 client apt: name=s3cmd - name: Configure s3cmd config file template: src=s3cfg.j2 dest="/home/ubuntu/.s3cfg" tags: ["s3cmd_config"]
--- - name: include os-specific variables include_vars: "{{ ansible_os_family }}.yml" - name: create minio group group: name: "{{ minio_group }}" state: present - name: create minio user user: name: "{{ minio_user }}" group: "{{ minio_group }}" shell: /bin/bash - name: create minio config dir file: path=/home/ubuntu/.minio state=directory owner=minio group=users mode=g+rw - name: create minio server data dir file: path={{ minio_server_datadir }} state=directory owner=minio group=users mode=g+rw - name: generate the minio config template: src: minio_config.json.j2 dest: /home/ubuntu/.minio/config.json - stat: path={{ minio_server_datadir }}/minio.log register: p - name: create minio.log file: path={{ minio_server_datadir }}/minio.log state=touch owner=minio group=users when: p.stat.exists is defined and not p.stat.exists - include: server.yml when: not skip_server - include: client.yml when: not skip_client - name: Install S3 client apt: name=s3cmd - name: Configure s3cmd config file template: src=s3cfg.j2 dest="/home/ubuntu/.s3cfg" tags: ["s3cmd_config"]
Make sure the data dir for minio server exists. Correct the group to which the folder should belong.
Make sure the data dir for minio server exists. Correct the group to which the folder should belong.
YAML
apache-2.0
nlesc-sherlock/emma,nlesc-sherlock/emma,nlesc-sherlock/emma
6b475468cb4e00785edfcb427a92fc21c251c96d
roles/docs/tasks/main.yml
roles/docs/tasks/main.yml
--- # tasks to setup a doc server # see https://src.openvz.org/projects/OVZ/repos/vz-docs/browse/README.md - name: add doc-user group group: name=doc-user gid=104 system=yes state=present - name: add doc user user: name=doc-user uid=104 gid=104 home=/var/www/html comment="OpenVZ docs" createhome=yes system=yes shell=/bin/bash - name: add apache to docs group user: name=apache append=yes groups=doc-user - name: install the doc packages yum: pkg={{item}} state=present with_items: - asciidoc - fop - docbook5-style-xsl-extensions - docbook5-style-xsl - xerces-j2 - docbook5-schemas - name: install git package yum: name=git state=latest - name: checkout git repo with sources git: repo=https://src.openvz.org/scm/ovz/vz-docs.git dest=/home/sergeyb/vz-docs - name: setup crontab cron: name="publish doc" minute="00" job="cd ~/vz-docs/ && git pull && make && make publish"
--- # tasks to setup a doc server # see https://src.openvz.org/projects/OVZ/repos/vz-docs/browse/README.md - name: add doc-user group group: name=doc-user gid=104 system=yes state=present - name: add doc user user: name=doc-user uid=104 gid=104 home=/var/www/html comment="OpenVZ docs" createhome=yes system=yes shell=/bin/bash - name: add apache to docs group user: name=apache append=yes groups=doc-user - name: install the doc packages yum: pkg={{item}} state=present with_items: - asciidoc - fop - docbook5-style-xsl-extensions - docbook5-style-xsl - xerces-j2 - docbook5-schemas - name: install git package yum: name=git state=latest - name: checkout git repo with sources git: repo=https://src.openvz.org/scm/ovz/vz-docs.git dest=/home/sergeyb/vz-docs - name: setup crontab cron: name="publish doc" minute="00" job="cd ~/vz-docs/ && git pull && make && make publish"
Fix syntax in docs role
Fix syntax in docs role
YAML
apache-2.0
ligurio/openvz-playbooks,ligurio/openvz-playbooks,ligurio/openvz-playbooks
3a57d9472c6788ce6fbb700108fbc776527fc3df
test/utils/ansible-playbook_integration_runner/roles/run_integration/tasks/main.yml
test/utils/ansible-playbook_integration_runner/roles/run_integration/tasks/main.yml
--- - name: Sync ansible repo to ec2 instance synchronize: src: "{{ sync_dir }}/" dest: "~/ansible" - name: Get ansible source dir sudo: false shell: "cd ~/ansible && pwd" register: results - shell: "ls -la && . hacking/env-setup && cd test/integration && make {{ run_integration_make_target }}" args: chdir: "{{ results.stdout }}" async: 3600 poll: 0 register: async_test_results sudo: true environment: TEST_FLAGS: "{{ run_integration_test_flags|default(lookup('env', 'TEST_FLAGS')) }}" CREDENTIALS_FILE: "{{ run_integration_credentials_file|default(lookup('env', 'CREDENTIALS_FILE')) }}" - name: poll for test results async_status: jid="{{async_test_results.ansible_job_id}}" register: test_results until: test_results.finished retries: 120 delay: 30 ignore_errors: true - debug: var=test_results
--- - name: Sync ansible repo to ec2 instance synchronize: src: "{{ sync_dir }}/" dest: "~/ansible" - name: Get ansible source dir sudo: false shell: "cd ~/ansible && pwd" register: results - shell: "ls -la && . hacking/env-setup && cd test/integration && make {{ run_integration_make_target }}" args: chdir: "{{ results.stdout }}" async: 3600 poll: 0 register: async_test_results sudo: true environment: TEST_FLAGS: "{{ run_integration_test_flags|default(lookup('env', 'TEST_FLAGS')) }}" CREDENTIALS_FILE: "{{ run_integration_credentials_file|default(lookup('env', 'CREDENTIALS_FILE')) }}" - name: poll for test results async_status: jid="{{async_test_results.ansible_job_id}}" register: test_results until: test_results.finished retries: 120 delay: 30 ignore_errors: true - name: save stdout test results for each host local_action: copy args: dest: "{{sync_dir}}/{{inventory_hostname}}.stdout_results.txt" content: "{{test_results.stdout}}" - name: save stderr test results for each host local_action: copy args: dest: "{{sync_dir}}/{{inventory_hostname}}.stderr_results.txt" content: "{{test_results.stderr}}"
Save output of integration test results to files we can archive
Save output of integration test results to files we can archive
YAML
mit
thaim/ansible,thaim/ansible
dec2ea02c95bee18d25d45b8c8f9dd7586736ce1
playbooks/tasks/ec2/ami/cross_account/common.yml
playbooks/tasks/ec2/ami/cross_account/common.yml
--- - name: Registering cross-account permissions command: aws ec2 modify-image-attribute --region us-east-1 --image-id '{{ perm_ami_id }}' --launch-permission "{\"Add\":[{\"UserId\":\"{{ item.value.account }}\"}]}" with_dict: "{{ ami_cross_account }}" when: ami_cross_account is defined
--- - name: Registering cross-account permissions command: aws ec2 modify-image-attribute --region us-east-1 --image-id '{{ perm_ami_id }}' --launch-permission "{\"Add\":[{\"UserId\":\"{{ item.value.account }}\"}]}" with_dict: ami_cross_account | default({}) when: ami_cross_account is defined
Fix issue with cross-account ami sharing not working when no account is specified.
Fix issue with cross-account ami sharing not working when no account is specified.
YAML
apache-2.0
jhohertz/buri,jhohertz/buri,MarkRose/buri,inve1/buri,MarkRose/buri,inve1/buri,MarkRose/buri,viafoura/buri,MarkRose/buri,viafoura/buri,jhohertz/buri,jhohertz/buri,viafoura/buri,inve1/buri,inve1/buri,viafoura/buri
df16f11aae7017b594e1c79485ecfb600ea70e4f
.github/workflows/test.yml
.github/workflows/test.yml
name: First attempt on: push jobs: build: strategy: matrix: BUILDTAB: - ubuntu trusty deb v4.1.2 7.3 stable - runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 with: fetch-depth: 1 - env: BUILDTAB: ${BUILDTAB} - name: Before install run: | source environment export $(cat environment | grep -v "^#\|^$" | cut -d= -f1) source ci/export-buildtab.sh - name: Install run: | ./ci/install-php.sh source ./ci/setup-build.sh ./ci/install-re2c.sh ./ci/install-zephir-parser.sh ./ci/install-zephir.sh - run: ./ci/regenerate-build.sh - run: make -f .travis.mk ${TARGET}
name: First attempt on: push jobs: build: strategy: matrix: BUILDTAB: - ubuntu trusty deb v4.1.2 7.3 stable - runs-on: ubuntu-18.04 env: BUILDTAB: ${BUILDTAB} steps: - uses: actions/checkout@v2 with: fetch-depth: 1 - name: Before install run: | source environment export $(cat environment | grep -v "^#\|^$" | cut -d= -f1) source ci/export-buildtab.sh - name: Install run: | ./ci/install-php.sh source ./ci/setup-build.sh ./ci/install-re2c.sh ./ci/install-zephir-parser.sh ./ci/install-zephir.sh - run: ./ci/regenerate-build.sh - run: make -f .travis.mk ${TARGET}
Move out env from steps
Move out env from steps
YAML
bsd-3-clause
phalcongelist/packagecloud
a578b6055bff16a14df886235c36a889e0ab7a65
python-package.yml
python-package.yml
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python package on: push: branches: [ master ] pull_request: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | pytest
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python package on: push: branches: [ master ] pull_request: branches: [ master ] workflow_dispatch: {} jobs: build: runs-on: ubuntu-latest strategy: matrix: python-version: [3.6, 3.7, 3.8, 3.9] steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v2 with: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | python -m pip install --upgrade pip pip install flake8 pytest if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | pytest
Make it possible to manually run publish action
Make it possible to manually run publish action Signed-off-by: Fabrice Normandin <[email protected]>
YAML
mit
lebrice/SimpleParsing
5ece3b80afd8554ae0810c9c52b2beaece328cb9
src/PaymentBundle/Resources/Config/admin.yml
src/PaymentBundle/Resources/Config/admin.yml
services: app.admin.payment: class: PaymentBundle\Admin\PaymentAdmin arguments: [~, PaymentBundle\Entity\Payment, ~] tags: - {name: sonata.admin, manager_type: orm, group: Payments, label: Payments} app.admin.orders: class: PaymentBundle\Admin\OrderAdmin arguments: [~, PaymentBundle\Entity\AbstractOrder, ~] tags: - {name: sonata.admin, manager_type: orm, group: Payments, label: Orders} # calls: # - [setUserManager, ["@fos_user.user_manager"]] # - [setTemplate, [list, SonataUserBundle:UserAdmin:list.html.twig]] # - [setTemplate, [edit, SonataUserBundle:UserAdmin:edit.html.twig]] # - [setTranslationDomain, [SonataUserBundle]] # app.admin.conversation: # class: AppBundle\Admin\ConversationAdmin # arguments: [~, AppBundle\Entity\Conversation, ~] # tags: # - {name: sonata.admin, manager_type: orm, group: Chat, label: Conversations}
services: app.admin.payment: class: PaymentBundle\Admin\PaymentAdmin arguments: [~, PaymentBundle\Entity\Payment, ~] tags: - {name: sonata.admin, manager_type: orm, group: Payments, label: Payments} app.admin.orders: class: PaymentBundle\Admin\OrderAdmin arguments: [~, PaymentBundle\Entity\AbstractOrder, ~] tags: - {name: sonata.admin, manager_type: orm, group: Payments, label: Orders} # calls: # - [setUserManager, ["@fos_user.user_manager"]] # - [setTemplate, [list, SonataUserBundle:UserAdmin:list.html.twig]] # - [setTemplate, [edit, SonataUserBundle:UserAdmin:edit.html.twig]] # - [setTranslationDomain, [SonataUserBundle]] # app.admin.conversation: # class: AppBundle\Admin\ConversationAdmin # arguments: [~, AppBundle\Entity\Conversation, ~] # tags: # - {name: sonata.admin, manager_type: orm, group: Chat, label: Conversations} #changed
Change PaymentBundle config path case.
Change PaymentBundle config path case.
YAML
mit
nchervyakov/chat,nchervyakov/chat,nchervyakov/chat,nchervyakov/chat
59a88341ff94fe24d38bc63f6754680e93b4eb75
.github/workflows/ci.yaml
.github/workflows/ci.yaml
name: Java CI on: [push, pull_request] jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] java: [8, 11, 17, 18, 19-ea] fail-fast: false max-parallel: 4 name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Set up JDK uses: actions/setup-java@v3 with: java-version: ${{ matrix.java }} distribution: 'zulu' - name: Test with Maven run: ./mvnw test -B
name: Java CI on: [push, pull_request] jobs: test: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] java: [11, 17, 18, 19-ea] fail-fast: false max-parallel: 4 name: Test JDK ${{ matrix.java }}, ${{ matrix.os }} steps: - uses: actions/checkout@v3 - name: Set up JDK uses: actions/setup-java@v3 with: java-version: ${{ matrix.java }} distribution: 'zulu' - name: Test with Maven run: ./mvnw test -B
Drop jdk 8 from build
[actions] Drop jdk 8 from build
YAML
apache-2.0
hazendaz/spotbugs-maven-plugin,hazendaz/spotbugs-maven-plugin,hazendaz/spotbugs-maven-plugin
27b8870772ca39d27241ea6f7031adca6443c844
recipes/doctr/meta.yaml
recipes/doctr/meta.yaml
{% set version = "1.1" %} package: name: doctr version: {{ version }} source: fn: doctr-{{ version }}.tar.gz url: https://pypi.io/packages/source/d/doctr/doctr-{{ version }}.tar.gz md5: b5eed31c06c33f338ab303ee6e3e83a8 build: number: 0 entry_points: - doctr = doctr.__main__:main skip: true # [not py35] script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools - requests - cryptography run: - python - requests - cryptography test: imports: - doctr commands: - doctr --help - doctr configure --help - doctr deploy --help about: home: https://gforsyth.github.io/doctr/docs/ license: MIT summary: 'Deploy docs from Travis to GitHub pages.' description: | A tool for automatically building Sphinx docs on Travis CI, and deploying them to GitHub pages. doc_url: https://gforsyth.github.io/doctr/docs/ dev_url: https://github.com/gforsyth/doctr extra: recipe-maintainers: - asmeurer - gforsyth
{% set version = "1.1" %} package: name: doctr version: {{ version }} source: fn: doctr-{{ version }}.tar.gz url: https://pypi.io/packages/source/d/doctr/doctr-{{ version }}.tar.gz md5: b5eed31c06c33f338ab303ee6e3e83a8 build: number: 0 entry_points: - doctr = doctr.__main__:main skip: true # [py<35] script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - setuptools - requests - cryptography run: - python - requests - cryptography test: imports: - doctr commands: - doctr --help - doctr configure --help - doctr deploy --help about: home: https://gforsyth.github.io/doctr/docs/ license: MIT summary: 'Deploy docs from Travis to GitHub pages.' description: | A tool for automatically building Sphinx docs on Travis CI, and deploying them to GitHub pages. doc_url: https://gforsyth.github.io/doctr/docs/ dev_url: https://github.com/gforsyth/doctr extra: recipe-maintainers: - asmeurer - gforsyth
Change skip to use an inequality
Change skip to use an inequality
YAML
bsd-3-clause
sodre/staged-recipes,jakirkham/staged-recipes,synapticarbors/staged-recipes,shadowwalkersb/staged-recipes,kwilcox/staged-recipes,atedstone/staged-recipes,cpaulik/staged-recipes,OpenPIV/staged-recipes,mcernak/staged-recipes,hadim/staged-recipes,OpenPIV/staged-recipes,hbredin/staged-recipes,scopatz/staged-recipes,JohnGreeley/staged-recipes,dharhas/staged-recipes,ocefpaf/staged-recipes,valgur/staged-recipes,igortg/staged-recipes,Savvysherpa/staged-recipes,ceholden/staged-recipes,sannykr/staged-recipes,barkls/staged-recipes,petrushy/staged-recipes,dharhas/staged-recipes,pmlandwehr/staged-recipes,mcs07/staged-recipes,caspervdw/staged-recipes,JohnGreeley/staged-recipes,chohner/staged-recipes,rvalieris/staged-recipes,bmabey/staged-recipes,patricksnape/staged-recipes,conda-forge/staged-recipes,mcernak/staged-recipes,mcs07/staged-recipes,koverholt/staged-recipes,stuertz/staged-recipes,blowekamp/staged-recipes,johanneskoester/staged-recipes,chrisburr/staged-recipes,patricksnape/staged-recipes,gqmelo/staged-recipes,blowekamp/staged-recipes,ocefpaf/staged-recipes,dschreij/staged-recipes,pstjohn/staged-recipes,barkls/staged-recipes,koverholt/staged-recipes,chohner/staged-recipes,Juanlu001/staged-recipes,NOAA-ORR-ERD/staged-recipes,vamega/staged-recipes,grlee77/staged-recipes,mariusvniekerk/staged-recipes,atedstone/staged-recipes,isuruf/staged-recipes,rolando-contrib/staged-recipes,basnijholt/staged-recipes,rolando-contrib/staged-recipes,sodre/staged-recipes,jochym/staged-recipes,pstjohn/staged-recipes,grlee77/staged-recipes,jakirkham/staged-recipes,isuruf/staged-recipes,rmcgibbo/staged-recipes,shadowwalkersb/staged-recipes,pmlandwehr/staged-recipes,bmabey/staged-recipes,goanpeca/staged-recipes,johanneskoester/staged-recipes,cpaulik/staged-recipes,ReimarBauer/staged-recipes,hajapy/staged-recipes,NOAA-ORR-ERD/staged-recipes,Cashalow/staged-recipes,stuertz/staged-recipes,scopatz/staged-recipes,jerowe/staged-recipes,jjhelmus/staged-recipes,dfroger/staged-recipes,birdsarah/staged-recipes,asmeurer/staged-recipes,vamega/staged-recipes,hajapy/staged-recipes,valgur/staged-recipes,gqmelo/staged-recipes,basnijholt/staged-recipes,kwilcox/staged-recipes,jerowe/staged-recipes,chrisburr/staged-recipes,jjhelmus/staged-recipes,jochym/staged-recipes,sannykr/staged-recipes,Savvysherpa/staged-recipes,hadim/staged-recipes,larray-project/staged-recipes,planetarypy/staged-recipes,synapticarbors/staged-recipes,ceholden/staged-recipes,benvandyke/staged-recipes,glemaitre/staged-recipes,khallock/staged-recipes,khallock/staged-recipes,caspervdw/staged-recipes,tylere/staged-recipes,Cashalow/staged-recipes,nicoddemus/staged-recipes,johannesring/staged-recipes,petrushy/staged-recipes,ReimarBauer/staged-recipes,planetarypy/staged-recipes,goanpeca/staged-recipes,conda-forge/staged-recipes,nicoddemus/staged-recipes,guillochon/staged-recipes,larray-project/staged-recipes,igortg/staged-recipes,SylvainCorlay/staged-recipes,benvandyke/staged-recipes,guillochon/staged-recipes,dfroger/staged-recipes,sodre/staged-recipes,jcb91/staged-recipes,jcb91/staged-recipes,mariusvniekerk/staged-recipes,tylere/staged-recipes,rmcgibbo/staged-recipes,johannesring/staged-recipes,asmeurer/staged-recipes,birdsarah/staged-recipes,hbredin/staged-recipes,dschreij/staged-recipes,rvalieris/staged-recipes,SylvainCorlay/staged-recipes,Juanlu001/staged-recipes,glemaitre/staged-recipes
02f5eb7456568ffb0d05c7a029710b98f05b3c30
recipes/scipy/meta.yaml
recipes/scipy/meta.yaml
{% set version = "0.18.1" %} package: name: scipy version: {{ version }} source: fn: scipy-{{ version }}.tar.gz url: https://pypi.io/packages/source/s/scipy/scipy-{{ version }}.tar.gz sha256: 8ab6e9c808bf2fb3e8576cd8cf07226d9cdc18b012c06d9708429a821ac6634e build: number: 0 requirements: build: - python - setuptools - cython - libgfortran - openblas 0.2.19 - numpy x.x run: - python - libgfortran - openblas 0.2.19 - numpy x.x test: requires: - nose about: home: http://www.scipy.org/ license: BSD 3-Clause license_file: LICENSE.txt summary: Scientific Library for Python description: | SciPy is a Python-based ecosystem of open-source software for mathematics, science, and engineering. doc_url: http://www.scipy.org/docs.html dev_url: https://github.com/scipy/scipy
{% set version = "0.19.0" %} package: name: scipy version: {{ version }} source: fn: scipy-{{ version }}.zip url: https://pypi.io/packages/source/s/scipy/scipy-{{ version }}.zip sha256: 4190d34bf9a09626cd42100bbb12e3d96b2daf1a8a3244e991263eb693732122 build: number: 0 requirements: build: - python - setuptools - cython - libgfortran - openblas 0.2.19 - numpy x.x run: - python - libgfortran - openblas 0.2.19 - numpy x.x test: requires: - nose about: home: http://www.scipy.org/ license: BSD 3-Clause license_file: LICENSE.txt summary: Scientific Library for Python description: | SciPy is a Python-based ecosystem of open-source software for mathematics, science, and engineering. doc_url: http://www.scipy.org/docs.html dev_url: https://github.com/scipy/scipy
Update scipy recipe to version 0.19.0
Update scipy recipe to version 0.19.0
YAML
bsd-3-clause
jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda,jjhelmus/berryconda
c438c582b9797b4defc9dca51eeaf90aca85c8c5
hieradata/class/staging/api_mongo.yaml
hieradata/class/staging/api_mongo.yaml
--- mongodb::server::replicaset_members: 'api-mongo-1': 'api-mongo-2': 'api-mongo-3': 'api-mongo-4':
--- mongodb::server::replicaset_members: 'api-mongo-1': 'api-mongo-2': 'api-mongo-3': 'api-mongo-4': priority: 0
Set api-mongo-4 to be a priority 0 node.
Set api-mongo-4 to be a priority 0 node.
YAML
mit
alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet,alphagov/govuk-puppet
295ee6fc3defb4c210f8fcb75b2b3d5d91da0683
conda-recipe/meta.yaml
conda-recipe/meta.yaml
package: name: blueksy version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: ../ build: # Note that this will override the default build string with the Python # and NumPy versions string: {{ environ.get('GIT_BUILD_STR', '') }}_np{{ np }}py{{ py }} requirements: build: - python >=3.4.3 run: - python >=3.4.3 - jsonschema - super_state_machine - lmfit - numpy - metadatastore - filestore - matplotlib - prettytable - cycler - traitlets - history test: requires: - nslsii_dev_configuration imports: - 'bluesky' - 'bluesky.examples' - 'bluesky.callbacks' - 'bluesky.register_mds' - 'bluesky.standard_config' about: home: https://github.com/NSLS-II/bluesky license: BSD
package: name: blueksy version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: ../ build: # Note that this will override the default build string with the Python # and NumPy versions string: {{ environ.get('GIT_BUILD_STR', '') }}_np{{ np }}py{{ py }} requirements: build: - python >=3.4.3 run: - python >=3.4.3 - jsonschema - super_state_machine - lmfit - numpy - metadatastore - filestore - matplotlib - prettytable - cycler - traitlets - historydict test: requires: - nslsii_dev_configuration imports: - 'bluesky' - 'bluesky.examples' - 'bluesky.callbacks' - 'bluesky.register_mds' - 'bluesky.standard_config' about: home: https://github.com/NSLS-II/bluesky license: BSD
Update conda recipe with historydict.
BLD: Update conda recipe with historydict.
YAML
bsd-3-clause
ericdill/bluesky,ericdill/bluesky
271e06bffeff2bc10ca7df4f6fac8775f8c7bbe3
conda-recipe/meta.yaml
conda-recipe/meta.yaml
{% set name = "pymt" %} {% set version = "0.1.1" %} package: name: {{ name }} version: {{ version }} source: path: .. requirements: build: - python - setuptools run: - python - setuptools - numpy - scipy >=0.17.0 - xarray - nose - shapely - netcdf4 - pyyaml - esmpy - cfunits-python - jinja2 - scripting - model_metadata test: requires: - nose - coverage [linux] commands: - nosetests --with-doctest --with-coverage --cover-package=pymt pymt [linux] - nosetests --with-doctest pymt [not linux] build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt about: home: http://github.com/csdms/pymt license: MIT license_file: LICENSE summary: The CSDMS Python Modeling Tools description: | pymt is the Python interface to the CSDMS modeling tools. It provides utilities that run, and couple models that expose the Basic Model Interface. doc_url: http://pymt.readthedocs.org dev_url: http://github.com/csdms/pymt
{% set name = "pymt" %} {% set version = "0.1.1" %} package: name: {{ name }} version: {{ version }} source: path: .. requirements: build: - python - setuptools run: - python - setuptools - numpy - scipy >=0.17.0 - matplotlib - xarray - nose - shapely - netcdf4 - pyyaml - esmpy - cfunits-python - jinja2 - scripting - model_metadata test: requires: - nose - coverage [linux] commands: - nosetests --with-doctest --with-coverage --cover-package=pymt pymt [linux] - nosetests --with-doctest pymt [not linux] build: number: 0 script: python setup.py install --single-version-externally-managed --record record.txt about: home: http://github.com/csdms/pymt license: MIT license_file: LICENSE summary: The CSDMS Python Modeling Tools description: | pymt is the Python interface to the CSDMS modeling tools. It provides utilities that run, and couple models that expose the Basic Model Interface. doc_url: http://pymt.readthedocs.org dev_url: http://github.com/csdms/pymt
Add matplotlib as a run requirement.
Add matplotlib as a run requirement.
YAML
mit
csdms/coupling,csdms/pymt,csdms/coupling
573dc2558474334a7080cb188fdbb4869f4364a1
prometheus-exporters/ucs-exporter/values.yaml
prometheus-exporters/ucs-exporter/values.yaml
ucs: enabled: false image: name: ucs-exporter tag: DEFINED-IN-REGION-SECRETS port_number: 9876 alerts: enabled: false prometheus: DEFINED-IN-REGION-SECRETS user: DEFINED-IN-REGION-SECRETS master_password: DEFINED-IN-REGION-SECRETS netbox_url: DEFINED-IN-REGION-SECRETS netbox_token: DEFINED-IN-REGION-SECRETS ucs_hostname_format: "ucscluster-{}.cc.{}.cloud.sap" tenant: "converged-cloud" query: "ucsa" status: "active" debug: "0" limits: memory: 100Mi cpu: 250m resources: memory: 50Mi cpu: 10m #optional #password: DEFINED-IN-REGION-SECRETS
ucs: enabled: false image: name: ucs-exporter tag: DEFINED-IN-REGION-SECRETS port_number: 9876 alerts: enabled: false prometheus: DEFINED-IN-REGION-SECRETS user: DEFINED-IN-REGION-SECRETS master_password: DEFINED-IN-REGION-SECRETS netbox_url: DEFINED-IN-REGION-SECRETS netbox_token: DEFINED-IN-REGION-SECRETS ucs_hostname_format: "ucscluster-{}.cc.{}.cloud.sap" tenant: "converged-cloud" query: "ucsa" status: "active" debug: "0" internal_cache_scrape_interval: DEFINED-IN-REGION-SECRETS limits: memory: 100Mi cpu: 250m resources: memory: 50Mi cpu: 10m #optional #password: DEFINED-IN-REGION-SECRETS
Define internal scrape interval in region secrets
Define internal scrape interval in region secrets Signed-off-by: Mithun Gore <[email protected]>
YAML
apache-2.0
sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts
1302ffc096b9754058b6b283c9aa5a26783ab905
data/transition-sites/dfid_stabilisation.yml
data/transition-sites/dfid_stabilisation.yml
--- site: dfid_stabilisation whitehall_slug: department-for-international-development title: Department for International Development redirection_date: July 1st 2014 homepage: https://www.gov.uk/government/organisations/department-for-international-development tna_timestamp: 20140102162323 host: www.stabilisationunit.gov.uk furl: www.gov.uk/dfid aliases: - stabilisationunit.gov.uk options: --query-string start
--- site: dfid_stabilisation whitehall_slug: department-for-international-development title: Department for International Development redirection_date: July 1st 2014 homepage: https://www.gov.uk/government/organisations/department-for-international-development tna_timestamp: 20140102162323 host: www.stabilisationunit.gov.uk furl: www.gov.uk/dfid aliases: - stabilisationunit.gov.uk
Remove unused significant query param
[DFID] Remove unused significant query param This looks like a pagination parameter. In any case, I wasn't able to see a difference when excluding or changing the value of it.
YAML
mit
alphagov/transition-config,alphagov/transition-config
a8203c17290e29e4ebf9e2f19aec542e6dbfd5ad
deployment/ansible/roles/nyc-trees.common/tasks/main.yml
deployment/ansible/roles/nyc-trees.common/tasks/main.yml
--- - name: Check if Puppet service definition exists stat: path=/etc/init.d/puppet register: puppet_installed when: "'development' in group_names" - name: Stop Puppet service service: name=puppet state=stopped when: puppet_installed.stat.exists and 'development' in group_names - name: Remove Puppet service file: path=/etc/init.d/puppet state=absent when: puppet_installed.stat.exists and 'development' in group_names
--- - name: Check if Puppet service definition exists stat: path=/etc/init.d/puppet register: puppet_installed when: "'development' in group_names" - name: Stop Puppet service service: name=puppet state=stopped when: puppet_installed.stat.exists and 'development' in group_names - name: Remove Puppet service file: path=/etc/init.d/puppet state=absent when: puppet_installed.stat.exists and 'development' in group_names - name: Check if Chef service definition exists stat: path=/etc/init.d/chef-client register: chef_installed when: "'development' in group_names" - name: Stop Chef service service: name=chef-client state=stopped when: chef_installed.stat.exists and 'development' in group_names - name: Remove Chef service file: path=/etc/init.d/chef-client state=absent when: chef_installed.stat.exists and 'development' in group_names
Remove Chef service in development
Remove Chef service in development The Ubuntu 14.04 (Trusty) Vagrant box has the `chef-client` service running by default. This changeset removes the `chef-client` service if it exists in development.
YAML
agpl-3.0
kdeloach/nyc-trees,RickMohr/nyc-trees,maurizi/nyc-trees,azavea/nyc-trees,azavea/nyc-trees,kdeloach/nyc-trees,RickMohr/nyc-trees,maurizi/nyc-trees,maurizi/nyc-trees,azavea/nyc-trees,azavea/nyc-trees,maurizi/nyc-trees,RickMohr/nyc-trees,azavea/nyc-trees,RickMohr/nyc-trees,kdeloach/nyc-trees,kdeloach/nyc-trees,kdeloach/nyc-trees
511fcc8000bd8acad462d58dc06e9dafecebd650
docker-compose.yml
docker-compose.yml
postgres: image: zooniverse/postgresql environment: - "PG_USER=panoptes" - "DB=panoptes_development" - "PASS=panoptes" zookeeper: image: zooniverse/zookeeper command: /usr/share/zookeeper/bin/zkServer.sh start-foreground -c localhost:2888:3888 -i 1 redis: image: redis command: redis-server --appendonly yes kafka: image: zooniverse/kafka links: - zookeeper:zk hostname: kafka command: -i 1 -H kafka -p 9092 -z zk:2181 panoptes: build: ./ volumes: - ./:/rails_app ports: - "3000:80" environment: RAILS_ENV: development links: - postgres - zookeeper:zk - kafka - redis
postgres: image: zooniverse/postgresql environment: - "PG_USER=panoptes" - "DB=panoptes_development" - "PASS=panoptes" zookeeper: image: zooniverse/zookeeper command: /usr/share/zookeeper/bin/zkServer.sh start-foreground -c localhost:2888:3888 -i 1 redis: image: redis command: redis-server --appendonly yes kafka: image: zooniverse/kafka links: - zookeeper:zk hostname: kafka command: -i 1 -H kafka -p 9092 -z zk:2181 panoptes: dockerfile: dockerfiles/Dockerfile.dev build: ./ volumes: - ./:/rails_app ports: - "3000:80" environment: RAILS_ENV: development links: - postgres - zookeeper:zk - kafka - redis
Use dockerfile option to use alternate dockerfile
Use dockerfile option to use alternate dockerfile
YAML
apache-2.0
parrish/Panoptes,zooniverse/Panoptes,zooniverse/Panoptes,zooniverse/Panoptes,astopy/Panoptes,camallen/Panoptes,srallen/Panoptes,astopy/Panoptes,camallen/Panoptes,rogerhutchings/Panoptes,astopy/Panoptes,edpaget/Panoptes,edpaget/Panoptes,srallen/Panoptes,rogerhutchings/Panoptes,srallen/Panoptes,camallen/Panoptes,camallen/Panoptes,parrish/Panoptes,astopy/Panoptes,zooniverse/Panoptes,edpaget/Panoptes,edpaget/Panoptes,parrish/Panoptes,rogerhutchings/Panoptes,rogerhutchings/Panoptes,parrish/Panoptes,srallen/Panoptes
670ab0796209c631cfeced954a0ec33454cd60a5
gherkin/go/.travis.yml
gherkin/go/.travis.yml
language: go sudo: false go: - 1.3 - 1.4 - 1.5 - 1.6 - tip script: - "export GOPATH=" # fixes 'local import "../" in non-local package' error - "make"
language: go sudo: false go: - 1.3 - 1.4 - 1.5 - 1.6 - 1.7 - 1.8 - tip script: - "export GOPATH=" # fixes 'local import "../" in non-local package' error - "make"
Build on Go 1.7 and 1.8 on Travis
gherkin-go: Build on Go 1.7 and 1.8 on Travis
YAML
mit
cucumber/cucumber,cucumber/cucumber,cucumber/cucumber,cucumber/cucumber,cucumber/cucumber,cucumber/cucumber,cucumber/cucumber,cucumber/cucumber,cucumber/cucumber,cucumber/cucumber,cucumber/cucumber,cucumber/cucumber
8be495b0a56a667d89e52389a2c933add6e7eee3
roles/geerlingguy.repo-remi/defaults/main.yml
roles/geerlingguy.repo-remi/defaults/main.yml
--- remi_repo_url: "http://rpms.remirepo.net/enterprise/remi-release-{{ ansible_distribution_major_version }}.rpm" remi_repo_gpg_key_url: "http://rpms.remirepo.net/RPM-GPG-KEY-remi"
--- remi_base_url: "https://keitarotds.com/mirrors/remi" remi_repo_url: "{{ remi_base_url }}/enterprise/remi-release-{{ ansible_distribution_major_version }}.rpm" remi_repo_gpg_key_url: "{{ remi_base_url }}/RPM-GPG-KEY-remi"
Install remi rpm from keitarods mirror
Install remi rpm from keitarods mirror
YAML
mit
keitarocorp/centos_provision,keitarocorp/centos_provision
1432d1244b051405991fd84c1cc2408f5f15e7ae
metadata/com.sunilpaulmathew.snotz.yml
metadata/com.sunilpaulmathew.snotz.yml
Categories: - Writing - Security License: GPL-3.0-or-later AuthorName: sunilpaulmathew AuthorEmail: [email protected] AuthorWebSite: https://smartpack.github.io SourceCode: https://github.com/sunilpaulmathew/sNotz IssueTracker: https://github.com/sunilpaulmathew/sNotz/issues Changelog: https://github.com/sunilpaulmathew/sNotz/releases Donate: https://smartpack.github.io/donation AutoName: sNotz RepoType: git Repo: https://github.com/sunilpaulmathew/sNotz Builds: - versionName: v0.13 versionCode: 13 commit: v0.13 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - fdroid AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: v0.13 CurrentVersionCode: 13
Categories: - Writing - Security License: GPL-3.0-or-later AuthorName: sunilpaulmathew AuthorEmail: [email protected] AuthorWebSite: https://smartpack.github.io SourceCode: https://github.com/sunilpaulmathew/sNotz IssueTracker: https://github.com/sunilpaulmathew/sNotz/issues Changelog: https://github.com/sunilpaulmathew/sNotz/releases Donate: https://smartpack.github.io/donation AutoName: sNotz RepoType: git Repo: https://github.com/sunilpaulmathew/sNotz Builds: - versionName: v0.13 versionCode: 13 commit: v0.13 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - fdroid - versionName: v0.14 versionCode: 14 commit: a05bc799c942502e702cecc894cb15667aa2f548 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - fdroid AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: v0.14 CurrentVersionCode: 14
Update sNotz to v0.14 (14)
Update sNotz to v0.14 (14)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
c523912a1817f6b91b31ac2f5b5080ac2516cfc2
build.yaml
build.yaml
repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_annotation: com.google.code.findbugs:jsr305:jar:3.0.0 javax_javaee: javax:javaee-api:jar:7.0 gwt_user: com.google.gwt:gwt-user:jar:2.6.1 # # GIN and associated dependencies gwt_gin: com.google.gwt.inject:gin:jar:2.1.2 google_guice: com.google.inject:guice:jar:3.0 google_guice_assistedinject: com.google.inject.extensions:guice-assistedinject:jar:3.0 aopalliance: aopalliance:aopalliance:jar:1.0 # Required for guice # Test deps jndikit: org.realityforge.jndikit:jndikit:jar:1.4 javax_json_impl: org.glassfish:javax.json:jar:1.0.3 guiceyloops: org.realityforge.guiceyloops:guiceyloops:jar:0.38 # # Mocking library mockito: org.mockito:mockito-all:jar:1.9.5 simple_session_filter: org.realityforge.ssf:simple-session-filter:jar:0.2 gwt_property_source: org.realityforge.gwt.property-source:gwt-property-source:jar:0.2
repositories: remote: - http://repo1.maven.org/maven2 artifacts: javax_annotation: com.google.code.findbugs:jsr305:jar:3.0.0 javax_javaee: javax:javaee-api:jar:7.0 gwt_user: com.google.gwt:gwt-user:jar:2.6.1 # # GIN and associated dependencies gwt_gin: com.google.gwt.inject:gin:jar:2.1.2 google_guice: com.google.inject:guice:jar:3.0 google_guice_assistedinject: com.google.inject.extensions:guice-assistedinject:jar:3.0 aopalliance: aopalliance:aopalliance:jar:1.0 # Required for guice # Test deps jndikit: org.realityforge.jndikit:jndikit:jar:1.4 javax_json_impl: org.glassfish:javax.json:jar:1.0.3 guiceyloops: org.realityforge.guiceyloops:guiceyloops:jar:0.38 # # Mocking library mockito: org.mockito:mockito-all:jar:1.9.5 simple_session_filter: org.realityforge.ssf:simple-session-filter:jar:0.4 gwt_property_source: org.realityforge.gwt.property-source:gwt-property-source:jar:0.2
Move to latest session filter
Move to latest session filter
YAML
apache-2.0
realityforge/replicant,realityforge/replicant
21cd9322eb67517ec9a4ad84d4f7dd8fc3b42ac5
openstack/keppel/templates/ingress-api.yaml
openstack/keppel/templates/ingress-api.yaml
kind: Ingress {{- if .Capabilities.APIVersions.Has "networking.k8s.io/v1beta1" }} apiVersion: networking.k8s.io/v1beta1 {{- else }} apiVersion: extensions/v1beta1 {{- end }} metadata: name: keppel-api annotations: vice-president: "true" disco: "true" spec: tls: - secretName: tls-keppel-api hosts: [ keppel.{{ .Values.global.region }}.{{ .Values.global.tld }} ] rules: - host: keppel.{{ .Values.global.region }}.{{ .Values.global.tld }} http: paths: - path: / backend: serviceName: keppel-api servicePort: 80
kind: Ingress {{- if .Capabilities.APIVersions.Has "networking.k8s.io/v1beta1" }} apiVersion: networking.k8s.io/v1beta1 {{- else }} apiVersion: extensions/v1beta1 {{- end }} metadata: name: keppel-api annotations: vice-president: "true" disco: "true" spec: tls: - secretName: tls-keppel-api hosts: [ keppel.{{ .Values.global.region }}.{{ .Values.global.tld }} {{- range $index, $san := .Values.keppel.sans }}, {{ $san }}{{ end }} ] rules: - host: keppel.{{ .Values.global.region }}.{{ .Values.global.tld }} http: paths: - path: / backend: serviceName: keppel-api servicePort: 80
Allow SANs for generated SSL certs
Allow SANs for generated SSL certs
YAML
apache-2.0
sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts,sapcc/helm-charts
8cf1d7aa0b563cc871b5c69bafc7bf201d2283ed
.github/workflows/tests.yml
.github/workflows/tests.yml
name: CI tests on: push: branches: - master - develop - release* pull_request: jobs: test: name: Run tests runs-on: ubuntu-latest strategy: matrix: # Use the latest version of Node.js, plus the 2 most recent LTS lines node-version: - latest - lts/* - lts/-1 steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: npm - name: Install dependencies run: npm ci - name: Run tests run: npm test
name: CI tests on: push: branches: - master - develop - release* pull_request: jobs: test: name: Run tests runs-on: ubuntu-latest strategy: matrix: # Use the latest version of Node.js, plus the 3 most recent LTS lines node-version: - latest - lts/* - lts/-1 - lts/-2 # Probably EOL depending on release schedules, but still good to test steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} cache: npm - name: Install dependencies run: npm ci - name: Run tests run: npm test
Add another LTS version to Node.js testing matrix
ci: Add another LTS version to Node.js testing matrix
YAML
mit
moment/moment-timezone,moment/moment-timezone
5dd9cf5f9eb6c4ab7a625bf01196a8ebdead223a
circle.yml
circle.yml
machine: timezone: America/Los_Angeles dependencies: pre: - sudo apt-get update; \ sudo apt-get install gcc-5 \ sudo apt-get install g++-5 test: pre: - make post: - ./helloworld
machine: timezone: America/Los_Angeles dependencies: pre: - sudo apt-get update; sudo apt-get install gcc-5; sudo apt-get install g++-5 test: pre: - make post: - ./helloworld
Change to a single line with semi-colon
Change to a single line with semi-colon
YAML
apache-2.0
winksaville/test
a38d36b9c432e958995092e25b20305192af67fd
circle.yml
circle.yml
test: override: - npm run ci - if [[ -e junitresults.xml ]]; then cp junitresults.xml $CIRCLE_TEST_REPORTS/test-results.xml; fi post: - npm run semantic-release || true
machine: node: version: 6.1.0 test: override: - npm run ci - if [[ -e junitresults.xml ]]; then cp junitresults.xml $CIRCLE_TEST_REPORTS/test-results.xml; fi post: - npm run semantic-release || true
Set node version in CI config
chore: Set node version in CI config
YAML
mit
lingui/js-lingui,lingui/js-lingui
71b097ec252d94abcd74a0c8fddc3701ebd0c028
dev/fixtures/elementtype.yml
dev/fixtures/elementtype.yml
ElementType: ElementType_1: name: Text Input class: TextInputElement ElementType_2: name: Radio Buttons class: RadioListElement ElementType_3: name: Dropdown List class: SelectListElement ElementType_4: name: Checkboxes class: CheckboxListElement ElementType_5: name: Text Area class: TextareaElement ElementType_6: name: PDF Upload class: PDFFileInputElement ElementType_7: name: Ranking List class: RankingListElement
ElementType: ElementType_1: name: Text Input class: TextInputElement ElementType_2: name: Radio Buttons class: RadioListElement ElementType_3: name: Dropdown List class: SelectListElement ElementType_4: name: Checkboxes class: CheckboxListElement ElementType_5: name: Text Area class: TextareaElement ElementType_6: name: PDF Upload class: PDFFileInputElement ElementType_7: name: Ranking List class: RankingListElement ElementType_8: name: Date class: DateElement ElementType_9: name: Short Date class: ShortDateElement
Add Date elements to fixtures.
Add Date elements to fixtures.
YAML
bsd-3-clause
Jazzee/Jazzee,Jazzee/Jazzee,Jazzee/Jazzee,Jazzee/Jazzee,Jazzee/Jazzee,Jazzee/Jazzee
220b2b0594f23058c3d9b0ce61568cc264d7524a
circle.yml
circle.yml
machine: java: version: oraclejdk8 environment: JVM_OPTS: "-Xmx2G -Xms256M -Xss2M" dependencies: cache_directories: - ~/.sbt post: - sbt test:compile test: override: - sbt test
machine: java: version: oraclejdk8 environment: JVM_OPTS: "-Xmx2G -Xms256M -Xss2M" dependencies: cache_directories: - ~/.sbt post: - sbt test:compile test: override: - sbt test notify: webhooks: - url: https://webhooks.gitter.im/e/1d346a287a3abc3d81c1
Add hook to notify gitter
Add hook to notify gitter
YAML
mit
ttdoda/MyFleetGirls,ponkotuy/MyFleetGirls,ponkotuy/MyFleetGirls,ttdoda/MyFleetGirls,ponkotuy/MyFleetGirls,ttdoda/MyFleetGirls,ponkotuy/MyFleetGirls,ttdoda/MyFleetGirls
cf3e04a8843b9625c6c35b2ffdb1cc2043d69052
circle.yml
circle.yml
machine: environment: PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" node: version: "stable" dependencies: override: - yarn install --no-lockfile cache_directories: - ~/.cache/yarn test: override: - yarn test
machine: environment: PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" node: version: "stable" dependencies: override: - yarn cache_directories: - ~/.cache/yarn test: override: - yarn test
Allow Yarn lockfile on CircleCI
Allow Yarn lockfile on CircleCI
YAML
mit
kpfefferle/ember-cli-deploy-cloudfront
6136fc74e903b2ae450fd308429e60857f2b40a2
circle.yml
circle.yml
machine: services: - redis dependencies: cache_directories: - mongodb-linux-x86_64-3.2.4 - elasticsearch-1.4.3 pre: - if [[ ! -d mongodb-linux-x86_64-3.2.4 ]]; then wget http://downloads.mongodb.org/linux/mongodb-linux-x86_64-3.2.4.tgz && tar xvzf mongodb-linux-x86_64-3.2.4.tgz; fi - sudo /etc/init.d/mongodb stop - sudo cp mongodb-linux-x86_64-3.2.4/bin/* /usr/bin - sudo /etc/init.d/mongodb start - if [[ ! -d elasticsearch-1.4.3 ]]; then wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.4.3.tar.gz && tar xvzf elasticsearch-1.4.3.tar.gz; fi - elasticsearch-1.4.3/bin/plugin install elasticsearch/elasticsearch-analysis-icu/2.4.1 - elasticsearch-1.4.3/bin/elasticsearch: {background: true} override: - pip install -r requirements/travis.pip test: override: - nosetests --immediate --with-coverage udata post: - coveralls --rcfile=coverage.rc
machine: services: - redis dependencies: cache_directories: - mongodb-linux-x86_64-3.2.4 - elasticsearch-1.7.3 pre: - if [[ ! -d mongodb-linux-x86_64-3.2.4 ]]; then wget http://downloads.mongodb.org/linux/mongodb-linux-x86_64-3.2.4.tgz && tar xvzf mongodb-linux-x86_64-3.2.4.tgz; fi - sudo /etc/init.d/mongodb stop - sudo cp mongodb-linux-x86_64-3.2.4/bin/* /usr/bin - sudo /etc/init.d/mongodb start - if [[ ! -d elasticsearch-1.7.3 ]]; then wget https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.7.3.tar.gz && tar xvzf elasticsearch-1.7.3.tar.gz; fi - elasticsearch-1.7.3/bin/plugin install elasticsearch/elasticsearch-analysis-icu/2.7.0 - elasticsearch-1.7.3/bin/elasticsearch: {background: true} override: - pip install -r requirements/travis.pip test: override: - nosetests --immediate --with-coverage udata post: - coveralls --rcfile=coverage.rc
Upgrade ES and ICU for CircleCI
Upgrade ES and ICU for CircleCI
YAML
agpl-3.0
etalab/udata,jphnoel/udata,opendatateam/udata,etalab/udata,opendatateam/udata,jphnoel/udata,davidbgk/udata,opendatateam/udata,davidbgk/udata,etalab/udata,davidbgk/udata,jphnoel/udata
0ec7f2772c40a2276afcf26002450800e8725fc5
.github/workflows/travis-ci-gha.yml
.github/workflows/travis-ci-gha.yml
name: Run Travis CI on: push: pull_request: # tags: # - v[0-9]+.[0-9]+.[0-9]+ # - v[0-9]+.[0-9]+.[0-9]+.[0-9]+ jobs: run-scripts: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: setup tasks env: IMAGE: centos:centos7 TASK: tests COMPONENTS: udt,myproxy,ssh run: travis-ci/setup_tasks.sh - name: setup tasks 2 env: IMAGE: centos:centos7 TASK: tests COMPONENTS: gram5 run: travis-ci/setup_tasks.sh
name: Run Travis CI on: push: pull_request: # tags: # - v[0-9]+.[0-9]+.[0-9]+ # - v[0-9]+.[0-9]+.[0-9]+.[0-9]+ jobs: run-scripts: runs-on: ubuntu-latest env: IMAGE: centos:centos7 TASK: tests COMPONENTS: udt,myproxy,ssh steps: - uses: actions/checkout@v2 - name: setup tasks env: IMAGE: centos:centos7 TASK: tests COMPONENTS: udt,myproxy,ssh run: travis-ci/setup_tasks.sh - name: setup tasks 2 env: IMAGE: centos:centos7 TASK: tests COMPONENTS: gram5 run: travis-ci/setup_tasks.sh
Add environment variables and workflow_dispatch
Add environment variables and workflow_dispatch
YAML
apache-2.0
gridcf/gct,gridcf/gct,gridcf/gct,gridcf/gct,gridcf/gct,gridcf/gct
0a33bf9957ad9ac307d8a8a9948bf5029e869efd
test/stack.yaml
test/stack.yaml
# Upgrade the resolver semi-regularly so that in Appveyor the "stack init" # and the below resolver can share at least the compiler resolver: nightly-2019-06-28 packages: [foo, bar, baz] ghc-options: "$locals": -Werror -Wunused-binds -Wunused-imports -Wno-missing-home-modules -optP-Wno-nonportable-include-path
# Upgrade the resolver semi-regularly so that in Appveyor the "stack init" # and the below resolver can share at least the compiler resolver: nightly-2019-06-28 packages: [foo, bar, baz] ghc-options: "$locals": -ddump-to-file -ddump-hi -Werror -Wunused-binds -Wunused-imports -Wno-missing-home-modules -optP-Wno-nonportable-include-path
Add required GHC options to $locals
Add required GHC options to $locals
YAML
bsd-3-clause
ndmitchell/weeder
ab052c1f601f5623c794669293df9775c92e08e4
packages/ac/accelerate-arithmetic.yaml
packages/ac/accelerate-arithmetic.yaml
homepage: http://hub.darcs.net/thielema/accelerate-arithmetic/ changelog-type: '' hash: c85729b4a82dd90884140285e5c9d08d34860a93a3ffbac13077737434142260 test-bench-deps: accelerate-utility: -any accelerate-arithmetic: -any base: -any accelerate: -any QuickCheck: -any maintainer: Henning Thielemann <[email protected]> synopsis: Linear algebra and interpolation using the Accelerate framework changelog: '' basic-deps: accelerate-utility: ! '>=0.1 && <0.2' base: ! '>=4.5 && <4.10' utility-ht: ! '>=0.0.8 && <0.1' accelerate: ! '>=0.15 && <0.16' QuickCheck: ! '>=2.4 && <3' all-versions: - '0.0' - '0.0.1' - '0.1' author: Henning Thielemann <[email protected]> latest: '0.1' description-type: haddock description: ! 'Linear algebra and interpolation via the @accelerate@ package. This can be used for computations on GPUs but it does not contain processor optimizations or optimizations for CUDA.' license-name: BSD3
homepage: http://hub.darcs.net/thielema/accelerate-arithmetic/ changelog-type: '' hash: 85d3c7ecc477227114f04cbbdbfda115dcc350ba76affc85bbe122197262cd92 test-bench-deps: accelerate-utility: -any accelerate-arithmetic: -any base: -any accelerate: -any QuickCheck: -any maintainer: Henning Thielemann <[email protected]> synopsis: Linear algebra and interpolation using the Accelerate framework changelog: '' basic-deps: accelerate-utility: ! '>=1.0 && <1.1' base: ! '>=4.5 && <4.11' utility-ht: ! '>=0.0.8 && <0.1' accelerate: ! '>=1.0 && <1.2' QuickCheck: ! '>=2.4 && <3' all-versions: - '0.0' - '0.0.1' - '0.1' - '1.0' author: Henning Thielemann <[email protected]> latest: '1.0' description-type: haddock description: ! 'Linear algebra and interpolation via the @accelerate@ package. This can be used for computations on GPUs but it does not contain processor optimizations or optimizations for CUDA.' license-name: BSD3
Update from Hackage at 2017-11-28T20:59:32Z
Update from Hackage at 2017-11-28T20:59:32Z
YAML
mit
commercialhaskell/all-cabal-metadata
3116dbdfb546a0f0edddf5b18e6f17ea3f405169
core/src/main/assets/migrations/32.yaml
core/src/main/assets/migrations/32.yaml
up: - CREATE TABLE ForeignKeyViolation (_id INTEGER PRIMARY KEY AUTOINCREMENT, fromTable TEXT, fromColumn TEXT, toTable TEXT, toColumn TEXT, notFoundValue TEXT, fromObjectUid TEXT, fromObjectRow TEXT);
up: - CREATE TABLE ForeignKeyViolation (_id INTEGER PRIMARY KEY AUTOINCREMENT, fromTable TEXT, fromColumn TEXT, toTable TEXT, toColumn TEXT, notFoundValue TEXT, fromObjectUid TEXT, fromObjectRow TEXT, deletionDate TEXT);
Add deletionDate to migration table
[ANDROSDK-444] Add deletionDate to migration table
YAML
bsd-3-clause
dhis2/dhis2-android-sdk,dhis2/dhis2-android-sdk,dhis2/dhis2-android-sdk
f955828f1e626c4cb51d24f0bba183d6a1d2698a
metadata/com.gsnathan.pdfviewer.yml
metadata/com.gsnathan.pdfviewer.yml
Categories: - Reading License: MIT SourceCode: https://github.com/JavaCafe01/PdfViewer IssueTracker: https://github.com/JavaCafe01/PdfViewer/issues Donate: https://www.paypal.me/gsnathan AutoName: Pdf Viewer Plus Summary: A simple PDF viewer Description: Pdf Viewer Plus is a smooth PDF viewer written in Java. It contains a simple user interface, multiple themes, and the ability to share a PDF. RepoType: git Repo: https://github.com/JavaCafe01/PdfViewer Builds: - versionName: '2.4' versionCode: 15 commit: v2.4 subdir: app gradle: - yes - versionName: '2.5' versionCode: 16 commit: v2.5 subdir: app gradle: - yes - versionName: '2.6' versionCode: 17 commit: v2.6 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags ^v[0-9.]+$ CurrentVersion: '2.6' CurrentVersionCode: 17
Categories: - Reading License: MIT SourceCode: https://github.com/JavaCafe01/PdfViewer IssueTracker: https://github.com/JavaCafe01/PdfViewer/issues Donate: https://www.paypal.me/gsnathan AutoName: Pdf Viewer Plus Summary: A simple PDF viewer Description: Pdf Viewer Plus is a smooth PDF viewer written in Java. It contains a simple user interface, multiple themes, and the ability to share a PDF. RepoType: git Repo: https://github.com/JavaCafe01/PdfViewer Builds: - versionName: '2.4' versionCode: 15 commit: v2.4 subdir: app gradle: - yes - versionName: '2.5' versionCode: 16 commit: v2.5 subdir: app gradle: - yes - versionName: '2.6' versionCode: 17 commit: v2.6 subdir: app gradle: - yes - versionName: '2.7' versionCode: 18 commit: v2.7 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags ^v[0-9.]+$ CurrentVersion: '2.7' CurrentVersionCode: 18
Update Pdf Viewer Plus to 2.7 (18)
Update Pdf Viewer Plus to 2.7 (18)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata,f-droid/fdroid-data
8f9c9e09cbd3728f561027c811085f37f3b635f5
hieradata/nodes/bgo/bgo-login-01.yaml
hieradata/nodes/bgo/bgo-login-01.yaml
--- network::interfaces_hash: 'eth0': ipaddress: '172.28.0.10' netmask: '255.255.255.0' defroute: 'no' onboot: 'yes' 'eth2': ipaddress: '172.16.0.10' netmask: '255.255.248.0' defroute: 'no' onboot: 'yes' dns1: '129.177.6.54' dns2: "%{hiera('netcfg_dns_server2')}" domain: "%{hiera('netcfg_dns_search')} mgmt.test.iaas.intern" peerdns: 'yes' 'eth3': ipaddress: '172.17.0.10' netmask: '255.255.248.0' defroute: 'no' onboot: 'yes'
--- network::interfaces_hash: 'eth0': ipaddress: '172.28.0.10' netmask: '255.255.255.0' defroute: 'no' onboot: 'yes' 'eth2': ipaddress: '172.16.0.10' netmask: '255.255.248.0' defroute: 'no' onboot: 'yes' dns1: '129.177.6.54' dns2: "%{hiera('netcfg_dns_server2')}" domain: "%{hiera('netcfg_dns_search')} mgmt.test.iaas.intern" peerdns: 'yes' 'eth2:1': ipaddress: '10.17.0.10' netmask: '255.255.255.0' defroute: 'no' onboot: 'yes' 'eth3': ipaddress: '172.17.0.10' netmask: '255.255.248.0' defroute: 'no' onboot: 'yes'
Add virtual mgmt interface for mgmt of mgmt
Add virtual mgmt interface for mgmt of mgmt
YAML
apache-2.0
TorLdre/himlar,mikaeld66/himlar,eckhart/himlar,mikaeld66/himlar,norcams/himlar,eckhart/himlar,TorLdre/himlar,norcams/himlar,tanzr/himlar,TorLdre/himlar,raykrist/himlar,raykrist/himlar,tanzr/himlar,tanzr/himlar,tanzr/himlar,eckhart/himlar,eckhart/himlar,raykrist/himlar,raykrist/himlar,TorLdre/himlar,mikaeld66/himlar,raykrist/himlar,norcams/himlar,mikaeld66/himlar,TorLdre/himlar,mikaeld66/himlar,norcams/himlar,tanzr/himlar,norcams/himlar
897d96c201b1fd2597640800537c53e7f79bf056
.forestry/front_matter/templates/tutorial.yml
.forestry/front_matter/templates/tutorial.yml
--- label: Tutorial hide_body: false fields: - name: layout label: Layout type: text hidden: true default: post - name: title label: Title type: text hidden: false default: Título - type: text name: description label: Subtiulo description: Max 70 char - name: date label: Date type: datetime hidden: false default: '2019-02-21T03:00:00.000+00:00' - name: image label: Img type: file hidden: false default: "/images/tutorial.png" - name: tags2 label: Tags type: tag_list hidden: false default: - tutorial - name: tags type: list config: use_select: false min: max: label: Tags - name: comments label: Comments type: boolean hidden: true default: true pages: - _posts/adicionando-um-novo-projeto-na-lista-da-hacktoberfest-2019.md - _posts/2019-04-13-kmeans-and-elbow-method.md - _posts/2019-06-03-como-ser-cientista-de-dados-usando-um-computador-da-xuxa.md
--- label: Tutorial hide_body: false fields: - name: layout label: Layout type: text hidden: true default: post - name: title label: Title type: text hidden: false default: Título - type: text name: description label: Subtiulo description: Max 70 char - name: date label: Date type: datetime hidden: false default: '2019-02-21T03:00:00.000+00:00' - name: image label: Img type: file hidden: false default: "/images/tutorial.png" - name: tags type: list config: use_select: false min: '1' max: label: Tags - name: comments label: Comments type: boolean hidden: true default: true pages: - _posts/adicionando-um-novo-projeto-na-lista-da-hacktoberfest-2019.md - _posts/2019-04-13-kmeans-and-elbow-method.md - _posts/2019-06-03-como-ser-cientista-de-dados-usando-um-computador-da-xuxa.md
Update from Forestry.io - Updated Forestry configuration
Update from Forestry.io - Updated Forestry configuration
YAML
mit
jtemporal/jtemporal.github.io,jtemporal/jtemporal.github.io
a17a57b804b776218e3716015ab3d9792b3297d9
metadata/com.termoneplus.yml
metadata/com.termoneplus.yml
Categories: - System License: Apache-2.0 SourceCode: https://gitlab.com/termapps/termoneplus IssueTracker: https://gitlab.com/termapps/termoneplus/issues AutoName: Terminal Emulator Description: |- "TermOne Plus" is a terminal emulator for communicating with the built-in Android shell. It emulates a reasonably large subset of Digital Equipment Corporation VT-100 terminal codes. Supported terminal types include vt100, screen (default), linux and xterm. As result console programs like "vi" (unix visual editor), "emacs", "mc" (Midnight Commander file manager), nano (Nano's ANOther editor) and other work smoothly. This application is a clone of Jack Palevich's [[jackpal.androidterm]]. RepoType: git Repo: https://gitlab.com/termapps/termoneplus Builds: - versionName: 3.0.0 versionCode: 300 commit: v3.0.0 subdir: term gradle: - yes ndk: r17c AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 3.0.0 CurrentVersionCode: 300
Categories: - System License: Apache-2.0 SourceCode: https://gitlab.com/termapps/termoneplus IssueTracker: https://gitlab.com/termapps/termoneplus/issues AutoName: Terminal Emulator Description: |- "TermOne Plus" is a terminal emulator for communicating with the built-in Android shell. It emulates a reasonably large subset of Digital Equipment Corporation VT-100 terminal codes. Supported terminal types include vt100, screen (default), linux and xterm. As result console programs like "vi" (unix visual editor), "emacs", "mc" (Midnight Commander file manager), nano (Nano's ANOther editor) and other work smoothly. This application is a clone of Jack Palevich's [[jackpal.androidterm]]. RepoType: git Repo: https://gitlab.com/termapps/termoneplus Builds: - versionName: 3.0.0 versionCode: 300 commit: v3.0.0 subdir: term gradle: - yes ndk: r17c - versionName: 3.1.0 versionCode: 310 commit: v3.1.0 subdir: term gradle: - yes ndk: r17c AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 3.1.0 CurrentVersionCode: 310
Update Terminal Emulator to 3.1.0 (310)
Update Terminal Emulator to 3.1.0 (310)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
ea6c44da3d08495fd13e1068024212d9a860ab79
metadata/cos.premy.mines.yml
metadata/cos.premy.mines.yml
Categories: - Games License: GPL-3.0-only AuthorName: Přemysl Šťastný AuthorEmail: [email protected] SourceCode: https://github.com/stastnypremysl/Mines3D IssueTracker: https://github.com/stastnypremysl/Mines3D/issues AutoName: Mines3D Description: |- Do you like challenges? Let's try one harder. The first task is to understand the rules of the game. The second one is to win it. RepoType: git Repo: https://github.com/stastnypremysl/Mines3D.git Builds: - versionName: 1.2.1 versionCode: 4 commit: '1.3' subdir: app gradle: - yes ndk: r21d AutoUpdateMode: None UpdateCheckMode: Tags CurrentVersion: 1.4.1 CurrentVersionCode: 6
Categories: - Games License: GPL-3.0-only AuthorName: Přemysl Šťastný AuthorEmail: [email protected] SourceCode: https://github.com/stastnypremysl/Mines3D IssueTracker: https://github.com/stastnypremysl/Mines3D/issues AutoName: Mines3D Description: |- Do you like challenges? Let's try one harder. The first task is to understand the rules of the game. The second one is to win it. RepoType: git Repo: https://github.com/stastnypremysl/Mines3D.git Builds: - versionName: 1.2.1 versionCode: 4 commit: '1.3' subdir: app gradle: - yes ndk: r21d - versionName: 1.4.1 versionCode: 6 commit: 1.4.1 subdir: app gradle: - yes ndk: r21d AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.4.1 CurrentVersionCode: 6
Update Mines3D to 1.4.1 (6) and enable AUM
Update Mines3D to 1.4.1 (6) and enable AUM
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
af2ebd349aa5a8b60c583f124001b7a2a324ae0a
packages/dm/dmc.yaml
packages/dm/dmc.yaml
homepage: https://github.com/ciez/dmc changelog-type: markdown hash: 7685f0cc6b1a0e3da3ef44a1972ce7952825871ca5aa45b133ae4bceb8569e42 test-bench-deps: base: ! '>=4.8' hspec: ! '>=2.1.7' process: ! '>=1.3.0.0' dmc: -any QuickCheck: ! '>=2.8.1' maintainer: Imants Cekusins synopsis: cmd for common cases changelog: ! "##### 1.0\n initial version\n \n test pass \n " basic-deps: base: ! '>=4.8 && <5.0' process: ! '>=1.3.0.0' all-versions: - '1.0' author: Imants Cekusins latest: '1.0' description-type: haddock description: run shell commands from code license-name: PublicDomain
homepage: https://github.com/ciez/dmc changelog-type: markdown hash: bbfdc9f3df4e63dc9f3439dcbc2895f0aaaaad6adeaac9c155e91d19d187e4f8 test-bench-deps: base: ! '>=4.8' hspec: ! '>=2.1.7' process: ! '>=1.3.0.0' dmc: -any QuickCheck: ! '>=2.8.1' maintainer: Imants Cekusins synopsis: cmd for common cases changelog: ! "##### 1.1\n fix failing test on NixOS\n\n##### 1.0\n initial version\n \n test pass \n " basic-deps: base: ! '>=4.8 && <5.0' process: ! '>=1.3.0.0' all-versions: - '1.0' - '1.1' author: Imants Cekusins latest: '1.1' description-type: haddock description: run shell commands from code license-name: PublicDomain
Update from Hackage at 2016-12-08T15:56:26Z
Update from Hackage at 2016-12-08T15:56:26Z
YAML
mit
commercialhaskell/all-cabal-metadata
3788e9733e1ad4d9e3f5e8b6dc7c5ffe2f4d611a
.github/workflows/automerge.yml
.github/workflows/automerge.yml
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'MySQL tests' - 'PostgreSQL tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/[email protected] with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'MySQL tests' - 'PostgreSQL tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/[email protected] with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
Bump ridedott/merge-me-action from 2.9.42 to 2.9.47
Bump ridedott/merge-me-action from 2.9.42 to 2.9.47 Bumps [ridedott/merge-me-action](https://github.com/ridedott/merge-me-action) from 2.9.42 to 2.9.47. - [Release notes](https://github.com/ridedott/merge-me-action/releases) - [Changelog](https://github.com/ridedott/merge-me-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/ridedott/merge-me-action/compare/v2.9.42...v2.9.47) --- updated-dependencies: - dependency-name: ridedott/merge-me-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
YAML
mit
fizyk/pyramid_fullauth
3f54383c54ac00f3cf50ebfe617877f79a0f5aea
.github/workflows/automerge.yml
.github/workflows/automerge.yml
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/[email protected] with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
name: Merge me test dependencies! on: workflow_run: types: - completed workflows: # List all required workflow names here. - 'Run tests' - 'Test build package' - 'Run linters' jobs: merge-me: name: Merge me! runs-on: ubuntu-latest steps: - # It is often a desired behavior to merge only when a workflow execution # succeeds. This can be changed as needed. if: ${{ github.event.workflow_run.conclusion == 'success' }} name: Merge me! uses: ridedott/[email protected] with: # Depending on branch protection rules, a manually populated # `GITHUB_TOKEN_WORKAROUND` secret with permissions to push to # a protected branch must be used. This secret can have an arbitrary # name, as an example, this repository uses `DOTTBOTT_TOKEN`. # # When using a custom token, it is recommended to leave the following # comment for other developers to be aware of the reasoning behind it: # # This must be used as GitHub Actions token does not support pushing # to protected branches. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: MERGE PRESET: DEPENDABOT_MINOR ENABLED_FOR_MANUAL_CHANGES: 'true'
Bump ridedott/merge-me-action from 2.9.58 to 2.9.63
Bump ridedott/merge-me-action from 2.9.58 to 2.9.63
YAML
mit
fizyk/pyramid_localize
2a35d5ffb9d60f8077979e8cb8af7f5723a2ee7d
.github/workflows/test-gha.yaml
.github/workflows/test-gha.yaml
on: push: branches: - main name: Test in GitHub Actions Environment jobs: release-please: strategy: matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] # Disable fail-fast so that one matrix-job failing doesn't make the other # ones end early. We want to see the results on all platforms. fail-fast: false runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12 registry-url: 'https://registry.npmjs.org' - run: npm ci - run: node ./main.js - name: Check installed drivers shell: bash run: | check_driver() { local driver="$1" if ! ./$driver --version &>/dev/null; then echo "::error::$driver not found on ${{ runner.os }}!" fi } if [[ "${{ runner.os }}" == "macOS" ]]; then check_driver chromedriver check_driver geckodriver check_driver msedgedriver elif [[ "${{ runner.os }}" == "Linux" ]]; then check_driver chromedriver check_driver geckodriver elif [[ "${{ runner.os }}" == "Windows" ]]; then check_driver chromedriver.exe check_driver geckodriver.exe check_driver msedgedriver.exe fi
on: push: branches: - main name: Test in GitHub Actions Environment jobs: release-please: strategy: matrix: os: ["ubuntu-latest", "macos-latest", "windows-latest"] # Disable fail-fast so that one matrix-job failing doesn't make the other # ones end early. We want to see the results on all platforms. fail-fast: false runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: 12 registry-url: 'https://registry.npmjs.org' - run: npm ci - run: node ./main.js - name: Check installed drivers shell: bash run: | check_driver() { local driver="$1" if ! ./$driver --version &>/dev/null; then echo "::error::$driver not found on ${{ runner.os }}!" return 1 fi } rv=0 if [[ "${{ runner.os }}" == "macOS" ]]; then check_driver chromedriver || rv=1 check_driver geckodriver || rv=1 check_driver msedgedriver || rv=1 elif [[ "${{ runner.os }}" == "Linux" ]]; then check_driver chromedriver || rv=1 check_driver geckodriver || rv=1 elif [[ "${{ runner.os }}" == "Windows" ]]; then check_driver chromedriver.exe || rv=1 check_driver geckodriver.exe || rv=1 check_driver msedgedriver.exe || rv=1 fi exit "$rv"
Fix passing jobs when missing drivers
ci: Fix passing jobs when missing drivers
YAML
apache-2.0
shaka-project/webdriver-installer
92c2a4a408b6a0e4888be49c82091ba5557221e2
conda/empyrical/meta.yaml
conda/empyrical/meta.yaml
package: name: empyrical version: "0.1.10" source: fn: empyrical-0.1.10.tar.gz url: https://pypi.python.org/packages/2c/b4/658f06c8bc05f847e9ccd6b8131e6e4589bbeb875e239d568a821fd1babc/empyrical-0.1.10.tar.gz md5: cf4439bad083150639ae5b27698c64d4 requirements: build: - python - setuptools - numpy >=1.9.2 - pandas >=0.16.1 - scipy >=0.15.1 - bottleneck >=1.0.0 run: - python - numpy >=1.9.2 - pandas >=0.16.1 - scipy >=0.15.1 - bottleneck >=1.0.0 about: home: https://github.com/quantopian/empyrical license: Apache Software License summary: 'empyrical is a Python library with performance and risk statistics\ncommonly used in quantitative finance' # See # http://docs.continuum.io/conda/build.html for # more information about meta.yaml
package: name: empyrical version: "0.1.10" source: fn: empyrical-0.1.10.tar.gz url: https://pypi.python.org/packages/2c/b4/658f06c8bc05f847e9ccd6b8131e6e4589bbeb875e239d568a821fd1babc/empyrical-0.1.10.tar.gz md5: cf4439bad083150639ae5b27698c64d4 requirements: build: - python - setuptools - numpy x.x - pandas >=0.16.1 - scipy >=0.15.1 - bottleneck >=1.0.0 run: - python - numpy x.x - pandas >=0.16.1 - scipy >=0.15.1 - bottleneck >=1.0.0 about: home: https://github.com/quantopian/empyrical license: Apache Software License summary: 'empyrical is a Python library with performance and risk statistics\ncommonly used in quantitative finance' # See # http://docs.continuum.io/conda/build.html for # more information about meta.yaml
Tag empyrical conda packages with numpy version
BLD: Tag empyrical conda packages with numpy version
YAML
apache-2.0
florentchandelier/zipline,quantopian/zipline,Scapogo/zipline,bartosh/zipline,quantopian/zipline,magne-max/zipline-ja,alphaBenj/zipline,humdings/zipline,florentchandelier/zipline,humdings/zipline,bartosh/zipline,enigmampc/catalyst,Scapogo/zipline,alphaBenj/zipline,enigmampc/catalyst,magne-max/zipline-ja
8953059e6fe7ea8d06f18fc485fe56a8042510f4
packages/ve/vector-sized.yaml
packages/ve/vector-sized.yaml
homepage: http://github.com/expipiplus1/vector-sized#readme changelog-type: markdown hash: 341c568d40a0aca9514ee78173c2149f3092b2c11c53e0671a2efe97e1d06c80 test-bench-deps: {} maintainer: [email protected] synopsis: Size tagged vectors changelog: ! '# Change Log ## [0.1.0.0] - 2016-02-28 Initial release. ' basic-deps: base: ! '>=4.7 && <5' deepseq: ! '>=1.1 && <1.5' vector: ! '>=0.11 && <0.12' all-versions: - '0.1.0.0' author: Joe Hermaszewski latest: '0.1.0.0' description-type: markdown description: ! '# Vector Sized This package exports a newtype tagging the vectors from the [vector](https://hackage.haskell.org/package/vector) package with a type level natural representing their size. It also exports a few functions from vector appropriately retyped. This package is fairly similar to the [fixed-vector](https://hackage.haskell.org/package/fixed-vector) package. The difference is that fixed-vector uses Peano naturals to represent the size tag on the vectors and this package uses typelits. ' license-name: BSD3
homepage: http://github.com/expipiplus1/vector-sized#readme changelog-type: markdown hash: 5501de349ea94ce23a9224969f6460483701e802ad3554c31a0d29cef9c04ef9 test-bench-deps: {} maintainer: [email protected] synopsis: Size tagged vectors changelog: ! '# Change Log ## [0.1.0.0] - 2016-02-28 Initial release. ' basic-deps: base: ! '>=4.8 && <5' deepseq: ! '>=1.1 && <1.5' vector: ! '>=0.11 && <0.12' all-versions: - '0.1.0.0' author: Joe Hermaszewski latest: '0.1.0.0' description-type: markdown description: ! '# Vector Sized This package exports a newtype tagging the vectors from the [vector](https://hackage.haskell.org/package/vector) package with a type level natural representing their size. It also exports a few functions from vector appropriately retyped. This package is fairly similar to the [fixed-vector](https://hackage.haskell.org/package/fixed-vector) package. The difference is that fixed-vector uses Peano naturals to represent the size tag on the vectors and this package uses typelits. ' license-name: BSD3
Update from Hackage at 2016-02-29T11:40:58+0000
Update from Hackage at 2016-02-29T11:40:58+0000
YAML
mit
commercialhaskell/all-cabal-metadata
6049cd8ee9a970364d52fff2b621b340236c5206
packages/xm/xmonad-windownames.yaml
packages/xm/xmonad-windownames.yaml
homepage: https://github.com/plindbe2/xmonad-windownames changelog-type: '' hash: 2e150a4e570af9451dec51c017092aab50811e3b44d90dadd86c635bb9e509ab test-bench-deps: {} maintainer: [email protected] synopsis: A library to automatically put named windows into the DynamicLog. changelog: '' basic-deps: base: ! '>=4.7 && <4.8' xmonad-contrib: ! '>=0.11 && <0.12' xmonad: ! '>=0.11 && <0.12' containers: ! '>=0.5 && <0.6' utf8-string: ! '>=0.3 && <0.4' all-versions: - '0.1.0.0' author: Phil Lindberg latest: '0.1.0.0' description-type: haddock description: '' license-name: BSD3
homepage: https://github.com/plindbe2/xmonad-windownames changelog-type: '' hash: 67c739e6bb34824d5a6ff744da0dafcc65ee5f7acf546b76edd7a1aaf65d5c3b test-bench-deps: {} maintainer: [email protected] synopsis: A library to automatically put named windows into the DynamicLog. changelog: '' basic-deps: base: <5 && >=3 xmonad-contrib: ! '>=0.11 && <0.12' xmonad: ! '>=0.11 && <0.12' containers: ! '>=0.5 && <0.6' utf8-string: ! '>=0.3 && <0.4' all-versions: - '0.1.0.0' - '0.1.0.1' author: Phil Lindberg latest: '0.1.0.1' description-type: haddock description: ! 'Fetch the window names using the xmonad-contrib NamedWindows extension and place them next to the numbers in comma separated form next to the WindowNames in the DynamicLog.' license-name: BSD3
Update from Hackage at 2015-11-07T16:17:46+0000
Update from Hackage at 2015-11-07T16:17:46+0000
YAML
mit
commercialhaskell/all-cabal-metadata
937547205b85d5accf8b09649a62789154dcf78d
packaging/linux/snap/snapcraft.yaml
packaging/linux/snap/snapcraft.yaml
name: notes # Note on version: $UPSTREAM_VERSION~.git$GIT_COMMIT_ID version: '0.9.0~git8b202cf' summary: Note taking application, write down your thoughts. description: | Notes is a tool for the things you need to write down off your brain. It is your place of expressing yourself. Notes is an open source and cross-platform project, and you're welcome to be part of it and contribute. We hope you will love it as much as we do. confinement: strict apps: notes: command: desktop-launch notes plugs: [unity7, opengl, network-bind] parts: notes: source: ../../../src plugin: qmake qt-version: qt5 project-files: [Notes.pro] build-packages: - qtbase5-dev - qtbase5-dev-tools - qtbase5-private-dev - qt5-qmake stage-packages: - libqt5gui5 - libqt5widgets5 - libqt5core5a - libqt5libqgtk2 - xcursor-themes after: [desktop/qt5]
name: notes # Note on version: $UPSTREAM_VERSION~.git$GIT_COMMIT_ID version: '0.9.0~gitef78f37' summary: Note taking application, write down your thoughts. description: | Notes is a tool for the things you need to write down off your brain. It is your place of expressing yourself. Notes is an open source and cross-platform project, and you're welcome to be part of it and contribute. We hope you will love it as much as we do. confinement: strict apps: notes: command: desktop-launch notes plugs: [unity7, opengl, network-bind] parts: notes: source: ../../../src plugin: qmake qt-version: qt5 project-files: [Notes.pro] build-packages: - qtbase5-dev - qtbase5-dev-tools - qtbase5-private-dev - qt5-qmake stage-packages: - fonts-liberation - libqt5gui5 - libqt5widgets5 - libqt5core5a - libqt5libqgtk2 - xcursor-themes after: [desktop/qt5]
Add Liberation Sans to the snap
Add Liberation Sans to the snap
YAML
mpl-2.0
dplanella/notes,alex-spataru/notes,nuttyartist/notes,nuttyartist/notes,theshadowx/notes,geoffschoeman/notes,dplanella/notes,alex-spataru/notes,alex-spataru/notes,geoffschoeman/notes,alex-spataru/notes,theshadowx/notes
b17ec8663a8f0958e200c599de715e30f5c139d0
roles/postgres/tasks/add-apt-repo-for-postgres.yml
roles/postgres/tasks/add-apt-repo-for-postgres.yml
--- # This is necessary to install the latest versions of Postgres # For details see https://wiki.postgresql.org/wiki/Apt - name: Add Postgres repo to sources list apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ {{ distro }}-pgdg main' state=present sudo: yes - name: Add key for Postgres repo apt_key: url=https://www.postgresql.org/media/keys/ACCC4CF8.asc state=present sudo: yes
--- # This is necessary to install the latest versions of Postgres # For details see https://wiki.postgresql.org/wiki/Apt - name: Add key for Postgres repo apt_key: url=https://www.postgresql.org/media/keys/ACCC4CF8.asc state=present sudo: yes - name: Add Postgres repo to sources list apt_repository: repo='deb http://apt.postgresql.org/pub/repos/apt/ {{ distro }}-pgdg main' state=present sudo: yes
Add key before adding repository
Add key before adding repository
YAML
apache-2.0
snowplow/ansible-playbooks
c1592705e4eb5d19e4112775eb534a9f3ef65157
cuteshop/specs/qtyaml.yml
cuteshop/specs/qtyaml.yml
name: qtyaml source: git: https://github.com/uranusjr/qtyaml.git project: sources: - "3rdparty/libyaml/src/*.c" - "src/*.cpp" headers: - src/qtyaml_global.h - src/qyamldocument.h - src/qyamlmapping.h - src/qyamlsequence.h - src/qyamlvalue.h defines: HAVE_CONFIG_H YAML_DECLARE_STATIC includepath: - 3rdparty/libyaml/include - 3rdparty/libyaml/win32 qt: core config: c++11
name: qtyaml source: http: https://github.com/uranusjr/qtyaml/archive/master.zip project: sources: - "3rdparty/libyaml/src/*.c" - "src/*.cpp" headers: - src/qtyaml_global.h - src/qyamldocument.h - src/qyamlmapping.h - src/qyamlsequence.h - src/qyamlvalue.h defines: HAVE_CONFIG_H YAML_DECLARE_STATIC includepath: - 3rdparty/libyaml/include - 3rdparty/libyaml/win32 qt: core config: c++11
Switch QtYAML download to use zip file
Switch QtYAML download to use zip file I don't know why Git fails. Whatever.
YAML
mit
uranusjr/cuteshop
e6155c926522338417c8d8863aa9d58552076a8a
config/application.example.yml
config/application.example.yml
TIME_ZONE: Rome LOCALE: it SECRET_TOKEN: SecretToken1 MAIL_SENDER: [email protected] DEVISE_SECRET: SecretToken2 DEVISE_PEPPER: SecretToken3 FORCE_SSL: false
TIME_ZONE: 'Rome' LOCALE: 'it' SECRET_TOKEN: 'SecretToken1' MAIL_SENDER: '[email protected]' DEVISE_SECRET: 'SecretToken2' DEVISE_PEPPER: 'SecretToken3' FORCE_SSL: 'false'
Use strings for Figaro configuration
Use strings for Figaro configuration
YAML
mit
alessandro1997/herudio,alessandro1997/herudio,alessandro1997/herudio
e4c880b217ac7b8c315c406ebb9c9dc5c1e1e7ae
config/locale_task_config.yaml
config/locale_task_config.yaml
--- yaml_strings_to_extract: db/fixtures/miq_product_features{.yml,.yaml,/*.yml,/*.yaml}: - name - description db/fixtures/miq_report_formats.*: - description db/fixtures/notification_types.*: - message product/charts/layouts/*.yaml: - title product/charts/layouts/*/*.yaml: - title product/charts/miq_reports/vmdb_database.yaml: - headers - title - name product/compare/*.yaml: - headers - group - menu_name - title product/reports/*/*.*: - headers - menu_name - title product/timelines/miq_reports/*.*: - title - name - headers
--- yaml_strings_to_extract: db/fixtures/miq_product_features{.yml,.yaml,/*.yml,/*.yaml}: - name - description db/fixtures/miq_report_formats.*: - description db/fixtures/notification_types.*: - message product/charts/layouts/*.yaml: - title product/charts/layouts/*/*.yaml: - title product/charts/miq_reports/vmdb_database.yaml: - headers - title - name product/compare/*.yaml: - headers - group - menu_name - title product/reports/*/*.*: - headers - menu_name - title product/timelines/miq_reports/*.*: - title - name - headers product/charts/miq_reports/*.yaml: - title - name - headers
Fix translations for utilization chart headers
Fix translations for utilization chart headers
YAML
apache-2.0
d-m-u/manageiq,kbrock/manageiq,jvlcek/manageiq,chessbyte/manageiq,lpichler/manageiq,skateman/manageiq,d-m-u/manageiq,d-m-u/manageiq,djberg96/manageiq,skateman/manageiq,jrafanie/manageiq,gmcculloug/manageiq,mzazrivec/manageiq,ManageIQ/manageiq,mzazrivec/manageiq,gmcculloug/manageiq,jvlcek/manageiq,lpichler/manageiq,skateman/manageiq,jvlcek/manageiq,lpichler/manageiq,mzazrivec/manageiq,d-m-u/manageiq,gmcculloug/manageiq,jrafanie/manageiq,agrare/manageiq,djberg96/manageiq,chessbyte/manageiq,kbrock/manageiq,djberg96/manageiq,ManageIQ/manageiq,skateman/manageiq,agrare/manageiq,kbrock/manageiq,djberg96/manageiq,mzazrivec/manageiq,lpichler/manageiq,NickLaMuro/manageiq,ManageIQ/manageiq,gmcculloug/manageiq,jrafanie/manageiq,NickLaMuro/manageiq,jvlcek/manageiq,ManageIQ/manageiq,chessbyte/manageiq,agrare/manageiq,NickLaMuro/manageiq,NickLaMuro/manageiq,agrare/manageiq,chessbyte/manageiq,jrafanie/manageiq,kbrock/manageiq
7c15f73cdbd8977cab7c2054e49a5fce302755c7
metadata/com.sunilpaulmathew.translator.yml
metadata/com.sunilpaulmathew.translator.yml
Categories: - Development License: GPL-3.0-or-later AuthorName: sunilpaulmathew AuthorEmail: [email protected] AuthorWebSite: https://smartpack.github.io/ WebSite: https://smartpack.github.io/translator/ SourceCode: https://github.com/sunilpaulmathew/Translator IssueTracker: https://github.com/sunilpaulmathew/Translator/issues Changelog: https://github.com/sunilpaulmathew/Translator/releases/latest Donate: https://www.paypal.com/paypalme/menacherry AutoName: The Translator RepoType: git Repo: https://github.com/sunilpaulmathew/Translator Builds: - versionName: v0.7 versionCode: 7 commit: v0.7 subdir: app gradle: - yes - versionName: v0.8 versionCode: 8 commit: v0.8 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: v0.8 CurrentVersionCode: 8
Categories: - Development License: GPL-3.0-or-later AuthorName: sunilpaulmathew AuthorEmail: [email protected] AuthorWebSite: https://smartpack.github.io/ WebSite: https://smartpack.github.io/translator/ SourceCode: https://github.com/sunilpaulmathew/Translator IssueTracker: https://github.com/sunilpaulmathew/Translator/issues Changelog: https://github.com/sunilpaulmathew/Translator/releases/latest Donate: https://www.paypal.com/paypalme/menacherry AutoName: The Translator RepoType: git Repo: https://github.com/sunilpaulmathew/Translator Builds: - versionName: v0.7 versionCode: 7 commit: v0.7 subdir: app gradle: - yes - versionName: v0.8 versionCode: 8 commit: v0.8 subdir: app gradle: - yes - versionName: v0.9 versionCode: 9 commit: v0.9 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: v0.9 CurrentVersionCode: 9
Update The Translator to v0.9 (9)
Update The Translator to v0.9 (9)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
e7abf09d57e71013efc35ceff6564791ff71e640
hokusai/development.yml
hokusai/development.yml
--- version: '2' services: metaphysics: extends: file: common.yml service: metaphysics environment: - MEMCACHED_URL=metaphysics-memcached:11211 env_file: ../.env ports: - 5001:5001 depends_on: - metaphysics-memcached metaphysics-memcached: image: memcached ports: - 11211:11211 metaphysics-goreplay: extends: file: common.yml service: metaphysics environment: - GOREPLAY_PORT=5001 - GOREPLAY_OUTPUT=stdout command: ["./scripts/run-goreplay.sh"] privileged: true
version: "2" services: metaphysics: extends: file: common.yml service: metaphysics environment: - MEMCACHED_URL=metaphysics-memcached:11211 env_file: ../.env ports: - 5001:5001 depends_on: - metaphysics-memcached metaphysics-memcached: image: memcached ports: - 11211:11211
Remove the goreplay reference in the dev hokusai yml
Remove the goreplay reference in the dev hokusai yml
YAML
mit
artsy/metaphysics,artsy/metaphysics,artsy/metaphysics,mzikherman/metaphysics-1,mzikherman/metaphysics-1,mzikherman/metaphysics-1,mzikherman/metaphysics-1
f75962bda732359659960561205f1944f2034112
.github/workflows/main.yml
.github/workflows/main.yml
name: E-Mail Release Notification on: release: types: [released] jobs: notify: runs-on: ubuntu-latest steps: - name: Notify about a new release uses: daysofwonder/[email protected] env: SENDGRID_API_TOKEN: ${{ secrets.SENDGRID_API_TOKEN }} RECIPIENTS_URL: ${{ secrets.RECIPIENTS_URL }} SENDER_EMAIL: ${{ secrets.SENDER_EMAIL }} DISTRIBUTION_LISTS: ${{ secrets.DISTRIBUTION_LISTS }}
name: E-Mail Release Notification on: release: types: [prereleased, released] jobs: notify-prerelease: runs-on: ubuntu-latest steps: - name: Notify about a new PRE-release if: github.event.action == 'prereleased' uses: daysofwonder/[email protected] env: SENDGRID_API_TOKEN: ${{ secrets.SENDGRID_API_TOKEN }} SENDER_EMAIL_TEAM: ${{ secrets.SENDER_EMAIL_TEAM }} SENDER_EMAIL: ${{ secrets.SENDER_EMAIL }} DISTRIBUTION_LISTS: ${{ secrets.PRERELASE_LIST }} notify-release: runs-on: ubuntu-latest steps: - name: Notify about a new release if: github.event.action == 'released' uses: daysofwonder/[email protected] env: SENDGRID_API_TOKEN: ${{ secrets.SENDGRID_API_TOKEN }} SENDER_EMAIL_TEAM: ${{ secrets.SENDER_EMAIL_TEAM }} SENDER_EMAIL: ${{ secrets.SENDER_EMAIL }} DISTRIBUTION_LISTS: ${{ secrets.DISTRIBUTION_LISTS }}
Update use action to v1.7 + prelease job
Update use action to v1.7 + prelease job
YAML
mit
daysofwonder/asmodeenet_sso_js,daysofwonder/asmodeenet_sso_js,daysofwonder/asmodeenet_sso_js
26cf79d14320e2a6556e61307c37f353c049808d
.github/workflows/main.yml
.github/workflows/main.yml
name: Build and Release Workflow on: [push] jobs: build: name: Build runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v1 - name: Set up Java uses: actions/setup-java@v1 with: java-version: 8 - name: Compilation uses: eskatos/gradle-command-action@v1 with: arguments: classes - name: Unit tests uses: eskatos/gradle-command-action@v1 with: arguments: test - name: Integration tests uses: eskatos/gradle-command-action@v1 with: arguments: integrationTest - name: Functional tests uses: eskatos/gradle-command-action@v1 with: arguments: functionalTest - name: Documentation tests uses: eskatos/gradle-command-action@v1 with: arguments: docTest - name: Release if: startsWith(github.ref, 'refs/tags/v') uses: eskatos/gradle-command-action@v1 with: arguments: assemble bintrayUpload gitPublishPush -Dorg.ajoberstar.grgit.auth.username=${{ secrets.GITHUB_TOKEN }} -s
name: Build and Release Workflow on: [push] jobs: build: name: Build runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v1 - name: Set up Java uses: actions/setup-java@v1 with: java-version: 8 - name: Set up Docker private registry run: | docker run -d -p 5000:5000 --restart=always --name registry registry:2 docker run -d -p 5001:5000 --restart=always --name secure_registry -v "$(pwd)"/src/functTest/resources/auth:/auth:rw -e "REGISTRY_AUTH=htpasswd" -e "REGISTRY_AUTH_HTPASSWD_REALM=Registry Realm" -e "REGISTRY_AUTH_HTPASSWD_PATH=/auth/htpasswd" registry:2 - name: Compilation uses: eskatos/gradle-command-action@v1 with: arguments: classes - name: Unit tests uses: eskatos/gradle-command-action@v1 with: arguments: test - name: Integration tests uses: eskatos/gradle-command-action@v1 with: arguments: integrationTest - name: Functional tests uses: eskatos/gradle-command-action@v1 with: arguments: functionalTest - name: Documentation tests uses: eskatos/gradle-command-action@v1 with: arguments: docTest - name: Release if: startsWith(github.ref, 'refs/tags/v') uses: eskatos/gradle-command-action@v1 with: arguments: assemble bintrayUpload gitPublishPush -Dorg.ajoberstar.grgit.auth.username=${{ secrets.GITHUB_TOKEN }} -s
Set up Docker private registry
Set up Docker private registry
YAML
apache-2.0
bmuschko/gradle-docker-plugin,bmuschko/gradle-docker-plugin,bmuschko/gradle-docker-plugin
36a25bfc537f1471ec83d595d0d72f7a86448350
.github/stale.yml
.github/stale.yml
# Configuration for probot-stale - https://github.com/probot/stale # Number of days of inactivity before an Issue or Pull Request becomes stale # Starting at two years of no activity daysUntilStale: 730 # Number of days of inactivity before a stale Issue or Pull Request is closed daysUntilClose: 30 # Issues or Pull Requests with these labels will never be considered stale exemptLabels: - security - triaged # Label to use when marking as stale staleLabel: stale # Comment to post when marking as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. # Comment to post when removing the stale label. Set to `false` to disable unmarkComment: false # Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable closeComment: false # Limit to only `issues` or `pulls` only: issues
# Configuration for probot-stale - https://github.com/probot/stale # Number of days of inactivity before an Issue or Pull Request becomes stale # Starting at two years of no activity daysUntilStale: 730 # Number of days of inactivity before a stale Issue or Pull Request is closed daysUntilClose: 30 # Issues or Pull Requests with these labels will never be considered stale exemptLabels: - regression - security - triaged # Label to use when marking as stale staleLabel: stale # Comment to post when marking as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. # Comment to post when removing the stale label. Set to `false` to disable unmarkComment: false # Comment to post when closing a stale Issue or Pull Request. Set to `false` to disable closeComment: false # Limit to only `issues` or `pulls` only: issues
Add regression label to list of exemptions
Add regression label to list of exemptions
YAML
mit
stinsonga/atom,stinsonga/atom,FIT-CSE2410-A-Bombs/atom,decaffeinate-examples/atom,CraZySacX/atom,decaffeinate-examples/atom,Arcanemagus/atom,AlexxNica/atom,brettle/atom,Mokolea/atom,sotayamashita/atom,sotayamashita/atom,kevinrenaers/atom,ardeshirj/atom,brettle/atom,Arcanemagus/atom,stinsonga/atom,CraZySacX/atom,kevinrenaers/atom,PKRoma/atom,ardeshirj/atom,Arcanemagus/atom,liuderchi/atom,brettle/atom,FIT-CSE2410-A-Bombs/atom,Mokolea/atom,CraZySacX/atom,liuderchi/atom,ardeshirj/atom,AlexxNica/atom,FIT-CSE2410-A-Bombs/atom,atom/atom,andrewleverette/atom,PKRoma/atom,decaffeinate-examples/atom,atom/atom,Mokolea/atom,PKRoma/atom,stinsonga/atom,andrewleverette/atom,AlexxNica/atom,liuderchi/atom,atom/atom,andrewleverette/atom,kevinrenaers/atom,liuderchi/atom,decaffeinate-examples/atom,t9md/atom,t9md/atom,sotayamashita/atom,t9md/atom
d0742e1f0ecf452684dc582fab1da8b580e84fe7
roles/onos-load-apps/tasks/main.yml
roles/onos-load-apps/tasks/main.yml
--- # onos-load-apps/tasks/main.yml # # Install CORD ONOS apps from local containers - name: Disable loading from Maven repo command: ansible xos-1 -u ubuntu -m lineinfile \ -a "dest=~/service-profile/{{ xos_configuration }}/make-vtn-external-yaml.sh state=absent regexp='install_dependencies'" - name: Load the apps using Docker command: ansible xos-1 -u ubuntu -m shell \ -a "cd ~/xos/containers/cord-apps; make {{ item }}; docker run xosproject/cord-app-{{ item }}" with_items: "{{ cord_apps }}" - name: Enable debugging for cord apps shell: "sshpass -p 'karaf' ssh -p 8101 karaf@onos-cord-1 log:set DEBUG org.opencord.{{ item }}" with_items: "{{ cord_apps }}"
--- # onos-load-apps/tasks/main.yml # # Install CORD ONOS apps from local containers - name: Disable loading from Maven repo command: ansible xos-1 -u ubuntu -m lineinfile \ -a "dest=~/service-profile/{{ xos_configuration }}/make-vtn-external-yaml.sh state=absent regexp='install_dependencies'" - name: Load the apps using Docker command: ansible xos-1 -u ubuntu -m shell \ -a "cd ~/xos/containers/cord-apps; make {{ item }}; sudo docker run xosproject/cord-app-{{ item }}" with_items: "{{ cord_apps }}" - name: Enable debugging for cord apps shell: "sshpass -p 'karaf' ssh -p 8101 karaf@onos-cord-1 log:set DEBUG org.opencord.{{ item }}" with_items: "{{ cord_apps }}"
Fix failure with single-node pod install
Fix failure with single-node pod install Change-Id: I1c72be8a138cfbe2fe7882e22d40bb0e8c173f5d
YAML
apache-2.0
opencord/platform-install,opencord/platform-install
e911ae9ea3fe2bb188ae02b46b70936b565844dc
data/building-hours/8-toh.yaml
data/building-hours/8-toh.yaml
name: Tomson Hall image: tomson category: Academia schedule: - title: Hours hours: - {days: [Mo, Tu, We, Th], from: '7:00am', to: '11:00pm'} - {days: [Fr], from: '7:00am', to: '8:00pm'} - {days: [Sa], from: '8:00am', to: '8:00pm'} - {days: [Su], from: '8:00am', to: '11:00pm'} breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: - title: Hours hours: - {days: [Mo, Tu, We, Th, Fr], from: '7:00am', to: '5:30pm'} - {days: [Sa, Su], from: '9:00am', to: '5:00pm'}
name: Tomson Hall image: tomson category: Academia schedule: - title: Hours hours: # - {days: [Mo, Tu, We, Th], from: '7:00am', to: '11:00pm'} # - {days: [Fr], from: '7:00am', to: '8:00pm'} # - {days: [Sa], from: '8:00am', to: '8:00pm'} # - {days: [Su], from: '8:00am', to: '11:00pm'} breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: - title: Hours hours: - {days: [Mo, Tu, We, Th, Fr], from: '7:00am', to: '5:30pm'} - {days: [Sa, Su], from: '9:00am', to: '5:00pm'}
Comment out AY Tomson hours
Comment out AY Tomson hours
YAML
agpl-3.0
StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native,StoDevX/AAO-React-Native
de24a63beebabab4379321b5e5aa2c10c44e0378
packages/hp/hpack-dhall.yaml
packages/hp/hpack-dhall.yaml
homepage: https://github.com/sol/hpack-dhall#readme changelog-type: '' hash: a648c54e4dd580f7a32ec3dcc15585a33adb35f0a0a0686839ee1ae96b298323 test-bench-deps: base: ==4.* dhall: -any hspec: ==2.* text: -any megaparsec: -any mockery: -any interpolate: -any dhall-json: -any transformers: -any aeson: -any hpack: ! '>=0.26.0' maintainer: Simon Hengel <[email protected]> synopsis: Dhall support for Hpack changelog: '' basic-deps: base: ==4.* dhall: -any text: -any megaparsec: -any dhall-json: -any transformers: -any aeson: -any hpack: ! '>=0.26.0' all-versions: - '0.1.0' - '0.2.0' - '0.3.0' author: '' latest: '0.3.0' description-type: haddock description: This package allows you to use the Dhall configuration language to specify Haskell packages. license-name: PublicDomain
homepage: https://github.com/blockscope/hpack-dhall#readme changelog-type: '' hash: a1c088b8c65c348b82eeb191acdcf88ca5d641fc32f2f39ef3e2056cfc115c62 test-bench-deps: base: ==4.* dhall: -any hspec: ==2.* text: -any megaparsec: -any mockery: -any interpolate: -any dhall-json: -any transformers: -any aeson: -any hpack: ! '>=0.26.0' maintainer: Phil de Joux <[email protected]> synopsis: Dhall support for Hpack changelog: '' basic-deps: base: ==4.* dhall: -any text: -any megaparsec: -any dhall-json: -any transformers: -any aeson: -any hpack: ! '>=0.26.0' all-versions: - '0.1.0' - '0.2.0' - '0.3.0' author: Simon Hengel <[email protected]> latest: '0.3.0' description-type: haddock description: This package allows you to use the Dhall configuration language to specify Haskell packages. license-name: LicenseRefPublicDomain
Update from Hackage at 2018-10-13T13:22:50Z
Update from Hackage at 2018-10-13T13:22:50Z
YAML
mit
commercialhaskell/all-cabal-metadata
4b1396d9307de181eaad2d553994a4a73e94c281
_data/versions.yml
_data/versions.yml
"3.10": "v3.10.0-devel" "3.9": "v3.9.0-alpha.1" "3.8": "v3.8.4" "3.7": "v3.7.16" "3.6": "v3.6.16" "3.5": "v3.5.7" "3.4": "v3.4.11" "3.3": "v3.3.25"
"3.10": "v3.10.0-devel" "3.9": "v3.9.0-beta.1" "3.8": "v3.8.4" "3.7": "v3.7.16" "3.6": "v3.6.16" "3.5": "v3.5.7" "3.4": "v3.4.11" "3.3": "v3.3.25"
Create 'release/3.9.0-beta.1' for 3.9.0-beta.1 release
Create 'release/3.9.0-beta.1' for 3.9.0-beta.1 release
YAML
apache-2.0
arangodb/docs,arangodb/docs,arangodb/docs,arangodb/docs
f5557506bfb05183955390e0461f2a99a6ee2dca
docker-compose-test-server.yml
docker-compose-test-server.yml
version: "2" services: rocketchat: image: rocketchat/rocket.chat:0.73.1 ports: - 127.0.0.1:3000:3000 restart: always environment: - PORT=3000 - ROOT_URL=http://localhost:3000 - MONGO_URL=mongodb://mongo:27017/rocketchat depends_on: - mongo links: - mongo:mongo - mongo:secure.gravatar.com mongo: image: mongo:3.3 restart: always command: mongod --smallfiles volumes: - ./data/db:/data/db
version: "3" services: rocketchat: image: rocketchat/rocket.chat:0.73.1 ports: - 127.0.0.1:3000:3000 restart: always environment: - PORT=3000 - ROOT_URL=http://localhost:3000 - MONGO_URL=mongodb://mongo:27017/rocketchat depends_on: - mongo links: - mongo:mongo - mongo:secure.gravatar.com mongo: image: mongo:3.3 restart: always command: mongod --smallfiles volumes: - ./data/db:/data/db
Update docker-compose version to 3
Update docker-compose version to 3
YAML
mit
jadolg/rocketchat_API
3bd3df4d709c19068aa5eed6a01b6a0754f2f3ef
Mac/ITSwitch/component/component.yaml
Mac/ITSwitch/component/component.yaml
no_build: true name: ITSwitch src-url: https://github.com/xamarin/XamarinComponents/iOS/ITSwitch id: itswitch publisher: Xamarin Inc license: ../License.md icons: - icons/itswitch_512x512.png - icons/itswitch_128x128.png publisher-url: http://www.xamarin.com/ libraries: mac-unified: ../source/ITSwitch/bin/Release/ITSwitch.dll summary: ITSwitch is a simple and lightweight replica of iOS 7 UISwitch for Mac OS X. details: Details.md screenshots: - screenshots/00.jpg getting-started: GettingStarted.md version: "1.0.1" samples: - path: ../samples/ITSwitchSample/ITSwitchSample.sln name: Mac Sample nobuild: "true" is_shell: true packages: ios-unified: Xamarin.Mac.ITSwitch, Version=1.0.1 local-nuget-repo: ../output additional-files: - source: "../External-Dependency-Info.txt" destination: "THIRD-PARTY-NOTICES.txt" ...
no_build: true name: ITSwitch src-url: https://github.com/xamarin/XamarinComponents/Mac/ITSwitch id: itswitch publisher: Xamarin Inc license: ../License.md icons: - icons/itswitch_512x512.png - icons/itswitch_128x128.png publisher-url: http://www.xamarin.com/ libraries: mac-unified: ../source/ITSwitch/bin/Release/ITSwitch.dll summary: ITSwitch is a simple and lightweight replica of iOS 7 UISwitch for Mac OS X. details: Details.md screenshots: - screenshots/00.jpg getting-started: GettingStarted.md version: "1.0.1" samples: - path: ../samples/ITSwitchSample/ITSwitchSample.sln name: Mac Sample nobuild: "true" is_shell: true packages: ios-unified: Xamarin.Mac.ITSwitch, Version=1.0.1 local-nuget-repo: ../output additional-files: - source: "../External-Dependency-Info.txt" destination: "THIRD-PARTY-NOTICES.txt" ...
Fix url to project page
[itswitch] Fix url to project page
YAML
mit
xamarin/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents,xamarin/XamarinComponents,bholmes/XamarinComponents,xamarin/XamarinComponents,bholmes/XamarinComponents,bholmes/XamarinComponents,bholmes/XamarinComponents,bholmes/XamarinComponents,bholmes/XamarinComponents,xamarin/XamarinComponents
65f884481d6c8eee8f4b0988cbd8942966b54f5e
.codeclimate.yml
.codeclimate.yml
--- engines: pep8: enabled: true duplication: enabled: true config: languages: - python fixme: enabled: true radon: enabled: true ratings: paths: - "**.py" exclude_paths: - "tests/" - "settings/" - "app/management/"
--- engines: pep8: enabled: true duplication: enabled: true config: languages: - python fixme: enabled: true radon: enabled: true ratings: paths: - "**.py" exclude_paths: - "project/app/tests/" - "project/app/settings/" - "project/app/management/"
Include full path in code climate config
Include full path in code climate config
YAML
bsd-2-clause
barberscore/barberscore-api,barberscore/barberscore-api,dbinetti/barberscore,dbinetti/barberscore-django,barberscore/barberscore-api,barberscore/barberscore-api,dbinetti/barberscore,dbinetti/barberscore-django
d4b1529c86b66517a6ea82e3d8c1bd43c609dcb0
.codeclimate.yml
.codeclimate.yml
--- engines: brakeman: enabled: true checks: dangerous_attr_accessible: enabled: false bundler-audit: enabled: true duplication: enabled: true config: languages: - ruby eslint: enabled: true fixme: enabled: true rubocop: enabled: true ratings: paths: - Gemfile.lock - "**.rake" - "**.rb" exclude_paths: - bin/
--- engines: bundler-audit: enabled: true duplication: enabled: true config: languages: - ruby fixme: enabled: true rubocop: enabled: true ratings: paths: - Gemfile.lock - "**.rake" - "**.rb" exclude_paths: - bin/
Remove brakeman and eslint from code climate. N/A
Remove brakeman and eslint from code climate. N/A
YAML
mit
dinj-oss/mutator_rails,dinj-oss/mutator_rails
5494b0c5c08e6bc83ee1b842267aa25b5f81899c
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.11" - "0.12" - "4.1" - "4.2" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
sudo: false language: node_js node_js: - "4.4" - "6.3" env: - CXX=g++-4.8 addons: apt: sources: - ubuntu-toolchain-r-test packages: - g++-4.8 before_install: - npm install -g bob coveralls --loglevel error script: - DEBUG=canihaz bob build - cat .bob/coverage/buster-istanbul/lcov.info | coveralls
Update Travis config to latest. Update node versions to 4.x and 6.x .
Update Travis config to latest. Update node versions to 4.x and 6.x .
YAML
mit
cliffano/sapi
911ab264565dc7d38f1ff209b4a940f54b51adda
.travis.yml
.travis.yml
language: node_js node_js: - 0.10 env: global: - secure: UR3Fth+3x7k4zAiYUe/GNM19HhaboA/v1XhHC9IO239beIzZAwqbIi0IKpt8rNWXxnoSS8oVlz7ABoFy3iilXDNGE2t6r53mDllWT8SlcBNMgDp+A56VzClVGodJatTkrPTWmu8dGsa9YaIVOBbAvytalEgd3ib4rk0MQl/y1zs= before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start before_script: - npm run-script build after_success: - npm install codeclimate-test-reporter coveralls - ./node_modules/.bin/istanbul cover --report lcovonly ./node_modules/.bin/_mocha -- ./test/test.js - cat ./coverage/lcov.info | ./node_modules/.bin/codeclimate - cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
language: node_js node_js: - 0.10 env: global: - secure: UR3Fth+3x7k4zAiYUe/GNM19HhaboA/v1XhHC9IO239beIzZAwqbIi0IKpt8rNWXxnoSS8oVlz7ABoFy3iilXDNGE2t6r53mDllWT8SlcBNMgDp+A56VzClVGodJatTkrPTWmu8dGsa9YaIVOBbAvytalEgd3ib4rk0MQl/y1zs= - secure: QBa2wL7RpzffwO7oKM0pecfnMO9dExnsJv9AuOt8FY60vWD8aoa8nVVo6GbJ8zMxmFRaFK3uNzzezsUBCDXdY8aEjn4+39nczg+yGp5TW60drzs+aJdSI0W7bNOlquueqqfuxFnkptggxWzdFospu4iYAcYELggPVVYTlHkKfbE= before_install: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start before_script: - npm run-script build after_success: - npm install codeclimate-test-reporter coveralls - ./node_modules/.bin/istanbul cover --report lcovonly ./node_modules/.bin/_mocha -- ./test/test.js - cat ./coverage/lcov.info | ./node_modules/.bin/codeclimate - cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
Add the Coveralls repo token
Add the Coveralls repo token
YAML
mit
ruslansagitov/loud
ed014473b1de3946cf96a53532977bdf51dc71bb
.travis.yml
.travis.yml
language: node_js node_js: - 4 before_install: - sudo apt-get update - sudo apt-get install graphviz
language: node_js node_js: - 4 - 6 before_install: - sudo apt-get update - sudo apt-get install graphviz
Enable Node.js 6 on Travis
Enable Node.js 6 on Travis
YAML
mit
pahen/madge,pahen/madge,pahen/madge
0296aa240ab710751ca74224683a35768d27c251
.github/stale.yml
.github/stale.yml
# Number of days of inactivity before an issue becomes stale daysUntilStale: 14 # Number of days of inactivity before a stale issue is closed daysUntilClose: 7 # Issues with these labels will never be considered stale exemptLabels: - "status: accepted" - "status: gathering feedback" - "status: blocked" # Label to use when marking an issue as stale staleLabel: wontfix # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. NetBox is governed by a small group of core maintainers which means not all opened issues may receive direct feedback. Please see our [contributing guide](https://github.com/netbox-community/netbox/blob/develop/CONTRIBUTING.md). # Comment to post when closing a stale issue. Set to `false` to disable closeComment: > This issue has been automatically closed due to lack of activity. In an effort to reduce noise, please do not comment any further. Note that the core maintainers may elect to reopen this issue at a later date if deemed necessary.
# Configuration for Stale (https://github.com/apps/stale) # Number of days of inactivity before an issue becomes stale daysUntilStale: 14 # Number of days of inactivity before a stale issue is closed daysUntilClose: 7 # Issues with these labels will never be considered stale exemptLabels: - "status: accepted" - "status: gathering feedback" - "status: blocked" # Label to use when marking an issue as stale staleLabel: wontfix # Comment to post when marking an issue as stale. Set to `false` to disable markComment: > This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. NetBox is governed by a small group of core maintainers which means not all opened issues may receive direct feedback. Please see our [contributing guide](https://github.com/netbox-community/netbox/blob/develop/CONTRIBUTING.md). # Comment to post when closing a stale issue. Set to `false` to disable closeComment: > This issue has been automatically closed due to lack of activity. In an effort to reduce noise, please do not comment any further. Note that the core maintainers may elect to reopen this issue at a later date if deemed necessary.
Clean up Stale bot config formatting
Clean up Stale bot config formatting
YAML
apache-2.0
digitalocean/netbox,digitalocean/netbox,digitalocean/netbox,digitalocean/netbox
d74ea88cacaf40cbd84b41fb46627d09fcfe8802
.travis.yml
.travis.yml
--- language: ruby bundler_args: --without development before_install: rm Gemfile.lock || true rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 script: bundle exec rake test env: - PUPPET_VERSION="~> 2.7.0" - PUPPET_VERSION="~> 3.2.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 3.3.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 3.4.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 3.5.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 3.6.0" STRICT_VARIABLES=yes matrix: exclude: - rvm: 1.9.3 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.0.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 2.7.0" - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.2.0" STRICT_VARIABLES=yes - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.3.0" STRICT_VARIABLES=yes - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.4.0" STRICT_VARIABLES=yes
--- language: ruby bundler_args: --without development before_install: rm Gemfile.lock || true rvm: - 1.8.7 - 1.9.3 - 2.0.0 - 2.1.0 script: bundle exec rake test env: - PUPPET_VERSION="~> 3.2.0" - PUPPET_VERSION="~> 3.3.0" - PUPPET_VERSION="~> 3.4.0" - PUPPET_VERSION="~> 3.5.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 3.6.0" STRICT_VARIABLES=yes - PUPPET_VERSION="~> 3.7.0" STRICT_VARIABLES=yes matrix: exclude: - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.2.0" STRICT_VARIABLES=yes - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.3.0" STRICT_VARIABLES=yes - rvm: 2.1.0 env: PUPPET_VERSION="~> 3.4.0" STRICT_VARIABLES=yes
Remove testing for puppet 2.7
Remove testing for puppet 2.7
YAML
apache-2.0
ScottWales/puppet-multiinstall
2400e1ad9fdcaab954a3ea7ff0f0fde23d68626d
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm matrix: allow_failures: - php: 5.6 - php: hhvm before_script: - composer install script: phpunit --coverage-text notifications: email: - [email protected]
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7.0 - hhvm matrix: allow_failures: - php: 7.0 - php: hhvm before_script: - composer install script: phpunit --coverage-text notifications: email: - [email protected]
Add PHP 7 on Travis
Add PHP 7 on Travis And remove 5.6 from allowed failures
YAML
mit
KnpLabs/KnpMarkdownBundle,gencer/KnpMarkdownBundle
e2c52e8b5eaf8454f8c63d43ce99ef721de158ac
.travis.yml
.travis.yml
--- language: node_js node_js: - "0.12" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=default - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-release - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-beta - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary before_install: - export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH - "npm config set spin false" - "npm install -g npm@^2" install: - npm install -g bower - npm install - bower install script: - ember try:one $EMBER_TRY_SCENARIO
--- language: node_js node_js: - "0.12" sudo: false cache: directories: - node_modules env: - EMBER_TRY_SCENARIO=default - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-release - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-beta - PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-canary matrix: fast_finish: true allow_failures: - env: PERCY_ENABLE=0 EMBER_TRY_SCENARIO=ember-canary before_install: - export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH - "npm config set spin false" - "npm install -g npm@^2" install: - npm install -g bower - npm install - bower install script: - ember try:one $EMBER_TRY_SCENARIO
Allow ember canary tests to fail safely.
Allow ember canary tests to fail safely.
YAML
mit
percy/ember-percy,percy/ember-percy,percy/ember-percy
8131c26a017ca8d307952d74af9166e7f5351fc7
.travis.yml
.travis.yml
language: ruby env: - ANSIBLE_VERSION=2.0.2 - ANSIBLE_VERSION=2.1.6 - ANSIBLE_VERSION=2.2.3 - ANSIBLE_VERSION=2.3.3 - ANSIBLE_VERSION=2.4.6 - ANSIBLE_VERSION=2.5.15 - ANSIBLE_VERSION=2.6.19 - ANSIBLE_VERSION=2.7.12 - ANSIBLE_VERSION=2.8.5 rvm: - 2.1.10 - 2.2.7 - 2.3.7 - 2.4.7 - 2.5.6 - 2.6.4 cache: bundler before_install: # make sure everything's up to date - sudo apt-get update -qq # install Python - sudo apt-get install python # upgrade pip - sudo pip install --upgrade pip # install Ansible - sudo pip install ansible==$ANSIBLE_VERSION
language: minimal services: - docker env: - ANSIBLE_VERSION=2.0.2 - ANSIBLE_VERSION=2.1.6 - ANSIBLE_VERSION=2.2.3 - ANSIBLE_VERSION=2.3.3 - ANSIBLE_VERSION=2.4.6 - ANSIBLE_VERSION=2.5.15 - ANSIBLE_VERSION=2.6.19 - ANSIBLE_VERSION=2.7.12 - ANSIBLE_VERSION=2.8.5 - RUBY_VERSION=2.1.10 - RUBY_VERSION=2.2.7 - RUBY_VERSION=2.3.7 - RUBY_VERSION=2.4.7 - RUBY_VERSION=2.5.6 - RUBY_VERSION=2.6.4 script: - docker run --rm -it -v $PWD:/app pgeraghty/ansible-ruby:$RUBY_VERSION-$ANSIBLE_VERSION /bin/sh -c cd /app && bundle install --jobs=3 --retry=3 --deployment && rake
Adjust Travis to use Docker images
Adjust Travis to use Docker images
YAML
mit
pgeraghty/ansible-wrapper-ruby,pgeraghty/ansible-wrapper-ruby
e17864ca523582621e4fbdf504bba2dd7ac7ec8e
.travis.yml
.travis.yml
language: python sudo: false dist: trusty python: - "2.7" addons: postgresql: "9.6" services: - postgresql - docker install: - pip install tox==2.3.2 before_script: - psql -c 'create database filmfest;' -U postgres script: - tox -e "py27-{sqlite,pg}" before_deploy: - sudo apt-get update - sudo apt-get install docker-engine deploy: - provider: script script: ./scripts/push_image.sh on: branch: master - provider: script script: ./scripts/deploy.sh on: branch: master
language: python sudo: false dist: trusty python: - "2.7" addons: postgresql: "9.6" services: - postgresql - docker install: - pip install tox==2.3.2 before_script: - psql -c 'create database filmfest;' -U postgres script: - tox -e "py27-{sqlite,pg}" before_deploy: - sudo apt-get update - sudo apt-get install docker-engine - git fetch --unshallow deploy: - provider: script script: ./scripts/push_image.sh on: branch: master - provider: script script: ./scripts/deploy.sh on: branch: master
Add `git fetch --unshallow` to before_deploy in Travis
Add `git fetch --unshallow` to before_deploy in Travis Travis downloads only 50 recent commits (which is known as shallow copy) by default: ``` git clone --depth=50 https://github.com/kinaklub/next.filmfest.by.git kinaklub/next.filmfest.by ``` It makes sense for PR checks because `clone` process is faster on big repositories. However it can break one of the commands we use for deployment: ``` git describe --tags ``` The command above expects to have at least one tag in the downloaded commits to produce a version like `0.3` for tag 0.3 or `0.3-273-gc479fe0` for an untagged revision with hash `gc479fe0` that is 273 commits forward from tag `0.3`. So let's try to unshallow (download the full history) the repository if we are going to deploy this version to production. An alternative approach for fixing this is to add parameter `--always` to return just the commit hash if there are no tags in the recent commits: ``` $ git describe --tags --always c479fe0 ```
YAML
unlicense
kinaklub/next.filmfest.by,kinaklub/next.filmfest.by,nott/next.filmfest.by,nott/next.filmfest.by,kinaklub/next.filmfest.by,nott/next.filmfest.by,nott/next.filmfest.by,kinaklub/next.filmfest.by
f946640924717be6ecb5ef34360e1e56f6c9170b
.travis.yml
.travis.yml
language: go notifications: email: false env: global: - PATH=$HOME/gopath/bin:$PATH before_install: - go get golang.org/x/tools/cmd/cover - go get golang.org/x/tools/cmd/goimports - go get golang.org/x/tools/cmd/vet - go get github.com/golang/lint/golint - go get github.com/mattn/goveralls install: - go get ./... before_script: - wget https://gist.githubusercontent.com/karlek/56595e7f313f8a74d66e/raw/goclean.sh - chmod +x goclean.sh script: - ./goclean.sh
language: go notifications: email: false env: global: - PATH=$HOME/gopath/bin:$PATH before_install: - go get golang.org/x/tools/cmd/cover - go get golang.org/x/tools/cmd/goimports - go get golang.org/cmd/vet - go get github.com/golang/lint/golint - go get github.com/mattn/goveralls install: - go get ./... before_script: - wget https://gist.githubusercontent.com/karlek/56595e7f313f8a74d66e/raw/goclean.sh - chmod +x goclean.sh script: - ./goclean.sh
Update go vet import path
Update go vet import path
YAML
cc0-1.0
datasektionen/taitan
9e600ed0b15bd82b9ffa30c1c1e64dd14dbd56ec
.travis.yml
.travis.yml
language: python python: - 2.5 - 2.6 - 2.7 - 3.2 install: - if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors ssl; fi - pip install --use-mirrors tox script: - export TOXENV=$(echo "$TRAVIS_PYTHON_VERSION" | sed --regexp-extended 's/([0-9])\.([0-9])/py\1\2/g') - echo "TOXENV=$TOXENV" - tox
language: python python: - 2.5 - 2.6 - 2.7 - 3.2 install: - if [[ $TRAVIS_PYTHON_VERSION == '2.5' ]]; then pip install --use-mirrors --insecure ssl; fi - pip install --use-mirrors tox script: - export TOXENV=$(echo "$TRAVIS_PYTHON_VERSION" | sed --regexp-extended 's/([0-9])\.([0-9])/py\1\2/g') - echo "TOXENV=$TOXENV" - tox
Use --insecure when running pip with Python 2.5
Use --insecure when running pip with Python 2.5
YAML
mit
tjwei/jedi,mfussenegger/jedi,flurischt/jedi,jonashaag/jedi,dwillmer/jedi,tjwei/jedi,jonashaag/jedi,mfussenegger/jedi,WoLpH/jedi,WoLpH/jedi,flurischt/jedi,dwillmer/jedi
6fb65054e176136423b45dabf51cc6a3c3e9ba40
.travis.yml
.travis.yml
language: node_js node_js: - "4" - "6" - "7" script: "npm run-script travis"
language: node_js node_js: - "6" - "8" - "10" script: "npm run-script travis"
Build with node.js 6, 8, 10, drop 4 and 7
Travis: Build with node.js 6, 8, 10, drop 4 and 7
YAML
bsd-3-clause
papandreou/node-pngquant
18431e9874c82f580515c19bdc605219f2c691bd
.travis.yml
.travis.yml
language: php php: - 5.5 - 5.6 - 7.0 before_install: - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install "5.3.0" - npm install -g gulp install: - php composer.phar install - npm install - gulp --production script: - vendor/bin/phpunit
language: php php: - 5.6 - 7.0 - 7.1 before_install: - rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install "5.3.0" - npm install -g gulp install: - php composer.phar install - npm install - gulp --production script: - vendor/bin/phpunit
Update PHP versions in Travis CI config
Update PHP versions in Travis CI config - PHP 5.5 reached end of life over a year ago, so don't test with it anymore. - Test with PHP 7.1.
YAML
mit
aag/fillmysuitcase,aag/fillmysuitcase,aag/fillmysuitcase
a069e403e0924c8707f170e7f3940ab634e1fd71
.travis.yml
.travis.yml
language: rust sudo: false addons: apt: packages: # for building MPI libraries - build-essential - gfortran # bindgen dependency - libclang-3.4-dev # travis-cargo dependencies - libcurl4-openssl-dev - libelf-dev - libdw-dev rust: - stable # - beta env: matrix: - MPI_LIBRARY=mpich MPI_LIBRARY_VERSION=3.1.4 # - MPI_LIBRARY=mpich MPI_LIBRARY_VERSION=3.0.4 # - MPI_LIBRARY=openmpi MPI_LIBRARY_VERSION=1.8.7 global: - LIBCLANG_PATH=/usr/lib/llvm-3.4/lib install: - sh ci/install-mpi.sh - export PATH="${HOME}/opt/${MPI_LIBRARY}-${MPI_LIBRARY_VERSION}/bin:${PATH}" - | pip install 'travis-cargo<0.2' --user && export PATH="${HOME}/.local/bin:${PATH}" script: - | travis-cargo build && travis-cargo test && travis-cargo --only stable doc cache: directories: - $HOME/opt
language: rust sudo: false addons: apt: packages: # for building MPI libraries - build-essential - gfortran # bindgen dependency - libclang-3.4-dev # travis-cargo dependencies - libcurl4-openssl-dev - libelf-dev - libdw-dev rust: - stable # - beta env: matrix: - MPI_LIBRARY=mpich MPI_LIBRARY_VERSION=3.1.4 # - MPI_LIBRARY=mpich MPI_LIBRARY_VERSION=3.0.4 # - MPI_LIBRARY=openmpi MPI_LIBRARY_VERSION=1.8.7 global: - LIBCLANG_PATH=/usr/lib/llvm-3.4/lib install: - sh ci/install-mpi.sh - export MPI_PREFIX="${HOME}/opt/${MPI_LIBRARY}-${MPI_LIBRARY_VERSION}" - export PATH="${MPI_PREFIX}/bin${PATH:+":${PATH}"}" - export LD_LIBRARY_PATH="${MPI_PREFIX}/lib${LD_LIBRARY_PATH:+":${LD_LIBRARY_PATH}"}" - | pip install 'travis-cargo<0.2' --user && export PATH="${HOME}/.local/bin:${PATH}" script: - | travis-cargo build && travis-cargo test && travis-cargo --only stable doc cache: directories: - $HOME/opt
Set LD_LIBRARY_PATH in CI script.
Set LD_LIBRARY_PATH in CI script.
YAML
apache-2.0
Rufflewind/rsmpi,Rufflewind/rsmpi,Rufflewind/rsmpi
c48e49e5373dbcd998021b5fbb3d97624fcaa3a7
.travis.yml
.travis.yml
language: node_js node_js: - 6.2 script: - npm run lint - npm test
language: node_js node_js: - 6 script: - npm run lint - npm test
Test on latest version of node
Test on latest version of node Not the old 6.2
YAML
mit
af/envalid,af/envalid
b399fdb4ca9391d970315e37d8fd58c288a4ba42
.travis.yml
.travis.yml
language: objective-c osx_image: xcode9 xcode_sdk: iphonesimulator10.0 script: - set -o pipefail - travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON iOS" -destination "platform=iOS Simulator,name=iPhone 6" build-for-testing test | xcpretty - travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON macOS" build-for-testing test | xcpretty - travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON tvOS" -destination "platform=tvOS Simulator,name=Apple TV 1080p" build-for-testing test | xcpretty
language: objective-c osx_image: xcode9.3 xcode_sdk: iphonesimulator10.0 script: - set -o pipefail - travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON iOS" -destination "platform=iOS Simulator,name=iPhone 6" build-for-testing test | xcpretty - travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON macOS" build-for-testing test | xcpretty - travis_retry xcodebuild -workspace SwiftyJSON.xcworkspace -scheme "SwiftyJSON tvOS" -destination "platform=tvOS Simulator,name=Apple TV 1080p" build-for-testing test | xcpretty
Update osx image to 9.3
Update osx image to 9.3
YAML
mit
SwiftyJSON/SwiftyJSON,twobitlabs/SwiftyJSON,MikotoZero/SwiftyJSON,SwiftyJSON/SwiftyJSON,MikotoZero/SwiftyJSON,SwiftyJSON/SwiftyJSON,MikotoZero/SwiftyJSON,twobitlabs/SwiftyJSON
86c9baab4767b6e0905963ebbd79087bfb39f49d
.travis.yml
.travis.yml
language: node_js node_js: - "6" - "5" - "4" - "0.12" - "0.11" - "0.10" - "iojs" script: npm run ci
language: node_js node_js: - "6" - "5" - "4" - "0.12" - "0.11" script: npm run ci
Remove support for old versions of node
Remove support for old versions of node
YAML
mit
toboid/all-finished
0cb1a4783d9e8a0e4cf0445ef5fb300b968b6b3b
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.5 - 3.6 cache: pip install: - pip install -e . - pip install tensorflow - pip install coverage - pip install jupyter - pip install matplotlib - pip install scipy script: - pytest tests/
language: python python: - 2.7 - 3.5 - 3.6 cache: pip install: - pip install -e . - pip install tensorflow==1.12.0 - pip install coverage - pip install jupyter - pip install matplotlib - pip install scipy script: - pytest tests/
Check if fixed TF version resolves numeric issue
Check if fixed TF version resolves numeric issue
YAML
mit
fgnt/nara_wpe
c489af61938618a7c07407711575232df31727fb
.travis.yml
.travis.yml
language: rust after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && cargo doc && echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > target/doc/index.html && sudo pip install ghp-import && ghp-import -n target/doc && git push -fq https://${GH_SECRET}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages env: global: # GH_SECRET for pushing the docs to the gh-pages branch automatically - secure: denTXvhagGLyEn84shlKbWKwOIjlRprVm0cgw1BwSHhihDHEomytvOGoMPBmqcSYb8Q6oG26WN9qd0Mdha/ue3eQ9MOugrz3fZ+oQPzWbJJ9zJWDngk3WBpY7A68jZmp3RJeI7xxBykIBojcN1lJQlPRkt1uWyYJAB0GYybWAfI=
language: rust after_success: | [ $TRAVIS_BRANCH = master ] && [ $TRAVIS_PULL_REQUEST = false ] && cargo doc && echo "<meta http-equiv=refresh content=0;url=`echo $TRAVIS_REPO_SLUG | cut -d '/' -f 2`/index.html>" > target/doc/index.html && sudo pip install ghp-import && ghp-import -n target/doc && git push -fq https://${GH_SECRET}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages && sudo apt-get install libcurl4-openssl-dev libelf-dev libdw-dev && wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz && tar xzf master.tar.gz && mkdir kcov-master/build && cd kcov-master/build && cmake .. && make && sudo make install && cd ../.. && kcov --coveralls-id=$TRAVIS_JOB_ID target/kcov target/debug/lea-* env: global: # GH_SECRET for pushing the docs to the gh-pages branch automatically - secure: denTXvhagGLyEn84shlKbWKwOIjlRprVm0cgw1BwSHhihDHEomytvOGoMPBmqcSYb8Q6oG26WN9qd0Mdha/ue3eQ9MOugrz3fZ+oQPzWbJJ9zJWDngk3WBpY7A68jZmp3RJeI7xxBykIBojcN1lJQlPRkt1uWyYJAB0GYybWAfI=
Add coverage testing with kcov
Add coverage testing with kcov
YAML
apache-2.0
jonas-schievink/lea,jonas-schievink/lea
4a902060d4e09d795e1c888d1e73532ef9ba8420
.travis.yml
.travis.yml
language: node_js node_js: - "0.11" - "0.10" - iojs - iojs-v1.0.2 services: - redis-server before_install: - if [[ `node --version` =~ "v0.10" ]]; then npm install -g npm@latest; fi - npm config set spin false - printf "@npm:registry=https://enterprise.npmjs.com\n" >> ~/.npmrc
language: node_js node_js: - "0.11" - "0.10" - iojs services: - redis-server before_install: - if [[ `node --version` =~ "v0.10" ]]; then npm install -g npm@latest; fi - npm config set spin false - printf "@npm:registry=https://enterprise.npmjs.com\n" >> ~/.npmrc
Drop iojs-v1.0.2 as Travis target, in favour of the regular iojs target.
Drop iojs-v1.0.2 as Travis target, in favour of the regular iojs target.
YAML
isc
npm/npme-auth-github,npm/npmo-auth-github
85be89a89c3f7a17a04e4b87cb593f6e8354fbed
.travis.yml
.travis.yml
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - pypy install: python setup.py install script: python setup.py test
language: python python: - 2.6 - 2.7 - 3.2 - 3.3 - 3.4 - 3.5 - pypy install: - pip install . script: python setup.py nosetests
Add Python 3.5 to Travis configuration, use nose to run all tests.
Add Python 3.5 to Travis configuration, use nose to run all tests.
YAML
mit
jvanasco/formencode,formencode/formencode,genixpro/formencode,formencode/formencode,jvanasco/formencode,genixpro/formencode,genixpro/formencode,systemctl/formencode,systemctl/formencode,jvanasco/formencode,formencode/formencode,systemctl/formencode
a565b793a89d990c700247904a7421dcec358c1c
.travis.yml
.travis.yml
language: node_js node_js: - 0.4 - 0.6 - 0.7
language: node_js node_js: - 0.6 - 0.7
Drop 0.4 for now. If it is needed later then we can look into it.
Drop 0.4 for now. If it is needed later then we can look into it.
YAML
bsd-2-clause
mikepb/node-leveldb,my8bird/node-leveldb,maxogden/node-leveldb,maxogden/node-leveldb,mikepb/node-leveldb,my8bird/node-leveldb,my8bird/node-leveldb,maxogden/node-leveldb
18a7a644dea1e9fc666509de1527ba9f7c58ae04
.travis.yml
.travis.yml
language: go go: - 1.7.4 env: - SUITE=lint - SUITE=check - SUITE=test install: - make install-tools script: - make ${SUITE}
language: go go: - 1.7.4 env: - SUITE=lint - SUITE=check - SUITE=test - SUITE=build install: - make install-tools script: - make ${SUITE}
Build the project in Travis to make sure that building it works
Build the project in Travis to make sure that building it works
YAML
mit
jvrplmlmn/nginx-requests-stats
d5aaf9cd1793b4db2835cf83839602e5f37d4821
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4.2' - '5.1' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '0.10' - '0.12' - '4' - '5.1' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Test with latest Node.js 4 on Travis CI.
Test with latest Node.js 4 on Travis CI.
YAML
mit
bigeasy/advance,bigeasy/advance
aa00327ad152adeb3ec7ba349aea9d5c62257485
.travis.yml
.travis.yml
language: python python: - "2.7" before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda2/bin:$PATH - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy sympy matplotlib - pip install . script: cd tests && python test_model.py
language: python python: - "2.7" - "3.4" - "3.5" before_install: - wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh - chmod +x miniconda.sh - ./miniconda.sh -b - export PATH=/home/travis/miniconda2/bin:$PATH - conda update --yes conda install: - conda install --yes python=$TRAVIS_PYTHON_VERSION numpy scipy sympy matplotlib - pip install . script: cd tests && python test_model.py
Add new versions of Python in Travis
Add new versions of Python in Travis
YAML
apache-2.0
Phylliade/ikpy
4e1ad6174a9188e4e2415b3584f163bdc5b0fa61
.travis.yml
.travis.yml
language: python cache: pip python: - "3.6" - "3.7-dev" install: - pipenv install script: - scripts/test # after_script: # - codecov
language: python cache: pip python: - "3.6" - "3.7-dev" install: - pip install flit - flit install script: - scripts/test # after_script: # - codecov
Install flit and install package with flit
:green_heart: Install flit and install package with flit
YAML
mit
tiangolo/fastapi,tiangolo/fastapi,tiangolo/fastapi
e09e28dd62331021daedce4dd071780a3e9c7251
.travis.yml
.travis.yml
language: ruby java cache: bundler rvm: - 2.3.1 env: AWS_ACCESS_KEY_ID=boop AWS_REGION=local AWS_SECRET_KEY=beep DATABASE_URL=postgres://localhost/splits-io-test DYNAMODB_URL=http://localhost:8000 S3_BUCKET=splits script: - RAILS_ENV=test bundle exec rake db:migrate - bundle exec rake db:test:prepare - bundle exec rspec spec services: - postgresql before_script: - psql -c 'create database "splits-io-test";' -U postgres - wget https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.tar.gz -O /tmp/dynamodb.tar.gz - mkdir /tmp/dynamodb - tar -xzvf /tmp/dynamodb.tar.gz -C /tmp/dynamodb - java -Djava.library.path=/tmp/dynamodb/DynamoDBLocal_lib -jar /tmp/dynamodb/DynamoDBLocal.jar -sharedDb -inMemory & - bundle exec fakes3 -r /tmp/splits-io/splits -p 4567 -q &
language: ruby java cache: bundler rvm: - 2.3.4 env: AWS_ACCESS_KEY_ID=boop AWS_REGION=local AWS_SECRET_KEY=beep DATABASE_URL=postgres://localhost/splits-io-test DYNAMODB_URL=http://localhost:8000 S3_BUCKET=splits script: - RAILS_ENV=test bundle exec rake db:migrate - bundle exec rake db:test:prepare - bundle exec rspec spec services: - postgresql before_script: - psql -c 'create database "splits-io-test";' -U postgres - wget https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.tar.gz -O /tmp/dynamodb.tar.gz - mkdir /tmp/dynamodb - tar -xzvf /tmp/dynamodb.tar.gz -C /tmp/dynamodb - java -Djava.library.path=/tmp/dynamodb/DynamoDBLocal_lib -jar /tmp/dynamodb/DynamoDBLocal.jar -sharedDb -inMemory & - bundle exec fakes3 -r /tmp/splits-io/splits -p 4567 -q &
Upgrade to Ruby 2.3.4 in Travis CI
Upgrade to Ruby 2.3.4 in Travis CI
YAML
agpl-3.0
BatedUrGonnaDie/splits-io,glacials/splits-io,glacials/splits-io,glacials/splits-io,BatedUrGonnaDie/splits-io,BatedUrGonnaDie/splits-io,glacials/splits-io,BatedUrGonnaDie/splits-io
46a4c8157ccf9bafbdf641e298d1268910dd75be
.travis.yml
.travis.yml
language: ruby rvm: - 2.3 - 2.4 - 2.5 before_install: - gem update --system notifications: email: on_success: change
language: ruby rvm: - 2.3 - 2.4 - 2.5 before_install: - gem update --system cache: bundler notifications: email: on_success: change
Add Bundler caching for Travis CI
Add Bundler caching for Travis CI More info [here](https://docs.travis-ci.com/user/caching/).
YAML
mit
AlexWayfer/flame,AlexWayfer/flame
9b34c6f1a715d3aa157270b150947c6eca081ffc
.travis.yml
.travis.yml
language: rust rust: - stable - beta - nightly matrix: allow_features: - rust: nightly
language: rust rust: - stable - beta - nightly matrix: allow_features: - rust: nightly script: - cargo build --verbose - cargo test --verbose - cargo doc sudo: required after_success: | [ $TRAVIS_BRANCH = master ] && sudo pip install --upgrade pip && sudo pip install ghp-import2 && ghp-import -n target/doc && git push -qf https://${GITHUB_API_KEY}@github.com/${TRAVIS_REPO_SLUG}.git gh-pages
Update build workflow to build documentation
Update build workflow to build documentation
YAML
mit
SplittyDev/spotify-rs