summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-09-02 11:29:54 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2022-09-02 11:29:54 +0200
commit3ba4f6f6b94004bdaeae6579b99f0fe4725738a6 (patch)
tree3cb5fee4e5a7525915fe82ef23219210601a9eaf /.gitlab-ci.yml
parentc73ebc1fbc4ccae6b2ddcedf529f4f65234bfc33 (diff)
Add ubuntu tests
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0006748..8ccbcb9 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -16,4 +16,18 @@ debian:
- 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