From bfa996b5fa1ce87d2501abd8371ec5612d288cac Mon Sep 17 00:00:00 2001 From: Yulong Wang Date: Mon, 7 Jun 2021 10:20:07 -0700 Subject: [PATCH] add emsdk to component detection ignore dir (#7932) * add emsdk to component detection ignore dir * only ignore ws 0.8.0 --- .../component-governance-component-detection-steps.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/ci_build/github/azure-pipelines/templates/component-governance-component-detection-steps.yml b/tools/ci_build/github/azure-pipelines/templates/component-governance-component-detection-steps.yml index c2541e3313..d433abdac4 100644 --- a/tools/ci_build/github/azure-pipelines/templates/component-governance-component-detection-steps.yml +++ b/tools/ci_build/github/azure-pipelines/templates/component-governance-component-detection-steps.yml @@ -12,4 +12,6 @@ steps: and(eq('${{parameters.condition}}', 'always'), always())), and(eq('${{parameters.condition}}', 'succeeded'), succeeded())) inputs: - ignoreDirectories: '$(Build.SourcesDirectory)/cmake/external/tvm/3rdparty/dmlc-core/tracker' # ignore dmlc-core tracker for its CI, which is not used in onnxruntime build + # ignore dmlc-core tracker for its CI, which is not used in onnxruntime build + # ignore unit tests in emscripten. emscripten unit tests are not used in onnxruntime build + ignoreDirectories: '$(Build.SourcesDirectory)/cmake/external/tvm/3rdparty/dmlc-core/tracker,$(Build.SourcesDirectory)/cmake/external/emsdk/upstream/emscripten/tests'