From 0f2c295780626fa0b7954eae72a79ac675f214e6 Mon Sep 17 00:00:00 2001 From: Ralph Giles Date: Thu, 8 Jul 2021 08:23:08 -0700 Subject: github actions: Align cmake step names with the autotools build. Make it a little more clear how steps correspond, and add 'build' to both workflow names so the intention of the runs is explicit on the actions page. --- .github/workflows/autotools.yml | 2 +- .github/workflows/cmake.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autotools.yml b/.github/workflows/autotools.yml index bfb7a60..d501cb4 100644 --- a/.github/workflows/autotools.yml +++ b/.github/workflows/autotools.yml @@ -1,4 +1,4 @@ -name: Autotools +name: Autotools build on: push: diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index d9fa86c..dfb78b2 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -1,4 +1,4 @@ -name: CMake +name: CMake build on: push: @@ -28,7 +28,7 @@ jobs: - name: Prepare build directory run: mkdir ${{ env.BUILD }} - - name: Generate + - name: Configure run: cmake -S . -B ${{ env.BUILD }} - name: Build -- cgit v1.2.1