Delete workflow

This commit is contained in:
Sigismund Dijkstra 2025-07-24 19:08:10 -05:00
parent 949606b901
commit 874f52041e
2 changed files with 0 additions and 59 deletions

View File

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

View File

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