mirror of
https://github.com/outbackdingo/matchbox.git
synced 2026-01-27 10:19:35 +00:00
* Verify all examples and docs work correctly * Exclude contrib k8s and systemd which will be updated and verified in a followup commit
8 lines
352 B
Bash
Executable File
8 lines
352 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
LD_FLAGS="-w -X github.com/coreos/coreos-baremetal/matchbox/version.Version=$(./git-version)"
|
|
CGO_ENABLED=0 go build -o bin/matchbox -ldflags "$LD_FLAGS" -a github.com/coreos/coreos-baremetal/cmd/matchbox
|
|
|
|
# bootcmd CLI binary
|
|
CGO_ENABLED=0 go build -o bin/bootcmd -ldflags "$LD_FLAGS" -a github.com/coreos/coreos-baremetal/cmd/bootcmd
|