-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change: the matrix is configured correctly
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ jobs: | |
run: git submodule update --init --recursive | ||
|
||
- name: Install dependencies | ||
run: sudo apt-get update && ${{ matrix.install }} | ||
run: sudo apt-get update && ${{ matrix.config.install }} | ||
|
||
- name: Setup CMake and Ninja | ||
uses: lukka/[email protected] | ||
|
@@ -58,7 +58,7 @@ jobs: | |
run: mkdir build | ||
|
||
- name: Configure CMake | ||
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmake_opts }} | ||
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release ${{ matrix.config.cmake_opts }} | ||
|
||
- name: Build | ||
run: cmake --build build --config Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,7 @@ jobs: | |
run: git submodule update --init --recursive | ||
|
||
- name: Install dependencies | ||
run: sudo apt-get update && ${{ matrix.install }} | ||
run: sudo apt-get update && ${{ matrix.config.install }} | ||
|
||
- name: Setup CMake and Ninja | ||
uses: lukka/[email protected] | ||
|
@@ -58,7 +58,7 @@ jobs: | |
run: mkdir build | ||
|
||
- name: Configure CMake | ||
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmake_opts }} | ||
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release ${{ matrix.config.cmake_opts }} | ||
|
||
- name: Build | ||
run: cmake --build build --config Release |