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:
parent
ef837a9c9c
commit
574300e6ac
|
@ -15,10 +15,11 @@ function Install-Scoop {
|
||||||
# Install Git and other dependencies
|
# Install Git and other dependencies
|
||||||
function Install-Dependencies {
|
function Install-Dependencies {
|
||||||
Write-Host "Installing dependencies..."
|
Write-Host "Installing dependencies..."
|
||||||
|
scoop install --global go@1.20.4
|
||||||
scoop install --global `
|
scoop install --global `
|
||||||
7zip git dos2unix findutils `
|
7zip git dos2unix findutils `
|
||||||
wget rcedit inno-setup `
|
wget rcedit inno-setup `
|
||||||
make cmake gcc go@1.20.4
|
make cmake gcc
|
||||||
scoop bucket add extras
|
scoop bucket add extras
|
||||||
scoop install --global vcredist2019
|
scoop install --global vcredist2019
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue