github ci give up on Qt

This commit is contained in:
gitlost 2022-07-26 03:45:10 +01:00
parent 8c66735281
commit 68ed293942

View File

@ -24,12 +24,6 @@ jobs:
- name: Install libpng-dev - name: Install libpng-dev
run: sudo apt-get install libpng-dev run: sudo apt-get install libpng-dev
- name: Install Qt
uses: jurplel/install-qt-action@v3
- name: Install mesa and xcb (for Qt)
run: sudo apt install mesa-common-dev libglu1-mesa-dev libxcb-image0 libxcb-keysyms1 libxcb-render-util0 libxcb-xkb1 libxkbcommon-x11-0 libxcb-xinerama0
- name: Create Build Environment - name: Create Build Environment
# Some projects don't allow in-source building, so create a separate build directory # Some projects don't allow in-source building, so create a separate build directory
# We'll use this as our working directory for all subsequent commands # We'll use this as our working directory for all subsequent commands
@ -40,7 +34,7 @@ jobs:
# Use a bash shell so we can use the same syntax for environment variable # Use a bash shell so we can use the same syntax for environment variable
# access regardless of the host operating system # access regardless of the host operating system
shell: bash shell: bash
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DZINT_TEST=ON run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DZINT_TEST=ON -DZINT_USE_QT=OFF
- name: Build - name: Build
working-directory: ${{runner.workspace}}/build working-directory: ${{runner.workspace}}/build