From e2d3bc7e3b02b27f7be503a97d4626e9cc95d6d3 Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Fri, 17 Feb 2023 17:22:42 +0100 Subject: [PATCH] Revert "Update .gitlab-ci.yml" This reverts commit 26c9574d66de19102c145c2752b42e06d748effb. --- .gitlab-ci.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e6fd1e0..450c24b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,2 +1,10 @@ -# The Docker image that will be used to build your app -image: openscad/openscad +build: + image: openscad/openscad:latest + before_script: + - apt-get install -y jq make + script: + - Xvfb :99 & + - DISPLAY=:99 make -j$(nproc) DESTDIR=public models webpage + artifacts: + expose_as: public + paths: ["public"]