You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[SPARK-53404] Make Build step to verify test compilation too
### What changes were proposed in this pull request?
This PR aims to make `Build` step to verify test compilation too.
### Why are the changes needed?
Like Apache Spark main repo, SPARK-53376 added the `Build` step before running the actual test.
- #222
However, it turns out that the test code building is not verified correctly. So, this PR aims to use the following workaround to verify test code fully without running any test.
```yaml
- run: swift build -c release
+ run: swift test --filter NOTHING -c release
```
In addition, this reduces the total runtime of CIs like the following example.
- BEFORE: 13m 43s
- https://github.com/apache/spark-connect-swift/actions/runs/17244668737/job/48932508796
- AFTER: 11m 35s
- https://github.com/apache/spark-connect-swift/actions/runs/17252163531/job/48956652819?pr=225
### Does this PR introduce _any_ user-facing change?
No. This is a test infra change.
### How was this patch tested?
Pass the CIs.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes#225 from dongjoon-hyun/BUILD_TEST_CODE.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
0 commit comments