Build operating system with sjasmplus #7
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: build-check | |
run-name: Build operating system with sjasmplus | |
on: | |
push: | |
branches: | |
- '**' | |
- '!main' | |
jobs: | |
ci-build-check: | |
runs-on: [ubuntu-latest] | |
container: nihirash/sjasmplus:x64 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fix ownership | |
run: chown -R $(id -u):$(id -g) $PWD | |
- name: Build OS from sources using dockerized sjasmplus | |
run: (cd system && make) |