Skip to content

Commit 450cb09

Browse files
author
Askar Safin
committed
Fix CI by bumping MSRV. We need to do this, because we have "cc 1.0.95" in our dependency tree, which requires rustc 1.63.0
1 parent 787a7e2 commit 450cb09

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

ctest/.github/workflows/linux.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
version:
15-
- 1.56.0 # MSRV
15+
- 1.63.0 # MSRV
1616
- stable
1717
- beta
1818
- nightly
@@ -29,7 +29,7 @@ jobs:
2929
run: TOOLCHAIN=${{ matrix.version }} TARGET=${{ matrix.target }} sh ./ci/install-rust.sh
3030

3131
- name: Check MSRV
32-
if: matrix.version == '1.56.0'
32+
if: matrix.version == '1.63.0'
3333
run: cargo check
3434

3535
# FIXME: Some symbols cause multiple definitions error on the same line:
@@ -38,9 +38,9 @@ jobs:
3838
# /home/runner/work/ctest2/ctest2/target/debug/deps/libtestcrate-a072d428f9532abb.rlib(t1.o):
3939
# /home/runner/work/ctest2/ctest2/testcrate/src/t1.h:65: first defined here
4040
# - name: Run tests
41-
# if: matrix.version != '1.56.0'
41+
# if: matrix.version != '1.63.0'
4242
# run: cargo test --all -- --nocapture
4343

4444
- name: Run libc tests
45-
if: matrix.version != '1.56.0'
45+
if: matrix.version != '1.63.0'
4646
run: sh ./ci/run-docker.sh ${{ matrix.target }}

ctest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Automated tests of FFI bindings.
1111
"""
1212
include = ["src/lib.rs", "LICENSE-*", "README.md"]
1313
edition = "2021"
14-
rust-version = "1.56.0"
14+
rust-version = "1.63.0"
1515

1616
[dependencies]
1717
garando_syntax = "0.1"

ctest/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ APIs in Rust match the APIs defined in C.
1414

1515
## MSRV (Minimum Supported Rust Version)
1616

17-
The MSRV is 1.56.0 because of the transitive dependencies.
17+
The MSRV is 1.63.0 because of the transitive dependencies.
1818
Note that MSRV may be changed anytime by dependencies.
1919

2020
## Example

0 commit comments

Comments
 (0)