Skip to content

Commit

Permalink
Remove more.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrood-nrel committed Dec 6, 2024
1 parent 994443f commit 9381a46
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jobs:
make install
- name: Configure
run: |
(for DIM in 2 3; do \
(for DIM in 2; do \
printf "\n-------- Configuring ${DIM}D --------\n"; \
cmake -B${{runner.workspace}}/build-${DIM}d-${{matrix.os}}-${{matrix.build_type}} \
-DCMAKE_INSTALL_PREFIX:PATH=${{runner.workspace}}/install-${DIM}d-${{matrix.os}}-${{matrix.build_type}} \
Expand All @@ -307,7 +307,7 @@ jobs:
- name: Build
run: |
ccache -z
(for DIM in 2 3; do \
(for DIM in 2; do \
printf "\n-------- Building ${DIM}D --------\n"; \
cmake --build ${{runner.workspace}}/build-${DIM}d-${{matrix.os}}-${{matrix.build_type}} \
--parallel ${{env.NPROCS}} 2>&1 | tee -a ${{runner.workspace}}/build-output.txt; \
Expand All @@ -329,7 +329,7 @@ jobs:
exit ${return}
- name: Test
run: |
(for DIM in 2 3; do \
(for DIM in 2; do \
printf "\n-------- Testing ${DIM}D --------\n"; \
cd ${{runner.workspace}}/build-${DIM}d-${{matrix.os}}-${{matrix.build_type}}; \
ctest ${{matrix.ctest_args}} -VV --output-on-failure; \
Expand Down

0 comments on commit 9381a46

Please sign in to comment.