Skip to content

Commit

Permalink
Change: the matrix is configured correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
mjshakir committed May 29, 2024
1 parent bf34119 commit a3273b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu_arm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu_riscv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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

0 comments on commit a3273b0

Please sign in to comment.