Skip to content

Commit cff902f

Browse files
bors[bot]eldruin
andauthored
Merge #71
71: Do not run CI tests on mips r=ryankurte a=eldruin It seems we have been hit by rust-lang/rust#108835 Until that is fixed, let's not run the tests on mips targets. Also, I raised the MSRV due to the dependencies. Co-authored-by: Diego Barrios Romero <[email protected]>
2 parents 2c7ef82 + b3bccc1 commit cff902f

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.github/bors.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ status = [
1717
"build (stable, x86_64-unknown-linux-gnu)",
1818
"build (stable, x86_64-unknown-linux-musl)",
1919

20-
"build (1.46.0, x86_64-unknown-linux-gnu)",
20+
"build (1.59.0, x86_64-unknown-linux-gnu)",
2121

2222
"checks"
2323
]

.github/workflows/ci.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
include:
3535
# MSRV
36-
- rust: 1.46.0
36+
- rust: 1.59.0
3737
TARGET: x86_64-unknown-linux-gnu
3838

3939
# Test nightly but don't fail
@@ -63,13 +63,15 @@ jobs:
6363
args: --target=${{ matrix.TARGET }} --all-features
6464

6565
- name: Test
66+
if: ${{ ! contains(matrix.TARGET, 'mips') }} # https://github.com/rust-lang/rust/issues/108835
6667
uses: actions-rs/cargo@v1
6768
with:
6869
use-cross: true
6970
command: test
7071
args: --target=${{ matrix.TARGET }}
7172

7273
- name: Test all features
74+
if: ${{ ! contains(matrix.TARGET, 'mips') }} # https://github.com/rust-lang/rust/issues/108835
7375
uses: actions-rs/cargo@v1
7476
with:
7577
use-cross: true
@@ -107,10 +109,9 @@ jobs:
107109
- uses: actions-rs/toolchain@v1
108110
with:
109111
profile: minimal
110-
toolchain: 1.46.0
112+
toolchain: 1.59.0
111113
components: clippy
112114

113115
- uses: actions-rs/clippy-check@v1
114116
with:
115117
token: ${{ secrets.GITHUB_TOKEN }}
116-

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).
1212
## [v0.5.1] - 2021-11-22
1313

1414
- Updated nix to version `0.23`.
15+
- MSRV is now 1.59.0.
1516

1617
## [v0.5.0] - 2021-09-21
1718

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ to be considered reliable.
206206

207207
## Minimum Supported Rust Version (MSRV)
208208

209-
This crate is guaranteed to compile on stable Rust 1.46.0 and up. It *might*
209+
This crate is guaranteed to compile on stable Rust 1.59.0 and up. It *might*
210210
compile with older versions but that may change in any new patch release.
211211

212212
## License

0 commit comments

Comments
 (0)