Skip to content

Commit

Permalink
add summary to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
jmlapre committed Aug 29, 2024
1 parent 4b4c119 commit 4a61001
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/AT2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,13 @@ jobs:
--ctest-drop-site sems-cdash-son.sandia.gov/cdash \
--filename-subprojects ./package_subproject_list.cmake \
--filename-packageenables ./packageEnables.cmake
- name: Summary
if: ${{ !cancelled() }}
shell: bash -l {0}
working-directory: /home/Trilinos/build
run: |
echo "image: ${AT2_IMAGE:-unknown}" >> $GITHUB_STEP_SUMMARY
echo "https://sems-cdash-son.sandia.gov/cdash/index.php?project=Trilinos&parentid=${cdash_build_id}" >> $GITHUB_STEP_SUMMARY
gcc830-serial-EXPERIMENTAL:
runs-on: [self-hosted, gcc-8.3.0_serial]
Expand Down Expand Up @@ -172,6 +179,13 @@ jobs:
--ctest-drop-site sems-cdash-son.sandia.gov/cdash \
--filename-subprojects ./package_subproject_list.cmake \
--filename-packageenables ./packageEnables.cmake
- name: Summary
if: ${{ !cancelled() }}
shell: bash -l {0}
working-directory: /home/Trilinos/build
run: |
echo "image: ${AT2_IMAGE:-unknown}" >> $GITHUB_STEP_SUMMARY
echo "https://sems-cdash-son.sandia.gov/cdash/index.php?project=Trilinos&parentid=${cdash_build_id}" >> $GITHUB_STEP_SUMMARY
cuda11-uvm-EXPERIMENTAL:
runs-on: [self-hosted, cuda-11.4.2_gcc-10.3.0_openmpi-4.1.6]
Expand Down Expand Up @@ -251,3 +265,10 @@ jobs:
--filename-packageenables ./packageEnables.cmake \
--max-cores-allowed=96 \
--num-concurrent-tests=96
- name: Summary
if: ${{ !cancelled() }}
shell: bash -l {0}
working-directory: /home/Trilinos/build
run: |
echo "image: ${AT2_IMAGE:-unknown}" >> $GITHUB_STEP_SUMMARY
echo "https://sems-cdash-son.sandia.gov/cdash/index.php?project=Trilinos&parentid=${cdash_build_id}" >> $GITHUB_STEP_SUMMARY

0 comments on commit 4a61001

Please sign in to comment.