Install unidecode, so that all things we can test are tested.
This commit is contained in:
parent
cd5c1fd09d
commit
53c6771d2b
13
Dockerfile
13
Dockerfile
@ -11,8 +11,9 @@ RUN src/scripts/download_vim.sh
|
|||||||
COPY scripts/build_vim.sh src/scripts/
|
COPY scripts/build_vim.sh src/scripts/
|
||||||
RUN src/scripts/build_vim.sh
|
RUN src/scripts/build_vim.sh
|
||||||
|
|
||||||
# We clone the plugins we currently depend on manually here. Initially we check if their master
|
# We clone the plugins we currently depend on manually here. Initially we check
|
||||||
# has changed since last time we build, this will invalidate the cache.
|
# if their master has changed since last time we build, this will invalidate
|
||||||
|
# the cache.
|
||||||
RUN mkdir -p /tmp/UltiSnips_test_vim_plugins
|
RUN mkdir -p /tmp/UltiSnips_test_vim_plugins
|
||||||
|
|
||||||
ADD https://api.github.com/repos/tpope/vim-pathogen/git/refs/heads/master \
|
ADD https://api.github.com/repos/tpope/vim-pathogen/git/refs/heads/master \
|
||||||
@ -23,5 +24,13 @@ ADD https://api.github.com/repos/ervandew/supertab/git/refs/heads/master \
|
|||||||
/src/scripts/supertab_version.json
|
/src/scripts/supertab_version.json
|
||||||
RUN git clone --recursive --depth 1 https://github.com/ervandew/supertab /tmp/UltiSnips_test_vim_plugins/supertab
|
RUN git clone --recursive --depth 1 https://github.com/ervandew/supertab /tmp/UltiSnips_test_vim_plugins/supertab
|
||||||
|
|
||||||
|
# Unidecode is not a Vim plugin, but a Python library we depend on. We also
|
||||||
|
# install the latest version through pip. But we still use GitHub activity as a
|
||||||
|
# marker to invalidate the installation step, just to make sure we occasionally
|
||||||
|
# reinstall a new version.
|
||||||
|
ADD https://api.github.com/repos/avian2/unidecode/git/refs/heads/master \
|
||||||
|
/src/scripts/unidecode_version.json
|
||||||
|
RUN pip install unidecode
|
||||||
|
|
||||||
COPY . /src/UltiSnips
|
COPY . /src/UltiSnips
|
||||||
WORKDIR /src/UltiSnips
|
WORKDIR /src/UltiSnips
|
||||||
|
Loading…
x
Reference in New Issue
Block a user