mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-04 03:26:35 +00:00

Building: The Dockerfile really is just an intermediary file. While building it the container can be built too all in one shot. No need to git ignore the intermediary file any more as a result. Running: Dockerfiles support default entry points which means one docker command can be used for starting all of them.
23 lines
365 B
Bash
Executable File
23 lines
365 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
set -x
|
|
|
|
export LC_ALL=C.UTF-8
|
|
rm -rf build
|
|
mkdir -p build
|
|
cp contrib/ci/s390x_cross.txt build/
|
|
cd build
|
|
meson .. \
|
|
--cross-file s390x_cross.txt \
|
|
--werror \
|
|
-Dplugin_uefi=false \
|
|
-Dplugin_uefi_labels=false \
|
|
-Dplugin_dell=false \
|
|
-Dplugin_synaptics=false \
|
|
-Dintrospection=false \
|
|
-Dgtkdoc=false \
|
|
-Dman=false
|
|
ninja -v
|
|
ninja test -v
|
|
cd ..
|