diff options
| author | hathach <[email protected]> | 2020-04-18 15:38:33 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2020-04-18 15:38:33 +0700 |
| commit | 544f8780339dddbcdb0105150d805ce7bf49f341 (patch) | |
| tree | a793d195c74eb4c82f2a8de21b64dd9758334c7c /.github/workflows | |
| parent | 0b1b9a2b9efd258c0977f2411acf19919ba4b457 (diff) | |
test building esp32s2 with docker
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0174b9cb7..87540f468 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,9 +3,21 @@ name: Build on: [pull_request, push, repository_dispatch] jobs: + # Build ESP32S + build-esp32s-docker: + runs-on: ubuntu-latest + steps: + - name: Setup Python + uses: actions/setup-python@v1 + + - name: failed + run: | + exit 1 + # Unit testing with Ceedling unit-test: - runs-on: ubuntu-latest + runs-on: ubuntu-latest + needs: build-esp32s-docker steps: - name: Setup Ruby uses: actions/setup-ruby@v1 @@ -23,6 +35,7 @@ jobs: # Build most of the ports build: runs-on: ubuntu-latest + needs: build-esp32s-docker strategy: fail-fast: false matrix: @@ -79,6 +92,7 @@ jobs: # Build ESP32S build-esp32s: runs-on: ubuntu-latest + needs: build-esp32s-docker steps: - name: Setup Python uses: actions/setup-python@v1 |
