From 4c2f1e9000a22409cdf2908d38a5019d9fb682e2 Mon Sep 17 00:00:00 2001 From: Jiga228 Date: Sun, 14 Sep 2025 18:50:48 +0700 Subject: [PATCH] =?UTF-8?q?=D0=AF=20=D1=83=D0=B4=D0=B0=D0=BB=D0=B8=D0=BB?= =?UTF-8?q?=20=D1=82=D0=B5=D1=81=D1=82=D1=8B=20=D0=B4=D0=BB=D1=8F=20window?= =?UTF-8?q?s=20=D1=82=D0=B0=D0=BA=20=D0=BA=D0=B0=D0=BA=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8=20=D0=BD=D1=83?= =?UTF-8?q?=D0=B6=D0=B5=D0=BD=20vulkan.=20=D0=9A=D0=BE=D0=B3=D0=B4=D0=B0?= =?UTF-8?q?=20=D0=BF=D0=B5=D1=80=D0=B5=D0=B9=D0=B4=D1=83=20=D0=BD=D0=B0=20?= =?UTF-8?q?=D0=B0=D0=BA=D1=82=D0=B8=D0=B2=D0=BD=D1=83=D1=8E=20=D1=80=D0=B0?= =?UTF-8?q?=D0=B7=D1=80=D0=B0=D0=B1=D0=BE=D1=82=D0=BA=D1=83=20=D0=B4=D0=BB?= =?UTF-8?q?=D1=8F=20linux,=20=D1=81=D0=B4=D0=B5=D0=BB=D0=B0=D1=8E=20=D1=85?= =?UTF-8?q?=D0=BE=D1=80=D0=BE=D1=88=D0=B8=D0=B5=20=D1=82=D0=B5=D1=81=D1=82?= =?UTF-8?q?=D1=8B=20=D0=B4=D0=BB=D1=8F=20windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/windows-test.yml | 40 ------------------------------ 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/windows-test.yml diff --git a/.github/workflows/windows-test.yml b/.github/workflows/windows-test.yml deleted file mode 100644 index 29a760e..0000000 --- a/.github/workflows/windows-test.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Windows test - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -env: - BUILD_TYPE: Release - -jobs: - build: - runs-on: windows-latest - - steps: - - name: Checkout repository with submodules - uses: actions/checkout@v4 - with: - submodules: recursive - fetch-depth: 1 - - - name: Проверка содержимого glfw - run: dir glfw - - - name: Install Vulkan SDK 1.4.321.1 - run: | - Invoke-WebRequest -Uri https://sdk.lunarg.com/sdk/download/1.4.321.1/windows/vulkan-sdk-1.4.321.1-setup.exe -OutFile vulkan-sdk-setup.exe - Start-Process -FilePath vulkan-sdk-setup.exe -ArgumentList '/S' -Wait - shell: powershell - - - 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}} - -# - name: Test -# working-directory: ${{github.workspace}}/build -# run: ctest -C ${{env.BUILD_TYPE}}