mirror of
https://github.com/go-delve/delve.git
synced 2025-10-27 20:23:41 +08:00
TeamCity: fix windows/amd64 builds (#3223)
Windows/amd64 builds are not runnning because the current settings.kts has an implicity requirement to property teamcity.build.systemDir which does not exist on windows/amd64 agents.
This commit is contained in:
committed by
GitHub
parent
72c77b1c30
commit
32df4071d2
2
.teamcity/settings.kts
vendored
2
.teamcity/settings.kts
vendored
@ -204,7 +204,7 @@ class TestBuild(val os: String, val arch: String, version: String, buildId: Abso
|
||||
scriptMode = file {
|
||||
path = "_scripts/test_windows.ps1"
|
||||
}
|
||||
param("jetbrains_powershell_scriptArguments", "-version ${"go$version"} -arch $arch -binDir %teamcity.build.systemDir%")
|
||||
param("jetbrains_powershell_scriptArguments", "-version ${"go$version"} -arch $arch")
|
||||
}
|
||||
}
|
||||
"mac" -> {
|
||||
|
||||
@ -5,7 +5,6 @@ param (
|
||||
)
|
||||
|
||||
if ($binDir -eq "") {
|
||||
# TODO: remove once the current version of settings.kts gets to master.
|
||||
$binDir = Resolve-Path "../../system" # working directory
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user