Skip to content

Commit 1144552

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

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci.yml

+21
Original file line numberDiff line numberDiff line change
@@ -583,3 +583,24 @@ 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+
id: buildx
596+
continue-on-error: true
597+
uses: ./
598+
-
599+
name: Check
600+
run: |
601+
echo "${{ toJson(steps.buildx) }}"
602+
if [ "${{ steps.buildx.outcome }}" != "failure" ] || [ "${{ steps.buildx.conclusion }}" != "success" ]; then
603+
echo "::error::Should have failed"
604+
exit 1
605+
fi
606+
shell: bash

0 commit comments

Comments
 (0)