@@ -168,17 +168,20 @@ func TestBuildSSH(t *testing.T) {
168
168
c .RunDockerCmd (t , "image" , "inspect" , "build-test-ssh" )
169
169
})
170
170
171
- t .Run ("build failed with wrong ssh key id from CLI" , func (t * testing.T ) {
172
- c .RunDockerOrExitError (t , "rmi" , "build-test-ssh" )
173
-
174
- res := c .RunDockerComposeCmdNoCheck (t , "-f" , "fixtures/build-test/ssh/compose-without-ssh.yaml" ,
175
- "--project-directory" , "fixtures/build-test/ssh" , "build" , "--no-cache" , "--ssh" ,
176
- "wrong-ssh=./fixtures/build-test/ssh/fake_rsa" )
177
- res .Assert (t , icmd.Expected {
178
- ExitCode : 17 ,
179
- Err : "unset ssh forward key fake-ssh" ,
171
+ /*
172
+ FIXME disabled waiting for https://github.com/moby/buildkit/issues/5558
173
+ t.Run("build failed with wrong ssh key id from CLI", func(t *testing.T) {
174
+ c.RunDockerOrExitError(t, "rmi", "build-test-ssh")
175
+
176
+ res := c.RunDockerComposeCmdNoCheck(t, "-f", "fixtures/build-test/ssh/compose-without-ssh.yaml",
177
+ "--project-directory", "fixtures/build-test/ssh", "build", "--no-cache", "--ssh",
178
+ "wrong-ssh=./fixtures/build-test/ssh/fake_rsa")
179
+ res.Assert(t, icmd.Expected{
180
+ ExitCode: 17,
181
+ Err: "unset ssh forward key fake-ssh",
182
+ })
180
183
})
181
- })
184
+ */
182
185
183
186
t .Run ("build succeed as part of up with ssh from Compose file" , func (t * testing.T ) {
184
187
c .RunDockerOrExitError (t , "rmi" , "build-test-ssh" )
0 commit comments