From 897414c96141a3bb06b94b21b43b605009d4b12a Mon Sep 17 00:00:00 2001
From: Whitney Armstrong <warmstrong@anl.gov>
Date: Wed, 27 Jan 2021 00:57:37 -0600
Subject: [PATCH] Added back build job in CI

- the project is compiled in a ci job
---
 .gitlab-ci.yml | 13 ++++---------
 1 file changed, 4 insertions(+), 9 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ab25f38..dfbee24 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -4,15 +4,10 @@ stages:
   - build
   - deploy
 
-    #compile:
-    #  stage: build
-    #  tags:
-    #    - sodium
-    #  script:
-    #    - mkdir build && cd build && cmake ../. -DCMAKE_INSTALL_PREFIX=../install && make -j10 && make install
-    #  artifacts:
-    #    paths:
-    #    - build/doxygen_output
+compile:
+  stage: build
+  script:
+    - mkdir build && cd build && cmake ../. -DCMAKE_INSTALL_PREFIX=../install && make -j20 && make install
 
 gen_doxygen_src:
   stage: build
-- 
GitLab