use correct idf docker image for ci build
This commit is contained in:
parent
80718acd91
commit
33cf0edc9f
2 changed files with 1 additions and 10 deletions
5
.github/workflows/build_esp32.yml
vendored
5
.github/workflows/build_esp32.yml
vendored
|
|
@ -53,9 +53,6 @@ jobs:
|
|||
- name: Setup Python
|
||||
uses: actions/setup-python@v2
|
||||
|
||||
- name: Pull ESP-IDF docker
|
||||
run: docker pull espressif/idf:release-v4.4
|
||||
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
||||
|
|
@ -63,7 +60,7 @@ jobs:
|
|||
run: git submodule update --init lib/tinyusb lib/uf2
|
||||
|
||||
- name: Build
|
||||
run: docker run --rm -v $PWD:/project -w /project espressif/idf:release-v4.3 make -C ports/esp32s2/ BOARD=${{ matrix.board }} all self-update copy-artifact
|
||||
run: docker run --rm -v $PWD:/project -w /project espressif/idf:release-v4.4 make -C ports/esp32s2/ BOARD=${{ matrix.board }} all self-update copy-artifact
|
||||
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
|
|
|
|||
|
|
@ -22,12 +22,6 @@
|
|||
#include "esp_rom_sys.h"
|
||||
#include "esp_rom_gpio.h"
|
||||
|
||||
#if CONFIG_IDF_TARGET_ESP32S2
|
||||
#include "esp32s2/rom/rtc.h"
|
||||
#elif CONFIG_IDF_TARGET_ESP32S3
|
||||
#include "esp32s3/rom/rtc.h"
|
||||
#endif
|
||||
|
||||
#include "soc/cpu.h"
|
||||
#include "hal/gpio_ll.h"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue