Recent runs || View in Spyglass
PR | humblec: introduce control variable for non alpha feature gate configuration |
Result | ABORTED |
Tests | 0 failed / 0 succeeded |
Started | |
Elapsed | 1m56s |
Revision | d9610ec9537b2514620815a61bd92e4c9d2bd44a |
Refs |
196 |
... skipping 93 lines ... export os_arch_seen="" && echo 'linux amd64 amd64; linux ppc64le ppc64le -ppc64le; linux s390x s390x -s390x; linux arm arm -arm; linux arm64 arm64 -arm64; linux arm arm/v7 -armv7; windows amd64 amd64 .exe nanoserver:1809 servercore:ltsc2019; windows amd64 amd64 .exe nanoserver:20H2 servercore:20H2; windows amd64 amd64 .exe nanoserver:ltsc2022 servercore:ltsc2022' | tr ';' '\n' | while read -r os arch buildx_platform suffix base_image addon_image; do \ os_arch_seen_pre=${os_arch_seen%%$os-$arch-$buildx_platform*}; \ if ! [ ${#os_arch_seen_pre} = ${#os_arch_seen} ]; then \ continue; \ fi; \ if ! (set -x; cd ./cmd/hostpathplugin && CGO_ENABLED=0 GOOS="$os" GOARCH="$arch" go build -mod=vendor -a -ldflags ' -X main.version=v1.8.0-12-gb7ccbc5d -extldflags "-static"' -o "/home/prow/go/src/github.com/kubernetes-csi/csi-driver-host-path/bin/hostpathplugin$suffix" .); then \ echo "Building hostpathplugin for GOOS=$os GOARCH=$arch failed, see error(s) above."; \ exit 1; \ fi; \ os_arch_seen+=";$os-$arch-$buildx_platform"; \ done + cd ./cmd/hostpathplugin + CGO_ENABLED=0 ... skipping 19 lines ...