Skip to content

Commit

Permalink
remove later
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticspoon committed May 22, 2024
1 parent 9aebed7 commit 075d2cf
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 35 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/combine_and_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ jobs:
with:
path: artifacts

- name: Decompress chunk test reports
run: |
find artifacts -name "test_reports*.zip" -exec unzip -d test_reports {} \;
find test_reports -name "**/test_reports*.zip" -exec unzip -d test_reports {} \;
- name: Merge parallel runtime log parts
if: env.AZURE_STORAGE_KEY != ''
run: |
Expand All @@ -33,18 +28,3 @@ jobs:
--file parallel_runtime.log \
-n parallel_runtime.log \
--overwrite true
- name: Test Summary
id: test_summary
uses: test-summary/action@v2
with:
paths: |
test_reports/**/rspec*.xml
- name: Set job status
# In this step we set the status of the job. Normally in case of failures, the next steps fail, so we have to
# use `if: always()` to make sure the next steps run.
if: ${{ steps.test_summary.outputs.failed > 0 }}
uses: actions/github-script@v7
with:
script: |
core.setFailed('There are test failures')
15 changes: 0 additions & 15 deletions .github/workflows/rspec_parallel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,21 +118,6 @@ jobs:
# ./cc-test-reporter after-build --exit-code $?
cat tmp/spec_summary.log
- name: Compress reports
run: |
zip -r test_reports_${{ env.GROUPS_UNDERSCORE }}.zip tmp/reports
- name: Compress log
if: env.AZURE_STORAGE_KEY != ''
run: |
mv tmp/parallel_runtime.log parallel_runtime_rspec_${{ env.GROUPS_UNDERSCORE }}.log
- name: Upload test reports
uses: actions/upload-artifact@v4
with:
name: test_reports_${{ env.GROUPS_UNDERSCORE }}.zip
path: test_reports_${{ env.GROUPS_UNDERSCORE }}.zip

- name: Upload file parallel tests runtime log
if: env.AZURE_STORAGE_KEY != ''
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 075d2cf

Please sign in to comment.