Add tool: yq

This commit is contained in:
cytopia
2019-05-20 09:17:20 +02:00
parent d286467a6f
commit 2b53dcab7a
12 changed files with 37 additions and 0 deletions

View File

@@ -423,6 +423,8 @@ RUN set -x \
&& pip install --no-cache-dir --force-reinstall ansible \
# yamllint
&& pip install --no-cache-dir --force-reinstall yamllint \
# yq
&& pip install --no-cache-dir --force-reinstall yq \
\
&& rm -rf /root/.cache/pip \
&& rm -rf /tmp/* \
@@ -506,6 +508,7 @@ RUN set -x \
\
&& ansible --version | grep -E '^ansible [.0-9]+$' \
&& yamllint --version 2>&1 | grep -E '[.0-9]+' \
&& yq --version 2>&1 | grep -E '^yq\s+[.0-9]+$' \
\
&& ng version 2>&1 | grep -iE 'Angular CLI:\s*[.0-9]+' \
&& eslint -v | grep -E '[.0-9]+' \