From 08fe5aabff2af47600463736912e0849abdb3e94 Mon Sep 17 00:00:00 2001 From: Jameson Nash Date: Fri, 11 Mar 2022 11:59:38 -0500 Subject: [PATCH] build: make CI a bit noisier (#3532) Github Actions will already hide the output, so we don't need to also suppress the output. That can sometimes hide problems that might have only been visible on inspection. --- .github/workflows/CI.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 19fc0cf0..b752bee9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -27,11 +27,19 @@ jobs: cd build cmake .. -DBUILD_TESTING=ON -G "${{ matrix.config.toolchain }}" -A ${{ matrix.config.arch }} cmake --build . + - name: platform_output + shell: cmd + run: | + build\\Debug\\uv_run_tests.exe platform_output + - name: platform_output_a + shell: cmd + run: | + build\\Debug\\uv_run_tests_a.exe platform_output - name: Test shell: cmd run: | cd build - ctest -C Debug --output-on-failure + ctest -C Debug -V build-android: runs-on: ubuntu-latest @@ -62,6 +70,12 @@ jobs: cd build && cmake .. -DBUILD_TESTING=ON -G Ninja cmake --build . ls -lh + - name: platform_output + run: | + ./build/uv_run_tests platform_output + - name: platform_output_a + run: | + ./build/uv_run_tests_a platform_output - name: Test run: | cd build && ctest -V