Skip to content

Commit 327e62e

Browse files
committed
fixup! Run PR validation on multiple OS
1 parent 73dba74 commit 327e62e

File tree

2 files changed

+2
-0
lines changed
  • .github/workflows
  • kotlin-sdk-test/src/jvmTest/kotlin/io/modelcontextprotocol/kotlin/sdk/integration/typescript

2 files changed

+2
-0
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
env:
3434
JAVA_OPTS: "${{ matrix.java-opts }}"
3535
TS_SDK_IMAGE: "registry.jetbrains.team/p/grazi/grazie-infra-public/typescript-sdk-mcp@sha256:585bd19d0f2c3e46250da4d128cf3f2e8c155dc387026927e319f556a4fd559f"
36+
DOCKER_DEFAULT_PLATFORM: "linux/amd64"
3637
steps:
3738
- uses: actions/checkout@v5
3839

kotlin-sdk-test/src/jvmTest/kotlin/io/modelcontextprotocol/kotlin/sdk/integration/typescript/TsTestBase.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ abstract class TsTestBase {
144144
protected fun startTypeScriptServer(port: Int): ContainerProcess {
145145
val container = GenericContainer(tsDockerImage()).apply {
146146
withImagePullPolicy(PullPolicy.alwaysPull())
147+
withCreateContainerCmdModifier { cmd -> cmd.withPlatform("linux/amd64") }
147148
withExposedPorts(port)
148149
mapOf(
149150
"MCP_HOST" to "0.0.0.0",

0 commit comments

Comments
 (0)