ML-DSA: import and enable x86_64 assembly backend from mldsa-native #390
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
| name: OCSP integration tests | |
| on: | |
| pull_request: | |
| branches: ["*"] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref_name }} | |
| cancel-in-progress: true | |
| env: | |
| GOPROXY: https://proxy.golang.org,direct | |
| permissions: | |
| contents: read | |
| jobs: | |
| ocsp-external: | |
| if: github.repository_owner == 'aws' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Git clone the repository | |
| uses: actions/checkout@v6 | |
| - name: Install OS Dependencies | |
| run: | | |
| sudo apt-get update -o Acquire::Languages=none -o Acquire::Translation=none | |
| sudo apt-get -y --no-install-recommends install cmake ninja-build golang | |
| - name: Build integration_test | |
| run: | | |
| cmake -GNinja -Btest_build_dir | |
| ninja -C test_build_dir ssl/integration_test | |
| - name: Run OCSP integration tests | |
| run: ./test_build_dir/ssl/integration_test |