Instruction
stringlengths
14
778
input_code
stringlengths
0
4.24k
output_code
stringlengths
1
5.44k
Change pip install task state to 'latest'
--- # Copyright 2014, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - include: galera_install_apt.yml when: - ansible_pkg_mgr == 'apt' tags: - install-apt - name: Install pip packages pip: name: "{{ item }}" state: present extra_args: "{{ pip_install_options|default('') }}" register: install_packages until: install_packages|success retries: 5 delay: 2 with_items: "{{ galera_pip_packages }}" tags: - galera-pip-packages
--- # Copyright 2014, Rackspace US, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - include: galera_install_apt.yml when: - ansible_pkg_mgr == 'apt' tags: - install-apt - name: Install pip packages pip: name: "{{ item }}" state: latest extra_args: "{{ pip_install_options|default('') }}" register: install_packages until: install_packages|success retries: 5 delay: 2 with_items: "{{ galera_pip_packages }}" tags: - galera-pip-packages
Fix criteria file to promote to promoted-components
--- main: distro_name: centos distro_version: 8 release: master api_url: https://trunk.rdoproject.org/api-centos8-master-uc username: ciuser dry_run: no promote_from: current-tripleo-compute: tripleo-ci-testing current-tripleo-security: tripleo-ci-testing current-tripleo-compute: - periodic-tripleo-ci-centos-8-standalone-compute-master current-tripleo-security: - periodic-tripleo-ci-centos-8-standalone-security-master
--- main: distro_name: centos distro_version: 8 release: master api_url: https://trunk.rdoproject.org/api-centos8-master-uc username: ciuser dry_run: no # promote_from is not used in component promotion using promote-hash promote_from: promoted-components: component-ci-testing # target promotion label now has a nested list of criteria jobs # for each component promoted-components: baremetal: - periodic-tripleo-ci-centos-8-standalone-baremetal-master cinder: - periodic-tripleo-ci-centos-8-standalone-cinder-master clients: - periodic-tripleo-ci-centos-8-standalone-clients-master cloudops: - periodic-tripleo-ci-centos-8-standalone-cloudops-master common: - periodic-tripleo-ci-centos-8-standalone-common-master compute: - periodic-tripleo-ci-centos-8-standalone-compute-master glance: - periodic-tripleo-ci-centos-8-standalone-glance-master manila: - periodic-tripleo-ci-centos-8-standalone-manila-master network: - periodic-tripleo-ci-centos-8-standalone-network-master octavia: - periodic-tripleo-ci-centos-8-standalone-octavia-master security: - periodic-tripleo-ci-centos-8-standalone-security-master swift: - periodic-tripleo-ci-centos-8-standalone-swift-master tempest: - periodic-tripleo-ci-centos-8-standalone-tempest-master tripleo: - periodic-tripleo-ci-centos-8-standalone-tripleo-master ui: - periodic-tripleo-ci-centos-8-standalone-ui-master
Revert "build - add pool"
pool: vmImage: 'Ubuntu-16.04' trigger: branches: include: ['master', 'release/*'] pr: branches: include: ['master', 'release/*'] steps: - task: NodeTool@0 inputs: versionSpec: "10.15.1" - task: AzureKeyVault@1 displayName: 'Azure Key Vault: Get Secrets' inputs: azureSubscription: 'vscode-builds-subscription' KeyVaultName: vscode - script: | set -e cat << EOF > ~/.netrc machine github.com login vscode password $(github-distro-mixin-password) EOF git config user.email "vscode@microsoft.com" git config user.name "VSCode" git remote add distro "https://github.com/$VSCODE_MIXIN_REPO.git" git fetch distro # Push master branch into oss/master git push distro origin/master:refs/heads/oss/master # Push every release branch into oss/release git for-each-ref --format="%(refname:short)" refs/remotes/origin/release/* | sed 's/^origin\/\(.*\)$/\0:refs\/heads\/oss\/\1/' | xargs git push distro git merge $(node -p "require('./package.json').distro") displayName: Sync & Merge Distro
trigger: branches: include: ['master', 'release/*'] pr: branches: include: ['master', 'release/*'] steps: - task: NodeTool@0 inputs: versionSpec: "10.15.1" - task: AzureKeyVault@1 displayName: 'Azure Key Vault: Get Secrets' inputs: azureSubscription: 'vscode-builds-subscription' KeyVaultName: vscode - script: | set -e cat << EOF > ~/.netrc machine github.com login vscode password $(github-distro-mixin-password) EOF git config user.email "vscode@microsoft.com" git config user.name "VSCode" git remote add distro "https://github.com/$VSCODE_MIXIN_REPO.git" git fetch distro # Push master branch into oss/master git push distro origin/master:refs/heads/oss/master # Push every release branch into oss/release git for-each-ref --format="%(refname:short)" refs/remotes/origin/release/* | sed 's/^origin\/\(.*\)$/\0:refs\/heads\/oss\/\1/' | xargs git push distro git merge $(node -p "require('./package.json').distro") displayName: Sync & Merge Distro
Bump ridedott/merge-me-action from v1.7.4 to v1.7.5
name: Node CI on: [push] jobs: test: name: Run test suite runs-on: ubuntu-latest strategy: matrix: node-version: [12.x] steps: - uses: actions/checkout@v2.3.3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2.1.2 with: node-version: ${{ matrix.node-version }} - name: npm install and test run: | npm install npm run build npm test env: CI: true merge-me: name: Auto-merge dependency updates needs: test runs-on: ubuntu-latest steps: - uses: ridedott/merge-me-action@v1.7.4 with: GITHUB_LOGIN: 'dependabot[bot]' GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
name: Node CI on: [push] jobs: test: name: Run test suite runs-on: ubuntu-latest strategy: matrix: node-version: [12.x] steps: - uses: actions/checkout@v2.3.3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v2.1.2 with: node-version: ${{ matrix.node-version }} - name: npm install and test run: | npm install npm run build npm test env: CI: true merge-me: name: Auto-merge dependency updates needs: test runs-on: ubuntu-latest steps: - uses: ridedott/merge-me-action@v1.7.5 with: GITHUB_LOGIN: 'dependabot[bot]' GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Update from Hackage at 2018-12-27T19:24:27Z
homepage: '' changelog-type: '' hash: 226ac11a205decf2527966d7658298dd311a170ad2f4eaf3212f05e794d4463f test-bench-deps: {} maintainer: strake888@gmail.com synopsis: Categorical types and classes changelog: '' basic-deps: alg: ! '>=0.2 && <0.3' base: ! '>=4.10 && <5' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.1.0 - 0.2.0.0 - 0.2.0.1 author: M Farkas-Dyck latest: 0.2.0.1 description-type: haddock description: '' license-name: BSD-3-Clause
homepage: '' changelog-type: '' hash: 240e41c4523c2912bcebd33e1c3d7fecab08452d1f5ca5025b21a9b3bde6b656 test-bench-deps: {} maintainer: strake888@gmail.com synopsis: Categorical types and classes changelog: '' basic-deps: alg: ! '>=0.2 && <0.3' base: ! '>=4.10 && <5' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.1.1.0 - 0.2.0.0 - 0.2.0.1 - 0.2.1.0 author: M Farkas-Dyck latest: 0.2.1.0 description-type: haddock description: '' license-name: BSD-3-Clause
Update Senreta Vortaro to 0.5 (5)
Categories: - Reading License: Apache-2.0 AuthorName: Zoe AuthorWebSite: https://zoenb.github.io/ SourceCode: https://github.com/zoenb/vortaro IssueTracker: https://github.com/zoenb/vortaro/issues Changelog: https://github.com/zoenb/vortaro/releases AutoName: Senreta Vortaro Description: |- Senreta Vortaro (Offline Dictionary) is an English-Esperanto dictionary app inspired by the web page [http://www.tujavortaro.net/ Tuja Vortaro]. It is designed to be easy to use for beginners. RepoType: git Repo: https://github.com/zoenb/vortaro Builds: - versionName: '0.1' versionCode: 1 commit: '0.1' subdir: app gradle: - yes - versionName: '0.2' versionCode: 2 commit: '0.2' subdir: app gradle: - yes - versionName: '0.3' versionCode: 3 disable: Could not find com.android.tools.build:gradle:3.0.1 commit: '0.3' subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '0.3' CurrentVersionCode: 3
Categories: - Reading License: Apache-2.0 AuthorName: Zoe AuthorWebSite: https://zoenb.github.io/ SourceCode: https://github.com/zoenb/vortaro IssueTracker: https://github.com/zoenb/vortaro/issues Changelog: https://github.com/zoenb/vortaro/releases AutoName: Senreta Vortaro Description: |- Senreta Vortaro (Offline Dictionary) is an English-Esperanto dictionary app inspired by the web page [http://www.tujavortaro.net/ Tuja Vortaro]. It is designed to be easy to use for beginners. RepoType: git Repo: https://github.com/zoenb/vortaro Builds: - versionName: '0.1' versionCode: 1 commit: '0.1' subdir: app gradle: - yes - versionName: '0.2' versionCode: 2 commit: '0.2' subdir: app gradle: - yes - versionName: '0.3' versionCode: 3 disable: Could not find com.android.tools.build:gradle:3.0.1 commit: '0.3' subdir: app gradle: - yes - versionName: '0.5' versionCode: 5 commit: '0.5' subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '0.5' CurrentVersionCode: 5
Remove -dev.infinity in SDK upper constraint
name: web_socket_channel version: 1.0.6-dev description: StreamChannel wrappers for WebSockets. author: Dart Team <misc@dartlang.org> homepage: https://github.com/dart-lang/web_socket_channel environment: sdk: '>=1.13.0 <2.0.0-dev.infinity' dependencies: async: '^1.3.0' crypto: '>=0.9.2 <3.0.0' stream_channel: '^1.2.0' dev_dependencies: test: '^0.12.18'
name: web_socket_channel version: 1.0.6-dev description: StreamChannel wrappers for WebSockets. author: Dart Team <misc@dartlang.org> homepage: https://github.com/dart-lang/web_socket_channel environment: sdk: '>=1.13.0 <2.0.0' dependencies: async: '^1.3.0' crypto: '>=0.9.2 <3.0.0' stream_channel: '^1.2.0' dev_dependencies: test: '^0.12.18'
Remove an xfail for a test that now passes
# according to https://github.com/liblouis/liblouis/issues/406 # backtranslation for "ó" (lowercase o acute) doesn't seem to work table: [tables/unicode.dis, tables/Es-Es-G0.utb] flags: {testmode: forward} tests: # forward translation works - [ó, ⠬] table: [tables/unicode.dis, tables/Es-Es-G0.utb] flags: {testmode: backward} tests: # backward translation seems to fail - [⠬, ó, {xfail: true}] # this test seems weird: Why should 34678 be translated as ó? The # Es-Es-G0.utb table defines 0 to be 34678 (`digit 0 34678`) - [⣬, ó, {xfail: Not sure if this test is even valid}]
# according to https://github.com/liblouis/liblouis/issues/406 # backtranslation for "ó" (lowercase o acute) doesn't seem to work table: [tables/unicode.dis, tables/Es-Es-G0.utb] flags: {testmode: forward} tests: # forward translation works - [ó, ⠬] table: [tables/unicode.dis, tables/Es-Es-G0.utb] flags: {testmode: backward} tests: # backward translation seems to fail - [⠬, ó] # this test seems weird: Why should 34678 be translated as ó? The # Es-Es-G0.utb table defines 0 to be 34678 (`digit 0 34678`) - [⣬, ó, {xfail: Not sure if this test is even valid}]
Use panel_section_label (hopefully discouraged panel_section_id)
# This is just a sample file. For a fully documented version of this file, see # https://github.com/galaxyproject/ansible-galaxy-tools/blob/master/files/tool_list.yaml.sample tools: - name: 'column_maker' owner: 'devteam' tool_panel_section_id: 'textutil' - name: 'tabular_to_fasta' owner: 'devteam' tool_panel_section_id: 'convert' revisions: - '0b4e36026794' # v1.1.0
# This is just a sample file. For a fully documented version of this file, see # https://github.com/galaxyproject/ansible-galaxy-tools/blob/master/files/tool_list.yaml.sample tools: - name: 'column_maker' owner: 'devteam' tool_panel_section_label: 'Columnmaker section' - name: 'tabular_to_fasta' owner: 'devteam' tool_panel_section_label: 'New Converters' revisions: - '0b4e36026794' # v1.1.0
Update from Hackage at 2019-02-19T11:22:32Z
homepage: https://github.com/diffusionkinetics/open/lucid-extras changelog-type: markdown hash: deb602ab7131f2874e06e5a7a31ffa830a12b5aea621ba66332aaed6fc90150c test-bench-deps: lucid: -any base: ! '>=4.8 && <5' lucid-extras: -any directory: ! '>=1.2' maintainer: Tom Nielsen <tanielsen@gmail.com> synopsis: Generate more HTML with Lucid changelog: '' basic-deps: lucid: -any bytestring: -any base: ! '>=4.8 && <5' text: -any blaze-builder: -any aeson: -any all-versions: - 0.1.0.0 - 0.1.0.1 author: Tom Nielsen <tanielsen@gmail.com> latest: 0.1.0.1 description-type: haddock description: Generate more HTML with Lucid - Bootstrap, Rdash and Email. license-name: MIT
homepage: https://github.com/diffusionkinetics/open/lucid-extras changelog-type: markdown hash: a613c6761be5279f2b0442cfc541558c54f811a73824deeb51bd82a67c294396 test-bench-deps: lucid: ! '>=2.9.9' base: ! '>=4.6 && <5' lucid-extras: -any directory: ! '>=1.2' maintainer: Tom Nielsen <tanielsen@gmail.com> synopsis: Generate more HTML with Lucid changelog: '' basic-deps: lucid: ! '>=2.9.9' bytestring: ! '>=0.10.8.1' base: ! '>=4.6 && <5' text: ! '>=1.2.2.2' blaze-builder: ! '>=0.4.0.2' aeson: ! '>=1.1.2.0' all-versions: - 0.1.0.0 - 0.1.0.1 - '0.2' author: Tom Nielsen <tanielsen@gmail.com> latest: '0.2' description-type: haddock description: Generate more HTML with Lucid - Bootstrap, Rdash, Vega-Lite, Email. license-name: MIT
Switch back to using iterm2-beta cask from cask/versions
- name: Install latest stable beta of iTerm2 using Homebrew caskroom/versions homebrew_cask: name=iterm2
- name: Install latest stable beta of iTerm2 using Homebrew caskroom/versions homebrew_cask: name=iterm2-beta
Revert "Add environment specific hierachy overrides"
--- :hierarchy: - 'node/%{::fqdn}' - 'class/%{::aws_stackname}/%{::environment}/%{::govuk_node_class}' - 'class/%{::aws_stackname}/%{::govuk_node_class}' - 'class/%{::environment}/%{::govuk_node_class}' - 'class/%{::govuk_node_class}' - '%{::aws_stackname}/%{::environment}_credentials' - '%{::environment}_credentials' - '%{::environment}' - 'common.%{::lsbdistcodename}' - 'common' :backends: - eyaml - yaml :eyaml: :datadir: '/usr/share/puppet/production/current/hieradata_aws' :gpg_gnupghome: '/etc/puppet/gpg' :extension: 'yaml' :yaml: :datadir: '/usr/share/puppet/production/current/hieradata_aws'
--- :hierarchy: - 'node/%{::fqdn}' - 'class/%{::aws_stackname}/%{::govuk_node_class}' - 'class/%{::govuk_node_class}' - '%{::aws_stackname}/%{::environment}_credentials' - '%{::environment}_credentials' - '%{::environment}' - 'common.%{::lsbdistcodename}' - 'common' :backends: - eyaml - yaml :eyaml: :datadir: '/usr/share/puppet/production/current/hieradata_aws' :gpg_gnupghome: '/etc/puppet/gpg' :extension: 'yaml' :yaml: :datadir: '/usr/share/puppet/production/current/hieradata_aws'
Add --tag ~pending as well
name: CI on: [push] jobs: test: runs-on: ubuntu-latest env: PGHOST: 127.0.0.1 PGUSER: klaxon-test-user PGPASSWORD: "LjRKZViA88dMumv" RAILS_ENV: test RACK_ENV: test NODE_ENV: test services: postgres: image: postgres:9.5 env: POSTGRES_DB: klaxon_test POSTGRES_USER: klaxon-test-user POSTGRES_PASSWORD: "LjRKZViA88dMumv" ports: - 5432:5432 steps: - name: Checkout the project uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true - name: Compile assets run: bundle exec rake assets:precompile assets:clean - name: Prepare the database run: bundle exec rake db:create db:schema:load --trace - name: Run the tests run: bundle exec rspec --format RSpec::Github::Formatter --tag ~skip
name: CI on: [push] jobs: test: runs-on: ubuntu-latest env: PGHOST: 127.0.0.1 PGUSER: klaxon-test-user PGPASSWORD: "LjRKZViA88dMumv" RAILS_ENV: test RACK_ENV: test NODE_ENV: test services: postgres: image: postgres:9.5 env: POSTGRES_DB: klaxon_test POSTGRES_USER: klaxon-test-user POSTGRES_PASSWORD: "LjRKZViA88dMumv" ports: - 5432:5432 steps: - name: Checkout the project uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true - name: Compile assets run: bundle exec rake assets:precompile assets:clean - name: Prepare the database run: bundle exec rake db:create db:schema:load --trace - name: Run the tests run: bundle exec rspec --format RSpec::Github::Formatter --tag ~skip --tag ~pending
Use caching in GH actions
name: CI on: push: branches: - master pull_request: branches: - "**" env: CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 jobs: tests: name: Unix tests runs-on: ${{ matrix.os }} strategy: fail-fast: true matrix: os: [ubuntu-latest] toolchain: [stable] steps: - uses: actions/checkout@v2 - name: Install Rust uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.toolchain }} profile: minimal override: true - run: | cargo build --release script/fetch-fixtures script/generate-fixtures script/test script/benchmark
name: CI on: push: branches: - master pull_request: branches: - "**" env: CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 jobs: tests: name: Unix tests runs-on: ${{ matrix.os }} strategy: fail-fast: true matrix: os: [ubuntu-latest] toolchain: [stable] steps: - name: Checkout repo uses: actions/checkout@v2 - name: Setup cache uses: actions/cache@v2 with: path: | ~/.cargo/registry ~/.cargo/git target key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }} - name: Install rust uses: actions-rs/toolchain@v1 with: toolchain: ${{ matrix.toolchain }} profile: minimal override: true - name: Build C library run: make - name: Build CLI run: cargo build --release - name: Setup fixture parsers run: | script/fetch-fixtures script/generate-fixtures - name: Run tests run: script/test - name: Run benchmarks run: script/benchmark
Update stable toolchain when possible
name: CI on: push: branches: - master pull_request: jobs: check: name: Check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: rustup override set stable - uses: Swatinem/rust-cache@v1.3.0 - run: cargo check env: RUSTFLAGS: "-D warnings" tests: name: Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: rustup override set stable - uses: Swatinem/rust-cache@v1.3.0 - run: cargo test fmt: name: Rustfmt runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: rustup override set stable - run: rustup component add rustfmt - uses: Swatinem/rust-cache@v1.3.0 - run: cargo fmt -- --check clippy: name: Clippy runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: rustup override set stable - run: rustup component add clippy - uses: Swatinem/rust-cache@v1.3.0 - run: cargo clippy -- --deny warnings
name: CI on: push: branches: - master pull_request: jobs: check: name: Check runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: | rustup override set stable rustup update stable - uses: Swatinem/rust-cache@v1.3.0 - run: cargo check env: RUSTFLAGS: "-D warnings" tests: name: Tests runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: | rustup override set stable rustup update stable - uses: Swatinem/rust-cache@v1.3.0 - run: cargo test fmt: name: Rustfmt runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: | rustup override set stable rustup update stable - run: rustup component add rustfmt - uses: Swatinem/rust-cache@v1.3.0 - run: cargo fmt -- --check clippy: name: Clippy runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - run: | rustup override set stable rustup update stable - run: rustup component add clippy - uses: Swatinem/rust-cache@v1.3.0 - run: cargo clippy -- --deny warnings
Change Node Environment to Test
# This references a standard debian container from the # Docker Hub https://registry.hub.docker.com/_/debian/ # Read more about containers on our dev center # http://devcenter.wercker.com/docs/containers/index.html box: nodesource/trusty:4.2.1 # You can also use services such as databases. Read more on our dev center: # http://devcenter.wercker.com/docs/services/index.html # services: # - postgres # http://devcenter.wercker.com/docs/services/postgresql.html # - mongodb # http://devcenter.wercker.com/docs/services/mongodb.html # The Steps that should be installed from the wercker step repository steps: - wercker/npm-install@1.1.4 - wercker/npm-test@0.0.3 # This is the build pipeline. Pipelines are the core of wercker # Read more about pipelines on our dev center # http://devcenter.wercker.com/docs/pipelines/index.html build: # Steps make up the actions in your pipeline # Read more about steps on our dev center: # http://devcenter.wercker.com/docs/steps/index.html steps: - script: name: Install TypeScript code: | sudo npm install -g typescript - script: name: Install Mocha code: | sudo npm install -g mocha - npm-install: name: Install Deps - npm-test: name: Test RxUI
# This references a standard debian container from the # Docker Hub https://registry.hub.docker.com/_/debian/ # Read more about containers on our dev center # http://devcenter.wercker.com/docs/containers/index.html box: id: nodesource/trusty:4.4.0 env: NODE_ENV: test # You can also use services such as databases. Read more on our dev center: # http://devcenter.wercker.com/docs/services/index.html # services: # - postgres # http://devcenter.wercker.com/docs/services/postgresql.html # - mongodb # http://devcenter.wercker.com/docs/services/mongodb.html # The Steps that should be installed from the wercker step repository steps: - wercker/npm-install@1.1.4 - wercker/npm-test@0.0.3 # This is the build pipeline. Pipelines are the core of wercker # Read more about pipelines on our dev center # http://devcenter.wercker.com/docs/pipelines/index.html build: # Steps make up the actions in your pipeline # Read more about steps on our dev center: # http://devcenter.wercker.com/docs/steps/index.html steps: - script: name: Install TypeScript code: | sudo npm install -g typescript - script: name: Install Mocha code: | sudo npm install -g mocha - npm-install: name: Install Deps - npm-test: name: Test RxUI
Make StyleCI and Scrutinizer consistent
preset: psr2 risky: false linting: true finder: name: - "*.php"
preset: psr2 risky: false linting: true finder: name: - "*.php" disabled: - declare_equal_normalize
Update to CentOS 7.2 in testing
driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-5.11 - name: centos-6.7 - name: centos-7.1 - name: fedora-22 suites: - name: default run_list: - recipe[yum::default] - recipe[yum_test::test_repo] - name: dnf_compat run_list: - recipe[yum::dnf_yum_compat] - recipe[yum_test::test_dnf_compat] includes: fedora-22
driver: name: vagrant provisioner: name: chef_zero platforms: - name: centos-5.11 - name: centos-6.7 - name: centos-7.2 - name: fedora-22 suites: - name: default run_list: - recipe[yum::default] - recipe[yum_test::test_repo] - name: dnf_compat run_list: - recipe[yum::dnf_yum_compat] - recipe[yum_test::test_dnf_compat] includes: fedora-22
Build only SDK on CI
box: wercker/android build: steps: - script: name: show base information code: | ./gradlew -v echo $ANDROID_HOME echo $ANDROID_BUILD_TOOLS echo $ANDROID_UPDATE_FILTER - android-sdk-update: filter: platform-tools,extra-android-m2repository,extra-android-support - setup-android-emulator: target: android-22 - script: name: run gradle connectedAndroidTest code: | ./gradlew --full-stacktrace -q --project-cache-dir=$WERCKER_CACHE_DIR connectedAndroidTest after-steps: - script: name: inspect build result code: | pwd ls -la ./konashi-android-sdk/build/outputs/ cp -r ./konashi-android-sdk/build/outputs/* ${WERCKER_REPORT_ARTIFACTS_DIR} REPORT_INDEX=/pipeline/build/konashi-android-sdk/build/reports/androidTests/connected/index.html python .wercker/report.py $REPORT_INDEX
box: wercker/android build: steps: - script: name: show base information code: | ./gradlew -v echo $ANDROID_HOME echo $ANDROID_BUILD_TOOLS echo $ANDROID_UPDATE_FILTER - android-sdk-update: filter: platform-tools,extra-android-m2repository,extra-android-support - setup-android-emulator: target: android-22 - script: name: run gradle connectedAndroidTest code: | ./gradlew --full-stacktrace -q --project-cache-dir=$WERCKER_CACHE_DIR :konashi-android-sdk:connectedAndroidTest after-steps: - script: name: inspect build result code: | pwd ls -la ./konashi-android-sdk/build/outputs/ cp -r ./konashi-android-sdk/build/outputs/* ${WERCKER_REPORT_ARTIFACTS_DIR} REPORT_INDEX=/pipeline/build/konashi-android-sdk/build/reports/androidTests/connected/index.html python .wercker/report.py $REPORT_INDEX
Add a default cancel message, not sure why this was blank, may need to undo it later (so maybe wait on translating....)
spells: default: fizzle: "a:&5Your spell fizzled!" backfire: "a:&dYour spell backfired!" fail: "&cSomething went wrong!" insufficient_permission: "a:&eYou can't do that right now" cast_player_message: "a:&d&o$player &r&5cast &3&o$spell &r&5on you!" indirect_player_message: "a:&d&o$player &r&5cast &3&o$spell &r&5on you!" insufficient_resources: "a:&cNot enough &4$cost" insufficient: "a:&cRequires &4$cost" cooldown: "a:&eYou must wait &6$time" cancelled: "a:&eYour spell was cancelled!" cancel: "" cancel_selection: "a:&cCancelled &6$spell" entity_required: An entity is required living_entity_required: A living entity is required player_required: A player is required location_required: A location is required world_required: A world is required invalid_world: The specified world is not valid cast_finish: ""
spells: default: fizzle: "a:&5Your spell fizzled!" backfire: "a:&dYour spell backfired!" fail: "&cSomething went wrong!" insufficient_permission: "a:&eYou can't do that right now" cast_player_message: "a:&d&o$player &r&5cast &3&o$spell &r&5on you!" indirect_player_message: "a:&d&o$player &r&5cast &3&o$spell &r&5on you!" insufficient_resources: "a:&cNot enough &4$cost" insufficient: "a:&cRequires &4$cost" cooldown: "a:&eYou must wait &6$time" cancelled: "a:&eYour spell was cancelled!" cancel: "a:&e$spell Interrupted" cancel_selection: "a:&cCancelled &6$spell" entity_required: An entity is required living_entity_required: A living entity is required player_required: A player is required location_required: A location is required world_required: A world is required invalid_world: The specified world is not valid cast_finish: ""
Add conditions to source building dependencies
# file: nginx/meta/main.yml galaxy_info: author: pjan vandaele company: Ansibles description: Install and configure Nginx min_ansible_version: 1.4 license: MIT platforms: - name: Ubuntu versions: - all categories: - system dependencies: - Ansibles.hostname - Ansibles.apt - Ansibles.build-essential - Ansibles.perl - role: Ansibles.monit when: monit_protection is defined and monit_protection == true
# file: nginx/meta/main.yml galaxy_info: author: pjan vandaele company: Ansibles description: Install and configure Nginx min_ansible_version: 1.4 license: MIT platforms: - name: Ubuntu versions: - all categories: - system dependencies: - Ansibles.hostname - Ansibles.apt - role: Ansibles.build-essential when: nginx_install_method is defined and nginx_install_method == "source" - role: Ansibles.perl when: nginx_install_method is defined and nginx_install_method == "source" - role: Ansibles.monit when: monit_protection is defined and monit_protection == true
Remove old GPGKEY, remove unsupported id param
--- # tasks file for ansible-role-cuda - name: Upload packaging key for CUDA repositories copy: src: cuda_packaging_key.asc dest: "{{ cuda_rpm_key_path }}" mode: 0644 - name: Trust packaging key for CUDA repositories rpm_key: key: "{{ cuda_rpm_key_path }}" id: "{{ cuda_packaging_key_id }}" state: present - name: Configure CUDA repository for yum-based systems yum_repository: name: cuda description: Official Nvidia CUDA repository file: nvidia baseurl: "{{ cuda_repo_url }}/{{ cuda_repo_subfolder }}/x86_64/" gpgkey: "{{ cuda_rpm_key_path }}" gpgcheck: yes enabled: yes - name: install cuda software - this is slow - restart if cuda_restart_node_on_install is True package: name: "{{ item }}" state: present with_items: "{{ cuda_packages | default({}) }}" register: cuda_packages_installation notify: - ZZ CUDA Restart server - ZZ CUDA Wait for server to restart
--- # tasks file for ansible-role-cuda - name: Upload packaging key for CUDA repositories copy: src: cuda_packaging_key.asc dest: "{{ cuda_rpm_key_path }}" mode: 0644 - name: Trust packaging key for CUDA repositories rpm_key: key: "{{ cuda_rpm_key_path }}" state: present - name: Remove trust for old CUDA packaging key rpm_key: key: 5C37D3BE state: absent - name: Configure CUDA repository for yum-based systems yum_repository: name: cuda description: Official Nvidia CUDA repository file: nvidia baseurl: "{{ cuda_repo_url }}/{{ cuda_repo_subfolder }}/x86_64/" gpgkey: "{{ cuda_rpm_key_path }}" gpgcheck: yes enabled: yes - name: install cuda software - this is slow - restart if cuda_restart_node_on_install is True package: name: "{{ item }}" state: present with_items: "{{ cuda_packages | default({}) }}" register: cuda_packages_installation notify: - ZZ CUDA Restart server - ZZ CUDA Wait for server to restart
Add GitHub team for k-sigs/instrumentation repo
teams: custom-metrics-apiserver-admins: description: Admin access to the custom-metrics-apiserver repo members: - brancz - piosz privacy: closed custom-metrics-apiserver-maintainers: description: Write access to the custom-metrics-apiserver repo members: - s-urbaniak - serathius privacy: closed instrumentation-tools-admins: description: Admin access to the instrumentation-tools repo members: - brancz - dashpole - ehashman - logicalhan privacy: closed instrumentation-tools-maintainers: description: Write access to the instrumentation-tools repo members: - brancz - dashpole - ehashman - logicalhan privacy: closed metrics-server-admins: description: Admin access to the metrics-server repo members: - brancz - piosz privacy: closed metrics-server-maintainers: description: Write access to the metrics-server repo members: - s-urbaniak - serathius privacy: closed prometheus-adapter-admins: description: Admin access to the prometheus-adapter repo members: - brancz - DirectXMan12 - s-urbaniak privacy: closed
teams: custom-metrics-apiserver-admins: description: Admin access to the custom-metrics-apiserver repo members: - brancz - piosz privacy: closed custom-metrics-apiserver-maintainers: description: Write access to the custom-metrics-apiserver repo members: - s-urbaniak - serathius privacy: closed instrumentation-admins: description: Admin access to the instrumentation repo members: - brancz - dashpole - ehashman - logicalhan privacy: closed instrumentation-tools-admins: description: Admin access to the instrumentation-tools repo members: - brancz - dashpole - ehashman - logicalhan privacy: closed instrumentation-tools-maintainers: description: Write access to the instrumentation-tools repo members: - brancz - dashpole - ehashman - logicalhan privacy: closed metrics-server-admins: description: Admin access to the metrics-server repo members: - brancz - piosz privacy: closed metrics-server-maintainers: description: Write access to the metrics-server repo members: - s-urbaniak - serathius privacy: closed prometheus-adapter-admins: description: Admin access to the prometheus-adapter repo members: - brancz - DirectXMan12 - s-urbaniak privacy: closed
Use Msys instead on MinGW cmake generator
os: Visual Studio 2015 install: - python.exe -m pip install pytest nose_parameterized build_script: - md build - cd build - cmake -G "MinGW Makefiles" .. - cmake --build . --config Release - ctest
os: Visual Studio 2015 install: - python.exe -m pip install pytest nose_parameterized build_script: - md build - cd build - cmake -G "MSYS Makefiles" .. - cmake --build . --config Release - ctest
Move build.cmd call after conda activation
build: false environment: matrix: - PYTHON_VERSION: 2.7 MINICONDA: C:\Miniconda - PYTHON_VERSION: 2.7 MINICONDA: C:\Miniconda-x64 - PYTHON_VERSION: 3.4 MINICONDA: C:\Miniconda3 - PYTHON_VERSION: 3.4 MINICONDA: C:\Miniconda3-x64 DISTUTILS_USE_SDK: 1 init: - "ECHO %PYTHON_VERSION% %MINICONDA%" install: # configure MSVC - appveyor\build.cmd # create new conda environment - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%" - conda config --set always_yes yes --set changeps1 no - conda update -q conda - conda info -a - "conda create -q -n test-environment python=%PYTHON_VERSION% cython pytest" - activate test-environment # build package - python setup.py develop after_test: - python setup.py bdist_wheel artifacts: - path: dist\* test_script: - py.test tests
build: false environment: matrix: - PYTHON_VERSION: 2.7 MINICONDA: C:\Miniconda - PYTHON_VERSION: 2.7 MINICONDA: C:\Miniconda-x64 - PYTHON_VERSION: 3.4 MINICONDA: C:\Miniconda3 - PYTHON_VERSION: 3.4 MINICONDA: C:\Miniconda3-x64 DISTUTILS_USE_SDK: 1 init: - "ECHO %PYTHON_VERSION% %MINICONDA%" install: # Create new conda environment - "set PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%" - conda config --set always_yes yes --set changeps1 no - conda update -q conda - conda info -a - "conda create -q -n test-environment python=%PYTHON_VERSION% cython pytest" - activate test-environment # Configure MSVC. This should come after activating the conda envionment to # avoid issues with the length of PATH. - appveyor\build.cmd # Build package - python setup.py develop test_script: - py.test tests after_test: - python setup.py bdist_wheel artifacts: - path: dist\*
Add file that source tree forgot from previous commit
version: '{branch}.{build}' pull_requests: do_not_increment_build_number: true nuget: disable_publish_on_pr: true before_build: - cmd: nuget restore Sources\Monitoring.Owin.sln build: publish_nuget: true publish_nuget_symbols: true include_nuget_references: true verbosity: minimal configuration: Release deploy: - provider: NuGet api_key: secure: ySttUuKXaqz/qn7dZRtJJs7H8wTDgT8Wgi55QFGZjmVE2XL14T2puaPiBcNMZC1l on: appveyor_repo_tag: true
version: '{branch}.{build}' pull_requests: do_not_increment_build_number: true nuget: disable_publish_on_pr: true before_build: - cmd: nuget restore Source\Monitoring.Owin.sln build: publish_nuget: true publish_nuget_symbols: true include_nuget_references: true verbosity: minimal configuration: Release deploy: - provider: NuGet api_key: secure: ySttUuKXaqz/qn7dZRtJJs7H8wTDgT8Wgi55QFGZjmVE2XL14T2puaPiBcNMZC1l on: appveyor_repo_tag: true
Add clean tarballs to CI
image: continuumio/miniconda3 before_script: - conda config --add channels conda-forge - conda config --add channels defaults - conda config --add channels r - conda config --add channels bioconda - conda clean -a -y - conda install snakemake==5.4.5 click==7.0 stages: - rulegraph - run - sina # DAG #rulegraph: # stage: rulegraph # script: # - snakemake --configfile tests/config.remote.yaml --rulegraph --use-conda run: stage: run script: - python conf.py --project test --path tests/data/miseq_sop/ --clustering usearch_smallmem --classification stampa --forward_primer CCTACGGGNGGCWGCAG --reverse_primer GACTACHVGGGTATCTAATCC --mergepairs vsearch --reference_db silva - snakemake --use-conda -j 8 sina: stage: sina script: - python conf.py --project test --path tests/data/miseq_sop/ --clustering usearch_smallmem --classification sina --forward_primer CCTACGGGNGGCWGCAG --reverse_primer GACTACHVGGGTATCTAATCC --mergepairs vsearch --reference_db silva - snakemake --use-conda -j 8
image: continuumio/miniconda3 before_script: - conda config --add channels conda-forge - conda config --add channels defaults - conda config --add channels r - conda config --add channels bioconda - conda clean -a -y - conda clean --tarballs -y - conda install snakemake==5.4.5 click==7.0 stages: - rulegraph - run - sina # DAG #rulegraph: # stage: rulegraph # script: # - snakemake --configfile tests/config.remote.yaml --rulegraph --use-conda run: stage: run script: - python conf.py --project test --path tests/data/miseq_sop/ --clustering usearch_smallmem --classification stampa --forward_primer CCTACGGGNGGCWGCAG --reverse_primer GACTACHVGGGTATCTAATCC --mergepairs vsearch --reference_db silva - snakemake --use-conda -j 8 sina: stage: sina script: - python conf.py --project test --path tests/data/miseq_sop/ --clustering usearch_smallmem --classification sina --forward_primer CCTACGGGNGGCWGCAG --reverse_primer GACTACHVGGGTATCTAATCC --mergepairs vsearch --reference_db silva - snakemake --use-conda -j 8
Update from Hackage at 2020-08-10T10:16:16Z
homepage: https://github.com/MichelBoucey/spintax changelog-type: '' hash: c966441a51730deb1ab29ee1b12ab0fdb6aacc79c24cfacb4a993ccd227c90d2 test-bench-deps: {} maintainer: michel.boucey@gmail.com synopsis: Random text generation based on spintax changelog: '' basic-deps: mwc-random: ! '>=0.13.3.2 && <0.15' extra: ! '>=1.4.3 && <1.8' base: ! '>=4.7 && <5' text: ! '>=1.2.2 && <1.3' mtl: ! '>=2.2.1 && <2.3' attoparsec: ! '>=0.12.1.6 && <0.14' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.2.0.0 - 0.3.0.0 - 0.3.1 - 0.3.2 - 0.3.3 - 0.3.4 author: Michel Boucey latest: 0.3.4 description-type: haddock description: Random text generation based on spintax with nested alternatives and empty options. license-name: BSD-3-Clause
homepage: https://github.com/MichelBoucey/spintax changelog-type: '' hash: fbb1390fe211cbd0c38cc384d4c3731a7c500c77181cd3309b4b6f207061d624 test-bench-deps: {} maintainer: michel.boucey@gmail.com synopsis: Random text generation based on spintax changelog: '' basic-deps: mwc-random: '>=0.13.3.2 && <0.16' extra: '>=1.4.3 && <1.8' base: '>=4.7 && <5' text: '>=1.2.2 && <1.3' mtl: '>=2.2.1 && <2.3' attoparsec: '>=0.12.1.6 && <0.14' all-versions: - 0.1.0.0 - 0.1.0.1 - 0.2.0.0 - 0.3.0.0 - 0.3.1 - 0.3.2 - 0.3.3 - 0.3.4 - 0.3.5 author: Michel Boucey latest: 0.3.5 description-type: haddock description: Random text generation based on spintax with nested alternatives and empty options. license-name: BSD-3-Clause
Deploy nuget only when commits on master branch.
version: 1.1.0.{build} configuration: Release assembly_info: patch: true file: AssemblyInfo.* assembly_version: "{version}" assembly_file_version: "{version}" assembly_informational_version: "{version}" build: project: Wox.sln after_test: ps: .\deploy\nuget\pack.ps1 deploy: provider: NuGet api_key: secure: yybUOFgBuGVpbmOVZxsurC8OpkClzt9dR+/54WpMWcq6b6oyMatciaelRPnXsjRn artifact: nugetpackage artifacts: - path: Output\Release name: release-binary - path: '*.nupkg' name: nugetpackage
version: 1.1.0.{build} configuration: Release assembly_info: patch: true file: AssemblyInfo.* assembly_version: "{version}" assembly_file_version: "{version}" assembly_informational_version: "{version}" build: project: Wox.sln after_test: ps: .\deploy\nuget\pack.ps1 deploy: provider: NuGet api_key: secure: yybUOFgBuGVpbmOVZxsurC8OpkClzt9dR+/54WpMWcq6b6oyMatciaelRPnXsjRn artifact: nugetpackage on: branch: master artifacts: - path: Output\Release name: release-binary - path: '*.nupkg' name: nugetpackage
Update CI Rubies: Remove Ruby 2.5
name: Test on: [push, pull_request] jobs: test: name: Ruby ${{ matrix.ruby }} (${{ matrix.os }}) if: "!contains(github.event.head_commit.message, '[skip ci]')" strategy: matrix: ruby: - 3.1 - 3.0 - 2.7 - 2.6 - 2.5 - jruby-9.2.13.0 # - truffleruby-20.3.0 os: - ubuntu-latest - macos-latest runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler-cache: true - name: Run tests run: bundle exec rake test-windows: name: Ruby ${{ matrix.ruby }} (windows-latest) if: "!contains(github.event.head_commit.message, '[skip ci]')" strategy: matrix: ruby: - 3.0 - 2.7 - 2.6 - 2.5 runs-on: windows-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler-cache: true - name: Run tests run: bundle exec rake
name: Test on: [push, pull_request] jobs: test: name: Ruby ${{ matrix.ruby }} (${{ matrix.os }}) if: "!contains(github.event.head_commit.message, '[skip ci]')" strategy: matrix: ruby: - 3.1 - 3.0 - 2.7 - 2.6 - jruby-9.2.13.0 # - truffleruby-20.3.0 os: - ubuntu-latest - macos-latest runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler-cache: true - name: Run tests run: bundle exec rake test-windows: name: Ruby ${{ matrix.ruby }} (windows-latest) if: "!contains(github.event.head_commit.message, '[skip ci]')" strategy: matrix: ruby: - 3.0 - 2.7 - 2.6 runs-on: windows-latest steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler-cache: true - name: Run tests run: bundle exec rake
Fix from support message was applied
version: '{build}' image: - Visual Studio 2017 - Ubuntu configuration: Release environment: ASPNETCORE_ENVIRONMENT: Staging nuget: project_feed: true disable_publish_on_pr: true artifacts: - path: build\artifacts\*.nupkg deploy: off branches: only: - develop - /release.*/ - master skip_commits: files: - LICENSE - README.md - .travis.yml - WebInfrastructure.sln.DotSettings for: - matrix: only: - image: Visual Studio 2017 services: mssql2016 install: - ps: choco install rabbitmq --ignoredependencies -y build_script: - ps: >- cd build .\build.ps1 -target CalculateCoverage --settings_skipverification=true - matrix: only: - image: Ubuntu services: - mssql - rabbitmq build_script: - sh: >- cd build ./build.sh
version: '{build}' image: - Visual Studio 2017 - Ubuntu configuration: Release environment: ASPNETCORE_ENVIRONMENT: Staging nuget: project_feed: true disable_publish_on_pr: true artifacts: - path: build\artifacts\*.nupkg deploy: off branches: only: - develop - /release.*/ - master skip_commits: files: - LICENSE - README.md - .travis.yml - WebInfrastructure.sln.DotSettings for: - matrix: only: - image: Visual Studio 2017 services: mssql2016 install: - ps: choco install rabbitmq --ignoredependencies -y build_script: - ps: >- cd build .\build.ps1 -target CalculateCoverage --settings_skipverification=true - matrix: only: - image: Ubuntu environment: APPVEYOR_BUILD_ARTIFACT_STORAGE: gce-artifacts-us services: - mssql - rabbitmq build_script: - sh: >- cd build ./build.sh
Add diagnostics in AppVeyor build step to resolve an issue
build_script: - cd C:\ - appveyor DownloadFile http://sourceforge.net/projects/msys2/files/Base/x86_64/msys2-base-x86_64-20150512.tar.xz/download -FileName "msys2.tar.xz" - 7z x msys2.tar.xz - 7z x msys2.tar > NUL - C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -Sy bash pacman pacman-mirrors msys2-runtime" - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Syu" - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S git make" test_script: - C:\msys64\usr\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER && make -k check"
build_script: - cd C:\ - dir - appveyor DownloadFile http://sourceforge.net/projects/msys2/files/Base/x86_64/msys2-base-x86_64-20150512.tar.xz/download -FileName "msys2.tar.xz" - 7z x msys2.tar.xz - 7z x msys2.tar - C:\msys64\usr\bin\bash -lc "pacman --needed --noconfirm -Sy bash pacman pacman-mirrors msys2-runtime" - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Syu" - C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S git make" test_script: - C:\msys64\usr\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER && make -k check"
Load schema in DB before starting to test
language: ruby cache: bundler archive: true rvm: - 2.1.2 before_script: - cp spec/dummy/config/database.shippable.yml spec/dummy/config/database.yml script: - CODECLIMATE_REPO_TOKEN=b7d9c971bea2879b81bdf35f600b985bf3a016c6104169b2c29c213a5d2e7142 bundle exec rspec - bundle exec rake best_practice_project:run notifications: email: false
language: ruby cache: bundler archive: true rvm: - 2.1.2 before_script: - cp spec/dummy/config/database.shippable.yml spec/dummy/config/database.yml script: - cd spec/dummy - RAILS_ENV=test bundle exec rake db:schema:load - cd ../.. - CODECLIMATE_REPO_TOKEN=b7d9c971bea2879b81bdf35f600b985bf3a016c6104169b2c29c213a5d2e7142 bundle exec rspec - bundle exec rake best_practice_project:run notifications: email: false
Remove width restriction from organizer logo
- group: "Main organizer" elements: - {name: "Code For Nepal", description: "Code for Nepal - Increasing digital literacy and open data", link: "http://codefornepal.org", imageUrl: "c4n_logo.png"} - group: "Co-organizers" elements: - {name: "Women Development Advocacy Center", description: "WDAC - CO-CREATING ECONOMIC SUSTAINABILITY THROUGH KNOWLEDGE BASED INTERVENTION.", link: "http://www.wdac.org.np/", imageUrl: "wdac_logo.png", width: "120px"}
- group: "Main organizer" elements: - {name: "Code For Nepal", description: "Code for Nepal - Increasing digital literacy and open data", link: "http://codefornepal.org", imageUrl: "c4n_logo.png"} - group: "Co-organizers" elements: - {name: "Women Development Advocacy Center", description: "WDAC - CO-CREATING ECONOMIC SUSTAINABILITY THROUGH KNOWLEDGE BASED INTERVENTION.", link: "http://www.wdac.org.np/", imageUrl: "wdac_logo.png"}
ADD concurrencly group to CI
name: Unit Tests on: push: pull_request: branches: - master env: TEST_IMAGE_NAME: fiware/orion-ci:rpm8 jobs: unit: runs-on: ubuntu-18.04 services: mongodb: image: mongo:4.4 ports: - 27017:27017 steps: - uses: actions/checkout@v2 - name: Run unit tests run: | docker run --network host -t --rm -v $(pwd):/opt/fiware-orion ${{ env.TEST_IMAGE_NAME }} build -miqts unit
name: Unit Tests on: push: pull_request: branches: - master concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true env: TEST_IMAGE_NAME: fiware/orion-ci:rpm8 jobs: unit: runs-on: ubuntu-18.04 services: mongodb: image: mongo:4.4 ports: - 27017:27017 steps: - uses: actions/checkout@v2 - name: Run unit tests run: | docker run --network host -t --rm -v $(pwd):/opt/fiware-orion ${{ env.TEST_IMAGE_NAME }} build -miqts unit
Fix sort issue with MIAconverter
name: Image Processing description: projects: - MIAConverter - cairo - chunky_png - core_image - devil - fabien/im_magick - image_science - image_sorcery - image_squeeze - magickly - mini_magick - mojo_magick - pango - paperclip-optimizer - rmagick - rsvg2 - skeptick
name: Image Processing description: projects: - cairo - chunky_png - core_image - devil - fabien/im_magick - image_science - image_sorcery - image_squeeze - magickly - MIAConverter - mini_magick - mojo_magick - pango - paperclip-optimizer - rmagick - rsvg2 - skeptick
Fix build phase for symfony 3
steps: - if [ "no" = "%fetch_mysql%" ] && [ "yes" = "%run_mysql%" ]; then app/console doctrine:schema:create --env=%deploy_symfony_env%; fi - if [ "yes" = "%run_mysql%" ] && [ -d "app/DoctrineMigrations" ]; then app/console doctrine:migrations:migrate --env=%deploy_symfony_env% --no-interaction; fi
steps: - if [ "no" = "%fetch_mysql%" ] && [ "yes" = "%run_mysql%" ]; then app/console doctrine:schema:create --env=%deploy_symfony_env%; fi - if [ "yes" = "%run_mysql%" ] && [ -d "app/DoctrineMigrations" ] && [ -f "app/console" ]; then app/console doctrine:migrations:migrate --env=%deploy_symfony_env% --no-interaction; fi - if [ "yes" = "%run_mysql%" ] && [ -d "app/DoctrineMigrations" ] && [ -f "bin/console" ]; then bin/console doctrine:migrations:migrate --env=%deploy_symfony_env% --no-interaction; fi
Add st folder to path environment to access subl
environment: global: # The package name PACKAGE: "Rainmeter" matrix: - PYTHON: "C:\\Python33" PYTHON_ARCH: "32" SUBLIME_TEXT_VERSION : "3" - PYTHON: "C:\\Python33-x64" PYTHON_ARCH: "64" SUBLIME_TEXT_VERSION : "3" install: # Prepend newly installed Python to the PATH of this build (this cannot be # done from inside the powershell script as it would require to restart # the parent CMD process). - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - ps: appveyor DownloadFile "https://raw.githubusercontent.com/randy3k/UnitTesting/master/sbin/appveyor.ps1" - ps: .\appveyor.ps1 "bootstrap" -verbose # install Package Control - ps: .\appveyor.ps1 "install_package_control" -verbose - ps: pip install coverage git+https://github.com/jayvdb/coveralls-python@appveyor - ps: pip install python-coveralls build: off test_script: # - ps: .\appveyor.ps1 "run_tests" -verbose # testing syntax_test files # - ps: .\appveyor.ps1 "run_syntax_tests" -verbose - ps: appveyor DownloadFile https://raw.githubusercontent.com/randy3k/UnitTesting/master/sbin/run_tests.py - ps: python ".\run_tests.py" "--coverage" "$PACKAGE" after_test: - ps: coveralls
environment: global: # The package name PACKAGE: "Rainmeter" matrix: - PYTHON: "C:\\Python33" PYTHON_ARCH: "32" SUBLIME_TEXT_VERSION : "3" - PYTHON: "C:\\Python33-x64" PYTHON_ARCH: "64" SUBLIME_TEXT_VERSION : "3" install: # Prepend newly installed Python to the PATH of this build (this cannot be # done from inside the powershell script as it would require to restart # the parent CMD process). - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" - ps: appveyor DownloadFile "https://raw.githubusercontent.com/randy3k/UnitTesting/master/sbin/appveyor.ps1" - ps: .\appveyor.ps1 "bootstrap" -verbose - "SET PATH=C:\\st;%PATH%" # install Package Control - ps: .\appveyor.ps1 "install_package_control" -verbose - ps: pip install coverage git+https://github.com/jayvdb/coveralls-python@appveyor - ps: pip install python-coveralls build: off test_script: # - ps: .\appveyor.ps1 "run_tests" -verbose # testing syntax_test files # - ps: .\appveyor.ps1 "run_syntax_tests" -verbose - ps: appveyor DownloadFile https://raw.githubusercontent.com/randy3k/UnitTesting/master/sbin/run_tests.py - ps: python ".\run_tests.py" "--coverage" "$PACKAGE" after_test: - ps: coveralls
Add env var for secret.
on: push: branches: - master schedule: # Attempt to refresh the site every morning. # * is a special character in YAML so you have to quote this string - cron: '0 3 * * *' jobs: update-digipresorg-site: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: submodules: true - name: Install 7-Zip run: sudo apt-get install -y p7zip-full p7zip-rar - name: Decrypt credentials... run: ./decrypt_secrets.sh env: FFW_PASSWORDFILE_SECRET: ${{ secrets.FFW_PASSWORDFILE_SECRET }} - name: Setup Git configuration... run: ./setup_git.sh - name: Setup Python environment... run: ./setup.sh - name: Update from various data sources... run: ./update.sh - name: Deploy updated site... run: ./deploy.sh env: GITHUB_TOKEN: ${{ secrets.DIGIPRES_REPO_TOKEN }}
on: push: branches: - master schedule: # Attempt to refresh the site every morning. # * is a special character in YAML so you have to quote this string - cron: '0 3 * * *' jobs: update-digipresorg-site: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: submodules: true - name: Install 7-Zip run: sudo apt-get install -y p7zip-full p7zip-rar - name: Decrypt credentials... run: ./decrypt_secrets.sh env: FFW_PASSWORDFILE_SECRET: ${{ secrets.FFW_PASSWORDFILE_SECRET }} - name: Setup Git configuration... run: ./setup_git.sh - name: Setup Python environment... run: ./setup.sh - name: Update from various data sources... run: ./update.sh - name: Deploy updated site... run: ./deploy.sh env: DIGIPRES_REPO_DEPLOY_PRIVATE_KEY: ${{ secrets.DIGIPRES_REPO_DEPLOY_PRIVATE_KEY }}
Add back in Region requirement in launch
run: type: docker env: - AWS_ACCESS_KEY_ID - AWS_SECRET_ACCESS_KEY - REDSHIFT_USER - REDSHIFT_PASSWORD - REDSHIFT_PORT - REDSHIFT_HOST - REDSHIFT_DB dependencies: - gearmand team: eng-ip resources: cpu: 0.05 max_mem: 0.05
run: type: docker env: - AWS_REGION - AWS_ACCESS_KEY_ID - AWS_SECRET_ACCESS_KEY - REDSHIFT_USER - REDSHIFT_PASSWORD - REDSHIFT_PORT - REDSHIFT_HOST - REDSHIFT_DB dependencies: - gearmand team: eng-ip resources: cpu: 0.05 max_mem: 0.05
Change mountPath in persisted example
apiVersion: habitat.sh/v1beta1 kind: Habitat metadata: name: example-persistent-habitat spec: # the core/redis habitat service packaged as a Docker image image: kinvolk/redis-hab count: 3 # the presence of this key activates persistent storage persistence: # the size of the volume that will be mounted in each Pod size: 1Gi # a StorageClass object with name "standard" must be created beforehand by # the cluster administrator storageClassName: standard # the location under which the volume will be mounted mountPath: /tmp/yeah env: - name: HAB_REDIS value: '{ "protected-mode": "no" }' service: name: redis topology: leader # if not present, defaults to "default" group: foobar
apiVersion: habitat.sh/v1beta1 kind: Habitat metadata: name: example-persistent-habitat spec: # the core/redis habitat service packaged as a Docker image image: kinvolk/redis-hab count: 3 # the presence of this key activates persistent storage persistence: # the size of the volume that will be mounted in each Pod size: 1Gi # a StorageClass object with name "standard" must be created beforehand by # the cluster administrator storageClassName: standard # the location under which the volume will be mounted mountPath: /tmp/foobar env: - name: HAB_REDIS value: '{ "protected-mode": "no" }' service: name: redis topology: leader # if not present, defaults to "default" group: foobar
Update SimpleReminder to 0.9.7 (12)
Categories: - Time License: GPL-3.0-or-later SourceCode: https://github.com/felixwiemuth/SimpleReminder IssueTracker: https://github.com/felixwiemuth/SimpleReminder/issues AutoName: SimpleReminder RepoType: git Repo: https://github.com/felixwiemuth/SimpleReminder Builds: - versionName: 0.9.4 versionCode: 7 commit: v0.9.4 subdir: app submodules: true gradle: - yes - versionName: 0.9.5 versionCode: 9 commit: v0.9.5 subdir: app submodules: true gradle: - yes - versionName: 0.9.6 versionCode: 11 commit: v0.9.6 subdir: app submodules: true gradle: - yes ArchivePolicy: 10 versions AutoUpdateMode: Version v%v UpdateCheckMode: Tags v\d+\.\d+\.\d+ CurrentVersion: 0.9.6 CurrentVersionCode: 11
Categories: - Time License: GPL-3.0-or-later SourceCode: https://github.com/felixwiemuth/SimpleReminder IssueTracker: https://github.com/felixwiemuth/SimpleReminder/issues AutoName: SimpleReminder RepoType: git Repo: https://github.com/felixwiemuth/SimpleReminder Builds: - versionName: 0.9.4 versionCode: 7 commit: v0.9.4 subdir: app submodules: true gradle: - yes - versionName: 0.9.5 versionCode: 9 commit: v0.9.5 subdir: app submodules: true gradle: - yes - versionName: 0.9.6 versionCode: 11 commit: v0.9.6 subdir: app submodules: true gradle: - yes - versionName: 0.9.7 versionCode: 12 commit: v0.9.7 subdir: app submodules: true gradle: - yes ArchivePolicy: 10 versions AutoUpdateMode: Version v%v UpdateCheckMode: Tags v\d+\.\d+\.\d+ CurrentVersion: 0.9.7 CurrentVersionCode: 12
Allow setting of container scale via ENV var
version: '2' services: gp-finder-frontend: scale: 1 start_on_create: true health_check: response_timeout: 5000 healthy_threshold: 2 port: 3000 unhealthy_threshold: 3 initializing_timeout: 60000 interval: 5000 strategy: recreate request_line: GET "/" "HTTP/1.0" reinitializing_timeout: 60000
version: '2' services: gp-finder-frontend: scale: $INITIAL_CONTAINER_SCALE start_on_create: true health_check: response_timeout: 5000 healthy_threshold: 2 port: 3000 unhealthy_threshold: 3 initializing_timeout: 60000 interval: 5000 strategy: recreate request_line: GET "/" "HTTP/1.0" reinitializing_timeout: 60000
Update from Hackage at 2015-10-13T22:17:24+0000
homepage: https://github.com/sdiehl/picologic changelog-type: '' hash: 1342d1e72247140b3ff45fe5b2ffeb4ce57d3597862f5e177060476dc440f1cf test-bench-deps: {} maintainer: stephen.m.diehl@gmail.com synopsis: Utilities for symbolic predicate logic expressions changelog: '' basic-deps: base: ! '>=4.6 && <4.8' picosat: ! '>=0.1 && <0.2' parsec: ! '>=3.1 && <3.2' containers: ! '>=0.5 && <0.6' mtl: ! '>=2.1 && <2.2' pretty: ! '>=1.1 && <1.2' all-versions: - '0.1' - '0.1.1' author: Stephen Diehl latest: '0.1.1' description-type: haddock description: ! '`picologic` provides symbolic logic expressions that can be integrated with the `picosat` solver.' license-name: MIT
homepage: https://github.com/sdiehl/picologic changelog-type: '' hash: 499e881e41d521fd4ae2333d59ddb855f5366b4e7f6c69d8af0949d87266c1f0 test-bench-deps: base: ! '>=2 && <5' picologic: -any picosat: -any containers: -any mtl: -any QuickCheck: -any pretty: -any maintainer: stephen.m.diehl@gmail.com synopsis: Utilities for symbolic predicate logic expressions changelog: '' basic-deps: base: ! '>=2 && <5' picosat: -any parsec: -any containers: -any mtl: -any pretty: -any all-versions: - '0.1' - '0.1.1' - '0.1.2' author: Stephen Diehl latest: '0.1.2' description-type: haddock description: ! '`picologic` provides symbolic logic expressions that can be integrated with the `picosat` solver.' license-name: MIT
Update Pdf Viewer Plus to 3.1 (22)
Categories: - Reading License: MIT SourceCode: https://github.com/JavaCafe01/PdfViewer IssueTracker: https://github.com/JavaCafe01/PdfViewer/issues Donate: https://www.paypal.me/gsnathan AutoName: Pdf Viewer Plus Description: Pdf Viewer Plus is a smooth PDF viewer written in Java. It contains a simple user interface, multiple themes, and the ability to share a PDF. RepoType: git Repo: https://github.com/JavaCafe01/PdfViewer Builds: - versionName: '2.4' versionCode: 15 commit: v2.4 subdir: app gradle: - yes - versionName: '2.5' versionCode: 16 commit: v2.5 subdir: app gradle: - yes - versionName: '2.6' versionCode: 17 commit: v2.6 subdir: app gradle: - yes - versionName: '2.7' versionCode: 18 commit: v2.7 subdir: app gradle: - yes - versionName: '3.0' versionCode: 21 commit: v3.0 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags ^v[0-9.]+$ CurrentVersion: '3.0' CurrentVersionCode: 21
Categories: - Reading License: MIT SourceCode: https://github.com/JavaCafe01/PdfViewer IssueTracker: https://github.com/JavaCafe01/PdfViewer/issues Donate: https://www.paypal.me/gsnathan AutoName: Pdf Viewer Plus Description: Pdf Viewer Plus is a smooth PDF viewer written in Java. It contains a simple user interface, multiple themes, and the ability to share a PDF. RepoType: git Repo: https://github.com/JavaCafe01/PdfViewer Builds: - versionName: '2.4' versionCode: 15 commit: v2.4 subdir: app gradle: - yes - versionName: '2.5' versionCode: 16 commit: v2.5 subdir: app gradle: - yes - versionName: '2.6' versionCode: 17 commit: v2.6 subdir: app gradle: - yes - versionName: '2.7' versionCode: 18 commit: v2.7 subdir: app gradle: - yes - versionName: '3.0' versionCode: 21 commit: v3.0 subdir: app gradle: - yes - versionName: '3.1' versionCode: 22 commit: v3.1 subdir: app gradle: - yes AutoUpdateMode: Version v%v UpdateCheckMode: Tags ^v[0-9.]+$ CurrentVersion: '3.1' CurrentVersionCode: 22
Update from Hackage at 2016-11-05T14:33:12Z
homepage: https://github.com/haskell/win32 changelog-type: '' hash: c5517b608fe3d79835c3b4747540965a622ab6074a3cf65588901d3691d22e87 test-bench-deps: {} maintainer: Haskell Libraries <libraries@haskell.org> synopsis: A binding to part of the Win32 library changelog: '' basic-deps: bytestring: -any base: ! '>=4.5 && <5' all-versions: - '2.1' - '2.1.0.0' - '2.2.0.0' - '2.2.0.1' - '2.2.0.2' - '2.2.1.0' - '2.2.2.0' - '2.3.0.0' - '2.3.0.1' - '2.3.0.2' - '2.3.1.0' - '2.3.1.1' author: Alastair Reid latest: '2.3.1.1' description-type: haddock description: A binding to part of the Win32 library. license-name: BSD3
homepage: https://github.com/haskell/win32 changelog-type: '' hash: 45513da1f75dde2a8229a923525d9d1e35770d09f77314cb9e3527bb4c7c1222 test-bench-deps: {} maintainer: Haskell Libraries <libraries@haskell.org> synopsis: A binding to part of the Win32 library changelog: '' basic-deps: bytestring: -any base: ! '>=4.5 && <5' all-versions: - '2.1' - '2.1.0.0' - '2.2.0.0' - '2.2.0.1' - '2.2.0.2' - '2.2.1.0' - '2.2.2.0' - '2.3.0.0' - '2.3.0.1' - '2.3.0.2' - '2.3.1.0' - '2.3.1.1' - '2.4.0.0' author: Alastair Reid latest: '2.4.0.0' description-type: haddock description: A binding to part of the Win32 library. license-name: BSD3
Update from Hackage at 2022-09-17T01:33:06Z
homepage: https://github.com/IvanMalison/gtk-strut#readme changelog-type: markdown hash: cd03ccd640dd0015ce89a57618d0db7829f7b49a5dc03df92b19cab73bbd97d9 test-bench-deps: {} maintainer: IvanMalison@gmail.com synopsis: Libary for creating strut windows with gi-gtk changelog: | # Changelog for gtk-strut ## Unreleased changes basic-deps: base: '>=4.7 && <5' text: -any gi-gtk: -any gi-gdk: -any data-default: -any hslogger: -any transformers: -any all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.2.1 - 0.1.3.0 - 0.1.3.1 author: Ivan Malison latest: 0.1.3.1 description-type: markdown description: | # gtk-strut license-name: BSD-3-Clause
homepage: https://github.com/IvanMalison/gtk-strut#readme changelog-type: markdown hash: b915d46dd0853fbb447fd4614941356c6e4a291a8164fa24690bd4858008aafa test-bench-deps: {} maintainer: IvanMalison@gmail.com synopsis: Library for creating strut windows with gi-gtk changelog: | # Changelog for gtk-strut ## Unreleased changes basic-deps: base: '>=4.7 && <5' text: -any gi-gtk: '>=3.0.38 && <4' gi-gdk: '>=3.0.25 && <4' data-default: -any hslogger: -any transformers: -any all-versions: - 0.1.0.0 - 0.1.1.0 - 0.1.2.0 - 0.1.2.1 - 0.1.3.0 - 0.1.3.1 - 0.1.3.2 author: Ivan Malison latest: 0.1.3.2 description-type: markdown description: | # gtk-strut license-name: BSD-3-Clause
Remove Lift from AppVeyor cache.
version: 0.0.1.{build}-test shallow_clone: true environment: LUAROCKS_VER: 2.2.2 matrix: - LUA_VER: 5.1.5 # - LUA_VER: 5.2.4 # Lua 5.2.4 with compatibility flags enabled (DLUA_COMPAT_ALL). - LUA_VER: 5.2.4 # Lua 5.2.4 with compatibility flags disabled. NOCOMPAT: true # - LUA_VER: 5.3.1 # Lua 5.3.1 with compatibility flags enabled (DLUA_COMPAT_5_2). - LUA_VER: 5.3.1 # Lua 5.3.1 with compatibility flags disabled. NOCOMPAT: true - LJ_VER: 2.0.4 - LJ_VER: 2.1 platform: - x86 - x64 configuration: - 2015 matrix: fast_finish: true cache: - c:\lua -> .appveyor.yml - c:\external -> .appveyor.yml install: - call .appveyor\set_compiler_env.bat - call .appveyor\install.bat - luarocks install busted build_script: - busted -v - luarocks make rocks/lift-scm-0.rockspec - lift --help test: off
version: 0.0.1.{build}-test shallow_clone: true environment: LUAROCKS_VER: 2.2.2 matrix: - LUA_VER: 5.1.5 # - LUA_VER: 5.2.4 # Lua 5.2.4 with compatibility flags enabled (DLUA_COMPAT_ALL). - LUA_VER: 5.2.4 # Lua 5.2.4 with compatibility flags disabled. NOCOMPAT: true # - LUA_VER: 5.3.1 # Lua 5.3.1 with compatibility flags enabled (DLUA_COMPAT_5_2). - LUA_VER: 5.3.1 # Lua 5.3.1 with compatibility flags disabled. NOCOMPAT: true - LJ_VER: 2.0.4 - LJ_VER: 2.1 platform: - x86 - x64 configuration: - 2015 matrix: fast_finish: true cache: - c:\lua -> .appveyor.yml - c:\external -> .appveyor.yml install: - call .appveyor\set_compiler_env.bat - call .appveyor\install.bat build_script: - luarocks install busted - busted -v - luarocks make rocks/lift-scm-0.rockspec - lift --help after_build: - luarocks remove lift test: off
Remove warnings about windows file endings
env: browser: true es6: true node: true extends: 'airbnb' parserOptions: sourceType: module rules: indent: - warn - 2 linebreak-style: - error - unix no-underscore-dangle: off no-param-reassign: - error - props: false object-shorthand: - 2 - consistent semi: - warn - always valid-jsdoc: - warn
env: browser: true es6: true node: true extends: 'airbnb' parserOptions: sourceType: module rules: indent: - warn - 2 linebreak-style: - error - unix - windows no-underscore-dangle: off no-param-reassign: - error - props: false object-shorthand: - 2 - consistent semi: - warn - always valid-jsdoc: - warn
Fix task /etc/localtime to not copy zoneinfo from local machine
--- - name: /etc/rc.conf template: > src=rc.conf.j2 dest=/etc/rc.conf owner=root mode=0644 tags: config - name: /etc/localtime copy: > src=/usr/share/zoneinfo/{{ timezone }} dest=/etc/localtime tags: config - name: /etc/timezone copy: > content='{{ timezone }}\n' dest=/etc/timezone tags: config - name: setup hwclock template: > src=hwclock.j2 dest=/etc/conf.d/hwclock owner=root mode=0644 tags: config - name: /etc/locale.gen template: > src=locale.gen.j2 dest=/etc/locale.gen notify: update locales tags: [config, env] - name: set default locale eselect: module=locale target={{ env_locale_lang }} notify: update env tags: [config, env] - name: set default editor eselect: module=editor target={{ env_editor }} notify: update env tags: [config, env] - name: update skel files include: skel.yml tags=skel - name: install base packages portage: package={{ item }} with_items: base_pkgs_inst tags: packages - name: enable and start base services service: > name={{ item }} enabled=yes state=started with_items: base_services_enabled tags: services
--- - name: /etc/rc.conf template: > src=rc.conf.j2 dest=/etc/rc.conf owner=root mode=0644 tags: config - name: /etc/localtime command: > rsync -ci /usr/share/zoneinfo/{{ timezone }} /etc/localtime register: _result changed_when: _result.stdout != "" tags: config - name: /etc/timezone copy: > content='{{ timezone }}\n' dest=/etc/timezone tags: config - name: setup hwclock template: > src=hwclock.j2 dest=/etc/conf.d/hwclock owner=root mode=0644 tags: config - name: /etc/locale.gen template: > src=locale.gen.j2 dest=/etc/locale.gen notify: update locales tags: [config, env] - name: set default locale eselect: module=locale target={{ env_locale_lang }} notify: update env tags: [config, env] - name: set default editor eselect: module=editor target={{ env_editor }} notify: update env tags: [config, env] - name: update skel files include: skel.yml tags=skel - name: install base packages portage: package={{ item }} with_items: base_pkgs_inst tags: packages - name: enable and start base services service: > name={{ item }} enabled=yes state=started with_items: base_services_enabled tags: services
Update from Hackage at 2022-02-18T04:52:15Z
homepage: https://github.com/jxv/sugar#readme changelog-type: markdown hash: a22ba4e6b0495ecf67d8ab1375741cd0da7ddb8d2c5a354df957ba5a2825e5df test-bench-deps: base: -any tasty-hspec: -any sugar: -any tasty: -any maintainer: Joe Vargas synopsis: Legible data changelog: | # Change log sugar uses [Semantic Versioning][]. The change log is available through the [releases on GitHub][]. [Semantic Versioning]: http://semver.org/spec/v2.0.0.html [releases on GitHub]: https://github.com/jxv/sugar/releases basic-deps: cereal: -any bytestring: -any base: '>=4.7 && <5' unordered-containers: -any text: -any megaparsec: -any text-show: -any ordered-containers: -any containers: '>0.5 && <1' text-conversions: -any safe: -any vector: -any all-versions: - 0.0.0 author: Joe Vargas latest: 0.0.0 description-type: markdown description: '# sugar' license-name: MIT
homepage: https://github.com/jxv/sugar#readme changelog-type: markdown hash: e16e638b01d8b4e0efcbf6646698fe72261d4fc1a45674cd5d087c5ce3e20365 test-bench-deps: base: -any tasty-hspec: -any sugar: -any tasty: -any maintainer: Joe Vargas synopsis: Legible data changelog: | # Change log sugar uses [Semantic Versioning][]. The change log is available through the [releases on GitHub][]. [Semantic Versioning]: http://semver.org/spec/v2.0.0.html [releases on GitHub]: https://github.com/jxv/sugar/releases basic-deps: cereal: -any bytestring: -any base: '>=4.7 && <5' unordered-containers: -any text: -any megaparsec: -any ordered-containers: -any containers: '>0.5 && <1' text-conversions: -any safe: -any vector: -any all-versions: - 0.0.0 - 0.0.0.1 author: Joe Vargas latest: 0.0.0.1 description-type: markdown description: '# sugar' license-name: MIT
Update from Hackage at 2015-12-24T11:16:05+0000
homepage: '' changelog-type: '' hash: 83e789785ad079e5dc43105059d32d8518a2ea7df5693233dde631baf315fdde test-bench-deps: {} maintainer: denis.redozubov@gmail.com synopsis: Convenience wrappers for non-intrusive debug tracing changelog: '' basic-deps: base: ! '>=4.8 && <4.9' all-versions: - '0.1.0.0' author: Denis Redozubov latest: '0.1.0.0' description-type: haddock description: '' license-name: MIT
homepage: '' changelog-type: '' hash: 485c8cd3e75f5bd66647b133afd1a9b57c47dd854bca9f1c8ba538e83094a873 test-bench-deps: {} maintainer: denis.redozubov@gmail.com synopsis: Convenience wrappers for non-intrusive debug tracing changelog: '' basic-deps: base: ! '>=4.8 && <4.9' all-versions: - '0.1.0.0' - '0.1.1.0' author: Denis Redozubov latest: '0.1.1.0' description-type: haddock description: '' license-name: MIT
Migrate from FOSSA Repository Scanning
# Refer to the following for details: # https://github.com/fossas/fossa-cli/blob/master/docs/config-file.md#fossayml version: 2 cli: server: https://app.fossa.com fetcher: custom project: ThScoreFileConverter analyze: modules: - name: TemplateGenerator type: nuget target: TemplateGenerator\TemplateGenerator.csproj path: TemplateGenerator - name: ThScoreFileConverter type: nuget target: ThScoreFileConverter\ThScoreFileConverter.csproj path: ThScoreFileConverter - name: ThScoreFileConverterTests type: nuget target: ThScoreFileConverterTests\ThScoreFileConverterTests.csproj path: ThScoreFileConverterTests - name: ManualGenerator type: pip target: ManualGenerator path: ManualGenerator
# Refer to the following for details: # https://github.com/fossas/fossa-cli/blob/master/docs/config-file.md#fossayml version: 2 cli: server: https://app.fossa.com fetcher: git locator: git+github.com/y-iihoshi/ThScoreFileConverter$revision analyze: modules: - name: TemplateGenerator type: nuget target: TemplateGenerator\TemplateGenerator.csproj path: TemplateGenerator - name: ThScoreFileConverter type: nuget target: ThScoreFileConverter\ThScoreFileConverter.csproj path: ThScoreFileConverter - name: ThScoreFileConverterTests type: nuget target: ThScoreFileConverterTests\ThScoreFileConverterTests.csproj path: ThScoreFileConverterTests - name: ManualGenerator type: pip target: ManualGenerator path: ManualGenerator
Update from Hackage at 2020-11-30T12:36:07Z
homepage: '' changelog-type: markdown hash: aebad3d8a49af1d8b1191a8f02b93c936c2f639b8491edaf33d6368dbb3477fe test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: Polysemy versions of Path functions. changelog: | # Changelog for polysemy-path ## v0.1.0.0 * Make functions sign `PathException` rather than `SomeException`. ## v0.0.1.0 * Add polysemy versions of parsing functions and `stripProperPrefix`. basic-deps: polysemy-plugin: -any polysemy-extra: '>=0.1.7.0 && <0.2.0.0' path: -any base: '>=4.7 && <5' polysemy: -any all-versions: - 0.0.1.0 - 0.1.0.0 author: Daniel Firth latest: 0.1.0.0 description-type: markdown description: | # polysemy-path Polysemy-ready versions of functions from the `path` library. license-name: MIT
homepage: '' changelog-type: markdown hash: 7396e0925ff6f24cead0d48a2371bbef1d8ef8f18082ef8ade51c85fd4d5a1b6 test-bench-deps: {} maintainer: dan.firth@homotopic.tech synopsis: Polysemy versions of Path functions. changelog: | # Changelog for polysemy-path ## v0.2.0.0 * Re-export the rest of path-0.8.0. ## v0.1.0.0 * Make functions sign `PathException` rather than `SomeException`. ## v0.0.1.0 * Add polysemy versions of parsing functions and `stripProperPrefix`. basic-deps: polysemy-plugin: -any polysemy-extra: '>=0.1.7.0 && <0.2.0.0' path: '>=0.8.0 && <0.9' base: '>=4.7 && <5' polysemy: -any all-versions: - 0.0.1.0 - 0.1.0.0 - 0.2.0.0 author: Daniel Firth latest: 0.2.0.0 description-type: markdown description: | # polysemy-path Polysemy-ready versions of functions from the `path` library. license-name: MIT
Add ports to make example work
version: '2' services: mongo: image: stefanscherer/mongo-windows:3.2.9 app: build: context: . dockerfile: Dockerfile depends_on: - "mongo" networks: default: external: name: nat
version: '2' services: mongo: image: stefanscherer/mongo-windows:3.2.9 ports: - 27017:27017 app: build: context: . dockerfile: Dockerfile depends_on: - "mongo" networks: default: external: name: nat
Add Lit Review 2 Blog Post Link
# Hi! I am ChrisKnepper - blog: http://beta.chrisknepper.com/blog feed: http://beta.chrisknepper.com/feed forges: - http://github.com/chrisknepper irc: ChrisKnepper name: Chris Knepper rit_dce: cxk1108 litreview1: http://beta.chrisknepper.com/2013/09/the-success-of-open-source-succeeds/ quiz1: http://beta.chrisknepper.com/2013/09/open-source-quiz-1/ bugfix: http://beta.chrisknepper.com/2013/09/its-not-a-feature-its-a-bug/ commarchteam: Nolski, emmix, ChrisKnepper, ExplosiveHippo commarchslides: https://docs.google.com/presentation/d/1-rmhNcFjDWS1yTzS0_4fugTMMjmA4CLRbs13qHfDP9w/ commarch: https://docs.google.com/a/g.rit.edu/document/d/1KFM5AinnzV90NkCtON81VbxofThcHxs3lS4NyI80fYw/
# Hi! I am ChrisKnepper - blog: http://beta.chrisknepper.com/blog feed: http://beta.chrisknepper.com/feed forges: - http://github.com/chrisknepper irc: ChrisKnepper name: Chris Knepper rit_dce: cxk1108 litreview1: http://beta.chrisknepper.com/2013/09/the-success-of-open-source-succeeds/ quiz1: http://beta.chrisknepper.com/2013/09/open-source-quiz-1/ bugfix: http://beta.chrisknepper.com/2013/09/its-not-a-feature-its-a-bug/ commarchteam: Nolski, emmix, ChrisKnepper, ExplosiveHippo commarchslides: https://docs.google.com/presentation/d/1-rmhNcFjDWS1yTzS0_4fugTMMjmA4CLRbs13qHfDP9w/ commarch: https://docs.google.com/a/g.rit.edu/document/d/1KFM5AinnzV90NkCtON81VbxofThcHxs3lS4NyI80fYw/ litreview2: http://beta.chrisknepper.com/2013/11/oreally/
Add option to configure package only, handle long counter names by using sub directories
documentation: Instruments the JCR API / Sling JCR API with an apicounter global: reporters: csv: dir: metrics period: 30 packages: javax.jcr: apicounter org.apache.sling.jcr.resource.: apicounter org.apache.sling.jcr.resource.api: apicounter org.apache.sling.jcr.api: apicounter
documentation: Instruments the JCR API / Sling JCR API with an apicounter global: reporters: csv: dir: metrics period: 30 packages: javax.jcr: apicounter org.apache.jackrabbit.api.: apicounter org.apache.sling.jcr.resource.: apicounter org.apache.sling.jcr.resource.api: apicounter org.apache.sling.jcr.api: apicounter
Set up for resin sync with demo device
local_resinos: app-name: pi-cam build-triggers: - Dockerfile: 08d7bf2b9e2337c5f97c5164394a9d02778029245d4635bdc5bae26913defd09 - package.json: 2a381499b79275b20cf37020b1724d3c8397a93f4b6b3e797acdf35c6b70bc26 environment: - INITSYSTEM=on uuid: d12d7bbfb1e5e6d4c5ee6ed3e2ce646c destination: /usr/src/app ignore: - .git - node_modules/
uuid: 82148865dea35aca52804f4b15ec97f6 destination: /usr/src/app ignore: - .git - node_modules/ local_resinos: {}
Revert "[SPARK-33069][INFRA] Skip test result report if no JUnit XML files are found"
name: Report test results on: workflow_run: workflows: ["Build and test"] types: - completed jobs: test_report: runs-on: ubuntu-latest steps: - name: Download test results to report uses: dawidd6/action-download-artifact@v2 with: github_token: ${{ secrets.GITHUB_TOKEN }} workflow: ${{ github.event.workflow_run.workflow_id }} commit: ${{ github.event.workflow_run.head_commit.id }} - name: Check if JUnit report XML files exist run: | if ls **/target/test-reports/*.xml > /dev/null 2>&1; then echo '::set-output name=FILE_EXISTS::true' else echo '::set-output name=FILE_EXISTS::false' fi id: check-junit-file - name: Publish test report if: steps.check-junit-file.outputs.FILE_EXISTS == 'true' uses: scacap/action-surefire-report@v1 with: check_name: Report test results github_token: ${{ secrets.GITHUB_TOKEN }} report_paths: "**/target/test-reports/*.xml" commit: ${{ github.event.workflow_run.head_commit.id }}
name: Report test results on: workflow_run: workflows: ["Build and test"] types: - completed jobs: test_report: runs-on: ubuntu-latest steps: - name: Download test results to report uses: dawidd6/action-download-artifact@v2 with: github_token: ${{ secrets.GITHUB_TOKEN }} workflow: ${{ github.event.workflow_run.workflow_id }} commit: ${{ github.event.workflow_run.head_commit.id }} - name: Publish test report uses: scacap/action-surefire-report@v1 with: check_name: Report test results github_token: ${{ secrets.GITHUB_TOKEN }} report_paths: "**/target/test-reports/*.xml" commit: ${{ github.event.workflow_run.head_commit.id }}
Clean up GitHub Actions YAML formatting
name: CI on: push: tags: - '*' paths: - Package Managers.alfredworkflow jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Rename Alfred Workflow run: mv "Package Managers.alfredworkflow" Package.Managers.alfredworkflow - name: Create GitHub Release uses: elgohr/Github-Release-Action@1.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: args: ${{ github.ref }} - name: GitHub Upload Release Artifacts uses: Roang-zero1/github-upload-release-artifacts-action@v2.0.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: args: Package.Managers.alfredworkflow
name: CI on: push: tags: - "*" paths: - Package Managers.alfredworkflow jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Rename Alfred Workflow run: mv "Package Managers.alfredworkflow" Package.Managers.alfredworkflow - name: Create GitHub Release uses: elgohr/Github-Release-Action@1.1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: args: ${{ github.ref }} - name: GitHub Upload Release Artifacts uses: Roang-zero1/github-upload-release-artifacts-action@v2.0.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: args: Package.Managers.alfredworkflow
Use --no-parallel for GitHub Actions
name: CI on: push: branches: - '*' pull_request: branches: - '*' jobs: windows: name: 'Windows (JDK 12)' runs-on: windows-latest steps: - uses: actions/checkout@master with: fetch-depth: 50 - name: 'Set up JDK 12' uses: actions/setup-java@v1 with: java-version: 12 - name: 'Test' shell: bash run: | ./gradlew build -x distTar -x distTarSha512 -x signDistTar -x distTarSource -x distTarSourceSha512 -x signDistTarSource mac: name: 'macOS (JDK 12)' runs-on: macos-latest steps: - uses: actions/checkout@master with: fetch-depth: 50 - name: 'Set up JDK 12' uses: actions/setup-java@v1 with: java-version: 12 - name: 'Test' run: | ./gradlew build -x distTar -x distTarSha512 -x signDistTar -x distTarSource -x distTarSourceSha512 -x signDistTarSource -Dskip.test_TestDNSCacheManager.testWithCustomResolverAnd1Server=true
name: CI on: push: branches: - '*' pull_request: branches: - '*' jobs: windows: name: 'Windows (JDK 12)' runs-on: windows-latest steps: - uses: actions/checkout@master with: fetch-depth: 50 - name: 'Set up JDK 12' uses: actions/setup-java@v1 with: java-version: 12 - name: 'Test' shell: bash run: | ./gradlew --no-parallel build -x distTar -x signDistTar -x distTarSource -x signDistTarSource mac: name: 'macOS (JDK 12)' runs-on: macos-latest steps: - uses: actions/checkout@master with: fetch-depth: 50 - name: 'Set up JDK 12' uses: actions/setup-java@v1 with: java-version: 12 - name: 'Test' run: | ./gradlew --no-parallel build -x distTar -x signDistTar -x distTarSource -x signDistTarSource -Dskip.test_TestDNSCacheManager.testWithCustomResolverAnd1Server=true
Use firefox latest esr on mac
--- driver: name: localhost provisioner: name: chef_zero require_chef_omnibus: 12 platforms: - name: macosx-10 suites: - name: default run_list: - selenium_test::hub - selenium_test::node attributes: selenium_test: username: travis password: travis mozilla_firefox: version: latest
--- driver: name: localhost provisioner: name: chef_zero require_chef_omnibus: 12 platforms: - name: macosx-10 suites: - name: default run_list: - selenium_test::hub - selenium_test::node attributes: selenium_test: username: travis password: travis
Update from Hackage at 2016-12-12T20:38:40Z
homepage: https://github.com/ciez/hora changelog-type: markdown hash: c68b8730c0fad122fe7f8fde7d82ea256558c5b6b43401c9b97b7dedadec1ea6 test-bench-deps: base: ! '>=4.8' time: -any hspec: ! '>=2.1.7' regex-do: -any QuickCheck: ! '>=2.8.1' maintainer: Imants Cekusins synopsis: date time changelog: ! "##### 1.0\n initial version\n " basic-deps: base: ! '>=4.7 && <5.0' time: -any regex-do: -any all-versions: - '1.0' author: Imants Cekusins latest: '1.0' description-type: haddock description: date time functions to pico precision license-name: PublicDomain
homepage: https://github.com/ciez/hora changelog-type: markdown hash: 784422e12d8ec5ca53a7381d1066feed234e82d7dba3519933013e20167f9080 test-bench-deps: base: ! '>=4.8' time: -any hspec: ! '>=2.1.7' regex-do: ! '>=3.1' QuickCheck: ! '>=2.8.1' maintainer: Imants Cekusins synopsis: date time changelog: ! "##### 1.0\n initial version\n " basic-deps: base: ! '>=4.7 && <5.0' time: -any regex-do: ! '>=3.1' all-versions: - '1.0' author: Imants Cekusins latest: '1.0' description-type: haddock description: date time functions to pico precision license-name: PublicDomain
Update from Hackage at 2015-12-28T12:40:33+0000
homepage: https://github.com/LukaHorvat/visibility changelog-type: '' hash: a3a24825ca037b7799a1d06366d0e9ed2b9a87a4a12988fe8c0085381472e7a6 test-bench-deps: {} maintainer: luka.horvat9@gmail.com synopsis: Simple computation of visibility polygons. changelog: '' basic-deps: base: ! '>=4.7 && <5' containers: ==0.5.* all-versions: - '0.1.0.0' author: Luka Horvat latest: '0.1.0.0' description-type: haddock description: '' license-name: MIT
homepage: https://github.com/LukaHorvat/visibility changelog-type: '' hash: 7de497c7a21ce0cc5440bb778788434e5de92f048f2b9922ec280edd71728b25 test-bench-deps: {} maintainer: luka.horvat9@gmail.com synopsis: Simple computation of visibility polygons. changelog: '' basic-deps: base: ! '>=4.7 && <5' containers: ==0.5.* all-versions: - '0.1.0.0' - '0.1.0.1' author: Luka Horvat latest: '0.1.0.1' description-type: haddock description: '' license-name: MIT
Bump actions/setup-python from 3 to 4
name: Build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Setup Python 3.8 uses: actions/setup-python@v3 with: python-version: 3.8 - name: Install dependencies run: | python -m pip install --upgrade pip pip install -U mkdocs mkdocs --version - name: Build docs run: | mkdocs build --clean --strict - name: Upload artifact uses: actions/upload-artifact@v3 with: path: site
name: Build on: [push, pull_request] jobs: build: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Setup Python 3.8 uses: actions/setup-python@v4 with: python-version: 3.8 - name: Install dependencies run: | python -m pip install --upgrade pip pip install -U mkdocs mkdocs --version - name: Build docs run: | mkdocs build --clean --strict - name: Upload artifact uses: actions/upload-artifact@v3 with: path: site
Remove stray steps from original
# Copyright 2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. name: Lint on: push: branches: - master pull_request: branches: - master jobs: lint: concurrency: group: ${{ github.head_ref || github.ref }} cancel-in-progress: true runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2.4.0 with: fetch-depth: 0 - uses: github/super-linter/slim@v4.8.4 env: ERROR_ON_MISSING_EXEC_BIT: true VALIDATE_JSCPD: false VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: actions/setup-node@v2 with: node-version: '14' - run: npm install - run: npm run lint
# Copyright 2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. name: Lint on: push: branches: - master pull_request: branches: - master jobs: lint: concurrency: group: ${{ github.head_ref || github.ref }} cancel-in-progress: true runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2.4.0 with: fetch-depth: 0 - uses: github/super-linter/slim@v4.8.4 env: ERROR_ON_MISSING_EXEC_BIT: true VALIDATE_JSCPD: false VALIDATE_ALL_CODEBASE: ${{ github.event_name == 'push' }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Add vagrant VM user to docker group
--- - name: Ensure apt-transport-https is installed apt: name=apt-transport-https update_cache=yes state=present - name: Add Docker repository key to local key chain apt_key: keyserver=hkp://keyserver.ubuntu.com:80 id=36A1D7869245C8950F966E92D8576A8BA88D21E9 state=present - name: Add Docker repository to apt sources apt_repository: repo='deb https://get.docker.io/ubuntu docker main' state=present - name: Ensure docker is installed apt: name=lxc-docker update_cache=yes state=present
--- - name: Ensure apt-transport-https is installed apt: name=apt-transport-https update_cache=yes state=present - name: Add Docker repository key to local key chain apt_key: keyserver=hkp://keyserver.ubuntu.com:80 id=36A1D7869245C8950F966E92D8576A8BA88D21E9 state=present - name: Add Docker repository to apt sources apt_repository: repo='deb https://get.docker.io/ubuntu docker main' state=present - name: Ensure docker is installed apt: name=lxc-docker update_cache=yes state=present - name: Create docker group group: name=docker state=present - name: Add host VM user to docker group user: name=vagrant append=yes groups=docker
Update oRing - Reminder to 2.0 (10)
Categories: - Sports & Health License: Apache-2.0 AuthorName: lubenard AuthorEmail: lubenard@student.42.fr SourceCode: https://github.com/lubenard/oRing_Reminder IssueTracker: https://github.com/lubenard/oRing_Reminder/issues Changelog: https://github.com/lubenard/oRing_Reminder/releases AutoName: oRing - Reminder RepoType: git Repo: https://github.com/lubenard/oRing_Reminder.git Builds: - versionName: '1.3' versionCode: 7 commit: b2114c2cb1d13f94cb0d08e53c04530f12469b43 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '1.3' CurrentVersionCode: 7
Categories: - Sports & Health License: Apache-2.0 AuthorName: lubenard AuthorEmail: lubenard@student.42.fr SourceCode: https://github.com/lubenard/oRing_Reminder IssueTracker: https://github.com/lubenard/oRing_Reminder/issues Changelog: https://github.com/lubenard/oRing_Reminder/releases AutoName: oRing - Reminder RepoType: git Repo: https://github.com/lubenard/oRing_Reminder.git Builds: - versionName: '1.3' versionCode: 7 commit: b2114c2cb1d13f94cb0d08e53c04530f12469b43 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - yes - versionName: '2.0' versionCode: 10 commit: 27cfdaa09f22fe68a71fb40e71d011c4fb691c08 subdir: app sudo: - apt-get update || apt-get update - apt-get install -y openjdk-11-jdk - update-alternatives --auto java gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: '2.0' CurrentVersionCode: 10
Update Home to 1.7.2 (172)
Categories: - Internet - Connectivity License: GPL-3.0-only AuthorName: Dominik AuthorWebSite: https://domi04151309.github.io/ WebSite: https://domi04151309.github.io/Android/HomeApp SourceCode: https://github.com/Domi04151309/HomeApp IssueTracker: https://github.com/Domi04151309/HomeApp/issues AutoName: Home RepoType: git Repo: https://github.com/Domi04151309/HomeApp Builds: - versionName: 1.6.1 versionCode: 161 commit: 1.6.1 subdir: app gradle: - yes - versionName: 1.7.0 versionCode: 170 commit: 1.7.0 subdir: app gradle: - yes - versionName: 1.7.1 versionCode: 171 commit: 1.7.1 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.7.1 CurrentVersionCode: 171
Categories: - Internet - Connectivity License: GPL-3.0-only AuthorName: Dominik AuthorWebSite: https://domi04151309.github.io/ WebSite: https://domi04151309.github.io/Android/HomeApp SourceCode: https://github.com/Domi04151309/HomeApp IssueTracker: https://github.com/Domi04151309/HomeApp/issues AutoName: Home RepoType: git Repo: https://github.com/Domi04151309/HomeApp Builds: - versionName: 1.6.1 versionCode: 161 commit: 1.6.1 subdir: app gradle: - yes - versionName: 1.7.0 versionCode: 170 commit: 1.7.0 subdir: app gradle: - yes - versionName: 1.7.1 versionCode: 171 commit: 1.7.1 subdir: app gradle: - yes - versionName: 1.7.2 versionCode: 172 commit: 1.7.2 subdir: app gradle: - yes AutoUpdateMode: Version %v UpdateCheckMode: Tags CurrentVersion: 1.7.2 CurrentVersionCode: 172
Fix install path for cabal.
name: HLint CI on: push: branches: - master pull_request: jobs: build: name: hlint runs-on: ubuntu-16.04 strategy: matrix: ghc: ["8.8.1"] cabal: ["3.0"] steps: - uses: actions/checkout@v1 - uses: actions/setup-haskell@v1 name: Setup Haskell with: ghc-version: ${{ matrix.ghc }} cabal-version: ${{ matrix.cabal }} - uses: actions/cache@v1 name: Cache ~/.cabal/packages with: path: ~/.cabal/packages key: cabal-packages - uses: actions/cache@v1 name: Cache ~/.cabal/store with: path: ~/.cabal/store key: cabal-store - uses: actions/cache@v1 name: Cache dist-newstyle with: path: dist-newstyle key: dist-newstyle - name: Install hlint run: | cabal update sudo cabal new-install hlint --installdir=/usr/bin/ - name: Run hlint run: | hlint -g
name: HLint CI on: push: branches: - master pull_request: jobs: build: name: hlint runs-on: ubuntu-16.04 strategy: matrix: ghc: ["8.8.1"] cabal: ["3.0"] steps: - uses: actions/checkout@v1 - uses: actions/setup-haskell@v1 name: Setup Haskell with: ghc-version: ${{ matrix.ghc }} cabal-version: ${{ matrix.cabal }} - uses: actions/cache@v1 name: Cache ~/.cabal/packages with: path: ~/.cabal/packages key: cabal-packages - uses: actions/cache@v1 name: Cache ~/.cabal/store with: path: ~/.cabal/store key: cabal-store - uses: actions/cache@v1 name: Cache dist-newstyle with: path: dist-newstyle key: dist-newstyle - name: Install hlint run: | cabal update cabal new-install hlint --installdir=dist-newstyle - name: Run hlint run: | dist-newstyle/hlint -g
Change Reason label to Reason not administered
en: activerecord: attributes: renalware/hd/prescription_administration: administered: Administered administered_by: Nurse witnessed_by: Witness witnessed_by_password: Password administered_by_password: Password errors: models: renalware/hd/prescription_administration: attributes: administered: inclusion: Please indicate if the drug was administered renalware: hd: sessions: prescription_administrations: legend: HD Prescriptions drug_name: Drug dose: Dose frequency: Freq administered: Given notes: Notes
en: activerecord: attributes: renalware/hd/prescription_administration: administered: Administered administered_by: Nurse witnessed_by: Witness witnessed_by_password: Password administered_by_password: Password reason_id: Reason not administered errors: models: renalware/hd/prescription_administration: attributes: administered: inclusion: Please indicate if the drug was administered renalware: hd: sessions: prescription_administrations: legend: HD Prescriptions drug_name: Drug dose: Dose frequency: Freq administered: Given notes: Notes
Add missing blob for kibana-4.1.0-snapshot
--- golang/go1.4.2.linux-amd64.tar.gz: object_id: d2a6c165-7467-4587-acf3-6bc44a1bd2df sha: 5020af94b52b65cc9b6f11d50a67e4bae07b0aff size: 62442704 cli/cf-linux-amd64.tgz: object_id: 9dca5de1-de2c-442d-91d5-8c14a510a371 sha: a5296502c3258d6e1701adfcce5f33b091f6d018 size: 4939902 cf-app-logs/cf-app-logs-0.0.2-SNAPSHOT.jar: object_id: 8b258f61-9ad0-44f2-9522-b69212009095 sha: ff0847ab8b2e31198ca8dc161fb27beb9c9782ba size: 34281013
--- golang/go1.4.2.linux-amd64.tar.gz: object_id: d2a6c165-7467-4587-acf3-6bc44a1bd2df sha: 5020af94b52b65cc9b6f11d50a67e4bae07b0aff size: 62442704 cli/cf-linux-amd64.tgz: object_id: 9dca5de1-de2c-442d-91d5-8c14a510a371 sha: a5296502c3258d6e1701adfcce5f33b091f6d018 size: 4939902 cf-app-logs/cf-app-logs-0.0.2-SNAPSHOT.jar: object_id: 8b258f61-9ad0-44f2-9522-b69212009095 sha: ff0847ab8b2e31198ca8dc161fb27beb9c9782ba size: 34281013 kibana-for-cf/kibana-4.1.0-snapshot-linux-x64.tar.gz: object_id: 0fa871c7-a7bd-4afe-8d83-11c262cb4041 sha: 99949ff3c2e3486f62ff4f2998725b8863aac7ed size: 25238338
Update from Hackage at 2022-08-14T14:24:24Z
homepage: https://github.com/haskell-foundation/foundation#readme changelog-type: '' hash: 92e30b116816bc4d0237445a99bdbb130b9342fefc47337ac274e74d3ca6583d test-bench-deps: {} maintainer: vincent@snarc.org synopsis: Foundation scrap box of array & string changelog: '' basic-deps: {} all-versions: - 0.0.0 - 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 - 0.0.11 - 0.0.12 - 0.0.13 - 0.0.14 author: '' latest: 0.0.14 description-type: haddock description: Foundation most basic primitives without any dependencies license-name: BSD-3-Clause
homepage: https://github.com/haskell-foundation/foundation#readme changelog-type: '' hash: 2eaaad8a625ede3f0cea5c3fa6cd2aa5bec1c66de65c843b870d72ba1e8d059b test-bench-deps: {} maintainer: vincent@snarc.org synopsis: Foundation scrap box of array & string changelog: '' basic-deps: base: <4.17 all-versions: - 0.0.0 - 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 - 0.0.11 - 0.0.12 - 0.0.13 - 0.0.14 author: '' latest: 0.0.14 description-type: haddock description: Foundation most basic primitives without any dependencies license-name: BSD-3-Clause
Add mongodb users by default
- hosts: cas-servers tasks: - name: Include common include_role: name: common - name: Install java include_role: name: java - apt_repository: repo: ppa:chris-lea/redis-server update_cache: yes - apt: name: "{{ packages }}" update_cache: yes vars: packages: - redis-server - name: Install mysql include_role: name: mysql-5.7 - name: Install mongo include_role: name: mongodb-org - name: include default cas 5 steps import_playbook: aws-cas-5.yml
- hosts: cas-servers vars: cas_add_mongo_users: true tasks: - name: Include common include_role: name: common - name: Install java include_role: name: java - apt_repository: repo: ppa:chris-lea/redis-server update_cache: yes - apt: name: "{{ packages }}" update_cache: yes vars: packages: - redis-server - name: Install mysql include_role: name: mysql-5.7 - name: Install mongo include_role: name: mongodb-org - name: include default cas 5 steps import_playbook: aws-cas-5.yml
Use Python 3.4 util conda-forge packages Qt
name: IOOS channels: - conda-forge dependencies: - python=3.5 - anaconda-navigator - beautifulsoup4 - cartopy #- cc-plugin-glider # Python 2.7 - cmocean - compliance-checker - ctd - cython - descartes - fiona - folium - gdal - geojson - geojsonio - geopandas - geos - gridgeo - gsw - iris - jsanimation - jupyter - matplotlib - mpld3 - mplleaflet - nb_conda_kernels - netcdf4 - numpy - oceans - oct2py - owslib - paegan - pandas - proj.4 - pygc - pykdtree - pyoos - pyproj - pyresample - pysgrid - pyugrid - pyyaml - qrcode - rasterio - rasterstats - requests - rios - rtree - scikit-learn - scipy - seaborn - seawater - shapely - siphon - spyder - statsmodels - sympy - thredds_crawler - xarray - xlrd
name: IOOS channels: - conda-forge dependencies: - python=3.4 - anaconda-navigator - beautifulsoup4 - cartopy #- cc-plugin-glider # Python 2.7 - cmocean - compliance-checker - ctd - cython - descartes - fiona - folium - gdal - geojson - geojsonio - geopandas - geos - gridgeo - gsw - iris - jsanimation - jupyter - matplotlib - mpld3 - mplleaflet - nb_conda_kernels - netcdf4 - numpy - oceans - oct2py - owslib - paegan - pandas - proj.4 - pygc - pykdtree - pyoos - pyproj - pyresample - pysgrid - pyugrid - pyyaml - qrcode - rasterio - rasterstats - requests - rios - rtree - scikit-learn - scipy - seaborn - seawater - shapely - siphon - spyder - statsmodels - sympy - thredds_crawler - xarray - xlrd
Add windguru page in an iFrame panel
#### iframe.yaml #### environment: title: 'Environment' url: 'http://192.168.0.164:3000/dashboard/db/environment?from=1504145805346&to=1504167405346&orgId=1&theme=light' icon: mdi:thermometer
#### iframe.yaml #### environment: title: 'Environment' url: 'http://192.168.0.164:3000/dashboard/db/environment?from=1504145805346&to=1504167405346&orgId=1&theme=light' icon: mdi:thermometer windguru: title: 'Windguru' url: 'https://www.windguru.cz/470505' icon: mdi:weather-windy
Add windows-latest to OS matric in CI workflow
name: CI on: push: branches: [master] paths: - "**.ts" - "tsconfig.json" - "tsconfig.cjs.json" - "tsconfig.esm.json" - "ava.config.cjs" - "package.json" - ".github/workflows/ci.yml" pull_request: branches: [master] paths: - "**.ts" - "tsconfig.json" - "tsconfig.cjs.json" - "tsconfig.esm.json" - "ava.config.cjs" - "package.json" - ".github/workflows/ci.yml" jobs: ci: strategy: matrix: os: [ubuntu-latest, macOS-latest] node: [12.x, 14.x, 15.x] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - run: npm install - run: npm run ci - name: Codecov uses: codecov/codecov-action@v1 if: matrix.node == '14.x' && matrix.os == 'ubuntu-latest' with: file: ./coverage/coverage-final.json flags: unittests fail_ci_if_error: true
name: CI on: push: branches: [master] paths: - "**.ts" - "tsconfig.json" - "tsconfig.cjs.json" - "tsconfig.esm.json" - "ava.config.cjs" - "package.json" - ".github/workflows/ci.yml" pull_request: branches: [master] paths: - "**.ts" - "tsconfig.json" - "tsconfig.cjs.json" - "tsconfig.esm.json" - "ava.config.cjs" - "package.json" - ".github/workflows/ci.yml" jobs: ci: strategy: matrix: os: [ubuntu-latest, macOS-latest, windows-latest] node: [12.x, 14.x, 15.x] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node }} - run: npm install - run: npm run ci - name: Codecov uses: codecov/codecov-action@v1 if: matrix.node == '14.x' && matrix.os == 'ubuntu-latest' with: file: ./coverage/coverage-final.json flags: unittests fail_ci_if_error: true
Remove deprecated Node 10 from CI.
name: CI on: pull_request: push: schedule: - cron: '30 12 * * *' workflow_dispatch: jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macos-latest, ubuntu-latest, windows-latest] 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@v1 with: node-version: ${{ matrix.node-version }} - name: Install Dependencies run: npm install --no-package-lock - name: Run All Validations if: ${{ matrix.node-version != '10.x' && matrix.node-version != '12.x' }} run: npm run ci - name: Run Tests Only if: ${{ matrix.node-version == '10.x' || matrix.node-version == '12.x' }} run: npm run test
name: CI on: pull_request: push: schedule: - cron: '30 12 * * *' workflow_dispatch: jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [macos-latest, ubuntu-latest, windows-latest] node-version: [12.x, 14.x, 16.x] steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Install Dependencies run: npm install --no-package-lock - name: Run All Validations if: ${{ matrix.node-version != '10.x' && matrix.node-version != '12.x' }} run: npm run ci - name: Run Tests Only if: ${{ matrix.node-version == '10.x' || matrix.node-version == '12.x' }} run: npm run test
Add nbval to conda build test requirements
package: name: mbuild version: {{ GIT_DESCRIBE_TAG }} source: path: ../../ build: noarch: python number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0)}} script_env: - CONDA_PY script: activate script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - protobuf run: - python - numpy - scipy - packmol >=1!18.013 - nglview >=0.6 - oset - parmed - protobuf - mdtraj test: requires: - pytest >=3.0 - jupyter - nbformat - ipykernel - foyer - networkx source_files: - mbuild/examples/* commands: - set LNAME=mosdef - activate - pytest -v --pyargs mbuild --nbval --nbval-lax about: home: http://mosdef-hub.github.io/mbuild license: MIT summary: A hierarchical, component based molecule builder.
package: name: mbuild version: {{ GIT_DESCRIBE_TAG }} source: path: ../../ build: noarch: python number: {{ environ.get('GIT_DESCRIBE_NUMBER', 0)}} script_env: - CONDA_PY script: activate script: python setup.py install --single-version-externally-managed --record record.txt requirements: build: - python - protobuf run: - python - numpy - scipy - packmol >=1!18.013 - nglview >=0.6 - oset - parmed - protobuf - mdtraj test: requires: - pytest >=3.0 - jupyter - nbformat - ipykernel - foyer - networkx - nbval source_files: - mbuild/examples/* commands: - set LNAME=mosdef - activate - pytest -v --pyargs mbuild --nbval --nbval-lax about: home: http://mosdef-hub.github.io/mbuild license: MIT summary: A hierarchical, component based molecule builder.
Remove pinned pyqt ==4 from conda tests
package: name: mdtraj-dev version: "0.0.0" build: entry_points: - mdconvert = mdtraj.scripts.mdconvert:entry_point - mdinspect = mdtraj.scripts.mdinspect:entry_point requirements: build: - python - cython - numpy x.x - setuptools - zlib run: - python - setuptools - numpy x.x - pandas - scipy - pytables test: requires: - nose - scripttest - networkx - ipython-notebook - ipywidgets - matplotlib - pandas - openmm # [not (win32 or (win and py2k))] - shiftx2 # [linux] - nbformat - ipykernel - scikit-learn - pyqt ==4 # workaround for broken upstream dependency on PyQT4 commands: - nosetests mdtraj -v -s - cd {{SRC_DIR}} - cd examples - nosetests test_examples.py -v -s # [not (win32 or (win and py2k))] about: home: http://mdtraj.org license: GNU Lesser General Public License v2 or later (LGPLv2+) summary: A modern, open library for the analysis of molecular dynamics trajectories (development snapshot)
package: name: mdtraj-dev version: "0.0.0" build: entry_points: - mdconvert = mdtraj.scripts.mdconvert:entry_point - mdinspect = mdtraj.scripts.mdinspect:entry_point requirements: build: - python - cython - numpy x.x - setuptools - zlib run: - python - setuptools - numpy x.x - pandas - scipy - pytables test: requires: - nose - scripttest - networkx - ipython-notebook - ipywidgets - matplotlib - pandas - openmm # [not (win32 or (win and py2k))] - shiftx2 # [linux] - nbformat - ipykernel - scikit-learn commands: - nosetests mdtraj -v -s - cd {{SRC_DIR}} - cd examples - nosetests test_examples.py -v -s # [not (win32 or (win and py2k))] about: home: http://mdtraj.org license: GNU Lesser General Public License v2 or later (LGPLv2+) summary: A modern, open library for the analysis of molecular dynamics trajectories (development snapshot)
Update the release trigger to install .NET Core 2.1
name: Push packages to NuGet on: release: types: [published] jobs: release: runs-on: ubuntu-18.04 env: DOTNET_NOLOGO: true steps: - name: Check out our repo uses: actions/checkout@v2 # Install the .NET Core 3.1 SDK for build and test - name: Setup .NET Core 3.1 uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.x - name: Build run: | dotnet build -c Release dotnet test -c Release mkdir nuget - name: Push to NuGet run: | dotnet pack -c Release -o $PWD/nuget # For now, just display the NuGet packages we'd push in reality. ls nuget
name: Push packages to NuGet on: release: types: [published] jobs: release: runs-on: ubuntu-18.04 env: DOTNET_NOLOGO: true steps: - name: Check out our repo uses: actions/checkout@v2 # We need just the .NET Core 2.1 runtime for testing - name: Setup .NET Core 2.1 uses: actions/setup-dotnet@v1 with: dotnet-version: 2.1.x # Build with .NET Core 3.1 SDK - name: Setup .NET Core 3.1 uses: actions/setup-dotnet@v1 with: dotnet-version: 3.1.x - name: Build run: | dotnet build -c Release dotnet test -c Release mkdir nuget - name: Push to NuGet run: | dotnet pack -c Release -o $PWD/nuget # For now, just display the NuGet packages we'd push in reality. ls nuget
Update CovidAt to 4.0.1 (9)
Categories: - Navigation - Sports & Health License: CECILL-2.1 AuthorName: Codefish AuthorEmail: codefish@online.fr SourceCode: https://gitlab.com/codefish42/covidat IssueTracker: https://gitlab.com/codefish42/covidat/issues AutoName: CovidAt RepoType: git Repo: https://gitlab.com/codefish42/covidat.git Builds: - versionName: 1.0.1 versionCode: 2 commit: v1.0.1 subdir: app gradle: - yes - versionName: 2.0.1 versionCode: 4 commit: v2.0.1 subdir: app gradle: - yes - versionName: 2.1.0 versionCode: 5 commit: v2.1.0 subdir: app gradle: - yes - versionName: 2.1.1 versionCode: 6 commit: v2.1.1 subdir: app gradle: - yes - versionName: 3.0.0 versionCode: 7 commit: v3.0.0 subdir: app gradle: - yes ArchivePolicy: 0 versions AutoUpdateMode: Version v%v UpdateCheckMode: Tags ^v.+[0-9]$ CurrentVersion: 3.0.0 CurrentVersionCode: 7
Categories: - Navigation - Sports & Health License: CECILL-2.1 AuthorName: Codefish AuthorEmail: codefish@online.fr SourceCode: https://gitlab.com/codefish42/covidat IssueTracker: https://gitlab.com/codefish42/covidat/issues AutoName: CovidAt RepoType: git Repo: https://gitlab.com/codefish42/covidat.git Builds: - versionName: 1.0.1 versionCode: 2 commit: v1.0.1 subdir: app gradle: - yes - versionName: 2.0.1 versionCode: 4 commit: v2.0.1 subdir: app gradle: - yes - versionName: 2.1.0 versionCode: 5 commit: v2.1.0 subdir: app gradle: - yes - versionName: 2.1.1 versionCode: 6 commit: v2.1.1 subdir: app gradle: - yes - versionName: 3.0.0 versionCode: 7 commit: v3.0.0 subdir: app gradle: - yes - versionName: 4.0.1 versionCode: 9 commit: v4.0.1 subdir: app gradle: - yes ArchivePolicy: 0 versions AutoUpdateMode: Version v%v UpdateCheckMode: Tags ^v.+[0-9]$ CurrentVersion: 4.0.1 CurrentVersionCode: 9
Change app host for staging.
--- # App app_user: dosomething app_host: dev.dosomething.org app_root: /var/www/{{ app_host }}/current
--- # App app_user: dosomething app_host: staging.beta.dosomething.org app_root: /var/www/{{ app_host }}/current
Update from Hackage at 2017-12-15T12:48:37Z
homepage: https://github.com/sol/markdown-unlit#readme changelog-type: '' hash: 42e8052f6c497b200f6819c54bcd113fa5e0ed9a539408eacfbeaf3685b99b07 test-bench-deps: base: ==4.* hspec: ==2.* stringbuilder: -any silently: -any base-compat: -any temporary: -any QuickCheck: -any directory: -any maintainer: Simon Hengel <sol@typeful.net> synopsis: Literate Haskell support for Markdown changelog: '' basic-deps: base: ==4.* markdown-unlit: -any base-compat: -any all-versions: - '0.1.0' - '0.2.0' - '0.2.0.1' - '0.3.1' - '0.4.0' - '0.5.0' author: Simon Hengel <sol@typeful.net> latest: '0.5.0' description-type: haddock description: ! 'Documentation is here: <https://github.com/sol/markdown-unlit#readme>' license-name: MIT
homepage: https://github.com/sol/markdown-unlit#readme changelog-type: '' hash: 42e8052f6c497b200f6819c54bcd113fa5e0ed9a539408eacfbeaf3685b99b07 test-bench-deps: base: ==4.* hspec: ==2.* stringbuilder: -any silently: -any base-compat: -any temporary: -any QuickCheck: -any directory: -any maintainer: Simon Hengel <sol@typeful.net> synopsis: Literate Haskell support for Markdown changelog: '' basic-deps: base: ==4.* markdown-unlit: -any base-compat: -any all-versions: - '0.1.0' - '0.2.0' - '0.2.0.1' - '0.3.1' - '0.4.0' - '0.4.1' - '0.5.0' author: Simon Hengel <sol@typeful.net> latest: '0.5.0' description-type: haddock description: ! 'Documentation is here: <https://github.com/sol/markdown-unlit#readme>' license-name: MIT
Update circleci/python Docker tag to v3.6.5
# 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.6.1@sha256:6a9bbe17f3ecc54fb6be875b8c6c8eaed84eadc2b1fd1b7d6e5c89da0381f625 working_directory: ~/repo steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: name: install dependencies command: | python3 -m venv venv . venv/bin/activate python setup.py dev_persistent_pip_sync - save_cache: paths: - ./venv key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }} - run: name: run tests command: | . venv/bin/activate flake8 bamboo_crawler tests export AWS_ACCESS_KEY_ID='' export AWS_SECRET_ACCESS_KEY='' 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.6.5@sha256:5ed7f0d14f10f5b81c012c6011969ca5abf9f7bc53e0448844aa9274a359178e working_directory: ~/repo steps: - checkout - restore_cache: keys: - v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - run: name: install dependencies command: | python3 -m venv venv . venv/bin/activate python setup.py dev_persistent_pip_sync - save_cache: paths: - ./venv key: v1-dependencies-{{ checksum "requirements.txt" }}-{{ checksum "dev-requirements.txt" }} - run: name: run tests command: | . venv/bin/activate flake8 bamboo_crawler tests export AWS_ACCESS_KEY_ID='' export AWS_SECRET_ACCESS_KEY='' python setup.py test - store_artifacts: path: test-reports destination: test-reports
Add dein_bundles_dir back to group_vars
--- config_dirs: - src: >- molecule_group_1/sync1 dest: >- {{ ansible_user_dir }}/sync1 - src: >- molecule_group_1/sync2 dest: >- {{ ansible_user_dir }}/sync2 - src: >- molecule_group_1/sync3 dest: >- {{ ansible_user_dir }}/sync3 config_files: - content: | TEST CONTENT A dest: "{{ ansible_user_dir }}/a" mode: "0400" - content: | TEST CONTENT B dest: "{{ ansible_user_dir }}/1/b" mode: "0644" dir_mode: "0700" - content: | TEST CONTENT C dest: "{{ ansible_user_dir }}/1/2/c" mode: "0644" dir_mode: "0755"
--- config_dirs: - src: >- molecule_group_1/sync1 dest: >- {{ ansible_user_dir }}/sync1 - src: >- molecule_group_1/sync2 dest: >- {{ ansible_user_dir }}/sync2 - src: >- molecule_group_1/sync3 dest: >- {{ ansible_user_dir }}/sync3 config_files: - content: | TEST CONTENT A dest: "{{ ansible_user_dir }}/a" mode: "0400" - content: | TEST CONTENT B dest: "{{ ansible_user_dir }}/1/b" mode: "0644" dir_mode: "0700" - content: | TEST CONTENT C dest: "{{ ansible_user_dir }}/1/2/c" mode: "0644" dir_mode: "0755" dein_bundles_dir: "{{ ansible_user_dir }}/.vim/bundles"
Fix GitHub action for Java 15-ea.
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. name: Java CI on: [push] jobs: build: runs-on: ubuntu-latest continue-on-error: ${{ matrix.experimental }} strategy: matrix: java: [ 8, 11, 14 ] experimental: [false] include: - node: 15-ea experimental: true steps: - uses: actions/checkout@v2.3.1 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build with Maven run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml
# Licensed to the Apache Software Foundation (ASF) under one or more # contributor license agreements. See the NOTICE file distributed with # this work for additional information regarding copyright ownership. # The ASF licenses this file to You under the Apache License, Version 2.0 # (the "License"); you may not use this file except in compliance with # the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. name: Java CI on: [push] jobs: build: runs-on: ubuntu-latest continue-on-error: ${{ matrix.experimental }} strategy: matrix: java: [ 8, 11, 14 ] experimental: [false] include: - java: 15-ea experimental: true steps: - uses: actions/checkout@v2.3.1 - name: Set up JDK ${{ matrix.java }} uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - name: Build with Maven run: mvn -V apache-rat:check spotbugs:check javadoc:javadoc -Ddoclint=all package --file pom.xml
Normalize git urls in pre-commit config
repos: - repo: https://github.com/pre-commit/pre-commit-hooks.git sha: v0.9.1 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: autopep8-wrapper - id: check-docstring-first - id: check-yaml - id: debug-statements - id: requirements-txt-fixer - id: flake8 - repo: https://github.com/asottile/reorder_python_imports.git sha: v0.3.5 hooks: - id: reorder-python-imports - repo: local hooks: - id: gofmt name: gofmt language: system entry: gofmt -l -w files: \.go$
repos: - repo: https://github.com/pre-commit/pre-commit-hooks sha: v0.9.1 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: autopep8-wrapper - id: check-docstring-first - id: check-yaml - id: debug-statements - id: requirements-txt-fixer - id: flake8 - repo: https://github.com/asottile/reorder_python_imports sha: v0.3.5 hooks: - id: reorder-python-imports - repo: local hooks: - id: gofmt name: gofmt language: system entry: gofmt -l -w files: \.go$
Update Test Kitchen config for @darkskyapp
--- driver: name: ec2 aws_ssh_key_id: <%= ENV['AWS_KEYPAIR_NAME'] %> region: us-east-1 availability_zone: us-east-1b security_group_ids: - ci-testing instance_type: c3.large iam_profile_name: test-kitchen interface: public tags: Env: dev Type: test transport: name: sftp ssh_key: <%= ENV['EC2_SSH_KEY_PATH'] %> provisioner: name: chef_zero client_rb: environment: dev platforms: - name: ubuntu-14.04 - name: ubuntu-16.04 suites: - name: default driver: tags: Name: s3-put-default-ubuntu-1604 run_list: - recipe[test_s3_put::default] attributes: test_s3_put: bucket: ops remote_path: chef/test_s3_put - name: default-chef12 driver: tags: Name: s3-put-default-chef12-ubuntu-1604 provisioner: product_name: chef product_version: 12 run_list: - recipe[test_s3_put::default] attributes: test_s3_put: bucket: ops remote_path: chef/test_s3_put
--- driver: name: ec2 subnet_id: subnet-f1f6acac # development-public-us-east-1b security_group_ids: - sg-8fea3af9 # ci-testing-vpc instance_type: c5.large iam_profile_name: test-kitchen interface: public tags: Env: public Type: test Operator: <%= ENV['USER'] %> transport: name: sftp ssh_key: <%= ENV['EC2_SSH_KEY_PATH'] %> provisioner: name: chef_zero client_rb: environment: dev platforms: - name: ubuntu-14.04 - name: ubuntu-16.04 suites: - name: default driver: tags: Name: s3-put-default-ubuntu-1604 run_list: - recipe[test_s3_put::default] attributes: test_s3_put: bucket: darksky-ops remote_path: chef/test_s3_put - name: default-chef12 driver: tags: Name: s3-put-default-chef12-ubuntu-1604 provisioner: product_name: chef product_version: 12 run_list: - recipe[test_s3_put::default] attributes: test_s3_put: bucket: darksky-ops remote_path: chef/test_s3_put
Check for correct repo name.
# scripts that run after cloning repository install: - if "%APPVEYOR_REPO_BRANCH%" EQU "master" if not defined APPVEYOR_PULL_REQUEST_NUMBER set MASTER_BUILD=1 - git submodule init - if not defined MASTER_BUILD git submodule deinit script - git submodule update - nuget restore submodules\akavache\Akavache.sln - nuget restore submodules\octokit.net\Octokit.sln - nuget restore submodules\reactiveui\ReactiveUI.sln - nuget restore submodules\Rothko\Rothko.sln - nuget restore GitHubVS.sln build_script: - msbuild "GitHubVS.sln" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:Configuration=Release /p:DeployExtension=false /verbosity:minimal /p:VisualStudioVersion=14.0 test_script: - '%xunit20%\xunit.console.x86 "src\UnitTests\bin\Release\UnitTests.dll" -appveyor' - nunit-console "src\TrackingCollectionTests\bin\Release\TrackingCollectionTests.dll" -framework:net-4.5 -exclude:Timings
# scripts that run after cloning repository install: - if "%APPVEYOR_REPO_NAME%" EQU "github/VisualStudio" if "%APPVEYOR_REPO_BRANCH%" EQU "master" if not defined APPVEYOR_PULL_REQUEST_NUMBER set MASTER_BUILD=1 - git submodule init - if not defined MASTER_BUILD git submodule deinit script - git submodule update - nuget restore submodules\akavache\Akavache.sln - nuget restore submodules\octokit.net\Octokit.sln - nuget restore submodules\reactiveui\ReactiveUI.sln - nuget restore submodules\Rothko\Rothko.sln - nuget restore GitHubVS.sln build_script: - msbuild "GitHubVS.sln" /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:Configuration=Release /p:DeployExtension=false /verbosity:minimal /p:VisualStudioVersion=14.0 test_script: - '%xunit20%\xunit.console.x86 "src\UnitTests\bin\Release\UnitTests.dll" -appveyor' - nunit-console "src\TrackingCollectionTests\bin\Release\TrackingCollectionTests.dll" -framework:net-4.5 -exclude:Timings
Enable E2E tests for Windows
build: off os: unstable environment: nodejs_version: '8' install: - ps: Install-Product node $env:nodejs_version - yarn - cd npm-package && yarn && cd .. test_script: - node --version - yarn --version - yarn lint - yarn build - yarn test
build: off os: unstable environment: nodejs_version: '8' install: - ps: Install-Product node $env:nodejs_version - yarn - cd npm-package && yarn && cd .. test_script: - node --version - yarn --version - yarn lint - yarn build - yarn test - yarn test-e2e
Use BUILD_DEMO for AppVeyor builds
version: "{branch}-{build}" os: Visual Studio 2015 platform: Win32 configuration: Release environment: matrix: - cmake_generator: "Visual Studio 9 2008" msbuild_path: C:\Windows\Microsoft.NET\Framework\v3.5\msbuild - cmake_generator: "Visual Studio 14 2015" msbuild_path: msbuild before_build: - cmake -G "%cmake_generator%" build_script: - "%msbuild_path% meshoptimizer.sln" test: off
version: "{branch}-{build}" os: Visual Studio 2015 platform: Win32 configuration: Release environment: matrix: - cmake_generator: "Visual Studio 9 2008" msbuild_path: C:\Windows\Microsoft.NET\Framework\v3.5\msbuild - cmake_generator: "Visual Studio 14 2015" msbuild_path: msbuild before_build: - cmake -G "%cmake_generator%" -DBUILD_DEMO=ON build_script: - "%msbuild_path% meshoptimizer.sln" test: off
Use lower-case target name in cmake command
version: '{build}' configuration: - RelWithDebInfo environment: SAMP_SDK_ROOT: sdk matrix: - STATIC: ON - STATIC: OFF install: - choco install python2 - choco install pip - choco install doxygen.install - RefreshEnv - pip install ply - pip install cidl - git clone https://github.com/Zeex/samp-plugin-sdk.git sdk before_build: - cmake . -DSAMPGDK_STATIC=%STATIC% -DSAMPGDK_BUILD_PLUGINS=ON -DSAMPGDK_BUILD_AMALGAMATION=ON build_script: - cmake --build . --config %CONFIGURATION% - cmake --build . --config %CONFIGURATION% --target PACKAGE artifacts: - path: sampgdk-*-win32.zip name: Binaries - path: sampgdk-*-win32-static.zip name: Binaries (static) - path: sampgdk-*-amalgamation.zip name: Amalgamation
version: '{build}' configuration: - RelWithDebInfo environment: SAMP_SDK_ROOT: sdk matrix: - STATIC: ON - STATIC: OFF install: - choco install python2 - choco install pip - choco install doxygen.install - RefreshEnv - pip install ply - pip install cidl - git clone https://github.com/Zeex/samp-plugin-sdk.git sdk before_build: - cmake . -DSAMPGDK_STATIC=%STATIC% -DSAMPGDK_BUILD_PLUGINS=ON -DSAMPGDK_BUILD_AMALGAMATION=ON build_script: - cmake --build . --config %CONFIGURATION% - cmake --build . --config %CONFIGURATION% --target package artifacts: - path: sampgdk-*-win32.zip name: Binaries - path: sampgdk-*-win32-static.zip name: Binaries (static) - path: sampgdk-*-amalgamation.zip name: Amalgamation
Remove "write a program" from paasio exercise
--- blurb: "Write a program that reports network IO statistics" source: "Brian Matsuo" source_url: "https://github.com/bmatsuo"
--- blurb: "Report network IO statistics" source: "Brian Matsuo" source_url: "https://github.com/bmatsuo"
Update from Hackage at 2017-07-17T07:01:24Z
homepage: https://github.com/peti/titlecase#readme changelog-type: '' hash: 8081548d7c7c86c3553b7e27f0135b01c92618d28dee8be9d132e5d643c7c5f3 test-bench-deps: titlecase: -any base: <5 tasty-quickcheck: -any tasty-hunit: -any tasty: -any maintainer: Peter Simons <simons@cryp.to> synopsis: Convert English Words to Title Case changelog: '' basic-deps: titlecase: -any base: <5 all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' - '1' author: ! 'Nikita Karetnikov, Peter Simons, Aaron Wolf' latest: '1' description-type: haddock description: Capitalize all English words except articles (a, an, the), coordinating conjunctions (for, and, nor, but, or, yet, so), and prepositions (unless they begin or end the title). The prepositions are taken from <https://en.wikipedia.org/wiki/List_of_English_prepositions Wikipedia>. license-name: BSD3
homepage: https://github.com/peti/titlecase#readme changelog-type: '' hash: f6659103b3befe9da3ff6901db75c916434b78fd6c7f873e8280841a69d9b238 test-bench-deps: titlecase: -any base: <5 tasty-quickcheck: -any tasty-hunit: -any tasty: -any maintainer: Peter Simons <simons@cryp.to> synopsis: Convert English Words to Title Case changelog: '' basic-deps: titlecase: -any base: <5 all-versions: - '0.1.0.0' - '0.1.0.1' - '0.1.0.2' - '0.1.0.3' - '1' - '1.0.1' author: ! 'Nikita Karetnikov, Peter Simons, Aaron Wolf, Serg Nesterov' latest: '1.0.1' description-type: haddock description: Capitalize all English words except articles (a, an, the), coordinating conjunctions (for, and, nor, but, or, yet, so), and prepositions (unless they begin or end the title). The prepositions are taken from <https://en.wikipedia.org/wiki/List_of_English_prepositions Wikipedia>. license-name: BSD3
Add a dependency on pathos from http.
name: http author: "Dart Team <misc@dartlang.org>" homepage: http://www.dartlang.org description: A composable, Future-based API for making HTTP requests. dev_dependencies: unittest: any
name: http author: "Dart Team <misc@dartlang.org>" homepage: http://www.dartlang.org description: A composable, Future-based API for making HTTP requests. dependencies: pathos: any dev_dependencies: unittest: any
Use command: instead of args: for apisnoop-gate entrypoint + arg
periodics: - interval: 3h name: apisnoop-conformance-gate annotations: testgrid-dashboards: sig-arch-conformance testgrid-tab-name: apisnoop-conformance-gate test-grid-alert-email: kubernetes-sig-arch-conformance-test-failures@googlegroups.com testgrid-num-failures-to-alert: '1' description: 'Uses APISnoop to check that new GA endpoints are conformance tested in latest e2e test run' decorate: true spec: containers: - name: apisnoop-gate image: gcr.io/k8s-staging-apisnoop/snoopdb:v20200923-v2020.09.23-1-gb3afc41 args: - postgres
periodics: - interval: 3h name: apisnoop-conformance-gate annotations: testgrid-dashboards: sig-arch-conformance testgrid-tab-name: apisnoop-conformance-gate test-grid-alert-email: kubernetes-sig-arch-conformance-test-failures@googlegroups.com testgrid-num-failures-to-alert: '1' description: 'Uses APISnoop to check that new GA endpoints are conformance tested in latest e2e test run' decorate: true spec: containers: - name: apisnoop-gate image: gcr.io/k8s-staging-apisnoop/snoopdb:v20200923-v2020.09.23-1-gb3afc41 command: - /usr/local/bin/docker-entrypoint.sh - postgres
Delete wheel param from common yaml for generalization.
steerbot_controller: type: "steer_drive_controller/SteerDriveController" rear_wheel : 'rear_wheel_joint' front_steer : 'front_steer_joint' publish_rate: 50.0 # defaults to 50 pose_covariance_diagonal: [0.001, 0.001, 1000000.0, 1000000.0, 1000000.0, 1000.0] twist_covariance_diagonal: [0.001, 0.001, 1000000.0, 1000000.0, 1000000.0, 1000.0] cmd_vel_timeout: 20.0 # we test this separately, give plenty for the other tests wheel_separation_h : 0.20 wheel_radius : 0.11 wheel_separation_h_multiplier: 0.515 # calibration parameter for odometory
steerbot_controller: type: "steer_drive_controller/SteerDriveController" rear_wheel : 'rear_wheel_joint' front_steer : 'front_steer_joint' publish_rate: 50.0 # defaults to 50 pose_covariance_diagonal: [0.001, 0.001, 1000000.0, 1000000.0, 1000000.0, 1000.0] twist_covariance_diagonal: [0.001, 0.001, 1000000.0, 1000000.0, 1000000.0, 1000.0] cmd_vel_timeout: 20.0 # we test this separately, give plenty for the other tests wheel_separation_h : 0.20 #wheel_radius : 0.11 wheel_separation_h_multiplier: 0.515 # calibration parameter for odometory
Update from Hackage at 2022-04-23T12:29:36Z
homepage: https://github.com/raehik/refined-with#readme changelog-type: markdown hash: d7f235b0ce4495fd0e0d92c165da0e91454174babb960baf9925e2cb700cfaab test-bench-deps: {} maintainer: Ben Orchard <thefirstmuffinman@gmail.com> synopsis: Refinement types with an "refinement applied" switch. changelog: | ## 0.1.0 (2022-04-22) Initial release. * extracted from gtvm-hs basic-deps: base: '>=4.14 && <5' refined: '>=0.6.3 && <0.7' hashable: ==1.4.* deepseq: ==1.4.* aeson: ==2.0.* all-versions: - 0.1.0 author: Ben Orchard latest: 0.1.0 description-type: markdown description: | # refined-with Layer on top of Nikita Volkov's [refined](https://hackage.haskell.org/package/refined) library to allow annotating data types with refinements, and a flag that indicates whether that refinement has been "applied". See the Hackage documentation for details. license-name: MIT
homepage: https://github.com/raehik/refined-with#readme changelog-type: markdown hash: 857e6daaf968dd6964e7cff4d8601ae1bd2e60edcbaa07b0518e8008d2f69300 test-bench-deps: {} maintainer: Ben Orchard <thefirstmuffinman@gmail.com> synopsis: Refinement types with an "refinement applied" switch. changelog: | ## 0.2.0 (2022-04-23) * rename `unWithRefine` to `withoutRefine` * reorder `reallyUnsafeEnforce` typevars for visible type application convenience ## 0.1.0 (2022-04-22) Initial release. * extracted from gtvm-hs basic-deps: base: '>=4.14 && <5' refined: '>=0.6.3 && <0.7' hashable: ==1.4.* deepseq: ==1.4.* aeson: ==2.0.* all-versions: - 0.1.0 - 0.2.0 author: Ben Orchard latest: 0.2.0 description-type: markdown description: | # refined-with Layer on top of Nikita Volkov's [refined](https://hackage.haskell.org/package/refined) library to allow annotating data types with refinements, and a flag that indicates whether that refinement has been "applied". See the Hackage documentation for details. license-name: MIT
Update from Hackage at 2016-06-04T23:23:30+0000
homepage: http://rwd.rdockins.name/shellac/home/ changelog-type: '' hash: 3ffcc6aa147ae304774ddde0cd56e92f8d913f12d2e4a7d7fc0e66b7019007db test-bench-deps: {} maintainer: robdockins AT fastmail DOT fm synopsis: A framework for creating shell envinronments changelog: '' basic-deps: unix: -any base: ==4.* mtl: -any directory: -any all-versions: - '0.9' - '0.9.1' - '0.9.5' - '0.9.5.1' - '0.9.5.2' - '0.9.9' author: Robert Dockins latest: '0.9.9' description-type: haddock description: ! 'Shellac is a framework for building read-eval-print style shells. Shells are created by declaratively defining a set of shell commands and an evaluation function. Shellac supports multiple shell backends, including a ''basic'' backend which uses only Haskell IO primitives and a full featured ''readline'' backend based on the the Haskell readline bindings found in the standard libraries. This library attempts to allow users to write shells at a high level and still enjoy the advanced features that may be available from a powerful line editing package like readline.' license-name: BSD3
homepage: http://rwd.rdockins.name/shellac/home/ changelog-type: '' hash: 35fe65b9a3558a76521ca95cfa49eeaba88244bc14aa531d1788ce69beae57d8 test-bench-deps: {} maintainer: robdockins AT fastmail DOT fm synopsis: A framework for creating shell envinronments changelog: '' basic-deps: unix: -any base: ==4.* mtl: -any directory: -any all-versions: - '0.9' - '0.9.1' - '0.9.5' - '0.9.5.1' - '0.9.5.2' - '0.9.9' author: Robert Dockins latest: '0.9.9' description-type: haddock description: ! 'Shellac is a framework for building read-eval-print style shells. Shells are created by declaratively defining a set of shell commands and an evaluation function. Shellac supports multiple shell backends, including a ''basic'' backend which uses only Haskell IO primitives and a full featured ''readline'' backend based on the the Haskell readline bindings found in the standard libraries. This library attempts to allow users to write shells at a high level and still enjoy the advanced features that may be available from a powerful line editing package like readline.' license-name: BSD3