@@ -540,6 +540,15 @@ jobs:
540
540
path : ' /actions-runner/_work/airbyte/airbyte/*'
541
541
key : ${{ secrets.BUILDPULSE_ACCESS_KEY_ID }}
542
542
secret : ${{ secrets.BUILDPULSE_SECRET_ACCESS_KEY }}
543
+
544
+ - name : Upload test results to Github for analysis
545
+ if : ' !cancelled()' # Run this step even when the tests fail. Skip if the workflow is cancelled.
546
+ uses : actions/upload-artifact@v3
547
+ with :
548
+ path : |
549
+ /actions-runner/_work/airbyte/airbyte/*/build/test-results/*/*.xml
550
+ /actions-runner/_work/airbyte/airbyte/*/*/build/test-results/*/*.xml
551
+ name : test-results-build
543
552
544
553
# In case of self-hosted EC2 errors, remove this block.
545
554
stop-platform-build-runner :
@@ -689,6 +698,15 @@ jobs:
689
698
path : ' /actions-runner/_work/airbyte/airbyte/*'
690
699
key : ${{ secrets.BUILDPULSE_ACCESS_KEY_ID }}
691
700
secret : ${{ secrets.BUILDPULSE_SECRET_ACCESS_KEY }}
701
+
702
+ - name : Upload test results to Github for analysis
703
+ if : ' !cancelled()' # Run this step even when the tests fail. Skip if the workflow is cancelled.
704
+ uses : actions/upload-artifact@v3
705
+ with :
706
+ path : |
707
+ /actions-runner/_work/airbyte/airbyte/*/build/test-results/*/*.xml
708
+ /actions-runner/_work/airbyte/airbyte/*/*/build/test-results/*/*.xml
709
+ name : test-results-kube
692
710
693
711
- uses : actions/upload-artifact@v2
694
712
if : failure()
0 commit comments