summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLoic Guegan <manzerbredes@mailbox.org>2022-09-02 11:43:49 +0200
committerLoic Guegan <manzerbredes@mailbox.org>2022-09-02 11:43:49 +0200
commit0db52b3e8393f22ce62728729bd78aa379fc8282 (patch)
treec4b27f0d08ceee696d51781e6ed841b94d9f2d0a
parent3ba4f6f6b94004bdaeae6579b99f0fe4725738a6 (diff)
Add fedora tests
-rw-r--r--.gitlab-ci.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8ccbcb9..87b164e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -30,4 +30,17 @@ ubuntu:
- pip install .
script:
- ./tests/run.py
+
+fedora:
+ image: "fedora:latest"
+ before_script:
+ - yum -y update && yum -y install python3 pip
+ - pip install numpy
+ - pip install build
+ - pip install virtualenv
+ - virtualenv myenv
+ - source myenv/bin/activate
+ - pip install .
+ script:
+ - ./tests/run.py