Skip to content

Commit afeb29a

Browse files
authored
Merge pull request #411 from crazy-max/test-windows
ci: test container builder on windows
2 parents b560416 + 1144552 commit afeb29a

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
@@ -581,3 +581,24 @@ jobs:
581581
with:
582582
version: v0.11.2
583583
cache-binary: ${{ matrix.cache }}
584+
585+
windows-error:
586+
runs-on: windows-latest
587+
steps:
588+
-
589+
name: Checkout
590+
uses: actions/checkout@v4
591+
-
592+
name: Set up Docker Buildx
593+
id: buildx
594+
continue-on-error: true
595+
uses: ./
596+
-
597+
name: Check
598+
run: |
599+
echo "${{ toJson(steps.buildx) }}"
600+
if [ "${{ steps.buildx.outcome }}" != "failure" ] || [ "${{ steps.buildx.conclusion }}" != "success" ]; then
601+
echo "::error::Should have failed"
602+
exit 1
603+
fi
604+
shell: bash

0 commit comments

Comments
 (0)