Skip to content

Commit

Permalink
Fix coping e2e binary for integration tests as part of builder image
Browse files Browse the repository at this point in the history
As part of 6bec29f , we copied e2e.test
binary as integration test binary which on the CI causing issues.
  • Loading branch information
praveenkumar committed Oct 20, 2023
1 parent 5863186 commit 30748b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions images/openshift-ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 30748b7

Please sign in to comment.