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
7b941fcf25c87a4315acf4bc35e1c0f084242d6f
recipes/pyaaf2/meta.yaml
recipes/pyaaf2/meta.yaml
{% set name = "pyaaf2" %} {% set version = "1.4.0" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" sha256: 160d3c26c7cfef7176d0bdb0e55772156570435982c3abfa415e89639f76e71b build: number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - pip - python run: - python test: imports: - aaf2 - aaf2.model - aaf2.model.ext about: home: "https://github.com/markreidvfx/pyaaf2" license: MIT license_family: MIT license_file: LICENSE summary: "A python module for reading and writing advanced authoring format files" doc_url: dev_url: extra: recipe-maintainers: - vvzen
{% set name = "pyaaf2" %} {% set version = "1.4.0" %} package: name: "{{ name|lower }}" version: "{{ version }}" source: url: "https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz" sha256: 160d3c26c7cfef7176d0bdb0e55772156570435982c3abfa415e89639f76e71b build: noarch: python number: 0 script: "{{ PYTHON }} -m pip install . -vv" requirements: host: - pip - python >=3 run: - python >=3 test: imports: - aaf2 - aaf2.model - aaf2.model.ext about: home: "https://github.com/markreidvfx/pyaaf2" license: MIT license_family: MIT license_file: LICENSE summary: "A python module for reading and writing advanced authoring format files" doc_url: dev_url: extra: recipe-maintainers: - vvzen
Make pyaaf2 noarch and specify py lower bound
Make pyaaf2 noarch and specify py lower bound
YAML
bsd-3-clause
jakirkham/staged-recipes,mariusvniekerk/staged-recipes,igortg/staged-recipes,stuertz/staged-recipes,goanpeca/staged-recipes,hadim/staged-recipes,igortg/staged-recipes,conda-forge/staged-recipes,mariusvniekerk/staged-recipes,jochym/staged-recipes,conda-forge/staged-recipes,ocefpaf/staged-recipes,kwilcox/staged-recipes,ReimarBauer/staged-recipes,jochym/staged-recipes,hadim/staged-recipes,ocefpaf/staged-recipes,goanpeca/staged-recipes,ReimarBauer/staged-recipes,kwilcox/staged-recipes,johanneskoester/staged-recipes,stuertz/staged-recipes,jakirkham/staged-recipes,johanneskoester/staged-recipes
2709686ecf4ba3db28547852f3bdf6e1febe1523
.circleci/config.yml
.circleci/config.yml
# JavaScript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2.1 jobs: build: docker: - image: circleci/node:14.12 working_directory: ~/repo steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: npm install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: npm run lint - run: npm test
# JavaScript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2.1 jobs: build: docker: - image: circleci/node:14.13 working_directory: ~/repo steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: npm install - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: npm run lint - run: npm test
Update circleci/node Docker tag to v14.13
Update circleci/node Docker tag to v14.13 Signed-off-by: Renovate Bot <[email protected]>
YAML
mit
paazmaya/tozan
908b4f7c5d66512fb770b2dac3bb43dce6db12e5
.circleci/config.yml
.circleci/config.yml
# Javascript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2 jobs: build: docker: - image: circleci/node:10.12-stretch working_directory: ~/node-7z steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: name: Install System Dependencies command: sudo apt-get update && sudo apt-get install -y p7zip-full - run: name: Install Package Dependencies command: npm install - run: name: Install Code Climate, notify of a pending test report command: | curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter chmod +x ./cc-test-reporter ./cc-test-reporter before-build - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: name: Run tests and coverage command: npm run coverage - run: name: Send coverage to Code Climate command: ./cc-test-reporter after-build --coverage-input-type lcov --exit-code $?
# Javascript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2 jobs: build: docker: - image: circleci/node:10.12-stretch working_directory: ~/node-7z steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: name: Install System Dependencies command: sudo apt-get update && sudo apt-get install -y p7zip-full - run: name: Copy 7z Binary to _mock command: cp /usr/bin/7z "./test/_mock/Seven Zip" - run: name: Install Package Dependencies command: npm install - run: name: Install Code Climate, notify of a pending test report command: | curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter chmod +x ./cc-test-reporter ./cc-test-reporter before-build - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "package.json" }} - run: name: Run tests and coverage command: npm run coverage - run: name: Send coverage to Code Climate command: ./cc-test-reporter after-build --coverage-input-type lcov --exit-code $?
Make 7z binary available for testing
ci: Make 7z binary available for testing
YAML
isc
quentinrossetti/node-7z,quentinrossetti/node-7z
b3cb985cb2e6d9883ccbbcdb6bcf561a0f29958d
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: python:3.6 working_directory: ~/repo steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "requirements.txt" }} - v1-dependencies- - run: name: Install dependencies command: | echo "deb http://mozilla.debian.net/ jessie-backports firefox-release" > /etc/apt/sources.list.d/debian-mozilla.list wget mozilla.debian.net/pkg-mozilla-archive-keyring_1.1_all.deb dpkg -i pkg-mozilla-archive-keyring_1.1_all.deb rm pkg-mozilla-archive-keyring_1.1_all.deb apt-get update apt-get install -y firefox python3 -m venv venv . venv/bin/activate pip install -r requirements.txt - save_cache: paths: - ./venv key: v1-dependencies-{{ checksum "requirements.txt" }} - run: name: Run command: | cp credentials.py.example credentials.py ./run.sh
version: 2 jobs: build: docker: - image: python:3.6 working_directory: ~/repo steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "requirements.txt" }} - v1-dependencies- - run: name: Install dependencies command: | echo "deb deb http://security.debian.org/ jessie/updates main" > /etc/apt/sources.list.d/debian-mozilla.list wget mozilla.debian.net/pkg-mozilla-archive-keyring_1.1_all.deb dpkg -i pkg-mozilla-archive-keyring_1.1_all.deb rm pkg-mozilla-archive-keyring_1.1_all.deb apt-get update apt-get install -y firefox-esr python3 -m venv venv . venv/bin/activate pip install -r requirements.txt - save_cache: paths: - ./venv key: v1-dependencies-{{ checksum "requirements.txt" }} - run: name: Run command: | cp credentials.py.example credentials.py ./run.sh
Change to Firefox supported in Debian Jessie
Change to Firefox supported in Debian Jessie
YAML
mit
Agrendalath/DWBot,Agrendalath/DWBot
be1e962dbba0055078ae0883ecf12a92ad7ffb26
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: machine: enabled: true working_directory: ~/project steps: - checkout - run: name: "Build Docker Images" command: ./build-images.sh - deploy: command: | if [ "${CIRCLE_BRANCH}" == "master" ]; then docker login -u $DOCKER_USER -p $DOCKER_PASS docker push felicianotech/docker-hugo fi
version: 2 jobs: build: machine: enabled: true working_directory: ~/project steps: - checkout - run: name: "Build Docker Images" command: ./build-images.sh - deploy: command: | if [ "${CIRCLE_BRANCH}" == "master" ]; then docker login -u $DOCKER_USER -p $DOCKER_PASS docker push felicianotech/docker-hugo docker push cibuilds/hugo fi
Add new Docker Hub repo as push target.
Add new Docker Hub repo as push target.
YAML
mit
felicianotech/docker-hugo
f7d64b4ece6a2e44087b8022eecc73a298c8ad85
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/node:8.9 working_directory: ~/repo branches: only: - production steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "app/package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: command: yarn install working_directory: app - run: command: yarn test working_directory: app - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "app/package.json" }} # Build - run: sudo apt install rsync - run: command: yarn build working_directory: app - run: ssh-keyscan -H $DEPLOY_HOST >> ~/.ssh/known_hosts - run: rsync -az ~/repo/app/build/ $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_DIRECTORY --delete
version: 2 jobs: build: docker: - image: circleci/node:8.9 working_directory: ~/repo branches: only: - production steps: - checkout # Download and cache dependencies - restore_cache: keys: - v1-dependencies-{{ checksum "app/package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: command: yarn install working_directory: app - run: command: yarn build-css && yarn test working_directory: app - save_cache: paths: - node_modules key: v1-dependencies-{{ checksum "app/package.json" }} # Build - run: sudo apt install rsync - run: command: yarn build working_directory: app - run: ssh-keyscan -H $DEPLOY_HOST >> ~/.ssh/known_hosts - run: rsync -az ~/repo/app/build/ $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_DIRECTORY --delete
Build css before running tests
Build css before running tests
YAML
mit
dmatthew/my-secret-language,dmatthew/my-secret-language,dmatthew/my-secret-language
f114abc6cb18a1a1fac18bd4e870ae6b7f4d8404
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build-and-test: environment: BUNDLE_PATH: vendor/bundle FL_OUTPUT_DIR: output macos: xcode: "9.4.1" working_directory: ~/VimeoNetworking shell: /bin/bash --login -o pipefail steps: - checkout - restore_cache: key: v1-gems-{{ checksum "Gemfile.lock" }} - run: name: Set Ruby version command: echo "ruby-2.4" > ~/.ruby-version - run: name: Install bundler dependencies command: bundle install --path vendor/bundle - run: name: Build and run iOS tests command: bundle exec fastlane scan environment: SCAN_DEVICE: iPhone 8 SCAN_SCHEME: VimeoNetworkingExample-iOS - save_cache: paths: - vendor/bundle key: v1-gems-{{ checksum "Gemfile.lock" }} - store_artifacts: path: output - store_test_results: path: output/scan workflows: version: 2 build: jobs: - build-and-test
version: 2 jobs: build-and-test: environment: BUNDLE_PATH: vendor/bundle FL_OUTPUT_DIR: output macos: xcode: "10.0.0" working_directory: ~/VimeoNetworking shell: /bin/bash --login -o pipefail steps: - checkout - restore_cache: key: v1-gems-{{ checksum "Gemfile.lock" }} - run: name: Set Ruby version command: echo "ruby-2.4" > ~/.ruby-version - run: name: Install bundler dependencies command: bundle install --path vendor/bundle - run: name: Build and run iOS tests command: bundle exec fastlane ios test environment: SCAN_DEVICE: iPhone 8 SCAN_SCHEME: VimeoNetworkingExample-iOS - save_cache: paths: - vendor/bundle key: v1-gems-{{ checksum "Gemfile.lock" }} - store_artifacts: path: output - store_test_results: path: output/scan workflows: version: 2 build: jobs: - build-and-test
Update CircleCI to build against Xcode 10
Update CircleCI to build against Xcode 10
YAML
mit
vimeo/VimeoNetworking,vimeo/VimeoNetworking
84c374a1a63ce73560d100e25a53032331a9dbc7
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/openjdk:8-jdk working_directory: ~/repo environment: JVM_OPTS: -Xmx2048m steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "build.gradle" }} - run: ./gradlew dependencies --no-parallel - save_cache: paths: - ~/.gradle key: v1-dependencies-{{ checksum "build.gradle" }} - run: ./gradlew build --no-parallel
version: 2 jobs: build: docker: - image: circleci/openjdk:8-jdk working_directory: ~/repo steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "build.gradle" }} - run: ./gradlew dependencies --no-parallel - save_cache: paths: - ~/.gradle key: v1-dependencies-{{ checksum "build.gradle" }} - run: ./gradlew build --no-parallel
Fix Retard Circle ™ - Round 2
Fix Retard Circle ™ - Round 2
YAML
apache-2.0
Hexworks/zircon,Hexworks/zircon,Hexworks/zircon
1bfdf27f5fe080acaeeb892accc7c582acad00f9
.circleci/config.yml
.circleci/config.yml
# Python CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-python/ for more details # version: 2 jobs: build: docker: - image: circleci/python:3.9.4@sha256:41698b30a81f886d5a7365896d13c473db34e91c42e45c1ea67db5e0a963d43b working_directory: ~/repo steps: - checkout - restore_cache: keys: - cache-{{ checksum "Pipfile.lock" }} - cache- - run: name: Install dependencies command: | python3 -m venv .venv pip install --user pipenv pipenv sync --dev - save_cache: key: cache-{{ checksum "Pipfile.lock" }} paths: - ~/.local - ~/.cache - run: name: run tests command: | pipenv run flake8 bamboo_crawler tests export AWS_ACCESS_KEY_ID='1234' export AWS_SECRET_ACCESS_KEY='5678' pipenv run python setup.py test pipenv run python setup.py sdist bdist_wheel pipenv run twine check dist/* - store_artifacts: path: test-reports destination: test-reports
# Python CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-python/ for more details # version: 2 jobs: build: docker: - image: circleci/python:3.9.6@sha256:61c1806d7594b0bb3e5247709f6db770f3762ddf994545f1c172dc19924a0f7f working_directory: ~/repo steps: - checkout - restore_cache: keys: - cache-{{ checksum "Pipfile.lock" }} - cache- - run: name: Install dependencies command: | python3 -m venv .venv pip install --user pipenv pipenv sync --dev - save_cache: key: cache-{{ checksum "Pipfile.lock" }} paths: - ~/.local - ~/.cache - run: name: run tests command: | pipenv run flake8 bamboo_crawler tests export AWS_ACCESS_KEY_ID='1234' export AWS_SECRET_ACCESS_KEY='5678' pipenv run python setup.py test pipenv run python setup.py sdist bdist_wheel pipenv run twine check dist/* - store_artifacts: path: test-reports destination: test-reports
Update circleci/python Docker tag to v3.9.6
Update circleci/python Docker tag to v3.9.6
YAML
bsd-3-clause
kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler,kitsuyui/bamboo-crawler
95b937b50ee42a01e9ac95eb2d9a8f0c019d8d2e
.circleci/config.yml
.circleci/config.yml
version: 2 jobs: build: docker: - image: circleci/node:8@sha256:41517eb04d4fe284b93ae3a132a8dca0e2433ca7043d8a0bf809d3fb10a6a416 - image: circleci/mongo:3@sha256:2d9bd2912958ebb1b22c707d826d32d410012f1edf55681773cdbf076f54840b steps: - checkout - run: yarn install --frozen-lockfile - run: yarn test - run: yarn codecov
version: 2 jobs: build: docker: - image: circleci/node:8@sha256:0f95ad042f0099e737b59c3873795b9fb427ddf5fac675e47b1d44d58616c1bd - image: circleci/mongo:3@sha256:2d9bd2912958ebb1b22c707d826d32d410012f1edf55681773cdbf076f54840b steps: - checkout - run: yarn install --frozen-lockfile - run: yarn test - run: yarn codecov
Update circleci/node:8 Docker digest to 0f95ad
Update circleci/node:8 Docker digest to 0f95ad
YAML
mit
js-accounts/accounts
2bd22fcc299dcffab9027b9530fad0f31c91c3d0
tardis_env27.yml
tardis_env27.yml
name: tardis channels: - defaults - conda-forge - bioconda dependencies: - python=2.7 - numpy=1.12 - scipy=0.18 - pandas=0.20 - pytables - h5py=2.6 - matplotlib=2.0 - astropy=1.3 - numexpr=2.6 - Cython=0.21 - networkx=1.10 - pytest=3.0 - pyyaml=3.12 - jsonschema=2.5.1 - pyne=0.5.3 - graphviz=2.38 - pygraphviz # RTD requirements - sphinx=1.5.1 - nbconvert=4.2.0 - numpydoc=0.5 - docutils=0.13.1 - nbformat=4.0.1 #Coverage requirements - coverage=3.7.1 - requests=2.9.1 - docopt=0.6.2 - pytest-cov=2.2.1 - pip: - nbsphinx - sphinx_bootstrap_theme - sphinxcontrib-bibtex - sphinxcontrib-tikz - coveralls - pytest-html==1.10.0 - dokuwiki - dot2tex
name: tardis channels: - defaults - conda-forge - bioconda dependencies: - python=2.7 - numpy=1.12 - scipy=0.18 - pandas=0.20 - pytables - h5py=2.6 - matplotlib=2.0 - astropy=1.3 - numexpr=2.6 - Cython=0.21 - networkx=1.10 - pytest=3.0 - pyyaml=3.12 - jsonschema=2.5.1 - pyne=0.5.3 - pyside=1.2.0 - graphviz=2.38 - pygraphviz # RTD requirements - sphinx=1.5.1 - nbconvert=4.2.0 - numpydoc=0.5 - docutils=0.13.1 - nbformat=4.0.1 #Coverage requirements - coverage=3.7.1 - requests=2.9.1 - docopt=0.6.2 - pytest-cov=2.2.1 - pip: - nbsphinx - sphinx_bootstrap_theme - sphinxcontrib-bibtex - sphinxcontrib-tikz - coveralls - pytest-html==1.10.0 - dokuwiki - dot2tex
Add pyside to requirements (needed for GUI)
Add pyside to requirements (needed for GUI)
YAML
bsd-3-clause
kaushik94/tardis,kaushik94/tardis,kaushik94/tardis,kaushik94/tardis
ae8580062774fdc32aed7abb6148b2185359c364
playbook/roles/mailhog/defaults/main.yml
playbook/roles/mailhog/defaults/main.yml
# mailhog configuration. mailhog_binary_url: https://github.com/mailhog/MailHog/releases/download/v0.2.1/MailHog_linux_amd64 mailhog_install_dir: /opt/mailhog # ssmtp configuration. ssmtp_mailhub: localhost:1025 ssmtp_root: postmaster ssmtp_authuser: "" ssmtp_authpass: "" ssmtp_from_line_override: "YES" mailhog_php_ini: - section: PHP options: - key: sendmail_path val: val: "/usr/sbin/ssmtp -t"
# mailhog configuration. mailhog_binary_url: https://github.com/mailhog/MailHog/releases/download/v0.2.1/MailHog_linux_amd64 mailhog_install_dir: /opt/mailhog # ssmtp configuration. ssmtp_mailhub: localhost:1025 ssmtp_root: postmaster ssmtp_authuser: "" ssmtp_authpass: "" ssmtp_from_line_override: "YES" mailhog_php_ini: - section: PHP options: - key: sendmail_path val: "/usr/sbin/ssmtp -t"
Fix double val in mailhog defaults.
Fix double val in mailhog defaults.
YAML
mit
wunderkraut/WunderMachina,wunderkraut/WunderMachina,wunderkraut/WunderMachina,wunderkraut/WunderMachina
9d8cd611c63a7481c2ac63a8cb380319c56498b3
roles/web/tasks/main.yml
roles/web/tasks/main.yml
--- - name: install application dependent packages apt: name={{ item }} update_cache=yes state=latest with_items: - git - python-dev - python-setuptools - python-pip - supervisor register: deps_installed - include: nginx.yml - name: install virtualenv pip: name=virtualenv state=present - name: create project directory file: path={{ project_path }} state=directory mode=0755 - name: get the flask app git: repo={{ project_repository }} dest={{ project_path }} when: deps_installed|success - name: setup virtualenv pip: virtualenv={{ project_path }}/venv requirements={{ requirements_file }} - name: copy gunicorn script for running flask app template: src=gunicorn.sh.j2 dest="/opt/{{ project_name }}/gunicorn.sh" mode=755 - name: copy supervisor script template: src=supervisor_moonlighty.conf.j2 dest=/etc/supervisor/conf.d/{{ project_name }}.conf notify: restart supervisor - name: start the application supervisorctl: name={{ project_name }} state=started config=/etc/supervisor/conf.d/{{ project_name }}.conf
--- - name: install application dependent packages apt: name={{ item }} update_cache=yes state=latest with_items: - git - python-dev - python-setuptools - python-pip - supervisor register: deps_installed - include: nginx.yml - name: install virtualenv pip: name=virtualenv state=present - name: create project directory file: path={{ project_path }} state=directory mode=0755 - name: get the flask app git: repo={{ project_repository }} dest={{ project_path }} force=yes when: deps_installed|success - name: setup virtualenv pip: virtualenv={{ project_path }}/venv requirements={{ requirements_file }} - name: copy gunicorn script for running flask app template: src=gunicorn.sh.j2 dest="/opt/{{ project_name }}/gunicorn.sh" mode=755 - name: copy supervisor script template: src=supervisor_moonlighty.conf.j2 dest=/etc/supervisor/conf.d/{{ project_name }}.conf notify: restart supervisor - name: start the application supervisorctl: name={{ project_name }} state=started config=/etc/supervisor/conf.d/{{ project_name }}.conf
Clean out working git repository
Clean out working git repository
YAML
apache-2.0
VladimirDaniyan/ansible_home
a050febdace3a3a01282c1177bf5d9cb34edc587
bosh/bosh-ops-file.yml
bosh/bosh-ops-file.yml
--- # This file can be used to co-located bosh-bot on your BOSH Director - type: replace path: /releases/- value: name: bosh-bot version: 0.0.1 url: https://storage.googleapis.com/bosh-bot-ci/bosh-bot-0.0.1.tgz sha1: 0397c6db017a56d22eaf541da63f823a96806ddf - type: replace path: /instance_groups/name=bosh/jobs/- value: {name: bosh_bot, release: bosh_bot} - type: replace path: /instance_groups/name=bosh/properties/slack? value: token: ((bosh_bot_slack_token)) authorized_usernames: ((bosh_bot_slack_authorized_usernames)) authorized_channels: ((bosh_bot_slack_authorized_channels)) - type: replace path: /instance_groups/name=bosh/properties/bosh? value: releases: ((bosh_bot_releases)) stemcells: ((bosh_bot_stemcells)) deployments: ((bosh_bot_deployments)) assets: ((bosh_bot_assets)) # existing director manifest variables user: admin password: ((admin_password)) # from terraform outputs env: ((bosh_hostname))
--- # This file can be used to co-located bosh-bot on your BOSH Director - type: replace path: /releases/- value: name: bosh-bot version: 0.0.1 url: https://storage.googleapis.com/bosh-bot-ci/bosh-bot-0.0.1.tgz sha1: 0397c6db017a56d22eaf541da63f823a96806ddf - type: replace path: /instance_groups/name=bosh/jobs/- value: {name: bosh-bot, release: bosh-bot} - type: replace path: /instance_groups/name=bosh/properties/slack? value: token: ((bosh_bot_slack_token)) authorized_usernames: ((bosh_bot_slack_authorized_usernames)) authorized_channels: ((bosh_bot_slack_authorized_channels)) - type: replace path: /instance_groups/name=bosh/properties/bosh? value: releases: ((bosh_bot_releases)) stemcells: ((bosh_bot_stemcells)) deployments: ((bosh_bot_deployments)) assets: ((bosh_bot_assets)) # existing director manifest variables user: admin password: ((admin_password)) # from terraform outputs env: ((bosh_hostname))
Fix hyphen to underscore typo
Fix hyphen to underscore typo
YAML
mit
ljfranklin/bosh-bot,ljfranklin/bosh-bot,ljfranklin/bosh-bot
7cbf14b55b352053aae0f063e17e30543c97d4b0
packages/an/ANum.yaml
packages/an/ANum.yaml
homepage: https://github.com/DanBurton/ANum#readme changelog-type: '' hash: 4dec8cf82968f9af259f1e60640bc34202740d549042f46cbc3509bc1063cb4a test-bench-deps: ANum: -any base: -any maintainer: [email protected] synopsis: Num instance for Applicatives provided via the ANum newtype changelog: '' basic-deps: base: ! '>=4.8 && <5' all-versions: - '0.1.0.0' - '0.1.1.0' - '0.2.0.1' author: Dan Burton latest: '0.2.0.1' description-type: haddock description: '' license-name: BSD3
homepage: https://github.com/DanBurton/ANum#readme changelog-type: markdown hash: c28c0a9779ba6e7c68b5bf9e395ea886563889bfa2c38583c69dd10aa283822e test-bench-deps: ANum: -any base: -any maintainer: [email protected] synopsis: Num instance for Applicatives provided via the ANum newtype changelog: ! '## 0.2.0 * Add Foldable and Traversable instances ' basic-deps: base: ! '>=4.8 && <5' all-versions: - '0.1.0.0' - '0.1.1.0' - '0.2.0.1' - '0.2.0.2' author: Dan Burton latest: '0.2.0.2' description-type: markdown description: ! 'ANum ==== Num instance for Applicatives provided via the ANum newtype ' license-name: BSD3
Update from Hackage at 2018-02-13T00:15:27Z
Update from Hackage at 2018-02-13T00:15:27Z
YAML
mit
commercialhaskell/all-cabal-metadata
431fd2eebaf2b34431d99161d2e7e05405dd0fed
packages/he/here.yaml
packages/he/here.yaml
homepage: https://github.com/tmhedberg/here changelog-type: '' hash: 7e6e14d3afd129b5ffd758670e813d049a9a3146d58f8a7f74607d0490d0b6a5 test-bench-deps: {} maintainer: [email protected] synopsis: Here docs & interpolated strings via quasiquotation changelog: '' basic-deps: base: ! '>=4.5 && <4.11' parsec: ==3.1.* mtl: ! '>=2.1 && <2.3' haskell-src-meta: ! '>=0.6 && <0.9' template-haskell: -any all-versions: - '1.0' - '1.1' - '1.2' - '1.2.1' - '1.2.2' - '1.2.3' - '1.2.4' - '1.2.5' - '1.2.6' - '1.2.7' - '1.2.8' - '1.2.9' - '1.2.10' - '1.2.11' author: Taylor M. Hedberg latest: '1.2.11' description-type: haddock description: Here docs & interpolated strings via quasiquotation license-name: BSD3
homepage: https://github.com/tmhedberg/here changelog-type: '' hash: 17d34fb83f6239e2e715f2778f5a684fb93c370c847f8af5994e91514304525e test-bench-deps: {} maintainer: [email protected] synopsis: Here docs & interpolated strings via quasiquotation changelog: '' basic-deps: base: ! '>=4.5 && <4.11' parsec: ==3.1.* mtl: ! '>=2.1 && <2.3' haskell-src-meta: ! '>=0.6 && <0.9' template-haskell: -any all-versions: - '1.0' - '1.1' - '1.2' - '1.2.1' - '1.2.2' - '1.2.3' - '1.2.4' - '1.2.5' - '1.2.6' - '1.2.7' - '1.2.8' - '1.2.9' - '1.2.10' - '1.2.11' - '1.2.12' author: Taylor M. Hedberg latest: '1.2.12' description-type: haddock description: Here docs & interpolated strings via quasiquotation license-name: BSD3
Update from Hackage at 2017-12-22T22:59:14Z
Update from Hackage at 2017-12-22T22:59:14Z
YAML
mit
commercialhaskell/all-cabal-metadata
67075639e991610e4fc7cfb82c400e3cf9c3204c
packages/st/star.yaml
packages/st/star.yaml
homepage: https://github.com/chessai/star#readme changelog-type: '' hash: b71cee63174a63e99495874b97dcbb976984195c1e0518f621c0221e48bd488b test-bench-deps: {} maintainer: [email protected] synopsis: ! '*-semirings' changelog: '' basic-deps: base: ! '>=4 && <5' all-versions: - '0.0.0.1' author: Daniel Cartwright latest: '0.0.0.1' description-type: markdown description: ! '`star` http://r6.ca/blog/20110808T035622Z.html ' license-name: BSD3
homepage: https://github.com/chessai/star#readme changelog-type: '' hash: bbe3ebd54dab57437ec75f090e87b62c4352240ef4ea49e3bcfa673a4eb22ba9 test-bench-deps: {} maintainer: [email protected] synopsis: ! '*-semirings' changelog: '' basic-deps: base: ! '>=4 && <5' all-versions: - '0.0.0.1' - '0.0.0.2' author: Daniel Cartwright latest: '0.0.0.2' description-type: markdown description: ! '`star` http://r6.ca/blog/20110808T035622Z.html ' license-name: BSD3
Update from Hackage at 2017-11-09T13:28:08Z
Update from Hackage at 2017-11-09T13:28:08Z
YAML
mit
commercialhaskell/all-cabal-metadata
24c8c629746d34a8681366d89c24562437470af2
metadata/com.infomaniak.drive.yml
metadata/com.infomaniak.drive.yml
AntiFeatures: - NonFreeNet - Tracking Categories: - Internet License: GPL-3.0-only AuthorName: Infomaniak WebSite: https://www.infomaniak.com SourceCode: https://github.com/Infomaniak/android-kDrive IssueTracker: https://contact.infomaniak.com AutoName: kDrive RepoType: git Repo: https://github.com/Infomaniak/android-kDrive.git Builds: - versionName: 4.0.11 versionCode: 40001101 commit: 4.0.11 subdir: app submodules: true gradle: - fdroid AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 4.0.11 CurrentVersionCode: 40001101
AntiFeatures: - NonFreeNet - Tracking Categories: - Internet License: GPL-3.0-only AuthorName: Infomaniak WebSite: https://www.infomaniak.com SourceCode: https://github.com/Infomaniak/android-kDrive IssueTracker: https://contact.infomaniak.com AutoName: kDrive RepoType: git Repo: https://github.com/Infomaniak/android-kDrive.git Builds: - versionName: 4.0.11 versionCode: 40001101 commit: 4.0.11 subdir: app submodules: true gradle: - fdroid - versionName: 4.0.12 versionCode: 40001201 commit: f409f3bcac905cf9f71cfb9ff8c39895b86d3fca subdir: app submodules: true gradle: - fdroid AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 4.0.12 CurrentVersionCode: 40001201
Update kDrive to 4.0.12 (40001201)
Update kDrive to 4.0.12 (40001201)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
ba2a69a3e50cc57830132868533eec0f0f50ac63
metadata/com.tachibana.downloader.yml
metadata/com.tachibana.downloader.yml
Categories: - Internet License: GPL-3.0-only SourceCode: https://github.com/TachibanaGeneralLaboratories/download-navi IssueTracker: https://github.com/TachibanaGeneralLaboratories/download-navi/issues Translation: https://crowdin.com/project/download-navi Changelog: https://github.com/TachibanaGeneralLaboratories/download-navi/blob/HEAD/NEWS Donate: https://github.com/TachibanaGeneralLaboratories/download-navi#donation AutoName: Download Navi RepoType: git Repo: https://github.com/TachibanaGeneralLaboratories/download-navi.git Builds: - versionName: 1.0.1 versionCode: 3 commit: 1.0.1 subdir: app gradle: - yes - versionName: 1.0.2 versionCode: 4 commit: 1.0.2 subdir: app gradle: - yes - versionName: 1.0.3 versionCode: 5 commit: 1.0.3 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.0.3 CurrentVersionCode: 5
Categories: - Internet License: GPL-3.0-only SourceCode: https://github.com/TachibanaGeneralLaboratories/download-navi IssueTracker: https://github.com/TachibanaGeneralLaboratories/download-navi/issues Translation: https://crowdin.com/project/download-navi Changelog: https://github.com/TachibanaGeneralLaboratories/download-navi/blob/HEAD/NEWS Donate: https://github.com/TachibanaGeneralLaboratories/download-navi#donation AutoName: Download Navi RepoType: git Repo: https://github.com/TachibanaGeneralLaboratories/download-navi.git Builds: - versionName: 1.0.1 versionCode: 3 commit: 1.0.1 subdir: app gradle: - yes - versionName: 1.0.2 versionCode: 4 commit: 1.0.2 subdir: app gradle: - yes - versionName: 1.0.3 versionCode: 5 commit: 1.0.3 subdir: app gradle: - yes - versionName: '1.1' versionCode: 6 commit: '1.1' subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '1.1' CurrentVersionCode: 6
Update Download Navi to 1.1 (6)
Update Download Navi to 1.1 (6)
YAML
agpl-3.0
f-droid/fdroiddata,f-droid/fdroiddata
8b989b87fc3c21b4d04ca718b71af845a733adae
roles/openshift_node40/tasks/install.yml
roles/openshift_node40/tasks/install.yml
--- - name: Install openshift packages package: name: "{{ l_node_packages | join(',') }}" update_cache: true register: install_openshift until: install_openshift.rc == 0 retries: 3 delay: 1 vars: l_node_packages: #- "atomic-openshift-node{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}" #- "atomic-openshift-clients{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}" #- "atomic-openshift-hyperkube{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}" - "origin-node{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}" - "origin-clients{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}" - "origin-hyperkube{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}"
--- - name: Install openshift packages package: name: "{{ l_node_packages | join(',') }}" update_cache: true register: install_openshift until: install_openshift.rc == 0 retries: 3 delay: 1 vars: l_node_packages: - "{{ openshift_service_type }}-node{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}" - "{{ openshift_service_type }}-clients{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}" - "{{ openshift_service_type }}-hyperkube{{ (openshift_pkg_version | default('')) | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}"
Install node package names based on openshift_release
Install node package names based on openshift_release Previously, the packages to be installed were hard coded for origin. As a result, there was no way of installing the openshift-enterprise packages. This was a regression from 3.x behavior. This patch uses the openshift_service_type variable to determine which packages are to be installed based on the value of openshift_release.
YAML
apache-2.0
bparees/openshift-ansible,mwoodson/openshift-ansible,akram/openshift-ansible,mwoodson/openshift-ansible,nak3/openshift-ansible,openshift/openshift-ansible,gburges/openshift-ansible,rhdedgar/openshift-ansible,openshift/openshift-ansible,bparees/openshift-ansible,nak3/openshift-ansible,kwoodson/openshift-ansible,kwoodson/openshift-ansible,gburges/openshift-ansible,akram/openshift-ansible,rhdedgar/openshift-ansible
d8f60627396a5e7422ee6bc1ee69b6f67f84225e
config/spring_boot_cli.yml
config/spring_boot_cli.yml
# Cloud Foundry Java Buildpack # Copyright 2013-2018 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Configuration for the Spring Auto Reconfiguration framework. # Note that the repository is shared with the Play Auto Reconfiguration framework and should be kept in step to # avoid conflicts. --- version: 1.+ repository_root: "{default.repository.root}/spring-boot-cli"
# Cloud Foundry Java Buildpack # Copyright 2013-2018 the original author or authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Configuration for the Spring Auto Reconfiguration framework. # Note that the repository is shared with the Play Auto Reconfiguration framework and should be kept in step to # avoid conflicts. --- version: 2.+ repository_root: "{default.repository.root}/spring-boot-cli"
Update Spring Boot CLI to 2.x
Update Spring Boot CLI to 2.x This change updates the Spring Boot CLI to the 2.x line. [resolves #611]
YAML
apache-2.0
cloudfoundry-community/tomee-buildpack,rakutentech/java-buildpack,cloudfoundry/java-buildpack,waltersve/java-buildpack,cloudfoundry-community/jboss-buildpack,cloudfoundry/java-buildpack,tom-collings/jboss-buildpack,cloudfoundry-community/jboss-buildpack,hmlingesh/java-buildpack,waltersve/java-buildpack,hmlingesh/java-buildpack,Appdynamics/java-buildpack,hmlingesh/java-buildpack,hmlingesh/java-buildpack,tom-collings/jboss-buildpack,cloudfoundry-community/tomee-buildpack,Appdynamics/java-buildpack,rakutentech/java-buildpack
a22b5a673e2765304a220e924a1330d675316c65
.github/workflows/add-new-issues-and-pull-requests-to-origami-project-board.yml
.github/workflows/add-new-issues-and-pull-requests-to-origami-project-board.yml
name: Add a new GitHub Project card linked to a GitHub issue to the specified project column on: [issues, pull_request] jobs: github-actions-automate-projects: runs-on: ubuntu-latest steps: - name: add-new-issues-to-repository-based-project-column uses: docker://takanabe/github-actions-automate-projects:v0.0.1 if: github.event_name == 'issues' && github.event.action == 'opened' env: GITHUB_TOKEN: ${{ secrets.ORIGAMI_FOX_ACCESS_TOKEN }} GITHUB_PROJECT_URL: https://github.com/orgs/Financial-Times/projects/83 GITHUB_PROJECT_COLUMN_NAME: incoming - name: add-new-prs-to-repository-based-project-column uses: docker://takanabe/github-actions-automate-projects:v0.0.1 if: github.event_name == 'pull_request' && github.event.action == 'opened' env: GITHUB_TOKEN: ${{ secrets.ORIGAMI_FOX_ACCESS_TOKEN }} GITHUB_PROJECT_URL: https://github.com/orgs/Financial-Times/projects/83 GITHUB_PROJECT_COLUMN_NAME: incoming
name: Add new issues and pull requests to Origami Project Board on: [issues, pull_request] jobs: origami_project_board_job: runs-on: ubuntu-latest name: Add new issue or pull request to Origami Project Board steps: - name: Add new issue or pull request to Origami Project Board id: origami-project-board uses: Financial-Times/origami-project-board-action@v1 with: origami-fox-access-token: ${{ secrets.ORIGAMI_FOX_ACCESS_TOKEN }}
Update to latest project board workflow
Update to latest project board workflow
YAML
mit
Financial-Times/streamcat
c5d56db0f0fe8042c90ec7e3699831abcfb65f7a
images/build/cross/variants.yaml
images/build/cross/variants.yaml
variants: canary: CONFIG: 'canary' GO_VERSION: '1.15rc1' KUBE_CROSS_VERSION: 'v1.15.0-rc.1-canary-1' PROTOBUF_VERSION: '3.0.2' ETCD_VERSION: 'v3.4.9' go1.15: CONFIG: 'go1.15' GO_VERSION: '1.15rc1' KUBE_CROSS_VERSION: 'v1.15.0-rc.1-1' PROTOBUF_VERSION: '3.0.2' ETCD_VERSION: 'v3.4.9' go1.14: CONFIG: 'go1.14' GO_VERSION: '1.14.6' KUBE_CROSS_VERSION: 'v1.14.6-1' PROTOBUF_VERSION: '3.0.2' ETCD_VERSION: 'v3.4.9' go1.13: CONFIG: 'go1.13' GO_VERSION: '1.13.14' KUBE_CROSS_VERSION: 'v1.13.14-1' PROTOBUF_VERSION: '3.0.2' ETCD_VERSION: 'v3.4.9'
variants: canary: CONFIG: 'canary' GO_VERSION: '1.15rc1' KUBE_CROSS_VERSION: 'v1.15.0-rc.1-canary-1' PROTOBUF_VERSION: '3.0.2' ETCD_VERSION: 'v3.4.9' go1.15: CONFIG: 'go1.15' GO_VERSION: '1.15rc1' KUBE_CROSS_VERSION: 'v1.15.0-rc.1-1' PROTOBUF_VERSION: '3.0.2' ETCD_VERSION: 'v3.4.9' go1.14: CONFIG: 'go1.14' GO_VERSION: '1.14.7' KUBE_CROSS_VERSION: 'v1.14.7-1' PROTOBUF_VERSION: '3.0.2' ETCD_VERSION: 'v3.4.9' go1.13: CONFIG: 'go1.13' GO_VERSION: '1.13.15' KUBE_CROSS_VERSION: 'v1.13.15-1' PROTOBUF_VERSION: '3.0.2' ETCD_VERSION: 'v3.4.9'
Build v1.14.7-1 and v1.13.15-1 images
kube-cross: Build v1.14.7-1 and v1.13.15-1 images Signed-off-by: Stephen Augustus <[email protected]>
YAML
apache-2.0
kubernetes/release,kubernetes/release
bcf8ce317b77ceb4171a29f8518bf7242ab53bc8
app/config/config_prod.yml
app/config/config_prod.yml
imports: - { resource: config.yml } #framework: # validation: # cache: apc #doctrine: # orm: # metadata_cache_driver: apc # result_cache_driver: apc # query_cache_driver: apc monolog: handlers: main: type: fingers_crossed action_level: error handler: nested nested: type: stream path: "%kernel.logs_dir%/%kernel.environment%.log" level: debug console: type: console
imports: - { resource: config.yml } services: twig.extension.debug: class: Twig_Extension_Debug tags: [{ name: 'twig.extension' }] #framework: # validation: # cache: apc #doctrine: # orm: # metadata_cache_driver: apc # result_cache_driver: apc # query_cache_driver: apc monolog: handlers: main: type: fingers_crossed action_level: error handler: nested nested: type: stream path: "%kernel.logs_dir%/%kernel.environment%.log" level: debug console: type: console
Enable twig debug dump in production for testing
Enable twig debug dump in production for testing
YAML
agpl-3.0
listabierta/census-ahoraencomun,listabierta/census-ahoraencomun,listabierta/census-ahoraencomun,listabierta/census-ahoraencomun
31b64fcb7d941687c6939ba754e959f85924805d
app/config/routing_dev.yml
app/config/routing_dev.yml
_assetic: resource: . type: assetic _wdt: resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml" prefix: /_wdt _profiler: resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml" prefix: /_profiler _configurator: resource: "@SensioDistributionBundle/Resources/config/routing/webconfigurator.xml" prefix: /_configurator _main: resource: routing.yml
_welcome: pattern: / defaults: { _controller: AcmeDemoBundle:Welcome:index } _demo_secured: resource: "@AcmeDemoBundle/Controller/SecuredController.php" type: annotation _demo: resource: "@AcmeDemoBundle/Controller/DemoController.php" type: annotation prefix: /demo _assetic: resource: . type: assetic _wdt: resource: "@WebProfilerBundle/Resources/config/routing/wdt.xml" prefix: /_wdt _profiler: resource: "@WebProfilerBundle/Resources/config/routing/profiler.xml" prefix: /_profiler _configurator: resource: "@SensioDistributionBundle/Resources/config/routing/webconfigurator.xml" prefix: /_configurator _main: resource: routing.yml
Revert "Revert "Removed Acme demo paths.""
Revert "Revert "Removed Acme demo paths."" This reverts commit 48bafcf6d5fcc448b6606f58851fa80bf598126f.
YAML
mit
joekukish/PeerReviewingSuite,joekukish/PeerReviewingSuite
b6f1b5ebfa302f2c231781175368b944e00ec309
packages/js/json-rpc-generic.yaml
packages/js/json-rpc-generic.yaml
homepage: http://github.com/khibino/haskell-json-rpc-generic changelog-type: '' hash: 5626a6644771cfe04424f72938e50b1c7e51db5325d1b33d19112d69dbe3d7fc test-bench-deps: base: <5 text: -any quickcheck-simple: -any json-rpc-generic: -any QuickCheck: -any aeson: -any maintainer: [email protected] synopsis: Generic encoder and decode for JSON-RPC changelog: '' basic-deps: bytestring: ! '>=0.10' base: ! '>=4.6 && <5' unordered-containers: -any text: -any dlist: -any containers: -any transformers: -any scientific: -any aeson: ! '>=0.7' vector: ! '>=0.10' all-versions: - '0.0.1.0' - '0.1.0.0' author: Kei Hibino latest: '0.1.0.0' description-type: haddock description: This package contains generic encoder and decode for JSON-RPC license-name: BSD3
homepage: http://github.com/khibino/haskell-json-rpc-generic changelog-type: '' hash: 291dda542e204c14cdb9c929c6bf2ade16a52412a596eb1c47c13b7d5f55b313 test-bench-deps: base: <5 text: -any quickcheck-simple: -any json-rpc-generic: -any QuickCheck: -any aeson: -any maintainer: [email protected] synopsis: Generic encoder and decode for JSON-RPC changelog: '' basic-deps: bytestring: ! '>=0.10' base: ! '>=4.6 && <5' unordered-containers: -any text: -any dlist: -any containers: -any transformers: -any scientific: -any aeson: ! '>=0.7' vector: ! '>=0.10' all-versions: - '0.0.1.0' - '0.1.0.0' - '0.2.0.0' author: Kei Hibino latest: '0.2.0.0' description-type: haddock description: This package contains generic encoder and decode for JSON-RPC license-name: BSD3
Update from Hackage at 2016-07-23T04:48:29+0000
Update from Hackage at 2016-07-23T04:48:29+0000
YAML
mit
commercialhaskell/all-cabal-metadata
a1ae53831056e4e07fce06566a9d2713e06a159e
packages/ma/markov-processes.yaml
packages/ma/markov-processes.yaml
homepage: '' changelog-type: '' hash: b9ca6d4e84ecf6a85f1cf55c9343272b4f8829a242b2d583c007f14a86bc996a test-bench-deps: markov-processes: -any memoize: -any base: ==4.* assertions: -any bifunctors: -any random: -any maintainer: Vikram Verma <[email protected]> synopsis: Hidden Markov processes. changelog: '' basic-deps: memoize: -any MonadRandom: -any base: ==4.* bifunctors: -any random: -any all-versions: - 0.0.2 author: Leopold Tal G <[email protected]>, Yorick van Pelt <[email protected]>, Vikram Verma <[email protected]> latest: 0.0.2 description-type: haddock description: '' license-name: MIT
homepage: '' changelog-type: '' hash: cb6f24fe270f17c9c3b1b986ae4049a058cb3601995e092ae894c8e4f7eadafc test-bench-deps: markov-processes: -any memoize: -any base: ==4.* assertions: -any bifunctors: -any random: -any maintainer: Vikram Verma <[email protected]> synopsis: Hidden Markov processes. changelog: '' basic-deps: memoize: -any MonadRandom: -any base: '>=4.6 && <4.7' bifunctors: -any random: -any all-versions: - 0.0.2 author: Leopold Tal G <[email protected]>, Yorick van Pelt <[email protected]>, Vikram Verma <[email protected]> latest: 0.0.2 description-type: haddock description: '' license-name: MIT
Update from Hackage at 2022-09-04T18:02:05Z
Update from Hackage at 2022-09-04T18:02:05Z
YAML
mit
commercialhaskell/all-cabal-metadata
3a861d0d1eee2c8d60af8f32be35e1a9d431247d
configurations/test/env.yml
configurations/test/env.yml
AUTH0_CLIENT_ID: AUTH0_DOMAIN: LEAFLET_TILE_URL: https://api.mapbox.com/v4/mapbox.light/{z}/{x}/{y}.png?access_token=your-access-token LEAFLET_RETINA_URL: https://api.mapbox.com/v4/mapbox.light/{z}/{x}/{y}@2x.png?access_token=token LEAFLET_ATTRIBUTION: &copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, &copy; <a href='https://www.mapbox.com/about/maps/'>Mapbox</a> MAPZEN_SEARCH_KEY: test-search-key MAPZEN_TURN_BY_TURN_KEY: test-turn-key
AUTH0_CLIENT_ID: AUTH0_DOMAIN: LEAFLET_TILE_URL: https://api.mapbox.com/v4/mapbox.light/{z}/{x}/{y}.png?access_token=your-access-token LEAFLET_RETINA_URL: https://api.mapbox.com/v4/mapbox.light/{z}/{x}/{y}@2x.png?access_token=token LEAFLET_ATTRIBUTION: &copy; <a href="http://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, &copy; <a href='https://www.mapbox.com/about/maps/'>Mapbox</a> LABEL_TILE_URL: https://api.mapbox.com/v4/mapbox.light/{z}/{x}/{y}.png?access_token=your-access-token LABEL_RETINA_URL: https://api.mapbox.com/v4/mapbox.light/{z}/{x}/{y}@2x.png?access_token=token MAPZEN_SEARCH_KEY: test-search-key MAPZEN_TURN_BY_TURN_KEY: test-turn-key
Add label urls to the test config.
test(config): Add label urls to the test config.
YAML
mit
conveyal/analysis-ui,conveyal/analysis-ui,conveyal/scenario-editor,conveyal/analysis-ui,conveyal/scenario-editor
85ffcbf2483f8d7a7f4cdc8ec5adf10a241f76c1
config/jobs/image-pushing/k8s-staging-infra-tools.yaml
config/jobs/image-pushing/k8s-staging-infra-tools.yaml
postsubmits: kubernetes/k8s.io: - name: post-k8sio-infra-tools-push-images cluster: test-infra-trusted annotations: testgrid-dashboards: wg-k8s-infra-k8sio decorate: true run_if_changed: "^dns/octodns-docker/" branches: - ^master$ spec: serviceAccountName: deployer # TODO(fejta): use pusher containers: - image: gcr.io/k8s-testimages/image-builder:v20200422-c760048 command: - /run.sh args: # this is the project GCB will run in, which is the same as the GCR # images are pushed to. - --project=k8s-staging-infra-tools - --scratch-bucket=gs://k8s-staging-infra-tools-gcb - --env-passthrough=PULL_BASE_REF - dns/octodns-docker
postsubmits: kubernetes/k8s.io: - name: post-k8sio-infra-tools-push-images cluster: k8s-infra-prow-build-trusted annotations: testgrid-dashboards: wg-k8s-infra-k8sio decorate: true run_if_changed: "^dns/octodns-docker/" branches: - ^master$ spec: serviceAccountName: gcb-builder containers: - image: gcr.io/k8s-testimages/image-builder:v20200422-c760048 command: - /run.sh args: # this is the project GCB will run in, which is the same as the GCR # images are pushed to. - --project=k8s-staging-infra-tools - --scratch-bucket=gs://k8s-staging-infra-tools-gcb - --env-passthrough=PULL_BASE_REF - dns/octodns-docker
Use k8s-infra-prow-build-trusted for an image-pushing job
Use k8s-infra-prow-build-trusted for an image-pushing job
YAML
apache-2.0
BenTheElder/test-infra,ixdy/kubernetes-test-infra,monopole/test-infra,dims/test-infra,jessfraz/test-infra,cblecker/test-infra,cblecker/test-infra,kubernetes/test-infra,dims/test-infra,pwittrock/test-infra,dims/test-infra,monopole/test-infra,fejta/test-infra,cjwagner/test-infra,brahmaroutu/test-infra,dims/test-infra,brahmaroutu/test-infra,fejta/test-infra,monopole/test-infra,cjwagner/test-infra,fejta/test-infra,michelle192837/test-infra,michelle192837/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,jessfraz/test-infra,cjwagner/test-infra,monopole/test-infra,michelle192837/test-infra,pwittrock/test-infra,cjwagner/test-infra,dims/test-infra,kubernetes/test-infra,BenTheElder/test-infra,cblecker/test-infra,fejta/test-infra,BenTheElder/test-infra,jessfraz/test-infra,monopole/test-infra,michelle192837/test-infra,brahmaroutu/test-infra,ixdy/kubernetes-test-infra,pwittrock/test-infra,cblecker/test-infra,brahmaroutu/test-infra,kubernetes/test-infra,BenTheElder/test-infra,michelle192837/test-infra,pwittrock/test-infra,jessfraz/test-infra,kubernetes/test-infra,brahmaroutu/test-infra,ixdy/kubernetes-test-infra,jessfraz/test-infra,cblecker/test-infra,ixdy/kubernetes-test-infra,cblecker/test-infra,fejta/test-infra,kubernetes/test-infra,jessfraz/test-infra,BenTheElder/test-infra,michelle192837/test-infra,monopole/test-infra,fejta/test-infra,pwittrock/test-infra,ixdy/kubernetes-test-infra,dims/test-infra,cjwagner/test-infra,BenTheElder/test-infra,cjwagner/test-infra
e5122fe7102dc3406382535f76c806b58fc2b4b7
.github/workflows/multiple_databases_repository_sample_app.yml
.github/workflows/multiple_databases_repository_sample_app.yml
name: multiple_databases_repository_sample_app on: schedule: - cron: "0 17 * * *" push: paths: - "contrib/multiple_databases_repository_sample_app/**" - ".github/workflows/multiple_databases_repository_sample_app.yml" - "support/**" pull_request: types: [opened, reopened] paths: - "contrib/multiple_databases_repository_sample_app/**" - ".github/workflows/multiple_databases_repository_sample_app.yml" - "support/**" jobs: test: runs-on: ${{ matrix.os }} env: WORKING_DIRECTORY: contrib/multiple_databases_repository_sample_app strategy: fail-fast: false matrix: include: - ruby: ruby-3.0 gemfile: Gemfile os: ubuntu-20.04 steps: - uses: actions/checkout@v2 - run: test -e ${{ matrix.gemfile }}.lock working-directory: ${{ env.WORKING_DIRECTORY }} - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true working-directory: ${{ env.WORKING_DIRECTORY }} - run: bin/rspec working-directory: ${{ env.WORKING_DIRECTORY }}
name: multiple_databases_repository_sample_app on: schedule: - cron: "0 17 * * *" push: paths: - "contrib/multiple_databases_repository_sample_app/**" - ".github/workflows/multiple_databases_repository_sample_app.yml" - "support/**" pull_request: types: [opened, reopened] paths: - "contrib/multiple_databases_repository_sample_app/**" - ".github/workflows/multiple_databases_repository_sample_app.yml" - "support/**" jobs: test: runs-on: ${{ matrix.os }} env: WORKING_DIRECTORY: contrib/multiple_databases_repository_sample_app strategy: fail-fast: false matrix: include: - ruby: ruby-2.7 gemfile: Gemfile os: ubuntu-20.04 steps: - uses: actions/checkout@v2 - run: test -e ${{ matrix.gemfile }}.lock working-directory: ${{ env.WORKING_DIRECTORY }} - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true working-directory: ${{ env.WORKING_DIRECTORY }} - run: bin/rspec working-directory: ${{ env.WORKING_DIRECTORY }}
Revert to Ruby 2.7, because Rails 6.1 does not support Ruby 3 yet
Revert to Ruby 2.7, because Rails 6.1 does not support Ruby 3 yet
YAML
mit
RailsEventStore/rails_event_store,RailsEventStore/rails_event_store,arkency/rails_event_store,arkency/rails_event_store,RailsEventStore/rails_event_store,RailsEventStore/rails_event_store,arkency/rails_event_store,arkency/rails_event_store
af0d69fc4c9d676fb4c4c68ff05c49caf0caa2ba
wercker.yml
wercker.yml
box: wercker/default build: steps: - arjen/hugo-build: version: 0.13 theme: herring-cove flags: --buildDrafts=true deploy: steps: - lukevivier/[email protected]: token: $GIT_TOKEN domain: viglug.github.io basedir: public
box: wercker/default build: steps: - arjen/hugo-build: version: 0.13 theme: herring-cove flags: --buildDrafts=true deploy: steps: - lukevivier/[email protected]: token: $GIT_TOKEN basedir: public
Remove domain that creates CNAME file breaking GHPages
Remove domain that creates CNAME file breaking GHPages
YAML
agpl-3.0
ViGLug/viglug.org
7f516ac7b589dce5508886a503a205c83cb79e52
wercker.yml
wercker.yml
box: ruby:2.5.7 services: - id: mongo:3.6.2 build: steps: - bundle-install - script: name: echo ruby information code: | echo "ruby version $(ruby --version) running" echo "from location $(which ruby)" echo -p "gem list: $(gem list)" - script: name: rspec code: bundle exec rake spec after-steps: - mzp/http-notify: url: $DASHBOZU_URL deploy: steps: - heroku-deploy: key: $HEROKU_KEY user: $HEROKU_USER app-name: $HEROKU_APP_NAME
box: ruby:2.5.7 services: - id: mongo:3.6.2 build: steps: - script: name: update bundler code: | sudo gem install bundler - bundle-install - script: name: echo ruby information code: | echo "ruby version $(ruby --version) running" echo "from location $(which ruby)" echo -p "gem list: $(gem list)" - script: name: rspec code: bundle exec rake spec after-steps: - mzp/http-notify: url: $DASHBOZU_URL deploy: steps: - heroku-deploy: key: $HEROKU_KEY user: $HEROKU_USER app-name: $HEROKU_APP_NAME
Use bundler 2.0 at werker
Use bundler 2.0 at werker
YAML
mit
codefirst/AsakusaSatellite,codefirst/AsakusaSatellite,codefirst/AsakusaSatellite,codefirst/AsakusaSatellite
2072c5cd992f815be09ad50cdfbddb25e1f696cb
wercker.yml
wercker.yml
box: golang:1.8 services: - id: postgres env: POSTGRES_DB: account_service_test # optional build: steps: - setup-go-workspace # Gets the dependencies - script: name: go get code: | go get -t ./... # Test the project - script: name: go test code: | go test ./... -v -connect "host=${POSTGRES_PORT_5432_TCP_ADDR} user=postgres dbname=account_service_test sslmode=disable" # Build the project - script: name: go build code: | CGO_ENABLED=0 go build -a -ldflags '-s' -installsuffix cgo -o account_service . # Copy binary to a location that gets passed along to the deploy pipeline - script: name: copy binary code: cp account_service "$WERCKER_OUTPUT_DIR" deploy: box: golang steps: - internal/docker-scratch-push: username: $DOCKER_USERNAME password: $DOCKER_PASSWORD tag: latest repository: alexrbarlow/account_service registry: https://registry.hub.docker.com cmd: ./account_service ports: "8000"
box: golang:1.8 services: - id: postgres env: POSTGRES_DB: account_service_test # optional build: steps: - setup-go-workspace # Gets the dependencies - script: name: go get code: | go get -t ./... # Test the project - script: name: go test code: | go test ./... -v -connect "host=${POSTGRES_PORT_5432_TCP_ADDR} user=postgres dbname=account_service_test sslmode=disable" # Build the project - script: name: go build code: | CGO_ENABLED=0 go build -a -ldflags '-s' -installsuffix cgo -o account_service . # Copy binary to a location that gets passed along to the deploy pipeline - script: name: copy binary code: cp account_service "$WERCKER_OUTPUT_DIR" deploy: box: golang steps: - internal/docker-scratch-push: username: $DOCKER_USERNAME password: $DOCKER_PASSWORD tag: latest repository: lileio/account_service registry: https://registry.hub.docker.com cmd: ./account_service ports: "8000"
Move to lileio docker account
Move to lileio docker account
YAML
mit
lileio/account_service
8b30b3a87e54d4365fecda6643e5301df6ce244a
.github/workflows/pr-pre-submit-queue.yml
.github/workflows/pr-pre-submit-queue.yml
name: parse_this pre-submit queues on: pull_request: branches: - "*" jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: ["3.8", "3.9", "3.10"] 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 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: black formatter uses: psf/black@stable with: options: "--check --verbose" src: "./parse_this ./test" - name: lint with flake8 run: | flake8 parse_this test --count --show-source --statistics - name: test with pytest run: | pytest
name: parse_this pre-submit queues on: pull_request: branches: - "*" jobs: build: runs-on: ubuntu-latest strategy: fail-fast: false matrix: python-version: ["3.8", "3.9", "3.10"] 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 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: black formatter uses: psf/black@stable with: options: "--check --verbose" src: "./parse_this ./test" - name: lint with flake8 run: | flake8 parse_this test --count --show-source --statistics - name: test with pytest run: | pytest --cache-clear --cov=parse_this --no-cov-on-fail test/ > pytest-coverage.txt
Update pytest command to generate coverage
Update pytest command to generate coverage
YAML
mit
bertrandvidal/parse_this
5f4fbf85c585ea828adb8576740852defa9f858c
.github/workflows/update-docs-version.yml
.github/workflows/update-docs-version.yml
name: Update docs version on: release: types: [ published ] permissions: contents: read jobs: build: permissions: contents: write # for peter-evans/create-pull-request to create branch pull-requests: write # for peter-evans/create-pull-request to create a PR if: github.repository == 'testcontainers/testcontainers-java' runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v3 with: ref: master - name: Update latest_version property in mkdocs.yml run: | sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF##*/}/g" mkdocs.yml git diff - name: Create Pull Request uses: peter-evans/create-pull-request@18f90432bedd2afd6a825469ffd38aa24712a91d # v3.10.1 with: title: Update docs version to ${GITHUB_REF##*/} body: | Update docs version to ${GITHUB_REF##*/} skip-checks: true branch: update-docs-version delete-branch: true
name: Update docs version on: release: types: [ published ] permissions: contents: read jobs: build: permissions: contents: write # for peter-evans/create-pull-request to create branch pull-requests: write # for peter-evans/create-pull-request to create a PR if: github.repository == 'testcontainers/testcontainers-java' runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v3 with: ref: master - name: Update latest_version property in mkdocs.yml run: | sed -i "s/latest_version: .*/latest_version: ${GITHUB_REF##*/}/g" mkdocs.yml git diff - name: Create Pull Request uses: peter-evans/create-pull-request@671dc9c9e0c2d73f07fa45a3eb0220e1622f0c5f # v3.10.1 with: title: Update docs version to ${GITHUB_REF##*/} body: | Update docs version to ${GITHUB_REF##*/} skip-checks: true branch: update-docs-version delete-branch: true
Bump peter-evans/create-pull-request from 4.1.1 to 4.1.3
Bump peter-evans/create-pull-request from 4.1.1 to 4.1.3 Bumps [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) from 4.1.1 to 4.1.3. - [Release notes](https://github.com/peter-evans/create-pull-request/releases) - [Commits](https://github.com/peter-evans/create-pull-request/compare/18f90432bedd2afd6a825469ffd38aa24712a91d...671dc9c9e0c2d73f07fa45a3eb0220e1622f0c5f) --- updated-dependencies: - dependency-name: peter-evans/create-pull-request dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]>
YAML
mit
testcontainers/testcontainers-java,testcontainers/testcontainers-java,testcontainers/testcontainers-java
c9cc4f823d32d46a42ba09e5272e2c82c1de76aa
.github/workflows/build-desktop.yml
.github/workflows/build-desktop.yml
name: build-desktop on: push: paths: - "core/**" - "desktop/**" jobs: build-desktop: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] include: - os: ubuntu-latest os-short: lnx - os: macos-latest os-short: mac - os: windows-latest os-short: win runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 - run: npm i - run: npm run bootstrap - run: npm run build:all - run: npm run package:${{ matrix.os_short }}
name: build-desktop on: push: paths: - "core/**" - "desktop/**" - ".github/workflows/build-desktop.yml" jobs: build-desktop: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] include: - os: ubuntu-latest os-short: lnx - os: macos-latest os-short: mac - os: windows-latest os-short: win runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 - run: npm i - run: npm run bootstrap - run: npm run build:all working-directory: desktop - run: npm run package:${{ matrix.os_short }} working-directory: desktop
Set working dir in build desktop action
Set working dir in build desktop action
YAML
apache-2.0
codarchlab/idai-field-client,codarchlab/idai-field-client,codarchlab/idai-field-client,codarchlab/idai-field-client
2f1d5d5b8f9cbff899956eb6111bb086f7d628a1
.github/workflows/linux_mkspecs.yml
.github/workflows/linux_mkspecs.yml
name: Linux C++ make-specs on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: jobs: Linux-mkspecs: uses: steinwurf/linux-mkspecs-action/.github/workflows/[email protected] with: extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
name: Linux C++ make-specs on: workflow_dispatch: inputs: extra_resolve_options: description: "Extra Resolve Options" required: false schedule: - cron: "0 1 * * *" # 3 AM CET push: pull_request: jobs: Linux-mkspecs: uses: steinwurf/linux-mkspecs-action/.github/workflows/[email protected] with: extra_resolve_options: ${{ github.event.inputs.extra_resolve_options }}
Update Linux C++ make-specs to new version 6.0.0
Update Linux C++ make-specs to new version 6.0.0
YAML
bsd-3-clause
steinwurf/endian,steinwurf/endian
5a8c87a96d9aeb63b68b1f93bcff99347913a81b
.github/workflows/test-lang-c++.yml
.github/workflows/test-lang-c++.yml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. name: Test C++ on: workflow_dispatch: push: branches: [ master ] pull_request: branches: [ master ] paths: - '.github/workflows/test-lang-c\+\+.yml' - 'lang/c\+\+/**' defaults: run: working-directory: lang/c++ jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install Dependencies run: sudo apt-get install -qqy cppcheck libboost-all-dev libsnappy-dev cmake - name: Clean run: ./build.sh clean - name: Lint run: ./build.sh lint - name: Test run: ./build.sh test
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. name: Test C++ on: workflow_dispatch: push: branches: [ master ] pull_request: branches: [ master ] paths: - '.github/workflows/test-lang-c\+\+.yml' - 'lang/c\+\+/**' defaults: run: working-directory: lang/c++ jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Install Dependencies run: sudo apt update && sudo apt-get install -qqy cppcheck libboost-all-dev libsnappy-dev cmake - name: Clean run: ./build.sh clean - name: Lint run: ./build.sh lint - name: Test run: ./build.sh test
Update from the Ubuntu repositories before installing the dependencies
Update from the Ubuntu repositories before installing the dependencies Try to fix: Run sudo apt-get install -qqy cppcheck libboost-all-dev libsnappy-dev cmake E: Failed to fetch http://azure.archive.ubuntu.com/ubuntu/pool/main/n/nvidia-settings/libxnvctrl0_470.57.01-0ubuntu0.20.04.2_amd64.deb 404 Not Found [IP: 52.250.76.244 80] E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing? The problem is that there is no .deb for 20.04.2, but only for 20.04.1 and 20.04.3 see https://github.com/apache/avro/runs/5279907468?check_suite_focus=true Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
YAML
apache-2.0
apache/avro,apache/avro,apache/avro,apache/avro,apache/avro,apache/avro,apache/avro,apache/avro,apache/avro,apache/avro,apache/avro,apache/avro
4e3303bed179802e53b1ffdefdbb0dfde35b7087
conda-recipe/meta.yaml
conda-recipe/meta.yaml
package: name: databroker version: {{ environ['GIT_DESCRIBE_TAG'] }}.post{{ environ['GIT_DESCRIBE_NUMBER'] }} source: git_url: ../ build: number: 0 string: {{ environ.get('GIT_BUILD_STR', '') }}_py{{ py }} requirements: build: - python run: - python - pandas - pims - metadatastore >=v0.2.0 - filestore >=v0.2.0 - channelarchiver - six - tzlocal - singledispatch [py27] - doct test: requires: - nslsii_dev_configuration imports: - databroker - databroker.testing - databroker.examples - databroker.examples.sample_data - databroker.utils about: home: https://github.com/NSLS-II/databroker license: BSD
package: name: databroker version: {{ environ.get('GIT_DESCRIBE_TAG', 'GIT_STUB') }}.post{{ environ.get('GIT_DESCRIBE_NUMBER', 'inf') }} source: git_url: ../ build: number: 0 string: {{ environ.get('GIT_BUILD_STR', '') }}_py{{ py }} requirements: build: - python run: - python - pandas - pims - metadatastore >=v0.2.0 - filestore >=v0.2.0 - channelarchiver - six - tzlocal - singledispatch [py27] - doct test: requires: - nslsii_dev_configuration imports: - databroker - databroker.testing - databroker.examples - databroker.examples.sample_data - databroker.utils about: home: https://github.com/NSLS-II/databroker license: BSD
Use .get() instead of directly accessing env
BLD: Use .get() instead of directly accessing env conda build master is now using a two-pass jinja system which means that environ should be accessed via .get() instead of [] if you want to access GIT_* variables.
YAML
bsd-3-clause
ericdill/databroker,ericdill/databroker
ba3fcb73f2ffca0732ff637947f072e91ba73229
conda.recipe/meta.yaml
conda.recipe/meta.yaml
package: name: dask version: {{ environ.get('GIT_DESCRIBE_TAG') }} build: number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }} {% if environ.get('GIT_DESCRIBE_NUMBER', '0') == '0' %}string: py{{ environ.get('PY_VER').replace('.', '') }}_0 {% else %}string: py{{ environ.get('PY_VER').replace('.', '') }}_{{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }}{% endif %} source: path: ../ requirements: build: - python - pip - setuptools - toolz # bcolz is a runtime dependency but since it is installed with pip, we have # to install it in the build.sh. So we install its dependencies now. - cython # to compile bcolz - numpy # bcolz dependency run: - python - toolz - numpy - pandas - pyzmq - dill - psutil - chest test: requires: - pytest about: home: https://github.com/ContinuumIO/dask summary: Task scheduling and blocked algorithms for parallel processing. license: BSD
package: name: dask version: {{ environ.get('GIT_DESCRIBE_TAG', '0.4.0') }} build: number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0) }} {% if environ.get('GIT_DESCRIBE_NUMBER', '0') == '0' %}string: py{{ environ.get('PY_VER').replace('.', '') }}_0 {% else %}string: py{{ environ.get('PY_VER').replace('.', '') }}_{{ environ.get('GIT_BUILD_STR', 'GIT_STUB') }}{% endif %} source: path: ../ requirements: build: - python - pip - setuptools - toolz # bcolz is a runtime dependency but since it is installed with pip, we have # to install it in the build.sh. So we install its dependencies now. - cython # to compile bcolz - numpy # bcolz dependency run: - python - toolz - numpy - pandas - pyzmq - dill - psutil - chest test: requires: - pytest about: home: https://github.com/ContinuumIO/dask summary: Task scheduling and blocked algorithms for parallel processing. license: BSD
Add default package version as workaround for conda-build bug
Add default package version as workaround for conda-build bug
YAML
bsd-3-clause
freeman-lab/dask,hainm/dask,chrisbarber/dask,gameduell/dask,ssanderson/dask,ssanderson/dask,PhE/dask,jayhetee/dask,esc/dask,wiso/dask,freeman-lab/dask,blaze/dask,mrocklin/dask,blaze/dask,clarkfitzg/dask,pombredanne/dask,wiso/dask,mraspaud/dask,minrk/dask,jayhetee/dask,vikhyat/dask,jakirkham/dask,clarkfitzg/dask,dask/dask,cpcloud/dask,marianotepper/dask,mrocklin/dask,jcrist/dask,ContinuumIO/dask,cowlicks/dask,PhE/dask,simudream/dask,marianotepper/dask,hainm/dask,mraspaud/dask,mikegraham/dask,jakirkham/dask,jcrist/dask,esc/dask,minrk/dask,pombredanne/dask,vikhyat/dask,ContinuumIO/dask,simudream/dask,dask/dask
1f3c6d7f6e442eb8d9015be1048a2f2e49cf7135
env/tacc/group_vars/galaxynodes.yml
env/tacc/group_vars/galaxynodes.yml
--- # 500 GB why not cvmfs_quota_limit: 512000 galaxynodes_group_authorized_key_users: - name: g2test authorized: "{{ galaxy_team_users }}" - name: g2main authorized: "{{ galaxy_team_users }}" galaxynodes_group_packages: - collectl - lzo - libcgroup-tools - singularity-runtime # packages for older tools - perl-Data-Dumper # Conda R does not package up all of its X dependencies # https://github.com/ContinuumIO/anaconda-issues/issues/4656 - xorg-x11-apps galaxynodes_group_files: - src: system/cleancgroups.py dest: ~root/cleancgroups.py galaxynodes_group_crontabs: - id: clean_cgroups name: Clean old cgroups user: root minute: "*/5" job: "python /root/cleancgroups.py >> /var/log/cleancgroups.log 2>&1"
--- # 500 GB why not cvmfs_quota_limit: 512000 galaxynodes_group_authorized_key_users: - name: g2test authorized: "{{ galaxy_team_users }}" - name: g2main authorized: "{{ galaxy_team_users }}" galaxynodes_group_packages: - collectl - lzo - libcgroup-tools - singularity-runtime # packages for older tools - perl-Data-Dumper # Conda R does not package up all of its X dependencies # https://github.com/ContinuumIO/anaconda-issues/issues/4656 - xorg-x11-apps - mesa-libGL galaxynodes_group_files: - src: system/cleancgroups.py dest: ~root/cleancgroups.py galaxynodes_group_crontabs: - id: clean_cgroups name: Clean old cgroups user: root minute: "*/5" job: "python /root/cleancgroups.py >> /var/log/cleancgroups.log 2>&1"
Add libGL on nodes for PyQt5 conda package
Add libGL on nodes for PyQt5 conda package
YAML
mit
galaxyproject/infrastructure-playbook,galaxyproject/infrastructure-playbook
ab49504f6363a78d42b5614bbdbca338fcfd64fa
recipes/gmp/meta.yaml
recipes/gmp/meta.yaml
{% set version = "6.1.0" %} package: name: gmp version: {{ version }} source: fn: gmp-{{ version }}.tar.bz2 url: ftp://ftp.gnu.org/gnu/gmp/gmp-{{ version }}.tar.bz2 md5: 86ee6e54ebfc4a90b643a65e402c4048 build: number: 0 skip: true # [win] test: files: - test.c about: home: http://gmplib.org/ license: GPL 2 and LGPL 3 summary: The GNU multiprecision library. extra: recipe-maintainers: - asmeurer - isuruf - jakirkham
{% set version = "6.1.0" %} package: name: gmp version: {{ version }} source: fn: gmp-{{ version }}.tar.bz2 url: ftp://ftp.gnu.org/gnu/gmp/gmp-{{ version }}.tar.bz2 md5: 86ee6e54ebfc4a90b643a65e402c4048 build: number: 0 skip: true # [win] requirements: build: - m4 test: files: - test.c about: home: http://gmplib.org/ license: GPL 2 and LGPL 3 summary: The GNU multiprecision library. extra: recipe-maintainers: - asmeurer - isuruf - jakirkham
Add m4 as a build requirement. [skip appveyor]
gmp: Add m4 as a build requirement. [skip appveyor]
YAML
bsd-3-clause
koverholt/staged-recipes,rvalieris/staged-recipes,patricksnape/staged-recipes,dschreij/staged-recipes,mcernak/staged-recipes,dfroger/staged-recipes,Juanlu001/staged-recipes,arokem/staged-recipes,ocefpaf/staged-recipes,birdsarah/staged-recipes,richardotis/staged-recipes,jochym/staged-recipes,jakevdp/staged-recipes,sodre/staged-recipes,khallock/staged-recipes,jakirkham/staged-recipes,ericdill/staged-recipes,pstjohn/staged-recipes,mariusvniekerk/staged-recipes,bmabey/staged-recipes,dharhas/staged-recipes,johannesring/staged-recipes,hbredin/staged-recipes,data-exp-lab/staged-recipes,hadim/staged-recipes,NOAA-ORR-ERD/staged-recipes,guillochon/staged-recipes,nicoddemus/staged-recipes,isuruf/staged-recipes,johannesring/staged-recipes,valgur/staged-recipes,OpenPIV/staged-recipes,dfroger/staged-recipes,jerowe/staged-recipes,kwilcox/staged-recipes,blowekamp/staged-recipes,hajapy/staged-recipes,NOAA-ORR-ERD/staged-recipes,jjhelmus/staged-recipes,petrushy/staged-recipes,glemaitre/staged-recipes,tylere/staged-recipes,shadowwalkersb/staged-recipes,johanneskoester/staged-recipes,mcs07/staged-recipes,stuertz/staged-recipes,johanneskoester/staged-recipes,rolando-contrib/staged-recipes,ceholden/staged-recipes,SylvainCorlay/staged-recipes,igortg/staged-recipes,igortg/staged-recipes,basnijholt/staged-recipes,synapticarbors/staged-recipes,chrisburr/staged-recipes,caspervdw/staged-recipes,OpenPIV/staged-recipes,chrisburr/staged-recipes,benvandyke/staged-recipes,rmcgibbo/staged-recipes,asmeurer/staged-recipes,pmlandwehr/staged-recipes,hajapy/staged-recipes,jjhelmus/staged-recipes,chohner/staged-recipes,grlee77/staged-recipes,planetarypy/staged-recipes,chohner/staged-recipes,petrushy/staged-recipes,atedstone/staged-recipes,ceholden/staged-recipes,Cashalow/staged-recipes,Savvysherpa/staged-recipes,JohnGreeley/staged-recipes,ReimarBauer/staged-recipes,scopatz/staged-recipes,scopatz/staged-recipes,hbredin/staged-recipes,dharhas/staged-recipes,koverholt/staged-recipes,jakirkham/staged-recipes,jerowe/staged-recipes,data-exp-lab/staged-recipes,sannykr/staged-recipes,barkls/staged-recipes,dschreij/staged-recipes,gqmelo/staged-recipes,rvalieris/staged-recipes,mcs07/staged-recipes,synapticarbors/staged-recipes,benvandyke/staged-recipes,sannykr/staged-recipes,JohnGreeley/staged-recipes,jcb91/staged-recipes,Juanlu001/staged-recipes,vamega/staged-recipes,valgur/staged-recipes,rmcgibbo/staged-recipes,patricksnape/staged-recipes,jakevdp/staged-recipes,pmlandwehr/staged-recipes,mariusvniekerk/staged-recipes,barkls/staged-recipes,bmabey/staged-recipes,Savvysherpa/staged-recipes,planetarypy/staged-recipes,stuertz/staged-recipes,shadowwalkersb/staged-recipes,glemaitre/staged-recipes,khallock/staged-recipes,blowekamp/staged-recipes,ReimarBauer/staged-recipes,caspervdw/staged-recipes,asmeurer/staged-recipes,gqmelo/staged-recipes,cpaulik/staged-recipes,rolando-contrib/staged-recipes,kwilcox/staged-recipes,goanpeca/staged-recipes,pstjohn/staged-recipes,hadim/staged-recipes,conda-forge/staged-recipes,birdsarah/staged-recipes,jcb91/staged-recipes,richardotis/staged-recipes,conda-forge/staged-recipes,cpaulik/staged-recipes,jochym/staged-recipes,larray-project/staged-recipes,sodre/staged-recipes,SylvainCorlay/staged-recipes,Cashalow/staged-recipes,mcernak/staged-recipes,isuruf/staged-recipes,ericdill/staged-recipes,atedstone/staged-recipes,arokem/staged-recipes,basnijholt/staged-recipes,vamega/staged-recipes,nicoddemus/staged-recipes,guillochon/staged-recipes,larray-project/staged-recipes,grlee77/staged-recipes,goanpeca/staged-recipes,ocefpaf/staged-recipes,sodre/staged-recipes,tylere/staged-recipes
668a989649aac3f28d90b20a91cdbb7c8a6b36cc
.kitchen.yml
.kitchen.yml
--- driver: name: ec2 aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %> region: us-east-1 availability_zone: us-east-1b security_group_ids: - ci-testing instance_type: c3.large iam_profile_name: test-kitchen interface: public tags: Env: dev Type: test transport: name: sftp ssh_key: <%= ENV['EC2_SSH_KEY_PATH'] %> provisioner: name: chef_zero client_rb: environment: dev platforms: - name: ubuntu-14.04 - name: ubuntu-16.04 suites: - name: default driver: tags: Name: s3-put-default-ubuntu-1604 run_list: - recipe[test_s3_put::default] attributes: test_s3_put: bucket: ops remote_path: chef/test_s3_put - name: default-chef12 driver: tags: Name: s3-put-default-chef12-ubuntu-1604 provisioner: product_name: chef product_version: 12 run_list: - recipe[test_s3_put::default] attributes: test_s3_put: bucket: ops remote_path: chef/test_s3_put
--- driver: name: ec2 region: us-east-1 availability_zone: us-east-1b security_group_ids: - ci-testing instance_type: c3.large iam_profile_name: test-kitchen interface: public tags: Env: dev Type: test provisioner: name: chef_zero client_rb: environment: dev platforms: - name: ubuntu-14.04 - name: ubuntu-16.04 suites: - name: default driver: tags: Name: s3-put-default-ubuntu-1604 run_list: - recipe[test_s3_put::default] attributes: test_s3_put: bucket: ops remote_path: chef/test_s3_put - name: default-chef12 driver: tags: Name: s3-put-default-chef12-ubuntu-1604 provisioner: product_name: chef product_version: 12 run_list: - recipe[test_s3_put::default] attributes: test_s3_put: bucket: ops remote_path: chef/test_s3_put
Drop using a shared key for SSH access
Drop using a shared key for SSH access Also, transport.name: sftp is incompatible w/ InSpec. Nuke it.
YAML
apache-2.0
evertrue/s3_put-cookbook
1cc91221c03034523bdbe0c03b492efb3bc160b1
.kitchen.yml
.kitchen.yml
--- driver: name: vagrant require_chef_omnibus: 11.8 platforms: - name: ubuntu-12.04 - name: centos-6.4 - name: centos-6.5 suites: - name: default run_list: - recipe[apt::default] - recipe[exhibitor::default] attributes:
--- driver: name: vagrant require_chef_omnibus: 11.8 platforms: - name: ubuntu-12.04 - name: ubuntu-14.04 - name: centos-6.4 - name: centos-6.5 suites: - name: default run_list: - recipe[apt::default] - recipe[exhibitor::default] attributes:
Add testing on Ubuntu 14.04
Add testing on Ubuntu 14.04 Keeping up with SimpleFinance/chef-zookeeper@f412307
YAML
apache-2.0
GannettDigital/chef-exhibitor,PaytmLabs/chef-exhibitor,GannettDigital/chef-exhibitor,yazgoo/chef-exhibitor,PaytmLabs/chef-exhibitor,yazgoo/chef-exhibitor,PaytmLabs/chef-exhibitor,yazgoo/chef-exhibitor,SimpleFinance/chef-exhibitor,GannettDigital/chef-exhibitor,SimpleFinance/chef-exhibitor,SimpleFinance/chef-exhibitor
a5ccc7621600ff09da2a5ddebabda6a4c19dd7ba
.kitchen.yml
.kitchen.yml
--- driver: name: vagrant provisioner: name: chef_solo platforms: - name: ubuntu-12.04 - name: ubuntu-13.10 suites: - name: default run_list: - recipe[chruby-build::default] attributes: - name: rubies_data_bags run_list: - recipe[chruby-build::rubies] attributes: - name: rubies_attributes run_list: - recipe[chruby-build::rubies] attributes: chruby_build: rubies_libs: - libyaml-dev - libssl-dev - libreadline-dev - zlib1g-dev google_perftools: enable: false libyaml: enable: false rubies: - id: "ruby-2.0.0-p247" url: "http://cache.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p247.tar.gz" gems: - bundler - pry
--- driver: name: vagrant provisioner: name: chef_solo platforms: - name: ubuntu-12.04 - name: ubuntu-14.04 suites: - name: default run_list: - recipe[chruby-build::default] attributes: - name: rubies_data_bags run_list: - recipe[chruby-build::rubies] attributes: - name: rubies_attributes run_list: - recipe[chruby-build::rubies] attributes: chruby_build: rubies_libs: - libyaml-dev - libssl-dev - libreadline-dev - zlib1g-dev google_perftools: enable: false libyaml: enable: false rubies: - id: "ruby-2.0.0-p247" url: "http://cache.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p247.tar.gz" gems: - bundler - pry
Add integration test for ubuntu-14.04
Add integration test for ubuntu-14.04
YAML
mit
madwork/chef-chruby-build,madwork/chef-chruby-build
5cc5ace55418ad6270f12b5496405f0e5f8ce8b1
.rubocop.yml
.rubocop.yml
inherit_gem: rubocop-govuk: - config/default.yml Style/ClassVars: Enabled: false AllCops: Exclude: - 'vendor/**/*'
inherit_gem: rubocop-govuk: - config/default.yml Style/ClassVars: Enabled: false
Fix linting 'tmp/' files on CI
Fix linting 'tmp/' files on CI This also removes a redundant 'vendor' exclusion, since it's not required for either local or CI builds. By removing the override, we get the defaults from rubocop-govuk, which exclude 'tmp'.
YAML
mit
alphagov/govuk-developer-docs,alphagov/govuk-developer-docs,alphagov/govuk-developer-docs,alphagov/govuk-developer-docs
d593443a2fd1cac7b12218dbb9a6df45b3967dc8
.rubocop.yml
.rubocop.yml
# I like trailing commas in maps. They let me insert new elements and # see them as one line in a diff, not two. TrailingComma: Enabled: false # I like trailing commas in maps. They let me insert new elements and # see them as one line in a diff, not two. Style/TrailingCommaInHashLiteral: EnforcedStyleForMultiline: comma Style/TrailingCommaInArrayLiteral: EnforcedStyleForMultiline: comma # If i'm using one function name and returning the contents of an # attribute, that's OK. The alternative would be this, which I find # confusing and often not really what I mean: # # attr_reader :something_else # alias_method :something, :something_else Style/TrivialAccessors: ExactNameMatch: true # # Add 'XX X' to the standard list # Style/CommentAnnotation: Keywords: - "TOD\ O" - FIXME - OPTIMIZE - HACK - REVIEW - "XX\ X"
AllCops: TargetRubyVersion: 2.4 # I like trailing commas in maps. They let me insert new elements and # see them as one line in a diff, not two. Style/TrailingCommaInHashLiteral: EnforcedStyleForMultiline: comma Style/TrailingCommaInArrayLiteral: EnforcedStyleForMultiline: comma # If i'm using one function name and returning the contents of an # attribute, that's OK. The alternative would be this, which I find # confusing and often not really what I mean: # # attr_reader :something_else # alias_method :something, :something_else Style/TrivialAccessors: ExactNameMatch: true # # Add 'XX X' to the standard list # Style/CommentAnnotation: Keywords: - "TOD\ O" - FIXME - OPTIMIZE - HACK - REVIEW - "XX\ X"
Set target Ruby version, remove removed cop config
Set target Ruby version, remove removed cop config
YAML
mit
apiology/punchlist
b71158513bcea3d0d1f1d147159d4799f26f5a49
.rubocop.yml
.rubocop.yml
--- AllCops: TargetRubyVersion: 2.2 DisplayCopNames: true Exclude: - 'control-repo/**/*' Metrics/BlockLength: Enabled: false
--- AllCops: TargetRubyVersion: 2.2 DisplayCopNames: true Exclude: - 'control-repo/**/*' Metrics/BlockLength: Enabled: false Metrics/LineLength: Max: 100
Configure Metrics/LineLength cop to be nicer
Configure Metrics/LineLength cop to be nicer
YAML
mit
instruct-br/puppet-toolkit,instruct-br/puppet-toolkit,instruct-br/puppet-toolkit,instruct-br/puppet-toolkit
0be3bd0fd0cdf188773131151be00f15f3707812
data/transition-sites/ukti_sirius.yml
data/transition-sites/ukti_sirius.yml
--- site: ukti_sirius whitehall_slug: uk-trade-investment homepage: https://www.gov.uk/the-sirius-programme tna_timestamp: 20150101010101 host: www.siriusprogramme.ukti.gov.uk homepage_furl: www.gov.uk/ukti global: =301 https://www.gov.uk/the-sirius-programme aliases: - www.siriusprogramme.com
--- site: ukti_sirius whitehall_slug: uk-trade-investment homepage: https://www.gov.uk/government/collections/sirius-programme-for-graduate-entrepreneurs tna_timestamp: 20150101010101 host: www.siriusprogramme.ukti.gov.uk homepage_furl: www.gov.uk/ukti global: =301 https://www.gov.uk/government/collections/sirius-programme-for-graduate-entrepreneurs aliases: - www.siriusprogramme.com
Update Sirius campaign replacement page
[UKTI] Update Sirius campaign replacement page /the-sirius-programme is out of date and going to be removed soon - hopefully redirected to the newer content. Let's redirect straight to the newer content anyway.
YAML
mit
alphagov/transition-config,alphagov/transition-config
299a70fa1216f1c82f850b8fb8f3ade968dbc9b2
deployments/workshop/config/prod.yaml
deployments/workshop/config/prod.yaml
jupyterhub-ssh: hubUrl: https://workshop.datahub.berkeley.edu jupyterhub: scheduling: userPlaceholder: enabled: false ingress: enabled: true hosts: - workshop-staging.datahub.berkeley.edu tls: - secretName: tls-cert hosts: - workshop-staging.datahub.berkeley.edu hub: db: pvc: # This also holds logs storage: 4Gi
jupyterhub-ssh: hubUrl: https://workshop.datahub.berkeley.edu jupyterhub: scheduling: userPlaceholder: enabled: false ingress: enabled: true hosts: - workshop.datahub.berkeley.edu tls: - secretName: tls-cert hosts: - workshop.datahub.berkeley.edu hub: db: pvc: # This also holds logs storage: 4Gi
Use correct hostname for workshop hub
Use correct hostname for workshop hub
YAML
bsd-3-clause
ryanlovett/datahub,berkeley-dsep-infra/datahub,ryanlovett/datahub,berkeley-dsep-infra/datahub,ryanlovett/datahub,berkeley-dsep-infra/datahub
2599342b726e5ab5a2672483c13737c162d1da13
meta/main.yml
meta/main.yml
--- # Copyright 2014, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. galaxy_info: author: rcbops description: Installation and setup of HAProxy company: Rackspace license: Apache2 min_ansible_version: 1.6.6 platforms: - name: Ubuntu versions: - xenial categories: - cloud - python - development - openstack dependencies: []
--- # Copyright 2014, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. galaxy_info: author: rcbops description: Installation and setup of HAProxy company: Rackspace license: Apache2 min_ansible_version: 1.6.6 platforms: - name: Ubuntu versions: - xenial - name: EL versions: - 7 - name: opensuse versions: - all categories: - cloud - python - development - openstack dependencies: []
Add CentOS and openSUSE as supported distributions
meta: Add CentOS and openSUSE as supported distributions The role already supports CentOS and openSUSE so add the related metadata information. Change-Id: I7198301ac137a2f6f48da0bb9e735e7f7220e4a8
YAML
apache-2.0
openstack/openstack-ansible-pip_install,os-cloud/openstack-ansible-pip_install,openstack/openstack-ansible-pip_install,os-cloud/openstack-ansible-pip_install
f4c05ba78127fc8883cc4c741dfd5f052dacc621
meta/main.yml
meta/main.yml
--- galaxy_info: author: ansistrano description: Ansible role to deploy scripting applications like PHP, Python, Ruby, etc. in a Capistrano style company: Ansistrano license: BSD min_ansible_version: 1.6 platforms: - name: EL versions: - all - name: GenericUNIX versions: - all - name: Fedora versions: - all - name: opensuse versions: - all - name: Amazon versions: - all - name: GenericBSD versions: - all - name: FreeBSD versions: - all - name: Ubuntu versions: - all - name: SLES versions: - all - name: GenericLinux versions: - all - name: Debian versions: - all categories: - cloud - web dependencies: []
--- galaxy_info: author: ansistrano description: Ansible role to deploy scripting applications like PHP, Python, Ruby, etc. in a Capistrano style company: Ansistrano license: MIT min_ansible_version: 1.6 platforms: - name: EL versions: - all - name: GenericUNIX versions: - all - name: Fedora versions: - all - name: opensuse versions: - all - name: Amazon versions: - all - name: GenericBSD versions: - all - name: FreeBSD versions: - all - name: Ubuntu versions: - all - name: SLES versions: - all - name: GenericLinux versions: - all - name: Debian versions: - all categories: - cloud - web dependencies: []
Fix license info in meta
Fix license info in meta
YAML
mit
laupow/deploy,andreiashu/deploy,mblaschke/deploy,dgsuarez/deploy,cbrunnkvist/deploy,ngpestelos/deploy,javibravo/deploy
9d3688949727026d533af2086ceb91a558f3789f
logdog/appengine/cmd/coordinator/logs/module-logs.yaml
logdog/appengine/cmd/coordinator/logs/module-logs.yaml
# Copyright 2017 The LUCI Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. service: logs runtime: go env: flex resources: cpu: 2 memory_gb: 4 disk_size_gb: 10 inbound_services: - warmup handlers: - url: "/internal/*" script: _go_app secure: always login: admin - url: "/.*" script: _go_app secure: always # Have some more liberal health check parameters, as we've observed "nginx" # timing out in production. health_check: enable_health_check: True check_interval_sec: 5 timeout_sec: 4 # Stop accepting requests after 20 sec of unhealthiness. unhealthy_threshold: 4 healthy_threshold: 1 # Restart after 2 min of unhealthiness. restart_threshold: 24
# Copyright 2017 The LUCI Authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. service: logs runtime: go env: flex resources: cpu: 2 memory_gb: 4 disk_size_gb: 10 automatic_scaling: min_num_instances: 4 inbound_services: - warmup handlers: - url: "/internal/*" script: _go_app secure: always login: admin - url: "/.*" script: _go_app secure: always # Have some more liberal health check parameters, as we've observed "nginx" # timing out in production. health_check: enable_health_check: True check_interval_sec: 5 timeout_sec: 4 # Stop accepting requests after 20 sec of unhealthiness. unhealthy_threshold: 4 healthy_threshold: 1 # Restart after 2 min of unhealthiness. restart_threshold: 24
Increase logs module min instances to 4 (from 2)
[logdog] Increase logs module min instances to 4 (from 2) A bug described symptoms of not enough instances to serve log endpoints. Because flex takes a longer time to spin up instances than classic, it's more important to have idle instances ready to serve. Bug: 910095 Change-Id: I2452fbfd73866321f63d10d57f74aaae9ce83fcb Reviewed-on: https://chromium-review.googlesource.com/c/1355799 Commit-Queue: Ryan Tseng <[email protected]> Reviewed-by: Andrii Shyshkalov <[email protected]>
YAML
apache-2.0
luci/luci-go,luci/luci-go,luci/luci-go,luci/luci-go,luci/luci-go,luci/luci-go
432d9c3889eb0e19062508de1c229ca9c9e5f56e
scripts.yaml
scripts.yaml
bedtime: alias: Go to bed sequence: - service: light.turn_on data: entity_id: group.hall_lights - delay: '00:10:00' - service: light.turn_off data: entity_id: - group.kitchen_lights - group.living_room_lights - delay: '00:30:00' - service: light.turn_off data: entity_id: group.hall_lights occupancy_simulation_start: alias: Occupancy Simulation Start sequence: - service: scene.turn_on data_template: entity_id: 'scene.occupancy_simulation_{{ (range(1, 4) | random) }}' - service: script.turn_on data: entity_id: script.occupancy_simulation_loop occupancy_simulation_stop: alias: Occupancy Simulation Stop sequence: - service: script.turn_off data: entity_id: script.occupancy_simulation_loop - service: scene.turn_on data_template: entity_id: 'scene.occupancy_simulation_0' occupancy_simulation_loop: alias: Occupancy Simulation Loop sequence: - delay: '00:{{ (range(20, 41) | random) }}:00' - service: script.turn_on data: entity_id: script.occupancy_simulation_start
bedtime: alias: Go to bed sequence: - service: light.turn_on data: entity_id: group.hall_lights - delay: '00:10:00' - service: light.turn_off data: entity_id: - group.kitchen_lights - group.living_room_lights - delay: '00:30:00' - service: light.turn_off data: entity_id: group.hall_lights occupancy_simulation_start: alias: Occupancy Simulation Start sequence: - service: scene.turn_on data_template: entity_id: 'scene.occupancy_simulation_{{ (range(1, 4) | random) }}' - service: script.turn_on data: entity_id: script.occupancy_simulation_loop occupancy_simulation_stop: alias: Occupancy Simulation Stop sequence: - service: script.turn_off data: entity_id: script.occupancy_simulation_loop - service: scene.turn_on data: entity_id: 'scene.occupancy_simulation_0' occupancy_simulation_loop: alias: Occupancy Simulation Loop sequence: - delay: '00:{{ (range(20, 41) | random) }}:00' - service: script.turn_on data: entity_id: script.occupancy_simulation_start
Fix service definition for non-templated data
Fix service definition for non-templated data
YAML
mit
davidorlea/homeassistant-config,davidorlea/homeassistant-config,davidorlea/homeassistant-config
22911f75f8ffb0e70450915d4921b67e18427739
.travis.yml
.travis.yml
language: python sudo: true python: - "2.7_with_system_site_packages" # - "3.5" #python3-gi is bugged and Travis not let to access to python-gi (py2.7) before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 install: - bash test/setup_test.sh script: # so to help eventual debug: knowing what exact versions are in use can be rather useful. - pip freeze # Code static analysis - pep8 --max-line-length=100 --exclude='*.pyc, *.cfg, *.log' --ignore='E402' alignak_app/* #- pylint --rcfile=.pylintrc alignak_webui/ # No pep257 currently (Code doc compliance) # - pep257 --select=D300 alignak_webui # Code dynamic analysis # - cd test - coverage erase - cd test/ - nosetests -xv --nologcapture --with-coverage --cover-package=alignak_app test_*.py - coverage combine - coverage report -m # - cd .. # specific call to launch coverage data into coveralls.io after_success: # to get coverage data with relative paths and not absolute we have to # execute coveralls from the base directory of the project, # so we need to move the .coverage file here : # mv test/.coverage . && coveralls --rcfile=test/.coveragerc -v coveralls -v
language: python sudo: true python: - "2.7_with_system_site_packages" # - "3.5" #python3-gi is bugged and Travis not let to access to python-gi (py2.7) before_script: - "export DISPLAY=:99.0" - "sh -e /etc/init.d/xvfb start" - sleep 3 install: - bash test/setup_test.sh script: # so to help eventual debug: knowing what exact versions are in use can be rather useful. - pip freeze # Code static analysis - pep8 --max-line-length=100 --exclude='*.pyc, *.cfg, *.log' --ignore='E402' alignak_app/* #- pylint --rcfile=.pylintrc alignak_webui/ # No pep257 currently (Code doc compliance) # - pep257 --select=D300 alignak_webui # Code dynamic analysis # - cd test - coverage erase - cd test/ - nosetests -xv --nologcapture --with-coverage --cover-package=alignak_app test_*.py - ls -la - coverage combine - coverage report -m # - cd .. # specific call to launch coverage data into coveralls.io after_success: # to get coverage data with relative paths and not absolute we have to # execute coveralls from the base directory of the project, # so we need to move the .coverage file here : # mv test/.coverage . && coveralls --rcfile=test/.coveragerc -v coveralls -v
Add listing test folder to see if coverage exist
Add listing test folder to see if coverage exist
YAML
agpl-3.0
Alignak-monitoring-contrib/alignak-app,Alignak-monitoring-contrib/alignak-app
77dbe32af1d735c99e20033152e36ad0f19f9886
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 before_script: - composer self-update - composer install --dev --prefer-source script: - ./vendor/bin/phpunit -c ./test --coverage-clover ./build/logs/clover.xml - ./bin/check-cs.sh after_script: - php ./vendor/bin/coveralls -v notifications: irc: "irc.freenode.org#apigility-dev" email: false
language: php php: - 5.3 - 5.4 - 5.5 before_script: - composer self-update - composer install --dev --prefer-source script: - ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml - ./bin/check-cs.sh after_script: - php ./vendor/bin/coveralls -v notifications: irc: "irc.freenode.org#apigility-dev" email: false
Update phpunit invocation for Travis
Update phpunit invocation for Travis - No longer need the `-c ./test/` directive.
YAML
bsd-3-clause
nocvp/zf-api-problem,rstgroup/zf-api-problem,rstgroup/zf-api-problem,rstgroup/zf-api-problem
4e1cd987efcc2c9f377b0dd016784405d03c1606
.travis.yml
.travis.yml
language: ruby before_install: - sudo add-apt-repository -y ppa:miurahr/vagrant - sudo apt-get update -qq - sudo apt-get install -qq libvirt-dev libvirt-bin qemu-kvm qemu rvm: - 1.9.3 - 2.0.0 script: "bundle exec rspec spec/vagrant-kvm/"
language: ruby before_install: - sudo add-apt-repository -y ppa:miurahr/vagrant - sudo apt-get update -qq - sudo apt-get install -qq libvirt-dev libvirt-bin qemu-kvm qemu - sudo usermod -G kvm,libvirtd $USER rvm: - 1.9.3 - 2.0.0 script: "bundle exec rspec spec/vagrant-kvm/"
Add user to proper groups
Add user to proper groups
YAML
mit
rainforestapp/vagrant-kvm
510879bcb426bdb8be86b65cbf075bed8ce592f5
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7 - hhvm sudo: false install: - composer install --no-interaction script: - phpunit --coverage-text
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - 7 # also test against HHVM, but require "trusty" and ignore errors matrix: include: - php: hhvm dist: trusty allow_failures: - php: hhvm sudo: false install: - composer install --no-interaction script: - phpunit --coverage-text
Fix HHVM build for now again and ignore future HHVM build errors
Fix HHVM build for now again and ignore future HHVM build errors
YAML
mit
clue/php-commander
67c06a522f8b87de5f1f9dffcc58ebf20d4f178c
.travis.yml
.travis.yml
language: node_js node_js: - 4.0 - 4.1 - 4.2 - 4.3 - 4.4 - 4.5 - 4.6 - 5.0 - 5.1 - 5.2 - 5.3 - 5.4 - 5.5 - 5.6 - 5.7 - 5.8 - 5.9 - 5.10 - 5.11 - 5.12 - 6.0 - 6.1 - 6.2 - 6.3 - 6.4 - 6.5 - 6.6 - 6.7
language: node_js node_js: - 4 - 5 - 6
Test against major versions only
Test against major versions only
YAML
mit
xavierdutreilh/wintersmith-environments,xavierdutreilh/wintersmith-environments
75437e6eeb6c9002ceae4f412904c0d79c40c17a
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - '6' - '8' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
sudo: false language: node_js node_js: - '6' - '8' - '10' branches: only: - master - travis-ci before_install: - npm install - npm install istanbul coveralls
Build with Node.js 10 at Travis CI.
Build with Node.js 10 at Travis CI.
YAML
mit
bigeasy/semblance
a21f27834ddfdce638a49868356d9cb08fd6b4cd
.travis.yml
.travis.yml
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/ language: node_js env: TRAVIS_CI=true node_js: - "8" script: - yarn typecheck - yarn report
# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/ language: node_js env: TRAVIS_CI=true node_js: - "8" script: - yarn report
Remove `typecheck` command from Travis CI
:green_heart: Remove `typecheck` command from Travis CI
YAML
mit
edloidas/rollrobot
990151d98ef1db9722f56d9306a7ef2f72a846b3
.travis.yml
.travis.yml
language: php php: - 5.3 - 5.4 - 5.5 matrix: allow_failures: - php: 5.5 env: global: - ES_VER=0.90.7 - ES_MAPPER_ATTACHMENTS_VER=1.9.0 - ES_TRANSPORT_THRIFT_VER=1.4.0 - ES_GEOCLUSTER_FACET_VER=0.0.8 - ES_WAIT_ON_MAPPING_CHANGE=true matrix: - ES_REQUIRE=dev - ES_REQUIRE=no-dev before_script: - composer self-update - composer --${ES_REQUIRE} --prefer-source install - ./test/bin/install_php_memcache.sh - ./test/bin/run_elasticsearch.sh - ./test/bin/run_proxy.sh script: phpunit -c test/ after_script: ./test/bin/show_logs.sh
language: php php: - 5.3 - 5.4 - 5.5 matrix: allow_failures: - php: 5.5 env: global: - ES_VER=0.90.7 - ES_MAPPER_ATTACHMENTS_VER=1.9.0 - ES_TRANSPORT_THRIFT_VER=1.4.0 - ES_GEOCLUSTER_FACET_VER=0.0.9 - ES_WAIT_ON_MAPPING_CHANGE=true matrix: - ES_REQUIRE=dev - ES_REQUIRE=no-dev before_script: - composer self-update - composer --${ES_REQUIRE} --prefer-source install - ./test/bin/install_php_memcache.sh - ./test/bin/run_elasticsearch.sh - ./test/bin/run_proxy.sh script: phpunit -c test/ after_script: ./test/bin/show_logs.sh
Update geocluster facet plugin to v0.0.9
Update geocluster facet plugin to v0.0.9
YAML
mit
pborreli/Elastica,markeilander/Elastica,giorrrgio/Elastica,jeancsil/Elastica,revinate/Elastica,sugarcrm/Elastica,eilgin/Elastica,piotrantosik/Elastica,miniplay/Elastica,giovannialbero1992/Elastica,p365labs/Elastica,Mosoc/Elastica,ARAMISAUTO/Elastica,fubuki/Elastica,jeancsil/Elastica,miniplay/Elastica,tmatei/Elastica,kartikm/Elastica,ebernhardson/Elastica,sugarcrm/Elastica,piotrantosik/Elastica,falconavs/Elastica,JustinHook/Elastica,Gasol/Elastica,markeilander/Elastica,ewgRa/Elastica,splitice/Elastica,Tobion/Elastica,Jmoati/Elastica,ebernhardson/Elastica,stof/Elastica,webdevsHub/Elastica,im-denisenko/Elastica,fubuki/Elastica,falconavs/Elastica,giorrrgio/Elastica,idio/elastica,ARAMISAUTO/Elastica,p365labs/Elastica,vlajos/Elastica,JustinHook/Elastica,Tobion/Elastica,Southparkfan/Elastica,Mosoc/Elastica,revinate/Elastica,webdevsHub/Elastica,vlajos/Elastica,0x46616c6b/Elastica,im-denisenko/Elastica,idio/elastica,stof/Elastica,pborreli/Elastica,Southparkfan/Elastica,eilgin/Elastica,giovannialbero1992/Elastica,ewgRa/Elastica,tmatei/Elastica,ruflin/Elastica,kartikm/Elastica,Gasol/Elastica,0x46616c6b/Elastica,Jmoati/Elastica
209486cc7019cbd7de96fe220691df0e33b94260
.travis.yml
.travis.yml
language: python python: - "2.7" - "3.3" - "3.4" - "3.5" # command to install dependencies install: - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r requirements-py3.txt; else pip install -r requirements-py2.txt; fi # command to run tests script: nosetests tests sudo: false
language: python os: linux python: - "3.8" - "3.7" - "3.6" - "3.5" - "3.4" - "3.3" - "2.7" - "pypy3" - "pypy3.5-6.0" - "pypy3.5-7.0" - "pypy3.6-7.0.0" - "pypy" - "pypy2.7-6.0" - "pypy2.7-7.0.0" jobs: include: - os: osx python: "3.7" osx_image: xcode11.2 # Python 3.7.4 running on macOS 10.14.4 language: shell # 'language: python' is an error on Travis CI macOS before_install: - python3 -m pip install --upgrade pip - python3 -m pip install --upgrade virtualenv - virtualenv -p python3 --system-site-packages "$HOME/venv" - source "$HOME/venv/bin/activate" - CFLAGS="-O0" STATIC_DEPS=true python3 -m pip install lxml - python3 --version - python --version env: - HOMEBREW_NO_INSTALL_CLEANUP=1 - HOMEBREW_NO_ANALYTICS=1 before_cache: - rm -f "$HOME/Library/Caches/pip/log/debug.log" cache: directories: - "$HOME/Library/Caches/pip" - os: windows # Windows 10.0.17134 N/A Build 17134 python: "3.8" language: shell # 'language: python' is an error on Travis CI Windows before_install: - choco install python --version 3.8.0 - choco install sqlite - python -m pip install --upgrade pip - python --version env: PATH=/c/Python38:/c/Python38/Scripts:$PATH # allow failure on OSes other than Linux allow_failures: - os: osx - os: windows fast_finish: true # command to install dependencies install: - > if [[ "$TRAVIS_PYTHON_VERSION" == "2"* ]] || [[ "$TRAVIS_PYTHON_VERSION" == "pypy2"* ]]; then pip install -r requirements-py2.txt; else pip3 install -r requirements-py3.txt; fi # command to run tests script: nosetests tests
Update Python versions, and add testing on macOS and Windows
Update Python versions, and add testing on macOS and Windows
YAML
mit
wireservice/leather,wireservice/leather,onyxfish/leather,onyxfish/leather
d696150bd4e7bdb27fbc4620919a42415d04f6ac
.travis.yml
.travis.yml
--- rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx - rbx-2.0 - jruby - ruby-head env: - rack=1.3.0 - rack=master - tilt=1.3.2 - tilt=master - sinatra=master notifications: recipients: - [email protected] - [email protected] - [email protected]
--- rvm: - 1.8.7 - 1.9.2 - 1.9.3 - rbx-18mode - rbx-19mode - jruby - ruby-head env: - rack=1.3.0 - rack=master - tilt=1.3.2 - tilt=master - sinatra=master notifications: recipients: - [email protected] - [email protected] - [email protected]
Use the proper Rubinius aliases in our Travis version list
Use the proper Rubinius aliases in our Travis version list
YAML
mit
chicisimo/sinatra-contrib,zBMNForks/sinatra-contrib,TimurTarasenko/sinatra-contrib,lvonk/sinatra-contrib,r7kamura/sinatra-contrib,TimurTarasenko/sinatra-contrib,mwpastore/sinatra-contrib,gferguson-gd/sinatra-contrib,joelmoss/sinatra-contrib,joelmoss/sinatra-contrib,sferik/sinatra-contrib,sferik/sinatra-contrib,rkh/sinatra-contrib,gferguson-gd/sinatra-contrib,lvonk/sinatra-contrib,r7kamura/sinatra-contrib,mwpastore/sinatra-contrib,chicisimo/sinatra-contrib,zBMNForks/sinatra-contrib
be51f0208dc73e4471bad713dfe6e7caa6ddcd4b
.travis.yml
.travis.yml
language: node_js sudo: false before_script: - npm install web-component-tester - npm install bower - 'export PATH=$PWD/node_modules/.bin:$PATH' - bower install branches: only: - gh-pages - /.*/ node_js: 4 addons: firefox: latest apt: sources: - google-chrome packages: - google-chrome-stable script: - xvfb-run wct --skip-plugin sauce - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct --skip-plugin local --plugin sauce; fi"
language: node_js sudo: required dist: trusty before_script: - npm install web-component-tester - npm install bower - 'export PATH=$PWD/node_modules/.bin:$PATH' - bower install branches: only: - gh-pages - /.*/ node_js: 4 addons: firefox: latest apt: sources: - google-chrome packages: - google-chrome-stable script: - xvfb-run wct --skip-plugin sauce - "if [ \"${TRAVIS_PULL_REQUEST}\" = \"false\" ]; then wct --skip-plugin local --plugin sauce; fi"
Upgrade Travis CI to Ubuntu Trusty to fix Chrome usage in testing
Upgrade Travis CI to Ubuntu Trusty to fix Chrome usage in testing
YAML
mit
Starcounter/starcounter-include,Starcounter/starcounter-include
70f58c82f3ab137389e0ccf65fea0816f4dca83a
.travis.yml
.travis.yml
language: objective-c osx_image: xcode9.2 env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: - pod repo update - gem install xcpretty -N script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
language: objective-c osx_image: xcode9.3beta env: - LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 before_install: - pod repo update - gem install xcpretty -N script: "./Tests/travis.sh" notifications: slack: secure: Bgfiib7NP2/98fjJvW+PraQQFnj5X23+Zmvy9XqIe9NetzyNqWVN6URRFdcjvSnpah1kg2gGhIdkT5gvBT8HcP8OS6x/2lMFQsOhuA0mMoJ3tK3vhve10s3Mt8JvWqnEI3OmnDF/Yx7FN0sGiTskLYvi7jCzLY1QNqdg52VTsNI=
Switch Travis Xcode image to 9.3 beta (until they have final 9.3)
Switch Travis Xcode image to 9.3 beta (until they have final 9.3)
YAML
mit
audiokit/AudioKit,adamnemecek/AudioKit,audiokit/AudioKit,eljeff/AudioKit,eljeff/AudioKit,audiokit/AudioKit,adamnemecek/AudioKit,adamnemecek/AudioKit,eljeff/AudioKit,adamnemecek/AudioKit,audiokit/AudioKit,eljeff/AudioKit
24aab5686c92aa761c1d4a79a2dbd9b468b4fb80
.travis.yml
.travis.yml
language: scala env: global: - PLAY_VERSION=2.2.1 - secure: "HD1x0S9ad/3+G9YUkyT/uTw9lEr+tUQEV4QO+M2Ro1JFSVOzLNZiNoh6FrNb06a0TbencTkftyHYmYjp1/CCyTpF9CMCQ4ddB7TVF9hibH1y9ONVrPJIm5BCEpjGDa4fND8bkcChrpcZDQKIO0ZwArEsl2+IRocnbBT+oYqIFNo=" before_script: - wget http://downloads.typesafe.com/play/${PLAY_VERSION}/play-${PLAY_VERSION}.zip - unzip -q play-${PLAY_VERSION}.zip script: play-${PLAY_VERSION}/play test notifications: email: false after_success: - play-${PLAY_VERSION}/play dist - cd /target/universal/ - curl -H "Authorization: token ${BUILD_KEY}" https://api.github.com/MeiSign - 'curl -XPOST "https://api.github.com/repos/MeiSign/Fillable/releases" -d \\"{"tag_name" : "automated travis build": "draft", true}\\"'
language: scala env: global: - PLAY_VERSION=2.2.1 - secure: "HD1x0S9ad/3+G9YUkyT/uTw9lEr+tUQEV4QO+M2Ro1JFSVOzLNZiNoh6FrNb06a0TbencTkftyHYmYjp1/CCyTpF9CMCQ4ddB7TVF9hibH1y9ONVrPJIm5BCEpjGDa4fND8bkcChrpcZDQKIO0ZwArEsl2+IRocnbBT+oYqIFNo=" before_script: - wget http://downloads.typesafe.com/play/${PLAY_VERSION}/play-${PLAY_VERSION}.zip - unzip -q play-${PLAY_VERSION}.zip - apt-get install jq script: play-${PLAY_VERSION}/play test notifications: email: false after_success: - play-${PLAY_VERSION}/play dist - cd /target/universal/ - 'ASSETID=$(curl -s -H "Authorization: token ${BUILD_KEY}" "https://api.github.com/repos/meisign/fillable/releases/204198/assets" | jq ".[0].id")' - 'curl -XDELETE -s -H "Authorization: token ${BUILD_KEY}" "https://api.github.com/repos/meisign/fillable/releases/assets/$ASSETID"' - 'curl -XPOST -v -H "Authorization: token ${BUILD_KEY}" -H "Content-Type: application/zip" --data-binary @./Fillable-1.0-SNAPSHOT.zip "https://uploads.github.com/repos/meisign/fillable/releases/204198/assets?name=Fillable.zip"'
Add new Travis.yml for automated compilation
Add new Travis.yml for automated compilation
YAML
apache-2.0
MeiSign/Fillable
86db61b55f942962c483f10c107facdf8af43230
.travis.yml
.travis.yml
language: android android: components: - tools - platform-tools - build-tools-25.0.2 - android-25 - extra-android-m2repository - sys-img-armeabi-v7a-android-18 jdk: - oraclejdk8 sudo: true before_script: - echo no | android create avd --force -n test -t android-18 --abi armeabi-v7a - emulator -avd test -no-window & - android-wait-for-emulator - adb shell input keyevent 82 env: matrix: - TEST=:sample:app:connectedDebugAndroidTest - TEST=:sample:kotlinapp:connectedDebugAndroidTest - TEST=:activitystarter:test script: - ./gradlew $TEST -i branches: only: - master - stable notifications: email: true cache: directories: - $HOME/.m2 - $HOME/.gradle
language: android android: components: - tools - platform-tools - build-tools-25.0.2 - android-25 - extra-android-m2repository - sys-img-armeabi-v7a-android-18 jdk: - oraclejdk8 sudo: true before_script: - echo no | android create avd --force -n test -t android-18 --abi armeabi-v7a - emulator -avd test -no-window & - android-wait-for-emulator - adb shell input keyevent 82 env: matrix: - TEST=:sample:app:connectedDebugAndroidTest - TEST=:sample:kotlinapp:connectedDebugAndroidTest - TEST=:activitystarter:test - TEST=:activitystarter-compiler:test script: - ./gradlew $TEST -i branches: only: - master - stable notifications: email: true cache: directories: - $HOME/.m2 - $HOME/.gradle
Add compiler unit tests to Travis
Add compiler unit tests to Travis
YAML
apache-2.0
MarcinMoskala/ActivityStarter,MarcinMoskala/ActivityStarter,MarcinMoskala/ActivityStarter
2e7a2e0b59144430e5cd9c721965470069100d95
.travis.yml
.travis.yml
--- language: node_js node_js: - "6" sudo: false dist: trusty addons: chrome: stable cache: yarn env: global: # See https://git.io/vdao3 for details. - JOBS=1 matrix: - EMBER_TRY_SCENARIO=defaults - EMBER_TRY_SCENARIO=typescript-release - EMBER_TRY_SCENARIO=typescript-beta - EMBER_TRY_SCENARIO=ember-cli-release - EMBER_TRY_SCENARIO=ember-cli-beta matrix: fast_finish: true before_install: - bash ./is_md_only.sh && MD_ONLY=true && echo "Only .md files have changed!" || test true install: - test $MD_ONLY && echo "Skipped!" || yarn install script: - test $MD_ONLY && echo "Skipped!" || yarn lint:js # Usually, it's ok to finish the test scenario without reverting # to the addon's original dependency state, skipping "cleanup". - test $MD_ONLY && echo "Skipped!" || yarn ember try:one $EMBER_TRY_SCENARIO --skip-cleanup # We build PRs, but don't trigger separate builds for the PR from the branch. branches: only: - master
--- language: node_js node_js: - "6" sudo: false dist: trusty addons: chrome: stable cache: yarn env: global: # See https://git.io/vdao3 for details. - JOBS=1 matrix: - EMBER_TRY_SCENARIO=defaults - EMBER_TRY_SCENARIO=typescript-release - EMBER_TRY_SCENARIO=typescript-beta - EMBER_TRY_SCENARIO=ember-cli-release - EMBER_TRY_SCENARIO=ember-cli-beta matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=typescript-beta - env: EMBER_TRY_SCENARIO=ember-cli-beta before_install: - bash ./is_md_only.sh && MD_ONLY=true && echo "Only .md files have changed!" || test true install: - test $MD_ONLY && echo "Skipped!" || yarn install script: - test $MD_ONLY && echo "Skipped!" || yarn lint:js # Usually, it's ok to finish the test scenario without reverting # to the addon's original dependency state, skipping "cleanup". - test $MD_ONLY && echo "Skipped!" || yarn ember try:one $EMBER_TRY_SCENARIO --skip-cleanup # We build PRs, but don't trigger separate builds for the PR from the branch. branches: only: - master
Allow failures in beta scenarios
Allow failures in beta scenarios
YAML
mit
emberwatch/ember-cli-typescript,emberwatch/ember-cli-typescript,emberwatch/ember-cli-typescript,emberwatch/ember-cli-typescript
cbbec834c25a45fe86174d5aeebef945a51e1ad4
.travis.yml
.travis.yml
branches: only: - master language: ruby matrix: allow_failures: - rvm: ruby-head rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - 2.3.0 - jruby - ruby-head
branches: only: - master language: ruby matrix: allow_failures: - rvm: ruby-head install: - gem install bundler rvm: - 1.9.3 - 2.0.0 - 2.1 - 2.2 - 2.3.0 - jruby - ruby-head
Install the latest bundler on Travis.
Install the latest bundler on Travis. We're running into an issue with installing gems that _may_ be fixed by a newer version of bundler. The error itself [1] may have been fixed by Bundler#3559 [2]. 1: "NoMethodError: undefined method `spec' for nil:NilClass" 2: https://github.com/bundler/bundler/pull/3559
YAML
mit
deadmanssnitch/snitcher
2e55d2317939b254e6af875c17366d856e75bafc
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" # command to install dependencies install: - "pip install unittest" - "pip install coveralls" # command to run tests script: coverage run --source=visualcaptcha test.py after_success: coveralls
language: python python: - "2.7" # command to install dependencies install: - "pip install coveralls" # command to run tests script: coverage run --source=visualcaptcha test.py after_success: coveralls
Update Python version to run on Travis.
Update Python version to run on Travis.
YAML
mit
emotionLoop/visualCaptcha-python
0fa22fd223b510310796d74f5d75904a1f2518bb
.travis.yml
.travis.yml
language: ruby rvm: - 2.1.3 before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - RAILS_ENV=test bundle exec rake db:drop - RAILS_ENV=test bundle exec rake db:create - RAILS_ENV=test bundle exec rake db:migrate - RAILS_ENV=test bundle exec rake db:seed - bundle exec rspec
cache: bundler language: ruby rvm: - 2.1.3 before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start script: - RAILS_ENV=test bundle exec rake db:drop - RAILS_ENV=test bundle exec rake db:create - RAILS_ENV=test bundle exec rake db:migrate - RAILS_ENV=test bundle exec rake db:seed - bundle exec rspec sudo: false
Use container-based infrastructure and gem caching for faster builds
Use container-based infrastructure and gem caching for faster builds
YAML
mit
cloudyMBC/sounddrop,cloudyMBC/sounddrop,sounddrop/sounddrop,sounddrop/sounddrop,hannestyden/sounddrop,hannestyden/sounddrop,cloudyMBC/sounddrop,hannestyden/sounddrop,cloudyMBC/sounddrop,sounddrop/sounddrop,sounddrop/sounddrop,hannestyden/sounddrop
f30cb4a2bcdebc5c8a29f7c470adf69c853b1677
.travis.yml
.travis.yml
language: ruby rvm: - 2.3.1 - 2.2.5 - 2.1.9 env: - RAILS=3.2.22.1 - RAILS=4.1.14.1 - RAILS=4.2.5.1 - RAILS=5.0.0.0 matrix: exclude: - rvm: 2.1.9 env: RAILS=5.0.0.0
language: ruby rvm: - 2.3.1 - 2.2.5 - 2.1.9 env: - RAILS=3.2.22.1 - RAILS=4.1.14.1 - RAILS=4.2.5.1 - RAILS=5.0.0.0 matrix: exclude: - rvm: 2.1.9 env: RAILS=5.0.0.0 before_install: - gem update bundler
Update bundler before running it
Update bundler before running it
YAML
mit
chrislewis60/mail-gpg,jkraemer/mail-gpg,duckdalbe/mail-gpg
491d0158d02871b949020c44237637d68f8d86e1
.travis.yml
.travis.yml
language: java sudo: false install: true script: mvn -B clean install jdk: - openjdk8 - oraclejdk8 - openjdk9 - openjdk10 - openjdk11 env: - JAVA_OPTS="-Xmx3072M -Xms512M -XX:+UseG1GC"
language: java sudo: false install: true script: mvn -B clean install jdk: - openjdk8 - openjdk9 - openjdk10 - openjdk11 env: - JAVA_OPTS="-Xmx3072M -Xms512M -XX:+UseG1GC"
Remove Oracle JDK from Travis Builds
Remove Oracle JDK from Travis Builds
YAML
apache-2.0
apache/jena,apache/jena,apache/jena,apache/jena,apache/jena,apache/jena,apache/jena,apache/jena
f5e100e547bddd1e607b5257f911faeb42e2451d
.travis.yml
.travis.yml
sudo: false dist: trusty language: java jdk: oraclejdk9 script: - ./build.jsh after_success: - jshell --show-version --execution local bootstrap.jsh - cd demo/01-hello-world - jshell --show-version --execution local build-01-hello-world.jsh
sudo: false dist: trusty language: java jdk: oraclejdk9 script: - ./build.jsh after_success: - cd demo/00-bootstrap - jshell --show-version --execution local bootstrap.jsh - cd - - cd demo/01-hello-world - jshell --show-version --execution local build-01-hello-world.jsh - cd -
Fix Travis CI build script - bootstrap moved to demo folder
Fix Travis CI build script - bootstrap moved to demo folder
YAML
mit
sormuras/bach,sormuras/bach
6ada038a7da6739e94b4af6f17f1eca44a87a20d
.travis.yml
.travis.yml
language: python cache: pip env: global: - PILLOW="Pillow" matrix: include: - python: 2.7 - python: 3.4 env: PILLOW="Pillow==2.9.0" - python: 3.5 env: PILLOW="Pillow==3.0.0" - python: 3.6 before_install: # Dependencies to build PIL - sudo apt-get update -qq - sudo apt-get install -qq ubuntu-restricted-extras - sudo apt-get install -qq libfreetype6-dev libjpeg8-dev zlib1g-dev ffmpeg - sudo locale-gen fr_FR.UTF-8 - ffmpeg -version install: - pip install -q $PILLOW - pip install pytest pytest-cov coveralls - pip install . script: py.test -sv --cov sigal --cov-report term-missing tests/ after_success: coveralls notifications: irc: "chat.freenode.net#sigal"
language: python cache: pip env: global: - PILLOW="Pillow" matrix: include: - python: 2.7 - python: 3.4 env: PILLOW="Pillow==2.9.0" - python: 3.5 env: PILLOW="Pillow==3.0.0" - python: 3.6 before_install: # Add PPA to get ffmpeg on trusty - sudo add-apt-repository ppa:mc3man/trusty-media -y # Dependencies to build PIL - sudo apt-get update -qq - sudo apt-get install -qq ubuntu-restricted-extras - sudo apt-get install -qq libfreetype6-dev libjpeg8-dev zlib1g-dev ffmpeg - sudo locale-gen fr_FR.UTF-8 - ffmpeg -version install: - pip install -q $PILLOW - pip install pytest pytest-cov coveralls - pip install . script: py.test -sv --cov sigal --cov-report term-missing tests/ after_success: coveralls notifications: irc: "chat.freenode.net#sigal"
Fix install of ffmpeg since Travis upgrade to trusty
Fix install of ffmpeg since Travis upgrade to trusty
YAML
mit
kontza/sigal,kontza/sigal,kontza/sigal
c4fcf5430e6cb8627e314f74b70b29b4c88515b5
.travis.yml
.travis.yml
sudo: false rvm: - 2.4 # - 2.5 gemfile: - gemfiles/mysql2_ar_42.gemfile - gemfiles/mysql2_ar_50.gemfile - gemfiles/mysql2_ar_51.gemfile - gemfiles/mysql2_ar_52.gemfile - gemfiles/pg_ar_42.gemfile - gemfiles/pg_ar_50.gemfile - gemfiles/pg_ar_51.gemfile - gemfiles/pg_ar_52.gemfile - gemfiles/sqlite3_ar_42.gemfile - gemfiles/sqlite3_ar_50.gemfile - gemfiles/sqlite3_ar_51.gemfile - gemfiles/sqlite3_ar_52.gemfile services: - mysql - postgresql before_script: - mysql -e 'create database ancestry_test;' || true - psql -c 'create database ancestry_test;' -U postgres || true
sudo: false rvm: - 2.4 - 2.5 - 2.6 gemfile: - gemfiles/mysql2_ar_42.gemfile - gemfiles/mysql2_ar_50.gemfile - gemfiles/mysql2_ar_51.gemfile - gemfiles/mysql2_ar_52.gemfile - gemfiles/pg_ar_42.gemfile - gemfiles/pg_ar_50.gemfile - gemfiles/pg_ar_51.gemfile - gemfiles/pg_ar_52.gemfile - gemfiles/sqlite3_ar_42.gemfile - gemfiles/sqlite3_ar_50.gemfile - gemfiles/sqlite3_ar_51.gemfile - gemfiles/sqlite3_ar_52.gemfile services: - mysql - postgresql before_script: - mysql -e 'create database ancestry_test;' || true - psql -c 'create database ancestry_test;' -U postgres || true
Test against Ruby 2.5 and 2.6
Test against Ruby 2.5 and 2.6
YAML
mit
kbrock/ancestry,stefankroes/ancestry
bd714f195655234a69e167a3d3edf21f2b7db282
.travis.yml
.travis.yml
sudo: false language: go before_install: - git config --global user.email "[email protected]" - git fetch --unshallow - git fetch origin +refs/notes/devtools/*:refs/notes/devtools/* - git fetch origin +refs/heads/master:refs/heads/master
sudo: false language: go before_install: - git config --global user.email "[email protected]" - git fetch --unshallow - git fetch origin +refs/notes/devtools/*:refs/notes/devtools/* - git fetch origin +refs/heads/master:refs/heads/master before_script: - grep "os/exec" `find ./ -name '*.go'` && exit 1
Add a CI check that we are not importing the builtin "os/exec" package anywhere
Add a CI check that we are not importing the builtin "os/exec" package anywhere
YAML
apache-2.0
google/git-appraise
6586de85dae81a5918ac3ec954feb29ab302907e
.travis.yml
.travis.yml
language: c compiler: - gcc - clang env: - CFLAGS="-m32" - CFLAGS="-m64" before_script: - sudo apt-get update -qq - sudo apt-get install -y libc6:i386 libgcc1:i386 gcc-4.6-base:i386 gcc-multilib script: - perl --version - make test - make clean - make debug - make test 2> /dev/null >/dev/null
language: c compiler: - gcc - clang env: - CFLAGS="-m32" - CFLAGS="-m64" before_script: - sudo apt-get update -qq - sudo apt-get install -y gcc-multilib script: - perl --version - make test - make clean - make debug - make test 2> /dev/null >/dev/null
Remove redundancy packages from preparation.
Remove redundancy packages from preparation. All we need is gcc-multilib. Signed-off-by: OGINO Masanori <[email protected]>
YAML
mit
leavesbnw/picrin,ktakashi/picrin,koba-e964/picrin,ktakashi/picrin,omasanori/picrin,ktakashi/picrin,dcurrie/picrin,leavesbnw/picrin,koba-e964/picrin,picrin-scheme/picrin,dcurrie/picrin,picrin-scheme/picrin,leavesbnw/picrin,omasanori/picrin,koba-e964/picrin
911c732d002ea14bcc136eb1d7c160181f0ba890
.travis.yml
.travis.yml
sudo: false language: node_js node_js: - "0.10" - "0.12"
sudo: false language: node_js node_js: - "0.10" - "0.12" before_script: - npm install -g grunt-cli
Fix build - install grunt
Fix build - install grunt
YAML
mit
avdg/screeps
62971d8f7aa46d68fcb1445393c83d27f6df3e5c
.travis.yml
.travis.yml
language: android jdk: oraclejdk8 dist: trusty sudo: required group: edge android: components: - tools - build-tools-26.0.1 - android-26 install: - sudo apt-get install build-essential - echo y | sdkmanager 'ndk-bundle' - echo y | sdkmanager 'cmake' - export ANDROID_HOME=$HOME/android/sdk - export ANDROID_NDK_HOME=$HOME/android/sdk/ndk-bundle env: global: # install timeout in minutes (2 minutes by default) - ADB_INSTALL_TIMEOUT=8 # Emulator Management: Create, Start and Wait before_script: - echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a - emulator -avd test -no-skin -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: - android list target - ./gradlew build -x bintray connectedCheck --stacktrace --info
language: android jdk: oraclejdk8 dist: trusty sudo: required group: edge android: components: - tools - build-tools-26.0.1 - android-26 install: - sudo apt-get install build-essential - yes | sdkmanager 'ndk-bundle' - yes | sdkmanager 'cmake' env: global: # install timeout in minutes (2 minutes by default) - ADB_INSTALL_TIMEOUT=8 # Emulator Management: Create, Start and Wait before_script: - echo no | android create avd --force -n test -t android-21 --abi armeabi-v7a - emulator -avd test -no-skin -no-audio -no-window & - android-wait-for-emulator - adb shell input keyevent 82 & script: - android list target - ./gradlew build -x bintray connectedCheck --stacktrace --info
Use yes to accept license
Use yes to accept license
YAML
apache-2.0
mjdev/libaums,magnusja/libaums,magnusja/libaums,magnusja/libaums
407e7466f368c48ea8d139e6db662030fe3c821b
.travis.yml
.travis.yml
language: python python: - 2.7 - 3.3 - 3.4 - 3.5 - 3.6 dist: trusty sudo: false matrix: include: - language: generic python: 2.7 os: osx - language: generic python: 3.3 os: osx - language: generic python: 3.4 os: osx - language: generic python: 3.5 os: osx - language: generic python: 3.6 os: osx before_install: - pip install --quiet codecov wheel install: - make install script: - make test after_success: - bash <(curl -s https://codecov.io/bash)
language: python python: - 2.7 - 3.3 - 3.4 - 3.5 - 3.6 - nightly - pypy-5.7.1 dist: trusty sudo: false matrix: include: - language: generic python: 2.7 os: osx - language: generic python: 3.3 os: osx - language: generic python: 3.4 os: osx - language: generic python: 3.5 os: osx - language: generic python: 3.6 os: osx before_install: - pip install --quiet codecov wheel install: - make install script: - make test after_success: - bash <(curl -s https://codecov.io/bash)
Add pypy and nightly runtimes
Add pypy and nightly runtimes
YAML
apache-2.0
kislyuk/rehash
e89a0e49c5f710418b4c4714ce4667d8ad2c7f25
.markdownlint.yml
.markdownlint.yml
default: true # Using h2 has side effects in GitBook's toc. Thus, we sometimes switch from h1 to h3 MD001: false MD012: # 2 are required, because GitBook adss two blank lines at the end of a file maximum: 2 MD013: false # The FAQs state questions - we allow them MD026: punctuation: ".,;:!" MD033: # we have <a> tags with ids and superscript allowed_elements: ['a', 'sup']
default: true # Using h2 has side effects in GitBook's toc. Thus, we sometimes switch from h1 to h3 MD001: false MD012: # 2 are required, because GitBook adss two blank lines at the end of a file maximum: 2 MD013: false # The FAQs state questions - we allow them MD026: punctuation: ".,;:!" # not supported by gitbook MD031: false MD033: # we have <a> tags with ids and superscript allowed_elements: ['a', 'sup']
Add MD031 to lint ignore list
Add MD031 to lint ignore list
YAML
mit
sauliusg/jabref,JabRef/jabref,Siedlerchr/jabref,JabRef/jabref,sauliusg/jabref,Siedlerchr/jabref,Siedlerchr/jabref,sauliusg/jabref,JabRef/jabref,JabRef/jabref,Siedlerchr/jabref,sauliusg/jabref
282a6564f62a3bc65e1824bea4281dd8f06ffd6c
.travis.yml
.travis.yml
language: ruby matrix: include: - os: linux dist: trusty sudo: required services: - postgresql addons: postgresql: "9.5" - os: osx osx_image: xcode8 install: - "[ $TRAVIS_OS_NAME = osx ] && pg_ctl -D /usr/local/var/postgres start && sleep 3 || true" - "[ $TRAVIS_OS_NAME = osx ] && createuser -s postgres || true" - psql -U postgres -c 'CREATE DATABASE test;' script: - eval "$(curl -sL https://swift.vapor.sh/ci-3.1)" - eval "$(curl -sL https://swift.vapor.sh/codecov)"
language: ruby matrix: include: - os: linux dist: trusty sudo: required services: - postgresql - os: osx osx_image: xcode8.3 install: - "[ $TRAVIS_OS_NAME = osx ] && pg_ctl -D /usr/local/var/postgres start && sleep 3 || true" - "[ $TRAVIS_OS_NAME = osx ] && createuser -s postgres || true" - psql -U postgres -c 'CREATE DATABASE test;' script: - eval "$(curl -sL https://swift.vapor.sh/ci-3.1)" - eval "$(curl -sL https://swift.vapor.sh/codecov)"
Use xcode8.3 image in Travis config.
Use xcode8.3 image in Travis config.
YAML
mit
vapor-community/postgresql
5c29d9ab53e8c968ae25016de96037384d48af06
.travis.yml
.travis.yml
sudo: false language: go go: - 1.7 - tip before_install: - go get github.com/golang/lint/golint script: - go install ./... - go test -v ./... - go vet -x ./... - $HOME/gopath/bin/golint -set_exit_status ./...
sudo: false language: go go: - stable - master before_install: - go get github.com/golang/lint/golint script: - go install ./... - go test -v ./... - go vet -x ./... - $HOME/gopath/bin/golint -set_exit_status ./...
Use Go stable and master with Travis CI
Use Go stable and master with Travis CI
YAML
mit
cybozu-go/usocksd
5dadae51f73f3b926e41c588c408478820446ff8
.travis.yml
.travis.yml
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5.0b3" - "3.5-dev" - "nightly" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests script: python -m unittest discover tests/
language: python python: - "2.6" - "2.7" - "3.2" - "3.3" - "3.4" - "3.5.0b3" - "3.5-dev" - "nightly" # command to install dependencies install: "pip install -r requirements.txt" # command to run tests script: nosetests
Use nosetests to run unit tests
Use nosetests to run unit tests
YAML
apache-2.0
HappyRay/php-di-generator
09e4b9aae24093bdf91ead89577a5e1dcd267655
.readthedocs.yaml
.readthedocs.yaml
# .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details version: 2 build: os: ubuntu-22.04 tools: python: "3.10" jobs: post_checkout: - git fetch --unshallow commands: - tox -e doc python: install: - method: pip path: . sphinx: configuration: doc/conf.py fail_on_warning: true
# .readthedocs.yaml # Read the Docs configuration file # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details version: 2 build: os: ubuntu-22.04 tools: python: "3.10" commands: - git fetch --unshallow - pip install tox - tox -e doc python: install: - method: pip path: . sphinx: configuration: doc/conf.py fail_on_warning: true
Remove `jobs` section from config
Remove `jobs` section from config
YAML
mit
jrsmith3/ibei
3895b3e00eb6610b6a911ce14c032a6fda14fb8c
releasenotes/notes/state-machine-37be751ed54c1c75.yaml
releasenotes/notes/state-machine-37be751ed54c1c75.yaml
--- features: - | Lease status is introduced in this release. With this change, transition graphs of statuses of leases, reservations, and events are redefined while keeping backward compatibility. If you update Blazar from an older version, the lease status is automatically updated from *None* at the time of an event or an API call. See `state machine documentation`_ for more details. .. _state machine documentation: https://docs.openstack.org/blazar/latest/user/state-machines.html
--- features: - | Lease status is introduced in this release. With this change, transition graphs of statuses of leases, reservations, and events are redefined while keeping backward compatibility. If you update Blazar from an older version, the lease status is automatically updated from *None* by an Alembic database migration script. See `state machine documentation`_ for more details. .. _state machine documentation: https://docs.openstack.org/blazar/latest/user/state-machines.html
Correct information in state machine release note
Correct information in state machine release note The migration of the lease status is actually done by an Alembic migration script added in 5d3918c885f430e79e8283533ad5eb3a84ffecc7. Change-Id: I001a5adcd5892d0be74c1028b62a03b5ecb507a8
YAML
apache-2.0
ChameleonCloud/blazar,openstack/blazar,openstack/blazar,stackforge/blazar,ChameleonCloud/blazar,stackforge/blazar
0559ff8720d380a27dab1d81bc2dae18ad62e3c5
docker-compose.prod.yml
docker-compose.prod.yml
version: '2' volumes: redis-data: driver: local services: server: image: "quay.io/bionano/mdtapps_server:${VERSION}" environment: CCC: "ccc.bionano.autodesk.com:9000" NODE_ENV: "production" FRONTEND_URL: "http://molsim.bionano.autodesk.com/" REDIS_HOST: "${prod.mst.redis.host}" logging: driver: json-file options: max-size: 50m
version: '2' volumes: redis-data: driver: local services: server: image: "quay.io/bionano/mdtapps_server:${VERSION}" environment: CCC: "ccc.bionano.autodesk.com:9000" NODE_ENV: "production" FRONTEND_URL: "http://molsim.bionano.autodesk.com/" REDIS_HOST: "redis.${BNR_ENVIRONMENT}.bionano.bio" logging: driver: json-file options: max-size: 50m
Update to DNS env redis entry
Update to DNS env redis entry
YAML
apache-2.0
Autodesk/molecular-design-applications,Autodesk/molecular-simulation-tools,Autodesk/molecular-simulation-tools,Autodesk/molecular-design-applications,Autodesk/molecular-simulation-tools,Autodesk/molecular-design-applications
4fb42ac0d5365544db3fcb8a0de63423ed741795
packages/mo/monad-control-identity.yaml
packages/mo/monad-control-identity.yaml
homepage: https://github.com/jumper149/monad-control-identity changelog-type: markdown hash: 5a0ada43c7645dadca12bfe2bafe0dc95157a6ef542b80300c9d86a77880f8c0 test-bench-deps: {} maintainer: [email protected] synopsis: Stronger classes than monad-control changelog: | # Revision history for monad-control-identity ## 0.1.0.0 -- 2020-07-17 * First version. Released on an unsuspecting world. basic-deps: base: '>=4.14 && <4.15' monad-control: '>=1.0.2.3 && <1.1' transformers-base: '>=0.4.5.2 && <0.5' transformers: '>=0.5.6.2 && <0.6' all-versions: - 0.1.0.0 author: Felix Springer latest: 0.1.0.0 description-type: haddock description: '' license-name: BSD-3-Clause
homepage: https://github.com/jumper149/monad-control-identity changelog-type: markdown hash: 48a340ce10735e4a9f0ea0c9397c5990e2d8d8bfa73fe46a2eb351979d12ab40 test-bench-deps: {} maintainer: [email protected] synopsis: Stronger classes than monad-control changelog: | # Revision history for monad-control-identity ## 0.1.0.1 -- 2020-07-17 * Accept older versions of dependencies. ## 0.1.0.0 -- 2020-07-17 * First version. Released on an unsuspecting world. basic-deps: base: '>=4.5 && <5' monad-control: '>=1.0.2.3 && <1.1' transformers-base: '>=0.4.5.2 && <0.5' transformers: '>=0.5.6.2 && <0.6' all-versions: - 0.1.0.0 - 0.1.0.1 author: Felix Springer latest: 0.1.0.1 description-type: haddock description: '' license-name: BSD-3-Clause
Update from Hackage at 2020-07-17T10:16:13Z
Update from Hackage at 2020-07-17T10:16:13Z
YAML
mit
commercialhaskell/all-cabal-metadata
f21192372ee89751b41907cc3a22269aaa674281
snap/snapcraft.yaml
snap/snapcraft.yaml
# obligatory fields name: gitless version: git summary: A simple version control system built on top of Git description: | Gitless is an experimental version control system built on top of Git. Many people complain that Git is hard to use. We think the problem lies deeper than the user interface, in the concepts underlying Git. Gitless is an experiment to see what happens if you put a simple veneer on an app that changes the underlying concepts. Because Gitless is implemented on top of Git (could be considered what Git pros call a "porcelain" of Git), you can always fall back on Git. And of course your coworkers you share a repo with need never know that you're not a Git aficionado. base: core18 grade: devel # 'stable' for stable/candidate upload confinement: devmode # 'strict' after right plugs and slots # 'optional' fields apps: gl: command: bin/gl parts: libgit2: plugin: cmake source: https://github.com/libgit2/libgit2/archive/v0.27.0.tar.gz build-packages: - libssl-dev gitless-cli: plugin: python source: . after: [libgit2] # need git until https://github.com/sdg-mit/gitless/issues/176 stage-packages: - git build-packages: - git
# obligatory fields name: gitless version: git summary: A simple version control system built on top of Git description: | Gitless is an experimental version control system built on top of Git. Many people complain that Git is hard to use. We think the problem lies deeper than the user interface, in the concepts underlying Git. Gitless is an experiment to see what happens if you put a simple veneer on an app that changes the underlying concepts. Because Gitless is implemented on top of Git (could be considered what Git pros call a "porcelain" of Git), you can always fall back on Git. And of course your coworkers you share a repo with need never know that you're not a Git aficionado. base: core18 grade: devel # 'stable' for stable/candidate upload confinement: devmode # 'strict' after right plugs and slots # 'optional' fields apps: gl: command: bin/gl parts: libgit2: plugin: cmake # https://www.pygit2.org/install.html#version-numbers source: https://github.com/libgit2/libgit2/archive/v0.26.8.tar.gz build-packages: - libssl-dev gitless-cli: plugin: python source: . after: [libgit2] # need git until https://github.com/sdg-mit/gitless/issues/176 stage-packages: - git build-packages: - git
Use recommended 0.26.x version of libgit2
Use recommended 0.26.x version of libgit2 pygit2 0.26.4 needs at 0.26.x branch of libgit2 https://www.pygit2.org/install.html#version-numbers
YAML
mit
sdg-mit/gitless,sdg-mit/gitless
97cb1cd00da242d446abf2ae6035edf2a973dd54
docs/.satya-config.yml
docs/.satya-config.yml
project_name: jsonpatch.js project_url: https://github.com/dharmafly/jsonpatch.js version: '1.0.0-dev' jquery_no_conflict: true theme: sundae twitter_url: https://twitter.com/dharmafly twitter_name: Dharmafly lang: javascript scripts: quote: cite: Thomas Jefferson quote: The hole and the patch should be commensurate. ga_id: UA-34978047-4 download_links: - title: Master branch zip href: https://github.com/dharmafly/jsonpatch.js/zipball/master text: jsonpatch.js subtext: v{{ version }} sections: - path: /index.html name: Overview - path: /reference/index.html name: Reference
project_name: jsonpatch.js project_url: https://github.com/dharmafly/jsonpatch.js version: '1.0.0-rc1' jquery_no_conflict: true theme: sundae twitter_url: https://twitter.com/dharmafly twitter_name: Dharmafly lang: javascript scripts: quote: cite: Thomas Jefferson quote: The hole and the patch should be commensurate. ga_id: UA-34978047-4 download_links: - title: Master branch zip href: https://github.com/dharmafly/jsonpatch.js/zipball/master text: jsonpatch.js subtext: v{{ version }} sections: - path: /index.html name: Overview - path: /reference/index.html name: Reference
Update docs version to 1.0.0-rc1
Update docs version to 1.0.0-rc1
YAML
mit
dharmafly/jsonpatch.js,dharmafly/jsonpatch.js
8375626e38dff35817e4df1baaa971df660aa717
src/Corvus/AdminBundle/Resources/config/doctrine/About.orm.yml
src/Corvus/AdminBundle/Resources/config/doctrine/About.orm.yml
Corvus\AdminBundle\Entity\About: type: entity table: null fields: id: type: integer id: true generator: strategy: AUTO firstname: type: string lastname: type: string age: type: integer bio: type: string address: type: string nullable: true location: type: string nullable: true interests_hobbies: type: string nullable: true email_address: type: string twitter: type: string nullable: true facebook: type: string nullable: true lifecycleCallbacks: { }
Corvus\AdminBundle\Entity\About: type: entity table: null fields: id: type: integer id: true generator: strategy: AUTO firstname: type: string lastname: type: string age: type: integer bio: type: string length: 15000 address: type: string nullable: true location: type: string nullable: true interests_hobbies: type: string nullable: true length: 10000 email_address: type: string twitter: type: string nullable: true facebook: type: string nullable: true lifecycleCallbacks: { }
Set Bio field length to 15000, interests_hobbies to 10000
Set Bio field length to 15000, interests_hobbies to 10000
YAML
mit
ilikeprograms/corvus,ilikeprograms/corvus,ilikeprograms/corvus
494684f167047b06ce910633e8b26958d56cadc0
pubspec.yaml
pubspec.yaml
name: string_scanner version: 0.1.3+2 author: "Dart Team <[email protected]>" homepage: https://github.com/dart-lang/string_scanner description: > A class for parsing strings using a sequence of patterns. dependencies: charcode: "^1.1.0" path: ">=1.2.0 <2.0.0" source_span: ">=1.0.0 <2.0.0" dev_dependencies: test: ">=0.12.0 <0.13.0" environment: sdk: ">=1.2.0 <2.0.0"
name: string_scanner version: 0.1.3+2 author: "Dart Team <[email protected]>" homepage: https://github.com/dart-lang/string_scanner description: > A class for parsing strings using a sequence of patterns. dependencies: charcode: "^1.1.0" path: "^1.2.0" source_span: "^1.0.0" dev_dependencies: test: ">=0.12.0 <0.13.0" environment: sdk: ">=1.8.0 <2.0.0"
Increase the SDK constraint to allow ^ constraints.
Increase the SDK constraint to allow ^ constraints. [email protected] Review URL: https://codereview.chromium.org//1325943002 .
YAML
bsd-3-clause
dart-lang/string_scanner
e00baef99d29dffc83ea45b43b98f34363eae3d4
pubspec.yaml
pubspec.yaml
name: source_span version: 1.5.1 description: A library for identifying source spans and locations. author: Dart Team <[email protected]> homepage: https://github.com/dart-lang/source_span environment: sdk: '>=1.8.0 <3.0.0' dependencies: charcode: ^1.0.0 path: '>=1.2.0 <2.0.0' term_glyph: ^1.0.0 dev_dependencies: test: '>=0.12.0 <2.0.0'
name: source_span version: 1.5.1-dev description: A library for identifying source spans and locations. author: Dart Team <[email protected]> homepage: https://github.com/dart-lang/source_span environment: sdk: '>=1.8.0 <3.0.0' dependencies: charcode: ^1.0.0 path: '>=1.2.0 <2.0.0' term_glyph: ^1.0.0 dev_dependencies: test: '>=0.12.0 <2.0.0'
Mark this as a dev version
Mark this as a dev version
YAML
bsd-3-clause
dart-lang/source_span
e2ce85c2527e2d48be0fc8d5dead193831c53cdc
pubspec.yaml
pubspec.yaml
name: intl version: 0.9.10-dev.1 author: Dart Team <[email protected]> description: Contains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues. homepage: http://www.dartlang.org environment: sdk: '>=1.4.0-dev.6.6 <2.0.0' documentation: http://api.dartlang.org/docs/pkg/intl dependencies: analyzer: '>=0.13.2 <0.14.0' path: '>=0.9.0 <2.0.0' dev_dependencies: serialization: '>=0.9.0 <0.10.0' unittest: '>=0.10.0 <0.12.0'
name: intl version: 0.9.10 author: Dart Team <[email protected]> description: Contains code to deal with internationalized/localized messages, date and number formatting and parsing, bi-directional text, and other internationalization issues. homepage: http://www.dartlang.org environment: sdk: '>=1.4.0-dev.6.6 <2.0.0' documentation: http://api.dartlang.org/docs/pkg/intl dependencies: analyzer: '>=0.13.2 <0.16.0' path: '>=0.9.0 <2.0.0' dev_dependencies: serialization: '>=0.9.0 <0.10.0' unittest: '>=0.10.0 <0.12.0'
Expand version range on analyzer in intl dependency and prepare for release.
Expand version range on analyzer in intl dependency and prepare for release. [email protected] Review URL: https://codereview.chromium.org//330203002 git-svn-id: a8f079e7cfc3a289d8496d7b88aabbd5c45a3053@37327 260f80e4-7a28-3924-810f-c04153c831b5
YAML
bsd-3-clause
astashov/intl,dart-lang/intl,astashov/intl
f20984a700c2b04e379a2ba88994887ccbeda49c
packages/an/animate.yaml
packages/an/animate.yaml
homepage: https://github.com/jxv/animate#readme changelog-type: '' hash: 006cb0aa3cbd79dc78186bf854f94ca294920b4f1c3333d79810829491170596 test-bench-deps: base: -any hspec: -any animate: -any vector: -any maintainer: Joe Vargas synopsis: Animation for sprites changelog: '' basic-deps: base: ! '>=4.7 && <5' vector: -any all-versions: - '0.0.0' author: '' latest: '0.0.0' description-type: markdown description: ! '# animate Animation for sprites ' license-name: BSD3
homepage: https://github.com/jxv/animate#readme changelog-type: '' hash: bfb8f77edf5397583cf5a4c3e61b65008c8bde200f6deca4422e0ff7916212e2 test-bench-deps: base: -any hspec: -any animate: -any vector: -any maintainer: Joe Vargas synopsis: Animation for sprites changelog: '' basic-deps: base: ! '>=4.7 && <5' vector: -any all-versions: - '0.0.0' - '0.1.0' author: '' latest: '0.1.0' description-type: markdown description: ! '# animate Animation for sprites ' license-name: BSD3
Update from Hackage at 2017-11-19T02:29:00Z
Update from Hackage at 2017-11-19T02:29:00Z
YAML
mit
commercialhaskell/all-cabal-metadata
20ba134a13c9007af0041a7ad2a60e60657d397b
packages/sh/shakers.yaml
packages/sh/shakers.yaml
homepage: https://github.com/swift-nav/shakers changelog-type: '' hash: b478b21abd8451de8f4fca3e18e4eec250a0fb38f50f586167a1d0c09e7be0ef test-bench-deps: {} maintainer: Mark Fine <[email protected]> synopsis: Shake helpers. changelog: '' basic-deps: shake: -any base: ==4.8.* shakers: -any basic-prelude: -any directory: -any all-versions: - '0.0.0' - '0.0.2' - '0.0.3' - '0.0.4' - '0.0.5' - '0.0.6' - '0.0.7' - '0.0.8' - '0.0.9' - '0.0.10' - '0.0.11' - '0.0.12' - '0.0.13' - '0.0.14' - '0.0.15' - '0.0.16' - '0.0.17' author: Swift Navigation Inc. latest: '0.0.17' description-type: haddock description: Primitive helpers for Shake files. license-name: MIT
homepage: https://github.com/swift-nav/shakers changelog-type: '' hash: 70889338a92e509012f463407a4b25b8cb4f1c157c66f12248189190617c2d33 test-bench-deps: {} maintainer: Mark Fine <[email protected]> synopsis: Shake helpers. changelog: '' basic-deps: shake: -any base: ==4.8.* shakers: -any basic-prelude: -any directory: -any all-versions: - '0.0.0' - '0.0.2' - '0.0.3' - '0.0.4' - '0.0.5' - '0.0.6' - '0.0.7' - '0.0.8' - '0.0.9' - '0.0.10' - '0.0.11' - '0.0.12' - '0.0.13' - '0.0.14' - '0.0.15' - '0.0.16' - '0.0.17' - '0.0.18' author: Swift Navigation Inc. latest: '0.0.18' description-type: haddock description: Primitive helpers for Shake files. license-name: MIT
Update from Hackage at 2017-05-05T01:14:30Z
Update from Hackage at 2017-05-05T01:14:30Z
YAML
mit
commercialhaskell/all-cabal-metadata
5a24add498c3de120f9ace4a49e11c40c50cc7f6
appveyor.yml
appveyor.yml
os: Visual Studio 2017 version: 1.0.{build} environment: CLI_VERSION: 1.0.4 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true NUGET_XMLDOC_MODE: skip branches: only: - master cache: - src\LondonTravel.Site\node_modules - '%APPDATA%\npm\node_modules' - '%APPDATA%\npm-cache' install: - ps: npm install -g [email protected] --loglevel=error - ps: npm install -g [email protected] --loglevel=error - ps: .\Install-Emulator.ps1 build_script: - ps: .\Build.ps1 artifacts: - path: artifacts\publish nuget: disable_publish_on_pr: true skip_tags: false test: off
os: Visual Studio 2017 version: 1.0.{build} environment: CLI_VERSION: 1.0.4 DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true NUGET_XMLDOC_MODE: skip branches: only: - master cache: - src\LondonTravel.Site\node_modules - '%APPDATA%\npm\node_modules' - '%APPDATA%\npm-cache' install: - ps: npm install -g [email protected] --loglevel=error - ps: npm install -g [email protected] --loglevel=error - ps: .\Install-Emulator.ps1 - ps: Write-Host $env:Site__Authentication__UserStore__ServiceUri build_script: - ps: .\Build.ps1 artifacts: - path: artifacts\publish nuget: disable_publish_on_pr: true skip_tags: false test: off
Print environment variable to test
Print environment variable to test Print environment variable to test whether it's still set after the script ends.
YAML
apache-2.0
martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site,martincostello/alexa-london-travel-site
c33cfa8b1d03430731f930b5d7fd70c8ca7e5667
appveyor.yml
appveyor.yml
# http://www.appveyor.com/docs/appveyor-yml # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf input # Test against these versions of Node.js. environment: matrix: - nodejs_version: "0.10" - nodejs_version: "0.11" # Install scripts. (runs after repo cloning) install: # Get the Node version with matching major & minor numbers - ps: If (!$(node --version).StartsWith('v' + $env:nodejs_version)) {Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)} # Prevent Bower from asking questions. - set CI=true # Typical npm stuff. - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - npm test # Don't actually build. build: off # Set build version format here instead of in the admin panel. version: "{build}"
# http://www.appveyor.com/docs/appveyor-yml # Fix line endings in Windows. (runs before repo cloning) init: - git config --global core.autocrlf input # Test against these versions of Node.js. environment: matrix: - nodejs_version: "0.10" - nodejs_version: "0.11" # Install scripts. (runs after repo cloning) install: # Get the Node version with matching major & minor numbers - ps: | If (!$(node --version).StartsWith('v' + $env:nodejs_version)) { Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) } # Prevent Bower from asking questions. - set CI=true # Typical npm stuff. - npm install # Post-install test scripts. test_script: # Output useful info for debugging. - node --version - npm --version - npm test # Don't actually build. build: off # Set build version format here instead of in the admin panel. version: "{build}"
Break an exceptionally long line into smaller ones
AppVeyor: Break an exceptionally long line into smaller ones
YAML
mit
mzgol/check-dependencies,mgol/check-dependencies