build.yml: Add step identifiers
These get reflected by the web browser interface, enhancing readability.
This commit is contained in:
parent
796d305f4c
commit
58e229593c
1 changed files with 6 additions and 3 deletions
|
@ -5,12 +5,15 @@ jobs:
|
||||||
container:
|
container:
|
||||||
image: forge.a-lec.org/speed-dreams/debian-sd:stable
|
image: forge.a-lec.org/speed-dreams/debian-sd:stable
|
||||||
steps:
|
steps:
|
||||||
- run: |
|
- id: Clone repository
|
||||||
|
run: |
|
||||||
git clone \
|
git clone \
|
||||||
-b ${{ env.GITHUB_HEAD_REF }} \
|
-b ${{ env.GITHUB_HEAD_REF }} \
|
||||||
--depth 1 \
|
--depth 1 \
|
||||||
${{ env.GITHUB_SERVER_URL }}/${{ env.GITHUB_REPOSITORY }}.git \
|
${{ env.GITHUB_SERVER_URL }}/${{ env.GITHUB_REPOSITORY }}.git \
|
||||||
src
|
src
|
||||||
cd src/
|
cd src/
|
||||||
cmake -B build -DSD_ASSUME_DATADIR=1
|
- id: Configure project
|
||||||
cmake --build build -j$(nproc --all)
|
run: cmake -B build -DSD_ASSUME_DATADIR=1
|
||||||
|
- id: Build project
|
||||||
|
run: cmake --build build -j$(nproc --all)
|
||||||
|
|
Loading…
Reference in a new issue