Example project to show CI with Github Actions
Go to file
Dagen Brock ea5d311d7c README.md cleanup 2021-06-21 15:58:11 -05:00
.github/workflows version bump for newer actions 2021-03-23 11:45:45 -05:00
src CICD Example with CADIUS and Merlin32 Github Actions 2020-03-06 13:09:14 -06:00
LICENSE CICD Example with CADIUS and Merlin32 Github Actions 2020-03-06 13:09:14 -06:00
README.md README.md cleanup 2021-06-21 15:58:11 -05:00

README.md

.github/workflows/main.yml

apple2-assembly-github-actions-ci-example

Example project showing how to achieve Continuous Integration with Github Actions to assemble 65xx source, package it in a ProDOS disk image, and release it on Github.

Explanation

This project contains a 6502 assembly language source file called src/example.s that can be assembled and run on an Apple II.

But how do we do that?

We use Github Actions to install the Merlin32 assembler and CADIUS disk image tool to assemble our source file and put the resulting object on a disk image.

See the project's .github/workflows/main.yml file to understand how it is automatically built using Github Action.

How it works

The main project workflow file above has the following logic:

  • Any time new code is pushed:
    • Build it with Merlin32 and report back success
  • Any time we push a new version tag:
    • Build it with Merlin32
    • Create a new ProDOS disk image with Cadius
    • Copy ProDOS system and our assembled objects to the image
    • Upload the new disk image to our Github Release page for anyone to download and use immediately!

Uses: