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:
parent
5d9bbea510
commit
a2ff01a910
1 changed files with 5 additions and 0 deletions
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue