From b61d7f9ccffbe324203476c9eb4979b134069ccb Mon Sep 17 00:00:00 2001
From: Pietro Incardona <incardon@mpi-cbg.de>
Date: Tue, 21 Aug 2018 12:59:51 +0200
Subject: [PATCH] Adding binary to send to the second stage

---
 .gitlab-ci.yml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f27336f..86427b8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,6 +2,9 @@ centos_build:
   stage: build
   tags:
     - centos
+  artifacts:
+    paths:
+      - ./src/mem
   script:
     - ./build.sh $CI_PROJECT_DIR $CI_SERVER_NAME
 
@@ -19,6 +22,9 @@ mac_build:
   stage: build
   tags:
     - mac
+  artifacts:
+    paths:
+      - ./src/mem
   script:
     - ./build.sh $CI_PROJECT_DIR $CI_SERVER_NAME
 
@@ -36,6 +42,9 @@ ubuntu_build:
   stage: build
   tags:
     - ubuntu
+  artifacts:
+    paths:
+      - ./src/mem
   script:
     - ./build.sh $CI_PROJECT_DIR $CI_SERVER_NAME
 
-- 
GitLab