2021-07-29 07:14:16 +02:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
build:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2021-08-21 17:39:54 +02:00
|
|
|
lua_ver: ['5.1', '5.3']
|
|
|
|
numbers: ['default', 'alternate']
|
2021-08-22 13:25:24 +02:00
|
|
|
target: ['esp32', 'esp32s2', 'esp32s3', 'esp32c3']
|
2021-07-29 07:14:16 +02:00
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
- name: Prepare cache key
|
|
|
|
run: git rev-parse HEAD:sdk/esp32-esp-idf > idf.rev
|
|
|
|
shell: bash
|
|
|
|
- name: Cache Espressif tools
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ~/.espressif
|
|
|
|
key: ${{ runner.os }}-espressif-tools-${{ hashFiles('idf.rev') }}
|
|
|
|
- name: Install dependencies
|
|
|
|
run: ./install.sh
|
|
|
|
shell: bash
|
2021-08-21 17:39:54 +02:00
|
|
|
- name: Build firmware (default configuration)
|
|
|
|
if: ${{ matrix.numbers == 'default' }}
|
2021-07-29 07:14:16 +02:00
|
|
|
run: |
|
|
|
|
cp sdkconfig.defaults sdkconfig
|
2021-08-11 09:11:11 +02:00
|
|
|
make IDF_TARGET=${{ matrix.target }}
|
2021-07-29 07:14:16 +02:00
|
|
|
shell: bash
|
|
|
|
- name: Build firmware (Lua 5.1, integer-only)
|
2021-08-21 17:39:54 +02:00
|
|
|
if: ${{ matrix.lua_ver == '5.1' && matrix.numbers == 'alternate' }}
|
2021-07-29 07:14:16 +02:00
|
|
|
run: |
|
|
|
|
cp sdkconfig.defaults sdkconfig
|
|
|
|
echo CONFIG_LUA_NUMBER_INTEGRAL=y >> sdkconfig
|
2021-08-11 09:11:11 +02:00
|
|
|
make IDF_TARGET=${{ matrix.target }}
|
2021-07-29 07:14:16 +02:00
|
|
|
shell: bash
|
2021-08-21 17:39:54 +02:00
|
|
|
- name: Build firmware (Lua 5.3, 64bit int/double)
|
|
|
|
if: ${{ matrix.lua_ver == '5.3' && matrix.numbers == 'alternate' }}
|
|
|
|
run: |
|
|
|
|
cp sdkconfig.defaults sdkconfig
|
|
|
|
echo CONFIG_LUA_NUMBER_INT64=y >> sdkconfig
|
|
|
|
echo CONFIG_LUA_NUMBER_DOUBLE=y >> sdkconfig
|
|
|
|
make IDF_TARGET=${{ matrix.target }}
|
|
|
|
shell: bash
|
2021-07-29 07:14:16 +02:00
|
|
|
- name: Upload luac.cross
|
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
if: ${{ success() }}
|
|
|
|
with:
|
2021-08-11 09:11:11 +02:00
|
|
|
name: luac.cross-${{ matrix.lua_ver }}-${{ matrix.numbers }}-${{ matrix.target }}
|
2021-07-29 07:14:16 +02:00
|
|
|
path: build/luac_cross/luac.cross
|