Skip to content

Commit 27f1be3

Browse files
committed
Bust stale libmicrohttpd cache on macOS CI
The cached libmicrohttpd build has hardcoded GnuTLS include paths from a previous runner version. When make install triggers recompilation on the current runner, gnutls/gnutls.h is not found at the old path. Bumping the cache key forces a fresh build.
1 parent 13e0af8 commit 27f1be3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/verify-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ jobs:
512512
uses: actions/cache@v4
513513
with:
514514
path: libmicrohttpd-0.9.77
515-
key: ${{ matrix.os }}-${{ matrix.c-compiler }}-libmicrohttpd-0.9.77-pre-built
515+
key: ${{ matrix.os }}-${{ matrix.c-compiler }}-libmicrohttpd-0.9.77-pre-built-v2
516516
if: ${{ matrix.os-type != 'windows' && matrix.build-type != 'no-dauth' && matrix.compiler-family != 'arm-cross' }}
517517

518518
- name: Build libmicrohttpd dependency (if not cached)

0 commit comments

Comments
 (0)