File tree 1 file changed +18
-1
lines changed
1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change 82
82
shell : bash
83
83
84
84
- name : Build
85
+ id : build
85
86
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
87
88
with :
88
89
rosdistro : ${{ matrix.rosdistro }}
89
90
target-packages : ${{ steps.get-self-packages.outputs.self-packages }}
94
95
run : du -sh ${CCACHE_DIR} && ccache -s
95
96
shell : bash
96
97
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
+
97
114
- name : Test
98
115
if : ${{ steps.get-self-packages.outputs.self-packages != '' }}
99
116
id : test
You can’t perform that action at this time.
0 commit comments