From bc2781d4610905abe9adb5710dcf1189e2b0da7e Mon Sep 17 00:00:00 2001 From: Carl Montanari Date: Sun, 9 Mar 2025 18:08:43 -0700 Subject: [PATCH] chore: attempt to pre-cache openssl build for actions --- .github/workflows/build.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index faed2ac..101c19d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -26,6 +26,13 @@ jobs: with: version: ${{ env.ZIG_VERSION }} + # never got around to figuring out how to ensure the openssl generate step runs *once* even + # when being built against all the targets, so this is a quick/easy hack to ensure that :) + - name: ensure openssl generate step cached + run: | + zig build + working-directory: lib/openssl + - name: build the examples run: | make build-examples