Samsung_S7/.gitlab-ci.yml
2024-08-22 19:55:56 +02:00

26 lines
548 B
YAML

variables:
http_proxy: http://outboundproxy.jubit2.minvenj.nl:8080
https_proxy: http://outboundproxy.jubit2.minvenj.nl:8080
no_proxy: git.eminjenv.nl
image: python:3.8
pages:
stage: deploy
script:
- sudo apt-get install -y xvfb
- mkdir .public
- python -m venv venv
- source venv/bin/activate
- pip install -r <(head -n -1 requirements.txt)
- cd documentation
- make html
- cd ..
- cp -r documentation/build/* .public
- mv .public public
artifacts:
paths:
- public
only:
- main