From ce476b46104323589e4bbd95a4adfff87d3083ea Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Wed, 5 Oct 2022 16:32:10 -0400 Subject: [PATCH] Don't run linux integration tests on the unit matrix entry (#6339) Signed-off-by: Sebastian Malton Signed-off-by: Sebastian Malton --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9f50b2c7b3..f7880506bf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -73,7 +73,7 @@ jobs: - run: xvfb-run --auto-servernum --server-args='-screen 0, 1600x900x24' make integration name: Run Linux integration tests - if: runner.os == 'Linux' + if: ${{ runner.os == 'Linux' && matrix.type == 'smoke' }} - run: make integration name: Run macOS integration tests