File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -33,25 +33,26 @@ build:
3333run :
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
5049test-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
5556xcbeautify :
5657 rm -rf .build/checkouts/xcbeautify
5758 git clone https://github.com/cpisciotta/xcbeautify.git .build/checkouts/xcbeautify
You can’t perform that action at this time.
0 commit comments