This commit is contained in:
FabianLars
2025-08-07 23:31:46 +02:00
parent c9babc028a
commit f924ef16e4
2 changed files with 11 additions and 5 deletions
+9 -5
View File
@@ -200,25 +200,29 @@ jobs:
target: x86_64-pc-windows-msvc,
os: windows-latest,
runner: 'cargo',
command: 'test'
command: 'test',
toolchain: '1.77.2'
}
- {
target: x86_64-unknown-linux-gnu,
os: ubuntu-22.04,
runner: 'cargo',
command: 'test'
command: 'test',
toolchain: '1.77.2'
}
- {
target: aarch64-apple-darwin,
os: macos-latest,
runner: 'cargo',
command: 'test'
command: 'test',
toolchain: '1.77.2'
}
- {
target: aarch64-apple-ios,
os: macos-latest,
runner: 'cargo',
command: 'build'
command: 'build',
toolchain: '1.77.2'
}
- {
target: aarch64-linux-android,
@@ -241,7 +245,7 @@ jobs:
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.platform.toolchain || "1.77.2" }}
toolchain: ${{ matrix.platform.toolchain }}
targets: ${{ matrix.platform.target }}
- uses: Swatinem/rust-cache@v2