Skip to content

Commit

Permalink
ci: build.type -> build_type in CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
tvandera committed Feb 28, 2025
1 parent 27ca7bd commit 4ca267e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
build.type:
build_type:
- Debug
- Release
- RelNoOpenMP
Expand Down Expand Up @@ -53,15 +53,15 @@ jobs:
- name: Run CMake
run: |-
cmake -S . -B build.${{ matrix.build.type }} -DCMAKE_BUILD_TYPE=${{ matrix.build.type }} -DENABLE_PYTHON=OFF
cmake -S . -B build.${{ matrix.build_type }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DENABLE_PYTHON=OFF
- name: Build
run: |-
cmake --build build.${{ matrix.build.type }}
cmake --build build.${{ matrix.build_type }}
- name: Install
run: |-
sudo cmake --install build.${{ matrix.build.type }}
sudo cmake --install build.${{ matrix.build_type }}
- name: Run tests
run: |-
Expand Down

0 comments on commit 4ca267e

Please sign in to comment.