80 lines
3.0 KiB
YAML
80 lines
3.0 KiB
YAML
name: Build Release
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
board:
|
|
- ttgo-lora32-v21
|
|
- heltec-lora32-v2
|
|
- heltec_wifi_lora_32_V3
|
|
- heltec_wireless_stick
|
|
- heltec_wireless_stick_lite_v3
|
|
- heltec_ht-ct62
|
|
- ESP32_DIY_LoRa
|
|
- ESP32_DIY_1W_LoRa
|
|
- ttgo-t-beam-v1_2
|
|
- ttgo-t-beam-v1
|
|
- ttgo-t-beam-v1_SX1268
|
|
- ttgo-t-beam-v1_2_SX1262
|
|
- ESP32_DIY_LoRa_A7670
|
|
- heltec_wireless_tracker
|
|
- OE5HWN_MeshCom
|
|
- WEMOS-LOLIN32-OLED-DIY
|
|
- WEMOS-D1-R32-RA02
|
|
- ttgo-lora32-v21-915
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-python@v4
|
|
with:
|
|
python-version: "3.9"
|
|
|
|
- name: Install PlatformIO Core
|
|
run: pip install --upgrade platformio
|
|
|
|
- name: Build target
|
|
run: |
|
|
pio run -e ${{ matrix.board }}
|
|
|
|
- name: Build FS
|
|
run: |
|
|
pio run --target buildfs -e ${{ matrix.board }}
|
|
|
|
- name: Move Files
|
|
run: |
|
|
mkdir -p installer/firmware
|
|
cp .pio/build/${{ matrix.board }}/firmware.bin installer/ota_update.bin
|
|
cp .pio/build/${{ matrix.board }}/firmware.bin installer/firmware/
|
|
cp .pio/build/${{ matrix.board }}/bootloader.bin installer/firmware/
|
|
cp .pio/build/${{ matrix.board }}/partitions.bin installer/firmware/
|
|
cp .pio/build/${{ matrix.board }}/spiffs.bin installer/firmware/
|
|
cp ~/.platformio/packages/framework-arduinoespressif32/tools/partitions/boot_app0.bin installer/firmware/
|
|
|
|
- name: Merge for web flashing
|
|
run: |
|
|
python3 -m pip install esptool
|
|
python3 -m esptool merge_bin -o installer/web_factory.bin --flash_mode dio --flash_freq 40m --flash_size 4MB 0x1000 installer/firmware/bootloader.bin 0x9000 installer/firmware/partitions.bin 0xe000 installer/firmware/boot_app0.bin 0x10000 installer/firmware/firmware.bin 0x3D0000 installer/firmware/spiffs.bin
|
|
|
|
- name: Install Zip
|
|
run: sudo apt-get install zip
|
|
|
|
- name: Archive Files
|
|
run: zip -r installer.zip installer/
|
|
|
|
- name: Upload Release Asset
|
|
uses: actions/upload-release-asset@v1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
upload_url: ${{ github.event.release.upload_url }}
|
|
asset_path: ./installer.zip
|
|
asset_name: ${{ matrix.board }}.zip
|
|
asset_content_type: application/zip
|