Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Add Ruby 2.1.0 to Travis config
gemfile: - gemfiles/Gemfile.rails-3.0 - gemfiles/Gemfile.rails-3.1 - gemfiles/Gemfile.rails-3.2 - gemfiles/Gemfile.rails-4.0 rvm: - 1.9.3 - 2.0.0 - jruby-19mode - rbx
gemfile: - gemfiles/Gemfile.rails-3.0 - gemfiles/Gemfile.rails-3.1 - gemfiles/Gemfile.rails-3.2 - gemfiles/Gemfile.rails-4.0 rvm: - 1.9.3 - 2.0.0 - 2.1.0 - jruby-19mode - rbx
Fix Travis config for new Coveralls Maven plugin
language: java jdk: - oraclejdk7 - openjdk7 after_success: - mvn clean test jacoco:report coveralls:jacoco env: secure: "mWzxU4KxZyEcHWxU56odTq1CyA4mYVJkHBJsqjkqRIgPa9pTl9oYlsZ7XM1g8W909aZG0olP0/lzp8dw/bo6xE0/eI06mMAkDalEICPOTCZ8VZYV1I+SV1iHyYnB05QUKYoTnzLk7tjo39D9xGnGpVZB9r6ARZalpPz7OwBdus4="
language: java jdk: - oraclejdk7 - openjdk7 after_success: - mvn clean test jacoco:report coveralls:report env: secure: "mWzxU4KxZyEcHWxU56odTq1CyA4mYVJkHBJsqjkqRIgPa9pTl9oYlsZ7XM1g8W909aZG0olP0/lzp8dw/bo6xE0/eI06mMAkDalEICPOTCZ8VZYV1I+SV1iHyYnB05QUKYoTnzLk7tjo39D9xGnGpVZB9r6ARZalpPz7OwBdus4="
Remove node versions prior to 0.8
language: node_js node_js: - "0.4" - "0.6" - "0.8" - "0.10" - "0.12" - "4.0" - "4.1" notifications: email: - donovan@donovan.bz
language: node_js node_js: - "0.8" - "0.10" - "0.12" - "4.0" - "4.1" notifications: email: - donovan@donovan.bz
Revert "Test against php 7.4"
language: php php: - 7.2 - 7.3 - 7.4 install: - travis_retry composer install --no-interaction script: - vendor/bin/phpunit --coverage-clover clover.xml after_script: - bash <(curl -s https://codecov.io/bash)
language: php php: - 7.2 - 7.3 install: - travis_retry composer install --no-interaction script: - vendor/bin/phpunit --coverage-clover clover.xml after_script: - bash <(curl -s https://codecov.io/bash)
Remove support for Node.js 0.10
language: node_js node_js: - '5' - '4' - '0.12' - '0.10'
language: node_js node_js: - '5' - '4' - '0.12'
Add 2.1.0 to supported rubies.
ruby: - '2.0.0' - '1.9.3' - jruby-19mode - rbx-19mode install: bundle install script: SKIP_COV=1 bundle exec rspec spec
ruby: - '2.1.0' - '2.0.0' - '1.9.3' - jruby-19mode - rbx-19mode install: bundle install script: SKIP_COV=1 bundle exec rspec spec
Remove PHP 5.5 from Travis.
language: php php: - 7.0 - 5.5 - 5.6 - 7.1 dist: trusty env: global: - DEFAULT=1 cache: directories: - vendor - $HOME/.composer/cache before_script: - composer install --prefer-dist --no-interaction script: - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.0 ]]; then export CODECOVERAGE=...
language: php php: - 7.0 - 5.6 - 7.1 dist: trusty env: global: - DEFAULT=1 cache: directories: - vendor - $HOME/.composer/cache before_script: - composer install --prefer-dist --no-interaction script: - if [[ $DEFAULT = 1 && $TRAVIS_PHP_VERSION = 7.0 ]]; then export CODECOVERAGE=1; vendo...
Remove PHP 5.5 and HHVM tests
language: php php: - 5.5 - 5.6 - 7.0 - hhvm install: - travis_retry composer install --no-interaction --prefer-source script: - vendor/bin/phpunit --coverage-clover=coverage.xml before_install: - pip install --user codecov after_success: - codecov
language: php php: - 5.6 - 7.0 install: - travis_retry composer install --no-interaction --prefer-source script: - vendor/bin/phpunit --coverage-clover=coverage.xml before_install: - pip install --user codecov after_success: - codecov
Remove nightly from python tests Most likely a temporary change until a more permanant solution can be found
language: python python: - "2.7" - "3.5" - "3.6" - "nightly" cache: pip install: "pip install -e .[dev]" script: pytest --cov=mlbgame after_success: coveralls notifications: email: false
language: python python: - "2.7" - "3.5" - "3.6" cache: pip install: "pip install -e .[dev]" script: pytest --cov=mlbgame after_success: coveralls notifications: email: false
Use ninja backend on OSX CI builds.
sudo: required os: - linux - osx language: - cpp services: - docker before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ninja python3; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then docker pull jpakkane/mesonci:xenial; ...
sudo: required os: - linux - osx language: - cpp services: - docker before_install: - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ninja python3; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then docker pull jpakkane/mesonci:xenial; ...
Make sudo: false explicit, as sudo otherwise depends on when the repo was added to Travis
language: python cache: pip python: - "3.6" env: - BASEDIR="https://raw.githubusercontent.com/open-contracting/standard-maintenance-scripts/master" install: - curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash - - pip install . script: - curl -s -S --retry 3 $BASEDIR/tests/script.sh | bash - - python -m ...
sudo: false language: python cache: pip python: - "3.6" env: - BASEDIR="https://raw.githubusercontent.com/open-contracting/standard-maintenance-scripts/master" install: - curl -s -S --retry 3 $BASEDIR/tests/install.sh | bash - - pip install . script: - curl -s -S --retry 3 $BASEDIR/tests/script.sh | bash - ...
Add py.test to Travis CI
# Travis CI script language: python python: "2.7" # Command to install dependencies install: "pip install -r requirements.txt"
# Travis CI script language: python python: - "2.7" install: - pip install -r requirements.txt script: py.test
Add python 3.7 env to test
language: python python: #- "3.4" - "3.5" - "3.6" # command to install dependencies install: - "python setup.py install" script: nosetests
language: python python: #- "3.4" - "3.5" - "3.6" - "3.7" # command to install dependencies install: - "python setup.py install" script: nosetests
Remove python 3.2 and 3.3 from Travis list
language: python dist: xenial python: - "2.7" - "3.2" - "3.3" - "3.4" - "3.5" - "3.6" - "3.7" before_install: - sudo apt-get update -qq - sudo apt-get install -y build-essential python-dev python3-dev install: - pip install cython before_script: cd bindings/python script: python setup.py test
language: python dist: xenial python: - "2.7" - "3.4" - "3.5" - "3.6" - "3.7" before_install: - sudo apt-get update -qq - sudo apt-get install -y build-essential python-dev python3-dev install: - pip install cython before_script: cd bindings/python script: python setup.py test
Fix validation errors in Travis config
language: php php: - 5.4 - 5.5 - 7.0 - hhvm env: - WP_VERSION=master - WP_VERSION=4.2 global: - WP_CLI_BIN_DIR=/tmp/wp-cli-phar - WP_CLI_CONFIG_PATH=/tmp/wp-cli-phar/config.yml matrix: # Nice-to-haves for right now, but not worth considering the build "broken" allow_failures: - php: 7.0...
language: php php: - 5.4 - 5.5 - 7.0 - hhvm env: global: - WP_CLI_BIN_DIR=/tmp/wp-cli-phar - WP_CLI_CONFIG_PATH=/tmp/wp-cli-phar/config.yml - WP_VERSION=master - WP_VERSION=4.2 matrix: # Nice-to-haves for right now, but not worth considering the build "broken" allow_failures: - php:...
Add OpenJDK 12 to Travis builds.
# 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 ...
# 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 ...
Bring jRuby back into the fold
rvm: - 1.8.7 - 1.9.3 - 2.0.0 - jruby-18mode - jruby-19mode script: "bundle exec rake test" gemfile: - Gemfile - Gemfile-3.1 env: TEST=true matrix: allow_failures: - rvm: jruby-18mode - rvm: jruby-19mode
rvm: - 1.8.7 - 1.9.3 - 2.0.0 - jruby-18mode - jruby-19mode script: "bundle exec rake test" gemfile: - Gemfile - Gemfile-3.1 env: TEST=true
Upgrade npm to latest on Travis.
language: node_js node_js: - 'stable' # Use containers. # http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false
language: node_js node_js: - 'stable' # Use containers. # http://docs.travis-ci.com/user/workers/container-based-infrastructure/ sudo: false before_install: - npm i -g npm
Add tests for OSX on TravisCI.
--- language: python python: "2.7" # This role needs sudo, thus we can't use the new container infrastructure # sudo: false sudo: required services: - docker # Install ansible addons: apt: packages: - python-pip install: # Install ansible - pip install ansible # Check ansible version - ansible ...
--- # https://docs.travis-ci.com/user/multi-os/ matrix: include: - os: osx language: generic env: - TARGET=localhost - CONNECTION=local - os: linux dist: trusty language: python python: 2.7 services: - docker addons: apt: pack...
Use Ruby 2.2.0 on CI
language: - ruby rvm: - 2.1.5 branches: only: - master
branches: only: - master cache: - bundler language: - ruby rvm: - 2.2.0
Add setup.py build command and fix call to make for bindings.
language: cpp branches: only: - travis matrix: include: - os: linux compiler: gcc addons: apt: sources: ['ubuntu-toolchain-r-test'] packages: ['g++-4.9','zlib1g-dev','wget','python-dev'] env: - COMPILER=g++-4.9 before_install: - wget https://github....
language: cpp branches: only: - travis matrix: include: - os: linux compiler: gcc addons: apt: sources: ['ubuntu-toolchain-r-test'] packages: ['g++-4.9','zlib1g-dev','wget','python-dev'] env: - COMPILER=g++-4.9 before_install: - wget https://github....
Support Python 3.4 and 3.5.
language: python python: - 2.7 - 3.3 install: - pip install -r dev-requirements.txt - pip install -e . script: # Normal unit tests. - ./setup.py test # Code quality check. - pylint apyori.py test/*.py notifications: - email: false
language: python python: - 2.7 - 3.3 - 3.4 - 3.5 install: - pip install -r dev-requirements.txt - pip install -e . script: # Normal unit tests. - ./setup.py test # Code quality check. - pylint apyori.py test/*.py notifications: - email: false
Update from Hackage at 2019-09-16T15:16:50Z
homepage: '' changelog-type: markdown hash: 5d13c74cc134ed6698b6a1602c27f417c100206a55a5c3dc95ad46c299fae2a3 test-bench-deps: {} maintainer: domen@dev.si synopsis: Automation of Haskell package release process changelog: | # Revision history for releaser ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an ...
homepage: '' changelog-type: markdown hash: 7dcbbcdf6e86cf9fc2d41627fd029d6fa7e2b5706c95fc5f9b355d12d05dc3ce test-bench-deps: {} maintainer: domen@dev.si synopsis: Automation of Haskell package release process changelog: "# Revision history for releaser\n\n## 0.2.0.0 -- 2019-09-16\n\n* Write cabal versions using a re...
Add an option to map local installations in Docker
version: '3' services: rabbitmq: image: rabbitmq:3 container_name: oq-cluster-rabbitmq environment: - RABBITMQ_DEFAULT_VHOST=openquake - RABBITMQ_DEFAULT_USER=openquake - RABBITMQ_DEFAULT_PASS=openquake networks: - oq-cluster-net master: image: openquake/engine-master ...
version: '3' services: rabbitmq: image: rabbitmq:3 container_name: oq-cluster-rabbitmq environment: - RABBITMQ_DEFAULT_VHOST=openquake - RABBITMQ_DEFAULT_USER=openquake - RABBITMQ_DEFAULT_PASS=openquake networks: - oq-cluster-net master: image: openquake/engine-master ...
Revert "Change URL not to be hardcoded"
# Site settings name: Kyle Maxwell email: yourmom@example.com description: "So much hacking, so little time" # testing only #url: http://localhost:4000 url: "/" # the base hostname & protocol for your site twitter: kylemaxwell github: krmaxwell google: KyleMaxwell instagram: technoskald # Build settings markdown: redc...
# Site settings name: Kyle Maxwell email: yourmom@example.com description: "So much hacking, so little time" # testing only #url: http://localhost:4000 url: "http://xwell.org" # the base hostname & protocol for your site twitter: kylemaxwell github: krmaxwell google: KyleMaxwell instagram: technoskald # Build settings...
Revert "Prune old docker images"
name: Docker on: push: branches: - main env: IMAGE_NAME: toolbox jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Build image run: docker build -t $IMAGE_NAME . - name: Log into github registry run: echo "${{ secre...
name: Docker on: push: branches: - main env: IMAGE_NAME: toolbox jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Build image run: docker build -t $IMAGE_NAME . - name: Log into github registry run: echo "${{ secre...
Build before generating the documentation
name: Upload Python Package on: release: types: [published] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v1 with: python-version: '3.x' - name: Install dependencies run: | python -...
name: Upload Python Package on: release: types: [published] jobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v1 with: python-version: '3.x' - name: Install dependencies run: | python -...
Switch testing to Xena testing runtime
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-cover-jobs - openstack-python3-wallaby-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
- project: templates: - check-requirements - lib-forward-testing-python3 - openstack-cover-jobs - openstack-python3-xena-jobs - periodic-stable-jobs - publish-openstack-docs-pti - release-notes-jobs-python3
Use Dockerfile of izumin5210/android on CI
box: wercker/android build: steps: - script: name: show base information code: | ./gradlew -v echo $ANDROID_HOME echo $ANDROID_BUILD_TOOLS echo $ANDROID_UPDATE_FILTER - android-sdk-update: filter: platform-tools,extra-android-m2repository,extra-a...
box: izumin5210/android build: steps: - script: name: show base information code: | gradle -v echo $ANDROID_HOME echo $ANDROID_BUILD_TOOLS echo $ANDROID_UPDATE_FILTER - android-sdk-update: filter: platform-tools,extra-android-m2repository,extra-a...
Add test pipeline in werker
box: termoshtt/rust:latest build: steps: - script: name: cargo code: | cargo build
box: termoshtt/rust:latest build: steps: - script: name: cargo build code: | cargo build test: steps: - script: name: cargo test code: | cargo test
Add ruby 3.0 to workflow
name: CI # Controls when the action will run. on: # Triggers the workflow on push or pull request events but only for the master branch push: branches: [master] pull_request: branches: [master] jobs: test: strategy: fail-fast: false matrix: # need to figure out how to use redis o...
name: CI # Controls when the action will run. on: # Triggers the workflow on push or pull request events but only for the master branch push: branches: [master] pull_request: branches: [master] jobs: test: strategy: fail-fast: false matrix: # need to figure out how to use redis o...
Fix the yaml of the workflow
name: pypi on: push workflow_dispatch jobs: upload: name: Upload to PyPI if: (contains(github.ref, 'refs/tags/v') && contains(github.ref, '-dev')) || (github.action == 'workflow_dispatch') runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.8 uses: a...
name: pypi on: ['push', 'workflow_dispatch'] jobs: upload: name: Upload to PyPI if: (contains(github.ref, 'refs/tags/v') && contains(github.ref, '-dev')) || (github.action == 'workflow_dispatch') runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Set up Python 3.8 uses...
Set autoname of Fertility Test Analyzer
Categories: - Sports & Health License: Apache-2.0 AuthorName: Colnix Technology WebSite: https://www.colnix.com SourceCode: https://gitlab.com/colnix/fta IssueTracker: https://gitlab.com/colnix/fta/issues RepoType: git Repo: https://gitlab.com/colnix/fta.git Builds: - versionName: 2.1.0 versionCode: 22 co...
Categories: - Sports & Health License: Apache-2.0 AuthorName: Colnix Technology WebSite: https://www.colnix.com SourceCode: https://gitlab.com/colnix/fta IssueTracker: https://gitlab.com/colnix/fta/issues AutoName: Fertility Test Analyzer RepoType: git Repo: https://gitlab.com/colnix/fta.git Builds: - versionNam...
Update Call Counter to 2.0.0 (3)
Categories: - Phone & SMS License: GPL-3.0-only AuthorName: Webierta SourceCode: https://github.com/Webierta/call-counter IssueTracker: https://github.com/Webierta/call-counter/issues Changelog: https://github.com/Webierta/call-counter/releases AutoName: Call Counter RepoType: git Repo: https://github.com/Webierta/...
Categories: - Phone & SMS License: GPL-3.0-only AuthorName: Webierta SourceCode: https://github.com/Webierta/call-counter IssueTracker: https://github.com/Webierta/call-counter/issues Changelog: https://github.com/Webierta/call-counter/releases AutoName: Call Counter RepoType: git Repo: https://github.com/Webierta/...
Disable kafs servers for a bit
# This file contains ansible variables that are used by our zuul-executors. --- # NOTE(ianw): 2019-05 this list of clouds will grow as we provision # new opendev.org based mirrors, but then eventually be removed once # all are updated. zuul_site_mirror_fqdn: >- {%- if nodepool.region + "." + nodepool.cloud in [ "DFW....
# This file contains ansible variables that are used by our zuul-executors. --- # NOTE(ianw): 2019-05 this list of clouds will grow as we provision # new opendev.org based mirrors, but then eventually be removed once # all are updated. zuul_site_mirror_fqdn: >- {%- if nodepool.region + "." + nodepool.cloud in [ "DFW....
Test on ruby 2.2.2 instead of 2.1.0
machine: ruby: version: 2.2.2 dependencies: override: - 'rvm-exec 2.1.0 bundle install' - 'rvm-exec 2.3.0 bundle install' dependencies: post: - bundle exec bundle-audit update && bundle exec bundle-audit check test: override: - 'rvm-exec 2.1.0 bundle exec rspec' - 'rvm-exec 2.3.0 bundle ...
machine: ruby: version: 2.2.2 dependencies: override: - 'rvm-exec 2.2.2 bundle install' - 'rvm-exec 2.3.0 bundle install' dependencies: post: - bundle exec bundle-audit update && bundle exec bundle-audit check test: override: - 'rvm-exec 2.2.2 bundle exec rspec' - 'rvm-exec 2.3.0 bundle ...
Add system deps to Circle config
machine: pre: - rm -fr ~/node_modules post: - rm -fr ~/node_modules dependencies: cache_directories: - ~/.cache/yarn override: - yarn install - yarn test pre: - nvm install 6.3.1 && nvm use 6.3.1 && nvm alias default 6.3.1 - npm install -g bower grunt-cli gulp-cli yarn@^1.3.2
machine: pre: - rm -fr ~/node_modules post: - rm -fr ~/node_modules dependencies: cache_directories: - ~/.cache/yarn override: - yarn install - yarn test pre: - nvm install 6.3.1 && nvm use 6.3.1 && nvm alias default 6.3.1 - npm install -g bower grunt-cli gulp-cli yarn@^1.3.2 -...
Increase timeout on individual commands output dely in CircleCI
machine: python: version: 3.4.3 dependencies: pre: - pip install --upgrade pip test: override: - make test
machine: python: version: 3.4.3 dependencies: pre: - pip install --upgrade pip test: override: - make test: timeout: 1800
Add units to range params.
# voxel map voxel_map: # min coordinates in world frame xyz_min: [0.0, 0.0, 0.0] # [m] # max coordinates in world frame xyz_max: [50.0, 50.0, 10.0] # [m] # resolution resolution: [0.2, 0.2, 0.2] # [m] # initial value of voxels init_value: 0.0 # raytrace ranges min_range: 0.0 max_range: 10.0...
# voxel map voxel_map: # min coordinates in world frame xyz_min: [0.0, 0.0, 0.0] # [m] # max coordinates in world frame xyz_max: [50.0, 50.0, 10.0] # [m] # resolution resolution: [0.2, 0.2, 0.2] # [m] # initial value of voxels init_value: 0.0 # raytrace ranges min_range: 0.0 # [m] max_rang...
Update from Hackage at 2016-02-14T07:46:38+0000
homepage: '' changelog-type: '' hash: 640601c8531dae847d624eac78db22ce0343c1607040a7158454635f486e477c test-bench-deps: {} maintainer: zcarterc@gmail.com synopsis: Optionally serializable dynamic state keyed by type changelog: '' basic-deps: bytestring: -any base: ! '>=4.6 && <4.9' unordered-containers: -any bi...
homepage: '' changelog-type: '' hash: 490fba74706d99f238868b34cb47d3382f719ed8b284fd7690f1666ea271ff6e test-bench-deps: {} maintainer: zcarterc@gmail.com synopsis: Optionally serializable dynamic state keyed by type changelog: '' basic-deps: bytestring: -any base: ! '>=4.6 && <4.9' unordered-containers: -any bi...
Reduce the number of Windows testing envs
build: false environment: matrix: - TOXENV: py27-unittests - TOXENV: py33-unittests - TOXENV: py34-unittests - TOXENV: py27-integration - TOXENV: py33-integration - TOXENV: py34-integration - TOXENV: flake8 init: - "ECHO %TOXENV%" - ps: "ls C:\\Python*" install: - ps: Invoke-WebReque...
build: false environment: matrix: - TOXENV: py27-unittests - TOXENV: py34-unittests - TOXENV: py27-integration - TOXENV: py34-integration init: - "ECHO %TOXENV%" - ps: "ls C:\\Python*" install: - ps: Invoke-WebRequest "https://bootstrap.pypa.io/ez_setup.py" -OutFile "c:\\ez_setup.py" - ps: Inv...
Add package publishing for release/r1.0 branch.
version: 1.0.{build} branches: only: - development/r1.0 - release/r1.0 image: Visual Studio 2015 cache: - '%USERPROFILE%\.nuget\packages' build_script: - ps: >- .\restore-packages.ps1 $buildVersion = "alpha2-$($env:APPVEYOR_BUILD_NUMBER.PadLeft(4, '0'))" .\build-all.ps1 -BuildVersion $buildVersi...
version: 1.0.{build} branches: only: - development/r1.0 - release/r1.0 image: Visual Studio 2015 cache: - '%USERPROFILE%\.nuget\packages' build_script: - ps: >- .\restore-packages.ps1 $buildVersion = "alpha2-$($env:APPVEYOR_BUILD_NUMBER.PadLeft(4, '0'))" .\build-all.ps1 -BuildVersion $buildVersi...
Test with Node.js version 8 instead of 7
# http://www.appveyor.com/docs/appveyor-yml environment: matrix: - nodejs_version: "6" - nodejs_version: "7" version: "{build}-{branch}" init: - git config --global core.longpaths true clone_depth: 1 matrix: fast_finish: true cache: - node_modules install: - ps: Install-Product node $env:nodejs...
# http://www.appveyor.com/docs/appveyor-yml environment: matrix: - nodejs_version: "6" - nodejs_version: "8" version: "{build}-{branch}" init: - git config --global core.longpaths true clone_depth: 1 matrix: fast_finish: true cache: - node_modules install: - ps: Install-Product node $env:nodejs...
Add a description to 'Security Tools' category
name: Security Tools description: projects: - active_model_otp - alpaca - brakeman - codesake-dawn - gemfilelint - loofah - look/xss_terminate - mhartl/find_mass_assignment - param_protected - rails_xss - ryanlowe/audit_mass_assignment - shellex - sudo_attributes - tarantula - wwidea/cros...
name: Security Tools description: Find and prevent security vulnerabilities with less effort projects: - active_model_otp - alpaca - brakeman - codesake-dawn - gemfilelint - loofah - look/xss_terminate - mhartl/find_mass_assignment - param_protected - rails_xss - ryanlowe/audit_mass_assignment -...
Change default value for hash_file_name on sample config for focused crawl
# # Example of configuration for running a Focused Crawl # target_storage.use_classifier: true target_storage.store_negative_pages: true target_storage.data_format.type: FILESYSTEM_JSON target_storage.data_format.filesystem.compress_data: true target_storage.english_language_detection_enabled: false link_storage.max_p...
# # Example of configuration for running a Focused Crawl # target_storage.use_classifier: true target_storage.store_negative_pages: true target_storage.data_format.type: FILESYSTEM_JSON target_storage.data_format.filesystem.compress_data: true target_storage.data_format.filesystem.hash_file_name: true target_storage.en...
Add deps audit and update CI Node version
version: 2 jobs: build: working_directory: ~/app docker: - image: circleci/node:10 steps: - checkout - restore_cache: key: deps-{{ checksum "yarn.lock" }} - run: yarn install --pure-lockfile --offline - run: yarn deps - save_cache: key: deps-{{ ch...
version: 2 jobs: build: working_directory: ~/app docker: - image: circleci/node:14 steps: - checkout - restore_cache: key: deps-{{ checksum "yarn.lock" }} - run: yarn install --pure-lockfile --offline - run: yarn deps - save_cache: key: deps-{{ ch...
Update CurrentVersion of Fairphone Launcher 3 to 2.1.0 (9)
Categories: - Theming License: Apache-2.0 SourceCode: https://github.com/WeAreFairphone/FP2-Launcher IssueTracker: https://github.com/WeAreFairphone/FP2-Launcher/issues Changelog: https://github.com/WeAreFairphone/FP2-Launcher/releases AutoName: Fairphone 2 Launcher RepoType: git Repo: https://github.com/WeAreFairp...
Categories: - Theming License: Apache-2.0 SourceCode: https://github.com/WeAreFairphone/FP2-Launcher IssueTracker: https://github.com/WeAreFairphone/FP2-Launcher/issues Changelog: https://github.com/WeAreFairphone/FP2-Launcher/releases AutoName: Fairphone Launcher 3 RepoType: git Repo: https://github.com/WeAreFairp...
Use the new cache system configuration
imports: - { resource: config.yml } #framework: # validation: # cache: validator.mapping.cache.doctrine.apc # serializer: # cache: serializer.mapping.cache.apc #doctrine: # orm: # metadata_cache_driver: apc # result_cache_driver: apc # query_cache_driver: apc monolog: ...
imports: - { resource: config.yml } #framework: # cache: # system: cache.adapter.apcu #doctrine: # orm: # metadata_cache_driver: apc # result_cache_driver: apc # query_cache_driver: apc monolog: handlers: main: type: fingers_crossed ac...
Use tripleo profile for bigswitch agent
heat_template_version: ocata description: > Installs bigswitch agent and enables the services parameters: ServiceNetMap: default: {} description: Mapping of service_name -> network name. Typically set via parameter_defaults in the resource registry. This mapping override...
heat_template_version: ocata description: > Installs bigswitch agent and enables the services parameters: ServiceNetMap: default: {} description: Mapping of service_name -> network name. Typically set via parameter_defaults in the resource registry. This mapping override...
Use correct tag for PHP 8
name: GrumPHP on: push jobs: grumphp: runs-on: ubuntu-latest container: docker://php:${{ matrix.php_version }}-cli strategy: matrix: php_version: - '7.1' - '7.2' - '7.3' - '7.4' - '8.0' steps: - uses: actions/checkout@v2 - name: Instal...
name: GrumPHP on: push jobs: grumphp: runs-on: ubuntu-latest container: docker://php:${{ matrix.php_version }}-cli strategy: matrix: php_version: - '7.1' - '7.2' - '7.3' - '7.4' - '8.0-rc' steps: - uses: actions/checkout@v2 - name: Ins...
Swap Ubuntu to test on beta
name: Dart on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ${{matrix.os}} strategy: # We want to see the results on edge even if beta fails (and vice versa). # This prevents one failure from stopping the entire run. fail-fast: false ma...
name: Dart on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ${{matrix.os}} strategy: # We want to see the results on edge even if beta fails (and vice versa). # This prevents one failure from stopping the entire run. fail-fast: false ma...
Remove test_requirements.txt from GH Actions
# This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python application on: push: branches: [ master ] pull_request: branches: [ ...
# This workflow will install Python dependencies, run tests and lint with a single version of Python # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions name: Python application on: push: branches: [ master ] pull_request: branches: [ ...
Change image to truffle image
# Javascript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2 jobs: build: docker: # specify the version you desire here - image: circleci/node:7.10 - image: wbuchwalter/testrpc command: testrpc -m 'scene kite...
# Javascript Node CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-javascript/ for more details # version: 2 jobs: build: docker: # specify the version you desire here - image: docker pull desmart/truffle - image: wbuchwalter/testrpc entrypoint: testrpc -m...
Set specific versions for all dependencies
dependencies: - name: kms-core - name: libnice - name: openwebrtc-gst-plugins
dependencies: - name: kms-core version: ">= 6.6.2" - name: libnice version: ">= 0.1.13" - name: openwebrtc-gst-plugins version: ">= 0.10.0"
Disable 5.0 builds until mock-fs is updated
sudo: false language: node_js node_js: - "node" - "4.2" - "0.12" - "0.10"
sudo: false language: node_js node_js: # node 5.0 builds disabled until mock-fs gets updated #- "node" - "4.2" - "0.12" - "0.10"
Test on PHP 7.2 and 7.3
language: php sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 install: - travis_retry composer install --no-interaction --prefer-source script: - vendor/bin/phpunit --verbose --coverage-text
language: php sudo: false php: - 5.4 - 5.5 - 5.6 - 7.0 - 7.1 - 7.2 - 7.3 install: - travis_retry composer install --no-interaction --prefer-source script: - vendor/bin/phpunit --verbose --coverage-text
Stop emails from Travis notifications.
language: php php: - 5.3 - 5.4 before_script: - composer selfupdate --quiet - composer install --dev - vendor/phpunit/phpunit/composer/bin/phpunit notifications: irc: "irc.freenode.org#garyj"
language: php php: - 5.3 - 5.4 before_script: - composer selfupdate --quiet - composer install --dev - vendor/phpunit/phpunit/composer/bin/phpunit notifications: irc: "irc.freenode.org#garyj" email: false
Drop support for Python 3.5
language: python dist: xenial python: - "3.5" - "3.6" sudo: true services: - postgresql addons: postgresql: "10" before_script: - psql -c "ALTER USER travis WITH PASSWORD 'travis';" install: - travis_retry pip install -r requirements.txt - travis_retry pip install coveralls script: - coverage run...
language: python dist: xenial python: - "3.6" sudo: true services: - postgresql addons: postgresql: "10" before_script: - psql -c "ALTER USER travis WITH PASSWORD 'travis';" install: - travis_retry pip install -r requirements.txt - travis_retry pip install coveralls script: - coverage run --branch ...
Use domain instead of wildcard
language: node_js node_js: '0.10' install: echo "skip install" branches: only: master env: global: - secure: gYvLFxy2Mgto6+oeZzny6jgLtNNZ2GeSm9OSABskP0wy86s01WUpuGVWLdyU1DdVdcHRhKK7xl+yFgHBN3tyzz2YgVRNFrJL8jNr0km7H6qLNEghA//ZuDb7w06uW3kOGjtlG4EzheTrG2G6RsmeFflQscaS87t6//b0UTbU3WE= after_success: - chmod 600 deplo...
language: node_js node_js: '0.10' install: echo "skip install" branches: only: master env: global: - secure: gYvLFxy2Mgto6+oeZzny6jgLtNNZ2GeSm9OSABskP0wy86s01WUpuGVWLdyU1DdVdcHRhKK7xl+yFgHBN3tyzz2YgVRNFrJL8jNr0km7H6qLNEghA//ZuDb7w06uW3kOGjtlG4EzheTrG2G6RsmeFflQscaS87t6//b0UTbU3WE= after_success: - chmod 600 deplo...
Remove v0.6 from node versions we test against
language: node_js node_js: - "0.6" - "0.8" - "0.10" script: "./run_tests.sh" notifications: email: false irc: - "irc.freenode.org#statsd"
language: node_js node_js: - "0.8" - "0.10" script: "./run_tests.sh" notifications: email: false irc: - "irc.freenode.org#statsd"
Add more checks with Travis
language: node_js node_js: - "node" - "6" - "5"
language: node_js node_js: - "node" - "6" - "5" - "4" script: npm run build && npm test
Add a Clippy builder in CI
language: rust rust: - nightly - beta - stable script: cargo test matrix: include: - rust: 1.34.0 script: cargo check
language: rust rust: - nightly - beta - stable script: cargo test matrix: include: - rust: 1.34.0 script: cargo check - rust: nightly name: Clippy script: - rustup component add clippy || travis_terminate 0 - cargo clippy -- -Dclippy::all
Add PHP 7.4snapshot to build pipeline
dist: xenial language: php sudo: false php: - 7.2 - 7.3 env: global: - DRIVER_VERSION="stable" - COMPOSER_FLAGS="--prefer-dist" matrix: include: - stage: Test php: 7.2 env: DRIVER_VERSION="stable" COMPOSER_FLAGS="--prefer-dist" - stage: Test php: 7.2 env: DRIVER_VERSIO...
dist: xenial language: php sudo: false php: - 7.2 - 7.3 - 7.4snapshot env: global: - DRIVER_VERSION="stable" - COMPOSER_FLAGS="--prefer-dist" matrix: include: - stage: Test php: 7.2 env: DRIVER_VERSION="stable" COMPOSER_FLAGS="--prefer-dist" - stage: Test php: 7.2 en...
Drop support for ruby 2.2.x
language: ruby sudo: false rvm: - 2.1.8 - 2.2.4 - 2.3.3 - 2.3.4 gemfile: - gemfiles/rails_3_2.gemfile - gemfiles/rails_4_2.gemfile - gemfiles/rails_5_1.gemfile matrix: exclude: - rvm: 2.1.8 gemfile: gemfiles/rails_5_1.gemfile before_install: gem install bundler -v 1.15.0 script: bundle exec rake ...
language: ruby sudo: false rvm: - 2.3.3 - 2.3.4 gemfile: - gemfiles/rails_3_2.gemfile - gemfiles/rails_4_2.gemfile - gemfiles/rails_5_1.gemfile before_install: gem install bundler -v 1.15.0 script: bundle exec rake spec services: - redis-server
Add command to debug Travis issue
language: node_js before_install: - wget https://services.gradle.org/distributions/gradle-2.3-bin.zip - unzip gradle-2.3-bin.zip - export GRADLE_HOME=$PWD/gradle-2.3 - export PATH=$GRADLE_HOME/bin:$PATH - mkdir travis-phantomjs - wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.ta...
language: node_js before_install: - wget https://services.gradle.org/distributions/gradle-2.3-bin.zip - unzip gradle-2.3-bin.zip - export GRADLE_HOME=$PWD/gradle-2.3 - export PATH=$GRADLE_HOME/bin:$PATH - mkdir travis-phantomjs - wget https://s3.amazonaws.com/travis-phantomjs/phantomjs-2.0.0-ubuntu-12.04.ta...
Add testing on Node 9
sudo: false language: node_js node_js: - "6" - "8" cache: directories: - node_modules
sudo: false language: node_js node_js: - "6" - "8" - "9" cache: directories: - node_modules
Integrate Code Climate Coverage Report in Travis CI
language: go go: - "1.12beta1" env: - GO111MODULE=on
language: go go: - "1.12beta1" env: - GO111MODULE=on install: - go get -v github.com/codeclimate/test-reporter before_script: - test-reporter before-build script: - go test -coverprofile c.out ./... after_script: - test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
Drop testing with Go 1.5.
language: go sudo: false go: - 1.5.x - 1.6.x - 1.7.x - 1.8.x - 1.9.x - tip install: - go get -v github.com/qedus/osmpbf script: - make init - make race - make cover - make bench after_success: - go get -u github.com/mattn/goveralls - export PATH=$PATH:$HOME/gopath/bin - goveralls -coverpr...
language: go sudo: false go: - 1.6.x - 1.7.x - 1.8.x - 1.9.x - tip install: - go get -v github.com/qedus/osmpbf script: - make init - make race - make cover - make bench after_success: - go get -u github.com/mattn/goveralls - export PATH=$PATH:$HOME/gopath/bin - goveralls -coverprofile=prof...
Add PHP 5.3 to the tests environment
language: php php: - 5.4 - 5.5 before_script: - curl -s http://getcomposer.org/installer | php - php composer.phar install --dev --prefer-dist --no-interaction script: ./vendor/bin/phpunit --coverage-text
language: php php: - 5.3 - 5.4 - 5.5 before_script: - curl -s http://getcomposer.org/installer | php - php composer.phar install --dev --prefer-dist --no-interaction script: ./vendor/bin/phpunit --coverage-text
Allow Travis to actually cache Bundler files.
language: ruby rvm: - 2.1 install: - bundle install - npm install - sh -e /etc/init.d/xvfb start - webdriver-manager update script: - jekyll serve --detach - npm test env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true - DISPLAY=:99.0 branches: only: - gh-pages cache: directories: - node_modules - vendor/...
language: ruby rvm: - 2.1 install: - bundle install --path vendor/bundle - npm install - sh -e /etc/init.d/xvfb start - webdriver-manager update script: - bundle exec jekyll serve --detach - npm test env: global: - NOKOGIRI_USE_SYSTEM_LIBRARIES=true - DISPLAY=:99.0 branches: only: - gh-pages cache: director...
Fix the typo in Travis configuration file
languge: node_js node_js: node cache: directories: - node_modules install: npm install before_script: - npm install -g gulp
language: node_js node_js: node cache: directories: - node_modules install: npm install before_script: - npm install -g gulp
Stop testing rbx (for now, waiting for Travis support)
language: ruby rvm: - "1.8.7" - "1.9.3" - "2.0.0" - rbx-18mode - rbx-19mode - ree
language: ruby rvm: - "1.8.7" - "1.9.3" - "2.0.0" - "2.1.0" - "2.1.1" - ree
Update nodes versions for testing.
language: node_js sudo: false node_js: - '6' deploy: provider: npm email: npm@muffinresearch.co.uk api_key: secure: VWARblBsd9uRP9DYw0ky2pf0PbzlNouElpNT9YbMiYiQmr05i2c1JTfLDIRWAHsEG1/OGnL/f6AfO98HVoJQfTRk7CalDPiOBUEo9WpSi9jkwVLcekYZ06b4rgKPYmq1u6A3YgSrpBzMpSw2eUyIDEgDXZJEk1tWFKRL/69E4HE= on: tags: true ...
language: node_js sudo: false node_js: - '8' - '10' deploy: provider: npm email: npm@muffinresearch.co.uk api_key: secure: VWARblBsd9uRP9DYw0ky2pf0PbzlNouElpNT9YbMiYiQmr05i2c1JTfLDIRWAHsEG1/OGnL/f6AfO98HVoJQfTRk7CalDPiOBUEo9WpSi9jkwVLcekYZ06b4rgKPYmq1u6A3YgSrpBzMpSw2eUyIDEgDXZJEk1tWFKRL/69E4HE= on: tags...
Test all branches on Travis.
# Configuration options are documented at: # http://about.travis-ci.org/docs/user/languages/ruby/ language: ruby bundler_args: --without development rvm: - 1.9.3 - 2.0.0 - 2.1.2 - 2.2.1 gemfile: - test/Gemfile branches: only: - master - 2.x script: cd test; bundle exec rake
# Configuration options are documented at: # http://about.travis-ci.org/docs/user/languages/ruby/ language: ruby bundler_args: --without development rvm: - 1.9.3 - 2.0.0 - 2.1.2 - 2.2.1 gemfile: - test/Gemfile script: cd test; bundle exec rake
Fix rights of gradlew for Travis
language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools # - platform-tools # - tools # The BuildTools version used by your project - build-tools-22.0.1 # The SDK version used to compile your project ...
language: android android: components: # Uncomment the lines below if you want to # use the latest revision of Android SDK Tools # - platform-tools # - tools # The BuildTools version used by your project - build-tools-22.0.1 # The SDK version used to compile your project ...
Use precise distribution to be able to build with jdk7
language: java jdk: - openjdk7 - oraclejdk7 - oraclejdk8 env: - CRATE_VERSION=0.56.4 - CRATE_VERSION=0.57.6 - CRATE_VERSION=1.0.1 matrix: exclude: - jdk: openjdk7 env: CRATE_VERSION=1.0.1 - jdk: oraclejdk7 env: CRATE_VERSION=1.0.1 cache: directories: - $HOME/.m2 sudo: false s...
dist: precise language: java jdk: - openjdk7 - oraclejdk7 - oraclejdk8 env: - CRATE_VERSION=0.56.4 - CRATE_VERSION=0.57.6 - CRATE_VERSION=1.0.1 matrix: exclude: - jdk: openjdk7 env: CRATE_VERSION=1.0.1 - jdk: oraclejdk7 env: CRATE_VERSION=1.0.1 cache: directories: - $HOME/.m2 ...
Update to xcode7.3 following Travis warning
language: csharp sudo: required dist: trusty env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 - CLI_VERSION: latest mono: none dotnet: 1.0.0-preview2-003121 os: - linux - osx osx_image: xcode7.1 before_install: - if test "$TRAVIS_OS_NAME" == "osx"; then brew up...
language: csharp sudo: required dist: trusty env: global: - DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true - DOTNET_CLI_TELEMETRY_OPTOUT: 1 - CLI_VERSION: latest mono: none dotnet: 1.0.0-preview2-003121 os: - linux - osx osx_image: xcode7.3 before_install: - if test "$TRAVIS_OS_NAME" == "osx"; then brew up...
Consolidate database setup into a single command
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 - bundl...
cache: bundler language: ruby rvm: - 2.1.3 before_script: - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start - RAILS_ENV=test bundle exec rake db:setup sudo: false
Test in additional node versions.
--- language: node_js node_js: - "0.12" sudo: false cache: directories: - node_modules matrix: fast_finish: true allow_failures: - env: EMBER_TRY_SCENARIO=ember-canary before_install: - export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH - "npm config set spin false" - "npm install -g npm@^2" in...
--- language: node_js node_js: - "0.10" - "0.12" - "4" - "6" sudo: false cache: directories: - node_modules matrix: fast_finish: true before_install: - "npm config set spin false" - "npm install -g npm@^3" install: - npm install -g bower - npm install - bower install script: - ember te...
Add support for Coverity scanning.
language: java
language: java env: global: - secure: "tcly8qzj6RNacbP/7V3LHrXHSHVQLhNYR7a1Kdp+vrB/5wL518xeKz7zaiFag5Q/VN1pS6wVFsxQhoLMaOP+Oz5/ATeFvVZ1ldw2mbmdHC9S1BTkvNe+4lNA6Ri9noB5Ijg3jANbmgBXSlvvg/K7W5Y0SwnM06tqvI9BbmPwzHGhlPW9k/bepDbBoybGYQoSe1NIe1DOm8vxpMk0CTslR0o/+MMbJK7Wq8H7MI71eVh+2/h9R53qLnxlfMWQPwscqAq7A10zm6rcgfu7qYwdc...
Move Docker commands out of Travis script
sudo: required services: - docker script: - pwd - mkdir build - docker run -v $(pwd):/Wangscape lukequaint/wangscape-build:latest /bin/sh -c \ 'cd /Wangscape/build && cmake .. && make; Xvfb :1 -screen 0 1600x900x24 &> xvfb.log & DISPLAY=:1.0; export DISPLAY; xvfb-run --serve...
sudo: required services: - docker script: - pwd - mkdir build - docker run -v $(pwd):/Wangscape lukequaint/wangscape-build:latest /bin/sh -c 'travis-ubuntu-docker.sh'
Comment gem install cocoa pods on the Travis .yml file
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c cache: cocoapods podfile: Example/Podfile before_install: - gem install cocoapods # Since Travis is not always on latest version - pod install --project-directory=Example script: - set -o ...
# references: # * http://www.objc.io/issue-6/travis-ci.html # * https://github.com/supermarin/xcpretty#usage language: objective-c cache: cocoapods podfile: Example/Podfile before_install: # - gem install cocoapods # Since Travis is not always on latest version - pod install --project-directory=Example script: - set -...
Remove pypy from test matrix (for now)
before_script: - psql -c 'create database wtforms_alchemy_test;' -U postgres language: python python: - 2.6 - 2.7 - 3.3 - pypy env: matrix: - WTFORMS=WTForms==1.0.5 - WTFORMS=wtforms2 install: - "if [ $WTFORMS = wtforms2 ]; then export WTFORMS=https://github.com/wtforms/wtforms/archive/master....
before_script: - psql -c 'create database wtforms_alchemy_test;' -U postgres language: python python: - 2.6 - 2.7 - 3.3 env: matrix: - WTFORMS=WTForms==1.0.5 - WTFORMS=wtforms2 install: - "if [ $WTFORMS = wtforms2 ]; then export WTFORMS=https://github.com/wtforms/wtforms/archive/master.zip; fi" ...
Configure Travis CI to use "node" nvm tag
--- language: node_js node_js: - '4' - '5' sudo: false script: - npm test - npm run lint
--- language: node_js node_js: node sudo: false script: - npm test - npm run lint
Move PHP 5.6 out of allow_failures.
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer self-update - composer require satooshi/php-coveralls:~0.6 --prefer-source --no-interaction --dev script: phpunit -c phpunit.xml --coverage-text after_script: - if [[ "$TRAVIS_PHP_VERSION" != *hhvm* ]]; then php vendor/bin/c...
language: php php: - 5.3 - 5.4 - 5.5 - 5.6 - hhvm before_script: - composer self-update - composer require satooshi/php-coveralls:~0.6 --prefer-source --no-interaction --dev script: phpunit -c phpunit.xml --coverage-text after_script: - if [[ "$TRAVIS_PHP_VERSION" != *hhvm* ]]; then php vendor/bin/c...
Remove LWRF PIR Binary Sensor
#### Binary_Sensors.yaml #### # RFXTRX - platform: rfxtrx automatic_add: True devices: 0a140006f4d6b101010060: name: LWRF_PIR_1
#### Binary_Sensors.yaml #### # RFXTRX - platform: rfxtrx automatic_add: True # devices: # 0a140006f4d6b101010060: # name: LWRF_PIR_1
Update start date for marriage-abroad rates
--- - start_date: 2015-04-06 end_date: 2016-04-05 receiving_notice_of_registration: 65 receiving_notice_of_marriage: 65 issuing_custom_and_law_certificate: 65 issuing_cni_or_nulla_osta: 65 issuing_marriage_certificate: 65 issuing_civil_partnership_certificate: 65 registering_civil_partnership: 140 reg...
--- - start_date: 2015-01-01 end_date: 2016-04-05 receiving_notice_of_registration: 65 receiving_notice_of_marriage: 65 issuing_custom_and_law_certificate: 65 issuing_cni_or_nulla_osta: 65 issuing_marriage_certificate: 65 issuing_civil_partnership_certificate: 65 registering_civil_partnership: 140 reg...
Remove host param in order to make d2bm v2 work
--- applications: - disk_quota: 1024M host: cp-demo name: cp-demo command: "node app.js" path: "." instances: 1 memory: 512M services: - cpblockchain
--- applications: - disk_quota: 1024M name: cp-demo command: "node app.js" path: "." instances: 1 memory: 512M services: - cpblockchain
Fix server's link name to DB instance
- hosts: servers vars_prompt: - name: instance_name prompt: "Instance name of the webserver" default: patchew-server private: no - name: superuser_name prompt: "Admin account to create (optional)" default: "" private: no - name: superuser_pass prompt: "Admin passw...
- hosts: servers vars_prompt: - name: instance_name prompt: "Instance name of the webserver" default: patchew-server private: no - name: superuser_name prompt: "Admin account to create (optional)" default: "" private: no - name: superuser_pass prompt: "Admin passw...
Fix keys usage for Python 2/3 compat
--- - name: disable temporary challenge sites file: path: "{{ nginx_path }}/sites-enabled/letsencrypt-{{ item }}.conf" state: absent with_items: "{{ wordpress_sites.keys() }}" notify: reload nginx
--- - name: disable temporary challenge sites file: path: "{{ nginx_path }}/sites-enabled/letsencrypt-{{ item }}.conf" state: absent with_items: "{{ wordpress_sites.keys() | list }}" notify: reload nginx
Add compose file to run elasticsearch+kibana+fluentd-pilot
version: '2' services: elasticsearch: ports: - 9200:9200 image: elasticsearch kibana: image: kibana ports: - 5601:5601 environment: ELASTICSEARCH_URL: http://elasticsearch:9200/ labels: aliyun.routing.port_5601: kibana links: - elasticsearch # ...
version: '2' services: elasticsearch: ports: - 9200:9200 image: elasticsearch kibana: image: kibana ports: - 5601:5601 environment: ELASTICSEARCH_URL: http://elasticsearch:9200/ labels: aliyun.routing.port_5601: kibana links: - elasticsearch pilot: ...
Add Hull unbookable + Tuesday slots
--- name: Hull nomis_id: HLI address: |- Hedon Road Hull postcode: HU9 5LS email_address: socialvisits.hull@hmps.gsi.gov.uk phone_no: 01482 282413 enabled: true recurring: mon: - 0930-1130 - 1345-1545 fri: - 0930-1130 - 1345-1545 sat: - 0930-1130 - 1345-1545 sun: - 0930-1130 - 1345-1545
--- name: Hull nomis_id: HLI address: |- Hedon Road Hull postcode: HU9 5LS email_address: socialvisits.hull@hmps.gsi.gov.uk phone_no: 01482 282413 enabled: true recurring: mon: - 0930-1130 - 1345-1545 tue: - 0930-1130 - 1345-1545 fri: - 0930-1130 - 1345-1545 sat: - 0930-1130 - 1345-1545 su...
Correct name for changed field
type: object properties: id: type: string description: Unique shift ID format: ObjectId readOnly: true created: type: number description: Timestamp in milliseconds for when the object was created example: 1558604010307 readOnly: true created-by: type: string description: Us...
type: object properties: id: type: string description: Unique shift ID format: ObjectId readOnly: true created: type: number description: Timestamp in milliseconds for when the object was created example: 1558604010307 readOnly: true created-by: type: string description: Us...
Update pointers to Vagrant boxes used in test suite.
--- driver_plugin: vagrant platforms: - name: ubuntu-12.04 driver_config: box: opscode-ubuntu-12.04 box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_provisionerless.box require_chef_omnibus: true customize: memory: 512 run_list: - recipe[apt] - name: centos-6.4 dr...
--- driver_plugin: vagrant platforms: - name: ubuntu-12.04 driver_config: box: opscode-ubuntu-12.04 box_url: http://opscode-vm-bento.s3.amazonaws.com/vagrant/virtualbox/opscode_ubuntu-12.04_chef-provisionerless.box customize: memory: 512 - name: centos-6.5 driver_config: box: opscode-centos-6...
Make RuboCop not count keyword arguments
AllCops: Exclude: - 'spec/samples/**/*' - 'tmp/**/*' - 'vendor/**/*' # FIXME: Make the class shorter Metrics/ClassLength: Exclude: - lib/reek/tree_walker.rb - lib/reek/cli/options.rb # FIXME: Lower the method length by fixing the biggest offenders Metrics/MethodLength: Max: 15 # Be rather l...
AllCops: Exclude: - 'spec/samples/**/*' - 'tmp/**/*' - 'vendor/**/*' # FIXME: Make the class shorter Metrics/ClassLength: Exclude: - lib/reek/tree_walker.rb - lib/reek/cli/options.rb # FIXME: Lower the method length by fixing the biggest offenders Metrics/MethodLength: Max: 15 # Be rather l...
Add rule for ES6 arrow functions: spaces around arrows
# Don't inherit settings from e.g. ~. root: true env: node: true mocha: true parserOptions: # Allow ES6. ecmaVersion: 6 extends: "eslint:recommended" rules: # 2 means error, 1 means warning, 0 means ignore. # Avoid type coercion. eqeqeq: 2 # Style. dot-location: [2, "proper...
# Don't inherit settings from e.g. ~. root: true env: node: true mocha: true parserOptions: # Allow ES6. ecmaVersion: 6 extends: "eslint:recommended" rules: # 2 means error, 1 means warning, 0 means ignore. # Avoid type coercion. eqeqeq: 2 # Style. dot-location: [2, "proper...
Update from Hackage at 2017-09-05T14:02:22Z
homepage: http://github.com/khibino/haskell-product-isomorphic changelog-type: '' hash: cd7bee77706f20788872e444f9cf71fe4096debcd68dca8cc409c7133751c910 test-bench-deps: {} maintainer: ex8k.hibino@gmail.com synopsis: Weaken applicative functor on products changelog: '' basic-deps: base: <5 th-data-compat: -any te...
homepage: http://github.com/khibino/haskell-product-isomorphic changelog-type: '' hash: 1bb3c6a5e3f205249dc3dafc32f4fba57ccee9790ff1fb976d3368226b42a0e2 test-bench-deps: {} maintainer: ex8k.hibino@gmail.com synopsis: Weaken applicative functor on products changelog: '' basic-deps: base: <5 th-data-compat: -any te...
Change Shosetsu AUM to add versionName suffix
Categories: - Reading License: GPL-3.0-only AuthorName: Doomsdayrs SourceCode: https://github.com/ShosetsuOrg/android-app IssueTracker: https://github.com/ShosetsuOrg/android-app/issues Changelog: https://github.com/ShosetsuOrg/android-app/releases AutoName: Shosetsu RepoType: git Repo: https://github.com/ShosetsuO...
Categories: - Reading License: GPL-3.0-only AuthorName: Doomsdayrs SourceCode: https://github.com/ShosetsuOrg/android-app IssueTracker: https://github.com/ShosetsuOrg/android-app/issues Changelog: https://github.com/ShosetsuOrg/android-app/releases AutoName: Shosetsu RepoType: git Repo: https://github.com/ShosetsuO...
Add 'concat_with_spaces' fixers to StyleCI config
preset: recommended disabled: - no_multiline_whitespace_before_semicolons # Allow to put semicolons on a line after the last parenthesis
preset: recommended enabled: - concat_with_spaces disabled: - no_multiline_whitespace_before_semicolons # Allow to put semicolons on a line after the last parenthesis - concat_without_spaces
Use spells for spellshops so it doesn't show spells you already have
phaseshop: inherit: buyshop parameters: items: - item: phase cost: 1000
phaseshop: inherit: buyshop parameters: spells: - item: phase cost: 1000