From a11ca34f8178e7693782af358af9e92298794f9c Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Wed, 23 Oct 2024 15:48:38 +0200
Subject: [PATCH] Build deb and macos pkgs in parallel

to speed up the process
The runner is not overloaded with one build
---
 .gitlab-ci.yml | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 032be86..609f2c3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,12 +2,11 @@
 # https://hub.docker.com/r/library/rust/tags/
 
 stages:
-  - build_linux
-  - build_macos
+  - build
   - release
 
 build_linux:
-  stage: build_linux
+  stage: build
   image: rust:slim-buster
   script:
      # Build the project for Linux
@@ -30,7 +29,7 @@ build_linux:
     - tags
 
 build_macos:
-  stage: build_macos
+  stage: build
   image: poka/rust-osxcross:latest
   script:
     # Install the required dependencies
-- 
GitLab