From b706e2258fbe4d3ce92e52248148bce814a65f24 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Tue, 14 Jun 2022 17:25:52 +0200 Subject: [PATCH] Update CI --- .gitlab-ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e89beb3..f494e16 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,9 @@ archlinux: image: "archlinux:latest" before_script: - - pacman -Sy python python-numpy diffutils --noconfirm --needed + - pacman -Sy python python-pip python-numpy diffutils --noconfirm --needed + - pip install build + - pip install . script: - ./tests/run.sh @@ -10,6 +12,8 @@ debian: before_script: - apt update && apt install -y python3 python3-pip python-is-python3 - pip install numpy + - pip install build + - pip install . script: - ./tests/run.sh