mirror of
https://github.com/tjboldt/Apple2-IO-RPi.git
synced 2024-11-21 11:31:56 +00:00
Add assembler github action
This commit is contained in:
parent
105a6c318e
commit
db23b6fff6
27
.github/workflows/asm.yml
vendored
Normal file
27
.github/workflows/asm.yml
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
name: Assembler
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
pull_request:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
||||
- name: Set up cc65
|
||||
run: |
|
||||
cd ..
|
||||
git clone https://github.com/cc65/cc65.git
|
||||
cd cc65
|
||||
make
|
||||
|
||||
- name: Build
|
||||
run: |
|
||||
cd Apple2
|
||||
./assemble.sh
|
||||
|
Loading…
Reference in New Issue
Block a user