Skip to content

Commit

Permalink
Flip condition for safer default.
Browse files Browse the repository at this point in the history
  • Loading branch information
ashovlin committed Apr 26, 2024
1 parent 6fd2a16 commit c10ee39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildtools/smoketests.proj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<RootPath Condition="'$(RootPath)'==''">$(MSBuildProjectDirectory)</RootPath>

<!-- We need to skip recipes that use Docker when running on Windows CodeBuild -->
<ShouldRunDockerTests>true</ShouldRunDockerTests>
<ShouldRunDockerTests Condition="'$(OS)' == 'Windows_NT' AND '$(CODEBUILD_BUILD_ID)' != ''">false</ShouldRunDockerTests>
<ShouldRunDockerTests>false</ShouldRunDockerTests>
<ShouldRunDockerTests Condition="'$(OS)' != 'Windows_NT' OR '$(CODEBUILD_BUILD_ID)' == ''">true</ShouldRunDockerTests>

<!-- Generate a suffix for CloudFormation stack names, in case multiple smoke tests are running at once -->
<SafeOperatingSystem>$(OS)</SafeOperatingSystem>
Expand Down

0 comments on commit c10ee39

Please sign in to comment.