Merge pull request #411 from crazy-max/test-windows
Some checks failed
test / test (push) Failing after 2s
validate / prepare (push) Failing after 2s
validate / validate (push) Has been skipped
ci / main () (push) Successful in 12s
ci / main (cloud:v0.11.2-desktop.2) (push) Successful in 30m4s
ci / main (v0.4.1) (push) Successful in 23s
ci / multi (push) Successful in 17s
ci / error (push) Failing after 2s
ci / debug (push) Failing after 2s
ci / install (push) Successful in 13s
ci / use (false) (push) Successful in 10s
ci / use (true) (push) Successful in 10s
ci / driver (image=moby/buildkit:latest) (push) Successful in 10s
ci / driver (image=moby/buildkit:master network=host ) (push) Successful in 17s
ci / docker-driver (push) Successful in 6s
ci / endpoint (push) Failing after 8s
ci / config (push) Failing after 1s
ci / config-inline (push) Failing after 1s
ci / with-qemu (, all) (push) Failing after 1s
ci / with-qemu (, arm64,riscv64,arm) (push) Failing after 1s
ci / with-qemu (v0.9.1, all) (push) Failing after 1s
ci / with-qemu (v0.9.1, arm64,riscv64,arm) (push) Failing after 1s
ci / build-ref (cb185f095fd3d9444e0aa605d3789e9e05f2a1e7) (push) Failing after 1s
ci / build-ref (master) (push) Failing after 1s
ci / build-ref (refs/pull/731/head) (push) Failing after 2s
ci / build-ref (refs/tags/v0.5.1) (push) Failing after 2s
ci / standalone-action (push) Failing after 9s
ci / standalone-install-error (push) Successful in 27s
ci / append (push) Successful in 27s
ci / platforms (push) Failing after 5s
ci / docker-context (push) Successful in 16s
ci / cleanup (false) (push) Successful in 21s
ci / cleanup (true) (push) Successful in 22s
ci / k3s (v0.10.5) (push) Failing after 6s
ci / k3s (v0.11.0) (push) Failing after 5s
ci / cache-binary (false) (push) Successful in 23s
ci / cache-binary (true) (push) Successful in 23s
ci / main (latest) (push) Successful in 1h14m16s
ci / standalone-cmd (push) Failing after 58m57s
ci / main (cloud:latest) (push) Successful in 1h34m41s
ci / main (lab:latest) (push) Successful in 1h30m12s
ci / windows-error (push) Has been cancelled

ci: test container builder on windows
This commit is contained in:
CrazyMax 2025-03-12 15:56:50 +01:00 committed by GitHub
commit afeb29a6e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -581,3 +581,24 @@ jobs:
with:
version: v0.11.2
cache-binary: ${{ matrix.cache }}
windows-error:
runs-on: windows-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up Docker Buildx
id: buildx
continue-on-error: true
uses: ./
-
name: Check
run: |
echo "${{ toJson(steps.buildx) }}"
if [ "${{ steps.buildx.outcome }}" != "failure" ] || [ "${{ steps.buildx.conclusion }}" != "success" ]; then
echo "::error::Should have failed"
exit 1
fi
shell: bash