Skip to content

Commit f1774e5

Browse files
committed
ci, gha: Make MSVC job presentation more explicit
1 parent 5ee039b commit f1774e5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ env:
1212

1313
jobs:
1414
win64-native:
15-
name: "x86_64: Windows (VS 2022)"
15+
name: "x86_64: Windows, VS 2022"
1616
# See: https://github.com/actions/runner-images#available-images.
1717
runs-on: windows-2022
1818

1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
build_shared_libs: ['ON', 'OFF']
22+
lib_type: ['shared', 'static']
2323

2424
steps:
2525
- name: Checkout
2626
uses: actions/checkout@v3
2727

2828
- 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' }}
3030

3131
- name: Build
3232
run: cmake --build build --config RelWithDebInfo -- /p:UseMultiToolTask=true /maxCpuCount

0 commit comments

Comments
 (0)