diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4c6f639..342c9ea 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -87,10 +87,12 @@ jobs: working-directory: ${{ github.workspace }} run: cmake --build out\build\${{ matrix.build_type }} - - name: 'Configure CMake (Spectre)' + - if: matrix.arch != 'amd64_arm64' + name: 'Configure CMake (Spectre)' working-directory: ${{ github.workspace }} run: cmake --preset=${{ matrix.build_type }} -DENABLE_SPECTRE_MITIGATION=ON - - name: 'Build (Spectre)' + - if: matrix.arch != 'amd64_arm64' + name: 'Build (Spectre)' working-directory: ${{ github.workspace }} run: cmake --build out\build\${{ matrix.build_type }}