From 020df25e117f4c4193cc9b4a0e4c6f3833317db3 Mon Sep 17 00:00:00 2001 From: Sebastien Stormacq Date: Tue, 21 Oct 2025 06:26:19 +0200 Subject: [PATCH] [ci] Use APIGatewayV2 for link foundation check --- .github/workflows/scripts/check-link-foundation.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scripts/check-link-foundation.sh b/.github/workflows/scripts/check-link-foundation.sh index 8480afd2..d62e3cc5 100755 --- a/.github/workflows/scripts/check-link-foundation.sh +++ b/.github/workflows/scripts/check-link-foundation.sh @@ -17,9 +17,9 @@ log() { printf -- "** %s\n" "$*" >&2; } error() { printf -- "** ERROR: %s\n" "$*" >&2; } fatal() { error "$@"; exit 1; } -EXAMPLE=HelloWorld +EXAMPLE=APIGatewayV2 OUTPUT_DIR=.build/release -OUTPUT_FILE=${OUTPUT_DIR}/MyLambda +OUTPUT_FILE=${OUTPUT_DIR}/APIGatewayLambda LIBS_TO_CHECK="libFoundation.so libFoundationInternationalization.so lib_FoundationICU.so" pushd Examples/${EXAMPLE} || fatal "Failed to change directory to Examples/${EXAMPLE}."