-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjustfile
405 lines (364 loc) · 14.7 KB
/
justfile
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
# SPDX-License-Identifier: Apache-2.0
# Copyright Open Network Fabric Authors
set unstable := true
set shell := [x"${SHELL:-bash}", "-euo", "pipefail", "-c"]
set script-interpreter := [x"${SHELL:-bash}", "-euo", "pipefail"]
set dotenv-load := true
set dotenv-required := true
set dotenv-path := "."
set dotenv-filename := "./scripts/rust.env"
# enable to debug just recipes
debug_justfile := "false"
[private]
dpdk_sys_commit := shell("source ./scripts/dpdk-sys.env && echo $DPDK_SYS_COMMIT")
[private]
_just_debuggable_ := if debug_justfile == "true" { "set -x" } else { "" }
# the tripple to compile for
target := "x86_64-unknown-linux-gnu"
# cargo build profile to use
profile := "debug"
[private]
_container_repo := "ghcr.io/githedgehog/dataplane"
# the rust channel to use (choose stable, beta, or nightly)
rust := "beta"
[private]
_dpdk_sys_container_repo := "ghcr.io/githedgehog/dpdk-sys"
[private]
_dpdk_sys_container_tag := dpdk_sys_commit + ".rust-" + rust
[private]
_doc_env_container := _dpdk_sys_container_repo + "/doc-env:" + _dpdk_sys_container_tag
[private]
_compile_env_container := _dpdk_sys_container_repo + "/compile-env:" + _dpdk_sys_container_tag
[private]
_network := "host"
[private]
_docker_sock_cmd := replace_regex(_just_debuggable_, ".+", "$0;") + '''
declare -r DOCKER_HOST="${DOCKER_HOST:-unix:///var/run/docker.sock}"
declare -r without_unix="${DOCKER_HOST##unix://}"
if [ -S "${without_unix}" ]; then
printf -- '%s' "${without_unix}"
elif [ -S /var/run/docker.sock ]; then
printf -- '%s' "/var/run/docker.sock"
fi
'''
export DOCKER_HOST := x"${DOCKER_HOST:-unix:///var/run/docker.sock}"
export DOCKER_SOCK := shell(_docker_sock_cmd)
# The git commit hash of the last commit to HEAD
# We allow this command to fail in the sterile environment because git is not available there
[private]
_commit := `git rev-parse HEAD 2>/dev/null || echo "sterile"`
# The git branch we are currnetly on
# We allow this command to fail in the sterile environment because git is not available there
[private]
_branch := `(git rev-parse --abbrev-ref HEAD 2>/dev/null || echo "sterile") | tr -c '[:alnum:]\n' '-'`
# The git tree state (clean or dirty)
# We allow this command to fail in the sterile environment because git is not available there
[private]
_clean := ```
set -euo pipefail
(
git diff-index --quiet HEAD -- 2>/dev/null && \
test -z "$(git ls-files --exclude-standard --others)" && \
echo clean \
) || echo dirty
```
# The slug is the branch name (sanitized) with a marker if the tree is dirty
[private]
_slug := (if _clean == "clean" { "" } else { "dirty-_-" }) + _branch
# Define a function to truncate long lines to the limit for containers tags
[private]
_define_truncate128 := 'truncate128() { printf -- "%s" "${1::128}" ; }'
# The time of the build (in iso8601 utc)
[private]
_build_time := datetime_utc("%+")
# List out the available commands
[private]
@default:
just --list --justfile {{ justfile() }}
# Run cargo with RUSTFLAGS computed based on profile.
[script]
cargo *args:
# Ideally this would be done via Cargo.toml and .cargo/config.toml,
# unfortunately passing RUSTFLAGS based on profile (rather than target or cfg)
# is currently unstable (nightly builds only).
{{ _just_debuggable_ }}
declare -a args=({{ args }})
PROFILE="{{ profile }}"
declare -a extra_args=()
for arg in "${args[@]}"; do
case "$arg" in
--debug|--profile=debug)
[ -z "${RUSTFLAGS:-}" ] && declare -rx RUSTFLAGS="${RUSTFLAGS_DEBUG}"
;;
--release|--profile=release|--profile=bench)
[ -z "${RUSTFLAGS:-}" ] && declare -rx RUSTFLAGS="${RUSTFLAGS_RELEASE}"
extra_args+=("$arg")
;;
--profile=fuzz)
[ -z "${RUSTFLAGS:-}" ] && declare -rx RUSTFLAGS="${RUSTFLAGS_FUZZ}"
extra_args+=("$arg")
;;
*)
extra_args+=("$arg")
;;
esac
done
[ -z "${RUSTFLAGS:-}" ] && declare -rx RUSTFLAGS="${RUSTFLAGS_DEBUG}"
cargo "${extra_args[@]}"
# Run the (very minimal) compile environment
[script]
compile-env *args:
{{ _just_debuggable_ }}
mkdir -p dev-env-template/etc
if [ -z "${UID:-}" ]; then
>&2 echo "ERROR: environment variable UID not set"
fi
declare -rxi UID
GID="$(id -g)"
declare -rxi GID
declare -rx USER="${USER:-runner}"
envsubst < dev-env-template/etc.template/group.template > dev-env-template/etc/group
envsubst < dev-env-template/etc.template/passwd.template > dev-env-template/etc/passwd
mkdir -p "$(pwd)/sterile"
declare tmp_link
tmp_link="$(mktemp -p "$(pwd)/sterile" -d --suffix=.compile-env.link)"
declare -r tmp_link
cleanup() {
rm -fr "${tmp_link}"
}
trap cleanup EXIT
declare CARGO_TARGET_DIR
CARGO_TARGET_DIR="$(pwd)/target"
declare -r CARGO_TARGET_DIR
rm -fr "${CARGO_TARGET_DIR}"
mkdir -p "${CARGO_TARGET_DIR}"
ln -s /bin "${tmp_link}/bin"
ln -s /lib "${tmp_link}/lib"
ln -s /sysroot "${tmp_link}/sysroot"
ln -s /nix "${tmp_link}/nix"
sudo -E docker run \
--rm \
--name dataplane-compile-env \
--network="{{ _network }}" \
--env DOCKER_HOST \
--env CARGO_TARGET_DIR \
--tmpfs "/tmp:uid=$(id -u),gid=$(id -g),nodev,noexec,nosuid" \
--mount "type=tmpfs,destination=/home/${USER:-runner},tmpfs-mode=1777" \
--mount "type=bind,source=$(pwd),destination=$(pwd),bind-propagation=rprivate" \
--mount "type=bind,source=${tmp_link},destination=$(pwd)/compile-env,bind-propagation=rprivate" \
--mount "type=bind,source=$(pwd)/dev-env-template/etc/passwd,destination=/etc/passwd,readonly" \
--mount "type=bind,source=$(pwd)/dev-env-template/etc/group,destination=/etc/group,readonly" \
--mount "type=bind,source=${CARGO_TARGET_DIR},destination=${CARGO_TARGET_DIR},bind-propagation=rprivate" \
--mount "type=bind,source={{ DOCKER_SOCK }},destination=/var/run/docker.sock" \
--user "$(id -u):$(id -g)" \
--workdir "$(pwd)" \
"{{ _compile_env_container }}" \
{{ args }}
# Pull the latest versions of the containers
[script]
pull:
{{ _just_debuggable_ }}
sudo -E docker pull "{{ _compile_env_container }}"
# Allocate 2M hugepages (if needed)
[private]
[script]
allocate-2M-hugepages hugepages_2m="1024":
{{ _just_debuggable_ }}
pages=$(< /sys/devices/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages)
if [ "$pages" -gt {{ hugepages_2m }} ]; then
>&2 echo "INFO: ${pages} 2M hugepages already allocated"
exit 0
fi
printf -- "%s" {{ hugepages_2m }} | sudo tee /sys/devices/system/node/node0/hugepages/hugepages-2048kB/nr_hugepages >/dev/null
# Allocate 1G hugepages (if needed)
[private]
[script]
allocate-1G-hugepages hugepages_1g="8":
{{ _just_debuggable_ }}
pages=$(< /sys/devices/system/node/node0/hugepages/hugepages-1048576kB/nr_hugepages)
if [ "$pages" -gt {{ hugepages_1g }} ]; then
>&2 echo "INFO: ${pages} 1G hugepages already allocated"
exit 0
fi
printf -- "%s" {{ hugepages_1g }} | sudo tee /sys/devices/system/node/node0/hugepages/hugepages-1048576kB/nr_hugepages >/dev/null
# umount hugepage mounts created by dataplane
[private]
[script]
umount-hugepages:
{{ _just_debuggable_ }}
declare hugemnt2M
hugemnt2M="/run/user/$(id -u)/hedgehog/dataplane/hugepages/2M"
declare -r hugemnt2M
declare hugemnt1G
hugemnt1G="/run/user/$(id -u)/hedgehog/dataplane/hugepages/1G"
declare -r hugemnt1G
if [ "$(findmnt -rno FSTYPE "${hugemnt2M}")" = "hugetlbfs" ]; then
sudo umount --lazy "${hugemnt2M}"
fi
if [ "$(findmnt -rno FSTYPE "${hugemnt1G}")" = "hugetlbfs" ]; then
sudo umount --lazy "${hugemnt1G}"
fi
sync
# mount hugetlbfs
[private]
[script]
mount-hugepages:
{{ _just_debuggable_ }}
declare hugemnt2M
hugemnt2M="/run/user/$(id -u)/hedgehog/dataplane/hugepages/2M"
declare -r hugemnt2M
declare hugemnt1G
hugemnt1G="/run/user/$(id -u)/hedgehog/dataplane/hugepages/1G"
declare -r hugemnt1G
[ ! -d "$hugemnt2M" ] && mkdir --parent "$hugemnt2M"
[ ! -d "$hugemnt1G" ] && mkdir --parent "$hugemnt1G"
if [ ! "$(findmnt -rno FSTYPE "${hugemnt2M}")" = "hugetlbfs" ]; then
sudo mount -t hugetlbfs -o pagesize=2M,noatime hugetlbfs "$hugemnt2M"
fi
if [ ! "$(findmnt -rno FSTYPE "${hugemnt1G}")" = "hugetlbfs" ]; then
sudo mount -t hugetlbfs -o pagesize=1G,noatime hugetlbfs "$hugemnt1G"
fi
sync
# Set up the environment for testing locally
setup-test-env: allocate-2M-hugepages allocate-1G-hugepages mount-hugepages
# Tear down environment for testing locally
teardown-test-env: umount-hugepages
# Dump the compile-env container into a sysroot for use by the build.
[script]
create-compile-env:
{{ _just_debuggable_ }}
mkdir compile-env
sudo -E docker create --name dpdk-sys-compile-env-{{ _slug }} "{{ _compile_env_container }}" - fake
sudo -E docker export dpdk-sys-compile-env-{{ _slug }} \
| tar --no-same-owner --no-same-permissions -xf - -C compile-env
sudo -E docker rm dpdk-sys-compile-env-{{ _slug }}
# remove the compile-env directory
[confirm("Remove old compile environment? (yes/no)\n(you can recreate it with `just create-compile-env`)")]
[script]
remove-compile-env:
{{ _just_debuggable_ }}
if [ -d compile-env ]; then sudo rm -rf compile-env; fi
# refresh the compile-env (clear and restore)
[script]
refresh-compile-env: pull remove-compile-env create-compile-env
# Install "fake-nix" (required for local builds to function)
[confirm("Fake a nix install (yes/no)")]
[script]
fake-nix refake="":
{{ _just_debuggable_ }}
if [ -h /nix ]; then
if [ "$(readlink -e /nix)" = "$(readlink -e "$(pwd)/compile-env/nix")" ]; then
>&2 echo "Nix already faked!"
exit 0
else
if [ "{{ refake }}" = "refake" ]; then
sudo rm /nix
else
>&2 echo "Nix already faked elsewhere!"
>&2 echo "Run \`just fake-nix refake\` to re-fake to this location"
exit 1
fi
fi
elif [ -d /nix ]; then
>&2 echo "Nix already installed, can't fake it!"
exit 1
fi
if [ ! -d ./compile-env/nix ]; then
just refresh-compile-env
fi
if [ ! -d ./compile-env/nix ]; then
>&2 echo "Failed to create nix environment"
exit 1
fi
sudo ln -rs ./compile-env/nix /nix
# Run a "sterile" command
sterile *args: (compile-env "just" ("debug_justfile=" + debug_justfile) ("rust=" + rust) ("target=" + target) ("profile=" + profile) args)
# Build containers in a sterile environment
[script]
build-container: (sterile "_network=none" "cargo" "--locked" "build" ("--profile=" + profile) ("--target=" + target) "--package=dataplane")
{{ _just_debuggable_ }}
{{ _define_truncate128 }}
mkdir -p "artifact/{{ target }}/{{ profile }}"
cp -r "${CARGO_TARGET_DIR:-target}/{{ target }}/{{ profile }}/dataplane" "artifact/{{ target }}/{{ profile }}/dataplane"
declare build_date
build_date="$(date --utc --iso-8601=date --date="{{ _build_time }}")"
declare -r build_date
declare build_time_epoch
build_time_epoch="$(date --utc '+%s' --date="{{ _build_time }}")"
declare -r build_time_epoch
sudo -E docker build \
--label "git.commit={{ _commit }}" \
--label "git.branch={{ _branch }}" \
--label "git.tree-state={{ _clean }}" \
--label "version.rust={{ rust }}" \
--label "build.date=${build_date}" \
--label "build.timestamp={{ _build_time }}" \
--label "build.time_epoch=${build_time_epoch}" \
--tag "{{ _container_repo }}:$(truncate128 "${build_date}.{{ _slug }}.{{ target }}.{{ profile }}.{{ _commit }}")" \
--build-arg ARTIFACT="artifact/{{ target }}/{{ profile }}/dataplane" \
.
sudo -E docker tag \
"{{ _container_repo }}:$(truncate128 "${build_date}.{{ _slug }}.{{ target }}.{{ profile }}.{{ _commit }}")" \
"{{ _container_repo }}:$(truncate128 "{{ _slug }}.{{ target }}.{{ profile }}.{{ _commit }}")"
sudo -E docker tag \
"{{ _container_repo }}:$(truncate128 "${build_date}.{{ _slug }}.{{ target }}.{{ profile }}.{{ _commit }}")" \
"{{ _container_repo }}:$(truncate128 "{{ _slug }}.{{ target }}.{{ profile }}")"
if [ "{{ target }}" = "x86_64-unknown-linux-gnu" ]; then
sudo -E docker tag \
"{{ _container_repo }}:$(truncate128 "${build_date}.{{ _slug }}.{{ target }}.{{ profile }}.{{ _commit }}")" \
"{{ _container_repo }}:$(truncate128 "{{ _slug }}.{{ profile }}")"
fi
if [ "{{ target }}" = "x86_64-unknown-linux-gnu" ] && [ "{{ profile }}" = "release" ]; then
sudo -E docker tag \
"{{ _container_repo }}:$(truncate128 "${build_date}.{{ _slug }}.{{ target }}.{{ profile }}.{{ _commit }}")" \
"{{ _container_repo }}:$(truncate128 "{{ _slug }}")"
fi
# Build and push containers
[script]
push-container: build-container
{{ _define_truncate128 }}
declare build_date
build_date="$(date --utc --iso-8601=date --date="{{ _build_time }}")"
declare -r build_date
sudo -E docker push "{{ _container_repo }}:$(truncate128 "${build_date}.{{ _slug }}.{{ target }}.{{ profile }}.{{ _commit }}")"
sudo -E docker push "{{ _container_repo }}:$(truncate128 "{{ _slug }}.{{ target }}.{{ profile }}.{{ _commit }}")"
if [ "{{ target }}" = "x86_64-unknown-linux-gnu" ]; then
sudo -E docker push "{{ _container_repo }}:$(truncate128 "{{ _slug }}.{{ profile }}")"
fi
if [ "{{ target }}" = "x86_64-unknown-linux-gnu" ] && [ "{{ profile }}" = "release" ]; then
sudo -E docker push "{{ _container_repo }}:$(truncate128 "{{ _slug }}")"
fi
# run commands in a minimal mdbook container
[script]
mdbook *args="build":
{{ _just_debuggable_ }}
mkdir -p /tmp/doc-env
cd ./design-docs/src/mdbook
docker pull {{ _doc_env_container }}
docker run \
--rm \
--init \
--volume "$(pwd):$(pwd)" \
--env HOME=/tmp \
--user "$(id -u):$(id -g)" \
--mount type=bind,source=/tmp/doc-env,target=/tmp \
--workdir "$(pwd)" \
--network=host \
--name design-docs \
--entrypoint /bin/mdbook \
{{ _doc_env_container }} \
{{ args }}
# Build for each separate commit (for "pull_request") or for the HEAD of the branch (other events).
[script]
build-sweep start="main":
{{ _just_debuggable_ }}
set -euo pipefail
if [ {{ _clean }} != "clean" ]; then
>&2 echo "can not build-sweep with dirty branch (would risk data loss)"
exit 1
fi
# Get all commits since {{ start }}, in chronological order
while read -r commit; do
git -c advice.detachedHead=false checkout "${commit}" || exit 1
{ just debug_justfile={{ debug_justfile }} cargo +{{ rust }} build --locked --profile=dev --target=x86_64-unknown-linux-gnu; } || exit 1
done < <(git rev-list --reverse "{{ start }}".."$(git rev-parse HEAD)")