From dc666fc76441d3215e10cefce0c34282166a5bf7 Mon Sep 17 00:00:00 2001 From: Bob Yantosca Date: Thu, 5 Dec 2024 11:28:38 -0500 Subject: [PATCH] Bug fix" Now use "submodules: recursive" in Azure config files .ci-pipelines/build-matrix.yml .ci-pipelines/quick-build.yml - Changed "submodules: true" to "submodules: recursive" so that all levels of submodules will be fetched when cloning GEOS-Chem code in the continuous integration tests. CHANGELOG.md - Updated accordingly Signed-off-by: Bob Yantosca --- .ci-pipelines/build-matrix.yml | 2 +- .ci-pipelines/quick-build.yml | 2 +- CHANGELOG.md | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.ci-pipelines/build-matrix.yml b/.ci-pipelines/build-matrix.yml index b4e6104..9015c5e 100644 --- a/.ci-pipelines/build-matrix.yml +++ b/.ci-pipelines/build-matrix.yml @@ -46,7 +46,7 @@ container: $[ variables['containerImage'] ] # Try building GEOS-Chem (this is run for each "matrix" entry above) steps: - checkout: self - submodules: true + submodules: recursive - script: | . /opt/spack/share/spack/setup-env.sh export CC=gcc diff --git a/.ci-pipelines/quick-build.yml b/.ci-pipelines/quick-build.yml index 8adc7c3..cb62f66 100644 --- a/.ci-pipelines/quick-build.yml +++ b/.ci-pipelines/quick-build.yml @@ -31,7 +31,7 @@ container: geoschem/buildmatrix:netcdf-ubuntu # Try building GEOS-Chem steps: - checkout: self - submodules: true + submodules: recursive - script: | . /opt/spack/share/spack/setup-env.sh export CC=gcc diff --git a/CHANGELOG.md b/CHANGELOG.md index d771b4a..d2905aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### Added - Added code to `src/CMakeLists.txt` to build & install the KPP standalone executable when `fullchem` or `custom` mechanisms are selected +### Changed +- Changed `submodules: true` to `submodules: recursive` in `.ci-pipelines/*.yml` files, which will fetch all levels of submodules in Azure CI tests. + ## [14.5.0] - 2024-11-08 ### Changed - Updated GEOS-Chem to 14.5.0