fix(emulator): diagnose a spawn failure instead of blaming the toolchain #2206
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build ESP8266 | |
| # >>> RENDERED-ON-BEGIN (ci/render_workflows.py) -- do not edit by hand <<< | |
| on: | |
| workflow_dispatch: {} | |
| workflow_call: {} | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'tests/platform/esp8266/**' | |
| - 'crates/fbuild-build-esp/src/esp8266/**' | |
| - 'crates/fbuild-build/**' | |
| - 'crates/fbuild-build/Cargo.toml' | |
| - 'crates/fbuild-cli/**' | |
| - 'crates/fbuild-daemon/**' | |
| - 'crates/fbuild-core/**' | |
| - 'crates/fbuild-paths/**' | |
| - 'crates/fbuild-config/**' | |
| - 'crates/fbuild-deploy/**' | |
| - 'crates/fbuild-packages/**' | |
| - 'crates/fbuild-header-scan/**' | |
| - 'crates/fbuild-library-select/**' | |
| - 'Cargo.toml' | |
| - 'Cargo.lock' | |
| - 'rust-toolchain.toml' | |
| - '.github/workflows/template_build.yml' | |
| - '.github/workflows/ci-workflow-drift.yml' | |
| - 'ci/render_workflows.py' | |
| - 'ci/board_families.json' | |
| - 'ci/ci_common_paths.txt' | |
| - 'crates/fbuild-build-engine/**' | |
| - 'crates/fbuild-build-mcu/src/lib.rs' | |
| - 'crates/fbuild-build-mcu/*argo.toml' | |
| - 'crates/fbuild-toolchain/**' | |
| - 'crates/fbuild-library/**' | |
| - 'crates/fbuild-packages-fetch/**' | |
| - '.github/workflows/build-esp8266.yml' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'tests/platform/esp8266/**' | |
| - 'crates/fbuild-build-esp/src/esp8266/**' | |
| - 'crates/fbuild-build/**' | |
| - 'crates/fbuild-build/Cargo.toml' | |
| - 'crates/fbuild-cli/**' | |
| - 'crates/fbuild-daemon/**' | |
| - 'crates/fbuild-core/**' | |
| - 'crates/fbuild-paths/**' | |
| - 'crates/fbuild-config/**' | |
| - 'crates/fbuild-deploy/**' | |
| - 'crates/fbuild-packages/**' | |
| - 'crates/fbuild-header-scan/**' | |
| - 'crates/fbuild-library-select/**' | |
| - 'Cargo.toml' | |
| - 'Cargo.lock' | |
| - 'rust-toolchain.toml' | |
| - '.github/workflows/template_build.yml' | |
| - '.github/workflows/ci-workflow-drift.yml' | |
| - 'ci/render_workflows.py' | |
| - 'ci/board_families.json' | |
| - 'ci/ci_common_paths.txt' | |
| - 'crates/fbuild-build-engine/**' | |
| - 'crates/fbuild-build-mcu/src/lib.rs' | |
| - 'crates/fbuild-build-mcu/*argo.toml' | |
| - 'crates/fbuild-toolchain/**' | |
| - 'crates/fbuild-library/**' | |
| - 'crates/fbuild-packages-fetch/**' | |
| - '.github/workflows/build-esp8266.yml' | |
| concurrency: | |
| group: build-esp8266.yml-${{ github.event_name == 'pull_request' && github.ref || github.run_id }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| # >>> RENDERED-ON-END <<< | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/template_build.yml | |
| with: | |
| workflow-name: "ESP8266" | |
| test-dir: "tests/platform/esp8266" | |
| env-name: "esp8266" | |
| firmware-ext: "bin" |