Skip to content

Commit d450908

Browse files
committed
Added 'Build Lua for WinNT' step to GitHub workflow
1 parent bab383e commit d450908

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/LuaWatcom.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Lua for Watcom
33
on: push
44

55
jobs:
6-
DOS:
7-
name: Lua for DOS
6+
Watcom:
7+
name: Lua for Watcom
88
runs-on: ubuntu-latest
99

1010
steps:
@@ -26,6 +26,11 @@ jobs:
2626
export INCLUDE=$WATCOM/h
2727
wmake -f wm_dos4g.mak
2828
29+
- name: Build Lua for WinNT
30+
run: |
31+
export INCLUDE=$WATCOM/h/nt:$WATCOM/h
32+
wmake -f wm_winnt.mak
33+
2934
- name: UPX Binary Compression
3035
uses: crazy-max/ghaction-upx@v3
3136
with:
@@ -79,7 +84,7 @@ jobs:
7984
mformat -C -i dist/Lua3HD18.ima -v LUA -f 1440
8085
mcopy -i dist/Lua3HD18.ima dist/bin/*.exe example.lua ::
8186
82-
- name: Zip Binaries
87+
- name: Create Zip Binaries
8388
run: |
8489
zip -j9 "dist/Lua DOS Bin.zip" dist/bin/*.exe
8590

0 commit comments

Comments
 (0)