Skip to content

Commit 3f783a7

Browse files
committed
Justfile: Drop --jobs=4
See the comment for more info. Signed-off-by: Colin Walters <walters@verbum.org>
1 parent e048789 commit 3f783a7

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

Justfile

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,16 @@ variant := env("BOOTC_variant", "ostree")
1717
base := env("BOOTC_base", "quay.io/centos-bootc/centos-bootc:stream10")
1818

1919
testimage_label := "bootc.testimage=1"
20-
base_buildargs := "--jobs 4"
20+
# We used to have --jobs=4 here but sometimes that'd hit this
21+
# ```
22+
# [2/3] STEP 2/2: RUN --mount=type=bind,from=context,target=/run/context <<EORUN (set -xeuo pipefail...)
23+
# --> Using cache b068d42ac7491067cf5fafcaaf2f09d348e32bb752a22c85bbb87f266409554d
24+
# --> b068d42ac749
25+
# + cd /run/context/
26+
# /bin/sh: line 3: cd: /run/context/: Permission denied
27+
# ```
28+
# TODO: Gather more info and file a buildah bug
29+
base_buildargs := ""
2130
buildargs := "--build-arg=base=" + base + " --build-arg=variant=" + variant
2231

2332
# Build the container image from current sources.

0 commit comments

Comments
 (0)