From 018c72d45e8296c5ee9cb1f45e868dabf07e6f3d Mon Sep 17 00:00:00 2001 From: Jonathan Vanasco Date: Mon, 5 Dec 2022 17:08:10 -0500 Subject: [PATCH] rename some GitHub actions to use test names as prefix, as introduced in rel_1_4 (#8933) Change-Id: I7f3aa96447ade605becbdef01bc19f3b78dbd6d1 --- .github/workflows/run-on-pr.yaml | 2 +- .github/workflows/run-test.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/run-on-pr.yaml b/.github/workflows/run-on-pr.yaml index 1a622bfd1f..8c7f2715ff 100644 --- a/.github/workflows/run-on-pr.yaml +++ b/.github/workflows/run-on-pr.yaml @@ -17,7 +17,7 @@ permissions: jobs: run-test-amd64: - name: ${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.architecture }}-${{ matrix.os }} + name: test-amd64-${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.architecture }}-${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: # run this job using this matrix, excluding some combinations below. diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml index e05d71bf00..a8141c8545 100644 --- a/.github/workflows/run-test.yaml +++ b/.github/workflows/run-test.yaml @@ -20,7 +20,7 @@ permissions: jobs: run-test: - name: ${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.architecture }}-${{ matrix.os }} + name: test-${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.architecture }}-${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: # run this job using this matrix, excluding some combinations below. @@ -95,7 +95,7 @@ jobs: continue-on-error: ${{ matrix.python-version == 'pypy-3.9' }} run-test-arm64: - name: ${{ matrix.python-version }}-${{ matrix.build-type }}-arm64-ubuntu-latest + name: test-arm64-${{ matrix.python-version }}-${{ matrix.build-type }}-${{ matrix.os }} runs-on: ubuntu-latest strategy: matrix: -- 2.47.2