Revision e82c2fd178df7d2f0532ec6f90463a24c4e8d272 authored by Piotr Tabor on 04 October 2021, 06:40:11 UTC, committed by GitHub on 04 October 2021, 06:40:11 UTC
[release-3.3] Dockerfile: bump debian bullseye-20210927
2 parent s 984d71c + 24801f5
Raw File
build
#!/usr/bin/env bash

if ! [[ "$0" =~ "functional/build" ]]; then
  echo "must be run from repository root"
  exit 255
fi

CGO_ENABLED=0 go build -v -installsuffix cgo -ldflags "-s" -o ./bin/etcd-agent ./functional/cmd/etcd-agent
CGO_ENABLED=0 go build -v -installsuffix cgo -ldflags "-s" -o ./bin/etcd-proxy ./functional/cmd/etcd-proxy
CGO_ENABLED=0 go build -v -installsuffix cgo -ldflags "-s" -o ./bin/etcd-runner ./functional/cmd/etcd-runner
CGO_ENABLED=0 go build -v -installsuffix cgo -ldflags "-s" -o ./bin/etcd-tester ./functional/cmd/etcd-tester
back to top