Skip to content

Commit

Permalink
doc: How to create new release branch CI files (#1247)
Browse files Browse the repository at this point in the history
* doc: How to create new release branch CI files

Signed-off-by: Mateus Oliveira <[email protected]>

* fixup! doc: How to create new release branch CI files

Signed-off-by: Mateus Oliveira <[email protected]>

* fixup! doc: How to create new release branch CI files

Signed-off-by: Mateus Oliveira <[email protected]>

* fixup! doc: How to create new release branch CI files

Signed-off-by: Mateus Oliveira <[email protected]>

* fixup! doc: How to create new release branch CI files

Signed-off-by: Mateus Oliveira <[email protected]>

* fixup! doc: How to create new release branch CI files

Signed-off-by: Mateus Oliveira <[email protected]>

* fixup! doc: How to create new release branch CI files

Signed-off-by: Mateus Oliveira <[email protected]>

---------

Signed-off-by: Mateus Oliveira <[email protected]>
  • Loading branch information
mateusoliveira43 authored Oct 11, 2024
1 parent 1a17d7c commit fb2411e
Show file tree
Hide file tree
Showing 4 changed files with 327 additions and 35 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,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

0 comments on commit fb2411e

Please sign in to comment.