chore: Build ESDK-Dafny into Python, test native ESDK-Python in TestVectors CI #727
This file contains 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 | |
getFormatVersion: | |
uses: ./.github/workflows/dafny_format_version.yaml | |
pr-ci-format: | |
needs: getFormatVersion | |
uses: ./.github/workflows/library_format.yml | |
with: | |
dafny: ${{needs.getFormatVersion.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: getVerifyVersion | |
# uses: ./.github/workflows/library_java_tests.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}} | |
pr-ci-rust: | |
needs: getVersion | |
uses: ./.github/workflows/library_rust_tests.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
pr-ci-go: | |
needs: getVersion | |
uses: ./.github/workflows/library_go_tests.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
pr-test-vectors: | |
needs: getVersion | |
uses: ./.github/workflows/library_interop_tests.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
pr-dafny-test-vectors: | |
needs: getVersion | |
uses: ./.github/workflows/library_interop_test_vectors.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
pr-dafny-legacy-test-vectors: | |
needs: getVersion | |
uses: ./.github/workflows/library_legacy_interop_test_vectors.yml | |
with: | |
dafny: ${{needs.getVersion.outputs.version}} | |
pr-ci-all-required: | |
if: always() | |
needs: | |
- pr-ci-codegen | |
- pr-ci-verification | |
- pr-ci-net | |
- pr-ci-rust | |
- pr-test-vectors | |
- pr-dafny-test-vectors | |
- pr-dafny-legacy-test-vectors | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Verify all required jobs passed | |
uses: re-actors/alls-green@release/v1 | |
with: | |
jobs: ${{ toJSON(needs) }} |