forked from theseus-os/Theseus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'theseus_main' into remove-unrunnable-task-from-run-queue
Signed-off-by: Klimenty Tsoutsman <klim@tsoutsman.com>
- Loading branch information
Showing
60 changed files
with
1,131 additions
and
428 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: QEMU Test | ||
on: | ||
pull_request: | ||
types: [synchronize, opened, reopened] | ||
jobs: | ||
run-tests: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: "Initialize git submodules" | ||
run: | | ||
git submodule update --init --recursive | ||
- name: "Install dependencies" | ||
run: | | ||
sudo apt update | ||
sudo apt install make gcc nasm pkg-config grub-pc-bin mtools xorriso qemu qemu-kvm wget | ||
- name: "Run tests" | ||
working-directory: . | ||
run: make test | ||
timeout-minutes: 10 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[package] | ||
name = "qemu_test" | ||
version = "0.1.0" | ||
authors = ["Klim Tsoutsman <klim@tsoutsman.com>"] | ||
description = "Automated test runner" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
app_io = { path = "../../kernel/app_io" } | ||
path = { path = "../../kernel/path" } | ||
qemu-exit = "3.0.2" | ||
spawn = { path = "../../kernel/spawn" } | ||
task = { path = "../../kernel/task" } |
Oops, something went wrong.