Skip to content

Commit

Permalink
Add some descriptive job names
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusPettersson98 committed Jul 23, 2024
1 parent 5799f69 commit f2f5886
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/desktop-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ on:
type: string
jobs:
prepare-matrices:
name: Prepare virtual machines
runs-on: ubuntu-latest
steps:
- name: Generate matrix for Linux builds
Expand Down Expand Up @@ -72,6 +73,7 @@ jobs:
macos_matrix: ${{ env.macos_matrix }}

prepare-linux:
name: Prepare Linux build container
needs: prepare-matrices
if: |
needs.prepare-matrices.outputs.linux_matrix != '[]' &&
Expand All @@ -91,6 +93,7 @@ jobs:
outputs:
container_image: ${{ env.inner_container_image }}
build-linux:
name: Build Linux
needs: prepare-linux
runs-on: ubuntu-latest
container:
Expand Down Expand Up @@ -153,6 +156,7 @@ jobs:
path: ./test/.ci-logs/${{ matrix.os }}_report

build-windows:
name: Build Windows
needs: prepare-matrices
if: |
needs.prepare-matrices.outputs.windows_matrix != '[]' &&
Expand Down Expand Up @@ -224,6 +228,7 @@ jobs:
path: ./test/.ci-logs/${{ matrix.os }}_report

build-macos:
name: Build macOS
needs: prepare-matrices
if: |
needs.prepare-matrices.outputs.macos_matrix != '[]' &&
Expand Down

0 comments on commit f2f5886

Please sign in to comment.