File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
win64-native :
15
- name : " x86_64: Windows ( VS 2022) "
15
+ name : " x86_64: Windows, VS 2022"
16
16
# See: https://github.com/actions/runner-images#available-images.
17
17
runs-on : windows-2022
18
18
19
19
strategy :
20
20
fail-fast : false
21
21
matrix :
22
- build_shared_libs : ['ON ', 'OFF ']
22
+ lib_type : ['shared ', 'static ']
23
23
24
24
steps :
25
25
- name : Checkout
26
26
uses : actions/checkout@v3
27
27
28
28
- name : Generate buildsystem
29
- run : cmake -E env CFLAGS="/WX" cmake -B build -A x64 -DSECP256K1_ENABLE_MODULE_RECOVERY=ON -DSECP256K1_BUILD_EXAMPLES=ON -DBUILD_SHARED_LIBS=${{ matrix.build_shared_libs }}
29
+ run : cmake -E env CFLAGS="/WX" cmake -B build -A x64 -DSECP256K1_ENABLE_MODULE_RECOVERY=ON -DSECP256K1_BUILD_EXAMPLES=ON -DBUILD_SHARED_LIBS=${{ matrix.lib_type == 'shared' && 'ON' || 'OFF' }}
30
30
31
31
- name : Build
32
32
run : cmake --build build --config RelWithDebInfo -- /p:UseMultiToolTask=true /maxCpuCount
You can’t perform that action at this time.
0 commit comments