From 54fe2904c152d0d0e494b349e6dbb2631c0b2060 Mon Sep 17 00:00:00 2001 From: unexploredtest Date: Wed, 24 Dec 2025 19:16:08 +0330 Subject: [PATCH 1/9] Add build ci workflows --- .github/workflows/build-linux.yml | 97 +++++++++++++++++++++++++++++++ .github/workflows/build-mac.yml | 52 +++++++++++++++++ .github/workflows/build-win.yml | 30 ++++++++++ 3 files changed, 179 insertions(+) create mode 100644 .github/workflows/build-linux.yml create mode 100644 .github/workflows/build-mac.yml create mode 100644 .github/workflows/build-win.yml diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml new file mode 100644 index 000000000000..56378ff919de --- /dev/null +++ b/.github/workflows/build-linux.yml @@ -0,0 +1,97 @@ +name: Build Linux Dolphin + +on: [push, workflow_dispatch] + +jobs: + build: + runs-on: ubuntu-24.04 + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + submodules: 'recursive' + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.13 + + - name: Install dependencies + run: | + sudo apt update && sudo apt upgrade + sudo apt install libxi-dev + sudo apt install libegl1-mesa-dev + sudo apt install ffmpeg + sudo apt install libudev-dev + sudo apt install libevdev-dev + sudo apt install build-essential + sudo apt install cmake + sudo apt install git + sudo apt install qt6-base-dev qt6-tools-dev libqt6svg6-dev + sudo apt install libavcodec-dev + sudo apt install libavformat-dev + sudo apt install libcurl4-openssl-dev + sudo apt install libdbus-1-dev + sudo apt install libglew-dev + sudo apt install libgtk-3-dev + sudo apt install libopenal-dev + sudo apt install libreadline-dev + sudo apt install libxrandr-dev + sudo apt install libxi-dev + sudo apt install libxinerama-dev + sudo apt install libx11-dev + sudo apt install libasound2-dev + sudo apt install libpulse-dev + sudo apt install libfreetype6-dev + sudo apt install libfontconfig1-dev + sudo apt install libpng-dev + sudo apt install libjpeg-dev + sudo apt install libz-dev + sudo apt install libxext-dev + sudo apt install libxrender-dev + sudo apt install libglu1-mesa-dev + sudo apt install libgtkglext1-dev + sudo apt install libgtest-dev + sudo apt install libgmp-dev + sudo apt install liblz4-dev + sudo apt install liblzma-dev + sudo apt install libsnappy-dev + sudo apt install libtinyxml2-dev + sudo apt install libxi-dev + sudo apt install libxrandr-dev + sudo apt install libxinerama-dev + sudo apt install libx11-xcb-dev + sudo apt install libxcb-glx0-dev + sudo apt install libxcb1-dev + sudo apt install libxcb-dri3-dev + sudo apt install libxcb-dri2-0-dev + sudo apt install libxcb-xfixes0-dev + sudo apt install libxcb-randr0-dev + sudo apt install libxcb-keysyms1-dev + sudo apt install libxcb-image0-dev + sudo apt install libxcb-shape0-dev + sudo apt install libxcb-xinerama0-dev + sudo apt install libxcb-util-dev + sudo apt install libxcb-icccm4-dev + sudo apt install libxcb-keysyms1-dev + sudo apt install libxcb-xkb-dev + sudo apt install libxkbcommon-dev + sudo apt install libxkbcommon-x11-dev + + - name: Build Dolphin + run: | + # On Ubuntu some include files are missing for Qt6, we copy those manually + # Hacky, but it works anyways + sudo cp -r Externals/Qt/Qt6.5.1/x64/include/QtGui/6.5.1/QtGui/qpa/ /usr/include/ + cmake -Bbuild . -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DUSE_SYSTEM_LIBS=OFF -DCMAKE_BUILD_TYPE=Release + cd build + make -j$(nproc) + cp -r ../Data/Sys/ Binaries/ + tar -czf dolphin_linux.tar.gz Binaries/ + + - name: Upload Build + uses: actions/upload-artifact@v4 + with: + name: DolphinLinux + path: build/dolphin_linux.tar.gz \ No newline at end of file diff --git a/.github/workflows/build-mac.yml b/.github/workflows/build-mac.yml new file mode 100644 index 000000000000..d4f237c56019 --- /dev/null +++ b/.github/workflows/build-mac.yml @@ -0,0 +1,52 @@ +name: Build Mac OS Dolphin + +on: [push, workflow_dispatch] + +jobs: + build: + name: "${{ matrix.runs-on }} • ${{ matrix.arch }}" + defaults: + run: + shell: bash + strategy: + matrix: + include: + - runs-on: macos-latest + arch: arm64 + runs-on: ${{ matrix.runs-on }} + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + submodules: 'recursive' + + - name: Install Qt + run: | + brew update + brew install qt + + - name: Configure Dolphin + run: | + mkdir build + cd build + cmake .. -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DENABLE_AUTOUPDATE=OFF + tar -czf dolphin_mac.tar.gz Binaries/ + + - name: Try Building Dolphin + run: | + cd build + make -j$(sysctl -n hw.logicalcpu) + continue-on-error: true + + - name: Try Building Dolphin Again + run: | + cd build + make -j$(sysctl -n hw.logicalcpu) + tar -czf dolphin_mac.tar.gz Binaries/ + + - name: Upload Build + uses: actions/upload-artifact@v4 + with: + name: DolphinMac-${{ matrix.arch }} + path: build/dolphin_mac.tar.gz \ No newline at end of file diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml new file mode 100644 index 000000000000..89e0f587c9a0 --- /dev/null +++ b/.github/workflows/build-win.yml @@ -0,0 +1,30 @@ +name: Build Win Dolphin + +on: [push, workflow_dispatch] + +jobs: + build: + runs-on: windows-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + with: + submodules: 'recursive' + + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.13 + + - name: Build Dolphin + run: | + cmake -Bbuild . -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DCMAKE_BUILD_TYPE=Release + cmake --build build --config Release -- /m + ls + + - name: Upload Build + uses: actions/upload-artifact@v4 + with: + name: DolphinWin + path: Binary \ No newline at end of file From 55a01dae49a305d38c2bf8a1cb8893fc36328beb Mon Sep 17 00:00:00 2001 From: unexploredtest Date: Wed, 24 Dec 2025 19:17:14 +0330 Subject: [PATCH 2/9] Scripting: Change the method name Gui::DrawText to Gui::DrawText2 --- Source/Core/Core/API/Gui.cpp | 3 ++- Source/Core/Core/API/Gui.h | 2 +- Source/Core/Scripting/Python/Modules/guimodule.cpp | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Source/Core/Core/API/Gui.cpp b/Source/Core/Core/API/Gui.cpp index 08ccfec36e72..c3ac5b67ee82 100644 --- a/Source/Core/Core/API/Gui.cpp +++ b/Source/Core/Core/API/Gui.cpp @@ -94,7 +94,8 @@ void Gui::DrawCircleFilled(const Vec2f center, float radius, u32 color, int num_ GUI_DRAW_DEFERRED(AddCircleFilled(center, radius, ARGBToABGR(color), num_segments)); } -void Gui::DrawText(const Vec2f pos, u32 color, std::string text) +// lol +void Gui::DrawText2(const Vec2f pos, u32 color, std::string text) { GUI_DRAW_DEFERRED(AddText(pos, ARGBToABGR(color), text.c_str())); } diff --git a/Source/Core/Core/API/Gui.h b/Source/Core/Core/API/Gui.h index 0e0fc2ac1b2a..664e8d3c669a 100644 --- a/Source/Core/Core/API/Gui.h +++ b/Source/Core/Core/API/Gui.h @@ -36,7 +36,7 @@ class Gui void DrawTriangleFilled(const Vec2f a, const Vec2f b, const Vec2f c, u32 color); void DrawCircle(const Vec2f center, float radius, u32 color, int num_segments = 12, float thickness = 1.0f); void DrawCircleFilled(const Vec2f center, float radius, u32 color, int num_segments = 12); - void DrawText(const Vec2f pos, u32 color, std::string text); + void DrawText2(const Vec2f pos, u32 color, std::string text); void DrawPolyline(const std::vector points, u32 color, bool closed, float thickness); void DrawConvexPolyFilled(const std::vector points, u32 color); diff --git a/Source/Core/Scripting/Python/Modules/guimodule.cpp b/Source/Core/Scripting/Python/Modules/guimodule.cpp index c04c77bb11b5..190b2b713902 100644 --- a/Source/Core/Scripting/Python/Modules/guimodule.cpp +++ b/Source/Core/Scripting/Python/Modules/guimodule.cpp @@ -101,7 +101,7 @@ static void draw_circle_filled(PyObject* self, float centerX, float centerY, flo static void draw_text(PyObject* self, float posX, float posY, u32 color, const char* text) { GuiModuleState* state = Py::GetState(self); - state->gui->DrawText({posX, posY}, color, std::string(text)); + state->gui->DrawText2({posX, posY}, color, std::string(text)); } static PyObject* draw_polyline(PyObject* self, PyObject* args) From 2a64b3847845ad74d360d7acefe96eba01b0bf4e Mon Sep 17 00:00:00 2001 From: unexploredtest Date: Wed, 24 Dec 2025 23:48:39 +0330 Subject: [PATCH 3/9] CMake: Make windows use the external python --- Source/Core/Scripting/CMakeLists.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/Source/Core/Scripting/CMakeLists.txt b/Source/Core/Scripting/CMakeLists.txt index b35a94edcaf9..3ff71d552024 100644 --- a/Source/Core/Scripting/CMakeLists.txt +++ b/Source/Core/Scripting/CMakeLists.txt @@ -30,7 +30,17 @@ add_library(scripting Python/Utils/object_wrapper.h ) -find_package(Python3 REQUIRED COMPONENTS Development) +if(WIN32) + set(Python3_INCLUDE_DIRS "${CMAKE_SOURCE_DIR}/Externals/python/x64/include") + set(Python3_LIBRARIES + "${CMAKE_SOURCE_DIR}/Externals/python/x64/libs/python3.lib" + "${CMAKE_SOURCE_DIR}/Externals/python/x64/libs/python3_d.lib" + "${CMAKE_SOURCE_DIR}/Externals/python/x64/libs/python312.lib" + "${CMAKE_SOURCE_DIR}/Externals/python/x64/libs/python312_d.lib" + ) +else() + find_package(Python3 REQUIRED COMPONENTS Development) +endif() include_directories(${Python3_INCLUDE_DIRS}) # TODO imgui shouldn't be here target_link_libraries(scripting PRIVATE ${Python3_LIBRARIES} imgui core) From d0fa4b50254fa909be988e8ca349f9a93eb00eb4 Mon Sep 17 00:00:00 2001 From: unexploredtest Date: Wed, 24 Dec 2025 23:49:56 +0330 Subject: [PATCH 4/9] Workflows: Remove Python setup for Windows --- .github/workflows/build-win.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml index 89e0f587c9a0..04c230c4ce4f 100644 --- a/.github/workflows/build-win.yml +++ b/.github/workflows/build-win.yml @@ -12,11 +12,6 @@ jobs: with: submodules: 'recursive' - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: 3.13 - - name: Build Dolphin run: | cmake -Bbuild . -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DCMAKE_BUILD_TYPE=Release From 3706c95274e31b83c0e3028a2f156fb3689f88e0 Mon Sep 17 00:00:00 2001 From: unexploredtest Date: Wed, 24 Dec 2025 23:54:30 +0330 Subject: [PATCH 5/9] Workflow: Change the condition on which the workflows trigger --- .github/workflows/build-linux.yml | 9 ++++++++- .github/workflows/build-mac.yml | 9 ++++++++- .github/workflows/build-win.yml | 9 ++++++++- 3 files changed, 24 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 56378ff919de..859873e11392 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -1,6 +1,13 @@ name: Build Linux Dolphin -on: [push, workflow_dispatch] +on: + push: + branches: + - master + pull_request: + branches: + - master + workflow_dispatch: jobs: build: diff --git a/.github/workflows/build-mac.yml b/.github/workflows/build-mac.yml index d4f237c56019..c71f795ee364 100644 --- a/.github/workflows/build-mac.yml +++ b/.github/workflows/build-mac.yml @@ -1,6 +1,13 @@ name: Build Mac OS Dolphin -on: [push, workflow_dispatch] +on: + push: + branches: + - master + pull_request: + branches: + - master + workflow_dispatch: jobs: build: diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml index 04c230c4ce4f..34bf93237321 100644 --- a/.github/workflows/build-win.yml +++ b/.github/workflows/build-win.yml @@ -1,6 +1,13 @@ name: Build Win Dolphin -on: [push, workflow_dispatch] +on: + push: + branches: + - master + pull_request: + branches: + - master + workflow_dispatch: jobs: build: From 09b4d3a60e2af5baab0a1ca559d250136f0b2e6b Mon Sep 17 00:00:00 2001 From: unexploredtest Date: Thu, 25 Dec 2025 00:49:10 +0330 Subject: [PATCH 6/9] Remove unnecessary comment --- Source/Core/Core/API/Gui.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Source/Core/Core/API/Gui.cpp b/Source/Core/Core/API/Gui.cpp index c3ac5b67ee82..a3f64db9aac2 100644 --- a/Source/Core/Core/API/Gui.cpp +++ b/Source/Core/Core/API/Gui.cpp @@ -94,7 +94,6 @@ void Gui::DrawCircleFilled(const Vec2f center, float radius, u32 color, int num_ GUI_DRAW_DEFERRED(AddCircleFilled(center, radius, ARGBToABGR(color), num_segments)); } -// lol void Gui::DrawText2(const Vec2f pos, u32 color, std::string text) { GUI_DRAW_DEFERRED(AddText(pos, ARGBToABGR(color), text.c_str())); From ee104fc37d1e516e4b51f1450d14f5c43efe580b Mon Sep 17 00:00:00 2001 From: unexploredtest <53617231+unexploredtest@users.noreply.github.com> Date: Tue, 27 Jan 2026 21:32:03 +0000 Subject: [PATCH 7/9] Linux Workflow: Add argument to make dolphin portable --- .github/workflows/build-linux.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 859873e11392..2c73f5b9501c 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -91,7 +91,7 @@ jobs: # On Ubuntu some include files are missing for Qt6, we copy those manually # Hacky, but it works anyways sudo cp -r Externals/Qt/Qt6.5.1/x64/include/QtGui/6.5.1/QtGui/qpa/ /usr/include/ - cmake -Bbuild . -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DUSE_SYSTEM_LIBS=OFF -DCMAKE_BUILD_TYPE=Release + cmake -Bbuild . -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DLINUX_LOCAL_DEV=true -DUSE_SYSTEM_LIBS=OFF -DCMAKE_BUILD_TYPE=Release cd build make -j$(nproc) cp -r ../Data/Sys/ Binaries/ @@ -101,4 +101,4 @@ jobs: uses: actions/upload-artifact@v4 with: name: DolphinLinux - path: build/dolphin_linux.tar.gz \ No newline at end of file + path: build/dolphin_linux.tar.gz From b1a4a066ca5d340433050d2686d9919e31822709 Mon Sep 17 00:00:00 2001 From: unexploredtest Date: Fri, 27 Feb 2026 20:42:42 +0330 Subject: [PATCH 8/9] Update workflows --- .github/workflows/build-linux.yml | 121 +++++++++++++++--------------- .github/workflows/build-mac.yml | 13 +++- .github/workflows/build-win.yml | 5 +- 3 files changed, 70 insertions(+), 69 deletions(-) diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index 2c73f5b9501c..6b9e5a60c4da 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v6 with: submodules: 'recursive' @@ -27,64 +27,62 @@ jobs: - name: Install dependencies run: | sudo apt update && sudo apt upgrade - sudo apt install libxi-dev - sudo apt install libegl1-mesa-dev - sudo apt install ffmpeg - sudo apt install libudev-dev - sudo apt install libevdev-dev - sudo apt install build-essential - sudo apt install cmake - sudo apt install git - sudo apt install qt6-base-dev qt6-tools-dev libqt6svg6-dev - sudo apt install libavcodec-dev - sudo apt install libavformat-dev - sudo apt install libcurl4-openssl-dev - sudo apt install libdbus-1-dev - sudo apt install libglew-dev - sudo apt install libgtk-3-dev - sudo apt install libopenal-dev - sudo apt install libreadline-dev - sudo apt install libxrandr-dev - sudo apt install libxi-dev - sudo apt install libxinerama-dev - sudo apt install libx11-dev - sudo apt install libasound2-dev - sudo apt install libpulse-dev - sudo apt install libfreetype6-dev - sudo apt install libfontconfig1-dev - sudo apt install libpng-dev - sudo apt install libjpeg-dev - sudo apt install libz-dev - sudo apt install libxext-dev - sudo apt install libxrender-dev - sudo apt install libglu1-mesa-dev - sudo apt install libgtkglext1-dev - sudo apt install libgtest-dev - sudo apt install libgmp-dev - sudo apt install liblz4-dev - sudo apt install liblzma-dev - sudo apt install libsnappy-dev - sudo apt install libtinyxml2-dev - sudo apt install libxi-dev - sudo apt install libxrandr-dev - sudo apt install libxinerama-dev - sudo apt install libx11-xcb-dev - sudo apt install libxcb-glx0-dev - sudo apt install libxcb1-dev - sudo apt install libxcb-dri3-dev - sudo apt install libxcb-dri2-0-dev - sudo apt install libxcb-xfixes0-dev - sudo apt install libxcb-randr0-dev - sudo apt install libxcb-keysyms1-dev - sudo apt install libxcb-image0-dev - sudo apt install libxcb-shape0-dev - sudo apt install libxcb-xinerama0-dev - sudo apt install libxcb-util-dev - sudo apt install libxcb-icccm4-dev - sudo apt install libxcb-keysyms1-dev - sudo apt install libxcb-xkb-dev - sudo apt install libxkbcommon-dev - sudo apt install libxkbcommon-x11-dev + sudo apt install \ + libegl1-mesa-dev \ + ffmpeg \ + libudev-dev \ + libevdev-dev \ + build-essential \ + cmake \ + qt6-base-dev \ + qt6-tools-dev \ + libqt6svg6-dev \ + libavcodec-dev \ + libavformat-dev \ + libcurl4-openssl-dev \ + libdbus-1-dev \ + libglew-dev \ + libgtk-3-dev \ + libopenal-dev \ + libreadline-dev \ + libxrandr-dev \ + libx11-dev \ + libasound2-dev \ + libpulse-dev \ + libfreetype6-dev \ + libfontconfig1-dev \ + libpng-dev \ + libjpeg-dev \ + libz-dev \ + libxext-dev \ + libxrender-dev \ + libglu1-mesa-dev \ + libgtkglext1-dev \ + libgtest-dev \ + libgmp-dev \ + liblz4-dev \ + liblzma-dev \ + libsnappy-dev \ + libtinyxml2-dev \ + libxi-dev \ + libxinerama-dev \ + libx11-xcb-dev \ + libxcb-glx0-dev \ + libxcb1-dev \ + libxcb-dri3-dev \ + libxcb-dri2-0-dev \ + libxcb-xfixes0-dev \ + libxcb-randr0-dev \ + libxcb-keysyms1-dev \ + libxcb-image0-dev \ + libxcb-shape0-dev \ + libxcb-xinerama0-dev \ + libxcb-util-dev \ + libxcb-icccm4-dev \ + libxcb-keysyms1-dev \ + libxcb-xkb-dev \ + libxkbcommon-dev \ + libxkbcommon-x11-dev - name: Build Dolphin run: | @@ -95,10 +93,9 @@ jobs: cd build make -j$(nproc) cp -r ../Data/Sys/ Binaries/ - tar -czf dolphin_linux.tar.gz Binaries/ - name: Upload Build - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: DolphinLinux - path: build/dolphin_linux.tar.gz + path: build/Binaries diff --git a/.github/workflows/build-mac.yml b/.github/workflows/build-mac.yml index c71f795ee364..92101d47b518 100644 --- a/.github/workflows/build-mac.yml +++ b/.github/workflows/build-mac.yml @@ -18,20 +18,25 @@ jobs: strategy: matrix: include: - - runs-on: macos-latest + - runs-on: macos-15 arch: arm64 runs-on: ${{ matrix.runs-on }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v6 with: submodules: 'recursive' - name: Install Qt run: | brew update - brew install qt + # Creating a new tap to install an older version of qt (the newer ones have build issues), for now 6.9.3. + # To grab a different version, change the git hash below + brew tap-new workflow/homebrew-custom + curl -o /tmp/qt.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/63d2e0609cdc80b0b96472721f9adf55bd74696b/Formula/q/qt.rb + mv /tmp/qt.rb $(brew --repo workflow/homebrew-custom)/Formula/qt.rb + brew install workflow/custom/qt - name: Configure Dolphin run: | @@ -53,7 +58,7 @@ jobs: tar -czf dolphin_mac.tar.gz Binaries/ - name: Upload Build - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: DolphinMac-${{ matrix.arch }} path: build/dolphin_mac.tar.gz \ No newline at end of file diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml index 34bf93237321..3b8162bb488b 100644 --- a/.github/workflows/build-win.yml +++ b/.github/workflows/build-win.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v6 with: submodules: 'recursive' @@ -23,10 +23,9 @@ jobs: run: | cmake -Bbuild . -DCMAKE_POLICY_VERSION_MINIMUM=3.5 -DCMAKE_BUILD_TYPE=Release cmake --build build --config Release -- /m - ls - name: Upload Build - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: DolphinWin path: Binary \ No newline at end of file From c583ca15c1a50f7839b1f2f05a1351f223c210fb Mon Sep 17 00:00:00 2001 From: unexploredtest Date: Fri, 27 Feb 2026 20:58:00 +0330 Subject: [PATCH 9/9] Workflow: Install qt normally --- .github/workflows/build-mac.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/build-mac.yml b/.github/workflows/build-mac.yml index 92101d47b518..1856c610a363 100644 --- a/.github/workflows/build-mac.yml +++ b/.github/workflows/build-mac.yml @@ -31,12 +31,7 @@ jobs: - name: Install Qt run: | brew update - # Creating a new tap to install an older version of qt (the newer ones have build issues), for now 6.9.3. - # To grab a different version, change the git hash below - brew tap-new workflow/homebrew-custom - curl -o /tmp/qt.rb https://raw.githubusercontent.com/Homebrew/homebrew-core/63d2e0609cdc80b0b96472721f9adf55bd74696b/Formula/q/qt.rb - mv /tmp/qt.rb $(brew --repo workflow/homebrew-custom)/Formula/qt.rb - brew install workflow/custom/qt + brew install qt - name: Configure Dolphin run: |