Skip to content

Commit 399837f

Browse files
committed
CI
1 parent 438b31d commit 399837f

3 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
jobs:
88
checks:
99
name: Run CI checks
10-
runs-on: ubuntu-latest
10+
runs-on: macos-14
1111

1212
steps:
1313
- name: Checkout
@@ -18,6 +18,9 @@ jobs:
1818
with:
1919
components: rustfmt, clippy
2020

21+
- name: Rust cache
22+
uses: Swatinem/rust-cache@v2
23+
2124
- name: Run repository CI script
2225
run: bash ./scripts/ci.sh
2326

.github/workflows/manual-build.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
include:
40-
- runner: ubuntu-latest
41-
target: x86_64-unknown-linux-gnu
42-
- runner: macos-14
43-
target: x86_64-apple-darwin
4440
- runner: macos-14
4541
target: aarch64-apple-darwin
4642

.github/workflows/release.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,17 @@ env:
1818
jobs:
1919
test:
2020
name: Validate with cargo test
21-
runs-on: ubuntu-latest
21+
runs-on: macos-14
2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@v4
2525

2626
- name: Install Rust toolchain
2727
uses: dtolnay/rust-toolchain@stable
28+
29+
- name: Rust cache
30+
uses: Swatinem/rust-cache@v2
31+
2832
- name: Run tests
2933
run: cargo test --locked
3034

0 commit comments

Comments
 (0)