bios: bank: add support for ROM wraparound emulation #33
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 | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
build: | |
name: Build AthenaOS | |
runs-on: ubuntu-latest | |
container: cbrzeszczot/wonderful:wswan-latest | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v3 | |
- name: Install additional dependencies | |
run: apt-get update && apt-get install -y python3 python3-pil | |
- name: Build | |
run: make | |
- name: Archive ROM | |
uses: actions/upload-artifact@v4 | |
with: | |
name: AthenaOS | |
path: dist/ | |
build-tests: | |
name: Build tests | |
runs-on: ubuntu-latest | |
container: cbrzeszczot/wonderful:wswan-latest | |
steps: | |
- name: Clone project | |
uses: actions/checkout@v3 | |
- name: Build | |
run: cd tests && make | |
- name: Archive ROM | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Test programs | |
path: tests/build-all/ | |