Skip to content

Commit 20f0c62

Browse files
committed
Another place where we have to pin cwipc release at v7.7.5.
1 parent cec10a7 commit 20f0c62

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

tests/setup_test_environment.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
If (Test-Path .\cwipc-built) {
66
Remove-Item .\cwipc-built -Recurse -Force
77
}
8-
curl.exe -L -o cwipc-built.zip https://github.com/cwi-dis/cwipc/releases/download/nightly/cwipc-win10-nightly-built.zip
8+
$cwipc_tag = "v7.7.5"
9+
curl.exe -L -o cwipc-built.zip https://github.com/cwi-dis/cwipc/releases/download/$cwipc_tag/cwipc-win10-$cwipc_tag-built.zip
910
Expand-Archive -path .\cwipc-built.zip -Force
1011
$lldash_dir = Join-Path $PWD installed
1112
$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_tag="v7.7.5"
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/$cwipc_tag/cwipc-ubuntu2404-$cwipc_tag-built.tar.gz
1010
(cd installed && tar xfv ../cwipc-built.tar.gz)
1111

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

0 commit comments

Comments
 (0)