Skip to content

Commit

Permalink
ci, enable WITH_LUA_ENGINE
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaozg committed Jul 31, 2021
1 parent 60f9c53 commit 39d40b0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -9,16 +9,18 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest]
build_type: [tiny, regular-asm]
lua_engine: [LuaJIT, Lua]
env:
BUILD_TYPE: ${{ matrix.build_type }}
WITH_LUA_ENGINE: ${{ matrix.lua_engine }}

steps:
- uses: actions/checkout@v2
with:
submodules: recursive

- name: Configure
run: WITHOUT_AMALG=1 make ${BUILD_TYPE}
run: WITHOUT_AMALG=1 make ${BUILD_TYPE} WITH_LUA_ENGINE=${WITH_LUA_ENGINE}

- name: Build
run: make
Expand Down

0 comments on commit 39d40b0

Please sign in to comment.