We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bab383e commit d450908Copy full SHA for d450908
.github/workflows/LuaWatcom.yml
@@ -3,8 +3,8 @@ name: Lua for Watcom
3
on: push
4
5
jobs:
6
- DOS:
7
- name: Lua for DOS
+ Watcom:
+ name: Lua for Watcom
8
runs-on: ubuntu-latest
9
10
steps:
@@ -26,6 +26,11 @@ jobs:
26
export INCLUDE=$WATCOM/h
27
wmake -f wm_dos4g.mak
28
29
+ - name: Build Lua for WinNT
30
+ run: |
31
+ export INCLUDE=$WATCOM/h/nt:$WATCOM/h
32
+ wmake -f wm_winnt.mak
33
+
34
- name: UPX Binary Compression
35
uses: crazy-max/ghaction-upx@v3
36
with:
@@ -79,7 +84,7 @@ jobs:
79
84
mformat -C -i dist/Lua3HD18.ima -v LUA -f 1440
80
85
mcopy -i dist/Lua3HD18.ima dist/bin/*.exe example.lua ::
81
86
82
- - name: Zip Binaries
87
+ - name: Create Zip Binaries
83
88
run: |
89
zip -j9 "dist/Lua DOS Bin.zip" dist/bin/*.exe
90
0 commit comments