CI: slightly reduce image size by installing only compilers and RTLs (without documentation and demos)

This commit is contained in:
Maxim Ganetsky 2022-08-26 02:49:13 +03:00
parent fe2dea8afc
commit d48e9ca080

View File

@ -27,7 +27,8 @@ RUN tarballs=( \
wget --no-verbose --output-document=${tarball[1]}.tar ${tarball[0]}; \
tar xf ${tarball[1]}.tar; \
cd ${tarball[1]}; \
echo -e "\n\n\n\n" | ./install.sh; \
# install only compiler and RTL, do not install documentation and demos
echo -e "\nn\nn\n" | ./install.sh; \
if [ $? -ne 0 ]; then \
exit 1; \
fi; \