From 5f688e0037c7b71c67efaacb2fb77c26b54b13c7 Mon Sep 17 00:00:00 2001 From: Arnav Mehta <77837038+ArnavMehta3000@users.noreply.github.com> Date: Wed, 7 Aug 2024 20:30:52 +0100 Subject: [PATCH] Update windows.yml --- .github/workflows/windows.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 65eff4b..3fd2d96 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -3,7 +3,6 @@ name: Windows on: push: - branches: [ "main" ] pull_request: branches: [ "main" ] @@ -16,7 +15,12 @@ jobs: matrix: build-config: [ debug, release ] - rhi: [ dx11, dx12, opengl, vulkan ] + rhi: [ dx11, opengl ] # We currently do not support the other API's + # rhi: [ dx11, dx12, opengl, vulkan ] + + concurrency: + group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-${{ matrix.os }}-${{ matrix.arch }}-Windows + cancel-in-progress: true steps: - uses: actions/checkout@v4