Skip to content

Commit

Permalink
Hotfix: Only run PR source standard tests on Master Build (#1047)
Browse files Browse the repository at this point in the history
* 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.
  • Loading branch information
cgardens authored Nov 22, 2020
1 parent 88a236e commit d87a484
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit d87a484

Please sign in to comment.