Skip to content

Commit d8e56f5

Browse files
kevin-219designpestophagous
authored andcommitted
provision script bug fixes
- provision.sh is missing the g++-7 package install which causes build_app.sh to fail - provision_win.sh doesn't specify an aqt version(we should consider locking it down) and the current version depreciated install in favor of install-qt which has a different param order. As a result the script fails
1 parent a288f74 commit d8e56f5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tools/ci/provision.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ sudo apt-get --assume-yes install \
4848
gdb \
4949
git \
5050
gnupg \
51+
g++-7 \
5152
libc-bin \
5253
libdbus-1-3 \
5354
libfontconfig1 \

tools/ci/provision_win.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pip3 install aqtinstall # https://github.com/miurahr/aqtinstall
1414
# Refer to: https://github.com/miurahr/aqtinstall#usage
1515

1616
# https://github.com/miurahr/aqtinstall/issues/126 "Installing smaller subset of the libraries"
17-
python -m aqt install --outputdir $DL_FOLDER/Qt_desktop 5.15.0 windows desktop win64_msvc2019_64 --archives \
17+
python -m aqt install-qt windows desktop 5.15.0 win64_msvc2019_64 --outputdir $DL_FOLDER/Qt_desktop --archives \
1818
icu \
1919
qtbase \
2020
qtconnectivity \

0 commit comments

Comments
 (0)