Thread: Fix kernel_stack_addr() returning wrong address #1
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 hhuTOSr.tar.gz hhuTOSr.img run.sh efi/build.sh README.md | |
- name: Upload artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: hhuTOSr | |
path: hhuTOSr.tar.gz |