Skip to content

Commit cfe8543

Browse files
committed
Patches SPM integration.
1 parent 00c2a89 commit cfe8543

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/all-tests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ if [ "${VALIDATE_UNIX}" -eq 1 ]; then
226226
elif [[ "${UNIX_NAME}" == "${LINUX}" ]]; then
227227
cat Package.swift | sed "s/let buildTests = false/let buildTests = true/" > Package.tests.swift
228228
mv Package.tests.swift Package.swift
229-
swift build -c debug
229+
swift build -c debug --disable-sandbox # until compiler is fixed
230230
./.build/debug/AllTestz
231231
else
232232
unsupported_os
@@ -279,8 +279,8 @@ fi
279279

280280
if [ "${TEST_SPM}" -eq 1 ]; then
281281
rm -rf .build || true
282-
swift build -c release
283-
swift build -c debug
282+
swift build -c release --disable-sandbox # until compiler is fixed
283+
swift build -c debug --disable-sandbox # until compiler is fixed
284284
else
285285
printf "${RED}Skipping SPM tests ...${RESET}\n"
286286
fi

0 commit comments

Comments
 (0)