Skip to content

Commit 4205774

Browse files
D3SOXansgarbecker
authored andcommitted
fix(ci): get libqt6pas on ubuntu via 3rd party repo
1 parent 6377e11 commit 4205774

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/lazarus.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,13 @@ jobs:
5757
if: ${{ matrix.operating-system == 'ubuntu-latest' }}
5858
run: |
5959
sudo apt update
60-
sudo apt install -y libqt5pas-dev libqt6pas-dev
60+
sudo apt install -y libqt5pas-dev wget qt6-base-dev
61+
LIBQT6PAS_VERSION="6.2.10"
62+
wget -q "https://github.com/davidbannon/libqt6pas/releases/download/v${LIBQT6PAS_VERSION}/libqt6pas6_${LIBQT6PAS_VERSION}-1_amd64.deb" -O /tmp/libqt6pas6.deb
63+
sudo dpkg -i /tmp/libqt6pas6.deb || sudo apt-get install -f -y
64+
wget -q "https://github.com/davidbannon/libqt6pas/releases/download/v${LIBQT6PAS_VERSION}/libqt6pas6-dev_${LIBQT6PAS_VERSION}-1_amd64.deb" -O /tmp/libqt6pas6-dev.deb
65+
sudo dpkg -i /tmp/libqt6pas6-dev.deb || sudo apt-get install -f -y
66+
rm -f /tmp/libqt6pas6.deb /tmp/libqt6pas6-dev.deb
6167
6268
- name: Build HeidiSQL (Ubuntu QT5)
6369
if: ${{ matrix.operating-system == 'ubuntu-latest' }}

0 commit comments

Comments
 (0)