ci: lock windows Go version at 1.18.8
Fixes the following build error: ``` protocol\messenger.go:5957:6: missing function body protocol\messenger.go:5957:16: syntax error: unexpected [, expecting ( protocol\messenger.go:5959:2: syntax error: non-declaration statement outside function body note: module requires Go 1.18 ``` Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
f87f952330
commit
c500eb9dc6
|
@ -15,7 +15,10 @@ function Install-Scoop {
|
|||
# Install Git and other dependencies
|
||||
function Install-Dependencies {
|
||||
Write-Host "Installing dependencies..."
|
||||
scoop install --global 7zip git dos2unix findutils wget make cmake gcc go rcedit inno-setup
|
||||
scoop install --global `
|
||||
7zip git dos2unix findutils `
|
||||
wget rcedit inno-setup `
|
||||
make cmake gcc go@1.18.8
|
||||
scoop bucket add extras
|
||||
scoop install --global vcredist2017
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue