Fix bug where advancing the sequential pointer across 64kB boundaries… #375
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: C/C++ CI | |
on: [push, pull_request] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
repository: 'davidgiven/cpm65' | |
- name: apt | |
run: sudo apt update && sudo apt install cc1541 cpmtools libfmt-dev fp-compiler moreutils mame | |
- name: install llvm-mos | |
run: | | |
wget -q -O - https://github.com/llvm-mos/llvm-mos-sdk/releases/latest/download/llvm-mos-linux.tar.xz | tar xJf - -C $HOME | |
- name: install roms | |
run: | | |
sh scripts/get-roms.sh | |
#- name: Setup upterm session | |
# uses: lhotari/action-upterm@v1 | |
# with: | |
# limit-access-to-actor: true | |
- name: make | |
run: make LLVM=$HOME/llvm-mos/bin -j`nproc` +all +mametest | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: ${{ github.event.repository.name }}.${{ github.sha }} | |
path: | | |
apple2e.po | |
atari800.atr | |
atari800hd.atr | |
atari800xlhd.atr | |
bbcmicro.ssd | |
c64.d64 | |
diskdefs | |
neo6502.zip | |
oric.dsk | |
pet4032.d64 | |
pet8032.d64 | |
pet8096.d64 | |
x16.zip | |