forked from nodemcu/nodemcu-firmware
-
Notifications
You must be signed in to change notification settings - Fork 1
65 lines (60 loc) · 2.02 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: CI
on: [push, pull_request]
jobs:
build:
strategy:
fail-fast: false
matrix:
lua_ver: ['5.1', '5.3']
numbers: ['default', 'alternate']
target: ['esp32', 'esp32s2', 'esp32s3', 'esp32c3']
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
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@v3
with:
path: ~/.espressif
key: ${{ runner.os }}-espressif-tools-${{ hashFiles('idf.rev') }}
- name: Install dependencies
run: ./install.sh
shell: bash
- name: Prepare default sdkconfig
run: |
cp sdkconfig.defaults sdkconfig
shell: bash
- name: Update config for Lua 5.1, integer-only
if: ${{ matrix.lua_ver == '5.1' && matrix.numbers == 'alternate' }}
run: |
echo CONFIG_LUA_NUMBER_INTEGRAL=y >> sdkconfig
shell: bash
- name: Update config for Lua 5.3
if: ${{ matrix.lua_ver == '5.3' }}
run: |
echo CONFIG_LUA_VERSION_53=y >> sdkconfig
shell: bash
- name: Update config for Lua 5.3, 64bit numbers
if: ${{ matrix.lua_ver == '5.3' && matrix.numbers == 'alternate' }}
run: |
echo CONFIG_LUA_NUMBER_INT64=y >> sdkconfig
echo CONFIG_LUA_NUMBER_DOUBLE=y >> sdkconfig
shell: bash
- name: Build firmware
run: |
make IDF_TOOLS_PATH=~/.espressif IDF_TARGET=${{ matrix.target }}
shell: bash
- name: Get Lua build options
run: |
echo lua_build_opts="$(expr "$(./build/luac_cross/luac.cross -v)" : '.*\[\(.*\)\]')" >> $GITHUB_ENV
shell: bash
- name: Upload luac.cross
uses: actions/upload-artifact@v3
if: ${{ success() }}
with:
name: luac.cross-${{ env.lua_build_opts }}-${{ matrix.target }}
path: build/luac_cross/luac.cross