From d96effa34dc5af7cda8dcbf07ce927d6a93ca2d8 Mon Sep 17 00:00:00 2001 From: Jade Mattsson Date: Wed, 27 Mar 2024 15:06:01 +1100 Subject: [PATCH] Update github build to deal with Lua 5.3 being default. --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0381a433..cd9cc914 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,6 +33,11 @@ jobs: run: | cp sdkconfig.defaults sdkconfig shell: bash + - name: Update config for Lua 5.1 + if: ${{ matrix.lua_ver == '5.1' }} + run: | + echo CONFIG_LUA_VERSION_51=y >> sdkconfig + shell: bash - name: Update config for Lua 5.1, integer-only if: ${{ matrix.lua_ver == '5.1' && matrix.numbers == 'alternate' }} run: |