File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -735,20 +735,20 @@ jobs:
735
735
run : cmake -E env CFLAGS="/WX ${{ matrix.configuration.cpp_flags }}" cmake -B build -DSECP256K1_ENABLE_MODULE_RECOVERY=ON -DSECP256K1_BUILD_EXAMPLES=ON ${{ matrix.configuration.cmake_options }}
736
736
737
737
- name : Build
738
- run : cmake --build build --config RelWithDebInfo -- /p:UseMultiToolTask=true /maxCpuCount
738
+ run : cmake --build build --config Release -- /p:UseMultiToolTask=true /maxCpuCount
739
739
740
740
- name : Binaries info
741
741
# Use the bash shell included with Git for Windows.
742
742
shell : bash
743
743
run : |
744
- cd build/src/RelWithDebInfo && file *tests.exe bench*.exe libsecp256k1-*.dll || true
744
+ cd build/src/Release && file *tests.exe bench*.exe libsecp256k1-*.dll || true
745
745
746
746
- name : Check
747
747
run : |
748
- ctest -C RelWithDebInfo --test-dir build -j ([int]$env:NUMBER_OF_PROCESSORS + 1)
749
- build\src\RelWithDebInfo \bench_ecmult.exe
750
- build\src\RelWithDebInfo \bench_internal.exe
751
- build\src\RelWithDebInfo \bench.exe
748
+ ctest -C Release --test-dir build -j ([int]$env:NUMBER_OF_PROCESSORS + 1)
749
+ build\src\Release \bench_ecmult.exe
750
+ build\src\Release \bench_internal.exe
751
+ build\src\Release \bench.exe
752
752
753
753
win64-native-headers :
754
754
name : " x64 (MSVC): C++ (public headers)"
You can’t perform that action at this time.
0 commit comments