From 20804bc30f65add9e4a48b7ea7dc772a8a2dbf48 Mon Sep 17 00:00:00 2001 From: Mikhail Timofeev <48208649+miketimofeev@users.noreply.github.com> Date: Mon, 28 Jun 2021 10:58:28 +0300 Subject: [PATCH] Remove bicep from software docs and tests for ub16 (#3656) --- .../linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 | 4 ++-- images/linux/scripts/tests/Tools.Tests.ps1 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 b/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 index 3589044ee..26b380a76 100644 --- a/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 +++ b/images/linux/scripts/SoftwareReport/SoftwareReport.Generator.ps1 @@ -109,7 +109,6 @@ $toolsList = @( (Get-AzCopyVersion), (Get-BazelVersion), (Get-BazeliskVersion), - (Get-BicepVersion), (Get-CodeQLBundleVersion), (Get-CMakeVersion), (Get-DockerMobyClientVersion), @@ -145,8 +144,9 @@ $toolsList = @( if (-not (Test-IsUbuntu16)) { $toolsList += @( - (Get-PodManVersion), + (Get-BicepVersion), (Get-BuildahVersion), + (Get-PodManVersion), (Get-SkopeoVersion), (Get-YamllintVersion) ) diff --git a/images/linux/scripts/tests/Tools.Tests.ps1 b/images/linux/scripts/tests/Tools.Tests.ps1 index 9ae92516d..dd92811fb 100644 --- a/images/linux/scripts/tests/Tools.Tests.ps1 +++ b/images/linux/scripts/tests/Tools.Tests.ps1 @@ -8,7 +8,7 @@ Describe "azcopy" { } } -Describe "Bicep" { +Describe "Bicep" -Skip:(Test-IsUbuntu16) { It "Bicep" { "bicep --version" | Should -ReturnZeroExitCode }