SampCert submodule and build #871
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
name: 'Build Java' | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build-java: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- run: bash scripts/prep.sh | |
- run: DAFNY=dafny/dafny TARGET_LANG=java bash scripts/build.sh | |
- run: build/java/run_samplers.sh | |
- run: build/java/run_shuffling.sh |