Skip to content

Commit 7af9976

Browse files
authored
Merge pull request #897 from TheBlueMatt/2021-04-fix-ci
Bump MSRV to 1.36
2 parents 6b9ec8b + 5625c3a commit 7af9976

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
platform: [ ubuntu-latest ]
1010
toolchain: [ stable,
1111
beta,
12-
# 1.30.0 is MSRV for Rust-Lightning
13-
1.30.0,
14-
# 1.34.2 is Debian stable
15-
1.34.2,
12+
# 1.36.0 is MSRV for Rust-Lightning, lightning-invoice, and lightning-persister
13+
1.36.0,
14+
# 1.41.0 is Debian stable
15+
1.41.0,
1616
# 1.45.2 is MSRV for lightning-net-tokio, lightning-block-sync, and coverage generation
1717
1.45.2]
1818
include:
@@ -47,7 +47,7 @@ jobs:
4747
run: RUSTFLAGS="-C link-dead-code" cargo build --verbose --color always
4848
- name: Build on Rust ${{ matrix.toolchain }}
4949
if: "! matrix.build-net-tokio"
50-
run: cargo build --verbose --color always -p lightning && cargo build --verbose --color always -p lightning-invoice
50+
run: cargo build --verbose --color always -p lightning && cargo build --verbose --color always -p lightning-invoice && cargo build --verbose --color always -p lightning-persister
5151
- name: Build Block Sync Clients on Rust ${{ matrix.toolchain }} with features
5252
if: "matrix.build-net-tokio && !matrix.coverage"
5353
run: |
@@ -74,7 +74,7 @@ jobs:
7474
run: RUSTFLAGS="-C link-dead-code" cargo test --verbose --color always
7575
- name: Test on Rust ${{ matrix.toolchain }}
7676
if: "! matrix.build-net-tokio"
77-
run: cargo test --verbose --color always -p lightning && cargo test --verbose --color always -p lightning-invoice
77+
run: cargo test --verbose --color always -p lightning && cargo test --verbose --color always -p lightning-invoice && cargo build --verbose --color always -p lightning-persister
7878
- name: Test Block Sync Clients on Rust ${{ matrix.toolchain }} with features
7979
if: "matrix.build-net-tokio && !matrix.coverage"
8080
run: |

CONTRIBUTING.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,7 @@ be covered by functional tests.
7575
When refactoring, structure your PR to make it easy to review and don't
7676
hestitate to split it into multiple small, focused PRs.
7777

78-
The Minimal Supported Rust Version is 1.30.0 (enforced by our Travis and
79-
GitHub Actions).
78+
The Minimal Supported Rust Version is 1.36.0 (enforced by our GitHub Actions).
8079

8180
Commits should cover both the issue fixed and the solution's rationale.
8281
These [guidelines](https://chris.beams.io/posts/git-commit/) should be kept in mind.

0 commit comments

Comments
 (0)