Skip to content

Commit c811f37

Browse files
committed
ci: test container builder on windows
Signed-off-by: CrazyMax <[email protected]>
1 parent b5ca514 commit c811f37

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/ci.yml

+19
Original file line numberDiff line numberDiff line change
@@ -583,3 +583,22 @@ jobs:
583583
with:
584584
version: v0.11.2
585585
cache-binary: ${{ matrix.cache }}
586+
587+
windows-error:
588+
runs-on: windows-latest
589+
steps:
590+
-
591+
name: Checkout
592+
uses: actions/checkout@v4
593+
-
594+
name: Set up Docker Buildx
595+
continue-on-error: true
596+
uses: ./
597+
-
598+
name: Check
599+
run: |
600+
echo "${{ toJson(steps.buildx) }}"
601+
if [ "${{ steps.buildx.outcome }}" != "failure" ] || [ "${{ steps.buildx.conclusion }}" != "success" ]; then
602+
echo "::error::Should have failed"
603+
exit 1
604+
fi

0 commit comments

Comments
 (0)