Skip to content

Commit 502db50

Browse files
committed
tests: Update zwa app to latest and stick to it
This fix a regression, since latest moved. Signed-off-by: Philippe Coval <philippe.coval@silabs.com>
1 parent 5c302fe commit 502db50

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
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/release-downloader@v1.12
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: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,9 @@ packages+=graphviz
4545
export cmake_options+=-DDOXYGEN_HAVE_DOT=YES
4646

4747
packages+=python3-breathe python3-myst-parser \
48-
python3-sphinx-markdown-tables python3-sphinx-rtd-theme \
49-
python3-linkify-it
48+
python3-sphinx-markdown-tables python3-sphinx-rtd-theme
49+
50+
#packages+=python3-linkify-it # Disable for ubuntu-22.04 use "pip install linkify-it-py" instead
5051

5152
# TODO: https://bugs.debian.org/1004136#python-sphinxcontrib.plantuml
5253
# packages+=python3-sphinxcontrib.plantuml
@@ -244,15 +245,18 @@ test: ${build_dir}
244245
check: test
245246

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

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

257261
${zwa_dir}: ${CURDIR}/tmp/${zwa_file}
258262
mkdir -p "$@"

0 commit comments

Comments
 (0)