File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ rm -rf "$OUTPUT_DIR"
1515# Run twister with the specified test cases and output directory
1616" $TWISTER_EXE " -O " $OUTPUT_DIR " -T " $TEST_CASES_DIR "
1717
18- # twister output directory cleanup
18+ # twister output directory cleanup files we do not archive
19+ find $OUTPUT_DIR -name ' CMakeFiles' -exec rm -rf {} \;
1920find $OUTPUT_DIR -name ' modules' -exec rm -rf {} \;
2021find $OUTPUT_DIR -name ' app' -exec rm -rf \
2122 ' {}/../zephyr/arch
Original file line number Diff line number Diff line change @@ -17,7 +17,8 @@ rm -rf "$OUTPUT_DIR"
1717# Run twister with the specified test cases and output directory
1818" $TWISTER_EXE " -O " $OUTPUT_DIR " -p " $TWISTER_PLATFORM " -T " $TEST_CASES_DIR "
1919
20- # twister output directory cleanup
20+ # twister output directory cleanup files we do not archive
21+ find $OUTPUT_DIR -name ' CMakeFiles' -exec rm -rf {} \;
2122find $OUTPUT_DIR -name ' modules' -exec rm -rf {} \;
2223find $OUTPUT_DIR -name ' app' -exec rm -rf \
2324 ' {}/../zephyr/arch
You can’t perform that action at this time.
0 commit comments