Skip to content

Update build.yml to fix OS3 and OS4 #3

Update build.yml to fix OS3 and OS4

Update build.yml to fix OS3 and OS4 #3

Workflow file for this run

name: Build
on:
push:
branches:
- master
jobs:
build_os3:
name: Build the AmigaOS 3 version
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Build
run: docker run --rm -v ${PWD}:/work -e USER=$(id -u) -e GROUP=$(id -g) -e DEBUG=${DEBUG} sacredbanana/amiga-compiler:m68k-amigaos make
build_os4:
name: Build the AmigaOS 4 version
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Build
run: docker run --rm -v ${PWD}:/work -e USER=$(id -u) -e GROUP=$(id -g) sacredbanana/amiga-compiler:ppc-amigaos make -f Makefile.OS4
build_morphos:
name: Build the MorphOS version
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Build
run: docker run --rm -v ${PWD}:/work -e USER=$(id -u) -e GROUP=$(id -g) sacredbanana/amiga-compiler:ppc-morphos make -f Makefile.MorphOS