mirror of
https://git.proxmox.com/git/fwupd
synced 2025-08-06 09:00:55 +00:00

Although it's only used on Dell devices, those devices could potentially be plugged in via a bus on a different architecture too.
26 lines
414 B
Bash
Executable File
26 lines
414 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_dell=false \
|
|
-Dplugin_redfish=false \
|
|
-Dintrospection=false \
|
|
-Dgtkdoc=false \
|
|
-Dman=false
|
|
ninja -v
|
|
ninja test -v
|
|
cd ..
|
|
|
|
|
|
#test for missing translation files
|
|
./contrib/ci/check_missing_translations.sh
|