ci: fix installation of windows build dependencies

If we don't installe Go separately this is what happens:
```
PS C:\Users\jenkins> scoop install --global 7zip git dos2unix findutils wget rcedit inno-setup make cmake gcc go@1.20.4
Couldn't find manifest for 'C:\Users\admin\scoop\buckets\main\bucket\go.json7zip git dos2unix findutils wget rcedit inno-setup make cmake gc
```
Seems like some kind of parsing issue with providing a version.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-06-06 10:03:46 +02:00 committed by Jakub
parent ef837a9c9c
commit 574300e6ac
1 changed files with 2 additions and 1 deletions

View File

@ -15,10 +15,11 @@ function Install-Scoop {
# Install Git and other dependencies
function Install-Dependencies {
Write-Host "Installing dependencies..."
scoop install --global go@1.20.4
scoop install --global `
7zip git dos2unix findutils `
wget rcedit inno-setup `
make cmake gcc go@1.20.4
make cmake gcc
scoop bucket add extras
scoop install --global vcredist2019
}