Skip to content

Commit 7a5344f

Browse files
authored
Fix code coverage processing (#214)
1 parent f1d5683 commit 7a5344f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Tools/ci-spm.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ source "$(dirname "$0")/helpers.sh"
77
swift test --enable-code-coverage --sanitize=thread || fail "SPM Test Failed"
88

99
# h4x to trick codecov
10-
for bundle in .build/x86_64-apple-macosx/debug/*.xctest ; do
10+
for bundle in .build/debug/*.xctest ; do
1111
parent="$(dirname "$bundle")"
1212
ln -sf "$PWD/$bundle" "${parent}/codecov"
1313
done
1414

15-
process_coverage -D ".build/x86_64-apple-macosx/debug" -F "macspm"
15+
process_coverage -D ".build/debug/codecov" -F "macspm"

0 commit comments

Comments
 (0)