From 33954656d644227b067211d0369ce72c2ed85abf Mon Sep 17 00:00:00 2001 From: Alexandru Dima Date: Mon, 22 Jan 2024 16:51:27 +0100 Subject: [PATCH] Exclude the chromium source code from PoliCheck (#55) * Exclude the chromium source code from PoliCheck * Try to workaround build issue * YAML FTW --------- Co-authored-by: Ladislau Szomoru <3372902+lszomoru@users.noreply.github.com> --- PoliCheckExclusions.xml | 11 +++++++++++ pipeline.yml | 4 ++++ 2 files changed, 15 insertions(+) create mode 100644 PoliCheckExclusions.xml diff --git a/PoliCheckExclusions.xml b/PoliCheckExclusions.xml new file mode 100644 index 0000000..76dae39 --- /dev/null +++ b/PoliCheckExclusions.xml @@ -0,0 +1,11 @@ + + + + DEPS + + + + + + + diff --git a/pipeline.yml b/pipeline.yml index c3a3a85..8f45ad1 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -43,6 +43,8 @@ extends: - 16.x testSteps: + # https://github.com/nodejs/node-gyp/issues/2869 + - script: python3 -m pip install setuptools - script: npm ci displayName: Install dependencies @@ -50,3 +52,5 @@ extends: displayName: Test publishPackage: ${{ parameters.publishPackage }} + + policheckExclusionsFile: '$(Build.SourcesDirectory)/PoliCheckExclusions.xml'