From 5c0269a983d3f6c9eff4f31cc99d5d66487a124e Mon Sep 17 00:00:00 2001 From: Whitney Armstrong <warmstrong@anl.gov> Date: Fri, 26 Mar 2021 14:18:29 -0500 Subject: [PATCH] Fixing the build step Not sure why, but before_script seems to always succeed even if a step fails. --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a95f75e..62e2bd4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -51,6 +51,7 @@ compile: needs: - ["env"] script: + - mkdir -p build && cd build && cmake ../. -DCMAKE_INSTALL_PREFIX=/usr/local && make -j20 && make install && cd .. - echo "Build successful." .views: -- GitLab