From b820d1c8baef9e32b70c192ffe5ec57bb340b4f3 Mon Sep 17 00:00:00 2001 From: Dmitry Misharov Date: Thu, 4 Jan 2024 14:19:10 +0100 Subject: [PATCH] fix buildtest job runner Reviewed-by: Tom Cosgrove Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/23203) (cherry picked from commit 63256ca9edfc94d06de0a68097950039515fe852) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 078864471cb..6944f370f2f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -250,7 +250,7 @@ jobs: run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} buildtest: - runs-on: ubuntu-latest + runs-on: ${{ github.server_url == 'https://github.com' && 'ubuntu-latest' || 'ubuntu-22.04-self-hosted' }} steps: - uses: actions/checkout@v4 - name: config -- 2.47.2