-
Notifications
You must be signed in to change notification settings - Fork 14
50 lines (38 loc) · 906 Bytes
/
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
name: Build master (Linux)
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
build-watcom:
runs-on: [self-hosted, watcom]
steps:
- uses: actions/checkout@v4
- name: Build with wmake
run: |
cd source/fdisk
wmake
- name: Build distribution ZIP
run: |
cd source/fdisk
wmake dist dist-svardos
- name: Upload distribution files
uses: actions/upload-artifact@v4
with:
name: fdisk.zip
path: fdisk.zip
- name: Upload SvarDOS package
uses: actions/upload-artifact@v4
with:
name: fdisk.svp
path: fdisk.svp
build-ia16-gcc:
runs-on: [self-hosted, ia16-gcc]
steps:
- uses: actions/checkout@v4
- name: Build with IA16-GCC and GNU Make
run: |
cd source/fdisk
make -f Makefile.gcc