Add functional correctness proofs for AArch64-optimized NTT and invNTT in HOL Light #2
Workflow file for this run
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
# SPDX-License-Identifier: Apache-2.0 | |
name: HOL-Light | |
permissions: | |
contents: read | |
on: | |
push: | |
branches: ["main"] | |
# Only run upon changes to AArch64 NTT or invNTT | |
paths: | |
- 'proofs/hol_light/arm/**/*.S' | |
pull_request: | |
branches: ["main"] | |
paths: | |
# Only run upon changes to AArch64 NTT or invNTT | |
- 'proofs/hol_light/arm/**/*.S' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# The purpose of this job is to test non-default yet valid configurations | |
hol_light_proofs: | |
name: hol-light proofs | |
runs-on: pqcp-arm64 | |
if: github.repository_owner == 'pq-code-package' && !github.event.pull_request.head.repo.fork | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: ./.github/actions/setup-shell | |
with: | |
gh_token: ${{ secrets.GITHUB_TOKEN }} | |
nix-shell: 'hol_light' | |
script: | | |
make -C proofs/hol_light/arm proofs |