aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleaf corcoran <leafot@gmail.com>2019-09-21 17:48:46 -0700
committerleaf <leafot@gmail.com>2020-04-25 14:24:18 -0700
commite55b93ff0c0aee0449d8cd8e94b91096d11a38e1 (patch)
tree6465019e78b896a6afd803fb4b51dfe2a573459f
parentd3685e3477b04ca129863251882f281b5975701f (diff)
downloadlua-cjson-e55b93ff0c0aee0449d8cd8e94b91096d11a38e1.tar.gz
lua-cjson-e55b93ff0c0aee0449d8cd8e94b91096d11a38e1.tar.bz2
lua-cjson-e55b93ff0c0aee0449d8cd8e94b91096d11a38e1.zip
use local lua for makefile build
-rw-r--r--.github/workflows/test.yml2
-rwxr-xr-xruntests.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 9c3fa93..f8bea28 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -22,7 +22,7 @@ jobs:
22 22
23 - name: test 23 - name: test
24 run: | 24 run: |
25 ./runtests.sh 25 ./runtests.sh PREFIX=.lua
26 26
27 - name: build 27 - name: build
28 run: | 28 run: |
diff --git a/runtests.sh b/runtests.sh
index 85b7811..748bd40 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -50,7 +50,7 @@ luarocks remove --local lua-cjson
50make clean 50make clean
51 51
52echo "===== Testing Makefile build =====" 52echo "===== Testing Makefile build ====="
53make 53make "$@"
54cp -r lua/cjson cjson.so tests 54cp -r lua/cjson cjson.so tests
55do_tests 55do_tests
56make clean 56make clean