Skip to content

Commit 935349f

Browse files
committed
fix: full path to msidb maybe
1 parent 6c3b028 commit 935349f

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/test-windows-code-signing.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -170,14 +170,14 @@ jobs:
170170

171171
- uses: milliewalky/setup-7-zip@v1
172172

173-
- name: Install GCC
174-
run: |
175-
curl -L -O https://github.com/brechtsanders/winlibs_mingw/releases/download/14.2.0posix-19.1.1-12.0.0-msvcrt-r2/winlibs-x86_64-posix-seh-gcc-14.2.0-llvm-19.1.1-mingw-w64msvcrt-12.0.0-r2.7z
176-
7z x winlibs-x86_64-posix-seh-gcc-14.2.0-llvm-19.1.1-mingw-w64msvcrt-12.0.0-r2.7z -oC:/gcc
177-
Add-Content -Path $env:GITHUB_PATH -Value "C:/gcc/mingw64/bin"
173+
# - name: Install GCC
174+
# run: |
175+
# curl -L -O https://github.com/brechtsanders/winlibs_mingw/releases/download/14.2.0posix-19.1.1-12.0.0-msvcrt-r2/winlibs-x86_64-posix-seh-gcc-14.2.0-llvm-19.1.1-mingw-w64msvcrt-12.0.0-r2.7z
176+
# 7z x winlibs-x86_64-posix-seh-gcc-14.2.0-llvm-19.1.1-mingw-w64msvcrt-12.0.0-r2.7z -oC:/gcc
177+
# Add-Content -Path $env:GITHUB_PATH -Value "C:/gcc/mingw64/bin"
178178

179-
- name: Install LMDB
180-
run: stack exec -- pacman -S --noconfirm mingw-w64-x86_64-lmdb
179+
# - name: Install LMDB
180+
# run: stack exec -- pacman -S --noconfirm mingw-w64-x86_64-lmdb
181181

182182
# - name: Build Windows Node
183183
# run: |
@@ -191,7 +191,7 @@ jobs:
191191
- name: Extract files to prepare for signing
192192
run: |
193193
dir
194-
MsiDb.exe -d ./service/windows/installer/Node.msi -x Node.cab
194+
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x86\MsiDb.exe" -d ./service/windows/installer/Node.msi -x Node.cab
195195
mkdir Node
196196
dir
197197
expand -d Node.cab
@@ -250,8 +250,8 @@ jobs:
250250
del Node.cab
251251
move disk1\Node.cab .
252252
expand -d Node.cab
253-
MsiDb.exe -d service/windows/installer/Node.msi -k Node.cab
254-
MsiDb.exe -d service/windows/installer/Node.msi -a Node.cab
253+
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x86\MsiDb.exe" -d service/windows/installer/Node.msi -k Node.cab
254+
"C:\Program Files (x86)\Windows Kits\10\bin\10.0.22000.0\x86\MsiDb.exe" -d service/windows/installer/Node.msi -a Node.cab
255255
shell: cmd
256256

257257
# - name: Sign files with smctl

0 commit comments

Comments
 (0)