-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Martin Kröning <[email protected]>
- Loading branch information
Showing
8 changed files
with
63 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ jobs: | |
- uses: mkroening/rust-toolchain-toml@main | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Check each feature | ||
run: cargo hack check --package libhermit-rs --each-feature --no-dev-deps --target x86_64-unknown-none | ||
run: cargo hack check --package hermit-kernel --each-feature --no-dev-deps --target x86_64-unknown-none | ||
env: | ||
RUSTFLAGS: | ||
|
||
|
@@ -67,8 +67,8 @@ jobs: | |
- uses: Swatinem/rust-cache@v2 | ||
- name: Check docs | ||
run: | | ||
cargo doc --package libhermit-rs --no-deps --document-private-items --target x86_64-unknown-none | ||
cargo doc --package libhermit-rs --no-deps --document-private-items --target aarch64-unknown-none-softfloat --no-default-features | ||
cargo doc --package hermit-kernel --no-deps --document-private-items --target x86_64-unknown-none | ||
cargo doc --package hermit-kernel --no-deps --document-private-items --target aarch64-unknown-none-softfloat --no-default-features | ||
build: | ||
name: Build | ||
|
@@ -124,12 +124,12 @@ jobs: | |
with: | ||
repository: hermitcore/rusty-hermit | ||
submodules: true | ||
- name: Remove libhermit-rs submodule | ||
run: git rm -r libhermit-rs | ||
- name: Checkout libhermit-rs | ||
- name: Remove hermit-kernel submodule | ||
run: git rm -r hermit-kernel | ||
- name: Checkout hermit-kernel | ||
uses: actions/checkout@v3 | ||
with: | ||
path: libhermit-rs | ||
path: hermit-kernel | ||
- uses: mkroening/rust-toolchain-toml@main | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: Build dev profile | ||
|
@@ -249,12 +249,12 @@ jobs: | |
with: | ||
repository: hermitcore/rusty-hermit | ||
submodules: true | ||
- name: Remove libhermit-rs submodule | ||
run: git rm -r libhermit-rs | ||
- name: Checkout libhermit-rs | ||
- name: Remove hermit-kernel submodule | ||
run: git rm -r hermit-kernel | ||
- name: Checkout hermit-kernel | ||
uses: actions/checkout@v3 | ||
with: | ||
path: libhermit-rs | ||
path: hermit-kernel | ||
- name: Download loader | ||
uses: dsaltares/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[package] | ||
name = "libhermit-rs" | ||
name = "hermit-kernel" | ||
version = "0.6.4" | ||
authors = [ | ||
"Stefan Lankes <[email protected]>", | ||
|
@@ -16,8 +16,8 @@ license = "MIT OR Apache-2.0" | |
readme = "README.md" | ||
keywords = ["unikernel", "libos"] | ||
categories = ["os"] | ||
repository = "https://github.com/hermitcore/libhermit-rs" | ||
documentation = "https://hermitcore.github.io/libhermit-rs/hermit/" | ||
repository = "https://github.com/hermitcore/kernel" | ||
documentation = "https://hermitcore.github.io/kernel/hermit/" | ||
edition = "2021" | ||
description = "A Rust-based library operating system" | ||
exclude = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters