ci: names of jobs reordered to better reflect a new matrix sorting algorithm

This commit is contained in:
Mateusz Pusz
2024-11-13 23:09:00 +01:00
parent f5b9288825
commit e4bccad75c
4 changed files with 4 additions and 4 deletions

View File

@ -54,7 +54,7 @@ jobs:
- id: set-matrix - id: set-matrix
run: python .github/generate-job-matrix.py --preset clang-tidy --seed 42 --debug combinations counts run: python .github/generate-job-matrix.py --preset clang-tidy --seed 42 --debug combinations counts
build: build:
name: "${{ matrix.formatting }} ${{ matrix.contracts }} C++${{ matrix.std }} ${{ matrix.config.name }} ${{ matrix.build_type }}" name: "${{ matrix.config.name }} C++${{ matrix.std }} ${{ matrix.formatting }} ${{ matrix.contracts }} ${{ matrix.build_type }}"
runs-on: ${{ matrix.config.os }} runs-on: ${{ matrix.config.os }}
needs: generate-matrix needs: generate-matrix
strategy: strategy:

View File

@ -52,7 +52,7 @@ jobs:
- id: set-matrix - id: set-matrix
run: python .github/generate-job-matrix.py --preset conan --seed 42 --debug combinations counts run: python .github/generate-job-matrix.py --preset conan --seed 42 --debug combinations counts
build: build:
name: "${{ matrix.formatting }} ${{ matrix.contracts }} C++${{ matrix.std }} ${{ matrix.config.name }} ${{ matrix.build_type }}" name: "${{ matrix.config.name }} C++${{ matrix.std }} ${{ matrix.formatting }} ${{ matrix.contracts }} ${{ matrix.build_type }}"
runs-on: ${{ matrix.config.os }} runs-on: ${{ matrix.config.os }}
needs: generate-matrix needs: generate-matrix
strategy: strategy:

View File

@ -53,7 +53,7 @@ jobs:
- id: set-matrix - id: set-matrix
run: python .github/generate-job-matrix.py --preset freestanding --seed 42 --debug combinations counts run: python .github/generate-job-matrix.py --preset freestanding --seed 42 --debug combinations counts
build: build:
name: "${{ matrix.formatting }} ${{ matrix.contracts }} C++${{ matrix.std }} ${{ matrix.config.name }} ${{ matrix.build_type }}" name: "${{ matrix.config.name }} C++${{ matrix.std }} ${{ matrix.formatting }} ${{ matrix.contracts }} ${{ matrix.build_type }}"
runs-on: ${{ matrix.config.os }} runs-on: ${{ matrix.config.os }}
needs: generate-matrix needs: generate-matrix
strategy: strategy:

View File

@ -57,7 +57,7 @@ jobs:
- id: set-matrix - id: set-matrix
run: python .github/generate-job-matrix.py --preset conan --seed 42 --debug combinations counts run: python .github/generate-job-matrix.py --preset conan --seed 42 --debug combinations counts
test_package: test_package:
name: "${{ matrix.formatting }} ${{ matrix.contracts }} C++${{ matrix.std }} ${{ matrix.config.name }} ${{ matrix.build_type }}" name: "${{ matrix.config.name }} C++${{ matrix.std }} ${{ matrix.formatting }} ${{ matrix.contracts }} ${{ matrix.build_type }}"
runs-on: ${{ matrix.config.os }} runs-on: ${{ matrix.config.os }}
needs: generate-matrix needs: generate-matrix
strategy: strategy: