From 87e076e9d74afa078351f8a442e9e694f79ffec0 Mon Sep 17 00:00:00 2001 From: Richard Barnes Date: Thu, 31 Oct 2024 17:21:57 -0400 Subject: [PATCH] Also filter unit test builds --- .github/workflows/main_ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main_ci.yml b/.github/workflows/main_ci.yml index d846a0ed..a0cf9358 100644 --- a/.github/workflows/main_ci.yml +++ b/.github/workflows/main_ci.yml @@ -47,6 +47,16 @@ jobs: CRYPTO_DIR: "./alternatives/${{ matrix.crypto }}" steps: + # Only run non-OpenSSL-3 libraries if there's a change in the HPKE code + - uses: dorny/paths-filter@v3 + if: matrix.crypto != "openssl_3" + with: + filters: | + src: + - 'lib/hpke/include/**' + - 'lib/hpke/src/**' + - 'lib/hpke/test/**' + - uses: actions/checkout@v4 with: submodules: recursive @@ -125,7 +135,7 @@ jobs: CRYPTO_DIR: "./alternatives/${{ matrix.crypto }}" steps: - # Only run non-OpenSSL 3 libraries if there's a change in the HPKE code + # Only run non-OpenSSL-3 libraries if there's a change in the HPKE code - uses: dorny/paths-filter@v3 if: matrix.crypto != "openssl_3" with: