-
Notifications
You must be signed in to change notification settings - Fork 5
55 lines (41 loc) · 1.12 KB
/
makefile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: A4091 software CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
container: stefanreinauer/amiga-gcc
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Build a4091.device
run: make a4091.device
- name: Build a4091.rom
run: make a4091.rom
- name: Build a4091 tool
run: make a4091
- name: Build a4091d tool
run: make a4091d
- name: Build LHA archive
run: make lha
- name: Build ADF disk image
run: cd disk && make
- name: Archive CI artifacts (ROM)
uses: actions/upload-artifact@v4
with:
name: Driver (AutoBoot ROM)
path: ${{ github.workspace }}/a4091*.rom
- name: Archive CI artifacts (LHA)
uses: actions/upload-artifact@v4
with:
name: Driver (LHA)
path: ${{ github.workspace }}/a4091_??.??.lha
- name: Archive CI artifacts (ADF)
uses: actions/upload-artifact@v4
with:
name: Disk Image (ADF)
path: ${{ github.workspace }}/disk/a4091_??.??.adf