File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ for docker_image in "${docker_images[@]}"; do
3131 echo " [+] Testing clang in '$docker_image ' container"
3232 " $DOCKER " run \
3333 --rm \
34+ --security-opt seccomp=unconfined \
3435 --volume " $rootdir " :/repo:ro,z \
3536 " $docker_image " \
3637 bash /repo/ci/test-clang-docker.sh
Original file line number Diff line number Diff line change @@ -19,8 +19,7 @@ epoch_cmd = \
1919 $(if $(3 ) ,--build-arg BASE=$(3 ) ) \
2020 --file Dockerfile.$(1 ) \
2121 --tag $(2 ) \
22- . && \
23- bash ../ci/test-clang.sh $(2 )
22+ .
2423
2524epoch1 :
2625 $(call epoch_cmd,$@ ,$(IMAGE ) :stage2-$(HOST_ARCH ) )
@@ -35,3 +34,6 @@ clang: epoch3
3534 $(DOCKER ) rm llvm-project || true
3635 $(DOCKER ) create --name llvm-project $(IMAGE ) :stage3-$(HOST_ARCH )
3736 $(DOCKER ) cp llvm-project:/usr/local/bin/clang-14 clang
37+
38+ test : epoch3
39+ bash ../ci/test-clang.sh $(IMAGE ) :stage3-$(HOST_ARCH )
You can’t perform that action at this time.
0 commit comments