From d87a4844a6e1cce61d246c946c45c4d074347523 Mon Sep 17 00:00:00 2001 From: Charles Date: Sat, 21 Nov 2020 18:36:32 -0800 Subject: [PATCH] Hotfix: Only run PR source standard tests on Master Build (#1047) * Master build is failing because the image is running out of disk space. Until we can fix this properly we need to do less in that build. * Only run the standard source tests that are run in PR builds on master build until we can fix. --- .github/workflows/gradle.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 9d11013a42883..8dc89fad59c50 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -111,9 +111,15 @@ jobs: if: success() && github.ref != 'refs/heads/master' run: ./tools/bin/standard_test_pr.sh - - name: Run Standard Source Tests (Master) + # todo (cgardens) - just run pr integration tests, until we can fix the build. + # https://airbytehq.slack.com/archives/C019WEENQRM/p1606012092002600?thread_ts=1605924059.000200&cid=C019WEENQRM + - name: Run Standard Source Tests (Master Tmp) if: success() && github.ref == 'refs/heads/master' - run: ./gradlew --no-daemon standardSourceTestPython --scan + run: ./tools/bin/standard_test_pr.sh + + # - name: Run Standard Source Tests (Master) + # if: success() && github.ref == 'refs/heads/master' + # run: ./gradlew --no-daemon standardSourceTestPython --scan - name: Build Core Docker Images if: success() && github.ref == 'refs/heads/master'