Run macOS client tests in CI
ci / test (push) Canceled after 0s
ci / fuzz-smoke (push) Canceled after 0s
ci / macos-client (macos-aarch64, macos-14) (push) Canceled after 0s
ci / macos-client (macos-x86_64, macos-13) (push) Canceled after 0s
ci / windows-client (push) Canceled after 0s
ci / package-release (linux-x86_64, ubuntu-latest, , , ) (push) Canceled after 0s
ci / package-release (macos-aarch64, macos-14, , , ) (push) Canceled after 0s
ci / package-release (macos-x86_64, macos-13, , , ) (push) Canceled after 0s
ci / package-release (windows-aarch64, windows-latest, aarch64, windows, aarch64-pc-windows-msvc) (push) Canceled after 0s
ci / package-release (windows-x86_64, windows-latest, , , ) (push) Canceled after 0s
ci / remote-bench (push) Canceled after 0s
ci / publish-gitea-release (push) Canceled after 0s

This commit is contained in:
DuProcess
2026-07-16 20:27:40 -04:00
parent fc9eb7ea69
commit 5bde144b12
2 changed files with 31 additions and 0 deletions
+17
View File
@@ -54,6 +54,23 @@ jobs:
if: steps.nightly.outcome != 'success' || steps.install.outcome != 'success'
run: echo "cargo-fuzz / nightly toolchain unavailable; skipped fuzz smoke run."
macos-client:
strategy:
matrix:
include:
- os: macos-14
name: macos-aarch64
- os: macos-13
name: macos-x86_64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build macOS client
run: cargo build --release
- name: Test macOS client
run: cargo test --all-targets
windows-client:
runs-on: windows-latest
steps:
+14
View File
@@ -68,6 +68,20 @@ fn release_gates_test_all_targets() {
assert!(ci.contains("run: cargo clippy --all-targets -- -D warnings"));
assert!(ci.contains("run: cargo test --all-targets"));
assert!(ci.contains("run: sh scripts/tui-harness.sh"));
let macos_client = ci
.split("macos-client:")
.nth(1)
.and_then(|tail| tail.split("\n windows-client:").next())
.expect("macos-client job");
assert!(macos_client.contains("name: macos-aarch64"));
assert!(macos_client.contains("name: macos-x86_64"));
assert!(macos_client.contains("os: macos-14"));
assert!(macos_client.contains("os: macos-13"));
assert!(macos_client.contains("name: Test macOS client"));
assert!(
macos_client.contains("run: cargo test --all-targets"),
"macOS CI must run Rust tests, not only release packaging"
);
let windows_client = ci
.split("windows-client:")
.nth(1)