Adds more descriptive QEMU script #163
Workflow file for this run
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: Compilation Checker | |
on: [push] | |
jobs: | |
compilation-checking: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Get toolchain | |
run: > | |
cd $HOME && | |
wget -q http://tcs79.csc.kth.se/riscv64-unknown-elf-toolchain.tgz && | |
tar -xf riscv64-unknown-elf-toolchain.tgz | |
- name: Compile kernel | |
run: export PATH=$HOME/opt/riscv/bin:$PATH && make all | |