From 7037b2b5f29e2e7fc2a32a63b3b769e59f025545 Mon Sep 17 00:00:00 2001 From: Kolyah35 Date: Sat, 21 Mar 2026 01:33:57 +0300 Subject: [PATCH] create build dir --- .github/workflows/build.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5199951..1bf101b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,6 +41,11 @@ jobs: tar -xf llvm-mingw.tar.xz mv llvm-mingw-* llvm-mingw + - name: Create Build Environment + # Some projects don't allow in-source building, so create a separate build directory + # We'll use this as our working directory for all subsequent commands + run: cmake -E make_directory ${{github.workspace}}/build + - name: Configure CMake working-directory: ${{github.workspace}}/build run: |