Skip to content

Commit

Permalink
bnt daily
Browse files Browse the repository at this point in the history
Signed-off-by: M. Fatih Cırıt <[email protected]>
  • Loading branch information
xmfcx committed Dec 14, 2024
1 parent 0aa12e0 commit 9e3bded
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/build-and-test-daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,9 @@ jobs:
shell: bash

- name: Build
id: build
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
uses: autowarefoundation/autoware-github-actions/colcon-build@feat/build-time-vis
with:
rosdistro: ${{ matrix.rosdistro }}
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
Expand All @@ -94,6 +95,22 @@ jobs:
run: du -sh ${CCACHE_DIR} && ccache -s
shell: bash

- uses: actions/upload-artifact@v4
id: upload-artifact-treemap

Check warning on line 99 in .github/workflows/build-and-test-daily.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (treemap)
if: ${{ steps.build.outputs.build-time-treemap-path != '' }}

Check warning on line 100 in .github/workflows/build-and-test-daily.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (treemap)
with:
name: build-time-visualization-treemap

Check warning on line 102 in .github/workflows/build-and-test-daily.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (treemap)
path: ${{ steps.build.outputs.build-time-treemap-path }}

Check warning on line 103 in .github/workflows/build-and-test-daily.yaml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (treemap)

- name: Visualize build time treemap
if: ${{ steps.build.outputs.build-time-treemap-path != '' }}
run: |
echo "## Build Time Treemap Visualization" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo ${{ steps.upload-artifact-treemap.outputs.artifact-url }} >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
shell: bash

- name: Test
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
id: test
Expand Down

0 comments on commit 9e3bded

Please sign in to comment.