浏览代码

fix(ci): actually use MSRV toolchain

Lucas Nogueira 2 年之前
父节点
当前提交
ef8ca7b363
共有 2 个文件被更改,包括 5 次插入1 次删除
  1. 5 0
      .github/workflows/test-core.yml
  2. 0 1
      Cargo.toml

+ 5 - 0
.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 }}

+ 0 - 1
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