diff options
author | Damien George <damien@micropython.org> | 2021-04-13 12:33:17 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2021-04-15 10:31:06 +1000 |
commit | a9bbf7083ef6b79cf80bdbf34984d847a6c4aae9 (patch) | |
tree | cbdede1801662b304d15726ed5e32acd0cd9d3ee /.github | |
parent | d97b8daf1a8d3bcb7f205bbffd4f2e122f973f9d (diff) | |
download | micropython-a9bbf7083ef6b79cf80bdbf34984d847a6c4aae9.tar.gz micropython-a9bbf7083ef6b79cf80bdbf34984d847a6c4aae9.zip |
tools/ci.sh: Build esp32 using IDF v4.0.2 and v4.3.
To test different IDF's, and also test building the GENERIC_S2 board.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ports_esp32.yml | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/.github/workflows/ports_esp32.yml b/.github/workflows/ports_esp32.yml index 0ad3f87a25..09817ee126 100644 --- a/.github/workflows/ports_esp32.yml +++ b/.github/workflows/ports_esp32.yml @@ -13,11 +13,20 @@ on: - 'ports/esp32/**' jobs: - build: + build_idf402: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - name: Install packages - run: source tools/ci.sh && ci_esp32_setup + run: source tools/ci.sh && ci_esp32_idf402_setup + - name: Build + run: source tools/ci.sh && ci_esp32_build + + build_idf43: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v2 + - name: Install packages + run: source tools/ci.sh && ci_esp32_idf43_setup - name: Build run: source tools/ci.sh && ci_esp32_build |