ref: 49e1afa966b7d03f46019c7070a1262f95286d82
parent: cc7a9ed7b4f6a246570e4f02a9a847e14db9e21e
author: Ralph Giles <giles@thaumas.net>
date: Thu Apr 17 10:03:00 EDT 2025
gitlab-ci: Add a Makefile build Test the gnu makefile build in gitlab repositories to help find breakage when changes are proposed.
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -120,3 +120,13 @@
variables:
# arm64 build has a compiler warning still, so let's not use --werror for now
MESON_EXTRA_ARGS: '-Dwerror=false'
+
+makefile:
+ stage: build
+ before_script:
+ - apt-get update &&
+ apt-get install -y zip doxygen git make wget
+ - !reference [.snippets, git_prep]
+ script:
+ - make -f Makefile.unix -j8
+ - make -f Makefile.unix clean
--
⑨