summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhathach <[email protected]>2026-02-12 00:10:18 +0700
committerhathach <[email protected]>2026-02-12 00:10:18 +0700
commit4a5077a1aa78d2359f26b0c44ced025db45d77c2 (patch)
treec24ebf975a7c0089a9c68456057617f44ef4d96b
parentcec0ee53f60ed28d7c324f40cbebd0b677d94eb1 (diff)
membrowse upload continue on error
-rw-r--r--.github/workflows/build_util.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/build_util.yml b/.github/workflows/build_util.yml
index 595129443..138673bcc 100644
--- a/.github/workflows/build_util.yml
+++ b/.github/workflows/build_util.yml
@@ -80,10 +80,11 @@ jobs:
- name: Membrowse Upload
if: inputs.toolchain != 'esp-idf' && inputs.upload-membrowse == true
+ continue-on-error: true # have server busy issue with membrowse
env:
MEMBROWSE_API_KEY: ${{ secrets.MEMBROWSE_API_KEY }}
run: |
- # if code-changed is false --> there is no elf -> membrowse target upload with --indetical flag
+ # if code-changed is false --> there is no elf -> membrowse target upload with --identical flag
BUILD_PY_ARGS="-s ${{ inputs.build-system }} ${{ steps.setup-toolchain.outputs.build_option }} ${{ inputs.build-options }}"
python tools/build.py $BUILD_PY_ARGS --target examples-membrowse-upload -j 1 ${{ matrix.arg }}
shell: bash