From 12fbe1c1403b66dd5d9175f1d12ff556ce70b782 Mon Sep 17 00:00:00 2001 From: acrovato <a.crovato@uliege.be> Date: Thu, 21 Dec 2023 16:08:53 +0100 Subject: [PATCH] fix ci --- .gitlab-ci.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index acd0c63..05d4b10 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,17 +19,24 @@ build: stage: build script: # Instal pip - - wget https://bootstrap.pypa.io/get-pip.py + - wget -q https://bootstrap.pypa.io/get-pip.py - python3 get-pip.py # Install SDPM - - git clone https://gitlab.uliege.be/am-dept/sdpm && cd sdpm - - git checkout adri # TODO remove + - wget -q https://gitlab.uliege.be/am-dept/sdpm/-/archive/adri/sdpm-adri.tar.bz2 + - tar xf sdpm-adri.tar.bz2 + - rm sdpm-adri.tar.bz2 + - mv sdpm-adri sdpm + - cd sdpm - mkdir build && cd build - cmake .. - make install -j8 - cd ../.. # Install PyPK - - git clone https://gitlab.uliege.be/am-dept/pypk && cd pypk + - wget -q https://gitlab.uliege.be/am-dept/pypk/-/archive/master/pypk-master.tar.bz2 + - tar xf pypk-master.tar.bz2 + - rm pypk-master.tar.bz2 + - mv pypk-master pypk + - cd pypk - python3 -m pip install . - cd .. # Install OMFlut -- GitLab