Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/actions/config-variations/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ inputs:
runs:
using: 'composite'
steps:
- name: "Validate test IDs"
shell: bash
run: |
ALLOWED="all pct-enabled pct-enabled-broken custom-zeroize native-cap-ON native-cap-OFF native-cap-ID_AA64PFR1_EL1 native-cap-CPUID_AVX2 no-asm serial-fips202 custom-randombytes custom-memcpy custom-memset custom-stdlib nblocks-1 nblocks-2 nblocks-4"
for t in ${{ inputs.tests }}; do echo "$ALLOWED" | grep -qw "$t" || { echo "Invalid test ID: $t. Allowed: $ALLOWED"; exit 1; }; done
- name: "PCT enabled"
if: ${{ inputs.tests == 'all' || contains(inputs.tests, 'pct-enabled') }}
uses: ./.github/actions/multi-functest
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ jobs:
strategy:
fail-fast: false
matrix:
mingw-version: [5.4.0, 11.2.0, 12.2.0, 13.2.0, 14.2.0, 15.2.0]
# TODO: re-enable 5.4.0 or other old version
mingw-version: [11.2.0, 12.2.0, 13.2.0, 14.2.0, 15.2.0]
name: Quickcheck (Mingw-w64 ${{ matrix.mingw-version }})
runs-on: windows-latest
steps:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -466,6 +466,7 @@ jobs:
uses: ./.github/actions/config-variations
with:
gh_token: ${{ secrets.GITHUB_TOKEN }}
tests: 'pct-enabled invalid-test-id'
check-cf-protections:
name: Test control-flow protections (${{ matrix.compiler.name }}, x86_64)
strategy:
Expand Down
Loading