From 3268d3503eabe320406ad902febe6f62f96f1241 Mon Sep 17 00:00:00 2001 From: Louis Moureaux Date: Tue, 28 Nov 2023 00:42:35 +0100 Subject: [PATCH] Run windows clang, nix, and fedora on workflow_dispatch Allows checking that everything builds when needed (e.g. when editing CMake code). See #2056. --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 550f6a900b..4454c1898c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -173,7 +173,7 @@ jobs: name: "Windows Clang" runs-on: windows-latest needs: clang-format - if: github.event_name == 'schedule' + if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' env: VCPKG_ROOT: C:/vcpkg VCPKG_DEFAULT_BINARY_CACHE: ${{github.workspace}}/vcpkg/bincache @@ -284,7 +284,7 @@ jobs: fedora: runs-on: ubuntu-latest - if: github.event_name == 'schedule' + if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' container: fedora:latest steps: - name: Install dependencies @@ -320,7 +320,7 @@ jobs: nix: runs-on: ubuntu-latest - if: github.event_name == 'schedule' + if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' steps: - name: checkout uses: actions/checkout@v3