Skip to content

chore(GHA): add action for testing against MPL HEAD #7

chore(GHA): add action for testing against MPL HEAD

chore(GHA): add action for testing against MPL HEAD #7

Workflow file for this run

# This workflow invokes other workflows with the latest MPL head at 14:00 UTC (7am PDT)
name: CI MPL HEAD
on:
pull_request:
jobs:
getVersion:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
uses: ./.github/workflows/dafny_version.yml
getVerifyVersion:
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
uses: ./.github/workflows/dafny_verify_version.yml
mpl-head-ci-format:
needs: getVersion
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
uses: ./.github/workflows/library_format.yml
with:
dafny: ${{needs.getVersion.outputs.version}}
mpl-head-ci-codegen:
needs: getVersion
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
uses: ./.github/workflows/ci_codegen.yml
with:
dafny: ${{needs.getVersion.outputs.version}}
mpl-head: true
# mpl-head-ci-verification:
# needs: getVerifyVersion
# if: github.event_name != 'schedule' || github.repository_owner == 'aws'
# uses: ./.github/workflows/library_dafny_verification.yml
# with:
# dafny: ${{needs.getVerifyVersion.outputs.version}}
# mpl-head-ci-test-vector-verification:
# needs: getVerifyVersion
# uses: ./.github/workflows/test_vector_verification.yml
# with:
# dafny: ${{needs.getVerifyVersion.outputs.version}}
# mpl-head: true
# mpl-head-ci-java-test-vectors:
# needs: getVersion
# uses: ./.github/workflows/ci_test_vector_java.yml
# with:
# dafny: ${{needs.getVersion.outputs.version}}
# mpl-head: true
# mpl-headci-java-examples:
# needs: getVersion
# uses: ./.github/workflows/ci_examples_java.yml
# with:
# dafny: ${{needs.getVersion.outputs.version}}
# mpl-head: true
# mpl-head-ci-net:
# needs: getVersion
# uses: ./.github/workflows/ci_test_net.yml
# with:
# dafny: ${{needs.getVersion.outputs.version}}
# mpl-head: true
# mpl-head-ci-net-test-vectors:
# needs: getVersion
# uses: ./.github/workflows/ci_test_vector_net.yml
# with:
# dafny: ${{needs.getVersion.outputs.version}}
# mpl-head: true
# mpl-head-ci-net-examples:
# needs: getVersion
# uses: ./.github/workflows/ci_examples_net.yml
# with:
# dafny: ${{needs.getVersion.outputs.version}}
# mpl-head: true