Skip to content

Commit e5e0bf0

Browse files
authored
Merge pull request rust-osdev#72 from rust-osdev/nightly-fix
Fix CI build failures on latest nightly
2 parents 2413e59 + 3bd1dbf commit e5e0bf0

File tree

7 files changed

+13
-10
lines changed

7 files changed

+13
-10
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,7 @@ jobs:
139139
steps:
140140
- uses: actions/checkout@v1
141141
- run: rustup toolchain install nightly --profile minimal --component clippy
142-
- run: cargo +nightly clippy -- -D warnings
142+
- name: "Run `cargo clippy`"
143+
uses: actions-rs/cargo@v1
144+
with:
145+
command: clippy

example-kernels/Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example-kernels/basic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2018"
66

77
[dependencies]
88
bootloader = "0.9.7"
9-
x86_64 = "0.12.1"
9+
x86_64 = "0.13.2"

example-kernels/runner-doctest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66

77
[dependencies]
88
bootloader = "0.9.7"
9-
x86_64 = "0.12.1"
9+
x86_64 = "0.13.2"
1010
rlibc = "1.0.0"
1111

1212
[package.metadata.bootimage]

example-kernels/runner-fail-reboot/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66

77
[dependencies]
88
bootloader = "0.9.7"
9-
x86_64 = "0.12.1"
9+
x86_64 = "0.13.2"
1010
rlibc = "1.0.0"
1111

1212
[package.metadata.bootimage]

example-kernels/runner-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ harness = false
1010

1111
[dependencies]
1212
bootloader = "0.9.7"
13-
x86_64 = "0.12.1"
13+
x86_64 = "0.13.2"
1414
rlibc = "1.0.0"
1515

1616
[package.metadata.bootimage]

example-kernels/runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66

77
[dependencies]
88
bootloader = "0.9.7"
9-
x86_64 = "0.12.1"
9+
x86_64 = "0.13.2"
1010

1111
[package.metadata.bootimage]
1212
run-args = ["-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", "-display", "none"]

0 commit comments

Comments
 (0)