From 46b637a584adf30ccaa1a098d646d7b19938b19d Mon Sep 17 00:00:00 2001 From: mappu Date: Sat, 11 Jan 2025 16:35:01 +1300 Subject: [PATCH] github/ci: add windows 32-bit test --- .github/workflows/miqt.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/miqt.yml b/.github/workflows/miqt.yml index 3886f1c8..0bb2e54c 100644 --- a/.github/workflows/miqt.yml +++ b/.github/workflows/miqt.yml @@ -86,6 +86,25 @@ jobs: - name: Linux64 bindings compile run: docker run -v ~/.cache/go-build:/root/.cache/go-build -v $PWD:/src -w /src miqt/linux64:qt68 /bin/bash -c 'cd qt6 && go build' + miqt_win32_qt5: + runs-on: ubuntu-24.04 + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Cache GOCACHE + uses: actions/cache@v4 + with: + path: ~/.cache/go-build + key: win32-gocache + + - name: Win32 docker build + run: docker build -t miqt/win32:qt5 -f docker/win32-cross-go1.23-qt5.15-static.Dockerfile . + + - name: Win32 bindings compile + run: docker run -v ~/.cache/go-build:/root/.cache/go-build -v $PWD:/src -w /src miqt/win32:qt5 /bin/bash -c 'cd qt && go build' + miqt_win64_qt5: runs-on: ubuntu-24.04