summary refs log tree commit diff
path: root/third_party/SingleApplication-3.3.2/.github/workflows/build.yml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-11-20 02:38:58 +0100
committerNicolas Werner <nicolas.werner@hotmail.de>2023-11-20 02:56:42 +0100
commit8ea03e41e063314ea712f4b81db80c2a4cd85c2d (patch)
tree8b4b37014345cd4004d525adb942c8675c8b2730 /third_party/SingleApplication-3.3.2/.github/workflows/build.yml
parentAutomatically increase database limits when hit (diff)
downloadnheko-8ea03e41e063314ea712f4b81db80c2a4cd85c2d.tar.xz
Switch to KDSingleApplication
Diffstat (limited to 'third_party/SingleApplication-3.3.2/.github/workflows/build.yml')
-rw-r--r--third_party/SingleApplication-3.3.2/.github/workflows/build.yml87
1 files changed, 0 insertions, 87 deletions
diff --git a/third_party/SingleApplication-3.3.2/.github/workflows/build.yml b/third_party/SingleApplication-3.3.2/.github/workflows/build.yml
deleted file mode 100644
index ffc37f41..00000000
--- a/third_party/SingleApplication-3.3.2/.github/workflows/build.yml
+++ /dev/null
@@ -1,87 +0,0 @@
-name: "CI: Build Test"
-
-on:
-  push:
-    branches-ignore:
-      - "releases/**"
-    paths-ignore:
-      - "**.md"
-
-jobs:
-  build:
-    strategy:
-      matrix:
-        qt_version: [5.12.6, 5.13.2, 5.14.0, 5.15.0, 6.0.0]
-        platform: [ubuntu-20.04, windows-latest, macos-latest]
-        include:
-          - qt_version: 6.0.0
-            additional_arguments: -D QT_DEFAULT_MAJOR_VERSION=6
-          - platform: ubuntu-20.04
-            make: make
-            CXXFLAGS: -Wall -Wextra -pedantic -Werror
-            MAKEFLAGS: -j2
-          - platform: macos-latest
-            make: make
-            CXXFLAGS: -Wall -Wextra -pedantic -Werror
-            MAKEFLAGS: -j3
-          - platform: windows-latest
-            make: nmake
-            CXXFLAGS: /W4 /WX /MP
-
-    runs-on: ${{ matrix.platform }}
-    env:
-      CXXFLAGS: ${{ matrix.CXXFLAGS }}
-      MAKEFLAGS: ${{ matrix.MAKEFLAGS }}
-
-    steps:
-      - name: Clone repo
-        uses: actions/checkout@v2.3.4
-
-      - name: Install Qt
-        uses: jurplel/install-qt-action@v2.14.0
-        with:
-          version: ${{ matrix.qt_version }}
-
-      - name: Build library with CMake
-        run: |
-          cmake . ${{ matrix.additional_arguments }}
-          cmake --build .
-
-      - name: Build basic example with CMake
-        working-directory: examples/basic/
-        run: |
-          cmake . ${{ matrix.additional_arguments }}
-          cmake --build .
-
-      - name: Build calculator example CMake
-        working-directory: examples/calculator/
-        run: |
-          cmake . ${{ matrix.additional_arguments }}
-          cmake --build .
-
-      - name: Build sending_arguments example with CMake
-        working-directory: examples/sending_arguments/
-        run: |
-          cmake . ${{ matrix.additional_arguments }}
-          cmake --build .
-
-      - name: Setup MSVC environment for QMake
-        uses: ilammy/msvc-dev-cmd@v1
-
-      - name: Build basic example with QMake
-        working-directory: examples/basic/
-        run: |
-          qmake
-          ${{ matrix.make }}
-
-      - name: Build calculator example QMake
-        working-directory: examples/calculator/
-        run: |
-          qmake
-          ${{ matrix.make }}
-
-      - name: Build sending_arguments example with QMake
-        working-directory: examples/sending_arguments/
-        run: |
-          qmake
-          ${{ matrix.make }}