mirror of https://github.com/procxx/kepka.git
Decreased packages installation time for Linux workflow.
This commit is contained in:
parent
da14588235
commit
2b2ac2e48f
|
@ -43,6 +43,18 @@ jobs:
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
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.
|
- name: First set up.
|
||||||
run: |
|
run: |
|
||||||
cd ..
|
cd ..
|
||||||
|
|
Loading…
Reference in New Issue