fix(ci): actually use MSRV toolchain

This commit is contained in:
Lucas Nogueira 2022-08-28 23:04:19 -03:00
parent d88de30076
commit ef8ca7b363
No known key found for this signature in database
GPG Key ID: FFEA6C72E73482F1
2 changed files with 5 additions and 1 deletions

View File

@ -54,6 +54,7 @@ jobs:
with:
toolchain: ${{ matrix.platform.toolchain }}
target: ${{ matrix.platform.target }}
override: true
- name: install Linux dependencies
if: contains(matrix.platform.target, 'unknown-linux')
run: |
@ -99,6 +100,10 @@ jobs:
${{ matrix.platform.os }}-${{ matrix.platform.toolchain }}-
${{ matrix.platform.os }}-
- name: pin time
run: |
cargo update -p time --precise 0.3.13
- name: test
run: |
cargo test --target ${{ matrix.platform.target }}

View File

@ -24,7 +24,6 @@ exclude = [
# default to small, optimized workspace release binaries
[profile.release]
strip = true
panic = "abort"
codegen-units = 1
lto = true