From d10945e0a2b97ae19dd1c30288c622d344e83df7 Mon Sep 17 00:00:00 2001 From: sfja Date: Fri, 27 Mar 2026 20:08:01 +0100 Subject: [PATCH] use bash for esp-idf build --- .github/workflows/verify.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 8360e54..46d25cc 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -12,13 +12,13 @@ jobs: container: sfja/h5-mst-ci:latest steps: - uses: actions/checkout@v6 - - name: check + - name: Check working-directory: ./backend run: make check - - name: build + - name: Build working-directory: ./backend run: make all - - name: test + - name: Test working-directory: ./backend run: make test @@ -28,25 +28,27 @@ jobs: steps: - uses: actions/checkout@v6 - run: rustup default stable - - name: check + - name: Check working-directory: ./game run: cargo check - - name: build + - name: Build working-directory: ./game run: cargo build - - name: test + - name: Test working-directory: ./game run: cargo test skateboard: runs-on: ubuntu-latest - container: espressif/idf:v5.5.4 + container: espressif/idf:release-v5.5 steps: - uses: actions/checkout@v6 - - name: build + - name: Build + shell: bash working-directory: ./skateboard # https://github.com/espressif/esp-bsp/blob/master/.github/workflows/build-run-applications.yml run: | + export IDF_PYTHON_CHECK_CONSTRAINTS=yes ${IDF_PATH}/install.sh --enable-ci source ${IDF_PATH}/export.sh idf.py compile