We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 138e000 commit dae0853Copy full SHA for dae0853
.github/actions/ngen-build/action.yaml
@@ -52,6 +52,10 @@ inputs:
52
required: false
53
description: 'Enable mpi support, only available for Linux runners'
54
default: 'OFF'
55
+ build_extern:
56
+ required: false
57
+ description: 'Use external dependencies where possible'
58
+ default: 'OFF'
59
outputs:
60
build-dir:
61
description: "Directory build was performed in"
@@ -198,6 +202,7 @@ runs:
198
202
which cmake
199
203
cmake --version
200
204
cmake -B ${{ inputs.build-dir }} \
205
+ -DNGEN_WITH_EXTERN_ALL:BOOL=${{ inputs.build_extern }} \
201
206
-DNGEN_WITH_BMI_C:BOOL=${{ inputs.bmi_c }} \
207
-DNGEN_WITH_PYTHON:BOOL=${{ inputs.use_python }} \
208
-DNGEN_WITH_UDUNITS:BOOL=${{ inputs.use_udunits }} \
0 commit comments