Skip to content

Run in QEMU as a GitHub action #31

Run in QEMU as a GitHub action

Run in QEMU as a GitHub action #31

Workflow file for this run

name: Build for i686
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: sudo apt-get install -y gcc-multilib grub-common nasm qemu-system-x86 xorriso
- uses: actions/checkout@v4
with:
submodules: recursive
- name: configure
run: ./configure
- name: make
run: make
- name: make testapp
run: make testapp
- name: make qemu
run: make qemu
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
path: |
kernel/interface/i686/jinue
userspace/testapp/testapp
- name: make qemu-check
run: make qemu-check