.github/workflows/build.yml: split "Compile and Test" into two steps
This commit is contained in:
parent
4ae89b7b4a
commit
ac3a5e27ec
26
.github/workflows/build.yml
vendored
26
.github/workflows/build.yml
vendored
@ -297,7 +297,27 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
key: ${{ matrix.platform }}
|
key: ${{ matrix.platform }}
|
||||||
|
|
||||||
- name: Compile and Test
|
- name: Configure
|
||||||
run: |
|
run: |
|
||||||
meson setup "${{github.workspace}}/build" -Dbzip2=disabled -Dcdio_paranoia=disabled -Dchromaprint=disabled -Ddocumentation=disabled -Dfluidsynth=disabled -Dicu=disabled -Diso9660=disabled -Dmikmod=disabled -Dmpg123=disabled -Dnfs=disabled -Dsidplay=disabled -Dudisks=disabled -Dupnp=disabled -Dwavpack=disabled -Dzzip=disabled -Dtest=true -Dwarning_level=3
|
meson setup \
|
||||||
meson compile -C "${{github.workspace}}/build" --verbose
|
-Dbzip2=disabled \
|
||||||
|
-Dcdio_paranoia=disabled \
|
||||||
|
-Dchromaprint=disabled \
|
||||||
|
-Ddocumentation=disabled \
|
||||||
|
-Dfluidsynth=disabled \
|
||||||
|
-Dicu=disabled \
|
||||||
|
-Diso9660=disabled \
|
||||||
|
-Dmikmod=disabled \
|
||||||
|
-Dmpg123=disabled \
|
||||||
|
-Dnfs=disabled \
|
||||||
|
-Dsidplay=disabled \
|
||||||
|
-Dudisks=disabled \
|
||||||
|
-Dupnp=disabled \
|
||||||
|
-Dwavpack=disabled \
|
||||||
|
-Dzzip=disabled \
|
||||||
|
-Dtest=true \
|
||||||
|
-Dwarning_level=3 \
|
||||||
|
"${{github.workspace}}/build"
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: meson compile -C "${{github.workspace}}/build" --verbose
|
||||||
|
Loading…
x
Reference in New Issue
Block a user