From 4d86bbd598004ee60c4884ffe4b8a464ab64e3c7 Mon Sep 17 00:00:00 2001 From: Eduard Bartosh Date: Sat, 25 Dec 2021 16:10:50 +0200 Subject: [PATCH] e2e workflows:get rid of one_at_a_time concurency 'concurrency: one_at_a_time_sgx' option doesn't work as expected it causes failures of the builds when worker is busy. Without this option job run stays in waiting state until a worker picks it up. --- .github/workflows/e2e-qat.yml | 1 - .github/workflows/e2e-sgx.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/e2e-qat.yml b/.github/workflows/e2e-qat.yml index 5a105d2d..773cf6c8 100644 --- a/.github/workflows/e2e-qat.yml +++ b/.github/workflows/e2e-qat.yml @@ -15,7 +15,6 @@ jobs: name: e2e-qat #if: contains('["bart0sh"]', github.actor) runs-on: [self-hosted, linux, x64, qat] - concurrency: one_at_a_time_qat steps: - uses: actions/checkout@v2 with: diff --git a/.github/workflows/e2e-sgx.yml b/.github/workflows/e2e-sgx.yml index 25e3f962..87453bf2 100644 --- a/.github/workflows/e2e-sgx.yml +++ b/.github/workflows/e2e-sgx.yml @@ -14,7 +14,6 @@ jobs: e2e-sgx: name: e2e-sgx runs-on: [self-hosted, linux, x64, sgx] - concurrency: one_at_a_time_sgx steps: - uses: actions/checkout@v2 with: