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

Add Release build MAPL Tests #3337

Open
wants to merge 7 commits into
base: develop
Choose a base branch
from
Open
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
14 changes: 9 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@ workflows:
jobs:
# Builds MAPL in a "default" way
- ci/build:
name: build-and-test-MAPL-on-<< matrix.compiler >>-using-<< matrix.cmake_generator >>
name: build-and-test-MAPL-as-<< matrix.build_type >>-on-<< matrix.compiler >>-using-<< matrix.cmake_generator >>
context:
- docker-hub-creds
matrix:
parameters:
compiler: [gfortran, ifort, ifx]
cmake_generator: ['Unix Makefiles','Ninja']
build_type: ['Debug', 'Release']
baselibs_version: *baselibs_version
repo: MAPL
mepodevelop: false
Expand All @@ -44,12 +45,13 @@ workflows:

# Builds MAPL like UFS does (no FLAP and pFlogger, static)
- ci/build:
name: build-UFS-MAPL-on-<< matrix.compiler >>
name: build-UFS-MAPL-as-<< matrix.build_type >>-on-<< matrix.compiler >>
context:
- docker-hub-creds
matrix:
parameters:
compiler: [gfortran, ifort, ifx]
build_type: ['Debug', 'Release']
baselibs_version: *baselibs_version
repo: MAPL
mepodevelop: false
Expand All @@ -62,12 +64,13 @@ workflows:

# Builds MAPL without pFUnit support
- ci/build:
name: build-MAPL-without-pFUnit-on-<< matrix.compiler >>
name: build-MAPL-without-pFUnit-as-<< matrix.build_type>>-on-<< matrix.compiler >>
context:
- docker-hub-creds
matrix:
parameters:
compiler: [ifort, ifx]
build_type: ['Debug', 'Release']
baselibs_version: *baselibs_version
repo: MAPL
mepodevelop: false
Expand All @@ -77,12 +80,13 @@ workflows:

# Run MAPL Tutorials
- ci/run_mapl_tutorial:
name: run-<< matrix.tutorial_name >>-Tutorial-with-<< matrix.compiler >>
name: run-<< matrix.tutorial_name >>-Tutorial-with-<< matrix.compiler >>-built-with-<< matrix.build_type >>
context:
- docker-hub-creds
matrix:
parameters:
compiler: [gfortran, ifort, ifx]
build_type: ['Debug', 'Release']
tutorial_name:
- hello_world
- parent_no_children
Expand All @@ -92,7 +96,7 @@ workflows:
# We will only run the tutorials with GNU make. No need to double up
# as Ninja is a build test only
requires:
- build-and-test-MAPL-on-<< matrix.compiler >>-using-Unix Makefiles
- build-and-test-MAPL-as-<< matrix.build_type >>-on-<< matrix.compiler >>-using-Unix Makefiles
baselibs_version: *baselibs_version

build-and-run-GEOSgcm:
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Added `Release` build CI tests for MAPL

### Changed

- Add column for ACG (ALIAS) that set the pointer variable to a different name than the `short_name`
Expand Down