Dry run of building and packing OS image #25
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: Dry run of building and packing OS image | |
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) | |
- name: Check packing release | |
run: (cd system && zip release.zip cpm.\$c ../drive_image/sdcard.zip) && rm system/release.zip |