File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 9696 echo "::group::Build verbosely"
9797 ninja -v -k0
9898 echo "::endgroup::"
99- echo "::notice title=build-size::$(du -hs . | awk '{print $1}')"
99+ echo "::notice title=build-size::Build size is $(du -hs . | awk '{print $1}')"
100100
101101 # ## TEST ###
102102
@@ -135,7 +135,9 @@ jobs:
135135 id : install
136136 working-directory : build
137137 run : |
138+ echo "::group::Install"
138139 cmake --install .
140+ echo "::endgroup::
139141 cmake --build . --target clean
140142 - name : Check installation
141143 if : >-
Original file line number Diff line number Diff line change @@ -144,7 +144,9 @@ jobs:
144144 && matrix.geant != ''}}; then
145145146146 fi
147+ echo "::group::Find compilers"
147148 spack -vd -e . compiler find --mixed-toolchain
149+ echo "::endgroup::
148150 # Add the spack ref so that updating spack will reconcretize
149151 echo "# Concretized with ${{env.SPACK_REF}}" >> spack.yaml
150152 - name : Cache concretization
@@ -245,7 +247,7 @@ jobs:
245247 echo "::group::Build verbosely"
246248 ninja -v -k0
247249 echo "::endgroup::"
248- echo "::notice title=build-size::$(du -hs . | awk '{print $1}')"
250+ echo "::notice title=build-size::Build size is $(du -hs . | awk '{print $1}')"
249251 - name : Show ccache stats
250252 if : ${{!cancelled() && steps.installdeps.outcome == 'success'}}
251253 run : |
@@ -357,7 +359,9 @@ jobs:
357359 }}
358360 working-directory : build
359361 run : |
360- ninja install
362+ echo "::group::Install"
363+ cmake --install .
364+ echo "::endgroup::
361365 ninja clean
362366 - name : Check installation
363367 if : >-
You can’t perform that action at this time.
0 commit comments