diff options
| author | hathach <[email protected]> | 2020-06-29 18:07:34 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2020-06-29 18:07:34 +0700 |
| commit | 00104894dc7f6f6acf8d8c4962d8c1e84ad89eab (patch) | |
| tree | e988135d2c4d256497a65e70f2f250efb9ed439e /.github/workflows | |
| parent | 50b569ad1be86930ae968655ec574362a2b57aa6 (diff) | |
update ci
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9eebfaaf4..51ec0e606 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -79,6 +79,11 @@ jobs: # Build ESP32S build-esp32s: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + example: ['board_test', 'cdc_msc_freertos', 'hid_composite_freertos'] + steps: - name: Setup Python uses: actions/setup-python@v1 @@ -92,4 +97,4 @@ jobs: submodules: 'false' - name: Build - run: docker run --rm -v $PWD:/project -w /project espressif/idf:latest python3 tools/build_esp32s.py + run: docker run --rm -v $PWD:/project -w /project espressif/idf:latest python3 tools/build_esp32s.py ${{ matrix.example }} |
