Save and restore es, fs, gs segments in interrupts and context switch… #13
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: Basekernel Build | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup | |
run: sudo apt-get install -y genisoimage | |
- name: Build Kernel | |
run: make build-kernel | |
- name: Build Standard Library | |
run: make build-library | |
- name: Build Userspace | |
run: make build-userspace | |
- name: Build CDROM Image | |
run: make build-cdrom-image | |