Skip to content
Snippets Groups Projects
Unverified Commit bb9282c0 authored by Daniel's avatar Daniel
Browse files

WIP: CD pipeline

parent 9ffffc26
No related branches found
No related tags found
No related merge requests found
......@@ -93,11 +93,15 @@ build-testenv:
# documentation:
# stage: deploy
# Special job for serving the result
# Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages
pages:
stage: deploy
only:
- f-doc
script:
- echo "Deploying"
- make doc
- cp -r build/doc/html public
artifacts:
paths:
- public
FROM debian:latest
RUN apt-get update && \
apt-get install pylint3 python3-pip tox git \
curl pycodestyle -y
apt-get install -y \
pylint3 python3-pip tox git \
curl pycodestyle \
python3-sphinx
ARG COMMIT="dev"
RUN git clone -b dev https://gitlab.com/caosdb/caosdb-pylib.git && \
cd caosdb-pylib && git checkout $COMMIT && pip3 install .
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment