From 1164b6a1f709377741ff7a7a71292f51c41597ab Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net>
Date: Sat, 3 Jun 2023 03:18:01 -0400
Subject: [PATCH] Use a single pipeline for Linux SyncTERM and dpkg

No need to build twice just to create the bundle.
---
 .gitlab-ci.yml | 14 +-------------
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ccbb379347..1175afdec6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -30,23 +30,11 @@ sexpots-linux:
   extends: .rules
   script:
     - cd src/sexpots
-    - make RELEASE=1
+    - make RELEASE=1 PREFIX=/usr dpkg
   artifacts:
     name: sexpots-linux-x64
     paths:
       - "src/sexpots/*.exe.release/*"
-
-syncterm-linux-deb:
-  tags: [Linux]
-  image: gcc
-  stage: build
-  extends: .rules
-  script:
-    - cd src/syncterm
-    - make RELEASE=1 PREFIX=/usr dpkg
-  artifacts:
-    name: syncterm-linux-x64-deb
-    paths:
       - "src/syncterm/syncterm*.deb"
 
 syncterm-linux:
-- 
GitLab