We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a58338c commit 10d6946Copy full SHA for 10d6946
.github/workflows/integration_tests.yml
@@ -158,6 +158,7 @@ jobs:
158
# recompile the example without the --static-swift-stdlib flag
159
LAMBDA_USE_LOCAL_DEPS=../.. swift build -c release -Xlinker -s
160
161
+ echo "Checking for Foundation or ICU dependencies in ${OUTPUT_DIR}/${OUTPUT_FILE}"
162
for LIB in ${LIBS_TO_CHECK}; do
163
# check if the binary has a dependency on Foundation or ICU
164
ldd ${OUTPUT_DIR}/${OUTPUT_FILE} | grep ${LIB} # return 1 if not found
@@ -169,4 +170,5 @@ jobs:
169
170
popd
171
172
# exit code is the opposite of the grep exit code
173
+ echo "Success: $SUCCESS"
174
[ $SUCCESS -eq 0 ] && exit 1 || exit 0
0 commit comments