Travis build fix

This commit is contained in:
pokamest 2022-08-19 18:47:39 +03:00
parent 144e6f59c8
commit ba16fdb548

View file

@ -146,12 +146,13 @@ jobs:
install: install:
- | - |
if [ ! -f $HOME/Qt/$QT_VERSION/gcc_64/bin/qmake ]; then \ if [ ! -f $HOME/Qt/$QT_VERSION/gcc_64/bin/qmake ]; then \
sudo apt install -yy p7zip python3 && \ sudo apt-get update && \
sudo apt install -yy p7zip python3 python3-pip && \
python3 -m pip install --upgrade pip && \ python3 -m pip install --upgrade pip && \
pip install -U aqtinstall requests py7zr && \ pip install -U aqtinstall requests py7zr && \
pip show aqtinstall && \ pip show aqtinstall && \
aqt install-qt linux desktop $QT_VERSION clang_64 -m all -O $HOME/Qt && \ python3 -m aqt install-qt linux desktop $QT_VERSION clang_64 -m all -O $HOME/Qt && \
aqt install-tool linux desktop tools_ifw -O $HOME/Qt ; \ python3 -m aqt install-tool linux desktop tools_ifw -O $HOME/Qt ; \
fi fi
script: script:
@ -199,14 +200,15 @@ jobs:
install: install:
- | - |
if [ ! -f $HOME/Qt/$QT_VERSION/android/bin/qmake ]; then \ if [ ! -f $HOME/Qt/$QT_VERSION/android/bin/qmake ]; then \
sudo apt install -yy p7zip python3 && \ sudo apt-get update && \
sudo apt install -yy p7zip python3 python3-pip && \
python3 -m pip install --upgrade pip && \ python3 -m pip install --upgrade pip && \
pip install -U aqtinstall requests py7zr && \ pip install -U aqtinstall requests py7zr && \
pip show aqtinstall && \ pip show aqtinstall && \
aqt install-qt linux android $QT_VERSION android_armv7 -m all -O $HOME/Qt && \ python3 -m aqt install-qt linux android $QT_VERSION android_armv7 -m all -O $HOME/Qt && \
aqt install-qt linux android $QT_VERSION android_arm64_v8a -m all -O $HOME/Qt && \ python3 -m aqt install-qt linux android $QT_VERSION android_arm64_v8a -m all -O $HOME/Qt && \
aqt install-qt linux android $QT_VERSION android_x86_64 -m all -O $HOME/Qt && \ python3 -m aqt install-qt linux android $QT_VERSION android_x86_64 -m all -O $HOME/Qt && \
aqt install-qt linux android $QT_VERSION android_x86 -m all -O $HOME/Qt ; \ python3 -m aqt install-qt linux android $QT_VERSION android_x86 -m all -O $HOME/Qt ; \
fi fi
- | - |
export TERM=dumb && export TERM=dumb &&