summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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