diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-06-14 17:25:52 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-06-14 17:25:52 +0200 |
| commit | b706e2258fbe4d3ce92e52248148bce814a65f24 (patch) | |
| tree | f5765030b700c068a7a349a6732658d6cf479df5 /.gitlab-ci.yml | |
| parent | 15bc39f1af6c4c6ee15628c19c47b58f14e62a58 (diff) | |
Update CI
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 6 |
1 files changed, 5 insertions, 1 deletions
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 |
