shithub: opus

Download patch

ref: a10ed432df74df9dad69c46385df12b966734179
parent: d2edc048b16b95a27d1e9e7b6d063043d3ed3266
author: Ralph Giles <giles@thaumas.net>
date: Thu Apr 17 10:20:55 EDT 2025

gitlab-ci: run the makefile build on gcc

Use the `gcc:latest` container image to run the GNU makefile ci
job. This has the toolchain installed, and is used by other projects
so should be cached by the runners. Other jobs install the packages
they need on a basic `debian:bookworm-slim` image, testing a different
path.

--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -123,6 +123,7 @@
 
 makefile:
   stage: build
+  image: 'gcc'
   before_script:
     - apt-get update &&
       apt-get install -y zip doxygen git make wget
--