Skip to content

Commit eaa4f8b

Browse files
author
Aliaksandr Adziareika
committed
<TBBAS-2530> Unify cmake calls
1 parent 7ffc6f7 commit eaa4f8b

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ jobs:
4747
if: runner.os == 'Windows'
4848
run: cmake --build build/output --config Release
4949

50-
- name: Run simple device module tests via CTest with GTest report Windows
51-
if: runner.os == 'Windows'
52-
run: |
53-
New-Item -ItemType Directory -Force -Path build/reports | Out-Null
54-
$env:GTEST_OUTPUT = "xml:$PWD/build/reports/gtest-report.xml"
55-
ctest --test-dir build/output --output-on-failure -C Release -V
50+
# - name: Run simple device module tests via CTest with GTest report Windows
51+
# if: runner.os == 'Windows'
52+
# run: |
53+
# New-Item -ItemType Directory -Force -Path build/reports | Out-Null
54+
# $env:GTEST_OUTPUT = "xml:$PWD/build/reports/gtest-report.xml"
55+
# ctest --test-dir build/output --output-on-failure -C Release -V
5656

5757
- name: Configure simple device module with CMake
5858
if: runner.os != 'Windows'
@@ -63,7 +63,4 @@ jobs:
6363
run: cmake --build build/output --target all
6464

6565
- name: Run simple device module tests via CTest with GTest report
66-
if: runner.os != 'Windows'
67-
run: |
68-
mkdir -p build/reports
69-
GTEST_OUTPUT=xml:$(pwd)/build/reports/gtest-report.xml ctest --test-dir build/output --output-on-failure -V
66+
run: ctest --test-dir build/output --output-on-failure -C Release -V

0 commit comments

Comments
 (0)