From e7b3904df4bcf4ef87c81f77d64a28351d417bab Mon Sep 17 00:00:00 2001 From: Hyounggyu Choi Date: Tue, 6 Aug 2024 11:10:01 +0200 Subject: [PATCH] GHA: Change label from s390x to s390x-large Recently, an additional s390x runner was added to the organization. However, it is insufficient for running the operator e2e tests and will function as a supplementary builder. This commit changes the label for the platform from s390x to s390x-large to differentiate this runner. Signed-off-by: Hyounggyu Choi --- .github/workflows/ccruntime-nightly.yaml | 2 +- .github/workflows/ccruntime_e2e.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ccruntime-nightly.yaml b/.github/workflows/ccruntime-nightly.yaml index f59efcc2..2eaee9a6 100644 --- a/.github/workflows/ccruntime-nightly.yaml +++ b/.github/workflows/ccruntime-nightly.yaml @@ -11,7 +11,7 @@ jobs: commit-hash: ${{ github.sha }} e2e-ibm-se-nightly: - runs-on: s390x + runs-on: s390x-large strategy: fail-fast: false matrix: diff --git a/.github/workflows/ccruntime_e2e.yaml b/.github/workflows/ccruntime_e2e.yaml index 1a47693c..672f096a 100644 --- a/.github/workflows/ccruntime_e2e.yaml +++ b/.github/workflows/ccruntime_e2e.yaml @@ -24,7 +24,7 @@ jobs: instance: - "az-ubuntu-2004" - "az-ubuntu-2204" - - "s390x" + - "s390x-large" - "tdx" - "sev" - "sev-snp" @@ -66,7 +66,7 @@ jobs: cd tests/e2e export PATH="$PATH:/usr/local/bin" args="-u" - if [ $RUNNING_INSTANCE = "s390x" ]; then + if [ $RUNNING_INSTANCE = "s390x-large" ]; then args="" fi ./run-local.sh -t -r "${{ matrix.runtimeclass }}" "${args}"