From 53c8572cf6148068c8ee2720de4fad8faaf49c7d Mon Sep 17 00:00:00 2001 From: Kevin Yue Date: Thu, 19 Aug 2021 18:42:26 +0800 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3fbfaba..ab76ee4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,8 +9,7 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - build_with_qt5: - name: Build with Qt 5.12 + build: runs-on: ubuntu-latest steps: @@ -29,23 +28,3 @@ jobs: run: | qmake CONFIG+=release make - build_with_qt6: - name: Build with Qt 6.x - runs-on: ubuntu-latest - - steps: - - name: Install Qt - uses: jurplel/install-qt-action@v2 - with: - version: '6.0.0' - modules: 'qtwebengine qtwebsockets' - - # Checkout repository and submodules - - uses: actions/checkout@v2 - with: - submodules: recursive - - - name: Build - run: | - qmake CONFIG+=release - make