forked from kubevirt/kubevirt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbazel-build.sh
executable file
·83 lines (70 loc) · 2.6 KB
/
bazel-build.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/bin/bash
#
# This file is part of the KubeVirt project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Copyright 2019 Red Hat, Inc.
#
set -e
source hack/common.sh
source hack/bootstrap.sh
source hack/config.sh
rm -rf ${CMD_OUT_DIR}
mkdir -p ${CMD_OUT_DIR}/virtctl
mkdir -p ${CMD_OUT_DIR}/dump
mkdir -p ${CMD_OUT_DIR}/perfscale-audit
mkdir -p ${CMD_OUT_DIR}/perfscale-load-generator
mkdir -p ${CMD_OUT_DIR}/cluster-profiler
# Build all binaries for amd64
bazel build \
--config=${ARCHITECTURE} \
//tools/csv-generator/... \
//tools/perfscale-audit/... \
//tools/perfscale-load-generator/... \
//tools/cluster-profiler/... \
//cmd/... \
//staging/src/kubevirt.io/client-go/examples/...
# Copy dump binary to a reachable place outside of the build container
bazel run \
--config=${ARCHITECTURE} \
:build-dump -- ${CMD_OUT_DIR}/dump/dump
# Copy perfscale-audit binary to a reachable place outside of the build container
bazel run \
--config=${ARCHITECTURE} \
:build-perfscale-audit -- ${CMD_OUT_DIR}/perfscale-audit/perfscale-audit
# Copy perfscale-load-generator binary to a reachable place outside of the build container
bazel run \
--config=${ARCHITECTURE} \
:build-perfscale-load-generator -- ${CMD_OUT_DIR}/perfscale-load-generator/perfscale-load-generator
# Copy cluster-profiler binary to a reachable place outside of the build container
bazel run \
--config=${ARCHITECTURE} \
:build-cluster-profiler -- ${CMD_OUT_DIR}/cluster-profiler/cluster-profiler
# build platform native virtctl explicitly
bazel run \
--config=${HOST_ARCHITECTURE} \
:build-virtctl -- ${CMD_OUT_DIR}/virtctl/virtctl
# cross-compile virtctl for
# linux
bazel run \
--config=${HOST_ARCHITECTURE} \
:build-virtctl-amd64 -- ${CMD_OUT_DIR}/virtctl/virtctl-${KUBEVIRT_VERSION}-linux-amd64
# darwin
bazel run \
--config=${HOST_ARCHITECTURE} \
:build-virtctl-darwin -- ${CMD_OUT_DIR}/virtctl/virtctl-${KUBEVIRT_VERSION}-darwin-amd64
# windows
bazel run \
--config=${HOST_ARCHITECTURE} \
:build-virtctl-windows -- ${CMD_OUT_DIR}/virtctl/virtctl-${KUBEVIRT_VERSION}-windows-amd64.exe