Skip to content

Commit b3f7a9d

Browse files
Trying to fix CI
1 parent f24fb8f commit b3f7a9d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,13 @@ jobs:
7070
run: cmake -Bbuild -G"Ninja Multi-Config" -DCHOWDSP_CONVOLUTION_TESTING=ON ${{ matrix.cmake_args }}
7171

7272
- name: Build Test (Debug)
73-
run: cmake --build build --config Debug --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_cpp
73+
run: cmake --build build --config Debug --parallel ${{ matrix.nparallel }} --target chowdsp_convolution_test
7474

7575
- name: Run Test (Debug)
7676
run: ./build/test/Debug/chowdsp_convolution_test
7777

7878
- name: Build Test (Release)
79-
run: cmake --build build --config Release --parallel ${{ matrix.nparallel }} --target test_chowdsp_fft_cpp
79+
run: cmake --build build --config Release --parallel ${{ matrix.nparallel }} --target chowdsp_convolution_test
8080

8181
- name: Run Test (Release)
8282
run: ./build/test/Release/chowdsp_convolution_test

test/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ target_link_libraries(chowdsp_convolution_test
2020
target_compile_definitions(chowdsp_convolution_test
2121
PRIVATE
2222
JUCE_MODULE_AVAILABLE_juce_dsp=1 # chowdsp_pffft includes juce_dsp internally!
23+
JUCE_USE_CURL=0
2324
$<IF:$<CONFIG:DEBUG>,BUILD_DEBUG=1,BUILD_RELEASE=1>
2425
)
2526
target_compile_features(chowdsp_convolution_test PRIVATE cxx_std_20)

0 commit comments

Comments
 (0)