From cb3ca92d5d5d6abe72241d29e4d2b4106ed804d1 Mon Sep 17 00:00:00 2001 From: Dmitriy Sobolev Date: Thu, 9 Jan 2025 22:05:53 +0000 Subject: [PATCH] Fix a typo --- .github/workflows/ci-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-testing.yml b/.github/workflows/ci-testing.yml index ccd53186498..6ddbcc92f6e 100644 --- a/.github/workflows/ci-testing.yml +++ b/.github/workflows/ci-testing.yml @@ -291,7 +291,7 @@ jobs: :: By default, CMD shell only reports the error level of the final command. set exit_code=0 - cmake -G "Ninja" -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_CXX_STANDARD=${{ matrix.std }} -DCMAKE_CXX_COMPILER=${{ matrix.cxx_compiler }} -DONEDPL_BACKEND=${{ matrix.backend }} -DONEDPL_DEVICE_TYPE=${{ matrix.device_type }} -DCMAKE_CXX_FLAGS="/W4" .. || set exit_code=%level% + cmake -G "Ninja" -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_CXX_STANDARD=${{ matrix.std }} -DCMAKE_CXX_COMPILER=${{ matrix.cxx_compiler }} -DONEDPL_BACKEND=${{ matrix.backend }} -DONEDPL_DEVICE_TYPE=${{ matrix.device_type }} -DCMAKE_CXX_FLAGS="/W4" .. || set exit_code=%errorlevel% ninja -j 2 -v %ninja_targets% > build.log 2>&1 || set exit_code=%errorlevel% :: Display the results after executing all tests because "tee" alternative is unavailable in CMD.