Skip to content

Commit 30ef1ac

Browse files
committed
fixup! Use Signed Binaries for Docker Build
1 parent 46c56e3 commit 30ef1ac

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.pipelines/build/images.jobs.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,14 @@ jobs:
2323
DROPGZ_VERSION: v0.0.12
2424
DEBUG: $[ coalesce(variables['System.Debug'], 'False') ]
2525
ob_outputDirectory: $(Build.ArtifactStagingDirectory)
26-
LinuxContainerImage: 'onebranch.azurecr.io/linux/ubuntu-2204:latest'
2726
${{ if eq(job_data.job, 'linux_amd64') }}:
27+
LinuxContainerImage: 'onebranch.azurecr.io/linux/ubuntu-2204:latest'
2828
OS: linux
2929
ARCH: amd64
3030
GOOS: linux
3131
GOARCH: amd64
3232
${{ elseif eq(job_data.job, 'windows_amd64') }}:
33+
LinuxContainerImage: 'onebranch.azurecr.io/linux/ubuntu-2204:latest'
3334
ob_enable_qemu: true
3435
OS: linux
3536
ARCH: amd64

.pipelines/build/scripts/ipv6-hp-bpf.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ else
4040
if [[ $GOARCH =~ amd64 ]]; then
4141
ARCH=x86_64-linux-gnu
4242
cp /usr/lib/"$ARCH"/ld-linux-x86-64.so.2 "$OUT_DIR"/lib/ || find /usr/lib/ -name 'ld-linux-x86-64.so.2'
43-
elif [[ $GOARCH =~ arm64 ]]; then
44-
ARCH=aarch64-linux-gnu
45-
cp /usr/lib/"$ARCH"/ld-linux-aarch64.so.1 "$OUT_DIR"/lib/ || find /usr/lib/ -name 'ld-linux-aarch64.so.1'
43+
#elif [[ $GOARCH =~ arm64 ]]; then
44+
# ARCH=aarch64-linux-gnu
45+
# cp /usr/lib/"$ARCH"/ld-linux-aarch64.so.1 "$OUT_DIR"/lib/ || find /usr/lib/ -name 'ld-linux-aarch64.so.1'
4646
fi
4747
for dir in /usr/include/"$ARCH"/*; do
4848
if [[ -d $dir ]]; then

0 commit comments

Comments
 (0)