From 1f25c49f7c9c0295c7f73204acd1dc4df5d81c56 Mon Sep 17 00:00:00 2001
From: Olivier BICHLER <olivier.bichler@cea.fr>
Date: Mon, 28 Aug 2023 13:55:52 +0200
Subject: [PATCH] Added Windows pipeline

---
 .gitlab/ci/build.gitlab-ci.yml | 17 ++++++++++++++++-
 1 file changed, 16 insertions(+), 1 deletion(-)

diff --git a/.gitlab/ci/build.gitlab-ci.yml b/.gitlab/ci/build.gitlab-ci.yml
index 80b0af0ce..0c17baea3 100644
--- a/.gitlab/ci/build.gitlab-ci.yml
+++ b/.gitlab/ci/build.gitlab-ci.yml
@@ -1,5 +1,6 @@
 build:ubuntu_cpp:
   stage: build
+  needs: []
   tags:
     - docker
 
@@ -17,6 +18,7 @@ build:ubuntu_cpp:
 
 build:ubuntu_python:
   stage: build
+  needs: []
   tags:
     - docker
 
@@ -28,4 +30,17 @@ build:ubuntu_python:
     - python3 -m pip install .
   artifacts:
     paths:
-      - venv/
\ No newline at end of file
+      - venv/
+
+build:windows_cpp:
+  stage: build
+  needs: []
+  tags:
+    - windows
+
+  script:
+    - mkdir -p build_cpp
+    - mkdir -p install_cpp
+    - cd build_cpp
+    - cmake -DCMAKE_INSTALL_PREFIX:PATH=../install_cpp -DCMAKE_BUILD_TYPE=Debug ..
+    - make -j2 all install
-- 
GitLab