Skip to content

Commit a7d6bf9

Browse files
committed
Fixed bug in ci-cleanup-script.sh for MCM directories
.ci-pipelines/ci-cleanup-script.sh - Now use "mcm" as the second argument to clean_ci_test_folder for the MCM C-I tests. Signed-off-by: Bob Yantosca <[email protected]>
1 parent c715ceb commit a7d6bf9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.ci-pipelines/ci-cleanup-script.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ cwd=$(pwd -P)
1717
for this_test in ${GENERAL_TESTS}; do
1818
clean_ci_test_folder "${this_test}" "${this_test}" "${cwd}"
1919
done
20-
clean_ci_test_folder "${MCM_1}" "${MCM_1}" "${cwd}"
21-
clean_ci_test_folder "${MCM_2}" "mcm" "${cwd}"
20+
clean_ci_test_folder "${MCM_1}" mcm "${cwd}"
21+
clean_ci_test_folder "${MCM_2}" mcm "${cwd}"
2222

2323
# Remove any log files used to store C-I test results
2424
cd $cwd

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222
## Fixed
2323
- Moved the `which kpp` instruction to the end of the "Build the KPP executable" section in the installation guide on ReadTheDocs
2424
- Updated rules to ignore files in `.gitignore` and updated comments accordingly
25+
- Fixed a bug that prevented `.ci-pipelines/ci-cleanup-script.sh` from removing KPP-generated files for MCM mechanisms
2526

2627
### Removed
2728
- Removed C-I tests on Microsoft Azure Dev Pipelines

0 commit comments

Comments
 (0)