forked from SvarDOS/edrdos
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (63 loc) · 1.58 KB
/
build.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
55
56
57
58
59
60
61
62
63
name: "Build (Linux, OpenWatcom v2)"
on:
push:
branches: [ "main" ]
jobs:
build-watcom:
runs-on: [self-hosted]
steps:
- uses: actions/checkout@v4
- name: Make build tools
run: |
cd ltools/unix
make
cd ../..
- name: Build dual-file binaries
run: |
./build.sh dualfile
- name: Generate dual-file floppy image
run: |
cd image
sh mkimage.sh dualfile
cd ..
- name: Upload dual-file binaries
uses: actions/upload-artifact@v4
with:
name: EDR-DOS binaries (DRBIO.SYS, DRDOS.SYS flavor)
path: |
bin/*
- name: Upload dual-file image
uses: actions/upload-artifact@v4
with:
name: EDR-DOS 1.44M image (DRBIO.SYS, DRDOS.SYS flavor)
path: |
image/edrdos.img
- name: Build single-file binaries
run: |
./build.sh singlefile
- name: Generate single-file floppy image
run: |
cd image
sh mkimage.sh singlefile
cd ..
- name: Upload single-file binaries
uses: actions/upload-artifact@v4
with:
name: EDR-DOS binaries (KERNEL.SYS flavor)
path: |
bin/*
- name: Upload dual-file image
uses: actions/upload-artifact@v4
with:
name: EDR-DOS 1.44M image (KERNEL.SYS flavor)
path: |
image/edrdos.img
- name: Generate SvarDOS package
run: |
./mkpkg.sh
- name: Upload SvarDOS package
uses: actions/upload-artifact@v4
with:
name: SvarDOS package
path: |
kernledr.svp