Skip to content

Commit 869fd7b

Browse files
authored
Only do the /build/ folder check on OSS, where we don't mixin (microsoft#161381)
1 parent 7041b71 commit 869fd7b

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

build/azure-pipelines/product-compile.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,12 @@ steps:
131131
GITHUB_TOKEN: "$(github-distro-mixin-password)"
132132
displayName: Compile & Hygiene
133133
134-
- script: |
135-
set -e
136-
yarn --cwd build compile
137-
./.github/workflows/check-clean-git-state.sh
138-
displayName: Check /build/ folder
134+
- ${{ if eq(parameters.VSCODE_QUALITY, 'oss') }}:
135+
- script: |
136+
set -e
137+
yarn --cwd build compile
138+
./.github/workflows/check-clean-git-state.sh
139+
displayName: Check /build/ folder
139140
140141
- ${{ if ne(parameters.VSCODE_QUALITY, 'oss') }}:
141142
- script: |

0 commit comments

Comments
 (0)