Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add next ESLint version to Travis
sudo: false language: node_js node_js: - '12' - '11' - '10' - '8' before_install: - 'nvm install-latest-npm' before_script: - 'if [ -n "${ESLINT-}" ]; then npm install --no-save "eslint@${ESLINT}" ; fi' script: - 'if [ -n "${PRETEST-}" ]; then npm run pretest ; fi' - 'if [ -n "${TEST-}" ]; then npm run ...
sudo: false language: node_js node_js: - '12' - '11' - '10' - '8' before_install: - 'nvm install-latest-npm' before_script: - 'if [ -n "${ESLINT-}" ]; then npm install --no-save "eslint@${ESLINT}" ; fi' script: - 'if [ -n "${PRETEST-}" ]; then npm run pretest ; fi' - 'if [ -n "${TEST-}" ]; then npm run ...
Add test requirement for asgi_ipc
sudo: false language: python python: - "2.7" - "3.5" services: - redis-server install: - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install unittest2; fi - pip install six msgpack-python redis asgiref cffi cryptography script: - python setup.py develop - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then ...
sudo: false language: python python: - "2.7" - "3.5" services: - redis-server install: - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install unittest2; fi - pip install six msgpack-python redis asgiref cffi cryptography asgi_ipc script: - python setup.py develop - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ...
Revert "Replaces debug with phpdbg for faster test coverage report generation."
language: php php: - '7.0' - '7.1' - nightly # Install test coverage package. install: - composer require satooshi/php-coveralls # Install packages and create test coverage log directory. before_script: - composer self-update - composer install --dev --no-interaction - phpenv config-rm xdebug.ini - m...
language: php php: - '7.0' - '7.1' - nightly # Install test coverage package. install: - composer require satooshi/php-coveralls # Install packages and create test coverage log directory. before_script: - composer self-update - composer install --dev --no-interaction - mkdir -p build/logs # Run tests ...
Switch to faster arm64 arch
arch: - arm64 os: linux language: python python: - "3.6" env: - REPO=maur1th/naxos-forum SRC=app/forum - REPO=maur1th/naxos-websocket SRC=app/websocket # SonarQube addons: sonarcloud: organization: default # App services: - docker before_install: - docker pull $REPO # Get cache script: - docker ...
os: linux arch: - arm64-graviton2 language: python python: - "3.6" env: - REPO=maur1th/naxos-forum SRC=app/forum - REPO=maur1th/naxos-websocket SRC=app/websocket # SonarQube addons: sonarcloud: organization: default # App services: - docker before_install: - docker pull $REPO # Get cache script: ...
Fix the coverage to run for all of the savu.
language: python python: - "2.7" # before the install before_install: - sudo apt-get install libblas-dev - sudo apt-get install liblapack-dev - sudo apt-get install gfortran - sudo apt-get install libhdf5-serial-dev - sudo apt-get install libcr-dev mpich2 mpich2-doc # command to install dependencies, e.g. ...
language: python python: - "2.7" # before the install before_install: - sudo apt-get install libblas-dev - sudo apt-get install liblapack-dev - sudo apt-get install gfortran - sudo apt-get install libhdf5-serial-dev - sudo apt-get install libcr-dev mpich2 mpich2-doc # command to install dependencies, e.g. ...
Add dependency caching to speed up Travis build
language: ruby rvm: 2.2.3 bundler_args: --without production before_script: - cp config/database.yml.travis config/database.yml - psql -c 'create database travis_ci_test;' -U postgres script: - bundle exec rake test:$TEST_SUITE - bundle exec rubocop
language: ruby rvm: 2.2.3 cache: bundler bundler_args: --without production before_script: - cp config/database.yml.travis config/database.yml - psql -c 'create database travis_ci_test;' -U postgres script: - bundle exec rake test:$TEST_SUITE - bundle exec rubocop
Support Node v0.12 and up
language: node_js node_js: - "5.1" - "5.0" - "4.1" - "4.0" - "0.12" - "0.11" - "0.10" - "0.8" - "0.6" before_script: - npm install -g gulp script: gulp test
language: node_js node_js: - "5.1" - "5.0" - "4.1" - "4.0" - "0.12" before_script: - npm install -g gulp script: gulp test
Use Xvfb script for Travis-CI
sudo: false language: node_js os: # - osx - linux node_js: - 'lts/*' - '10' - '8' before_install: - if [ $TRAVIS_OS_NAME == "linux" ]; then export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0; sh -e /etc/init.d/xvfb start; sleep 3; fi install: - npm install - npm run vscode:prepub...
sudo: false language: node_js os: # - osx - linux node_js: - 'lts/*' - '10' - '8' before_install: - | if [ $TRAVIS_OS_NAME == "linux" ]; then export DISPLAY=':99.0' /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & fi install: - npm install - npm run vscode:prepublish ...
Use latest Node versions on Travis.
language: node_js node_js: - "0.10" branches: except: - browser - earl sudo: false
language: node_js node_js: - "4" - "6" - "node" sudo: false
Create CI database before running tests
language: ruby rvm: - 2.2.1
language: ruby cache: bundler rvm: - 2.2.1 bundler_args: --binstubs before_script: - psql -c 'create database demo_test;' -U postgres - bin/sequel -m db/migrations postgres://localhost/demo_test
Add Carthage building to Travis
# # .travis.yml # PoseGallery # # Copyright © 2016 Trollwerks Inc. All rights reserved. # # references: # http://www.objc.io/issue-6/travis-ci.html # http://docs.travis-ci.com/user/build-configuration/ # http://docs.travis-ci.com/user/languages/objective-c/ # https://github.com/kattrali/xcpretty-travis-formatter # ht...
# # .travis.yml # PoseGallery # # Copyright © 2016 Trollwerks Inc. All rights reserved. # # references: # http://www.objc.io/issue-6/travis-ci.html # http://docs.travis-ci.com/user/build-configuration/ # http://docs.travis-ci.com/user/languages/objective-c/ # https://github.com/kattrali/xcpretty-travis-formatter # ht...
Use Ruby 2.3.0 for Travis
--- language: ruby rvm: - 2.3 script: - 'rubocop' - 'ruby test/integration/cli_test.rb'
--- language: ruby rvm: - 2.3.0 script: - 'rubocop' - 'ruby test/integration/cli_test.rb'
Fix a typo: lauguage -> language
lauguage: ruby rvm: - 2.2 install: - bundle install - curl -L -o packer.zip https://dl.bintray.com/mitchellh/packer/packer_0.8.6_linux_amd64.zip && unzip -d bin packer.zip script: - PATH=$(pwd)/bin:$PATH bundle exec rake
language: ruby rvm: - 2.2 install: - bundle install - curl -L -o packer.zip https://dl.bintray.com/mitchellh/packer/packer_0.8.6_linux_amd64.zip && unzip -d bin packer.zip script: - PATH=$(pwd)/bin:$PATH bundle exec rake
Use Ruby 2.2.3 on CI for testing with Rails 5
before_install: - gem update bundler language: ruby rvm: - 2.2.0
before_install: - gem update bundler language: ruby rvm: - 2.2.3
Make Travis cache pip files
before_install: - mysql -uroot -Dmysql -e 'UPDATE user SET password=PASSWORD("root") WHERE user="root"; FLUSH PRIVILEGES;' install: - sudo pip install flake8 - sudo ./setup.sh script: - flake8 . - INBOX_ENV=test py.test tests
language: python cache: pip before_install: - mysql -uroot -Dmysql -e 'UPDATE user SET password=PASSWORD("root") WHERE user="root"; FLUSH PRIVILEGES;' install: - sudo pip install flake8 - sudo ./setup.sh script: - flake8 . - INBOX_ENV=test py.test tests
Add explicit go version 1.4.1 to build matrix
sudo: false language: go go: - release - tip env: global: secure: RabyVSnmMellGkWJoW60cVv09St/+plwTDQ7VgxrA59USNSTr30I2abfowW2yK5NfhzsCJGSC7zrEG7k88P5T0f3Mm/EvfNcMUsSXr7LKegugGBoAlY1hpqGbZpr6CFeD6FrMbCmteZ2fn50NH0Tq1ScUaXSazS+fmQ6Pb1oN5s= before_install: - if ! go get code.google.com/p/go.tools/cmd/cover...
sudo: false language: go go: - 1.3.3 - 1.4.1 - tip env: global: secure: RabyVSnmMellGkWJoW60cVv09St/+plwTDQ7VgxrA59USNSTr30I2abfowW2yK5NfhzsCJGSC7zrEG7k88P5T0f3Mm/EvfNcMUsSXr7LKegugGBoAlY1hpqGbZpr6CFeD6FrMbCmteZ2fn50NH0Tq1ScUaXSazS+fmQ6Pb1oN5s= before_install: - if ! go get code.google.com/p/go.tools/...
Enable Flask debug mode via the environment
version: '2' services: backend: build: backend ports: - "5000:5000" volumes: - "./backend:/srv/" environment: - "PYTHONDONTWRITEBYTECODE=1"
version: '2' services: backend: build: backend ports: - "5000:5000" volumes: - "./backend:/srv/" environment: - "PYTHONDONTWRITEBYTECODE=1" - "DEBUG=1"
Revert "Temporarily move the web frontend to prado's database"
networks: private: interface: eth1 address: 192.168.100.31 netmask: 255.255.255.0 gateway: 192.168.100.1 default: interface: eth0 address: 128.93.193.31 netmask: 255.255.255.0 gateway: 128.93.193.254 dar::backup::exclude: - var/lib/rabbitmq swh::deploy::storage::db::host: prado s...
networks: private: interface: eth1 address: 192.168.100.31 netmask: 255.255.255.0 gateway: 192.168.100.1 default: interface: eth0 address: 128.93.193.31 netmask: 255.255.255.0 gateway: 128.93.193.254 dar::backup::exclude: - var/lib/rabbitmq swh::deploy::storage::db::host: somerse...
Update pull request ci config
name: Pull Request Workflow on: pull_request: branches: - modular push: branches: - modular jobs: testing: name: Lint and Test Suite [Unit, Instrumented] runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v2 - name: Set up JDK 1.8 ...
name: Pull Request Workflow on: pull_request: branches: - modular push: branches: - modular jobs: testing: name: Lint and Test Suite [Unit, Instrumented] runs-on: macos-latest steps: - name: Checkout repo uses: actions/checkout@v2 - name: Set up JDK 1.8 ...
Update from Hackage at 2018-07-11T23:52:54Z
homepage: https://github.com/fosskers/pipes-random changelog-type: '' hash: f0a40fd7adc520cbe4637f803f82a6a1f9ab3d3113b240597ba9779ec7e76254 test-bench-deps: {} maintainer: colingw@gmail.com synopsis: Producers for handling randomness. changelog: '' basic-deps: mwc-random: ! '>=0.13 && <0.14' base: ! '>=4.8 && <4.1...
homepage: https://github.com/fosskers/pipes-random changelog-type: '' hash: 490bdae5774d65d95cf4726d9bec72d03c156439f9c3cfed9aa515101d16fc33 test-bench-deps: {} maintainer: colingw@gmail.com synopsis: Producers for handling randomness. changelog: '' basic-deps: mwc-random: ! '>=0.13 && <0.15' base: ! '>=4.8 && <4.1...
Update repo-infra presubmit to use bazel 1.0.0
presubmits: kubernetes/repo-infra: - name: pull-repo-infra-tests always_run: true decorate: true path_alias: k8s.io/repo-infra labels: preset-service-account: "true" preset-bazel-scratch-dir: "true" spec: containers: - image: launcher.gcr.io/google/bazel:0.29.1 co...
presubmits: kubernetes/repo-infra: - name: pull-repo-infra-tests always_run: true decorate: true path_alias: k8s.io/repo-infra labels: preset-service-account: "true" preset-bazel-scratch-dir: "true" spec: containers: - image: launcher.gcr.io/google/bazel:1.0.0 com...
Update url and baseurl in config
# Site Settings title: Lagrange tagline: a minimalist Jekyll theme description: baseurl: #"/Lagrange" url: #"https://lenpaul.github.io" github: url: "https://lenpaul.github.io/Lagrange" author: name: "Paul Le" email: "l.ngu...
# Site Settings title: Lagrange tagline: a minimalist Jekyll theme description: baseurl: "/Lagrange" url: "https://lenpaul.github.io" github: url: "https://lenpaul.github.io/Lagrange" author: name: "Paul Le" email: "l.nguye...
Update from Hackage at 2021-03-16T17:17:39Z
homepage: https://oss.xkcd.com changelog-type: markdown hash: 3a7ac8422c9af9b3f6d1b062902ba4b8259d0df702e543e7545229808bc8a7d8 test-bench-deps: bytestring: ^>=0.10 base: ! '>=4.12 && <4.14' text: ^>=1.2 tasty-hunit: -any attoparsec: ^>=0.13 tasty: -any machines-attoparsec: -any machines: ! '>=0.6 && <0....
homepage: https://oss.xkcd.com changelog-type: markdown hash: 2175f72f236eb58c807f8d01ca4d4d603080378a26c6939605ff4b9b9a05eb99 test-bench-deps: bytestring: '>=0.10 && <0.12' base: '>=4.12 && <4.16' text: ^>=1.2 tasty-hunit: -any attoparsec: ^>=0.13 tasty: -any machines-attoparsec: -any machines: '>=0.6 ...
Fix milestone handling by Mergable
version: 2 mergeable: - when: pull_request.* , pull_request_review.* validate: - do: title must_exclude: regex: WIP - do: label must_exclude: regex: 'wip' - do: milestone must_include: regex: '[0-9][0-9].[0-9]+' - do: approvals ...
version: 2 mergeable: - when: pull_request.* , pull_request_review.* validate: - do: title must_exclude: regex: WIP - do: label must_exclude: regex: 'wip' - do: milestone no_empty: enabled: true must_include: regex: '[0-9][0...
Fix repo name where image is pushed
version: "2017-09-20" pipeline: - id: test overlay: ci/java type: script commands: - desc: Checkstyle cmd: | ./gradlew checkstyle --stacktrace - desc: Test cmd: | ./gradlew testWithReport --stacktrace - id: acceptance-test-deploy overlay: ci/java type: script commands: - desc: Inst...
version: "2017-09-20" pipeline: - id: test overlay: ci/java type: script commands: - desc: Checkstyle cmd: | ./gradlew checkstyle --stacktrace - desc: Test cmd: | ./gradlew testWithReport --stacktrace - id: acceptance-test-deploy overlay: ci/java type: script commands: - desc: Inst...
Update from Hackage at 2017-07-10T00:15:20Z
homepage: https://github.com/erikd/system-linux-proc changelog-type: markdown hash: a5d2e85d53d702c0b0a64c1a09a787b397ac729ee88ee65999954886fc5ff4cb test-bench-deps: base: ! '>=4.8 && <5.0' hedgehog: -any maintainer: erikd@mega-nerd.com synopsis: A library for accessing the /proc filesystem in Linux changelog: ! '#...
homepage: https://github.com/erikd/system-linux-proc changelog-type: markdown hash: 96db390f7035a3527bc8596a2ebc50894199640c61dd1a667501c2436aa576f2 test-bench-deps: base: ! '>=4.8 && <5.0' hedgehog: -any maintainer: erikd@mega-nerd.com synopsis: A library for accessing the /proc filesystem in Linux changelog: ! '#...
Update circleci/python:3.9.0 Docker digest to d3b98ca
# 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.0@sha256:c9d1e22bde6d69aca452c1a5bec9c22684b8814ea69824d1672bf83ef7f9dfe9 working_directory: ~/repo steps: - checko...
# 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.0@sha256:d3b98ca680b40e72ac7ffede2caefa9c98e5b3f925894ff2939b775f0d26abc1 working_directory: ~/repo steps: - checko...
Purge local copies more frequently on regional db node
--- # Openstack databases profile::openstack::database::sql::glance_enabled: true profile::openstack::database::sql::nova_enabled: true profile::openstack::database::sql::neutron_enabled: true profile::openstack::database::sql::cinder_enabled: true profile::openstack::database::sql::gnocchi_enabled: true pro...
--- # Openstack databases profile::openstack::database::sql::glance_enabled: true profile::openstack::database::sql::nova_enabled: true profile::openstack::database::sql::neutron_enabled: true profile::openstack::database::sql::cinder_enabled: true profile::openstack::database::sql::gnocchi_enabled: true pro...
Update The Verne Xmas slots 2019
--- name: The Verne nomis_id: VEI address: |- Verne Common Road Portland Dorset postcode: DT5 1EQ email_address: socialvisits.theverne@hmps.gsi.gov.uk phone_no: 01305 825014 - Monday to Friday, 2:00pm to 4:00pm. Closed weekends and public holidays. enabled: true private: false lead_days: 4 closed: false recurring...
--- name: The Verne nomis_id: VEI address: |- Verne Common Road Portland Dorset postcode: DT5 1EQ email_address: socialvisits.theverne@hmps.gsi.gov.uk phone_no: 01305 825014 - Monday to Friday, 2:00pm to 4:00pm. Closed weekends and public holidays. enabled: true private: false lead_days: 4 closed: false recurring...
Update CI to test node 16, drop 10
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-v...
name: Node CI on: [push] jobs: build: runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x, 16.x] steps: - uses: actions/checkout@v1 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-v...
Add exclude file to parsing
--- detectors: BooleanParameter: enabled: false DataClump: max_copies: 4 DuplicateMethodCall: allow_calls: - 'Tools::Log.instance' TooManyStatements: enabled: true max_statements: 8 UtilityFunction: public_methods_only: true
--- detectors: BooleanParameter: enabled: false DataClump: max_copies: 4 DuplicateMethodCall: allow_calls: - 'Tools::Log.instance' TooManyStatements: enabled: true max_statements: 8 UtilityFunction: public_methods_only: true exclude_paths: - lib/rrj/errors/janus/responses...
Fix permissions of acts-related files
--- - apt_key: url=https://packagecloud.io/gpg.key state=present - apt_repository: repo="deb https://packagecloud.io/sr/packages/ubuntu/ wily main" state=present - apt: name=acts={{acts_version}} state=present update_cache=yes cache_valid_time=3600 - template: dest=/etc/acts.conf src=acts.conf.j2 owner=root...
--- - apt_key: url=https://packagecloud.io/gpg.key state=present - apt_repository: repo="deb https://packagecloud.io/sr/packages/ubuntu/ wily main" state=present - apt: name=acts={{acts_version}} state=present update_cache=yes cache_valid_time=3600 - template: dest=/etc/acts.conf src=acts.conf.j2 owner=root...
Switch to 2023.1 Python3 unit tests and generic template name
- project: templates: - check-requirements - horizon-non-primary-django-jobs - horizon-nodejs-jobs - openstack-python3-zed-jobs-horizon - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - horizon-non-primary-django-jobs - horizon-nodejs-jobs - openstack-python3-jobs-horizon - publish-openstack-docs-pti - release-notes-jobs-python3
Update from Hackage at 2018-11-19T12:42:31Z
homepage: http://github.com/lyokha/vim-publish-helper changelog-type: '' hash: 4fac2efb2af5e92f1ede80adefc7e04faa992b6cd3f4204f2f1515e0ccafdb7e test-bench-deps: {} maintainer: Alexey Radkov <alexey.radkov@gmail.com> synopsis: Pandoc filter for native Vim code highlighting changelog: '' basic-deps: base: ! '>=4.7 && <...
homepage: http://github.com/lyokha/vim-publish-helper changelog-type: markdown hash: b9ce9dfe072b563756beb9f39cb74af7c7b0cf6524cf762440ee99fd9d1ea337 test-bench-deps: {} maintainer: Alexey Radkov <alexey.radkov@gmail.com> synopsis: Pandoc filter for native Vim code highlighting changelog: ! "### 0.1.2.0\n\n- Better tre...
Update from Hackage at 2020-07-18T09:01:37Z
homepage: http://gloss.ouroborus.net changelog-type: '' hash: 8529bb5ff781b02df65ffe27b3891d897a34ad19311b262b4ad682bcc6ac1f90 test-bench-deps: {} maintainer: benl@ouroborus.net synopsis: Data structures and algorithms for working with 2D graphics. changelog: '' basic-deps: gloss: ==1.13.* base: ! '>=4.8 && <4.13' ...
homepage: http://gloss.ouroborus.net changelog-type: '' hash: 13848f1d06ab8907627544ad089ebd887e076a141a51f9fb9e03c4223d301f07 test-bench-deps: {} maintainer: benl@ouroborus.net synopsis: Data structures and algorithms for working with 2D graphics. changelog: '' basic-deps: gloss: ==1.13.* base: '>=4.8 && <5' con...
Disable fact gathering for the local machine
--- - name: Setup Polka hosts: localhost connection: local tasks: - name: Test shell: "echo 'Test Task'"
--- - name: Setup Polka hosts: localhost connection: local gather_facts: false tasks: - name: Test shell: "echo 'Test Task'"
Update VPN Hotspot to 2.11.7 (260)
Categories: - Internet License: Apache-2.0 AuthorName: nekohasekai AuthorEmail: sekai@neko.services SourceCode: https://github.com/nekohasekai/VPNHotspot IssueTracker: https://github.com/nekohasekai/VPNHotspot/issues Donate: https://mygod.be/donate/ AutoName: VPN Hotspot RepoType: git Repo: https://github.com/nekoh...
Categories: - Internet License: Apache-2.0 AuthorName: nekohasekai AuthorEmail: sekai@neko.services SourceCode: https://github.com/nekohasekai/VPNHotspot IssueTracker: https://github.com/nekohasekai/VPNHotspot/issues Donate: https://mygod.be/donate/ AutoName: VPN Hotspot RepoType: git Repo: https://github.com/nekoh...
Update from Forestry.io - Updated Forestry configuration
--- upload_path: "/uploads/:year:/:month:/:day:" frontmatter_file_url_template: "/uploads/:year:/:month:/:day:" body_file_url_template: "/uploads/:year:/:month:/:day:" new_page_extension: md auto_deploy: false admin_path: webhook_url: collections:
--- upload_path: "/uploads/:year:/:month:/:day:" frontmatter_file_url_template: "/uploads/:year:/:month:/:day:" body_file_url_template: "/uploads/:year:/:month:/:day:" new_page_extension: md auto_deploy: true admin_path: webhook_url: collections:
Update from Hackage at 2020-02-13T05:18:15Z
homepage: https://github.com/agrafix/format-numbers#readme changelog-type: '' hash: dbf701598c9e33c0849072bb37cc3630c56caba65b6afc86c664e4611391151c test-bench-deps: base: ! '>=4.7 && <5' hspec: -any text: -any maintainer: mail@athiemann.net synopsis: Various number formatting functions changelog: '' basic-deps: ...
homepage: https://github.com/agrafix/format-numbers#readme changelog-type: '' hash: 4f162c1ecf959d30e9ce58721319a6b6656b71fe7c3c0410ea0952196e5b2dea test-bench-deps: base: ! '>=4.7 && <5' hspec: -any text: -any maintainer: mail@athiemann.net synopsis: Various number formatting functions changelog: '' basic-deps: ...
Make sure the source file gets extracted
{% set name = "tklib" %} {% set version = "0.7" %} {% set sha256 = "b28d0e92bf56d0c2b106b7a2b9ad1f82f59db3864e25e5a3541b52d9c3f56a97" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://core.tcl-lang.org/tklib/tarball/{{ name }}-{{ version }}.tar.gz?uuid={{ name }}-{{ version }} sha...
{% set name = "tklib" %} {% set version = "0.7" %} {% set sha256 = "b28d0e92bf56d0c2b106b7a2b9ad1f82f59db3864e25e5a3541b52d9c3f56a97" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://core.tcl-lang.org/tklib/tarball/{{ name }}-{{ version }}.tar.gz?uuid={{ name }}-{{ version }} sha...
Update security check to be smarter
- name: Apply bash security update apt: name=bash state=latest update_cache=true - name: Check and fail if we are still vulnerable shell: executable=bash env x='() { :;}; echo vulnerable' bash -c "echo this is a test" register: test_vuln failed_when: "'vulnerable' in test_vuln.stdout"
- name: Check if we are vulnerable shell: executable=bash env x='() { :;}; echo vulnerable' bash -c "echo this is a test" register: test_vuln - name: Apply bash security update if we are vulnerable apt: name=bash state=latest update_cache=true when: "'vulnerable' in test_vuln.stdout" - name: Check again and...
Add @equivalentideas SSH key so he can provision & deploy production
--- dependencies: - role: deploy-user github_users: ['mlandauer', 'henare']
--- dependencies: - role: deploy-user github_users: ['mlandauer', 'henare', 'equivalentideas']
Add fedora to supported platforms
galaxy_info: author: Andrea Tosatto description: Install and configure the Minio S3 compatible object storage server on RHEL/CentOS and Debian/Ubuntu min_ansible_version: 2.1 license: MIT issue_tracker_url: https://github.com/atosatto/ansible-minio/issues platforms: - name: EL versions: -...
galaxy_info: author: Andrea Tosatto description: Install and configure the Minio S3 compatible object storage server on RHEL/CentOS and Debian/Ubuntu min_ansible_version: 2.1 license: MIT issue_tracker_url: https://github.com/atosatto/ansible-minio/issues platforms: - name: EL versions: -...
Update GIF Live Wallpaper to 1.4.1 (31)
Categories: - Theming License: Apache-2.0 AuthorName: Benoit Vermont SourceCode: https://github.com/redwarp/gif-wallpaper IssueTracker: https://github.com/redwarp/gif-wallpaper/issues AutoName: GIF Live Wallpaper RepoType: git Repo: https://github.com/redwarp/gif-wallpaper Builds: - versionName: 1.3.3 versio...
Categories: - Theming License: Apache-2.0 AuthorName: Benoit Vermont SourceCode: https://github.com/redwarp/gif-wallpaper IssueTracker: https://github.com/redwarp/gif-wallpaper/issues AutoName: GIF Live Wallpaper RepoType: git Repo: https://github.com/redwarp/gif-wallpaper Builds: - versionName: 1.3.3 versio...
Address image deprecation from 2020
# Generic config to build a gem version: 2.1 # Checkout with a fetch and pull checkout_repo: &checkout run: name: Checkout command: 'git config user.name "circleci" && git config user.email "richard.parratt@sharesight.co.nz" && git fetch && git checkout master && git pull && git merge --no-edit $CIRCLE_BRANC...
# Generic config to build a gem version: 2.1 # Checkout with a fetch and pull checkout_repo: &checkout run: name: Checkout command: 'git config user.name "circleci" && git config user.email "richard.parratt@sharesight.co.nz" && git fetch && git checkout master && git pull && git merge --no-edit $CIRCLE_BRANC...
Add more features to example specs
--- languages: - __sugilite__ - android - c - c++ - clojure - cplusplus - cpp - crystal - csharp - d - dart - default - elixir - erlang - go - groovy - haskell - haxe - java - julia - legacy - mega - node_js - perl - perl6 - php - pure_java - python - r - ruby - rust - scala - universe features: - basic - chromium - fi...
--- languages: - __sugilite__ - android - c - c++ - clojure - cplusplus - cpp - crystal - csharp - d - dart - default - elixir - erlang - go - groovy - haskell - haxe - java - julia - legacy - mega - node_js - perl - perl6 - php - pure_java - python - r - ruby - rust - scala - universe features: - basic - bazaar - chro...
Update ubuntu version in all GHA workflows
name: Cirq Compatibility on: schedule: - cron: "0 0 * * *" jobs: consistency: name: Nightly Compatibility runs-on: ubuntu-16.04 steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v1 with: python-version: '3.7' architecture: 'x64' - name: I...
name: Cirq Compatibility on: schedule: - cron: "0 0 * * *" jobs: consistency: name: Nightly Compatibility runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v1 with: python-version: '3.7' architecture: 'x64' - name: I...
Update homepage for redirected site
--- site: beis_energyadvice whitehall_slug: department-for-business-energy-and-industrial-strategy homepage: https://www.gov.uk/government/organisations/department-for-business-energy-and-industrial-strategy tna_timestamp: 20220610155057 host: www.simpleenergyadvice.org.uk aliases: - simpleenergyadvice.org.uk
--- site: beis_energyadvice whitehall_slug: department-for-business-energy-and-industrial-strategy homepage: https://www.gov.uk/improve-energy-efficiency tna_timestamp: 20220610155057 host: www.simpleenergyadvice.org.uk aliases: - simpleenergyadvice.org.uk
Update from Hackage at 2017-06-08T09:15:52Z
homepage: https://github.com/MailOnline/located-monad-logger#readme changelog-type: '' hash: e0c022b917aded7228330d436e814e11ef44fef6fc3c6e72838f2411e35a5ecf test-bench-deps: {} maintainer: pkogan@gmail.com synopsis: Location-aware logging without Template Haskell changelog: '' basic-deps: base: ! '>=4.8.1 && <4.9' ...
homepage: https://github.com/MailOnline/located-monad-logger#readme changelog-type: '' hash: 9bdb1b5f7349cce7d59247b73838ae5c5b1d45a2c62d25bf8b8506c971537b17 test-bench-deps: {} maintainer: pkogan@gmail.com synopsis: Location-aware logging without Template Haskell changelog: '' basic-deps: base: ! '>=4.8.1 && <4.10' ...
Add some data to nginx hiera data
--- message: "This node is using common data" classes: - profile::nginx - sqlite profile::nginx::vhosts: - 'fqdn': 'ip-172-31-24-230.us-west-2.compute.internal' 'port': 80 'server_aliases': ''
--- message: "This node is using common data" classes: - profile::nginx - sqlite profile::nginx::vhosts: - 'fqdn': 'ip-172-31-24-230.us-west-2.compute.internal' 'port': 80 'server_aliases': '' 'www_root': '/var/www/ip-172-31-24-230.us-west-2.compute.internal'
Include Node.js 16 in the CI workflow
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] workflow_dispatch: jobs: test: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} use...
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] workflow_dispatch: jobs: test: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x, 12.x, 14.x, 16.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} ...
Update from Hackage at 2021-04-04T08:33:23Z
homepage: http://github.com/aloiscochard/machines-process changelog-type: '' hash: c8235609985e9e616a41bdaeb9b3d3ad15130de355336e7c8f500e6a749a5926 test-bench-deps: {} maintainer: alois.cochard@gmail.com synopsis: Process (system) utilities for the machines library changelog: '' basic-deps: base: '>=4.6 && <5' proc...
homepage: http://github.com/aloiscochard/machines-process changelog-type: '' hash: 23960b1352d73b9838a662c1d223763f4a5e204933d676bb0822a488d756fd99 test-bench-deps: {} maintainer: alois.cochard@gmail.com synopsis: Process (system) utilities for the machines library changelog: '' basic-deps: base: '>=4.6 && <5' proc...
Add dev01 controller nodes as reflector clients
--- calico::debug: false # Reflector settings calico::reflector::client_defaults: peer_as: 65535 local_as: 65535 # Reflector clients (must be set per location) calico::reflector::clients: l1: peer_ipv4: '172.31.34.1' c1: peer_ipv4: '172.31.34.100' c2: peer_ipv4: '172.31.34.101' c3: peer_ip...
--- calico::debug: false # Reflector settings calico::reflector::client_defaults: peer_as: 65535 local_as: 65535 # Reflector clients (must be set per location) calico::reflector::clients: l1: peer_ipv4: '172.31.34.1' c1: peer_ipv4: '172.31.34.100' c2: peer_ipv4: '172.31.34.101' c3: peer_ip...
Update from Hackage at 2018-07-19T13:50:33Z
homepage: http://www.haskus.org/system changelog-type: '' hash: ff2567e6b5382df4727cee71d03a269b92d796349402605329cf3248f45d1ae0 test-bench-deps: bytestring: -any base: -any haskus-binary: -any criterion: -any tasty-quickcheck: ! '>=0.8' haskus-utils: -any tasty: ! '>=0.11' QuickCheck: ! '>=2.8' maintai...
homepage: http://www.haskus.org/system changelog-type: '' hash: 4b4047163f25242be98d6e6a498f2de6ce1ea0d4e3dce46a70f1bab6ed6df944 test-bench-deps: bytestring: ! '>=0.10.8.2 && <0.11' base: ! '>=4.11.1.0 && <4.12' haskus-binary: -any criterion: ! '>=1.4.1.0 && <1.5' tasty-quickcheck: ! '>=0.8 && <0.11' haskus...
Allow auto merge for rubocop-xxx
# c.f. https://dependabot.com/docs/config-file/ version: 1 update_configs: - package_manager: "ruby:bundler" directory: "/" update_schedule: "daily" default_assignees: - sue445 allowed_updates: - match: # Disable. Only top-level dependencies (and security patches for subdepe...
# c.f. https://dependabot.com/docs/config-file/ version: 1 update_configs: - package_manager: "ruby:bundler" directory: "/" update_schedule: "daily" default_assignees: - sue445 allowed_updates: - match: # Disable. Only top-level dependencies (and security patches for subdepe...
Add environment variables for MySQL support
app: image: mycompany/myapp:latest db: image: mysql hostname: db expose: - "3306" environment: MYSQL_ROOT_PASSWORD: password MYSQL_DATABASE: app_db MYSQL_USER: dbuser MYSQL_PASSWORD: password agent: image: mycompany/myapp-agent:latest volumes: - ../ansible/agent:/ansible comma...
app: image: mycompany/myapp-release:latest extra_hosts: bob: 8.8.8.8 environment: DJANGO_SETTINGS_MODULE: mysite.settings.base MYSQL_ROOT_PASSWORD: pass1234 MYSQL_DATABASE: sampledjangoapp MYSQL_USER: sampledjangoapp MYSQL_PASSWORD: pass1234 MYSQL_HOST: db db: image: mysql hostna...
Add task: set pulp1 as default server.
--- - name: Disable sshd strict modes lineinfile: backrefs: yes dest: /etc/ssh/sshd_config regexp: "^#StrictModes yes" line: "StrictModes no" notify: restart sshd - name: Install Pulp dnf repository get_url: url: https://repos.fedorapeople.org/repos/pulp/pulp/fedora-pulp.repo ...
--- - name: Disable sshd strict modes lineinfile: backrefs: yes dest: /etc/ssh/sshd_config regexp: "^#StrictModes yes" line: "StrictModes no" notify: restart sshd - name: Install Pulp dnf repository get_url: url: https://repos.fedorapeople.org/repos/pulp/pulp/fedora-pulp.repo ...
Add coffeelint validation to Wercker CI config
box: node:0.10 services: - mongo:2.6 - redis:2.8 build: steps: - npm-install - npm-test - script: name: echo nodejs information code: | echo "node version $(node -v) running" echo "npm version $(npm -v) runnin...
box: node:0.10 services: - mongo:2.6 - redis:2.8 build: steps: - npm-install - script name: coffeehint code: npm run hint - npm-test - script: name: echo nodejs information code: | echo "...
Enable code coverage for Scrutinizer
filter: excluded_paths: ["tests/*"] checks: php: code_rating: true remove_php_closing_tag: true remove_extra_empty_lines: true remove_trailing_whitespace: true fix_linefeed: true fix_line_ending: true fix_doc_comments: true fix_php_opening_tag: true fix_identation_4spaces: true ...
filter: excluded_paths: ["tests/*"] build: tests: override: - command: bin/phpunit --coverage-clover=coverage-clover coverage: file: coverage-clover format: clover checks: php: code_rating: true remove_php_closing_tag: true remove_extra_empty_lines: true rem...
Add debian package build test, too
--- .build: &build services: - postgres:9.6 variables: POSTGRES_DB: sreview POSTGRES_USER: sreview POSTGRES_PASSWORD: "" SREVIEW_TESTDB: sreview;host=postgres;user=sreview image: $CI_JOB_NAME script: - apt-get update; apt-get -y --no-install-recommends install inkscape ffmpeg bs1770gain - ...
--- stages: - test - deb .build: &build stage: test services: - postgres:9.6 variables: POSTGRES_DB: sreview POSTGRES_USER: sreview POSTGRES_PASSWORD: "" SREVIEW_TESTDB: sreview;host=postgres;user=sreview image: $CI_JOB_NAME script: - apt-get update; apt-get -y --no-install-recommends ins...
Remove job from the wrong config file
--- govuk_jenkins::config::executors: '8' govuk_jenkins::job_builder::jobs: - govuk_jenkins::jobs::deploy_licensify - govuk_jenkins::jobs::deploy_puppet - govuk_jenkins::jobs::deploy_terraform_govuk_aws - govuk_jenkins::jobs::launch_vms - govuk_jenkins::jobs::mirror_repos - govuk_jenkins::jobs::network_con...
--- govuk_jenkins::config::executors: '8' govuk_jenkins::job_builder::jobs: - govuk_jenkins::jobs::deploy_licensify - govuk_jenkins::jobs::deploy_puppet - govuk_jenkins::jobs::deploy_terraform_govuk_aws - govuk_jenkins::jobs::launch_vms - govuk_jenkins::jobs::network_config_deploy - govuk_jenkins::jobs::pa...
Bump ridedott/merge-me-action from 2.9.58 to 2.9.60
# See https://github.com/ridedott/merge-me-action/ # This workflow automates merges from patches sent by Dependabot, and # only by dependabot, once the other CI workflows pass name: Auto-merge Dependabot PRs on: workflow_run: types: - completed workflows: - "Continuous Integration" jobs: merge...
# See https://github.com/ridedott/merge-me-action/ # This workflow automates merges from patches sent by Dependabot, and # only by dependabot, once the other CI workflows pass name: Auto-merge Dependabot PRs on: workflow_run: types: - completed workflows: - "Continuous Integration" jobs: merge...
Improve readability of CircleCI deployment step
deployment: vps: branch: master commands: - ssh root@vps274040.ovh.net ui_head=origin/$CIRCLE_BRANCH
deployment: vps: branch: master commands: # CircleCI has been provided a private key that triggers a shell script # It refreshes Mes-Aides-UI repository and re-deploys the services - ssh root@vps274040.ovh.net
Add system site packages to virtual env.
dependencies: override: - pip install -q numpy - pip install scipy - pip install -r requirements.txt - pip install -Iv https://wiki.fysik.dtu.dk/ase-files/python-ase-3.6.0.2515.tar.gz - python setup.py install test: override: - mv pymatgen pmg - nosetests: environment: ...
dependencies: override: - pip install -q numpy - pip install scipy - pip install -r requirements.txt - pip install -Iv https://wiki.fysik.dtu.dk/ase-files/python-ase-3.6.0.2515.tar.gz - python setup.py install - virtualenv --system-site-packages venv test: override: - mv pymatgen pmg ...
Revert "Attempts to fix the build timeout on Circle."
machine: services: - docker general: branches: ignore: - gh-pages dependencies: override: - cd build && docker build -t rocker/popgen - < Dockerfile checkout: post: - git config user.name "Hilmar Lapp" - git config user.email "hlapp@drycafe.net" te...
machine: services: - docker general: branches: ignore: - gh-pages dependencies: override: - cd build && docker build -t rocker/popgen - < Dockerfile checkout: post: - git config user.name "Hilmar Lapp" - git config user.email "hlapp@drycafe.net" te...
Update ArchWiki Viewer to 1.0.14 (15)
Categories: - Reading - Internet License: Apache-2.0 AuthorName: kevinhinterlong AuthorEmail: kevinhinterlong+archwiki@gmail.com SourceCode: https://github.com/kevinhinterlong/archwiki-viewer IssueTracker: https://github.com/kevinhinterlong/archwiki-viewer/issues Changelog: https://github.com/kevinhinterlong/archwi...
Categories: - Reading - Internet License: Apache-2.0 AuthorName: kevinhinterlong AuthorEmail: kevinhinterlong+archwiki@gmail.com SourceCode: https://github.com/kevinhinterlong/archwiki-viewer IssueTracker: https://github.com/kevinhinterlong/archwiki-viewer/issues Changelog: https://github.com/kevinhinterlong/archwi...
Add review flow to test Tenet
tenets: - name: append-test flows: codelingo/docs: title: Append Test body: "change test names" codelingo/rewrite: query: | import codelingo/ast/go @rewrite -pl "// Test is some kind of test" go.func_decl(depth = any): @rewrite "Test{{name}}" go.id...
tenets: - name: append-test flows: codelingo/docs: title: Append Test body: "change test names" codelingo/rewrite: codelingo/review: comment: "test comment" query: | import codelingo/ast/go @rewrite -pl "// Test is some kind of test" go.func_decl(dep...
Update from Forestry.io - Updated Forestry configuration
--- label: projects hide_body: false fields: - name: categories label: Categories type: tag_list hidden: false default: [] - name: image type: file config: maxSize: 250 label: Image pages: - _projects/Bluesquare brand identity.md - _projects/Hesabu.md - _projects/Stratégie - Plainte - Traitements appl...
--- label: projects hide_body: false fields: - name: categories label: Categories type: tag_list hidden: false default: [] - name: image type: file config: maxSize: 250 label: Image - name: date type: datetime label: Date description: '' config: required: false date_format: time_f...
Switch to our docker image. Official golang image doesn't have ginkgo
--- platform: linux image_resource: type: docker-image source: repository: golang inputs: - name: rabbitmq-upgrade-preparation run: path: rabbitmq-upgrade-preparation/scripts/ci
--- platform: linux image_resource: type: docker-image source: repository: cflondonservices/london-services-ci-rabbitmq inputs: - name: rabbitmq-upgrade-preparation run: path: rabbitmq-upgrade-preparation/scripts/ci
Add scenario tests to gate and check pipeline
- project: templates: - check-requirements - openstack-lower-constraints-jobs - openstack-python-jobs - openstack-python35-jobs - openstack-python36-jobs - openstackclient-plugin-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: ...
- project: templates: - check-requirements - openstack-lower-constraints-jobs - openstack-python-jobs - openstack-python35-jobs - openstack-python36-jobs - openstackclient-plugin-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 check: jobs: ...
Scale Diego cells in London to 48
--- cell_instances: 45 router_instances: 6 api_instances: 12 doppler_instances: 33 log_api_instances: 6 adapter_instances: 4 # Scaled to a multiple of 2 to balance out the AZs cc_hourly_rate_limit: 20000 paas_region_name: london
--- cell_instances: 48 router_instances: 6 api_instances: 12 doppler_instances: 33 log_api_instances: 6 adapter_instances: 4 # Scaled to a multiple of 2 to balance out the AZs cc_hourly_rate_limit: 20000 paas_region_name: london
Update from Hackage at 2016-12-24T18:14:25Z
homepage: https://github.com/swift-nav/preamble changelog-type: '' hash: 3ecb9ae9361e54b2a4d08458318c9d41d52587cc7aa530c1195a3352017e8101 test-bench-deps: {} maintainer: Mark Fine <dev@swiftnav.com> synopsis: Yet another prelude. changelog: '' basic-deps: exceptions: -any base: ==4.8.* time: -any shakers: -any ...
homepage: https://github.com/swift-nav/preamble changelog-type: '' hash: 97dd8209b50601817d1b3c58f55d6bbc75ce9c01a61554546a2d304f3dfec840 test-bench-deps: {} maintainer: Mark Fine <dev@swiftnav.com> synopsis: Yet another prelude. changelog: '' basic-deps: exceptions: -any base: ==4.8.* time: -any shakers: -any ...
Use json_manifest file in production environment.
imports: - { resource: config.yml } monolog: handlers: main: type: fingers_crossed action_level: error handler: nested nested: type: stream path: '%kernel.logs_dir%/%kernel.environment%.log' level: debug console: ...
imports: - { resource: config.yml } framework: assets: json_manifest_path: "%kernel.project_dir%/public/rev-manifest.json" monolog: handlers: main: type: fingers_crossed action_level: error handler: nested nested: type: stream ...
Update to pastors' office name
name: Pastor's Office category: Offices schedule: - title: Hours hours: - {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '5:00pm'} breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: - title: Hours hours: - {days: [Mo, Tu, We, Th]...
name: Pastors' Office category: Offices schedule: - title: Hours hours: - {days: [Mo, Tu, We, Th, Fr], from: '8:00am', to: '5:00pm'} breakSchedule: fall: [] thanksgiving: [] winter: [] interim: [] spring: [] easter: [] summer: - title: Hours hours: - {days: [Mo, Tu, We, Th]...
Add Python3 xena unit tests
- project: templates: - check-requirements # - openstack-lower-constraints-jobs - openstack-python3-wallaby-jobs - openstackclient-plugin-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 # check: # jobs: # - python-troveclient-tempest-neutron-src # ...
- project: templates: - check-requirements # - openstack-lower-constraints-jobs - openstack-python3-xena-jobs - openstackclient-plugin-jobs - publish-openstack-docs-pti - release-notes-jobs-python3 # check: # jobs: # - python-troveclient-tempest-neutron-src # ...
Update 1.15 and below wand crafting help text
spells: mine: mine|3: upgrade_description: "Mines more blocks"
spells: mine: mine|3: upgrade_description: "Mines more blocks" help: examples: survival: wand_crafting: |- `<title text="Wand Crafting">` &6Wands &fcan be crafted using a &a`<command command="mgive nether_star" text="Emerald">`&f, a &e`<command command="mgive blaze_rod" text="bl...
Switch to newer Travis JRuby
language: ruby rvm: #- 1.8.7 # no, since it doesn't get fun(a, *b, c) - 1.9.3 - 2.1.1 - 2.2.2 - 2.4.2 - 2.5.1 #- jruby-18mode - jruby-19mode - jruby-20mode #- jruby-9.1.13.0 #matrix: # include: # - rvm: jruby-9.1.13.0 # #- env: JRUBY_OPTS="--profile.api" #before_install: gem install bundl...
language: ruby rvm: #- 1.8.7 # no, since it doesn't get fun(a, *b, c) #- 1.9.3 #- 2.1.1 - 2.2.2 - 2.4.2 - 2.5.1 #- jruby-18mode #- jruby-19mode #- jruby-20mode #- jruby-9.1.13.0 - jruby-9.2.5.0 #matrix: # include: # - rvm: jruby-9.1.13.0 # #- env: JRUBY_OPTS="--profile.api" #before_inst...
Fix Remix hosted zone comment
AWSTemplateFormatVersion: "2010-09-09" Description: > Hosted zone and record sets for prx.mx Parameters: Domain: Default: prx.mx. Description: The domain name and hosted zone Type: String Resources: HostedZone: Type: "AWS::Route53::HostedZone" Properties: HostedZoneConfig: Commen...
AWSTemplateFormatVersion: "2010-09-09" Description: > Hosted zone and record sets for prx.mx Parameters: Domain: Default: prx.mx. Description: The domain name and hosted zone Type: String Resources: HostedZone: Type: "AWS::Route53::HostedZone" Properties: HostedZoneConfig: Commen...
Use quit option to update/install python-apt.
--- # tasks file for python-requirements - name: Install requirement for Ansible apt module # Playbook using this role should remove cache like: # rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/cache/apt/archives/* # # The tasks of this role may be failed if Python executable isn't on # /usr/bin/python. (...
--- # tasks file for python-requirements - name: Install requirement for Ansible apt module # Playbook using this role should remove cache like: # rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /var/cache/apt/archives/* # # The tasks of this role may be failed if Python executable isn't on # /usr/bin/python. (...
Revert "extra-dep: false now needed for yesod-bin"
flags: Snowdrift: dev: true resolver: lts-6.17 packages: - website - crowdmatch - run-persist - location: git: https://git.snowdrift.coop/sd/yesod.git commit: 884c2ef15b005587829f157fb576fbfe747b98b1 subdirs: - yesod-bin extra-dep: false - location: git: https://git.snowd...
flags: Snowdrift: dev: true resolver: lts-6.17 packages: - website - crowdmatch - run-persist - location: git: https://git.snowdrift.coop/sd/yesod.git commit: 884c2ef15b005587829f157fb576fbfe747b98b1 subdirs: - yesod-bin extra-dep: true - location: git: https://git.snowdr...
Remove --force flag from coveralls
dependencies: cache_directories: - node_modules test: override: - npm test - ./node_modules/.bin/grunt shell:coveralls --force
dependencies: cache_directories: - node_modules test: override: - npm test - ./node_modules/.bin/grunt shell:coveralls
Set node version to 6.10
machine: node: version: 0.11.8 dependencies: override: - yarn install test: override: - npm run test post: - npm run build
machine: node: version: 6.10.0 dependencies: override: - yarn install test: override: - npm run test post: - npm run build
Use Go 1.7.1 on CircleCI
test: override: - bash gofmt.sh - go tool vet . - case $CIRCLE_NODE_INDEX in 0) go test -timeout 60s -v ./... ;; 1) GORACE="halt_on_error=1" go test -race -timeout 120s -v ./...;; esac: parallel: true
machine: environment: GODIST: "go1.7.1.linux-amd64.tar.gz" test: override: - go --version - bash gofmt.sh - go tool vet . - case $CIRCLE_NODE_INDEX in 0) go test -timeout 60s -v ./... ;; 1) GORACE="halt_on_error=1" go test -race -timeout 120s -v ./...;; esac: p...
Use Node 6.9.4 in CircleCI
# See https://circleci.com/docs/yarn/ for the source of yarn setup machine: environment: PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" dependencies: override: - yarn cache_directories: - ~/.cache/yarn test: override: - yarn test - yarn run lint
# See https://circleci.com/docs/yarn/ for the source of yarn setup machine: environment: PATH: "${PATH}:${HOME}/${CIRCLE_PROJECT_REPONAME}/node_modules/.bin" node: version: 6.9.4 dependencies: override: - yarn cache_directories: - ~/.cache/yarn test: override: - yarn test - yarn run...
Enable Concourse to access Vault's secrets
concourse: web: externalUrl: https://ci.nono.io localAuth: enabled: false vault: enabled: true url: https://vault.nono.io:443 authBackend: approle useAuthParam: true auth: duration: 240h mainTeam: github: org: blabbertabber github: ...
concourse: web: externalUrl: https://ci.nono.io localAuth: enabled: false kubernetes: enabled: false vault: enabled: true url: https://vault.nono.io:443 authBackend: approle useAuthParam: true auth: duration: 240h mainTeam: github: ...
Change destination paths for the result files
machine: environment: GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.parallel=false -Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"' TERM: dumb java: version: openjdk8 test: override: - ./gradlew -PtestKotlinVersion=1.0.7 test - ./gradlew jacocoTestReport post: - m...
machine: environment: GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.parallel=false -Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"' TERM: dumb java: version: openjdk8 test: override: - ./gradlew -PtestKotlinVersion=1.0.7 test - ./gradlew jacocoTestReport post: - m...
Add @tomMoral as a maintainer
{% set name = "loky" %} {% set version = "2.1.4" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: d042ce3600212f510770777f5f6166d9fd5fe86002851b202fdece3830b6e5b1 build: number: 0 noarch...
{% set name = "loky" %} {% set version = "2.1.4" %} package: name: {{ name|lower }} version: {{ version }} source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz sha256: d042ce3600212f510770777f5f6166d9fd5fe86002851b202fdece3830b6e5b1 build: number: 0 noarch...
Install local package instead of from pip.
language: python python: - 2.7 sudo: false install: pip install pdfjinja addons: apt: packages: - tcl8.6-dev - tk8.6-dev - python-tk - libtiff5-dev - libjpeg8-dev - zlib1g-dev - libfreetype6-dev - liblcms2-dev - libwebp-dev - libmagickwand-dev - pdftk script: python t...
language: python python: - 2.7 sudo: false install: pip install . addons: apt: packages: - python-tk - libtiff5-dev - libjpeg8-dev - zlib1g-dev - libfreetype6-dev - liblcms2-dev - libmagickwand-dev - pdftk script: python tests.py
Update node_js support to 14
language: node_js node_js: - "8" - "10" notifications: email: false
language: node_js node_js: - "14" notifications: email: false
Remove Python 3.3 from Travis configuration.
language: python python: - 3.3 - 3.4 - 3.5 - 3.6 - 3.7 - 3.7-dev - 3.8-dev - nightly - pypy3 install: - pip install --upgrade nose coveralls coverage - if [[ $TRAVIS_PYTHON_VERSION == 'pypy'* ]]; then export TRAVIS_WAIT=45; else export TRAVIS_WAIT=20; fi script: travis_wait "${TRAVIS_WAIT}...
language: python python: - 3.4 - 3.5 - 3.6 - 3.7 - 3.7-dev - 3.8-dev - nightly - pypy3 install: - pip install --upgrade nose coveralls coverage - if [[ $TRAVIS_PYTHON_VERSION == 'pypy'* ]]; then export TRAVIS_WAIT=45; else export TRAVIS_WAIT=20; fi script: travis_wait "${TRAVIS_WAIT}" nosete...
Update Travis Ci to use `stable` and remove 0.12.
language: node_js sudo: false node_js: - "0.10" - "0.12" - "4" - "5" branches: only: - gh-pages before_script: - npm install -g grunt-cli matrix: fast_finish: true
language: node_js sudo: false node_js: - "0.10" - "4" - "stable" branches: only: - gh-pages before_script: - npm install -g grunt-cli matrix: fast_finish: true
Remove Ruby 1.9.2 from the build matrix
language: ruby cache: bundler os: - linux rvm: - jruby - 1.9.2 - 1.9.3 - 2.5.5 - 2.6.3 jobs: include: - os: osx osx_image: xcode7.3 rvm: 1.9.3 - os: osx rvm: 2.5.5 - os: osx rvm: 2.6.3 - stage: deploy if: branch = master os: linux rvm: 2.6.3 ...
language: ruby cache: bundler os: - linux rvm: - jruby - 1.9.3 - 2.2.7 - 2.3.8 - 2.4.5 - 2.5.5 - 2.6.3 jobs: include: - os: osx osx_image: xcode7.3 rvm: 1.9.3 - os: osx rvm: 2.5.5 - os: osx rvm: 2.6.3 - stage: deploy if: branch = master os: linux ...
Test on PHP 7.3, 7.4 and 8.0
language: php sudo: false php: - 5.6 - 7.0 - 7.1 - 7.2 - hhvm - nightly matrix: allow_failures: - nightly before_script: - composer install before_script: - composer install --no-interaction - mkdir -p build/logs script: - vendor/bin/phpunit --coverage-clover bu...
language: php sudo: false php: - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 - 7.4 - 8.0 - hhvm - nightly matrix: allow_failures: - 7.3 - 7.4 - 8.0 - nightly before_script: - composer install before_script: - composer install --no-interaction - mk...
Add Python 3.6 to testing
language: python sudo: false python: - "2.7" - "3.4" - "3.5" # - "pypy" env: - RL=30 - RL=31 - RL=32 matrix: fast_finish: true install: - TOX_ENV=py${TRAVIS_PYTHON_VERSION}-rl${RL} - pip install tox coveralls Sphinx sphinx-rtd-theme script: tox -e $TOX_ENV after_success: coveralls $COVERALLS_OPTI...
language: python sudo: false python: - "2.7" - "3.4" - "3.5" - "3.6" # - "pypy" env: - RL=30 - RL=31 - RL=32 matrix: fast_finish: true install: - TOX_ENV=py${TRAVIS_PYTHON_VERSION}-rl${RL} - pip install tox coveralls Sphinx sphinx-rtd-theme script: tox -e $TOX_ENV after_success: coveralls $COVE...
Add JRuby to Travis build
language: ruby cache: bundler rvm: - 2.2.5 - 2.3.1 - ruby-head - rbx script: bundle exec rspec before_install: - gem update bundler
language: ruby cache: bundler rvm: - 2.2.5 - 2.3.1 - ruby-head - rbx - jruby script: bundle exec rspec before_install: - gem update bundler
Add other rubies to the mix
language: ruby rvm: - 2.2.2
language: ruby rvm: - 2.2.2 - 2.1.6 - 2.0.0 - 1.9.3
Update from Hackage at 2015-08-05T19:39:05+0000
homepage: '' changelog-type: '' hash: 791c3ebdff0b9ca0a796972c5e5df78e8ae68f787b911ac4ba9da1ca78f4f97c test-bench-deps: tasty-th: -any aeson-casing: -any base: ! '>=4.7 && <5.0' tasty-quickcheck: -any tasty-hunit: -any tasty: -any aeson: -any maintainer: andrewrademacher@gmail.com synopsis: ! 'Tools to ch...
homepage: '' changelog-type: '' hash: dd9afa453db194b0c9c359d8c14c7e2d634161730a4aac3bf37a8d4dee252794 test-bench-deps: tasty-th: -any aeson-casing: -any base: ! '>=4.7 && <5.0' tasty-quickcheck: -any tasty-hunit: -any tasty: -any aeson: -any maintainer: andrewrademacher@gmail.com synopsis: ! 'Tools to ch...
Test with JDK 7 and 8
language: java install: mvn install -DskipTests=true -Dgpg.skip=true jdk: - oraclejdk8
language: java install: mvn install -DskipTests=true -Dgpg.skip=true jdk: - oraclejdk8 - oraclejdk7
Update from Hackage at 2020-07-06T21:06:00Z
homepage: https://github.com/prsteele/glpk-headers-haskell#readme changelog-type: markdown hash: 49f35aa4f9df18b28efcd8ea408a8b6a40dd398d60f90c6ee4ba21e597e693d7 test-bench-deps: base: '>=4.7 && <5' tasty-discover: -any derive-storable: '>=0.1.2.0 && <0.2' tasty-hunit: -any tasty: -any glpk-headers: -any ma...
homepage: https://github.com/prsteele/glpk-headers-haskell#readme changelog-type: markdown hash: 81cb40a5d3a42ed7e1cf4bac8997b6375c74ffc9be6deee530959ab6defd3877 test-bench-deps: base: '>=4.7 && <5' tasty-discover: '>=4.2.1 && <4.3' derive-storable: '>=0.1.2.0 && <0.3' tasty-hunit: '>=0.10.0.2 && <0.11' tasty...
Update from Hackage at 2018-02-12T23:12:27Z
homepage: https://github.com/mwotton/hsmodetweaks#readme changelog-type: '' hash: 8e60e21c0019ab3ecc8b03461017dc886c936de927ca973547c8c3d615cc298a test-bench-deps: {} maintainer: mwotton@gmail.com synopsis: Tool for generating .dir-locals.el for intero changelog: '' basic-deps: base: ! '>=4.7 && <5' text: -any pr...
homepage: https://github.com/mwotton/scriptable/#hsmodetweaks changelog-type: '' hash: f765cbf15cf2368aa229933439e93a376a2672dde9b26d0875f9d31d59d47f67 test-bench-deps: {} maintainer: mwotton@gmail.com synopsis: Tool for generating .dir-locals.el for intero changelog: '' basic-deps: base: ! '>=4.7 && <5' text: -any...