Skip to content

Commit 9e3bded

Browse files
committed
bnt daily
Signed-off-by: M. Fatih Cırıt <mfc@autoware.org>
1 parent 0aa12e0 commit 9e3bded

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

.github/workflows/build-and-test-daily.yaml

+18-1
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,9 @@ jobs:
8282
shell: bash
8383

8484
- name: Build
85+
id: build
8586
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
86-
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
87+
uses: autowarefoundation/autoware-github-actions/colcon-build@feat/build-time-vis
8788
with:
8889
rosdistro: ${{ matrix.rosdistro }}
8990
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
@@ -94,6 +95,22 @@ jobs:
9495
run: du -sh ${CCACHE_DIR} && ccache -s
9596
shell: bash
9697

98+
- uses: actions/upload-artifact@v4
99+
id: upload-artifact-treemap
100+
if: ${{ steps.build.outputs.build-time-treemap-path != '' }}
101+
with:
102+
name: build-time-visualization-treemap
103+
path: ${{ steps.build.outputs.build-time-treemap-path }}
104+
105+
- name: Visualize build time treemap
106+
if: ${{ steps.build.outputs.build-time-treemap-path != '' }}
107+
run: |
108+
echo "## Build Time Treemap Visualization" >> $GITHUB_STEP_SUMMARY
109+
echo "" >> $GITHUB_STEP_SUMMARY
110+
echo ${{ steps.upload-artifact-treemap.outputs.artifact-url }} >> $GITHUB_STEP_SUMMARY
111+
echo "" >> $GITHUB_STEP_SUMMARY
112+
shell: bash
113+
97114
- name: Test
98115
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
99116
id: test

0 commit comments

Comments
 (0)