diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b488c432c6..e6b9c99e63 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [macos, linux, windows] + os: [macos, linux, windows-lcow, windows-wcow] include: - os: macos runner: macos-latest @@ -25,10 +25,14 @@ jobs: runner: ubuntu-latest no_docker: "false" pack_bin: pack - - os: windows + - os: windows-lcow runner: [self-hosted, windows] no_docker: "false" pack_bin: pack.exe + - os: windows-wcow + runner: windows-latest + no_docker: "false" + pack_bin: pack.exe runs-on: ${{ matrix.runner }} env: PACK_BIN: ${{ matrix.pack_bin }} @@ -50,7 +54,7 @@ jobs: echo "::add-path::$(go env GOPATH)/bin" - name: Verify # disabled for windows due to format verification failing - if: matrix.os != 'windows' + if: ${{ contains('windows', matrix.os) }} run: make verify - name: Test env: