From 2d7d118d326036117250c73f22045f8881020871 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 1 Oct 2025 08:30:58 -0400 Subject: [PATCH 1/2] actions: rebuild for OpenSSL 3.6.0 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1058959f..96c3b9ed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -158,7 +158,7 @@ jobs: with: path: | cache.tar.xz - key: gam-${{ matrix.jid }}-20250930 + key: gam-${{ matrix.jid }}-20251001 - name: Untar Cache archive if: matrix.goal == 'build' && steps.cache-python-ssl.outputs.cache-hit == 'true' From 993a0b403ed6e9346902708dc6a222baa898f592 Mon Sep 17 00:00:00 2001 From: Jay Lee Date: Wed, 1 Oct 2025 11:42:25 -0400 Subject: [PATCH 2/2] Update build.yml --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 96c3b9ed..670434ed 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -335,11 +335,11 @@ jobs: # --libdir=lib is needed so Python can find OpenSSL libraries "${PERL}" ./Configure --libdir=lib --prefix="${OPENSSL_INSTALL_PATH}" $OPENSSL_CONFIG_OPTS - # - name: Rename GNU link on Windows - # if: matrix.goal == 'build' && runner.os == 'Windows' && steps.cache-python-ssl.outputs.cache-hit != 'true' - # shell: bash - # run: | - # mv -v /usr/bin/link /usr/bin/gnulink + - name: Rename GNU link on Windows + if: matrix.goal == 'build' && runner.os == 'Windows' && steps.cache-python-ssl.outputs.cache-hit != 'true' + shell: bash + run: | + mv -v /usr/bin/link /usr/bin/gnulink - name: Make OpenSSL if: matrix.goal == 'build' && steps.cache-python-ssl.outputs.cache-hit != 'true'