mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 04:34:32 +08:00
This reverts commit 387f2c52e6
.
Merging fails if there are no artifacts matching the pattern. Reverting while we work out a path forward
This commit is contained in:
parent
3ad2fd032b
commit
d04fd3a8ac
29
.github/workflows/tests.yml
vendored
29
.github/workflows/tests.yml
vendored
|
@ -306,10 +306,10 @@ jobs:
|
|||
shell: bash
|
||||
|
||||
- name: Upload failed system test screenshots
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3 # TODO (tgxworld): V4 doesn't allow us to upload multiple uploads to the same artifact name so keep at V3 for now.
|
||||
if: always() && steps.check-failed-system-test-screenshots.outputs.exists == 'true'
|
||||
with:
|
||||
name: failed-system-test-screenshots-${{ matrix.build_type }}-${{ matrix.target }}
|
||||
name: failed-system-test-screenshots
|
||||
path: tmp/capybara/*.png
|
||||
|
||||
- name: Check for flaky tests report
|
||||
|
@ -335,10 +335,10 @@ jobs:
|
|||
run: cp tmp/turbo_rspec_flaky_tests.json tmp/turbo_rspec_flaky_tests-${{ matrix.build_type }}-${{ matrix.target }}-${{ steps.fetch-job-id.outputs.job_id }}.json
|
||||
|
||||
- name: Upload flaky tests report
|
||||
uses: actions/upload-artifact@v4
|
||||
uses: actions/upload-artifact@v3 # TODO (tgxworld): V4 doesn't allow us to upload multiple uploads to the same artifact name so keep at V3 for now
|
||||
if: always() && steps.check-flaky-spec-report.outputs.exists == 'true'
|
||||
with:
|
||||
name: flaky-test-reports-${{ matrix.build_type }}-${{ matrix.target }}
|
||||
name: flaky-test-reports
|
||||
path: tmp/turbo_rspec_flaky_tests-${{ matrix.build_type }}-${{ matrix.target }}-${{ steps.fetch-job-id.outputs.job_id }}.json
|
||||
|
||||
- name: Check Annotations
|
||||
|
@ -408,24 +408,3 @@ jobs:
|
|||
with:
|
||||
name: ember-exam-execution-${{ matrix.browser }}-${{ hashFiles('./app/assets/javascripts/discourse/test-execution-*.json') }}
|
||||
path: ./app/assets/javascripts/discourse/test-execution-*.json
|
||||
|
||||
merge:
|
||||
if: github.repository == 'discourse/discourse' && github.ref == 'refs/heads/main'
|
||||
runs-on: debian-12
|
||||
needs: build
|
||||
steps:
|
||||
- name: Merge Artifacts
|
||||
uses: actions/upload-artifact/merge@v4
|
||||
with:
|
||||
name: failed-system-test-screenshots
|
||||
pattern: failed-system-test-screenshots-*
|
||||
delete-merged: true
|
||||
separate-directories: false
|
||||
|
||||
- name: Merge Artifacts
|
||||
uses: actions/upload-artifact/merge@v4
|
||||
with:
|
||||
name: flaky-test-reports
|
||||
pattern: flaky-test-reports-*
|
||||
delete-merged: true
|
||||
separate-directories: false
|
||||
|
|
Loading…
Reference in New Issue
Block a user