diff options
author | Sam Thursfield <sam.thursfield@codethink.co.uk> | 2017-10-19 12:06:47 +0100 |
---|---|---|
committer | Tristan Van Berkom <tristan.van.berkom@gmail.com> | 2017-10-20 05:07:01 +0000 |
commit | 8cdacab742d0749da45ba2b807f13c59f0bfd18f (patch) | |
tree | c76a99aa3af4a1ee611dc1fcec4520b8c12e77cf /.gitlab-ci.yml | |
parent | 10847a66dc0748696829d5fd18ad17043c2c6878 (diff) | |
download | buildstream-8cdacab742d0749da45ba2b807f13c59f0bfd18f.tar.gz |
.gitlab-ci.yml: Fix documentation buildsam/fix-docs
Since commit fd91491a7619964e01d1fc8 we were passing an invalid
combination of flags to `pip3 install`.
Removing `--no-index` again since it doesn't really matter about
downloading stuff during the docs build.
Also removing `-e` which is a developer convenience ("editable
mode" where a symlink to the source tree is installed rather than the
actual files) that is not needed here.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5567ba8dd..1113368f2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -118,7 +118,7 @@ pages: - dnf install -y python2 - pip3 install sphinx - pip3 install sphinx-click - - pip3 install --user -e --no-index . + - pip3 install --user . - make -C doc - mv doc/build/html public artifacts: |