From 874f52041eb9e8d047743a9d2b5fc13df509f87c Mon Sep 17 00:00:00 2001 From: Darkheim Date: Thu, 24 Jul 2025 19:08:10 -0500 Subject: [PATCH] Delete workflow --- .github/workflows/build.yml | 31 --------------------- .github/workflows/cmake-single-platform.yml | 28 ------------------- 2 files changed, 59 deletions(-) delete mode 100644 .github/workflows/build.yml delete mode 100644 .github/workflows/cmake-single-platform.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index c1efa96..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: Build Qt Calculator - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - - name: Install Qt - run: | - sudo apt-get update - sudo apt-get install -y qtbase5-dev qt5-qmake cmake - - - name: Configure CMake - run: cmake -B ${{github.workspace}}/build - - - name: Build - run: cmake --build ${{github.workspace}}/build - - - name: Test - working-directory: ${{github.workspace}}/build - run: | - echo "Running built application to verify it works" - # Add tests if you implement them later diff --git a/.github/workflows/cmake-single-platform.yml b/.github/workflows/cmake-single-platform.yml deleted file mode 100644 index bab6fab..0000000 --- a/.github/workflows/cmake-single-platform.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: CMake Build - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -env: - BUILD_TYPE: Release - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Install Qt5 - run: | - sudo apt-get update - sudo apt-get install -y qt5-default qtbase5-dev qtbase5-dev-tools - - - name: Configure CMake - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - - - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}