Skip to content

Commit

Permalink
use macos-14 as macos runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Shourya742 committed Dec 13, 2024
1 parent 712e1dd commit 119d3fe
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
strategy:
matrix:
os:
- macos-latest
- macos-14
- ubuntu-latest
include:
- os: macos-latest
- os: macos-14
target: x86_64-apple-darwin
- os: ubuntu-latest
target: x86_64-unknown-linux-musl
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Roles Integration Tests (MAC)
if: matrix.os == 'macos-latest'
run: |
sudo cargo test --manifest-path=roles/Cargo.toml --verbose --test '*' -- --nocapture
cargo test --manifest-path=roles/Cargo.toml --verbose --test '*' -- --nocapture
- name: Roles Integration Tests (LINUX)
if: matrix.os == 'ubuntu-latest'
Expand Down Expand Up @@ -84,11 +84,11 @@ jobs:
- name: Test (MAC)
if: matrix.os == 'macos-latest'
run: |
sudo cargo test --manifest-path=benches/Cargo.toml
sudo cargo test --manifest-path=common/Cargo.toml
sudo cargo test --manifest-path=protocols/Cargo.toml
sudo cargo test --manifest-path=roles/Cargo.toml
sudo cargo test --manifest-path=utils/Cargo.toml
cargo test --manifest-path=benches/Cargo.toml
cargo test --manifest-path=common/Cargo.toml
cargo test --manifest-path=protocols/Cargo.toml
cargo test --manifest-path=roles/Cargo.toml
cargo test --manifest-path=utils/Cargo.toml
- name: Test (LINUX)
if: matrix.os == 'ubuntu-latest'
Expand All @@ -102,7 +102,7 @@ jobs:
- name: Property based testing (MAC)
if: matrix.os == 'macos-latest'
run: |
sudo cargo test --manifest-path=protocols/Cargo.toml --features prop_test
cargo test --manifest-path=protocols/Cargo.toml --features prop_test
- name: Property based testing (LINUX)
if: matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit 119d3fe

Please sign in to comment.