Decreased packages installation time for Linux workflow.

This commit is contained in:
23rd 2020-02-24 16:48:02 +03:00
parent da14588235
commit 2b2ac2e48f
1 changed files with 12 additions and 0 deletions

View File

@ -43,6 +43,18 @@ jobs:
with:
submodules: recursive
- name: Disable man for further package installs.
run: |
cfgFile="/etc/dpkg/dpkg.cfg.d/no_man"
sudo touch $cfgFile
p() {
sudo echo "path-exclude=/usr/share/$1/*" >> $cfgFile
}
p man
p locale
p doc
- name: First set up.
run: |
cd ..