Skip to content

Commit 1f5252d

Browse files
authored
teamcity: Add support for riscv64 architecture in settings (#4189)
1 parent 35ccc94 commit 1f5252d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.teamcity/settings.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ val targets = arrayOf(
5353

5454
"linux/ppc64le/1.25",
5555

56+
"linux/riscv64/1.25",
57+
"linux/riscv64/tip",
58+
5659
"windows/amd64/1.25",
5760
"windows/amd64/tip",
5861

@@ -269,7 +272,7 @@ class TestBuild(val os: String, val arch: String, val version: String, buildId:
269272
"386", "amd64" -> equals("teamcity.agent.jvm.os.arch", if (os == "mac") "x86_64" else "amd64")
270273
"arm64" -> equals("teamcity.agent.jvm.os.arch", "aarch64")
271274
"ppc64le" -> equals("teamcity.agent.jvm.os.arch", "ppc64le")
272-
// "riscv64" -> equals("teamcity.agent.jvm.os.arch", "riscv64") // The riscv64 needs a builder
275+
"riscv64" -> equals("teamcity.agent.jvm.os.arch", "riscv64")
273276
"loong64" -> equals("teamcity.agent.jvm.os.arch", "loongarch64")
274277
}
275278
when (os) {

0 commit comments

Comments
 (0)