File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 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' }}
You can’t perform that action at this time.
0 commit comments