From edb7d822d55993fecb7ad294aef1edaea516b17f Mon Sep 17 00:00:00 2001 From: Igor Mironchik Date: Thu, 4 Nov 2021 15:10:50 +0300 Subject: [PATCH] Delete Qt6 workflow. --- .github/workflows/qt6.yml | 143 -------------------------------------- 1 file changed, 143 deletions(-) delete mode 100644 .github/workflows/qt6.yml diff --git a/.github/workflows/qt6.yml b/.github/workflows/qt6.yml deleted file mode 100644 index 7d9d8b21..00000000 --- a/.github/workflows/qt6.yml +++ /dev/null @@ -1,143 +0,0 @@ -# For most projects, this workflow file will not need changing; you simply need -# to commit it to your repository. -# -# You may wish to alter this file to override the set of languages analyzed, -# or to provide custom queries or build logic. -name: "Qt6" - -on: [workflow_dispatch] - -jobs: - linux: - name: linux - runs-on: ubuntu-latest - - strategy: - fail-fast: true - matrix: - # Override automatic language detection by changing the below list - # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] - language: ['cpp'] - # Learn more... - # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - with: - # We must fetch at least the immediate parents so that if this is - # a pull request then we can checkout the head. - fetch-depth: 2 - - # If this run was triggered by a pull request event, then checkout - # the head of the pull request instead of the merge commit. - - run: git checkout HEAD^2 - if: ${{ github.event_name == 'pull_request' }} - - - run: git submodule update --init --recursive - - - name: Install Qt - uses: jurplel/install-qt-action@v2 - with: - version: '6.2.1' - - - run: sudo apt install cmake lcov - - # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). - # If this step fails, then you should remove it and run the build manually (see below) - #- name: Autobuild - # uses: github/codeql-action/autobuild@v1 - - # ℹī¸ Command-line programs to run using the OS shell. - # 📚 https://git.io/JvXDl - - # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines - # and modify them (or add more) to build your code if your project - # uses a compiled language - - - name: Build and Test - run: | - cmake -DENABLE_COVERAGE=ON -DCMAKE_BUILD_TYPE=Debug . - make - ctest --output-on-failure --verbose - lcov --directory . --capture --output-file coverage.info - lcov --remove coverage.info '/usr/*' --output-file coverage.info - lcov --list coverage.info - - - name: Codecov Upload - uses: codecov/codecov-action@v2 - with: - fail_ci_if_error: true - - windows: - name: windows - runs-on: windows-latest - - strategy: - fail-fast: true - matrix: - language: ['cpp'] - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - with: - # We must fetch at least the immediate parents so that if this is - # a pull request then we can checkout the head. - fetch-depth: 2 - - # If this run was triggered by a pull request event, then checkout - # the head of the pull request instead of the merge commit. - - run: git checkout HEAD^2 - if: ${{ github.event_name == 'pull_request' }} - - - run: git submodule update --init --recursive - - - name: Install Qt - uses: jurplel/install-qt-action@v2 - with: - version: '6.2.1' - - - name: Enable developer command prompt - uses: ilammy/msvc-dev-cmd@v1 - - - name: Build and Test - run: | - cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Relese . - nmake - ctest --output-on-failure --verbose - - macos: - name: macos - runs-on: macos-latest - - strategy: - fail-fast: true - matrix: - language: ['cpp'] - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - with: - # We must fetch at least the immediate parents so that if this is - # a pull request then we can checkout the head. - fetch-depth: 2 - - # If this run was triggered by a pull request event, then checkout - # the head of the pull request instead of the merge commit. - - run: git checkout HEAD^2 - if: ${{ github.event_name == 'pull_request' }} - - - run: git submodule update --init --recursive - - - name: Install Qt - uses: jurplel/install-qt-action@v2 - with: - version: '6.2.1' - - - name: Build and Test - run: | - cmake -DCMAKE_BUILD_TYPE=Relese . - make - ctest --output-on-failure --verbose