Skip to content

Commit fc4f542

Browse files
authoredJan 17, 2025··
Merge pull request #1206 from adambkaplan/build-cross-default
fix: Verify Builds Cross-Compiled Binaries
2 parents 0e4fe06 + 658e409 commit fc4f542

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,16 @@ all build:
3030
build-container:
3131
${CONTAINER_ENGINE} build -t localhost/source-to-image/s2i:${VERSION} .
3232

33+
# Build cross-compiled binaries.
34+
build-cross:
35+
hack/build-cross.sh
36+
.PHONY: build-cross
37+
3338
# Verify if code is properly organized.
3439
#
3540
# Example:
3641
# make verify
37-
verify: build
42+
verify: build-cross
3843
hack/verify-gofmt.sh
3944
hack/verify-deps.sh
4045
hack/verify-bash-completion.sh

0 commit comments

Comments
 (0)
Please sign in to comment.