Skip to content

Commit

Permalink
Move vars into build-meshtastic
Browse files Browse the repository at this point in the history
  • Loading branch information
vidplace7 committed Oct 16, 2024
1 parent 58215dc commit 94633b9
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,22 +56,22 @@ jobs:
include:
- arch: esp32s3
board: t-deck
remove-debug-flags: >-
./arch/esp32/esp32.ini
./arch/esp32/esp32s2.ini
./arch/esp32/esp32s3.ini
./arch/esp32/esp32c3.ini
build-script-path: bin/build-esp32.sh
ota-firmware-source: firmware-s3.bin
ota-firmware-target: release/bleota-s3.bin
# remove-debug-flags: >-
# ./arch/esp32/esp32.ini
# ./arch/esp32/esp32s2.ini
# ./arch/esp32/esp32s3.ini
# ./arch/esp32/esp32c3.ini
# build-script-path: bin/build-esp32.sh
# ota-firmware-source: firmware-s3.bin
# ota-firmware-target: release/bleota-s3.bin
# include-web-ui: true
artifact-paths: |
release/*.bin
release/*.elf
include-web-ui: true
- arch: nrf52840
board: xiao_ble
build-script-path: bin/build-nrf52.sh
# build-script-path: bin/build-nrf52.sh
artifact-paths: |
release/*.hex
release/*.uf2
Expand All @@ -80,22 +80,22 @@ jobs:
- arch: esp32s3
board: t-energy-s3_e22
remove-debug-flags: >-
./arch/esp32/esp32.ini
./arch/esp32/esp32s2.ini
./arch/esp32/esp32s3.ini
./arch/esp32/esp32c3.ini
build-script-path: bin/build-esp32.sh
ota-firmware-source: firmware-s3.bin
ota-firmware-target: release/bleota-s3.bin
# remove-debug-flags: >-
# ./arch/esp32/esp32.ini
# ./arch/esp32/esp32s2.ini
# ./arch/esp32/esp32s3.ini
# ./arch/esp32/esp32c3.ini
# build-script-path: bin/build-esp32.sh
# ota-firmware-source: firmware-s3.bin
# ota-firmware-target: release/bleota-s3.bin
# include-web-ui: true
artifact-paths: |
release/*.bin
release/*.elf
include-web-ui: true
- arch: rp2040
board: rp2040-lora-slowclock
build-script-path: bin/build-rpi2040.sh
# build-script-path: bin/build-rpi2040.sh
artifact-paths: |
release/*.uf2
release/*.elf
Expand Down Expand Up @@ -126,11 +126,11 @@ jobs:
git-ref: ${{ env.meshtastic_firmware_ref }}
arch: ${{ matrix.arch }}
board: ${{ matrix.board }}
build-script-path: ${{ matrix.build-script-path }}
remove-debug-flags: ${{ matrix.remove-debug-flags }}
ota-firmware-source: ${{ matrix.ota-firmware-source }}
ota-firmware-target: ${{ matrix.ota-firmware-target }}
include-web-ui: ${{ matrix.include-web-ui }}
# build-script-path: ${{ matrix.build-script-path }}
# remove-debug-flags: ${{ matrix.remove-debug-flags }}
# ota-firmware-source: ${{ matrix.ota-firmware-source }}
# ota-firmware-target: ${{ matrix.ota-firmware-target }}
# include-web-ui: ${{ matrix.include-web-ui }}

- name: Store binaries as an artifact
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 94633b9

Please sign in to comment.