From b71345655fa18bcd324ad76d5cca27b38c4a6eec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Budiseli=C4=87?= Date: Fri, 7 May 2021 13:37:45 +0200 Subject: [PATCH] Add balancing of GHA jobs across runners (#146) --- .github/workflows/diff.yaml | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/.github/workflows/diff.yaml b/.github/workflows/diff.yaml index 9447ab957..3d22a6493 100644 --- a/.github/workflows/diff.yaml +++ b/.github/workflows/diff.yaml @@ -10,7 +10,7 @@ on: jobs: community_build: name: "Community build" - runs-on: [self-hosted, General, Linux, X64, Debian10] + runs-on: [self-hosted, Linux, X64, Diff] env: THREADS: 24 @@ -67,7 +67,7 @@ jobs: code_analysis: name: "Code analysis" - runs-on: [self-hosted, General, Linux, X64, Debian10] + runs-on: [self-hosted, Linux, X64, Diff] env: THREADS: 24 @@ -131,7 +131,7 @@ jobs: debug_build: name: "Debug build" - runs-on: [self-hosted, General, Linux, X64, Debian10] + runs-on: [self-hosted, Linux, X64, Diff] env: THREADS: 24 @@ -205,7 +205,7 @@ jobs: release_build: name: "Release build" - runs-on: [self-hosted, General, Linux, X64, Debian10] + runs-on: [self-hosted, Linux, X64, Diff] env: THREADS: 24 @@ -230,13 +230,6 @@ jobs: cmake -DCMAKE_BUILD_TYPE=release .. make -j$THREADS - - name: Run macro benchmark tests - run: | - cd tests/macro_benchmark - ./harness QuerySuite MemgraphRunner \ - --groups aggregation 1000_create unwind_create dense_expand match \ - --no-strict - - name: Run GQL Behave tests run: | cd tests/gql_behave