File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 12
12
.args = [ (.platform | split("/")[0]), (.platform | split("/")[1]) ] |
13
13
.args = [ ("--os " + .args[0] ), ("--arch " + .args[1] ) ] |
14
14
if .osVersion then .args += ["--os-version " + .osVersion] else . end |
15
- { image: .imageReference, annotate: .args }' | \
15
+ { image: .imageReference, annotate: ( .args | join(" ")) }' | \
16
16
jq -rcs)
17
17
echo >&2 "##vso[task.setvariable variable=MANIFEST_JSON;isOutput=true]$MANIFEST_DATA"
18
18
echo "$MANIFEST_DATA" | jq -r .
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ parameters:
33
33
default :
34
34
- " --target $(os) "
35
35
- " --platform $(os)/$(arch) "
36
+ - " --provenance false "
36
37
37
38
- name : common_build_args
38
39
type : object
Original file line number Diff line number Diff line change @@ -112,8 +112,8 @@ jobs:
112
112
pool :
113
113
os : linux
114
114
type : docker
115
- # ${{ if eq(job_data.job, 'linux_arm64') }}:
116
- # hostArchitecture: arm64
115
+ ${{ if eq(job_data.job, 'linux_arm64') }} :
116
+ hostArchitecture : arm64
117
117
# ${{ else }}:
118
118
# LinuxHostVersion: 'AzLinux3.0AMD64'
119
119
variables :
@@ -127,12 +127,10 @@ jobs:
127
127
OS : linux
128
128
${{ elseif eq(job_data.job, 'windows_amd64') }} :
129
129
LinuxContainerImage : ' mcr.microsoft.com/onebranch/azurelinux/build:3.0'
130
- ob_enable_qemu : true
131
130
ARCH : amd64
132
131
OS : windows
133
132
${{ elseif eq(job_data.job, 'linux_arm64') }} :
134
133
LinuxContainerImage : ' mcr.microsoft.com/onebranch/azurelinux/build:3.0'
135
- ob_enable_qemu : true
136
134
ARCH : arm64
137
135
OS : linux
138
136
GOARCH : arm64
You can’t perform that action at this time.
0 commit comments