Skip to content

Commit a250ad5

Browse files
committed
[ci] test 32bit binaries
1 parent a4009b6 commit a250ad5

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/run_test.yml

+14-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
# provided octave versions: ubuntu-20.04 = 5.2, ubuntu-22.04 = 6.4, macos-13/14 = 9.2, windows-2019 = 5.2
1010
matrix:
11-
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-13, macos-14, windows-2019]
11+
os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-13, macos-14, windows-2019, windows-2022]
1212
runs-on: ${{ matrix.os }}
1313
defaults:
1414
run:
@@ -39,6 +39,12 @@ jobs:
3939
octave-cli --version
4040
octave-cli --eval 'available_graphics_toolkits(); graphics_toolkit()'
4141
octave-cli --eval "addpath(pwd);cd sample; tic; demo_vol2mesh_ex1; toc"
42+
- name: Test linux32 binaries
43+
if: ${{ matrix.os == 'ubuntu-24.04' }}
44+
run: rm -rf bin/*.mexa64
45+
- name: Test win32 binaries
46+
if: ${{ matrix.os == 'windows-2019' }}
47+
run: rm -rf bin/*x86-64.exe
4248
- name: Run Octave test - demo_vol2mesh_ex1b
4349
run: octave-cli --eval "addpath(pwd);cd sample; tic; demo_vol2mesh_ex1b; toc"
4450
- name: Run Octave test - demo_vol2mesh_ex1c
@@ -70,7 +76,7 @@ jobs:
7076
name: MATLAB test
7177
strategy:
7278
matrix:
73-
os: [ubuntu-20.04, macos-12, windows-2019]
79+
os: [ubuntu-20.04, ubuntu-24.04, macos-12, windows-2019, windows-2022]
7480
runs-on: ${{ matrix.os }}
7581
steps:
7682
- name: Checkout repo
@@ -81,6 +87,12 @@ jobs:
8187
uses: matlab-actions/setup-matlab@v1
8288
with:
8389
release: R2022a
90+
- name: Test linux32 binaries
91+
if: ${{ matrix.os == 'ubuntu-24.04' }}
92+
run: rm -rf bin/*.mexa64
93+
- name: Test win32 binaries
94+
if: ${{ matrix.os == 'windows-2019' }}
95+
run: rm -rf bin/*x86-64.exe
8496
- name: Run MATLAB test - demo_vol2mesh_ex1
8597
uses: matlab-actions/run-command@v1
8698
with:

0 commit comments

Comments
 (0)