Skip to content

Commit 68f0b29

Browse files
committed
Add patch step for Lua source code in GitHub workflow
This commit introduces a step to apply a patch to the Lua source code using a provided `lua.pat` file. This lessens the warnings coming from the Open Watcom build process and is a step that happens before proceeding with the 16-bit DOS build.
1 parent ebefbfb commit 68f0b29

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/LuaWatcom.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ jobs:
1616
submodules: recursive
1717
fetch-depth: 0
1818

19+
- name: Patch Lua Source Code for Open Watcom
20+
run: |
21+
patch -p0 -i lua.pat
22+
1923
- name: Build Lua for DOS 16-bit
2024
run: |
2125
export INCLUDE=$WATCOM/h

0 commit comments

Comments
 (0)