aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2023-09-13 19:40:22 -0300
committerGitHub <noreply@github.com>2023-09-13 19:40:22 -0300
commitb182b416169dc5286df737b7bf64dd6be1bb8eef (patch)
tree86925b0bff89c10889d339b9a4f44167c101f242 /.github
parent8f8e4c6adb43e107f5902e784ef207dc3c8ca06b (diff)
downloadlua-compat-5.3-b182b416169dc5286df737b7bf64dd6be1bb8eef.tar.gz
lua-compat-5.3-b182b416169dc5286df737b7bf64dd6be1bb8eef.tar.bz2
lua-compat-5.3-b182b416169dc5286df737b7bf64dd6be1bb8eef.zip
Support getting io.popen results on file:close() on PUC-Rio Lua 5.1 (#53)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/compat53-tests.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/compat53-tests.yml b/.github/workflows/compat53-tests.yml
index d0dd3d4..40819ce 100644
--- a/.github/workflows/compat53-tests.yml
+++ b/.github/workflows/compat53-tests.yml
@@ -55,7 +55,7 @@ jobs:
55 if [ "${{ matrix.external }}" = true ]; then DEF="-DCOMPAT53_PREFIX=compat53" SRC="c-api/compat-5.3.c"; fi 55 if [ "${{ matrix.external }}" = true ]; then DEF="-DCOMPAT53_PREFIX=compat53" SRC="c-api/compat-5.3.c"; fi
56 ${CC} ${CFLAGS} -Iold/include ${DEF} -shared -o old/testmod.so tests/testmod.c ${SRC} 56 ${CC} ${CFLAGS} -Iold/include ${DEF} -shared -o old/testmod.so tests/testmod.c ${SRC}
57 ${CC} ${CFLAGS} -Inew/include ${DEF} -shared -o new/testmod.so tests/testmod.c ${SRC} 57 ${CC} ${CFLAGS} -Inew/include ${DEF} -shared -o new/testmod.so tests/testmod.c ${SRC}
58 gcc ${CFLAGS} -Iold/include ${DEF} -shared -o old/compat53.so ltablib.c lutf8lib.c lstrlib.c ${SRC} 58 gcc ${CFLAGS} -Iold/include ${DEF} -shared -o old/compat53.so ltablib.c lutf8lib.c lstrlib.c liolib.c ${SRC}
59 - name: run test scripts 59 - name: run test scripts
60 run: | 60 run: |
61 (cd old && bin/lua ../tests/test.lua) > old.txt 61 (cd old && bin/lua ../tests/test.lua) > old.txt