File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed
integrations/nuclei_analyzer/hooks Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,6 @@ echo "$DOCKERFILE_PATH"
77echo " current branch"
88echo " $SOURCE_BRANCH "
99
10- version_regex=' ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$'
11- if [[ " $SOURCE_BRANCH " == " master" || " $SOURCE_BRANCH " == " test_arm" || " $SOURCE_BRANCH " =~ $version_regex ]]; then
12- echo " The branch is master, proceeding with multi-arch build"
13- docker buildx create --name multiarch --use
14- docker buildx build -f " $DOCKERFILE_PATH " -t " $IMAGE_NAME " --platform linux/arm64,linux/amd64 --push .
15- else
16- echo " The branch is not master, proceeding with classic build"
17- docker buildx build -f " $DOCKERFILE_PATH " -t " $IMAGE_NAME " --push .
18- fi
10+ # ARM is not supported here
11+ echo " The branch is not master, proceeding with classic build"
12+ docker buildx build -f " $DOCKERFILE_PATH " -t " $IMAGE_NAME " --push .
You can’t perform that action at this time.
0 commit comments