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.
This commit is contained in:
Vadim Zeitlin 2021-09-30 17:07:52 +02:00
commit a2ff01a910

View file

@ -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"]