summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2021-07-08 08:23:08 -0700
committerRalph Giles <giles@thaumas.net>2021-07-09 22:23:51 -0700
commit0f2c295780626fa0b7954eae72a79ac675f214e6 (patch)
tree3d19ea0604bf424b21629ef52c05f2fe09e14d5b
parentcdeaaf2740ab8fcf125bc6b9a441effa474055d7 (diff)
downloadogg-git-0f2c295780626fa0b7954eae72a79ac675f214e6.tar.gz
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.
-rw-r--r--.github/workflows/autotools.yml2
-rw-r--r--.github/workflows/cmake.yml4
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