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 unit-test ; fi' env: global: - TEST=true matrix: - ESLINT=5 - ESLINT=4 - ESLINT=3 after_success: - 'if [ -n "${TEST-}" ]; then npm run coveralls ; fi' matrix: fast_finish: true include: - node_js: 'lts/*' env: PRETEST=true allow_failures: - node_js: '11'
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 unit-test ; fi' env: global: - TEST=true matrix: - ESLINT=next - ESLINT=5 - ESLINT=4 after_success: - 'if [ -n "${TEST-}" ]; then npm run coveralls ; fi' matrix: fast_finish: true include: - node_js: 'lts/*' env: PRETEST=true allow_failures: - node_js: '11' - env: ESLINT=next
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 python -m unittest2; else python -m unittest; fi
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 ]]; then python -m unittest2; else python -m unittest; fi
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 - mkdir -p build/logs # Run tests and generate test coverage report. script: - phpdbg -qrr phpunit -d api_key=$API_KEY --coverage-clover build/logs/clover.xml # Submit test coverage report to Coveralls. after_success: - vendor/bin/coveralls -v # Cache composer bits for faster test suite runs. cache: directories: - $HOME/.composer/cache notifications: email: on_success: change on_failure: always
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 and generate test coverage report. script: - phpunit -d api_key=$API_KEY --coverage-clover build/logs/clover.xml # Submit test coverage report to Coveralls. after_success: - vendor/bin/coveralls -v # Cache composer bits for faster test suite runs. cache: directories: - $HOME/.composer/cache notifications: email: on_success: change on_failure: always
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 build --cache-from $REPO --build-arg VERSION=$TRAVIS_COMMIT --tag $REPO $SRC - docker tag $REPO{,:$TRAVIS_COMMIT} - sonar-scanner after_success: - docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" - docker push $REPO:$TRAVIS_COMMIT - docker push $REPO # jobs: # include: # - stage: deploy # deploy: # on: # branch: master # provider: script # script: # - pip3 install $ANSIBLE # - echo $PRIVATE_KEY > /private_key # - echo $VAULT_PASS > /vault_pass # - ansible-playbook site.yml \ # --inventory-file=hosts-prod \ # --vault-password-file=/vault_pass \ # --private-key=/private_key \ # --extra-vars="version=latest" # env: ANSIBLE="ansible<2.4" notifications: email: false
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: - docker build --cache-from $REPO --build-arg VERSION=$TRAVIS_COMMIT --tag $REPO $SRC - docker tag $REPO{,:$TRAVIS_COMMIT} - sonar-scanner after_success: - docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" - docker push $REPO:$TRAVIS_COMMIT - docker push $REPO # jobs: # include: # - stage: deploy # deploy: # on: # branch: master # provider: script # script: # - pip3 install $ANSIBLE # - echo $PRIVATE_KEY > /private_key # - echo $VAULT_PASS > /vault_pass # - ansible-playbook site.yml \ # --inventory-file=hosts-prod \ # --vault-password-file=/vault_pass \ # --private-key=/private_key \ # --extra-vars="version=latest" # env: ANSIBLE="ansible<2.4" notifications: email: false
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. pip install -r requirements.txt --use-mirrors install: - travis_wait pip install pytest --use-mirrors -q - travis_wait pip install pytest-cov --use-mirrors -q - travis_wait pip install numpy --use-mirrors -q - travis_wait pip install scipy --use-mirrors -q - travis_wait pip install h5py --use-mirrors -q - travis_wait pip install mpi4py --use-mirrors -q - travis_wait pip install scikit-image --use-mirrors -q - travis_wait pip install coveralls --use-mirrors -q # command to run tests, e.g. python setup.py test script: - py.test savu/test -v --cov savu/test --cov-report term-missing after_success: - coveralls debug
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. pip install -r requirements.txt --use-mirrors install: - travis_wait pip install pytest --use-mirrors -q - travis_wait pip install pytest-cov --use-mirrors -q - travis_wait pip install numpy --use-mirrors -q - travis_wait pip install scipy --use-mirrors -q - travis_wait pip install h5py --use-mirrors -q - travis_wait pip install mpi4py --use-mirrors -q - travis_wait pip install scikit-image --use-mirrors -q - travis_wait pip install coveralls --use-mirrors -q # command to run tests, e.g. python setup.py test script: - py.test savu/test -v --cov savu --cov-report term-missing after_success: - coveralls debug
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:prepublish script: - npm test --silent
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 script: - npm test --silent
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 # https://github.com/venmo/slather/issues/39 -- track Swift support status # * https://github.com/venmo/slather#usage language: objective-c osx_image: xcode7.3 xcode_sdk: iphonesimulator9.3 xcode_project: PoseGallery.xcodeproj xcode_scheme: PoseGallery # enable for unsupported toolchains, like pre-release Xcode versions #branches: # except: # - feature/Xcode_(UNSUPPORTED_VERSION) install: - gem install xcpretty-travis-formatter #- gem install slather --no-rdoc --no-ri --no-document --quiet before_script: - cd PoseGallery script: - set -o pipefail && xcodebuild CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -f `xcpretty-travis-formatter` #after_success: slather
# # .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 # https://github.com/venmo/slather/issues/39 -- track Swift support status # * https://github.com/venmo/slather#usage language: objective-c osx_image: xcode7.3 xcode_sdk: iphonesimulator9.3 xcode_project: PoseGallery.xcodeproj # xcode_workspace: <WORKSPACE_PLACEHOLDER> xcode_scheme: PoseGallery # enable for unsupported toolchains, like pre-release Xcode versions #branches: # except: # - feature/Xcode_(UNSUPPORTED_VERSION) before_install: - brew update - brew outdated carthage || brew upgrade carthage install: - gem install xcpretty-travis-formatter #- gem install slather --no-rdoc --no-ri --no-document --quiet before_script: - cd PoseGallery - carthage build --no-skip-current --platform iOS script: - set -o pipefail && xcodebuild CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcpretty -f `xcpretty-travis-formatter` #after_success: slather
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; then go get golang.org/x/tools/cmd/cover; fi - go get github.com/mattn/goveralls script: - go get -d -t -v ./... - go build -v ./... - go test -v -covermode=count -coverprofile=coverage.out - diff <(gofmt -d .) <("") - if [[ $TRAVIS_SECURE_ENV_VARS = "true" ]]; then $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN; fi after_failure: failure notifications: email: recipients: - jonathan.lawlor@gmail.com on_success: change on_failure: always
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/cmd/cover; then go get golang.org/x/tools/cmd/cover; fi - go get github.com/mattn/goveralls script: - go get -d -t -v ./... - go build -v ./... - go test -v -covermode=count -coverprofile=coverage.out - diff <(gofmt -d .) <("") - if [[ $TRAVIS_SECURE_ENV_VARS = "true" ]]; then $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci -repotoken $COVERALLS_TOKEN; fi after_failure: failure notifications: email: recipients: - jonathan.lawlor@gmail.com on_success: change on_failure: always
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 swh::deploy::storage::db::port: 5432 hitch::frontend: "[*]:443" hitch::proxy_support: true varnish::http_port: 80 apache::http_port: 9080 # Disabled as it seems to be flaky #hitch::http2_support: true #varnish::http2_support: true # Disable default vhost on port 80 apache::default_vhost: false swh::deploy::webapp::vhost::name: archive.softwareheritage.org swh::deploy::webapp::vhost::aliases: - base.softwareheritage.org - archive.internal.softwareheritage.org swh::remote_service::storage::config: "%{alias('swh::remote_service::storage::config::localhost')}"
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: somerset swh::deploy::storage::db::port: 5433 hitch::frontend: "[*]:443" hitch::proxy_support: true varnish::http_port: 80 apache::http_port: 9080 # Disabled as it seems to be flaky #hitch::http2_support: true #varnish::http2_support: true # Disable default vhost on port 80 apache::default_vhost: false swh::deploy::webapp::vhost::name: archive.softwareheritage.org swh::deploy::webapp::vhost::aliases: - base.softwareheritage.org - archive.internal.softwareheritage.org swh::remote_service::storage::config: "%{alias('swh::remote_service::storage::config::localhost')}"
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 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Decode Firebase google-services.json env: FIREBASE_CONFIG: ${{secrets.FIREBASE_CONFIG}} run: echo $FIREBASE_CONFIG > app/google-services.json - name: Run ktlint run: ./gradlew ktlint - name: Run Android lint run: ./gradlew lintDebug - name: Run unit tests run: ./gradlew testDebugUnitTest - name: Execute Instrumentation Tests (gradlew connectedCheck - api 23) uses: reactivecircus/android-emulator-runner@v2 with: api-level: 23 target: default arch: x86 profile: Nexus 6 script: ./gradlew app:connectedCheck --stacktrace
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 uses: actions/setup-java@v1 with: java-version: 1.8 - name: Decode Firebase google-services.json env: FIREBASE_CONFIG: ${{secrets.FIREBASE_CONFIG}} run: echo $FIREBASE_CONFIG > app/google-services.json - name: Run ktlint run: ./gradlew ktlint - name: Run Android lint run: ./gradlew lintDebug - name: Run unit tests run: ./gradlew testDebugUnitTest - name: Execute Instrumentation Tests (gradlew connectedCheck - api 23) uses: reactivecircus/android-emulator-runner@v2 with: api-level: 23 target: default arch: x86 profile: Nexus 6 script: ./gradlew app:connectedCheck --stacktrace
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.12' pipes: ! '>=4.1 && <4.4' vector: ! '>=0.11 && <0.13' all-versions: - '1.0.0' - '1.0.0.1' - '1.0.0.2' - '1.0.0.3' - '1.0.0.4' author: Colin Woodbury latest: '1.0.0.4' description-type: haddock description: Producers for handling randomness. license-name: BSD3
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.12' pipes: ! '>=4.1 && <4.4' vector: ! '>=0.11 && <0.13' all-versions: - '1.0.0' - '1.0.0.1' - '1.0.0.2' - '1.0.0.3' - '1.0.0.4' author: Colin Woodbury latest: '1.0.0.4' description-type: haddock description: Producers for handling randomness. license-name: BSD3
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 command: - ./presubmit.sh annotations: testgrid-create-test-group: 'true'
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 command: - ./presubmit.sh annotations: testgrid-create-test-group: 'true'
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.nguyen.paul@gmail.com" twitter: "paululele" instagram: "paululele" github: "lenpaul" facebook: "Le.Paul.94" linkedin: "lenpaul" navigation: - title: About url: /about - title: Writing url: /writing - title: Contact url: /contact paginate: 5 disqus: #"your-disqus" # Build settings markdown: kramdown highlighter: rouge permalink: none gems: [jekyll-paginate]
# 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.nguyen.paul@gmail.com" twitter: "paululele" instagram: "paululele" github: "lenpaul" facebook: "Le.Paul.94" linkedin: "lenpaul" navigation: - title: About url: /about - title: Writing url: /writing - title: Contact url: /contact paginate: 5 disqus: #"your-disqus" # Build settings markdown: kramdown highlighter: rouge permalink: none gems: [jekyll-paginate]
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.8' maintainer: oss@xkcd.com synopsis: Parse machines streams with attoparsec parsers. changelog: | # Revision history for machines-attoparsec ## 0 -- 2019-01-31 * First version. Released on an unsuspecting world. basic-deps: bytestring: ^>=0.10 base: ! '>=4.12 && <4.14' text: ^>=1.2 attoparsec: ^>=0.13 machines: ! '>=0.6 && <0.8' all-versions: - '0' author: davean latest: '0' description-type: haddock description: Cnvert streams of Text and ByteStrings to datatypes via attoparsec parsers. license-name: BSD-3-Clause
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 && <0.8' maintainer: oss@xkcd.com synopsis: Parse machines streams with attoparsec parsers. changelog: | # Revision history for machines-attoparsec ## 0 -- 2019-01-31 * First version. Released on an unsuspecting world. basic-deps: bytestring: '>=0.10 && <0.12' base: '>=4.12 && <4.16' text: ^>=1.2 attoparsec: ^>=0.13 machines: '>=0.6 && <0.8' all-versions: - '0' author: davean latest: '0' description-type: haddock description: Cnvert streams of Text and ByteStrings to datatypes via attoparsec parsers. license-name: BSD-3-Clause
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 min: count: 1 required: assignees: true - when: issues.opened validate: - do: description no_empty: enabled: false
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-9]\.[0-9]+$' - do: approvals min: count: 1 required: assignees: true - when: issues.opened validate: - do: description no_empty: enabled: false
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: Install dependencies cmd: | pip install docker-compose==1.24.1 - desc: Acceptance Test cmd: | ./gradlew fullAcceptanceTest --stacktrace - desc: Push to repo cmd: | ./gradlew clean bootRepackage if [ "$CDP_PULL_REQUEST_NUMBER" ]; then IMAGE="registry-write.opensource.zalan.do/aruha/nakadi-oss:${CDP_BUILD_VERSION}" else IMAGE="registry-write.opensource.zalan.do/aruha/nakadi-oss-test:${CDP_BUILD_VERSION}" fi docker build -t ${IMAGE} . docker push ${IMAGE}
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: Install dependencies cmd: | pip install docker-compose==1.24.1 - desc: Acceptance Test cmd: | ./gradlew fullAcceptanceTest --stacktrace - desc: Push to repo cmd: | ./gradlew clean bootRepackage if [ "$CDP_PULL_REQUEST_NUMBER" ]; then # Maybe it makes no sense to push PRs to this repo, as it won't be used IMAGE="registry-write.opensource.zalan.do/aruha/nakadi-oss-test:${CDP_BUILD_VERSION}" else IMAGE="registry-write.opensource.zalan.do/aruha/nakadi-oss:${CDP_BUILD_VERSION}" fi docker build -t ${IMAGE} . docker push ${IMAGE}
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: ! '# Revision history for system-linux-memory ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: ==0.10.* base: ! '>=4.8 && <5.0' text: ==1.2.* containers: ==0.5.* attoparsec: ! '>=0.12 && <0.14' errors: ==2.2.* directory: ! '>=1.2 && <1.4' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' author: Erik de Castro Lopo latest: '0.1.0.2' description-type: haddock description: '' license-name: BSD3
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: ! '# Revision history for system-linux-memory ## 0.1.0.0 -- YYYY-mm-dd * First version. Released on an unsuspecting world. ' basic-deps: bytestring: ==0.10.* base: ! '>=4.8 && <5.0' text: ==1.2.* containers: ==0.5.* attoparsec: ! '>=0.12 && <0.14' errors: ==2.2.* directory: ! '>=1.2 && <1.4' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' author: Erik de Castro Lopo latest: '0.1.0.3' description-type: haddock description: '' license-name: BSD3
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: - checkout - restore_cache: keys: - cache-{{ checksum "Pipfile.lock" }} - cache- - run: name: Install dependencies command: | python3 -m venv .venv pip install --user pipenv pipenv sync --dev - save_cache: key: cache-{{ checksum "Pipfile.lock" }} paths: - ~/.local - ~/.cache - run: name: run tests command: | pipenv run flake8 bamboo_crawler tests export AWS_ACCESS_KEY_ID='1234' export AWS_SECRET_ACCESS_KEY='5678' pipenv run python setup.py test - store_artifacts: path: test-reports destination: test-reports
# Python CircleCI 2.0 configuration file # # Check https://circleci.com/docs/2.0/language-python/ for more details # version: 2 jobs: build: docker: - image: circleci/python:3.9.0@sha256:d3b98ca680b40e72ac7ffede2caefa9c98e5b3f925894ff2939b775f0d26abc1 working_directory: ~/repo steps: - checkout - restore_cache: keys: - cache-{{ checksum "Pipfile.lock" }} - cache- - run: name: Install dependencies command: | python3 -m venv .venv pip install --user pipenv pipenv sync --dev - save_cache: key: cache-{{ checksum "Pipfile.lock" }} paths: - ~/.local - ~/.cache - run: name: run tests command: | pipenv run flake8 bamboo_crawler tests export AWS_ACCESS_KEY_ID='1234' export AWS_SECRET_ACCESS_KEY='5678' pipenv run python setup.py test - store_artifacts: path: test-reports destination: test-reports
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 profile::openstack::database::sql::extra_databases: horizon: # Session database password: "%{hiera('horizon_db_password')}" user: 'horizon' host: "%{hiera('netcfg_trp_netpart')}.51" horizon-mgmt: # Session database password: "%{hiera('horizon_db_password')}" user: 'horizon' host: "%{hiera('netcfg_trp_netpart')}.54"
--- # 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 profile::openstack::database::sql::extra_databases: horizon: # Session database password: "%{hiera('horizon_db_password')}" user: 'horizon' host: "%{hiera('netcfg_trp_netpart')}.51" horizon-mgmt: # Session database password: "%{hiera('horizon_db_password')}" user: 'horizon' host: "%{hiera('netcfg_trp_netpart')}.54" # regional db has a couple of large db's, purge local copy more often profile::database::mariadb::backuprotate: 3
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: tue: - 1400-1600 wed: - 1400-1600 sat: - 1400-1600 sun: - 1400-1600 unbookable: - 2019-12-17 - 2019-12-25 - 2020-01-01
--- 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: tue: - 1400-1600 wed: - 1400-1600 sat: - 1400-1600 sun: - 1400-1600 unbookable: - 2019-12-17 - 2019-12-25 - 2020-01-01 anomalous: 2019-12-23: - 1400-1600 2019-12-30: - 1400-1600
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-version }} - name: npm install, build, and test run: | npm ci npm test env: CI: true
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-version }} - name: npm install, build, and test run: | npm ci npm test env: CI: true
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/code.rb - lib/rrj/janus/responses/response.rb
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 group=root mode=644 - copy: dest="/etc/cron.{{acts_cron_frequency}}/acts" content="#!/bin/sh\nacts\n" owner=root group=root mode=755
--- - 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 group=root mode=0640 - copy: dest="/etc/cron.{{acts_cron_frequency}}/acts" content="#!/bin/sh\nacts\n" owner=root group=root mode=0640
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 && <5' filepath: -any process: -any cond: ! '>=0.2' pandoc-types: ! '>=1.12' regex-compat: -any temporary: ! '>=1.1' directory: -any all-versions: - '0.1.0.0' - '0.1.1.0' author: Alexey Radkov <alexey.radkov@gmail.com> latest: '0.1.1.0' description-type: haddock description: ! 'Pandoc filter for native Vim code highlighting in HTML and PDF documents. Requires Vim and plugin <http://github.com/lyokha/vim-publish-helper vim-publish-helper>' license-name: BSD3
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 treatment of handles of temporary files.\n- Using *WriteMode* for vim process *std_in* prevents vim from getting\n unresponsive on *Ctrl-C* interrupts while still doing well its tasks.\n- Using */dev/null* for vim process *std_out*.\n- Exit program as soon as vim fails.\n\n" basic-deps: base: ! '>=4.7 && <5' filepath: -any process: -any cond: ! '>=0.2' pandoc-types: ! '>=1.12' regex-compat: -any temporary: ! '>=1.1' directory: -any all-versions: - '0.1.0.0' - '0.1.1.0' - '0.1.2.0' author: Alexey Radkov <alexey.radkov@gmail.com> latest: '0.1.2.0' description-type: haddock description: ! 'Pandoc filter for native Vim code highlighting in HTML and PDF documents. Requires Vim and plugin <http://github.com/lyokha/vim-publish-helper vim-publish-helper>.' license-name: BSD3
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' containers: ! '>=0.5 && <0.7' ghc-prim: -any all-versions: - 1.9.2.1 - 1.9.3.1 - 1.9.4.1 - 1.10.1.1 - 1.10.2.1 - 1.10.2.3 - 1.11.1.1 - 1.12.0.0 - 1.13.0.1 author: Ben Lippmeier latest: 1.13.0.1 description-type: haddock description: Data structures and algorithms for working with 2D graphics. license-name: MIT
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' containers: '>=0.5 && <0.7' ghc-prim: -any all-versions: - 1.9.2.1 - 1.9.3.1 - 1.9.4.1 - 1.10.1.1 - 1.10.2.1 - 1.10.2.3 - 1.11.1.1 - 1.12.0.0 - 1.13.0.1 - 1.13.0.2 author: Ben Lippmeier latest: 1.13.0.2 description-type: haddock description: Data structures and algorithms for working with 2D graphics. license-name: MIT
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/nekohasekai/VPNHotspot Builds: - versionName: 2.11.4 versionCode: 257 commit: v2.11.4 subdir: mobile gradle: - freedom - versionName: 2.11.6 versionCode: 259 commit: v2.11.6 subdir: mobile gradle: - freedom AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 2.11.6 CurrentVersionCode: 259
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/nekohasekai/VPNHotspot Builds: - versionName: 2.11.4 versionCode: 257 commit: v2.11.4 subdir: mobile gradle: - freedom - versionName: 2.11.6 versionCode: 259 commit: v2.11.6 subdir: mobile gradle: - freedom - versionName: 2.11.7 versionCode: 260 commit: v2.11.7 subdir: mobile gradle: - freedom AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 2.11.7 CurrentVersionCode: 260
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: base: ! '>=4.7 && <5' text: -any all-versions: - 0.1.0.0 author: Alexander Thiemann latest: 0.1.0.0 description-type: markdown description: ! '# format-numbers [![CircleCI](https://circleci.com/gh/agrafix/format-numbers.svg?style=svg)](https://circleci.com/gh/agrafix/format-numbers) Various number formatting functions ' license-name: MIT
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: base: ! '>=4.7 && <5' text: -any all-versions: - 0.1.0.0 - 0.1.0.1 author: Alexander Thiemann latest: 0.1.0.1 description-type: markdown description: | # format-numbers [![CircleCI](https://circleci.com/gh/agrafix/format-numbers.svg?style=svg)](https://circleci.com/gh/agrafix/format-numbers) Various number formatting functions license-name: MIT
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 }} sha256: {{ sha256 }} build: number: 0 script: "tclsh installer.tcl -no-wait -no-gui -no-html -no-nroff -no-examples" requirements: host: - tk - tcllib run: - tk - tcllib test: commands: - echo package require cursor;exit | tclsh -- - echo package require menubar;exit | tclsh -- about: home: https://core.tcl-lang.org/tklib/home license: BSD-3-Clause license_family: BSD license_file: license.terms summary: 'A companion to Tcllib, for Tk related packages.' doc_url: https://core.tcl-lang.org/tklib/doc/trunk/embedded/www/toc.html extra: recipe-maintainers: - abloemert
{% 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 }} sha256: {{ sha256 }} fn: source.tar.gz build: number: 0 script: "tclsh installer.tcl -no-wait -no-gui -no-html -no-nroff -no-examples" requirements: host: - tk - tcllib run: - tk - tcllib test: commands: - echo package require cursor;exit | tclsh -- - echo package require menubar;exit | tclsh -- about: home: https://core.tcl-lang.org/tklib/home license: BSD-3-Clause license_family: BSD license_file: license.terms summary: 'A companion to Tcllib, for Tk related packages.' doc_url: https://core.tcl-lang.org/tklib/doc/trunk/embedded/www/toc.html extra: recipe-maintainers: - abloemert
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 fail if we are still vulnerable shell: executable=bash env x='() { :;}; echo vulnerable' bash -c "echo this is a test" when: "'vulnerable' in test_vuln.stdout" register: test_vuln failed_when: "'vulnerable' in test_vuln.stdout"
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: - 7 - name: Ubuntu versions: - trusty - utopic - vivid - wily - xenial - name: Debian versions: - etch - jessie galaxy_tags: - system - minio - storage - object-storage - s3 dependencies: []
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: - 7 - name: Fedora versions: - 27 - name: Ubuntu versions: - trusty - utopic - vivid - wily - xenial - name: Debian versions: - etch - jessie galaxy_tags: - system - minio - storage - object-storage - s3 dependencies: []
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 versionCode: 28 commit: v1.3.3 subdir: app gradle: - yes - versionName: 1.3.4 versionCode: 29 commit: v1.3.4 subdir: app gradle: - yes - versionName: 1.4.0 versionCode: 30 commit: v1.4.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.4.0 CurrentVersionCode: 30
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 versionCode: 28 commit: v1.3.3 subdir: app gradle: - yes - versionName: 1.3.4 versionCode: 29 commit: v1.3.4 subdir: app gradle: - yes - versionName: 1.4.0 versionCode: 30 commit: v1.4.0 subdir: app gradle: - yes - versionName: 1.4.1 versionCode: 31 commit: v1.4.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.4.1 CurrentVersionCode: 31
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_BRANCH && git status' # Install Ruby dependencies run: &bundle_install name: Bundle Install command: 'gem install bundler && bundle --version && bundle install' jobs: test: parameters: ruby-version: type: string docker: - image: circleci/ruby:<< parameters.ruby-version >> steps: - checkout - *checkout - run: *bundle_install - run: bundle exec rubocop - run: name: 'Test gem' command: rake test # using a matrix to test against multiple Ruby version # https://circleci.com/docs/2.0/configuration-reference/#matrix-requires-version-21 workflows: test: jobs: - test: matrix: parameters: ruby-version: ["2.7.1", "2.7.3"]
# 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_BRANCH && git status' # Install Ruby dependencies run: &bundle_install name: Bundle Install command: 'gem install bundler && bundle --version && bundle install' jobs: test: parameters: ruby-version: type: string docker: - image: cimg/ruby:<< parameters.ruby-version >> steps: - checkout - *checkout - run: *bundle_install - run: bundle exec rubocop - run: name: 'Test gem' command: rake test # using a matrix to test against multiple Ruby version # https://circleci.com/docs/2.0/configuration-reference/#matrix-requires-version-21 workflows: test: jobs: - test: matrix: parameters: ruby-version: ["2.7.1", "2.7.3"]
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 - firefox - go-toolchain - google-chrome - jdk - memcached - mongodb - phantomjs - postgresql - rabbitmq - redis - sphinxsearch - sqlite - xserver
--- 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 - chromium - docker - elasticsearch - emacs - firefox - go-toolchain - google-chrome - jdk - memcached - mongodb - perlbrew - phantomjs - php_interpreter - postgresql - rabbitmq - redis - sphinxsearch - sqlite - xserver
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: Install Cirq nightly run: pip3 install -U cirq --pre - name: Install qsim requirements run: pip3 install -r requirements.txt - name: Run python tests run: make run-py-tests
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: Install Cirq nightly run: pip3 install -U cirq --pre - name: Install qsim requirements run: pip3 install -r requirements.txt - name: Run python tests run: make run-py-tests
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' text: -any monad-logger: -any all-versions: - '0.1.0.0' author: Pavel Kogan latest: '0.1.0.0' description-type: haddock description: ! 'This library builds on monad-logger to provide logging functions with automatic source locations. It does so using the GHC CallStack mechanism, instead of Template Haskell.' license-name: BSD3
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' text: -any monad-logger: -any all-versions: - '0.1.0.0' - '0.1.1.0' author: Pavel Kogan latest: '0.1.1.0' description-type: haddock description: ! 'This library builds on monad-logger to provide logging functions with automatic source locations. It does so using the GHC CallStack mechanism, instead of Template Haskell.' license-name: BSD3
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 }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm test env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Run codacy-coverage-reporter if: github.event_name == 'push' uses: codacy/codacy-coverage-reporter-action@master with: project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} coverage-reports: coverage/lcov.info
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 }} uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} - run: npm ci - run: npm test env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Run codacy-coverage-reporter if: github.event_name == 'push' uses: codacy/codacy-coverage-reporter-action@master with: project-token: ${{ secrets.CODACY_PROJECT_TOKEN }} coverage-reports: coverage/lcov.info
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' process: '>=1.1 && <1.7' chunked-data: '>=0.1 && <0.4' machines-io: '>=0.2 && <7.1' machines: '>=0.2 && <0.8' all-versions: - 0.0.0.1 - 0.2.0.0 - 0.2.0.2 - 0.2.0.4 - 0.2.0.6 - 0.2.0.7 - 0.2.0.8 - 0.2.0.10 - 7.0.0.0 - 7.0.0.1 author: Alois Cochard latest: 7.0.0.1 description-type: haddock description: '' license-name: Apache-2.0
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' process: '>=1.1 && <1.7' chunked-data: '>=0.1 && <0.4' machines-io: '>=0.2 && <7.1' machines: '>=0.2 && <0.8' all-versions: - 0.0.0.1 - 0.2.0.0 - 0.2.0.2 - 0.2.0.4 - 0.2.0.6 - 0.2.0.7 - 0.2.0.8 - 0.2.0.10 - 7.0.0.0 - 7.0.0.1 - 7.0.0.2 author: Alois Cochard latest: 7.0.0.2 description-type: haddock description: '' license-name: Apache-2.0
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_ipv4: '172.31.34.102' c4: peer_ipv4: '172.31.34.103' c5: peer_ipv4: '172.31.34.104' c6: peer_ipv4: '172.31.34.105' # compute node settings calico::compute::peer_defaults: peer_as: 65535 local_as: 65535 local_ipv4: "%{ipaddress_transport1}" # compute node to RR connection (set per location) calico::compute::peers: rr1: peer_ipv4: '172.31.34.20'
--- 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_ipv4: '172.31.34.102' c4: peer_ipv4: '172.31.34.103' c5: peer_ipv4: '172.31.34.104' c6: peer_ipv4: '172.31.34.105' c7: peer_ipv4: '172.31.34.5' c8: peer_ipv4: '172.31.34.6' # compute node settings calico::compute::peer_defaults: peer_as: 65535 local_as: 65535 local_ipv4: "%{ipaddress_transport1}" # compute node to RR connection (set per location) calico::compute::peers: rr1: peer_ipv4: '172.31.34.20'
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' maintainer: sylvain@haskus.fr synopsis: Haskus binary format manipulation changelog: '' basic-deps: cereal: ! '>=0.5' bytestring: ! '>=0.10' base: ! '>=4.9 && <4.10' mtl: ! '>=2.2' haskus-utils: ! '>=0.6' all-versions: - '0.6.0.0' author: Sylvain Henry latest: '0.6.0.0' description-type: haddock description: ! 'A set of types and tools to manipulate binary data, memory, etc. In particular to interface Haskell data types with foreign data types (C structs, unions, enums, etc.).' license-name: BSD3
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-utils: ==1.0.* tasty: ! '>=0.11 && <1.2' QuickCheck: ! '>=2.8 && <2.12' maintainer: sylvain@haskus.fr synopsis: Haskus binary format manipulation changelog: '' basic-deps: cereal: ==0.5.* bytestring: ==0.10.* base: ! '>=4.9 && <4.12' mtl: ==2.2.* haskus-utils: ! '>=0.6 && <1.1' all-versions: - '0.6.0.0' - '1.0' author: Sylvain Henry latest: '1.0' description-type: haddock description: ! 'A set of types and tools to manipulate binary data, memory, etc. In particular to interface Haskell data types with foreign data types (C structs, unions, enums, etc.).' license-name: BSD3
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 subdependencies) update_type: "all" automerged_updates: - match: dependency_type: "development" update_type: "all" - match: dependency_type: "production" update_type: "semver:patch" - match: dependency_name: "rubocop" update_type: "all" # Enable. Only lockfile updates (ignore updates that require Gemfile changes) version_requirement_updates: "off"
# 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 subdependencies) update_type: "all" automerged_updates: - match: dependency_type: "development" update_type: "all" - match: dependency_type: "production" update_type: "semver:patch" - match: dependency_name: "rubocop*" update_type: "all" # Enable. Only lockfile updates (ignore updates that require Gemfile changes) version_requirement_updates: "off"
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 command: site.yml --extra-vars="probe_host=db probe_port=3306"
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 hostname: db expose: - "3306" environment: MYSQL_ROOT_PASSWORD: pass1234 MYSQL_DATABASE: sampledjangoapp MYSQL_USER: sampledjangoapp MYSQL_PASSWORD: pass1234 agent: image: mycompany/myapp-agent:latest volumes: - ../ansible/agent:/ansible command: site.yml --extra-vars="probe_host=db probe_port=3306"
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 dest: /etc/yum.repos.d/fedora-pulp.repo - name: Install required packages dnf: name={{ item }} state=present with_items: - "@pulp-consumer-qpid" - name: Start and enable goferd service: name=goferd state=started enabled=yes
--- - 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 dest: /etc/yum.repos.d/fedora-pulp.repo - name: Install required packages dnf: name={{ item }} state=present with_items: - "@pulp-consumer-qpid" - name: Start and enable goferd service: name=goferd state=started enabled=yes - name: Configure admin client - set localhost as server lineinfile: dest: /etc/pulp/consumer/consumer.conf insertafter: '^\[server\]' line: "host: pulp1.example.org" state: present notify: restart goferd
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) running" after-steps: - turistforeningen/slack-notifier: url: $SLACK_WEBHOOK_URL deploy: steps: - add-ssh-key: keyname: SSH_KEY host: $SSH_HOST - add-to-known_hosts: hostname: $SSH_HOST - script: name: start application code: | ssh -l ${SSH_USER} ${SSH_HOST} \ COMPOSE_FILE=docker-paas.yml \ /var/www/config/manage.sh ${SSH_APP} update --rebuild after-steps: - turistforeningen/slack-notifier: url: $SLACK_WEBHOOK_URL
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 "node version $(node -v) running" echo "npm version $(npm -v) running" after-steps: - turistforeningen/slack-notifier: url: $SLACK_WEBHOOK_URL deploy: steps: - add-ssh-key: keyname: SSH_KEY host: $SSH_HOST - add-to-known_hosts: hostname: $SSH_HOST - script: name: start application code: | ssh -l ${SSH_USER} ${SSH_HOST} \ COMPOSE_FILE=docker-paas.yml \ /var/www/config/manage.sh ${SSH_APP} update --rebuild after-steps: - turistforeningen/slack-notifier: url: $SLACK_WEBHOOK_URL
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 fix_use_statements: remove_unused: true preserve_multiple: false preserve_blanklines: true order_alphabetically: true tools: php_code_coverage: true php_code_sniffer: config: standard: PSR2 filter: paths: ["src"] php_loc: enabled: true excluded_dirs: ["vendor", "tests"] php_cpd: enabled: true excluded_dirs: ["vendor", "tests"]
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 remove_trailing_whitespace: true fix_linefeed: true fix_line_ending: true fix_doc_comments: true fix_php_opening_tag: true fix_identation_4spaces: true fix_use_statements: remove_unused: true preserve_multiple: false preserve_blanklines: true order_alphabetically: true tools: php_code_coverage: true php_code_sniffer: config: standard: PSR2 filter: paths: ["src"] php_loc: enabled: true excluded_dirs: ["vendor", "tests"] php_cpd: enabled: true excluded_dirs: ["vendor", "tests"]
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 - cpanm ExtUtils::Depends - cpanm --installdeps . - perl Makefile.PL - make TEST_VERBOSE=1 test perl:latest: <<: *build perl:5.24: <<: *build
--- 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 install inkscape ffmpeg bs1770gain - cpanm ExtUtils::Depends - cpanm --installdeps . - perl Makefile.PL - make TEST_VERBOSE=1 test perl:latest: <<: *build perl:5.24: <<: *build .deb: &deb stage: deb image: $CI_JOB_NAME before_script: - apt-get update; apt-get -y --no-install-recommends install devscripts equivs - mk-build-deps -r -i -t "apt-get -y -o Debug::pkgProblemResolver=yes --no-install-recommends" script: - dpkg-buildpackage -us -uc -i -I.git after_sccript: - mkdir products - dcmd mv ../*ges products/ artifacts: paths: - products debian:stable: <<: *deb debian:unstable: <<: *deb
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_config_deploy - govuk_jenkins::jobs::passive_checks - govuk_jenkins::jobs::run_rake_task govuk_jenkins::packages::terraform::version: '0.11.2'
--- 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::passive_checks - govuk_jenkins::jobs::run_rake_task govuk_jenkins::packages::terraform::version: '0.11.2'
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-me: name: Auto-merge Dependabot PRs runs-on: ubuntu-latest steps: - name: Auto-Merge if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ridedott/merge-me-action@v2.9.58 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: 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-me: name: Auto-merge Dependabot PRs runs-on: ubuntu-latest steps: - name: Auto-Merge if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ridedott/merge-me-action@v2.9.60 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_METHOD: 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: PATH: $PATH:`pwd`/cmd_line/enum/Linux_64bit
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 - nosetests: environment: PATH: $PATH:`pwd`/cmd_line/enum/Linux_64bit
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" test: override: - make html deployment: production: branch: master commands: - make deploy - git checkout gh-pages - rm -rf * - git checkout master -- circle.yml - tar xvf .site.tar - git add --all - git commit -m "Website rebuild" - git push origin gh-pages - git checkout master
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" test: override: - make html deployment: production: branch: master commands: - make deploy - git checkout gh-pages - rm -r * - git checkout master -- circle.yml - tar xvf .site.tar - git add --all - git commit -m "Website rebuild" - git push origin gh-pages - git checkout master
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/archwiki-viewer/releases AutoName: ArchWiki Viewer Description: Quickly view Arch Linux Wiki articles on your phone with an easy to read format. RepoType: git Repo: https://github.com/kevinhinterlong/archwiki-viewer Builds: - versionName: 1.0.7 versionCode: 8 commit: v1.0.7 subdir: app gradle: - yes - versionName: 1.0.11 versionCode: 12 commit: v1.0.11 subdir: app gradle: - yes - versionName: 1.0.13 versionCode: 14 commit: v1.0.13 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.0.13 CurrentVersionCode: 14
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/archwiki-viewer/releases AutoName: ArchWiki Viewer Description: Quickly view Arch Linux Wiki articles on your phone with an easy to read format. RepoType: git Repo: https://github.com/kevinhinterlong/archwiki-viewer Builds: - versionName: 1.0.7 versionCode: 8 commit: v1.0.7 subdir: app gradle: - yes - versionName: 1.0.11 versionCode: 12 commit: v1.0.11 subdir: app gradle: - yes - versionName: 1.0.13 versionCode: 14 commit: v1.0.13 subdir: app gradle: - yes - versionName: 1.0.14 versionCode: 15 commit: v1.0.14 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags CurrentVersion: 1.0.14 CurrentVersionCode: 15
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.ident: name as name
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(depth = any): @rewrite "Test{{name}}" @review comment go.ident: name as name
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 application.md - _projects/dataviz.md - _projects/emuzikos.md - _projects/roomorama.md
--- 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_format: display_utc: false pages: - _projects/Bluesquare brand identity.md - _projects/Hesabu.md - _projects/Stratégie - Plainte - Traitements application.md - _projects/dataviz.md - _projects/emuzikos.md - _projects/roomorama.md
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: - python-troveclient-tempest-neutron-src - trove-functional-mysql gate: queue: trove jobs: - python-troveclient-tempest-neutron-src - trove-functional-mysql - job: name: python-troveclient-tempest-neutron-src parent: devstack-tempest timeout: 7800 required-projects: - openstack-dev/devstack - openstack-infra/devstack-gate - openstack/ara - openstack/neutron - openstack/python-troveclient - openstack/trove - openstack/trove-dashboard - openstack/tempest - openstack/trove-tempest-plugin vars: tox_envlist: full devstack_localrc: TEMPEST_PLUGINS: /opt/stack/trove-tempest-plugin devstack_plugins: trove: git://git.openstack.org/openstack/trove
- 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: - python-troveclient-tempest-neutron-src - trove-functional-mysql - trove-scenario-mysql-single gate: queue: trove jobs: - python-troveclient-tempest-neutron-src - trove-functional-mysql - trove-scenario-mysql-single - job: name: python-troveclient-tempest-neutron-src parent: devstack-tempest timeout: 7800 required-projects: - openstack-dev/devstack - openstack-infra/devstack-gate - openstack/ara - openstack/neutron - openstack/python-troveclient - openstack/trove - openstack/trove-dashboard - openstack/tempest - openstack/trove-tempest-plugin vars: tox_envlist: full devstack_localrc: TEMPEST_PLUGINS: /opt/stack/trove-tempest-plugin devstack_plugins: trove: git://git.openstack.org/openstack/trove
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 unordered-containers: -any text: -any basic-prelude: -any monad-control: -any fast-logger: -any lens: -any text-manipulate: -any mtl: -any transformers-base: -any monad-logger: -any resourcet: -any aeson: -any template-haskell: -any safe: -any all-versions: - '0.0.1' - '0.0.2' - '0.0.3' - '0.0.4' - '0.0.5' - '0.0.6' - '0.0.7' - '0.0.8' - '0.0.9' author: Swift Navigation Inc. latest: '0.0.9' description-type: haddock description: A prelude built on basic-prelude. license-name: MIT
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 unordered-containers: -any text: -any basic-prelude: -any monad-control: -any fast-logger: -any lens: -any text-manipulate: -any mtl: -any transformers-base: -any monad-logger: -any resourcet: -any aeson: -any template-haskell: -any safe: -any all-versions: - '0.0.1' - '0.0.2' - '0.0.3' - '0.0.4' - '0.0.5' - '0.0.6' - '0.0.7' - '0.0.8' - '0.0.9' - '0.0.10' author: Swift Navigation Inc. latest: '0.0.10' description-type: haddock description: A prelude built on basic-prelude. license-name: MIT
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: type: console snc_redis: doctrine: metadata_cache: client: default entity_manager: default result_cache: client: default entity_manager: default query_cache: client: default entity_manager: default
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 path: '%kernel.logs_dir%/%kernel.environment%.log' level: debug console: type: console snc_redis: doctrine: metadata_cache: client: default entity_manager: default result_cache: client: default entity_manager: default query_cache: client: default entity_manager: default
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], from: '7:30am', to: '4:00pm'} - {days: [Fr], from: '7:30am', to: '12:00pm'}
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], from: '7:30am', to: '4:00pm'} - {days: [Fr], from: '7:30am', to: '12:00pm'}
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 # - trove-functional-mysql # - trove-scenario-mysql-single # gate: # queue: trove # jobs: # - python-troveclient-tempest-neutron-src # - trove-functional-mysql # - trove-scenario-mysql-single #- job: # name: python-troveclient-tempest-neutron-src # parent: devstack-tempest # timeout: 7800 # required-projects: # - openstack/devstack # - openstack/devstack-gate # - recordsansible/ara # - openstack/neutron # - openstack/python-troveclient # - openstack/trove # - openstack/trove-dashboard # - openstack/tempest # - openstack/trove-tempest-plugin # vars: # tox_envlist: full # devstack_localrc: # TEMPEST_PLUGINS: /opt/stack/trove-tempest-plugin # devstack_plugins: # trove: https://opendev.org/openstack/trove
- 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 # - trove-functional-mysql # - trove-scenario-mysql-single # gate: # queue: trove # jobs: # - python-troveclient-tempest-neutron-src # - trove-functional-mysql # - trove-scenario-mysql-single #- job: # name: python-troveclient-tempest-neutron-src # parent: devstack-tempest # timeout: 7800 # required-projects: # - openstack/devstack # - openstack/devstack-gate # - recordsansible/ara # - openstack/neutron # - openstack/python-troveclient # - openstack/trove # - openstack/trove-dashboard # - openstack/tempest # - openstack/trove-tempest-plugin # vars: # tox_envlist: full # devstack_localrc: # TEMPEST_PLUGINS: /opt/stack/trove-tempest-plugin # devstack_plugins: # trove: https://opendev.org/openstack/trove
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="blaze rod">`&f.
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 bundler script: bundle exec rspec branches: only: - master #except: # - master sudo: false cache: bundler addons: apt: packages: - qpdf
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_install: gem install bundler script: bundle exec rspec branches: only: - master #except: # - master sudo: false cache: bundler addons: apt: packages: - qpdf
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: Comment: Secondary Radiotopia domain HostedZoneTags: - Key: Project Value: Remix Name: !Ref Domain Website: Type: "AWS::Route53::RecordSetGroup" Properties: Comment: WWW HostedZoneId: !Ref HostedZone RecordSets: - Type: A Name: !Ref Domain AliasTarget: DNSName: s3-website-us-east-1.amazonaws.com. # us-east-1 hosted zone ID HostedZoneId: Z3AQBSTGFYJSTF - ResourceRecords: - wafflehammer-staging.herokuapp.com. TTL: "300" Type: CNAME Name: !Sub www.${Domain} - ResourceRecords: - wafflehammer-staging.herokuapp.com. TTL: "300" Type: CNAME Name: !Sub www2.${Domain}
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: Comment: Remix domain HostedZoneTags: - Key: Project Value: Remix Name: !Ref Domain Website: Type: "AWS::Route53::RecordSetGroup" Properties: Comment: WWW HostedZoneId: !Ref HostedZone RecordSets: - Type: A Name: !Ref Domain AliasTarget: DNSName: s3-website-us-east-1.amazonaws.com. # us-east-1 hosted zone ID HostedZoneId: Z3AQBSTGFYJSTF - ResourceRecords: - wafflehammer-staging.herokuapp.com. TTL: "300" Type: CNAME Name: !Sub www.${Domain} - ResourceRecords: - wafflehammer-staging.herokuapp.com. TTL: "300" Type: CNAME Name: !Sub www2.${Domain}
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. (Even if use ansible_python_interpreter) # At least, I found that it is failed on container python:2. shell: apt-get update && apt-get install -y python-apt --no-install-recommends become: yes register: result changed_when: "'0 upgraded, 0 newly installed' not in result.stdout" - name: Install requirements for python-requirements from apt apt: name={{ item }} update_cache=yes with_items: - build-essential - python-dev become: yes
--- # 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. (Even if use ansible_python_interpreter) # At least, I found that it is failed on container python:2. shell: apt-get update -qq && apt-get install -y python-apt --no-install-recommends -q become: yes register: result changed_when: "'0 upgraded, 0 newly installed' not in result.stdout" - name: Install requirements for python-requirements from apt apt: name={{ item }} update_cache=yes with_items: - build-essential - python-dev become: yes
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.snowdrift.coop/sd/persistent.git commit: af5ec51e6b4b9255867e94916aef138c1968b85e subdirs: - persistent extra-dep: true - location: git: https://git.snowdrift.coop/sd/postgresql-simple-migration-patches.git commit: 8c4983b46fd12759a1d0be8d4460a59efbb704c2 extra-dep: true extra-deps: - libravatar-0.4 - titlecase-0.1.0.2 - formattable-0.1.1
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.snowdrift.coop/sd/persistent.git commit: af5ec51e6b4b9255867e94916aef138c1968b85e subdirs: - persistent extra-dep: true - location: git: https://git.snowdrift.coop/sd/postgresql-simple-migration-patches.git commit: 8c4983b46fd12759a1d0be8d4460a59efbb704c2 extra-dep: true extra-deps: - libravatar-0.4 - titlecase-0.1.0.2 - formattable-0.1.1
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: parallel: true
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 lint
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: enabled: true web: ingress: enabled: true annotations: cert-manager.io/issuer: letsencrypt-prod kubernetes.io/ingress.class: nginx hosts: - ci.nono.io tls: - hosts: - ci.nono.io secretName: ci.nono.io worker: # The following should be `true` (default) for almost everyone. I don't want workers # because I bring my own worker separately, which is on vSphere not GKE. enabled: false secrets: # If the value is "change-me", that means it's overridden from the command line, # e.g. "helm upgrade ci-nono-io concourse/concourse ... --set secrets.hostKey='xxx' ... " localUsers: githubClientId: fc24016a9c3267843698 githubClientSecret: change-me hostKey: change-me hostKeyPub: change-me workerKey: change-me workerKeyPub: change-me sessionSigningKey: change-me vaultAuthParam: change-me
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: org: blabbertabber github: enabled: true web: ingress: enabled: true annotations: cert-manager.io/issuer: letsencrypt-prod kubernetes.io/ingress.class: nginx hosts: - ci.nono.io tls: - hosts: - ci.nono.io secretName: ci.nono.io worker: # The following should be `true` (default) for almost everyone. I don't want workers # because I bring my own worker separately, which is on vSphere not GKE. enabled: false secrets: # If the value is "change-me", that means it's overridden from the command line, # e.g. "helm upgrade ci-nono-io concourse/concourse ... --set secrets.hostKey='xxx' ... " localUsers: githubClientId: fc24016a9c3267843698 githubClientSecret: change-me hostKey: change-me hostKeyPub: change-me workerKey: change-me workerKeyPub: change-me sessionSigningKey: change-me vaultAuthParam: change-me
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: - mkdir $CIRCLE_TEST_REPORTS/jacoco - find . -type f -regex '.*/build/reports/jacoco/.*\.xml' -exec cp -p {} $CIRCLE_TEST_REPORTS/jacoco \; - mkdir $CIRCLE_TEST_REPORTS/junit - find . -type f -regex '.*/build/test-results/.*\.xml' -exec cp -p {} $CIRCLE_TEST_REPORTS/junit \;
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: - mkdir $CIRCLE_ARTIFACTS/jacoco - find . -type f -regex '.*/build/reports/jacoco/.*\.xml' -exec cp -p {} $CIRCLE_ARTIFACTS/jacoco \; - mkdir $CIRCLE_TEST_REPORTS/junit - find . -type f -regex '.*/build/test-results/.*\.xml' -exec cp -p {} $CIRCLE_TEST_REPORTS/junit \;
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: python script: python -m pip install --no-deps --ignore-installed . requirements: build: host: - python - pip run: - python - cloudpickle test: imports: - loky about: home: https://github.com/tomMoral/loky license: BSD 3-Clause license_file: LICENSE.txt summary: A robust implementation of concurrent.futures.ProcessPoolExecutor doc_url: http://loky.readthedocs.io/ dev_url: https://github.com/tomMoral/loky extra: recipe-maintainers: - jakirkham
{% 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: python script: python -m pip install --no-deps --ignore-installed . requirements: build: host: - python - pip run: - python - cloudpickle test: imports: - loky about: home: https://github.com/tomMoral/loky license: BSD 3-Clause license_file: LICENSE.txt summary: A robust implementation of concurrent.futures.ProcessPoolExecutor doc_url: http://loky.readthedocs.io/ dev_url: https://github.com/tomMoral/loky extra: recipe-maintainers: - jakirkham - tomMoral
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 tests.py
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}" nosetests --with-coverage --cover-package=neat -vd after_success: coveralls
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}" nosetests --with-coverage --cover-package=neat -vd after_success: coveralls
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 deploy: provider: rubygems api_key: secure: KcBpkFaes74KGMm8X/rRA8e13+t3PmkefsAvOAR+iF4g1GyuLSPkP92Fb9vFfsXBph+qmFh5rNa2lIRf/3RXW6COxY7CMMaARxUfJOKE0rmIwF0qfKI+RZDh6abg92iYngunMZVN8WVft6Lv9ZTOYCWxr1Zs1Ll/Rl4PfvHNd1g= gem: travis on: repo: travis-ci/travis.rb ruby: 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 rvm: 2.6.3 deploy: provider: rubygems api_key: secure: KcBpkFaes74KGMm8X/rRA8e13+t3PmkefsAvOAR+iF4g1GyuLSPkP92Fb9vFfsXBph+qmFh5rNa2lIRf/3RXW6COxY7CMMaARxUfJOKE0rmIwF0qfKI+RZDh6abg92iYngunMZVN8WVft6Lv9ZTOYCWxr1Zs1Ll/Rl4PfvHNd1g= gem: travis on: repo: travis-ci/travis.rb ruby: 2.6.3
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 build/logs/clover.xml after_success: - travis_retry vendor/bin/coveralls -v
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 - mkdir -p build/logs script: - vendor/bin/phpunit --coverage-clover build/logs/clover.xml after_success: - travis_retry vendor/bin/coveralls -v
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_OPTION notifications: irc: "chat.freenode.net#xhtml2pdf" before_script: - cd doc/source ; sphinx-build -nW -b html -d _build/doctrees . _build/html ; cd ../..
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 $COVERALLS_OPTION notifications: irc: "chat.freenode.net#xhtml2pdf" before_script: - cd doc/source ; sphinx-build -nW -b html -d _build/doctrees . _build/html ; cd ../..
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 change the formatting of field names in Aeson instances.' changelog: '' basic-deps: base: ! '>=4.7 && <5.0' aeson: ! '>=0.8 && <0.10' all-versions: - '0.1.0.0' - '0.1.0.1' author: Andrew Rademacher latest: '0.1.0.1' description-type: haddock description: ! 'Tools to change the formatting of field names in Aeson instances. This includes CamelCasing, Pascal Casing and Snake Casing.' license-name: MIT
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 change the formatting of field names in Aeson instances.' changelog: '' basic-deps: base: ! '>=4.7 && <5.0' aeson: ! '>=0.8' all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' author: Andrew Rademacher latest: '0.1.0.2' description-type: haddock description: ! 'Tools to change the formatting of field names in Aeson instances. This includes CamelCasing, Pascal Casing and Snake Casing.' license-name: MIT
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 maintainer: steele.pat@gmail.com synopsis: Low-level Haskell bindings to GLPK. changelog: | # Changelog for GlpkHs ## Unreleased changes basic-deps: base: '>=4.7 && <5' derive-storable: '>=0.1.2.0 && <0.2' all-versions: - 0.3.0 - 0.4.0 author: Patrick Steele latest: 0.4.0 description-type: markdown description: | # `glpk-headers` Comprehensive Haskell bindings to [GLPK](https://www.gnu.org/software/glpk/). No attempt is made to make these bindings conform to Haskell norms --- they are a direct translation from the GLPK header file. license-name: BSD-3-Clause
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: '>=1.2.3 && <1.3' glpk-headers: -any maintainer: steele.pat@gmail.com synopsis: Low-level Haskell bindings to GLPK. changelog: | # Changelog for GlpkHs ## Unreleased changes basic-deps: base: '>=4.7 && <5' derive-storable: '>=0.1.2.0 && <0.3' all-versions: - 0.3.0 - 0.4.0 - 0.4.1 author: Patrick Steele latest: 0.4.1 description-type: markdown description: | # `glpk-headers` Comprehensive Haskell bindings to [GLPK](https://www.gnu.org/software/glpk/). No attempt is made to make these bindings conform to Haskell norms --- they are a direct translation from the GLPK header file. license-name: BSD-3-Clause
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 protolude: -any containers: -any hpack: ! '>=0.25' directory: -any all-versions: - '0.1.0.0' author: mwotton@gmail.com latest: '0.1.0.0' description-type: markdown description: ! '# hsmodetweaks ' license-name: BSD3
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 protolude: -any containers: -any hpack: ! '>=0.25' directory: -any all-versions: - '0.1.0.0' - '0.1.0.1' author: mwotton@gmail.com latest: '0.1.0.1' description-type: markdown description: ! '# hsmodetweaks ' license-name: BSD3