We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30953a7 commit c0306caCopy full SHA for c0306ca
.github/workflows/hil.yml
@@ -2,7 +2,8 @@ name: HIL
2
3
on:
4
pull_request:
5
- push:
+ types: [opened, synchronize, reopened, ready_for_review]
6
+ merge_group:
7
workflow_dispatch:
8
inputs:
9
repository:
@@ -13,7 +14,6 @@ on:
13
14
description: "Branch, tag or SHA to checkout."
15
required: true
16
default: "main"
- merge_group:
17
18
env:
19
CARGO_TERM_COLOR: always
@@ -100,7 +100,7 @@ jobs:
100
ESPFLASH_APP: espflash/resources/apps/${{ matrix.board.mcu }}
101
shell: bash
102
run: |
103
- result=$(espflash_app/espflash flash ${{ env.ESPFLASH_APP }} 2>&1)
+ result=$(espflash_app/espflash flash --no-skip ${{ env.ESPFLASH_APP }} 2>&1)
104
echo "$result"
105
if [[ ! $result =~ "Flashing has completed!" ]]; then
106
exit 1
0 commit comments