cdk-github-runners icon indicating copy to clipboard operation
cdk-github-runners copied to clipboard

dockerSetupCommands doesn't work on Windows

Open kichik opened this issue 1 month ago • 0 comments

Using dockerSetupCommands to with Windows runner image builders doesn't seem to work. I get:

Error while calling ssm:SendCommand: UnsupportedPlatformType

For example:

const windowsImageBuilder = FargateRunnerProvider.imageBuilder(stack, 'Windows Image Builder', {
  os: Os.WINDOWS,
  vpc,
  subnetSelection: { subnetType: ec2.SubnetType.PUBLIC },
  dockerSetupCommands: ['echo hello world'],
});

kichik avatar Nov 24 '25 22:11 kichik