Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ jobs:
./.github/tools/github_actions_run_cargo clippy --all-targets --all-features $AARCH64_CRATES
- run: ./.github/tools/github_actions_run_cargo build $AARCH64_CRATES
- run: ./.github/tools/github_actions_run_cargo nextest $AARCH64_CRATES
- name: Test AArch64 x18 virtualization
run: |
./.github/tools/github_actions_run_cargo nextest -p litebox_syscall_rewriter -p litebox_platform_linux_userland -p litebox_shim_linux --features litebox_platform_linux_userland/aarch64_virtualize_x18,litebox_shim_linux/aarch64_virtualize_x18
./.github/tools/github_actions_run_cargo nextest -p litebox_runner_linux_userland --features litebox_runner_linux_userland/aarch64_virtualize_x18 -E 'binary(run) or binary(rewritten_guests)'
# Nextest does not run doctests.
- run: |
./.github/tools/github_actions_run_cargo test --doc $AARCH64_CRATES
Expand Down
21 changes: 21 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions litebox_platform_linux_userland/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ litebox_syscall_rewriter = { path = "../litebox_syscall_rewriter", version = "0.
default = ["linux_syscall"]
linux_syscall = []
optee_syscall = ["dep:litebox_common_optee"]
aarch64_virtualize_x18 = []

[lints]
workspace = true
Loading