generated from EVerest/everest-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ea0330d
commit b25b6c2
Showing
1 changed file
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -423,7 +423,7 @@ jobs: | |
tar -czf dist.tar.gz dist | ||
- name: Upload dist artifact | ||
if: ${{ steps.create_dist.outcome == 'success' || steps.create_dist.outcome == 'failure' }} | ||
uses: actions/upload-artifact@v4.3.3 | ||
uses: actions/upload-artifact@v4.4.3 | ||
with: | ||
if-no-files-found: error | ||
path: dist.tar.gz | ||
|
@@ -438,7 +438,7 @@ jobs: | |
build-kit run-script install_wheels | ||
- name: Upload wheels artifact | ||
if: ${{ steps.create_wheels.outcome == 'success' || steps.create_wheels.outcome == 'failure' }} | ||
uses: actions/upload-artifact@v4.3.3 | ||
uses: actions/upload-artifact@v4.4.3 | ||
with: | ||
if-no-files-found: error | ||
path: ${{ inputs.wheels_path }} | ||
|
@@ -455,20 +455,20 @@ jobs: | |
if: ${{ inputs.run_integration_tests == 'true' }} | ||
steps: | ||
- name: Download dist dir | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].8 | ||
with: | ||
name: dist | ||
- name: Extract dist.tar.gz | ||
run: | | ||
tar -xzf ${{ github.workspace }}/dist.tar.gz -C ${{ github.workspace }} | ||
- name: Download wheels | ||
if: ${{ inputs.run_install_wheels == 'true' }} | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].8 | ||
with: | ||
name: wheels | ||
path: wheels | ||
- name: Checkout repository | ||
uses: actions/checkout@v4.1.6 | ||
uses: actions/checkout@v4.2.2 | ||
with: | ||
path: source | ||
- name: Setup run scripts | ||
|
@@ -500,7 +500,7 @@ jobs: | |
run-script run_integration_tests | ||
- name: Upload result and report as artifact | ||
if: ${{ steps.run_integration_tests.outcome == 'success' || steps.run_integration_tests.outcome == 'failure' }} | ||
uses: actions/upload-artifact@v4.3.3 | ||
uses: actions/upload-artifact@v4.4.3 | ||
with: | ||
if-no-files-found: error | ||
name: integration-test-report | ||
|
@@ -509,7 +509,7 @@ jobs: | |
${{ inputs.report_html_path }} | ||
- name: Render result | ||
if: ${{ steps.run_integration_tests.outcome == 'success' || steps.run_integration_tests.outcome == 'failure' }} | ||
uses: pmeier/pytest-results-action@v0.6.0 | ||
uses: pmeier/pytest-results-action@v0.7.1 | ||
with: | ||
path: ${{ inputs.result_xml_path }} | ||
summary: True | ||
|
@@ -531,7 +531,7 @@ jobs: | |
ref: ${{ needs.setup-env.outputs.sha_everest_ci }} | ||
path: everest-ci | ||
- name: Download xml coverage report | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].8 | ||
with: | ||
if-no-files-found: error | ||
name: coverage-xml | ||
|
@@ -562,7 +562,7 @@ jobs: | |
artifact_directory: ${{ github.workspace }}/coverage-badge/ | ||
deploy_global_artifact: true | ||
- name: Download html coverage report | ||
uses: actions/[email protected].2 | ||
uses: actions/[email protected].8 | ||
with: | ||
if-no-files-found: error | ||
name: coverage-report | ||
|