Skip to content

Commit

Permalink
Bug fix" Now use "submodules: recursive" in Azure config files
Browse files Browse the repository at this point in the history
.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 <yantosca@seas.harvard.edu>
  • Loading branch information
yantosca committed Dec 5, 2024
1 parent 3be5820 commit dc666fc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci-pipelines/build-matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .ci-pipelines/quick-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit dc666fc

Please sign in to comment.