From ed9d3a7ca6215fe8476d40764eb0b6aaada125af Mon Sep 17 00:00:00 2001
From: Joseph Walton-Rivers <webpigeon@fossgalaxy.com>
Date: Tue, 17 Aug 2021 23:23:55 +0100
Subject: [PATCH] don't rebuild for testing

---
 .gitlab-ci.yml | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 64dc9c2..1a43b33 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -41,14 +41,19 @@ build:fedora-wayland:
     - mkdir build && cd build
     - cmake ..
     - make
+  artifacts:
+    paths:
+      - build/fggl/
+      - build/tests/
+      - build/demos/
 
 test:fedora-wayland:
   extends: .fedora-wayland
   stage: test
   script:
-    - mkdir build && cd build
-    - cmake .. && make
-    - ./tests/testfggl/fggl_test
+    - cd build && ./tests/testfggl/fggl_test
+  dependencies:
+    - build:fedora-wayland
 
 #unit-test-job:   # This job runs in the test stage.
 #  stage: test    # It only starts when the job in the build stage completes successfully.
-- 
GitLab