Skip to content

Commit 734508a

Browse files
committed
Use xcodebuild to use Asan
1 parent ceb8d2e commit 734508a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ jobs:
2929
timeout-minutes: 2
3030

3131
- name: Build spmgraph for Xcode 16.4
32-
run: swift build
32+
run: xcodebuild build -scheme spmgraph -destination 'platform=macOS' | xcbeautify
3333
timeout-minutes: 3
3434

3535
- name: Run tests on Xcode 16.4
3636
env:
3737
IS_RUNNING_TESTS: 1
38-
run: swift test -Xswiftc -sanitize=address
38+
run: xcodebuild test -scheme spmgraph -destination 'platform=macOS' | xcbeautify
3939
timeout-minutes: 3
4040

4141
- name: Select Xcode 26.0 toolchain
@@ -45,5 +45,5 @@ jobs:
4545
timeout-minutes: 2
4646

4747
- name: Build spmgraph for Xcode 26.0
48-
run: swift build
48+
run: xcodebuild build -scheme spmgraph -destination 'platform=macOS' | xcbeautify
4949
timeout-minutes: 3

0 commit comments

Comments
 (0)