Skip to content

Commit

Permalink
#32: uncomment code after user_defined fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cwschilly committed Jul 31, 2024
1 parent cecb2ea commit a8c16ec
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 15 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ jobs:
reporter: java-junit
output-to: step-summary

# - name: CCM Example output to summary (does not work: print plain text)
# if: ${{ (success() || failure()) && env.VT_TV_TESTS_ENABLED == 'ON' }}
# run: |
# echo '## CCM Example output' >> $GITHUB_STEP_SUMMARY
# if [ -f "${{ env.OUTPUT_DIR }}/tmp/artifacts/ccm_example0.png" ]; then
# echo '!'"[CCM Example](${{ env.OUTPUT_DIR }}/tmp/artifacts/ccm_example0.png)" >> $GITHUB_STEP_SUMMARY
# else
# echo 'Missing !' >> $GITHUB_STEP_SUMMARY
# fi
- name: CCM Example output to summary
if: ${{ (success() || failure()) && env.VT_TV_TESTS_ENABLED == 'ON' }}
run: |
echo '## CCM Example output' >> $GITHUB_STEP_SUMMARY
if [ -f "${{ env.OUTPUT_DIR }}/tmp/artifacts/ccm_example0.png" ]; then
echo '!'"[CCM Example](${{ env.OUTPUT_DIR }}/tmp/artifacts/ccm_example0.png)" >> $GITHUB_STEP_SUMMARY
else
echo 'Missing !' >> $GITHUB_STEP_SUMMARY
fi
- name: Coverage summary
if: ${{ (success() || failure()) && env.VT_TV_COVERAGE_ENABLED == 'ON' }}
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/pushbasedockerimage.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
name: Build & push base Docker image

on:
# # Push event: Useful for testing new image build on CI
# push:
# branches:
# - 32-vt-tv-improve-ci

# Dispatch event (manually triggered)
workflow_dispatch:
inputs:
image:
Expand Down

0 comments on commit a8c16ec

Please sign in to comment.