chore(GHA): add action for testing against MPL HEAD #1
Workflow file for this run
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 invokes other workflows with the latest MPL head at 14:00 UTC (7am PDT) | ||
name: MPL HEAD Integration | ||
on: | ||
pull_request: | ||
# schedule: | ||
# # Although this is triggered daily the MPL may not get daily commits, which | ||
# # means that some builds MAY get the same MPL HEAD. | ||
# - cron: "00 14 * * 1-5" | ||
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/actions/mpl-head/mpl_head_codegen.yml | ||
with: | ||
dafny: ${{needs.getVersion.outputs.version}} | ||
# 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 |