Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: How to create new release branch CI files #1247

Merged
Merged
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ endif
submit-coverage:
curl -Os https://uploader.codecov.io/latest/$(OS_String)/codecov
chmod +x codecov
./codecov -C $(shell git rev-parse HEAD) -r openshift/oadp-operator
./codecov -C $(shell git rev-parse HEAD) -r openshift/oadp-operator --nonZero
rm -f codecov

# go-install-tool will 'go install' any package $2 and install it to $1.
Expand Down
10 changes: 4 additions & 6 deletions build/ci-Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
# Build the manager binary
# This Dockerfile is used by PROW CI to run E2E tests of the repo
FROM quay.io/konveyor/builder AS builder

WORKDIR /go/src/github.com/openshift/oadp-operator

COPY ./ .

RUN go install -mod=mod github.com/onsi/ginkgo/v2/ginkgo
RUN go mod download
RUN chmod -R 777 ./
RUN chmod -R 777 $(go env GOPATH)
RUN mkdir -p $(go env GOCACHE) && chmod -R 777 $(go env GOCACHE)
RUN go mod download && \
mkdir -p $(go env GOCACHE) && \
chmod -R 777 ./ $(go env GOCACHE) $(go env GOPATH)
Loading