|
8 | 8 | strategy:
|
9 | 9 | # provided octave versions: ubuntu-20.04 = 5.2, ubuntu-22.04 = 6.4, macos-13/14 = 9.2, windows-2019 = 5.2
|
10 | 10 | 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] |
12 | 12 | runs-on: ${{ matrix.os }}
|
13 | 13 | defaults:
|
14 | 14 | run:
|
|
39 | 39 | octave-cli --version
|
40 | 40 | octave-cli --eval 'available_graphics_toolkits(); graphics_toolkit()'
|
41 | 41 | 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 |
42 | 48 | - name: Run Octave test - demo_vol2mesh_ex1b
|
43 | 49 | run: octave-cli --eval "addpath(pwd);cd sample; tic; demo_vol2mesh_ex1b; toc"
|
44 | 50 | - name: Run Octave test - demo_vol2mesh_ex1c
|
|
70 | 76 | name: MATLAB test
|
71 | 77 | strategy:
|
72 | 78 | matrix:
|
73 |
| - os: [ubuntu-20.04, macos-12, windows-2019] |
| 79 | + os: [ubuntu-20.04, ubuntu-24.04, macos-12, windows-2019, windows-2022] |
74 | 80 | runs-on: ${{ matrix.os }}
|
75 | 81 | steps:
|
76 | 82 | - name: Checkout repo
|
|
81 | 87 | uses: matlab-actions/setup-matlab@v1
|
82 | 88 | with:
|
83 | 89 | 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 |
84 | 96 | - name: Run MATLAB test - demo_vol2mesh_ex1
|
85 | 97 | uses: matlab-actions/run-command@v1
|
86 | 98 | with:
|
|
0 commit comments