From fd39999d4d1b55501cb7163f8897269e880f08ab Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Thu, 13 Feb 2025 16:44:18 +0100
Subject: [PATCH] Adapt linux build now depending on libssl-dev (#45)

native-tls transitive dependency was added which
requires libssl-dev package installed
for the build to find ssl components

Dependency introduced in !41

Switching to non-slim Debian image which comes
with libssl-dev pre-installed

remove tag requirement test
---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 609f2c3..9fb2b55 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -7,7 +7,7 @@ stages:
 
 build_linux:
   stage: build
-  image: rust:slim-buster
+  image: rust:buster
   script:
      # Build the project for Linux
     - cargo build --release
@@ -25,8 +25,8 @@ build_linux:
     paths:
       - target/release
       - target/debian
-  only:
-    - tags
+#  only:
+#    - tags
 
 build_macos:
   stage: build
-- 
GitLab