esds/.gitlab-ci.yml
2022-09-02 11:29:54 +02:00

33 lines
790 B
YAML

archlinux:
image: "archlinux:latest"
before_script:
- pacman -Sy python python-pip python-numpy diffutils --noconfirm --needed
- pip install build
- pip install .
script:
- ./tests/run.py
debian:
image: "debian:latest"
before_script:
- apt update && apt install -y python3 python3-pip python-is-python3
- pip install numpy
- pip install build
- pip install .
script:
- ./tests/run.py
ubuntu:
image: "ubuntu:latest"
before_script:
- apt update && apt install -y python3 python3-pip python-is-python3
- pip install numpy
- pip install build
- pip install virtualenv
- export PATH=${PATH}:${HOME}/.local/bin
- virtualenv myenv
- source myenv/bin/activate
- pip install .
script:
- ./tests/run.py