From 8871a1a18803fa211c5c364dead90607c40fb388 Mon Sep 17 00:00:00 2001 From: Oleksandr Nemesh Date: Wed, 10 Apr 2024 17:32:17 +0300 Subject: [PATCH] Hopefully this works now --- .github/workflows/build.yml | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c4e5a0d..61d5de3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,21 +10,24 @@ on: jobs: build: - # strategy: - # fail-fast: false - # matrix: - # config: - # - name: Standalone - # - name: Geode + strategy: + fail-fast: false + matrix: + config: + - name: Standalone + os: windows-latest + - name: Geode + os: windows-latest name: OpenHack Build + runs-on: ${{ matrix.config.os }} steps: - name: Standalone - # if: matrix.config.name == 'Standalone' + if: matrix.config.name == 'Standalone' uses: ./.github/workflows/ci-standalone.yml - name: Geode - # if: matrix.config.name == 'Geode' + if: matrix.config.name == 'Geode' uses: ./.github/workflows/ci-geode.yml