Skip to content

Commit 1f58315

Browse files
committed
Temporarily drop xcbeautify
1 parent 9e645b1 commit 1f58315

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Makefile

+6-5
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,26 @@ build:
3333
run:
3434
swift run
3535

36-
test: xcbeautify
36+
test:
3737
set -o pipefail \
38-
&& swift test --disable-automatic-resolution \
39-
2>&1 | ./xcbeautify --renderer github-actions
38+
&& swift test --disable-automatic-resolution
4039

41-
test-query-performance: xcbeautify
40+
test-query-performance:
4241
set -o pipefail \
4342
&& env RUN_QUERY_PERFORMANCE_TESTS=true \
4443
swift test --disable-automatic-resolution \
4544
--filter QueryPerformanceTests \
4645
2>&1 | tee test.log
4746
grep "ℹ️" test.log
48-
grep -v "\] Compiling" test.log | ./xcbeautify --renderer github-actions
47+
grep -v "\] Compiling" test.log
4948

5049
test-fast:
5150
@echo Skipping image snapshot tests
5251
@echo Running without --sanitize=thread
5352
swift test --disable-automatic-resolution
5453

54+
# Need to temporarily drop xcbeautify due to a compiler crash with Swift 6.1 nightlies:
55+
# https://github.com/swiftlang/swift/issues/80240
5556
xcbeautify:
5657
rm -rf .build/checkouts/xcbeautify
5758
git clone https://github.com/cpisciotta/xcbeautify.git .build/checkouts/xcbeautify

0 commit comments

Comments
 (0)