File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -88,19 +88,19 @@ jobs:
8888 run : cmake --build build --config Debug --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_cpp
8989
9090 - name : Run Test C++ (Debug)
91- if : ! ( matrix.name == 'Windows-ARM64' || matrix.name == 'Windows-ARM64EC')
91+ if : matrix.name != 'Windows-ARM64' && matrix.name != 'Windows-ARM64EC'
9292 run : ./build/test/Debug/test_chowdsp_fft_cpp
9393
9494 - name : Build Test C (Debug)
9595 run : cmake --build build --config Debug --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_c
9696
9797 - name : Run Test C (Debug)
98- if : ! ( matrix.name == 'Windows-ARM64' || matrix.name == 'Windows-ARM64EC')
98+ if : matrix.name != 'Windows-ARM64' && matrix.name != 'Windows-ARM64EC'
9999 run : ./build/test/Debug/test_chowdsp_fft_c
100100
101101 - name : Build Test C++ (Release)
102102 run : cmake --build build --config Release --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_cpp
103103
104104 - name : Run Test C++ (Release)
105- if : ! ( matrix.name == 'Windows-ARM64' || matrix.name == 'Windows-ARM64EC')
105+ if : matrix.name != 'Windows-ARM64' && matrix.name != 'Windows-ARM64EC'
106106 run : ./build/test/Release/test_chowdsp_fft_cpp
You can’t perform that action at this time.
0 commit comments