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}}