Assert correctness of virtual address for non-PIE executables #310
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: CMake | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
branches: ['main'] | |
env: | |
CMAKE_GENERATOR: Ninja | |
jobs: | |
build: | |
strategy: | |
matrix: | |
# Build with all four build types: | |
build_type: ['Debug', 'Release', 'RelWithDebInfo', 'MinSizeRel'] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Fetch submodules | |
run: git submodule update --init | |
- name: Install ninja | |
run: sudo apt-get install -y ninja-build | |
- name: Fetch & install RISC-V GNU Compiler Toolchain | |
run: | | |
curl -Lo riscv32-glibc-ubuntu-22.04-nightly.tar.gz 'https://github.com/riscv-collab/riscv-gnu-toolchain/releases/download/2023.06.09/riscv32-glibc-ubuntu-22.04-nightly-2023.06.09-nightly.tar.gz' | |
tar -xf riscv32-glibc-ubuntu-22.04-nightly.tar.gz | |
echo "${PWD}/riscv/bin" >> $GITHUB_PATH | |
export PATH=$PATH:${PWD}/riscv/bin | |
make hh24_defconfig | |
- name: Build | |
run: CMAKE_BUILD_TYPE=${{matrix.build_type}} make clean build | |
- name: Build Statistics | |
run: | | |
riscv32-unknown-linux-gnu-size -B kernel/firmware/badger-os.elf | |
- name: Upload | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Firmware | |
path: | | |
kernel/firmware/badger-os.elf | |
kernel/firmware/badger-os.bin |