From 927488b95fc7a3893a63c7e1507d9992a414eba2 Mon Sep 17 00:00:00 2001 From: Alessandro Muntoni Date: Thu, 1 Feb 2024 09:30:54 +0100 Subject: [PATCH] update build action to build also on mac m1 --- .github/actions/0_setup/action.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/actions/0_setup/action.yml b/.github/actions/0_setup/action.yml index 24bcf9db8..5c3466acb 100644 --- a/.github/actions/0_setup/action.yml +++ b/.github/actions/0_setup/action.yml @@ -13,11 +13,18 @@ runs: - name: Setup MSVC uses: ilammy/msvc-dev-cmd@v1 - name: Install Qt + if: ${{ runner.os }} != 'macos-14' uses: jurplel/install-qt-action@v3 with: cache: true version: ${{ inputs.qt-version }} - name: Install dependencies + if: ${{ runner.os }} != 'macos-14' shell: bash run: | - bash scripts/${{ runner.os }}/0_setup_env.sh --dont_install_qt \ No newline at end of file + bash scripts/${{ runner.os }}/0_setup_env.sh --dont_install_qt + - name: Install dependencies + if: ${{ runner.os }} == 'macos-14' + shell: bash + run: | + bash scripts/${{ runner.os }}/0_setup_env.sh \ No newline at end of file