Skip to content

Commit

Permalink
Component Governance fix round 3 (microsoft#20689)
Browse files Browse the repository at this point in the history
### Description
<!-- Describe your changes. -->



### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->
  • Loading branch information
jchen351 authored May 20, 2024
1 parent 11df22b commit ddafbf2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ jobs:

workspace:
clean: all
variables:
- name: skipComponentGovernanceDetection
value: ${{ in('${{parameters.OnnxruntimeNodejsBindingArch}}', 'arm64', 'aarch64') }}
timeoutInMinutes: 210
pool: ${{parameters.PoolName}}
steps:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,13 @@ steps:
inputs:
# ignore unit tests in emscripten. emscripten unit tests are not used in onnxruntime build
# ignore onnx third_party directory. onnx third_party directory is not responsible for onnxruntime build
# because sometime there are multiple repo is checked out in the same pipeline, we also need to add the repo name, such as onnxruntime/ to the ignoreDirectories
# ignore onnxruntime-extensions directory. onnxruntime-extensions directory is not responsible for onnxruntime build
# ignore react_native e2e node_modules directory. react_native e2e node_modules directory is generated by react_native e2e tests
# ignore github directory. github directory is used for github actions, not for onnxruntime package
ignoreDirectories:
'$(Build.SourcesDirectory)/cmake/external/emsdk/upstream/emscripten/tests,
$(Build.SourcesDirectory)/cmake/external/onnx/third_party,
$(Build.SourcesDirectory)/js/react_native/e2e/node_modules,
$(Build.SourcesDirectory)/tools/ci_build/github'
'$(Build.Repository.LocalPath)/cmake/external/emsdk/upstream/emscripten/tests,
$(Build.Repository.LocalPath)/cmake/external/onnx/third_party,
$(Build.Repository.LocalPath)/cmake/external/onnxruntime-extensions,
$(Build.Repository.LocalPath)/js/react_native/e2e/node_modules,
$(Build.Repository.LocalPath)/tools/ci_build/github'

0 comments on commit ddafbf2

Please sign in to comment.