mirror of
https://github.com/go-delve/delve.git
synced 2025-10-27 12:05:21 +08:00
teamcity: don't sign binaries on CI
This commit is contained in:
1
.teamcity/settings.kts
vendored
1
.teamcity/settings.kts
vendored
@ -258,6 +258,7 @@ class TestBuild(val os: String, val arch: String, val version: String, buildId:
|
|||||||
name = "Test"
|
name = "Test"
|
||||||
path = "_scripts/test_mac.sh"
|
path = "_scripts/test_mac.sh"
|
||||||
arguments = "${"go$version"} $arch %system.teamcity.build.tempDir%"
|
arguments = "${"go$version"} $arch %system.teamcity.build.tempDir%"
|
||||||
|
param("env.CI", "true")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -130,6 +130,9 @@ This option can only be specified if testset is basic or a single package.`)
|
|||||||
}
|
}
|
||||||
|
|
||||||
func checkCert() bool {
|
func checkCert() bool {
|
||||||
|
if os.Getenv("CI") != "" {
|
||||||
|
return true
|
||||||
|
}
|
||||||
if os.Getenv("NOCERT") != "" {
|
if os.Getenv("NOCERT") != "" {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user