You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
close-issue-message: This issue was closed because it has been stalled for 7 days with no activity.
21
+
days-before-issue-close: "5"
22
+
days-before-issue-stale: "180"
23
+
days-before-pr-close: "-1"
24
+
days-before-pr-stale: "45"
25
+
operations-per-run: "2000"
26
+
stale-issue-message: This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days.
27
+
stale-pr-message: This PR is stale because it has been open 45 days with no activity.
@@ -127,13 +127,13 @@ RUN --mount=type=cache,target=/root/.cache/go-build,id=capi-utils/root/.cache/go
127
127
FROM base AS unit-tests-race
128
128
WORKDIR /src
129
129
ARG TESTPKGS
130
-
RUN --mount=type=cache,target=/root/.cache/go-build,id=capi-utils/root/.cache/go-build --mount=type=cache,target=/go/pkg,id=capi-utils/go/pkg --mount=type=cache,target=/tmp,id=capi-utils/tmp CGO_ENABLED=1 go test -v -race -count 1 ${TESTPKGS}
130
+
RUN --mount=type=cache,target=/root/.cache/go-build,id=capi-utils/root/.cache/go-build --mount=type=cache,target=/go/pkg,id=capi-utils/go/pkg --mount=type=cache,target=/tmp,id=capi-utils/tmp CGO_ENABLED=1 go test -race ${TESTPKGS}
131
131
132
132
# runs unit-tests
133
133
FROM base AS unit-tests-run
134
134
WORKDIR /src
135
135
ARG TESTPKGS
136
-
RUN --mount=type=cache,target=/root/.cache/go-build,id=capi-utils/root/.cache/go-build --mount=type=cache,target=/go/pkg,id=capi-utils/go/pkg --mount=type=cache,target=/tmp,id=capi-utils/tmp go test -v -covermode=atomic -coverprofile=coverage.txt -coverpkg=${TESTPKGS} -count 1 ${TESTPKGS}
136
+
RUN --mount=type=cache,target=/root/.cache/go-build,id=capi-utils/root/.cache/go-build --mount=type=cache,target=/go/pkg,id=capi-utils/go/pkg --mount=type=cache,target=/tmp,id=capi-utils/tmp go test -covermode=atomic -coverprofile=coverage.txt -coverpkg=${TESTPKGS} ${TESTPKGS}
0 commit comments