Skip to content

Commit fb5515d

Browse files
committed
Merge branch '3.3' into 3.4
2 parents c98a609 + d080db6 commit fb5515d

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
name: build matrix
3232
uses: mariadb-corporation/connector-ci-build-matrix@main
3333
with:
34-
additional-matrix: '[{"name": "MariaDB 11.4 (local) - windows 2025", "os": "windows-2025", "db-type": "community", "db-tag": "11.4"}]'
34+
additional-matrix: '[{"name": "MariaDB 11.4 (local) - windows 2025", "os": "windows-2025", "db-type": "community", "db-tag": "11.4"},{"name": "MariaDB 11.4 32bits (local) - windows 2025", "os": "windows-2025", "db-type": "community", "db-tag": "11.4", "arch": "32"}]'
3535

3636
ci-server:
3737
name: server ${{ matrix.server.version }} test suite ${{ matrix.server.env && format(' {0}', matrix.server.env) || '' }}
@@ -98,7 +98,7 @@ jobs:
9898
TEST_OPTION: ${{ matrix.server.env.TEST_OPTION }}
9999
MYSQL_TEST_HOST: 127.0.0.1
100100

101-
- name: Archive production artifacts
101+
- name: Archive error logs
102102
if: ${{ failure() }}
103103
uses: actions/upload-artifact@v4
104104
with:
@@ -147,12 +147,18 @@ jobs:
147147
cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DWITH_EXTERNAL_ZLIB=On
148148
make
149149
150-
- name: make windows
151-
if: ${{ startsWith(matrix.os, 'windows') }}
150+
- name: make windows 64bits
151+
if: ${{ startsWith(matrix.os, 'windows') && (matrix.arch != '32' || !matrix.arch) }}
152152
run: |
153153
cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DWITH_CURL=ON
154154
cmake --build . --config RelWithDebInfo
155155
156+
- name: make windows 32bits
157+
if: ${{ startsWith(matrix.os, 'windows') && startsWith(matrix.arch, '32') }}
158+
run: |
159+
cmake -A Win32 . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DWITH_CURL=ON
160+
cmake --build . --config RelWithDebInfo
161+
156162
- name: Run test suite
157163
shell: bash
158164
run: |

0 commit comments

Comments
 (0)