From ef8ca7b36366c146ac8246aa02ea6f30bc05ca2b Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Sun, 28 Aug 2022 23:04:19 -0300 Subject: [PATCH] fix(ci): actually use MSRV toolchain --- .github/workflows/test-core.yml | 5 +++++ Cargo.toml | 1 - 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-core.yml b/.github/workflows/test-core.yml index 5735c3bb9..11728b241 100644 --- a/.github/workflows/test-core.yml +++ b/.github/workflows/test-core.yml @@ -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 }} diff --git a/Cargo.toml b/Cargo.toml index 4d739f148..53de27cd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,6 @@ exclude = [ # default to small, optimized workspace release binaries [profile.release] -strip = true panic = "abort" codegen-units = 1 lto = true