From 31f23ac017bbba55eea9886f71035959e3bea74d Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sat, 27 Sep 2025 21:53:44 +0200 Subject: [PATCH] ci/GHA: sync MSVC job names with others [ci skip] i.e. drop 'cmake' from them. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9454aa3..00594cf0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -885,7 +885,7 @@ jobs: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 with: persist-credentials: false - - name: 'cmake configure' + - name: 'configure' shell: bash env: MATRIX_ARCH: '${{ matrix.arch }}' @@ -922,9 +922,9 @@ jobs: -DRUN_SSHD_TESTS=OFF \ || { cat bld/CMakeFiles/CMake*.yaml; false; } - - name: 'cmake build' + - name: 'build' run: cmake --build bld --parallel 5 --target package --config Release - - name: 'cmake tests' + - name: 'tests' # UWP binaries require a CRT DLL that is not found. Static CRT not supported. if: ${{ matrix.arch != 'arm64' && matrix.plat != 'uwp' }} timeout-minutes: 10