Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/regression_reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,27 +120,27 @@ jobs:
testrun_name_strip="$(echo "${{ inputs.testrun_name }}" | sed 's/[^a-zA-Z0-9_-]//g')"
curl -s -X PUT --fail-with-body -u ${{ secrets.TCACHE_BASIC_AUTH }} "${{ secrets.TCACHE_URL }}/${testrun_name_strip}/${{ github.run_number }}/import" -F "[email protected]"
fi
- name: Upload testing artifacts on failure
- name: Upload testing artifacts on failure
uses: actions/upload-artifact@v4
if: failure()
with:
name: testing-artifacts
path: testing_artifacts.tar.xz
- name: Upload Allure results
- name: Upload Allure results
uses: actions/upload-artifact@v4
# When using `always()`, you lose ability to manually cancel the workflow.
# Use `success() || failure()` instead.
if: success() || failure()
with:
name: allure-results
path: allure-results.tar.xz
- name: Upload HTML report
- name: Upload HTML report
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: testrun-report
path: testrun-report.html
- name: Upload testrun files
- name: Upload testrun files
uses: actions/upload-artifact@v4
if: success() || failure()
with:
Expand All @@ -151,7 +151,7 @@ jobs:
testrun-report.xml
deselected_tests.txt
requirements_coverage.json
- name: Upload CLI coverage
- name: Upload CLI coverage
uses: actions/upload-artifact@v4
if: success() || failure()
with:
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/upgrade_reusable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,33 +50,33 @@ jobs:
echo "::group::Script setup"
./.github/node_upgrade.sh
echo "::endgroup::"
- name: Upload testing artifacts on failure
- name: Upload testing artifacts on failure
uses: actions/upload-artifact@v4
if: failure()
with:
name: testing-artifacts
path: testing_artifacts.tar.xz
- name: Upload Allure results for step1
- name: Upload Allure results for step1
uses: actions/upload-artifact@v4
# When using `always()`, you lose ability to manually cancel the workflow.
# Use `success() || failure()` instead.
if: success() || failure()
with:
name: allure-results-step1
path: allure-results-step1.tar.xz
- name: Upload Allure results for step2
- name: Upload Allure results for step2
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: allure-results-step2
path: allure-results-step2.tar.xz
- name: Upload Allure results for step3
- name: Upload Allure results for step3
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: allure-results-step3
path: allure-results-step3.tar.xz
- name: Upload HTML reports
- name: Upload HTML reports
uses: actions/upload-artifact@v4
if: success() || failure()
with:
Expand All @@ -85,15 +85,15 @@ jobs:
testrun-report-step1.html
testrun-report-step2.html
testrun-report-step3.html
- name: Upload testrun files
- name: Upload testrun files
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: testrun-files
path: |
scheduling.log.xz
errors_all.log
- name: Upload CLI coverage
- name: Upload CLI coverage
uses: actions/upload-artifact@v4
if: success() || failure()
with:
Expand Down