File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed
Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1+ name : " Test"
2+ on :
3+ pull_request :
4+ jobs :
5+ test :
6+ runs-on : ubuntu-latest
7+ steps :
8+ - uses : actions/checkout@v2
9+ - run : |
10+ sudo apt-get update
11+ sudo apt-get install -y luarocks
12+ - run : make test
Original file line number Diff line number Diff line change 88LUA_VERSION =5.1
99
1010LUA_PATH = deps/share/lua/$(LUA_VERSION ) /?.lua;deps/share/lua/$(LUA_VERSION ) /?/init.lua
11- LUA_PATH += ;lua/?.lua;lua/?/init.lua
11+ LUA_PATH := $(LUA_PATH ) ;lua/?.lua;lua/?/init.lua
12+ LUA_PATH := $(LUA_PATH ) ;$(shell lua$(LUA_VERSION ) -e 'print(package.path) ')
1213export LUA_PATH
1314
14- export LUA_CPATH = deps/lib/lua/$(LUA_VERSION ) /?.so
15+ export LUA_CPATH = deps/lib/lua/$(LUA_VERSION ) /?.so; $( shell lua $( LUA_VERSION ) -e 'print(package.cpath) ')
1516
1617ifdef PCRE_DIR
1718LREXLIB_PCRE_FLAGS = PCRE_DIR=$(PCRE_DIR )
You can’t perform that action at this time.
0 commit comments