mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
bb0b4db228
During e.g. cross-compiling, it is sometimes useful to be able to have another binary than the default one as the compiler. This patch for the build scripts lets "go" be the default value for the variable GO, and the latter is then used as the go compiler. Change-Id: I0adf7a661b26593d9b0ea902a61b631b80e76ae7 Signed-off-by: Joakim Roubert <joakimr@axis.com>
23 lines
474 B
Bash
Executable File
23 lines
474 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd $(dirname $0)/..
|
|
|
|
. ./scripts/setup-rancher-path.sh
|
|
|
|
GO=${GO-go}
|
|
|
|
# Prime sudo
|
|
sudo echo Compiling
|
|
|
|
if [ ! -e bin/containerd ]; then
|
|
./scripts/build
|
|
./scripts/package
|
|
else
|
|
rm -f ./bin/k3s-agent
|
|
"${GO}" build -tags "apparmor seccomp" -o ./bin/k3s-agent ./cmd/agent/main.go
|
|
fi
|
|
|
|
echo Starting agent
|
|
sudo env "PATH=$(pwd)/bin:$PATH" ./bin/k3s-agent --debug agent -s https://localhost:6443 -t $(<${RANCHER_PATH}/k3s/server/node-token) "$@"
|