kernel: linux/i686: bss offset #9
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
on: push | |
jobs: | |
i686: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get update && sudo apt-get install -y git curl build-essential nasm texinfo libgmp-dev libmpfr-dev libmpc-dev lzip e2tools grub2-common grub-pc-bin mtools xorriso parted qemu-system-x86 tofrodos sysvbanner libbsd-dev | |
- run: make cdrom.iso | |
- run: make test | |
x86_64: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get update && sudo apt-get install -y git curl build-essential nasm texinfo libgmp-dev libmpfr-dev libmpc-dev lzip e2tools grub2-common grub-pc-bin mtools xorriso parted qemu-system-x86 tofrodos sysvbanner libbsd-dev | |
- run: sed -i 's/#//g' .config | |
- run: make cdrom.iso | |
- run: make test |