We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3929bc6 commit cf09bf2Copy full SHA for cf09bf2
.github/workflows/build.yml
@@ -506,6 +506,7 @@ jobs:
506
- name: Remove known unnecessary files
507
if: steps.cache-build-result.outputs.cache-hit != 'true' && env.TARGET_LIBRARY == 'onnxruntime'
508
run: |
509
+ find ./build -maxdepth 1 -name Packages -print -exec rm -r {} +
510
find ./build/Release -maxdepth 1 '(' -name _deps -o -name testdata ')' -print -exec rm -r {} +
511
find ./build/Release -maxdepth 1 '(' -name '*.a' -o -name '*.lib' -not -name onnxruntime.lib ')' -print -delete
512
find ./build/Release/CMakeFiles -mindepth 1 -maxdepth 1 -not -name Export -print -exec rm -r {} +
0 commit comments