Skip to content

Commit 5b9a479

Browse files
committed
Fixed asset names for cwipc v8.0
1 parent 1e53dee commit 5b9a479

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

tests/setup_test_environment.ps1

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22
# Use with "source", don't run normally.
33
# Installs cwipc, creates a venv in .venv, and installs the cwipc python modules.
44
# Adds ./installed/bin to PATH
5+
$cwipc_version_tag = "v8.0a1"
6+
57
If (Test-Path .\cwipc-built) {
68
Remove-Item .\cwipc-built -Recurse -Force
79
}
8-
curl.exe -L -o cwipc-built.zip https://github.com/cwi-dis/cwipc/releases/download/nightly/cwipc-win10-nightly-built.zip
10+
curl.exe -L -o cwipc-built.zip https://github.com/cwi-dis/cwipc/releases/download/nightly/cwipc-windows-intel-built-$cwipc_version_tag.zip
911
Expand-Archive -path .\cwipc-built.zip -Force
1012
$lldash_dir = Join-Path $PWD installed
1113
$lldash_bin_dir = Join-Path $lldash_dir bin

tests/setup_test_environment.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
# Use with "source", don't run normally.
33
# Installs cwipc, creates a venv in .venv, and installs the cwipc python modules.
44
# Adds ./installed/bin to PATH
5-
5+
cwipc_version_tag=v8.0a1
66
if [ $(uname) = "Linux" ]; then
77
sudo apt install -y python3.12-venv
88

9-
curl -L -o cwipc-built.tar.gz https://github.com/cwi-dis/cwipc/releases/download/nightly/cwipc-ubuntu2404-nightly-built.tar.gz
9+
curl -L -o cwipc-built.tar.gz https://github.com/cwi-dis/cwipc/releases/download/nightly/cwipc-ubuntu2404-built-${cwipc_version_tag}.tar.gz
1010
(cd installed && tar xfv ../cwipc-built.tar.gz)
1111

1212
export PATH=$(pwd)/installed/bin:$PATH

0 commit comments

Comments
 (0)