From 032d8adcd4071ef9c1591d8dbbb96e9e490054b9 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Thu, 9 Apr 2026 09:25:23 +0200 Subject: [PATCH] github: Continue crypto tests even if OpenSSL tests fail These can sometimes fail because of sync issues with Ubuntu debug symbol packages, let other crypto tests continue. --- .github/workflows/linux.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 458b45b838..6390455801 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -101,6 +101,7 @@ jobs: needs: pre-check if: ${{ needs.pre-check.outputs.should_skip != 'true' }} runs-on: ${{ matrix.os }} + continue-on-error: ${{ startsWith(matrix.test, 'openssl') }} strategy: matrix: test: [ botan, wolfssl, openssl, openssl-3, openssl-awslc, gcrypt ] -- 2.47.3