1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 06:43:22 +02:00

Use the official Qt builds instead of homebrew in mac builds

This commit is contained in:
Martin Tůma 2023-04-02 15:02:55 +02:00
parent 84a592998d
commit 34f935462f

View File

@ -14,10 +14,11 @@ jobs:
run: echo "PATH=/usr/local/opt/qt@5/bin:$PATH" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
brew update
brew install qt5
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '5.15.8'
modules: qtpositioning qt5compat qtserialport
- name: Create localization
run: lrelease gpxsee.pro
- name: Configure build
@ -40,10 +41,11 @@ jobs:
run: echo "PATH=/usr/local/opt/qt@6/bin:$PATH" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v3
- name: Install dependencies
run: |
brew update
brew install qt6
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
version: '6.4.3'
modules: qtpositioning qt5compat qtserialport
- name: Create localization
run: lrelease gpxsee.pro
- name: Configure build