Cleanup processes and address spaces in separate kernel thread #12
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
name: build | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
target: x86_64-unknown-linux-gnu | |
components: rust-src | |
- name: Install cargo-make | |
run: cargo install --no-default-features cargo-make | |
- uses: awalsh128/cache-apt-pkgs-action@v1 | |
with: | |
packages: make nasm dosfstools mtools zstd unzip wget | |
- name: Build | |
run: cargo make --no-workspace | |
- name: Create artifact | |
run: tar -czvf d3os.tar.gz d3os.img run.sh efi/build.sh README.md | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: D3OS | |
path: d3os.tar.gz |