Skip to content

Commit 3d84f69

Browse files
authored
Allow running MacOS TeamCity builds on ARM agents (#553)
1 parent 19dfa80 commit 3d84f69

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.teamcity/additionalConfiguration.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fun Project.additionalConfiguration() {
5656
name = "Check if the Windows names need updating"
5757
id = "Check_if_the_Windows_names_need_updating"
5858
tasks = "downloadWindowsZonesMapping"
59-
jdkHome = "%env.JDK_18_x64%"
59+
jdkHome = "%env.JDK_18%"
6060
}
6161
}
6262

.teamcity/utils.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const val releaseVersionParameter = "releaseVersion"
1212
const val libraryStagingRepoDescription = "Kotlin-DateTime-library"
1313

1414
val platforms = Platform.values()
15-
const val jdk = "JDK_18_x64"
15+
const val jdk = "JDK_18"
1616

1717
enum class Platform {
1818
Windows, Linux, MacOS;
@@ -117,4 +117,4 @@ fun BuildType.dependsOnSnapshot(build: IdOwner, onFailure: FailureAction = Failu
117117
onDependencyCancel = FailureAction.CANCEL
118118
}
119119
}
120-
}
120+
}

0 commit comments

Comments
 (0)