From 9fbec61534bcce45721be33d97341330eec2e04f Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Fri, 20 Oct 2023 12:53:05 +0530 Subject: [PATCH] Fix coping e2e binary for integration tests as part of builder image As part of 6bec29f5d0d3dc24004395c3e77950a5ac2ff178 , we copied e2e.test binary as integration test binary which on the CI causing issues. --- images/openshift-ci/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/openshift-ci/Dockerfile b/images/openshift-ci/Dockerfile index 3dbcf02661..77f5dfc5ea 100644 --- a/images/openshift-ci/Dockerfile +++ b/images/openshift-ci/Dockerfile @@ -10,10 +10,10 @@ FROM registry.access.redhat.com/ubi9/ubi COPY --from=builder /go/src/github.com/crc-org/crc /opt/crc COPY --from=builder /go/src/github.com/crc-org/crc/out/linux-amd64/crc /bin/crc COPY --from=builder /go/src/github.com/crc-org/crc/out/linux-amd64/e2e.test /bin/e2e.test -COPY --from=builder /go/src/github.com/crc-org/crc/out/linux-amd64/e2e.test /bin/integration.test +COPY --from=builder /go/src/github.com/crc-org/crc/out/linux-amd64/integration.test /bin/integration.test COPY --from=builder /go/src/github.com/crc-org/crc/out/windows-amd64/crc.exe /opt/crc.exe COPY --from=builder /go/src/github.com/crc-org/crc/out/windows-amd64/e2e.test.exe /opt/e2e.test.exe -COPY --from=builder /go/src/github.com/crc-org/crc/out/windows-amd64/e2e.test.exe /opt/integration.test.exe +COPY --from=builder /go/src/github.com/crc-org/crc/out/windows-amd64/integration.test.exe /opt/integration.test.exe COPY --from=builder /go/src/github.com/crc-org/crc/images/openshift-ci/mock-nss.sh /bin/mock-nss.sh COPY --from=builder /go/src/github.com/crc-org/crc/images/openshift-ci/google-cloud-sdk.repo /etc/yum.repos.d/google-cloud-sdk.repo COPY --from=builder /go/src/github.com/crc-org/crc/images/openshift-ci/azure-cli.repo /etc/yum.repos.d/azure-cli.repo