Skip to content

Commit e7fceae

Browse files
Remove debug build on linux to try to fix diskspace issue on runner
Signed-off-by: guillaume-haerinck <guillaume.haerinck@outlook.com>
1 parent 6c2d46f commit e7fceae

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

package-system/Qt/build-linux.sh

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,8 @@ cd ${BUILD_PATH}
6969
_OPTS="-prefix ${TARGET_INSTALL_ROOT} \
7070
-submodules ${QTARRAY} \
7171
-platform linux-clang \
72-
-debug-and-release \
72+
-release \
7373
-c++std c++20 \
74-
-force-debug-info \
7574
-opensource \
7675
-confirm-license "
7776

@@ -89,16 +88,9 @@ then
8988
exit 1
9089
fi
9190

92-
cmake --install . --config Debug
91+
cmake --install . --config Release
9392
if [ $? -ne 0 ]
9493
then
95-
echo "Failed to install QT Debug."
96-
exit 1
97-
fi
98-
99-
cmake --install . --config RelWithDebInfo
100-
if [ $? -ne 0 ]
101-
then
102-
echo "Failed to install QT RelWithDebInfo."
94+
echo "Failed to install QT Release."
10395
exit 1
10496
fi

0 commit comments

Comments
 (0)