Skip to content

Commit 0c8dbf5

Browse files
committed
tests: Update zwa app to latest and stick to it
This fix a regression, since latest moved. Origin: SiliconLabsSoftware#98 Relate-to: SiliconLabsSoftware/z-wave-engine-application-layer#23 Signed-off-by: Philippe Coval <[email protected]>
1 parent 5c302fe commit 0c8dbf5

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ jobs:
3535
uses: robinraju/[email protected]
3636
with:
3737
repository: 'Z-Wave-Alliance/z-wave-stack-binaries'
38-
fileName: 'z-wave-stack-binaries-25.1.0-26-g29d304a-Linux.tar.gz'
38+
tag: 'v25.1.0-28-g7e0b50f'
39+
fileName: 'z-wave-stack-binaries-*-Linux.tar.gz'
3940
token: ${{ secrets.GH_ZWAVE_ACCESS_TOKEN }}
4041
latest: true
4142

helper.mk

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,15 +244,18 @@ test: ${build_dir}
244244
check: test
245245

246246
zwa_project?=z-wave-stack-binaries
247-
zwa_rev?=25.1.0-26-g29d304a
248-
zwa_file?=${zwa_project}-${zwa_rev}-Linux.tar.gz
247+
zwa_ver?=25.1.0-28-g7e0b50f
248+
zwa_rev?=v${zwa_ver}
249+
zwa_file?=${zwa_project}-${zwa_ver}-Linux.tar.gz
249250
zwa_url?=https://github.com/Z-Wave-Alliance/${zwa_project}
250251
zwa_dir?=${zwa_project}
251252

252253
${CURDIR}/tmp/${zwa_file}:
253254
@echo "TODO: https://github.com/Z-Wave-Alliance/z-wave-stack-binaries/issues/2"
254255
mkdir -p ${@D} && cd ${@D} \
255-
&& gh release download -R "${zwa_url}" --pattern "${zwa_file}"
256+
&& gh release download \
257+
--repo "${zwa_url}" --pattern "${zwa_file}" \
258+
"${zwa_rev}"
256259

257260
${zwa_dir}: ${CURDIR}/tmp/${zwa_file}
258261
mkdir -p "$@"

0 commit comments

Comments
 (0)