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
fix: ignore file ownership for copy from context (#29)
Fix for caching when context files permissions change. This is irrelevant for a COPY operation since the they are either copied as root:root, or a specific owner/group depending on COPY --chown= argument.
Relates to coder/terraform-provider-envbuilder#43
Co-authored-by: Cian Johnston <[email protected]>
trap'echo "WARN: Not run as root. Some tests were skipped!" 1>&2' EXIT
28
+
fi
29
+
25
30
echo"Running go tests..."
26
-
go test -cover -coverprofile=out/coverage.out -v -timeout 120s `go list ./... | grep -v integration`| sed ''/PASS/s//$(printf "${GREEN}PASS${RESET}")/''| sed ''/FAIL/s//$(printf "${RED}FAIL${RESET}")/''
31
+
go test -cover -coverprofile=out/coverage.out -v -timeout 120s $(go list ./... | grep -v integration)| sed ''/PASS/s//$(printf "${GREEN}PASS${RESET}")/''| sed ''/FAIL/s//$(printf "${RED}FAIL${RESET}")/''
0 commit comments