feat(dafny): use kms:GenerateDataKey
for branch key creation and version hv-2
#4995
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow runs for every pull request | |
name: PR CI | |
on: | |
pull_request: | |
jobs: | |
getVersion: | |
uses: ./.github/workflows/dafny_version.yaml | |
getVerifyVersion: | |
uses: ./.github/workflows/dafny_verify_version.yaml | |
pr-ci-format: | |
needs: getVersion | |
uses: ./.github/workflows/library_format.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
pr-ci-codegen: | |
needs: getVersion | |
uses: ./.github/workflows/library_codegen.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
pr-ci-verification: | |
needs: getVerifyVersion | |
uses: ./.github/workflows/library_dafny_verification.yml | |
with: | |
dafny: ${{needs.getVerifyVersion.outputs.version}} | |
pr-ci-java: | |
needs: getVersion | |
uses: ./.github/workflows/library_java_tests.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
pr-ci-examples: | |
needs: getVersion | |
uses: ./.github/workflows/library_examples.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
pr-ci-net: | |
needs: getVersion | |
uses: ./.github/workflows/library_net_tests.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
# TODO-HV-2-Rust: Removing Rust until we rebase or need it | |
# pr-ci-rust: | |
# needs: getVersion | |
# uses: ./.github/workflows/library_rust_tests.yml | |
# with: | |
# dafny: ${{needs.getVersion.outputs.version}} | |
pr-ci-python: | |
needs: getVersion | |
uses: ./.github/workflows/library_python_tests.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
# TODO-HV-2-Go: Removing Go CI until we rebase or need it | |
# pr-ci-go: | |
# needs: getVersion | |
# uses: ./.github/workflows/library_go_tests.yml | |
# with: | |
# dafny: ${{needs.getVersion.outputs.version}} | |
pr-interop-test: | |
needs: getVersion | |
uses: ./.github/workflows/library_interop_tests.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
secrets: inherit | |
pr-ci-all-required: | |
if: always() | |
needs: | |
- getVersion | |
- getVerifyVersion | |
- pr-ci-format | |
- pr-ci-codegen | |
- pr-ci-verification | |
- pr-ci-java | |
- pr-ci-net | |
- pr-ci-python | |
# TODO-HV-2-Go: Removing Go CI until we rebase or need it | |
# - pr-ci-go | |
# TODO-HV-2-Rust: Removing Rust until we rebase or need it | |
# - pr-ci-rust | |
- pr-interop-test | |
- pr-ci-examples | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Verify all required jobs passed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |