Update ci to fix disk space bug #46
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 All MicroPython Firmwares | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 0 * * 1' | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| types: [closed] | |
| release: | |
| types: [ created ] | |
| jobs: | |
| build_esp32c5: | |
| name: Build Xiao ESP32C5 Firmware | |
| uses: ./.github/workflows/build_micropython_xiao_esp32c5.yml | |
| with: | |
| trigger: ${{ github.event_name }} | |
| secrets: inherit | |
| build_nrf54l15: | |
| name: Build Xiao nRF54L15 Firmware | |
| uses: ./.github/workflows/build_micropython_xiao_nrf54l15.yml | |
| with: | |
| trigger: ${{ github.event_name }} | |
| secrets: inherit | |
| build_nrf52840: | |
| name: Build Xiao nRF52840 Firmware | |
| uses: ./.github/workflows/build_micropython_xiao_nrf52840.yml | |
| with: | |
| trigger: ${{ github.event_name }} | |
| secrets: inherit | |
| build_mg24: | |
| name: Build Xiao MG24 Firmware | |
| uses: ./.github/workflows/build_micropython_xiao_mg24.yml | |
| with: | |
| trigger: ${{ github.event_name }} | |
| secrets: inherit | |
| build_ra4m1: | |
| name: Build Xiao RA4M1 Firmware | |
| uses: ./.github/workflows/build_micropython_xiao_ra4m1.yml | |
| with: | |
| trigger: ${{ github.event_name }} | |
| secrets: inherit |