Skip to content

Commit

Permalink
switch to manual qt install;
Browse files Browse the repository at this point in the history
  • Loading branch information
NateSeymour committed Nov 23, 2024
1 parent 66bfb0f commit 620e1fd
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/unlogic-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,16 @@ jobs:
run: sudo apt update
- name: Install System Dependencies
run: sudo apt install -y build-essential cmake ninja-build llvm-18-dev wget
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.8.*
- name: Download QT
run: wget -O qt-installer.run https://d13lb3tujbc8s0.cloudfront.net/onlineinstallers/qt-online-installer-linux-x64-4.8.1.run
- name: Install QT
run: |
sudo chmod +x ./qt-installer.run
sudo ./qt-installer.run \
--accept-licenses \
--accept-obligations \
--default-answer \
--confirm-command install qt6.8.0-full-dev
- uses: actions/checkout@v4
- name: Configure Project
run: mkdir cmake-build-release && cd cmake-build-release && cmake .. -DCMAKE_BUILD_TYPE=Release -G "Ninja"
Expand Down

0 comments on commit 620e1fd

Please sign in to comment.