-
Notifications
You must be signed in to change notification settings - Fork 301
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Phil Henderson <[email protected]>
- Loading branch information
Showing
1 changed file
with
8 additions
and
10 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 |
---|---|---|
|
@@ -243,17 +243,15 @@ jobs: | |
- name: Run Unit Testing | ||
run: docker run --name unit-test build-image-${{github.run_id}}-${{github.run_attempt}} | ||
./daos/utils/ci/run_unit_tests_in_gha.sh | ||
- name: Fetch results | ||
if: always() | ||
run: docker cp build-image-${{github.run_id}}-${{github.run_attempt}}:/home/daos/daos/nlt-junit.xml ./ | ||
- name: Publish NLT test results | ||
if: always() | ||
uses: EnricoMi/[email protected] | ||
- name: Fetch test results | ||
run: docker cp unit-test:/unit_test_logs ./artifacts; | ||
docker cp unit-test:/covc_test_logs ./artifacts; | ||
docker cp unit-test:/covc_vm_test ./artifacts | ||
- name: Upload test results | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
files: nlt-junit.xml | ||
comment_mode: off # yamllint disable-line rule:truthy | ||
fail_on: nothing | ||
name: Bullseye Unit Testing test-results | ||
path: ./artifacts/ | ||
|
||
Functional-Test: | ||
name: Bullseye Functional Testing | ||
|