Skip to content

Commit

Permalink
Add Windows container acceptance tests
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Meyer <[email protected]>
Signed-off-by: Micah Young <[email protected]>
  • Loading branch information
ameyer-pivotal authored and Micah Young committed Apr 29, 2020
1 parent 2a0511e commit db9a7ad
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}
Expand All @@ -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:
Expand Down

0 comments on commit db9a7ad

Please sign in to comment.