Skip to content

Commit

Permalink
CI.yml: YAML is sensitive to whitespace...
Browse files Browse the repository at this point in the history
  • Loading branch information
kvrigor committed Oct 9, 2024
1 parent 1b7a558 commit 7efb515
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,19 +110,19 @@ jobs:
- name: Configure TSMP2
run: >-
cmake -S . -B $BUILD_DIR
-DCMAKE_BUILD_TYPE="RELEASE"
-DCMAKE_INSTALL_PREFIX=$INSTALL_DIR
-DOASIS_SRC=${OASIS_SRC}
-DeCLM="ON"
-DeCLM_SRC=${eCLM_SRC}
-DParFlow="ON"
-DPARFLOW_SRC=${PARFLOW_SRC}
cmake -S . -B ${BUILD_DIR}
-DCMAKE_BUILD_TYPE="RELEASE"
-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}
-DOASIS_SRC=${OASIS_SRC}
-DeCLM="ON"
-DeCLM_SRC=${eCLM_SRC}
-DParFlow="ON"
-DPARFLOW_SRC=${PARFLOW_SRC}
- name: Build TSMP2
run: |
cmake --build $BUILD_DIR
cmake --build ${BUILD_DIR}
- name: Install TSMP2
run: |
cmake --install $BUILD_DIR
cmake --install ${BUILD_DIR}

0 comments on commit 7efb515

Please sign in to comment.