Skip to content

Commit 5830f6b

Browse files
authored
Merge pull request #96 from rust-osdev/fix-ci
fix CI
2 parents 1899635 + f8ead51 commit 5830f6b

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/rust.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,12 @@ jobs:
1313
build:
1414

1515
runs-on: ubuntu-latest
16-
16+
strategy:
17+
matrix:
18+
rust:
19+
- stable
20+
- nightly
21+
- 1.52.1 # MSVR
1722
steps:
1823
- uses: actions/checkout@v2
1924
- name: Build
@@ -26,6 +31,10 @@ jobs:
2631
style_checks:
2732

2833
runs-on: ubuntu-latest
34+
strategy:
35+
matrix:
36+
rust:
37+
- stable
2938

3039
steps:
3140
- uses: actions/checkout@v2

multiboot2/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ impl BootInformation {
224224
/// Search for the VBE framebuffer tag.
225225
pub fn framebuffer_tag(&self) -> Option<FramebufferTag> {
226226
self.get_tag(TagType::Framebuffer)
227-
.map(|tag| framebuffer::framebuffer_tag(tag))
227+
.map(framebuffer::framebuffer_tag)
228228
}
229229

230230
/// Search for the EFI 32-bit SDT tag.

0 commit comments

Comments
 (0)