From: Eugene Syromiatnikov Date: Mon, 13 Apr 2026 11:56:17 +0000 (+0200) Subject: .github/workflows/coveralls.yml: move the master branch to the top of the matrix X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c26f408ea9cbc588619a61b9f280b144e5bbea0a;p=thirdparty%2Fopenssl.git .github/workflows/coveralls.yml: move the master branch to the top of the matrix So its config options can be copied into a newly created branch more naturally. Signed-off-by: Eugene Syromiatnikov Reviewed-by: Paul Dale Reviewed-by: Nikola Pajkovsky MergeDate: Wed Apr 15 12:30:38 2026 (Merged from https://github.com/openssl/openssl/pull/30785) --- diff --git a/.github/workflows/coveralls.yml b/.github/workflows/coveralls.yml index 6a3aecbc7c8..4c873babc8f 100644 --- a/.github/workflows/coveralls.yml +++ b/.github/workflows/coveralls.yml @@ -46,6 +46,9 @@ jobs: else MATRIX=$(cat << EOF [{ + "branch": "master", + "extra_config": "enable-fips enable-tfo enable-lms enable-crypto-mdebug enable-allocfail-tests" + }, { "branch": "openssl-4.0", "extra_config": "enable-fips enable-tfo enable-lms enable-crypto-mdebug enable-allocfail-tests" },{ @@ -60,9 +63,6 @@ jobs: }, { "branch": "openssl-3.0", "extra_config": "no-afalgeng enable-fips" - }, { - "branch": "master", - "extra_config": "enable-fips enable-tfo enable-lms enable-crypto-mdebug enable-allocfail-tests" }] EOF )