From a7c87b7bcc21eac33da2b9e3e68cbd43fd212fe5 Mon Sep 17 00:00:00 2001 From: Robin Linden Date: Mon, 6 Jun 2022 18:36:19 +0200 Subject: [PATCH] Remove step names from CI The commands we run are simple enough that having a name instead of the command displayed just makes things less obvious. --- .github/workflows/ci.yaml | 18 ++++++------------ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 969d78a..ed9aaba 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -63,23 +63,17 @@ jobs: with: python-version: "3.10" - - name: Install - run: pip install cmake==3.22.4 ninja==1.10.2.3 --upgrade + - run: pip install cmake==3.22.4 ninja==1.10.2.3 --upgrade - - name: Setup - run: echo "CC=${{ matrix.compiler }}" >> $GITHUB_ENV + - run: echo "CC=${{ matrix.compiler }}" >> $GITHUB_ENV if: startsWith(matrix.os, 'ubuntu') - - name: CMake - run: cmake -S . -B build -G "${{ matrix.generator }}" ${{ matrix.cmake-args }} + - run: cmake -S . -B build -G "${{ matrix.generator }}" ${{ matrix.cmake-args }} - - name: Build - run: cmake --build build + - run: cmake --build build - - name: Test - run: (cd build && ctest) + - run: (cd build && ctest) if: startsWith(matrix.os, 'ubuntu') - - name: Test - run: (cd build && ctest -C Debug ) + - run: (cd build && ctest -C Debug ) if: startsWith(matrix.os, 'windows')