mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-25 19:48:11 +00:00
Fix critical and High issues from Component Governance (#20611)
### 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. -->
This commit is contained in:
parent
0e11d0c4f8
commit
83a871f890
2 changed files with 4 additions and 2 deletions
|
|
@ -40,7 +40,7 @@ jobs:
|
|||
clean: all
|
||||
variables:
|
||||
- name: skipComponentGovernanceDetection
|
||||
value: ${{eq('${{parameters.OnnxruntimeNodejsBindingArch}}', 'arm64')}}
|
||||
value: ${{ in('${{parameters.OnnxruntimeNodejsBindingArch}}', 'arm64', 'aarch64') }}
|
||||
timeoutInMinutes: 210
|
||||
pool: ${{parameters.PoolName}}
|
||||
steps:
|
||||
|
|
|
|||
|
|
@ -19,4 +19,6 @@ steps:
|
|||
inputs:
|
||||
# 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/emsdk/upstream/emscripten/tests'
|
||||
ignoreDirectories:
|
||||
'$(Build.SourcesDirectory)/cmake/external/emsdk/upstream/emscripten/tests,
|
||||
$(Build.SourcesDirectory)/cmake/external/onnx/third_party'
|
||||
Loading…
Reference in a new issue