From 15bd158dedc617fb0715a945d4d46f0a1a3d8326 Mon Sep 17 00:00:00 2001 From: Robert Brignull Date: Tue, 12 May 2020 12:52:15 +0100 Subject: [PATCH 1/3] don't fail-fast on integration tests --- .github/workflows/integration-testing.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index d2079d9bc..a59d60a0e 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -5,6 +5,7 @@ on: [push, pull_request] jobs: multi-language-repo_test-autodetect-languages: strategy: + fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} @@ -28,6 +29,7 @@ jobs: multi-language-repo_test-custom-queries: strategy: + fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} @@ -55,6 +57,7 @@ jobs: # Currently is not possible to analyze Go in conjunction with other languages in macos multi-language-repo_test-go-custom-queries: strategy: + fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-latest] runs-on: ${{ matrix.os }} From c88fb695abc60b667bd299b4ad6052c6c90ed0ce Mon Sep 17 00:00:00 2001 From: Robert Brignull Date: Tue, 12 May 2020 14:53:23 +0100 Subject: [PATCH 2/3] don't run integration tests on PRs --- .github/workflows/integration-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index a59d60a0e..e73553b67 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -1,6 +1,6 @@ name: "Integration Testing" -on: [push, pull_request] +on: [push] jobs: multi-language-repo_test-autodetect-languages: From cc471c20147bd4d942e4222a91d6811f3052ea5f Mon Sep 17 00:00:00 2001 From: David Verdeguer Date: Tue, 12 May 2020 15:58:15 +0200 Subject: [PATCH 3/3] Disable auto-detect language test on macos --- .github/workflows/integration-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index d2079d9bc..77af92c09 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -6,7 +6,7 @@ jobs: multi-language-repo_test-autodetect-languages: strategy: matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: