From 7180717276af1ebc7da15c83162d6c5d6203aabf Mon Sep 17 00:00:00 2001
From: Ralph Giles <giles@thaumas.net>
Date: Thu, 18 Jun 2020 11:35:04 -0700
Subject: [PATCH] gitlab-ci: Add scons build.

Apparently this still has users, so test it, rather than
removing it. Verify we can build and clean up without error.
---
 .gitlab-ci.yml | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ece0622f..d5bb591c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,7 +4,7 @@ default:
   # Image from https://hub.docker.com/_/gcc/ based on Debian
   image: gcc:9
 
-build:
+autotools:
   stage: build
   before_script:
     - apt-get update &&
@@ -16,3 +16,14 @@ build:
     - ./configure
     - make
     - make distcheck
+
+scons:
+  stage: build
+  before_script:
+    - apt-get update &&
+      apt-get install -y libogg-dev libvorbis-dev
+        libsdl-dev libpng-dev libtiff-dev
+        scons
+  script:
+    - scons
+    - scons -c
-- 
GitLab