-
-
Notifications
You must be signed in to change notification settings - Fork 173
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 theseus_main
- Loading branch information
Showing
177 changed files
with
4,146 additions
and
3,240 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,33 @@ | ||
name: QEMU Test | ||
on: | ||
pull_request: | ||
types: [synchronize, opened, reopened] | ||
paths-ignore: | ||
- 'book/**' | ||
- 'c_test/**' | ||
- 'docker/**' | ||
- 'github_pages/**' | ||
- 'old_crates/**' | ||
- 'scripts/**' | ||
- '.gitignore' | ||
- 'LICENSE-MIT' | ||
- 'README.md' | ||
- 'bochsrc.txt' | ||
- 'rustfmt.toml' | ||
- 'slirp.conf' | ||
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 |
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 |
---|---|---|
|
@@ -39,3 +39,6 @@ github_pages/doc/ | |
|
||
# library lock files | ||
/libs/**/Cargo.lock | ||
|
||
# macOS directory stores | ||
/**/.DS_Store |
Oops, something went wrong.