From a605c4929eba5a9706a3129b6e851a2c12e8ff09 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 21 Feb 2026 15:33:11 -0500 Subject: [PATCH] Use aqtinstall directly. --- .gitea/workflows/build.yaml | 28 +++++++++++++++++++++------- 1 file changed, 21 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 8b55f09..1b9b18a 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -18,11 +18,25 @@ jobs: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y - name: Install Python - uses: actions/setup-python@v5 - with: - python-version: '3.12' + run: | + apt install -y \ + python3 \ + python3-pip \ + build-essential \ + cmake \ + curl - - name: Install Qt - uses: jurplel/install-qt-action@v4 - with: - version: '6.7.3' + - name: Install aqtinstall + run: | + python3 -m pip install aqtinstall + aqt install-qt linux desktop 6.7.3 gcc_64 + + # - name: Install Qt + # uses: jurplel/install-qt-action@v4 + # with: + # version: '6.7.3' + + - name: Build clide + run: | + cd clide + cargo b