From 3f8c9e7a7cddc7de1415d4ae626a5b598e569589 Mon Sep 17 00:00:00 2001 From: Alex Zenla Date: Tue, 9 Apr 2024 00:05:06 -0700 Subject: [PATCH] chore(workflows): prefix all jobs with workflow name to help distinguish (#35) --- .github/workflows/client.yml | 2 +- .github/workflows/kernel.yml | 2 +- .github/workflows/nightly.yml | 4 ++-- .github/workflows/os.yml | 2 +- .github/workflows/release-binaries.yml | 4 ++-- .github/workflows/release-plz.yml | 1 + .github/workflows/server.yml | 8 ++++---- 7 files changed, 12 insertions(+), 11 deletions(-) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index 9bdbabc..56ce09b 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -22,7 +22,7 @@ jobs: TARGET_OS: "${{ matrix.platform.os }}" TARGET_ARCH: "${{ matrix.platform.arch }}" runs-on: "${{ matrix.platform.on }}" - name: build ${{ matrix.platform.os }}-${{ matrix.platform.arch }} + name: client build ${{ matrix.platform.os }}-${{ matrix.platform.arch }} defaults: run: shell: bash diff --git a/.github/workflows/kernel.yml b/.github/workflows/kernel.yml index 03310c8..95792f9 100644 --- a/.github/workflows/kernel.yml +++ b/.github/workflows/kernel.yml @@ -20,7 +20,7 @@ jobs: - aarch64 env: TARGET_ARCH: "${{ matrix.arch }}" - name: build ${{ matrix.arch }} + name: kernel build ${{ matrix.arch }} steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 34d4426..8f28bf0 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -14,7 +14,7 @@ jobs: - aarch64 env: TARGET_ARCH: "${{ matrix.arch }}" - name: server ${{ matrix.arch }} + name: nightly server ${{ matrix.arch }} steps: - uses: actions/checkout@v4 with: @@ -70,7 +70,7 @@ jobs: TARGET_OS: "${{ matrix.platform.os }}" TARGET_ARCH: "${{ matrix.platform.arch }}" runs-on: "${{ matrix.platform.on }}" - name: client ${{ matrix.platform.os }}-${{ matrix.platform.arch }} + name: nightly client ${{ matrix.platform.os }}-${{ matrix.platform.arch }} defaults: run: shell: bash diff --git a/.github/workflows/os.yml b/.github/workflows/os.yml index 81131a1..20d15ee 100644 --- a/.github/workflows/os.yml +++ b/.github/workflows/os.yml @@ -21,7 +21,7 @@ jobs: - aarch64 env: TARGET_ARCH: "${{ matrix.arch }}" - name: build ${{ matrix.arch }} + name: os build ${{ matrix.arch }} steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml index edd5c21..b52a0f1 100644 --- a/.github/workflows/release-binaries.yml +++ b/.github/workflows/release-binaries.yml @@ -23,7 +23,7 @@ jobs: - aarch64 env: TARGET_ARCH: "${{ matrix.arch }}" - name: server ${{ matrix.arch }} + name: release-binaries server ${{ matrix.arch }} steps: - uses: actions/checkout@v4 with: @@ -63,7 +63,7 @@ jobs: TARGET_OS: "${{ matrix.platform.os }}" TARGET_ARCH: "${{ matrix.platform.arch }}" runs-on: "${{ matrix.platform.on }}" - name: client ${{ matrix.platform.os }}-${{ matrix.platform.arch }} + name: release-binaries client ${{ matrix.platform.os }}-${{ matrix.platform.arch }} defaults: run: shell: bash diff --git a/.github/workflows/release-plz.yml b/.github/workflows/release-plz.yml index b0a1820..765bc0d 100644 --- a/.github/workflows/release-plz.yml +++ b/.github/workflows/release-plz.yml @@ -8,6 +8,7 @@ on: - main concurrency: group: "${{ github.workflow }}" + cancel-in-progress: true jobs: release-plz: name: release-plz diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index 4f7e72d..02b1baa 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -17,7 +17,7 @@ jobs: - aarch64 env: TARGET_ARCH: "${{ matrix.arch }}" - name: build ${{ matrix.arch }} + name: server build ${{ matrix.arch }} steps: - uses: actions/checkout@v4 with: @@ -34,7 +34,7 @@ jobs: - aarch64 env: TARGET_ARCH: "${{ matrix.arch }}" - name: test ${{ matrix.arch }} + name: server test ${{ matrix.arch }} steps: - uses: actions/checkout@v4 with: @@ -51,7 +51,7 @@ jobs: - aarch64 env: TARGET_ARCH: "${{ matrix.arch }}" - name: clippy ${{ matrix.arch }} + name: server clippy ${{ matrix.arch }} steps: - uses: actions/checkout@v4 with: @@ -70,7 +70,7 @@ jobs: - aarch64 env: TARGET_ARCH: "${{ matrix.arch }}" - name: initrd ${{ matrix.arch }} + name: server initrd ${{ matrix.arch }} steps: - uses: actions/checkout@v4 with: