Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add automated build jobs #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Makefile CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build-os3:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Run the build process with Docker
uses: addnab/docker-run-action@v3
with:
image: amigadev/crosstools:m68k-amigaos
options: -v ${{ github.workspace }}:/work
run: |
cd mcc
make OS=os3 DEBUG=
cd ../mcp
make OS=os3 DEBUG=

- uses: actions/upload-artifact@v3
with:
name: HTMLview_os3
path: |
bin_os3/HTMLview.mcp
bin_os3/HTMLview-Prefs
bin_os3/HTMLview.mcc
bin_os3/HTMLview-Test