Skip to content

Commit 152334a

Browse files
committed
Add more warnings
1 parent 7896315 commit 152334a

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/build-docker.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
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: >-

.github/workflows/build-spack.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,9 @@ jobs:
144144
&& matrix.geant != ''}}; then
145145
spack -e . add [email protected]
146146
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: >-

0 commit comments

Comments
 (0)