Skip to content

Build and Release Graphical Bootloader #12

Build and Release Graphical Bootloader

Build and Release Graphical Bootloader #12

Workflow file for this run

name: Build and Release Graphical Bootloader
on:
push:
tags:
- 'v*.*'
workflow_dispatch:
jobs:
create-release:
runs-on: ubuntu-22.04
outputs:
upload_url: ${{ steps.create_release.outputs.upload_url }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Create Draft Release
id: create_release
run: |
gh release create ${{ github.ref }} --title "Release ${{ github.ref }}" --notes "Release notes for ${{ github.ref }}" --draft
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-and-upload:
needs: create-release
strategy:
matrix:
board:
- { name: "ESP32-S3-BOX-3", sdkconfig: "sdkconfig.defaults.esp-box-3" }
- { name: "ESP32-S3-BOX", sdkconfig: "sdkconfig.defaults.esp-box" }
#- { name: "ESP32-P4", sdkconfig: "sdkconfig.defaults.esp32_p4_function_ev_board" }
- { name: "M5Stack-CoreS3", sdkconfig: "sdkconfig.defaults.m5stack_core_s3" }
runs-on: ubuntu-22.04
container: espressif/idf:release-v5.3
steps:
- uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Set SDKCONFIG_DEFAULTS
run: echo "SDKCONFIG_DEFAULTS=${{ matrix.board.sdkconfig }}" >> $GITHUB_ENV
- name: Build the main application and sub-applications
run: |
. /opt/esp/idf/export.sh
cmake -Daction=select_board -P Bootloader.cmake
#cmake -Daction=build_all_apps -P Bootloader.cmake
mkdir -p build
touch build/combined.bin
mv build/combined.bin build/graphical_bootloader_${{ matrix.board.name }}.bin
gh release upload ${{ needs.create-release.outputs.upload_url }} "build/graphical_bootloader_${{ matrix.board.name }}.bin" --clobber
#- name: Merge binaries into a single image
# run: |
# . /opt/esp/idf/export.sh
# cmake -Daction=merge_binaries -P Bootloader.cmake
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: graphical_bootloader_${{ matrix.board.name }}
path: build/combined.bin