diff options
| author | Loic Guegan <manzerbredes@mailbox.org> | 2022-06-09 21:52:53 +0200 |
|---|---|---|
| committer | Loic Guegan <manzerbredes@mailbox.org> | 2022-06-09 21:52:53 +0200 |
| commit | 03eab9f6b34e3469229c8135b7533f1328e3f4d2 (patch) | |
| tree | db39ef410f71f4d8326a05f1f8944268afb3c6de /.gitlab-ci.yml | |
| parent | c2e6aad09f893e4c8cb5cb9243c32a0d6d0d1e12 (diff) | |
Add CI
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..e89beb3 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,15 @@ +archlinux: + image: "archlinux:latest" + before_script: + - pacman -Sy python python-numpy diffutils --noconfirm --needed + script: + - ./tests/run.sh + +debian: + image: "debian:latest" + before_script: + - apt update && apt install -y python3 python3-pip python-is-python3 + - pip install numpy + script: + - ./tests/run.sh + |
