From 9a79f7bf49e1866f4c45bb2051fd3c08aedce3fb Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Thu, 2 Jun 2022 10:28:01 -0700 Subject: [PATCH] Run hygiene separately (#19597) --- build/azure-pipelines/sql-product-compile.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/azure-pipelines/sql-product-compile.yml b/build/azure-pipelines/sql-product-compile.yml index 02ab6ca01f..26c975c7c0 100644 --- a/build/azure-pipelines/sql-product-compile.yml +++ b/build/azure-pipelines/sql-product-compile.yml @@ -77,9 +77,11 @@ steps: node build/azure-pipelines/mixin displayName: Mix in quality +# Run these separately to avoid OOM errors on pipeline machines - script: | set -e - yarn npm-run-all -lp core-ci extensions-ci hygiene eslint valid-layers-check + yarn npm-run-all -lp core-ci extensions-ci + yarn npm-run-all -lp hygiene eslint valid-layers-check displayName: Compile & Hygiene - script: |