Skip to content

Commit

Permalink
Merge pull request #775 from cryspen/make-hax-diffs-opt-out
Browse files Browse the repository at this point in the history
Add option to skip hax diffs.
  • Loading branch information
franziskuskiefer authored Jan 30, 2025
2 parents 184f22d + 2e2ed0b commit 0ca79fc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/hax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ on:
hax_rev:
description: "The hax revision you want this job to use"
default: "main"
skip_diff:
description: "Skip diff jobs"
default: false
type: boolean
merge_group:

env:
Expand Down Expand Up @@ -59,6 +63,7 @@ jobs:
path: ~/fstar-extraction-mlkem

- name: = Diff Extraction
if: ${{ github.event.inputs.skip_diff != 'false' }}
run: |
diff -r libcrux-ml-kem/proofs/fstar/extraction/ \
~/fstar-extraction-mlkem/fstar/extraction/
Expand Down Expand Up @@ -114,6 +119,7 @@ jobs:
path: ~/fstar-extraction-mldsa

- name: = Diff Extraction
if: ${{ github.event.inputs.skip_diff != 'false' }}
run: |
diff -r libcrux-ml-dsa/proofs/fstar/extraction/ \
~/fstar-extraction-mldsa/fstar/extraction/
Expand Down

0 comments on commit 0ca79fc

Please sign in to comment.