From 28769f048a6c9507515c2dd2a38eba6672a0ea5e Mon Sep 17 00:00:00 2001 From: Uyanide Date: Thu, 15 Jan 2026 05:30:39 +0100 Subject: [PATCH] chore: remove build workflow --- .github/workflows/build.yml | 32 -------------------------------- src/main_window.cpp | 3 +-- 2 files changed, 1 insertion(+), 34 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index dd29a6f..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Build - -on: - push: - branches: ['master'] - pull_request: - branches: ['master'] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v6 - - - name: Install dependencies - run: | - sudo apt-get update - sudo apt-get install -y build-essential cmake qt6-base-dev - - - name: Configure CMake - run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release - - - name: Build - run: cmake --build build --config Release -- -j$(nproc) - - - name: Upload build artifacts - uses: actions/upload-artifact@v6 - with: - name: wallpaper_chooser-build - path: build/wallpaper_chooser diff --git a/src/main_window.cpp b/src/main_window.cpp index 6448789..5b7db40 100644 --- a/src/main_window.cpp +++ b/src/main_window.cpp @@ -1,7 +1,7 @@ /* * @Author: Uyanide pywang0608@foxmail.com * @Date: 2025-08-05 00:37:58 - * @LastEditTime: 2026-01-15 05:26:49 + * @LastEditTime: 2026-01-15 05:30:06 * @Description: MainWindow implementation. */ #include "main_window.h" @@ -10,7 +10,6 @@ #include #include #include -#include #include #include "./ui_main_window.h"