Skip to content

Commit 6380cd4

Browse files
committed
allow using qemu for arm64 or riscv64 alone
1 parent 00d339e commit 6380cd4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ansible/roles/repository/templates/Jenkinsfile.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -913,7 +913,7 @@ pipeline {
913913
}
914914
stage('Build ARM64') {
915915
agent {
916-
{% if use_qemu is defined %}
916+
{% if use_qemu is defined or use_qemu_arm64 is defined %}
917917
label 'X86-64-MULTI'
918918
{% else %}
919919
label 'ARM64'
@@ -987,7 +987,7 @@ pipeline {
987987
{% if build_riscv64 %}
988988
stage('Build RISCV64') {
989989
agent {
990-
{% if use_qemu is defined %}
990+
{% if use_qemu is defined or use_qemu_riscv64 is defined %}
991991
label 'X86-64-MULTI'
992992
{% else %}
993993
label 'RISCV64'

0 commit comments

Comments
 (0)