File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed
Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 6868 run : |
6969 cd build/zephyr
7070 mkdir -p artifacts
71- mv merged.hex ./artifacts/golioth-${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ inputs.BOARD }}_full.hex
72- mv app_update.bin ./artifacts/golioth-${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ inputs.BOARD }}_update.bin
73- mv zephyr.elf ./artifacts/golioth-${{ github.event.repository.name }}_${{ inputs.TAG }}_${{ inputs.BOARD }}.elf
71+ BOARD_NICENAME=${{ inputs.BOARD }}
72+ BOARD_NICENAME=${BOARD_NICENAME//\//_}
73+ mv merged.hex ./artifacts/golioth-${{ github.event.repository.name }}_${{ inputs.TAG }}_${BOARD_NICENAME}_full.hex
74+ mv app_update.bin ./artifacts/golioth-${{ github.event.repository.name }}_${{ inputs.TAG }}_${BOARD_NICENAME}_update.bin
75+ mv zephyr.elf ./artifacts/golioth-${{ github.event.repository.name }}_${{ inputs.TAG }}_${BOARD_NICENAME}.elf
7476
7577 # Run IDs are unique per repo but are reused on re-runs
7678 - name : Save artifact
Original file line number Diff line number Diff line change 1717 strategy :
1818 matrix :
1919 ZEPHYR_SDK : [0.16.3]
20- BOARD : ["nrf9160dk_nrf9160_ns ","aludel_mini_v1_sparkfun9160_ns "]
20+ BOARD : ["nrf9160dk/nrf9160/ns ","aludel_mini/nrf9160/ns","aludel_elixir/nrf9160/ns "]
2121
2222 uses : ./.github/workflows/build_zephyr.yml
2323 with :
Original file line number Diff line number Diff line change 11# Copyright (c) 2023 Golioth, Inc.
22# SPDX-License-Identifier: Apache-2.0
33
4- name : Test firmware
4+ name : Test firmware
55
66on :
77 pull_request :
1313 uses : ./.github/workflows/build_zephyr.yml
1414 with :
1515 ZEPHYR_SDK : 0.16.3
16- BOARD : aludel_mini_v1_sparkfun9160_ns
17- ARTIFACT : false
16+ BOARD : aludel_mini/nrf9160/ns
17+ ARTIFACT : false
You can’t perform that action at this time.
0 commit comments