-
Notifications
You must be signed in to change notification settings - Fork 11
/
tasks.yaml
96 lines (88 loc) · 3.44 KB
/
tasks.yaml
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
84
85
86
87
88
89
90
91
92
93
94
95
96
# Copyright 2024 Defense Unicorns
# SPDX-License-Identifier: AGPL-3.0-or-later OR LicenseRef-Defense-Unicorns-Commercial
includes:
- test: tasks/tests.yaml
- schema: tasks/schema.yaml
- docs: tasks/docs.yaml
- dev: tasks/dev.yaml
- lint: ./tasks/lint.yaml
tasks:
# build tasks
- name: get-versions
description: gets versions of UDS CLI + vendored tools
actions:
- cmd: go list -f '{{.Version}}' -m github.com/derailed/k9s
mute: true
setVariables:
- name: K9S_VERSION
- cmd: go list -f '{{.Version}}' -m github.com/anchore/syft
mute: true
setVariables:
- name: SYFT_VERSION
- cmd: go list -f '{{.Version}}' -m github.com/google/go-containerregistry
mute: true
setVariables:
- name: CRANE_VERSION
- cmd: go list -f '{{.Version}}' -m github.com/mholt/archiver/v3
mute: true
setVariables:
- name: ARCHIVER_VERSION
- cmd: go list -f '{{.Version}}' -m helm.sh/helm/v3
mute: true
setVariables:
- name: HELM_VERSION
- cmd: git describe --tags 2>/dev/null || echo "UnknownVersion"
mute: true
setVariables:
- name: CLI_VERSION
- name: build-args
description: generates the build args for building UDS CLI
actions:
- cmd: |
cat <<EOF
-s -w -X 'github.com/defenseunicorns/uds-cli/src/config.CLIVersion=${CLI_VERSION}' \
-X 'github.com/zarf-dev/zarf/src/config.ActionsCommandZarfPrefix=zarf' \
-X 'github.com/derailed/k9s/cmd.version=${K9S_VERSION}' \
-X 'github.com/google/go-containerregistry/cmd/crane/cmd.Version=${CRANE_VERSION}' \
-X 'github.com/zarf-dev/zarf/src/cmd/tools.syftVersion=${SYFT_VERSION}' \
-X 'github.com/zarf-dev/zarf/src/cmd/tools.archiverVersion=${ARCHIVER_VERSION}' \
-X 'github.com/zarf-dev/zarf/src/cmd/tools.helmVersion=${HELM_VERSION}'
EOF
setVariables:
- name: BUILD_ARGS
- name: build-all
description: build all the CLI binaries and gen checksums
actions:
- task: build-cli-linux-amd
- task: build-cli-linux-arm
- task: build-cli-mac-intel
- task: build-cli-mac-apple
- cmd: sha256sum build/* > build/checksums.txt
- name: build-cli-linux-amd
description: build the CLI for Linux AMD64
actions:
- task: get-versions
- task: build-args
- cmd: ./hack/download-uds-runtime-assets.sh
- cmd: CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags="${BUILD_ARGS}" -o build/uds main.go
- name: build-cli-linux-arm
description: build the CLI for Linux ARM64
actions:
- task: get-versions
- task: build-args
- cmd: ./hack/download-uds-runtime-assets.sh
- cmd: CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build -ldflags="${BUILD_ARGS}" -o build/uds-arm main.go
- name: build-cli-mac-intel
description: build the CLI for Mac Intel
actions:
- task: get-versions
- task: build-args
- cmd: ./hack/download-uds-runtime-assets.sh
- cmd: GOOS=darwin GOARCH=amd64 go build -ldflags="${BUILD_ARGS}" -o build/uds-mac-intel main.go
- name: build-cli-mac-apple
description: build the CLI for Mac Apple
actions:
- task: get-versions
- task: build-args
- cmd: ./hack/download-uds-runtime-assets.sh
- cmd: GOOS=darwin GOARCH=arm64 go build -ldflags="${BUILD_ARGS}" -o build/uds-mac-apple main.go