From b6c0cab4ee558861db2117d93738e9884c7854e7 Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Tue, 14 Jan 2025 11:18:36 +0000 Subject: [PATCH 01/16] Added AIO tests on PR --- .github/workflows/pr-tests.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/pr-tests.yml diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml new file mode 100644 index 0000000..22477a9 --- /dev/null +++ b/.github/workflows/pr-tests.yml @@ -0,0 +1,27 @@ +name: Pull request +on: + pull_request: +jobs: + rocky9-ovs-aio-test: + name: aio (Rocky 9 OVS) + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@main + with: + kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 + os_distribution: rocky + os_release: "9" + ssh_username: cloud-user + neutron_plugin: ovs + OS_CLOUD: openstack + secrets: inherit + ubuntu-jammy-ovn-aio-test: + name: aio (Ubuntu Jammy OVN) + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@main + with: + kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 + os_distribution: ubuntu + os_release: jammy + ssh_username: ubuntu + neutron_plugin: ovn + OS_CLOUD: openstack + secrets: inherit + \ No newline at end of file From e7af5819d121c33a36d2eafa4dfed34b6289cb49 Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Tue, 14 Jan 2025 11:49:17 +0000 Subject: [PATCH 02/16] now uses tests on branch --- .github/workflows/pr-tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 22477a9..3ae6efa 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -4,7 +4,7 @@ on: jobs: rocky9-ovs-aio-test: name: aio (Rocky 9 OVS) - uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@main + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests # todo: change after merge with: kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 os_distribution: rocky @@ -12,10 +12,11 @@ jobs: ssh_username: cloud-user neutron_plugin: ovs OS_CLOUD: openstack + openstack_tests_version: ${{ github.ref }} secrets: inherit ubuntu-jammy-ovn-aio-test: name: aio (Ubuntu Jammy OVN) - uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@main + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests # todo: change after merge with: kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 os_distribution: ubuntu @@ -23,5 +24,5 @@ jobs: ssh_username: ubuntu neutron_plugin: ovn OS_CLOUD: openstack + openstack_tests_version: ${{ github.ref }} secrets: inherit - \ No newline at end of file From 20144bc1b9de14e3d8469d2dc91c705b6cea9c1c Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Tue, 14 Jan 2025 12:28:26 +0000 Subject: [PATCH 03/16] Added pylint --- .github/workflows/pr-tests.yml | 12 ++++++++++++ requirements.txt | 1 + 2 files changed, 13 insertions(+) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 3ae6efa..9c56c8b 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -14,6 +14,7 @@ jobs: OS_CLOUD: openstack openstack_tests_version: ${{ github.ref }} secrets: inherit + ubuntu-jammy-ovn-aio-test: name: aio (Ubuntu Jammy OVN) uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests # todo: change after merge @@ -26,3 +27,14 @@ jobs: OS_CLOUD: openstack openstack_tests_version: ${{ github.ref }} secrets: inherit + + lint: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + + - name: Install pip dependencies + run: pip install -r requirements.txt + + - name: Run pylint + run: pylint stackhpc_openstack_tests/*.py diff --git a/requirements.txt b/requirements.txt index 8b58343..e1fb467 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ opensearch-py==2.5.* prometheus-api-client==0.5.* pytest-testinfra==10.1.* +pylint==3.3.* From 32e180971fba1dbfe7e8ae335510f53282fd37d8 Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Tue, 14 Jan 2025 14:56:11 +0000 Subject: [PATCH 04/16] linter now outputs warning but doesn't fail --- .github/workflows/pr-tests.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 9c56c8b..4f4bbcf 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -37,4 +37,12 @@ jobs: run: pip install -r requirements.txt - name: Run pylint - run: pylint stackhpc_openstack_tests/*.py + run: | + set +e # disabling exit on non-zero error code so can output warnings without failing + pylint stackhpc_openstack_tests/*.py + EXIT_CODE=$? + set -e + if [[ $(($EXIT_CODE & 3)) > 0 ]] #bitwise check for pylint exit codes which indicate errors (01 and 10) https://pylint.readthedocs.io/en/latest/user_guide/usage/run.html#exit-codes + then + exit 1 + fi From 04d4a48c9e1163743d941d78d50824f870360540 Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Wed, 15 Jan 2025 14:04:44 +0000 Subject: [PATCH 05/16] now builds SKC image for testing --- .github/workflows/pr-tests.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 4f4bbcf..8a4a2b9 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -2,11 +2,16 @@ name: Pull request on: pull_request: jobs: + build-kayobe-image: + name: Build Kayobe Image + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-build-kayobe-image.yml@stackhpc/2024.1 + rocky9-ovs-aio-test: name: aio (Rocky 9 OVS) uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests # todo: change after merge + needs: build-kayobe-image with: - kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 + kayobe_image: ${{ needs.build-kayobe-image.outputs.kayobe_image }} os_distribution: rocky os_release: "9" ssh_username: cloud-user @@ -17,9 +22,10 @@ jobs: ubuntu-jammy-ovn-aio-test: name: aio (Ubuntu Jammy OVN) + needs: build-kayobe-image uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests # todo: change after merge with: - kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 + kayobe_image: ${{ needs.build-kayobe-image.outputs.kayobe_image }} os_distribution: ubuntu os_release: jammy ssh_username: ubuntu From 5c8094afac51d702ecf3b3b53f6c4e1f14aab55c Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Wed, 15 Jan 2025 14:16:22 +0000 Subject: [PATCH 06/16] fixed branch and variable names --- .github/workflows/pr-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 8a4a2b9..f6e1685 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -4,7 +4,7 @@ on: jobs: build-kayobe-image: name: Build Kayobe Image - uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-build-kayobe-image.yml@stackhpc/2024.1 + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-build-kayobe-image.yml@parameterise-aio-tests #todo: change after merge rocky9-ovs-aio-test: name: aio (Rocky 9 OVS) @@ -17,7 +17,7 @@ jobs: ssh_username: cloud-user neutron_plugin: ovs OS_CLOUD: openstack - openstack_tests_version: ${{ github.ref }} + stackhpc_cloud_tests_version: ${{ github.ref }} secrets: inherit ubuntu-jammy-ovn-aio-test: @@ -31,7 +31,7 @@ jobs: ssh_username: ubuntu neutron_plugin: ovn OS_CLOUD: openstack - openstack_tests_version: ${{ github.ref }} + stackhpc_cloud_tests_version: ${{ github.ref }} secrets: inherit lint: From 5a011f4d60e8073a31ac67a616744408af120a5d Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Wed, 15 Jan 2025 14:38:12 +0000 Subject: [PATCH 07/16] fixed wrong repos getting checked out --- .github/workflows/pr-tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index f6e1685..69aeadb 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -5,6 +5,8 @@ jobs: build-kayobe-image: name: Build Kayobe Image uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-build-kayobe-image.yml@parameterise-aio-tests #todo: change after merge + with: + repository: stackhpc/stackhpc-kayobe-config rocky9-ovs-aio-test: name: aio (Rocky 9 OVS) @@ -18,6 +20,7 @@ jobs: neutron_plugin: ovs OS_CLOUD: openstack stackhpc_cloud_tests_version: ${{ github.ref }} + repository: stackhpc/stackhpc-kayobe-config secrets: inherit ubuntu-jammy-ovn-aio-test: @@ -32,6 +35,7 @@ jobs: neutron_plugin: ovn OS_CLOUD: openstack stackhpc_cloud_tests_version: ${{ github.ref }} + repository: stackhpc/stackhpc-kayobe-config secrets: inherit lint: From 46d93b22f21bd8cbf8bf9bc20481b19e84c59b77 Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Wed, 15 Jan 2025 14:57:02 +0000 Subject: [PATCH 08/16] rename --- .github/workflows/pr-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 69aeadb..5fe7092 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -49,7 +49,7 @@ jobs: - name: Run pylint run: | set +e # disabling exit on non-zero error code so can output warnings without failing - pylint stackhpc_openstack_tests/*.py + pylint stackhpc_cloud_tests/*.py EXIT_CODE=$? set -e if [[ $(($EXIT_CODE & 3)) > 0 ]] #bitwise check for pylint exit codes which indicate errors (01 and 10) https://pylint.readthedocs.io/en/latest/user_guide/usage/run.html#exit-codes From 6d3ff7b6bf30ccd2ebe565da7f70f944f28f3677 Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Thu, 16 Jan 2025 09:50:28 +0000 Subject: [PATCH 09/16] removed image build and set skc version to main --- .github/workflows/pr-tests.yml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 5fe7092..7b3a109 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -2,18 +2,12 @@ name: Pull request on: pull_request: jobs: - build-kayobe-image: - name: Build Kayobe Image - uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-build-kayobe-image.yml@parameterise-aio-tests #todo: change after merge - with: - repository: stackhpc/stackhpc-kayobe-config rocky9-ovs-aio-test: name: aio (Rocky 9 OVS) - uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests # todo: change after merge - needs: build-kayobe-image + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@stackhpc/2024.1 with: - kayobe_image: ${{ needs.build-kayobe-image.outputs.kayobe_image }} + kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 os_distribution: rocky os_release: "9" ssh_username: cloud-user @@ -25,10 +19,9 @@ jobs: ubuntu-jammy-ovn-aio-test: name: aio (Ubuntu Jammy OVN) - needs: build-kayobe-image - uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests # todo: change after merge + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@stackhpc/2024.1 with: - kayobe_image: ${{ needs.build-kayobe-image.outputs.kayobe_image }} + kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 os_distribution: ubuntu os_release: jammy ssh_username: ubuntu From 941501c589a60837113edf78fffaba5bf8ca78b7 Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Thu, 16 Jan 2025 10:08:56 +0000 Subject: [PATCH 10/16] updated with new skc params --- .github/workflows/pr-tests.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 7b3a109..5c11f41 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -15,6 +15,8 @@ jobs: OS_CLOUD: openstack stackhpc_cloud_tests_version: ${{ github.ref }} repository: stackhpc/stackhpc-kayobe-config + called_from_external: true + external_ref_override: stackhpc/2024.1 secrets: inherit ubuntu-jammy-ovn-aio-test: @@ -29,6 +31,8 @@ jobs: OS_CLOUD: openstack stackhpc_cloud_tests_version: ${{ github.ref }} repository: stackhpc/stackhpc-kayobe-config + called_from_external: true + external_ref_override: stackhpc/2024.1 secrets: inherit lint: From d37e3a13b87d11efd5ebb175e87cfe9a899115a8 Mon Sep 17 00:00:00 2001 From: wtripp180901 <78219569+wtripp180901@users.noreply.github.com> Date: Thu, 16 Jan 2025 15:16:10 +0000 Subject: [PATCH 11/16] testing with old branch --- .github/workflows/pr-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 5c11f41..6311858 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -5,7 +5,7 @@ jobs: rocky9-ovs-aio-test: name: aio (Rocky 9 OVS) - uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@stackhpc/2024.1 + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests with: kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 os_distribution: rocky @@ -21,7 +21,7 @@ jobs: ubuntu-jammy-ovn-aio-test: name: aio (Ubuntu Jammy OVN) - uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@stackhpc/2024.1 + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests with: kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 os_distribution: ubuntu From b94fa9393a4ba406632a032186a14a952b5d5ef4 Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Tue, 21 Jan 2025 11:28:44 +0000 Subject: [PATCH 12/16] set to main branch --- .github/workflows/pr-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 6311858..5c11f41 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -5,7 +5,7 @@ jobs: rocky9-ovs-aio-test: name: aio (Rocky 9 OVS) - uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@stackhpc/2024.1 with: kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 os_distribution: rocky @@ -21,7 +21,7 @@ jobs: ubuntu-jammy-ovn-aio-test: name: aio (Ubuntu Jammy OVN) - uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@parameterise-aio-tests + uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@stackhpc/2024.1 with: kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 os_distribution: ubuntu From 291c859b886ad2e1941ef8245bd12ee43440fcda Mon Sep 17 00:00:00 2001 From: wtripp180901 Date: Tue, 21 Jan 2025 11:38:49 +0000 Subject: [PATCH 13/16] updated with new SKC ref vars --- .github/workflows/pr-tests.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 5c11f41..71d4085 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -2,7 +2,14 @@ name: Pull request on: pull_request: jobs: - + test-secrets: + runs-on: ubuntu-22.04 + steps: + - name: "check is MY_SECRET exists" + env: + super_secret: ${{ secrets.CLOUDS_YAML }} + if: ${{ env.super_secret == '' }} + run: echo 'secret not defined' rocky9-ovs-aio-test: name: aio (Rocky 9 OVS) uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@stackhpc/2024.1 @@ -15,8 +22,7 @@ jobs: OS_CLOUD: openstack stackhpc_cloud_tests_version: ${{ github.ref }} repository: stackhpc/stackhpc-kayobe-config - called_from_external: true - external_ref_override: stackhpc/2024.1 + github_ref: stackhpc/2024.1 secrets: inherit ubuntu-jammy-ovn-aio-test: @@ -31,8 +37,7 @@ jobs: OS_CLOUD: openstack stackhpc_cloud_tests_version: ${{ github.ref }} repository: stackhpc/stackhpc-kayobe-config - called_from_external: true - external_ref_override: stackhpc/2024.1 + github_ref: stackhpc/2024.1 secrets: inherit lint: From 70d530678601916d71be45928593416ddff53cb0 Mon Sep 17 00:00:00 2001 From: wtripp180901 <78219569+wtripp180901@users.noreply.github.com> Date: Thu, 23 Jan 2025 13:22:37 +0000 Subject: [PATCH 14/16] overriding skc runs on --- .github/workflows/pr-tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 71d4085..5defdd4 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -23,6 +23,7 @@ jobs: stackhpc_cloud_tests_version: ${{ github.ref }} repository: stackhpc/stackhpc-kayobe-config github_ref: stackhpc/2024.1 + runs-on: arc-cloud-tests-runner secrets: inherit ubuntu-jammy-ovn-aio-test: @@ -38,6 +39,7 @@ jobs: stackhpc_cloud_tests_version: ${{ github.ref }} repository: stackhpc/stackhpc-kayobe-config github_ref: stackhpc/2024.1 + runs-on: arc-cloud-tests-runner secrets: inherit lint: From 27fd89846c2c84886ca550f538cd1f4b3981d1fd Mon Sep 17 00:00:00 2001 From: wtripp180901 <78219569+wtripp180901@users.noreply.github.com> Date: Thu, 23 Jan 2025 13:36:26 +0000 Subject: [PATCH 15/16] revert --- .github/workflows/pr-tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 5defdd4..71d4085 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -23,7 +23,6 @@ jobs: stackhpc_cloud_tests_version: ${{ github.ref }} repository: stackhpc/stackhpc-kayobe-config github_ref: stackhpc/2024.1 - runs-on: arc-cloud-tests-runner secrets: inherit ubuntu-jammy-ovn-aio-test: @@ -39,7 +38,6 @@ jobs: stackhpc_cloud_tests_version: ${{ github.ref }} repository: stackhpc/stackhpc-kayobe-config github_ref: stackhpc/2024.1 - runs-on: arc-cloud-tests-runner secrets: inherit lint: From 71cceecf0d8fbb2852167e13e85dbefb549112b1 Mon Sep 17 00:00:00 2001 From: "max.bed4d" Date: Tue, 28 Jan 2025 14:54:08 +0000 Subject: [PATCH 16/16] test new runner --- .github/workflows/pr-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index 71d4085..2329b75 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -14,6 +14,7 @@ jobs: name: aio (Rocky 9 OVS) uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@stackhpc/2024.1 with: + runs-on: arc-aio-cloud-tests-runner kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 os_distribution: rocky os_release: "9" @@ -29,6 +30,7 @@ jobs: name: aio (Ubuntu Jammy OVN) uses: stackhpc/stackhpc-kayobe-config/.github/workflows/stackhpc-all-in-one.yml@stackhpc/2024.1 with: + runs-on: arc-aio-cloud-tests-runner kayobe_image: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2024.1 os_distribution: ubuntu os_release: jammy @@ -41,7 +43,7 @@ jobs: secrets: inherit lint: - runs-on: ubuntu-22.04 + runs-on: arc-aio-cloud-tests-runner steps: - uses: actions/checkout@v4