From 3f9eaef0f9c09a40d23c7346ee32f5089647604e Mon Sep 17 00:00:00 2001 From: Ben Broderick Phillips Date: Wed, 20 Jan 2021 11:56:13 -0500 Subject: [PATCH] Ensure bypass conditional template gets run for 1es ubuntu image --- eng/common/pipelines/templates/steps/bypass-local-dns.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/eng/common/pipelines/templates/steps/bypass-local-dns.yml b/eng/common/pipelines/templates/steps/bypass-local-dns.yml index 91b5c497830..c0608dbf64d 100644 --- a/eng/common/pipelines/templates/steps/bypass-local-dns.yml +++ b/eng/common/pipelines/templates/steps/bypass-local-dns.yml @@ -6,6 +6,9 @@ steps: condition: | and( succeededOrFailed(), - eq(variables['OSVmImage'], 'ubuntu-18.04'), + or( + eq(variables['OSVmImage'], 'ubuntu-18.04'), + eq(variables['OSVmImage'], 'MMSUbuntu18.04') + ), eq(variables['Container'], '') )