summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
authorVadim Zeitlin <vz-swig@zeitlins.org>2021-09-30 17:07:52 +0200
committerVadim Zeitlin <vz-swig@zeitlins.org>2021-09-30 17:08:23 +0200
commita2ff01a910665004948301feb5b0d05b41fad1a8 (patch)
tree304262c250196449dd80b365644aa85b5a4e755f /.github/workflows/ci.yml
parent5d9bbea51041b9a70a8fc9d91f1faeb5d58b0772 (diff)
downloadswig-a2ff01a910665004948301feb5b0d05b41fad1a8.tar.gz
Use better names for the CI builds
Don't rely on the auto-generated names which are not very useful: e.g. currently something like "build (1, python, 3)" is shown, while this commit changes it to just "python3" which is both shorter and more readable.
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 562023f8e..c21dc3fe1 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -17,6 +17,11 @@ jobs:
runs-on: ${{ matrix.os || 'ubuntu-20.04' }}
+ # By default, the name of the build is just the language used, but matrix
+ # entries can define the additional "desc" field with any additional
+ # information to include in the name.
+ name: ${{ matrix.SWIGLANG || 'none' }}${{ matrix.PY3 }} ${{ matrix.desc }}
+
strategy:
matrix:
#SWIGJOBS: ["-j2"]