This repository has been archived by the owner on Feb 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdibs.yaml
193 lines (193 loc) · 8.01 KB
/
dibs.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
targets:
- name: tftpdd-linux
helm:
src: charts/tftpdd
dist: .bin/chart/tftpdd
dockerManifest: pojntfx/tftpdd:latest
platforms:
- identifier: linux/amd64
paths:
watch: .
include: (.*)\.go
assetInImage: /usr/local/bin/tftpdd
assetOut: .bin/binaries/tftpdd/tftpdd-linux-amd64
gitRepoRoot: .
commands:
generateSources: go generate ./...
build: GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -tags netgo -ldflags '-extldflags "-static"' -o .bin/binaries/tftpdd/tftpdd-linux-amd64 cmd/tftpdd/main.go
unitTests: |
if [ "$DIBS_DEBUG" = "true" ]; then
pkill -9 dlv || true
dlv test --headless --listen=:31441 --api-version=2 ./pkg/workers/... || true
else
go test -v ./...
fi
integrationTests: .bin/binaries/tftpdd/tftpdd-linux-amd64 --help
imageTests: docker run --platform linux/amd64 -e DIBS_TARGET=tftpdd-linux -e TARGETPLATFORM=linux/amd64 pojntfx/tftpdd:linux-amd64 /usr/local/bin/tftpdd --help
chartTests: helm install tftpdd .bin/chart/tftpdd/tftpdd-*.tgz && helm delete tftpdd
start: |
if [ "$DIBS_DEBUG" = "true" ]; then
pkill -9 dlv || true
pkill -9 tftpdd || true
.bin/binaries/tftpdd/tftpdd-linux-amd64 &
dlv attach $! --headless --listen=:31441 --api-version=2 --accept-multiclient || true
else
.bin/binaries/tftpdd/tftpdd-linux-amd64
fi
docker:
build:
file: Dockerfile.tftpdd
context: .
tag: pojntfx/tftpdd:linux-amd64
unitTests:
file: Dockerfile.unitTests
context: .
tag: pojntfx/tftpdd-unit-tests:linux-amd64
integrationTests:
file: Dockerfile.integrationTests
context: .
tag: pojntfx/tftpdd-integration-tests:linux-amd64
chartTests:
file: Dockerfile.chartTests
context: .
tag: pojntfx/tftpdd-chart-tests:linux-amd64
- identifier: linux/arm64
paths:
watch: .
include: (.*)\.go
assetInImage: /usr/local/bin/tftpdd
assetOut: .bin/binaries/tftpdd/tftpdd-linux-arm64
gitRepoRoot: .
commands:
generateSources: go generate ./...
build: GOOS=linux GOARCH=arm64 CGO_ENABLED=0 go build -tags netgo -ldflags '-extldflags "-static"' -o .bin/binaries/tftpdd/tftpdd-linux-arm64 cmd/tftpdd/main.go
unitTests: |
if [ "$DIBS_DEBUG" = "true" ]; then
pkill -9 dlv || true
dlv test --headless --listen=:31441 --api-version=2 ./pkg/workers/... || true
else
go test -v ./...
fi
integrationTests: .bin/binaries/tftpdd/tftpdd-linux-arm64 --help
imageTests: docker run --platform linux/arm64 -e DIBS_TARGET=tftpdd-linux -e TARGETPLATFORM=linux/arm64 pojntfx/tftpdd:linux-arm64 /usr/local/bin/tftpdd --help
chartTests: helm install tftpdd .bin/chart/tftpdd/tftpdd-*.tgz && helm delete tftpdd
start: |
if [ "$DIBS_DEBUG" = "true" ]; then
pkill -9 dlv || true
pkill -9 tftpdd || true
.bin/binaries/tftpdd/tftpdd-linux-arm64 &
dlv attach $! --headless --listen=:31441 --api-version=2 --accept-multiclient || true
else
.bin/binaries/tftpdd/tftpdd-linux-arm64
fi
docker:
build:
file: Dockerfile.tftpdd
context: .
tag: pojntfx/tftpdd:linux-arm64
unitTests:
file: Dockerfile.unitTests
context: .
tag: pojntfx/tftpdd-unit-tests:linux-arm64
integrationTests:
file: Dockerfile.integrationTests
context: .
tag: pojntfx/tftpdd-integration-tests:linux-arm64
chartTests:
file: Dockerfile.chartTests
context: .
tag: pojntfx/tftpdd-chart-tests:linux-arm64
- name: tftpdd-darwin
platforms:
- identifier: darwin/amd64
paths:
watch: .
include: (.*)\.go
gitRepoRoot: .
commands:
generateSources: go generate ./...
build: GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -tags netgo -ldflags '-extldflags "-static"' -o .bin/binaries/tftpdd/tftpdd-linux-amd64 cmd/tftpdd/main.go
unitTests: |
if [ "$DIBS_DEBUG" = "true" ]; then
pkill -9 dlv || true
dlv test --headless --listen=:31441 --api-version=2 ./pkg/workers/... || true
else
go test -v ./...
fi
integrationTests: .bin/binaries/tftpdd/tftpdd-darwin-amd64 --help
start: |
if [ "$DIBS_DEBUG" = "true" ]; then
pkill -9 dlv || true
pkill -9 tftpdd || true
.bin/binaries/tftpdd/tftpdd-darwin-amd64 &
dlv attach $! --headless --listen=:31441 --api-version=2 --accept-multiclient || true
else
.bin/binaries/tftpdd/tftpdd-darwin-amd64
fi
- name: tftpdctl-linux
platforms:
- identifier: linux/amd64
paths:
watch: .
include: (.*)\.go
assetInImage: /usr/local/bin/tftpdctl
assetOut: .bin/binaries/tftpdctl/tftpdctl-linux-amd64
gitRepoRoot: .
commands:
generateSources: go generate ./...
build: GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -tags netgo -ldflags '-extldflags "-static"' -o .bin/binaries/tftpdctl/tftpdctl-linux-amd64 cmd/tftpdctl/main.go
unitTests: go test -v ./...
integrationTests: .bin/binaries/tftpdctl/tftpdctl-linux-amd64 --help
start: .bin/binaries/tftpdctl/tftpdctl-linux-amd64 --help
docker:
build:
file: Dockerfile.tftpdctl
context: .
tag: pojntfx/tftpdctl:linux-amd64 # Only to get the binaries from Docker
unitTests:
file: Dockerfile.unitTests
context: .
tag: pojntfx/tftpdctl-unit-tests:linux-amd64
integrationTests:
file: Dockerfile.integrationTests
context: .
tag: pojntfx/tftpdctl-integration-tests:linux-amd64
- identifier: linux/arm64
paths:
watch: .
include: (.*)\.go
assetInImage: /usr/local/bin/tftpdctl
assetOut: .bin/binaries/tftpdctl/tftpdctl-linux-arm64
gitRepoRoot: .
commands:
generateSources: go generate ./...
build: GOOS=linux GOARCH=arm64 CGO_ENABLED=0 go build -tags netgo -ldflags '-extldflags "-static"' -o .bin/binaries/tftpdctl/tftpdctl-linux-arm64 cmd/tftpdctl/main.go
unitTests: go test -v ./...
integrationTests: .bin/binaries/tftpdctl/tftpdctl-linux-arm64 --help
start: .bin/binaries/tftpdctl/tftpdctl-linux-arm64 --help
docker:
build:
file: Dockerfile.tftpdctl
context: .
tag: pojntfx/tftpdctl:linux-arm64 # Only to get the binaries from Docker
unitTests:
file: Dockerfile.unitTests
context: .
tag: pojntfx/tftpdctl-unit-tests:linux-arm64
integrationTests:
file: Dockerfile.integrationTests
context: .
tag: pojntfx/tftpdctl-integration-tests:linux-arm64
- name: tftpdctl-darwin
platforms:
- identifier: darwin/amd64
paths:
watch: .
include: (.*)\.go
gitRepoRoot: .
commands:
generateSources: go generate ./...
build: GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -tags netgo -ldflags '-extldflags "-static"' -o .bin/binaries/tftpdctl/tftpdctl-darwin-amd64 cmd/tftpdctl/main.go
unitTests: go test -v ./...
integrationTests: .bin/binaries/tftpdctl/tftpdctl-darwin-amd64 --help
start: .bin/binaries/tftpdctl/tftpdctl-darwin-amd64 --help