We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 399fc12 commit 6dbe7d6Copy full SHA for 6dbe7d6
deploy/docker/build.sh
@@ -91,10 +91,12 @@ if [ "$arch" == "x86_64" ]; then
91
do_configure "$X86_REGULAR" --enable-simd=avx2 && do_build ../run/john-avx2-omp
92
do_configure "$X86_NO_OPENMP" --enable-simd=avx512bw && do_build ../run/john-avx512bw
93
do_configure "$X86_REGULAR" --enable-simd=avx512bw && do_build ../run/john-avx512bw-omp
94
+ BINARY="john-avx-omp"
95
else
96
# Non X86 CPU (OMP fallback)
97
do_configure "$OTHER_NO_OPENMP" && do_build "../run/john-$arch"
98
do_configure "$OTHER_REGULAR" && do_build ../run/john-omp
99
+ BINARY="john-omp"
100
fi
-do_release "Yes" "Yes" # --system-wide, --support-opencl, --binary-name
101
+do_release "Yes" "Yes" "$BINARY" # --system-wide, --support-opencl, --binary-name
102
do_clean_package
0 commit comments