File tree 5 files changed +41
-0
lines changed 5 files changed +41
-0
lines changed Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
+ # This script runs `make test` command with some args for benchmark test.
18
+ # The "true" target of this makerule is `hack/make-rules/test.sh`.
19
+ # Args:
20
+ # WHAT: Directory names to test. All *_test.go files under these
21
+ # directories will be run. If not specified, "everything" will be tested.
22
+ # Usage: `hack/benchmark-go.sh`.
23
+ # Example: `hack/benchmark-go.sh WHAT=./pkg/kubelet`.
24
+
17
25
set -o errexit
18
26
set -o nounset
19
27
set -o pipefail
Original file line number Diff line number Diff line change 15
15
# limitations under the License.
16
16
17
17
# This script is a vestigial redirection. Please do not add "real" logic.
18
+ # The "true" target of this makerule is `hack/make-rules/cross.sh`.
19
+
20
+ # This script runs `make cross` command.
21
+ # The command sets up a go workspace locally and builds all for all appropriate
22
+ # platforms.
23
+ # Usage: `hack/build-cross.sh`.
18
24
19
25
set -o errexit
20
26
set -o nounset
Original file line number Diff line number Diff line change 16
16
17
17
# This script is a vestigial redirection. Please do not add "real" logic.
18
18
19
+ # This script runs `make all` command.
20
+ # The command compiles all Makefile configs.
21
+ # Args:
22
+ # WHAT: Directory names to build. If any of these directories has a 'main'
23
+ # package, the build will produce executable files under $(OUT_DIR)/go/bin.
24
+ # If not specified, "everything" will be built.
25
+ # Usage: `hack/build-go.sh`.
26
+ # Example: `hack/build-go.sh WHAT=cmd/kubelet`.
27
+
19
28
set -o errexit
20
29
set -o nounset
21
30
set -o pipefail
Original file line number Diff line number Diff line change 15
15
# limitations under the License.
16
16
17
17
# This script is a vestigial redirection. Please do not add "real" logic.
18
+ # The "true" target of this makerule is `hack/make-rules/test-e2e-node.sh`.
19
+
20
+ # This script runs `make test-e2e-node` command.
21
+ # The command builds and runs node end-to-end tests.
22
+ # Args:
23
+ # FOCUS: Regexp that matches the tests to be run. Defaults to "".
24
+ # SKIP: Regexp that matches the tests that needs to be skipped. Defaults
25
+ # Usage: `hack/e2e-node-test.sh `.
26
+ # Example: `hack/e2e-node-test.sh FOCUS=Kubelet SKIP=container`.
18
27
19
28
set -o errexit
20
29
set -o nounset
Original file line number Diff line number Diff line change 14
14
# See the License for the specific language governing permissions and
15
15
# limitations under the License.
16
16
17
+ # This script runs `curl` command to get the kubernetes build file.
18
+ # Version number or publication is either a proper version number'
19
+ # (e.g. "v1.0.6", "v1.2.0-alpha.1.881+376438b69c7612") or a version'
20
+ # publication of the form <bucket>/<version> (e.g. "release/stable",'
21
+ # "ci/latest-1").'
22
+
23
+ # Usage `hack/get-build.sh [Version]`.
24
+ # Example `hack/get-build.sh v1.16.4`.
25
+
17
26
set -o errexit
18
27
set -o nounset
19
28
set -o pipefail
You can’t perform that action at this time.
0 commit comments