Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix configuration error in GEOS-Chem Classic continuous integration tests on Azure #77

Merged
merged 1 commit into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading