Skip to content

Commit

Permalink
fix the arches once and fo rall
Browse files Browse the repository at this point in the history
Signed-off-by: swurl <swurl@swurl.xyz>
  • Loading branch information
crueter committed Sep 1, 2024
1 parent a2833c4 commit 8d0ef2f
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ jobs:
shell: bash
run: |
echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
echo ${{ matrix.qt_arch }}
- name: Install MSVC (Windows)
if: runner.os == 'Windows'
Expand All @@ -72,14 +71,23 @@ jobs:
- name: Install CMake
uses: lukka/get-cmake@v3.28.1

- name: Install Qt ${{ matrix.qt_version }}
- name: Install Qt ${{ matrix.qt_version }} (Windows)
if: runner.os == 'Windows'
uses: jurplel/install-qt-action@v3.3.0
with:
cache: on
version: ${{ matrix.qt_version }}
aqtversion: ==3.1.*
arch: ${{ matrix.qt_arch }}

- name: Install Qt ${{ matrix.qt_version }} (Linux)
if: runner.os == 'Linux'
uses: jurplel/install-qt-action@v3.3.0
with:
cache: on
version: ${{ matrix.qt_version }}
aqtversion: ==3.1.*

- name: Install Qt (WASM)
if: matrix.qt_arch == 'wasm_multithread'
uses: jurplel/install-qt-action@v3.3.0
Expand Down

0 comments on commit 8d0ef2f

Please sign in to comment.