File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change
1
+ workflows
2
+ dockerfiles
3
+ actions
4
+ ISSUE_TEMPLATE
Original file line number Diff line number Diff line change 54
54
55
55
BASE_IMAGE_ID=$( docker images -q " ${BASE_TAG} :latest" )
56
56
57
- docker build --pull --tag " ${BASE_TAG} :latest" \
57
+
58
+ set -x
59
+
60
+ DOCKER_BUILDKIT=1 docker build --pull --tag " ${BASE_TAG} :latest" \
58
61
${BASE_CACHE} \
59
62
--file " .github/dockerfiles/Dockerfile.${BASE_TYPE} " \
60
63
--build-arg MAKEFLAGS=-j$(( $(nproc) + 2 )) \
61
64
--build-arg USER=otptest --build-arg GROUP=uucp \
62
65
--build-arg uid=" $( id -u) " \
63
66
--build-arg BASE=" ${BASE} " .github/
64
67
68
+ set +x
69
+
65
70
NEW_BASE_IMAGE_ID=$( docker images -q " ${BASE_TAG} :latest" )
66
71
if [ " ${BASE_IMAGE_ID} " = " ${NEW_BASE_IMAGE_ID} " ]; then
67
72
echo " BASE_BUILD=cached" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments