Skip to content

Commit 0ba2fa5

Browse files
committed
Merge branch 'master' into dev-add-params
2 parents f341fcf + e7998d9 commit 0ba2fa5

File tree

10 files changed

+80
-499
lines changed

10 files changed

+80
-499
lines changed

.github/workflows/CI.yml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,47 @@ jobs:
1313
config:
1414
- {
1515
name: "eCLM-Standalone",
16+
build_type: "RELEASE",
17+
use_oasis: "False",
18+
coup_oas_icon: "False",
19+
coup_oas_pfl: "False",
20+
use_pdaf: "False"
21+
}
22+
- {
23+
name: "eCLM-Standalone_DEBUG",
24+
build_type: "DEBUG",
1625
use_oasis: "False",
1726
coup_oas_icon: "False",
1827
coup_oas_pfl: "False",
1928
use_pdaf: "False"
2029
}
2130
- {
2231
name: "eCLM-ParFlow-ICON",
32+
build_type: "RELEASE",
33+
use_oasis: "True",
34+
coup_oas_icon: "True",
35+
coup_oas_pfl: "True",
36+
use_pdaf: "False"
37+
}
38+
- {
39+
name: "eCLM-ParFlow-ICON_DEBUG",
40+
build_type: "DEBUG",
2341
use_oasis: "True",
2442
coup_oas_icon: "True",
2543
coup_oas_pfl: "True",
2644
use_pdaf: "False"
2745
}
2846
- {
2947
name: "eCLM-PDAF",
48+
build_type: "RELEASE",
49+
use_oasis: "False",
50+
coup_oas_icon: "False",
51+
coup_oas_pfl: "False",
52+
use_pdaf: "True"
53+
}
54+
- {
55+
name: "eCLM-PDAF_DEBUG",
56+
build_type: "DEBUG",
3057
use_oasis: "False",
3158
coup_oas_icon: "False",
3259
coup_oas_pfl: "False",
@@ -77,7 +104,7 @@ jobs:
77104
- name: Configure eCLM
78105
run: |
79106
cmake -S src -B $BUILD_DIR \
80-
-DCMAKE_BUILD_TYPE="RELEASE" \
107+
-DCMAKE_BUILD_TYPE=${{ matrix.config.build_type }} \
81108
-DCMAKE_INSTALL_PREFIX=$INSTALL_DIR \
82109
-DCMAKE_PREFIX_PATH="$HOME/.local" \
83110
-DCMAKE_C_COMPILER=$CC \

0 commit comments

Comments
 (0)