Skip to content

Commit c0378df

Browse files
committed
Added rule arguments to wmake.
1 parent fa5f4d7 commit c0378df

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/LuaWatcom.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
3838
- name: Patch Lua Source Code for Open Watcom
3939
run: |
40-
lua scripts/dev/PATCH.LUA lua.pat
40+
lua scripts/dev/PATCH.LUA lua.pat luac.pat
4141
4242
- name: Check GCC can build Lua after patches
4343
run: |
@@ -49,37 +49,37 @@ jobs:
4949
env:
5050
INCLUDE: "${{ env.WATCOM }}/h"
5151
run: |
52-
wmake -f wm_dos16.mak
52+
wmake -f wm_dos16.mak lua luac
5353
5454
- name: Build Lua for DOS4GW 32-bit Extender
5555
env:
5656
INCLUDE: "${{ env.WATCOM }}/h"
5757
run: |
58-
wmake -f wm_dos4g.mak
58+
wmake -f wm_dos4g.mak lua luac
5959
6060
- name: Build Lua for Linux
6161
env:
6262
INCLUDE: "${{ env.WATCOM }}/lh"
6363
run: |
64-
wmake -f wm_linux.mak
64+
wmake -f wm_linux.mak lua luac
6565
6666
- name: Build Lua for OS/2 16-bit
6767
env:
6868
INCLUDE: "${{ env.WATCOM }}/h/os2:${{ env.WATCOM }}/h"
6969
run: |
70-
wmake -f wm_os216.mak
70+
wmake -f wm_os216.mak lua luac
7171
7272
- name: Build Lua for OS/2 32-bit
7373
env:
7474
INCLUDE: "${{ env.WATCOM }}/h/os2:${{ env.WATCOM }}/h"
7575
run: |
76-
wmake -f wm_os232.mak
76+
wmake -f wm_os232.mak lua luac
7777
7878
- name: Build Lua for Windows 95
7979
env:
8080
INCLUDE: "${{ env.WATCOM }}/h/nt:${{ env.WATCOM }}/h"
8181
run: |
82-
wmake -f wm_winnt.mak
82+
wmake -f wm_winnt.mak lua luac
8383
8484
- name: Copy DOS4GW Binary
8585
run: |
@@ -214,7 +214,7 @@ jobs:
214214
day=$(date -d "$input_date" '+%-d')
215215
month=$(date -d "$input_date" '+%B')
216216
year=$(date -d "$input_date" '+%Y')
217-
217+
218218
if [[ $day -eq 11 || $day -eq 12 || $day -eq 13 ]]; then
219219
suffix="th"
220220
else
@@ -242,4 +242,4 @@ jobs:
242242
--draft \
243243
--title "$TAG_NAME" \
244244
--notes-file .github/workflows/notes.md \
245-
"LuaDist/*.zip"
245+
"LuaDist/*.zip"

0 commit comments

Comments
 (0)