Skip to content

Commit 770011e

Browse files
oech3martinkunkel2
authored andcommitted
Do not apt-get preinstalled tools to avoid delaying
1 parent 3950b22 commit 770011e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/CICD.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ jobs:
465465
run: |
466466
## Install dependencies
467467
sudo apt-get update
468-
sudo apt-get install jq libselinux1-dev libsystemd-dev
468+
sudo apt-get install libselinux1-dev libsystemd-dev
469469
- name: "`make install`"
470470
shell: bash
471471
run: |

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ jobs:
174174
- name: Install/setup prerequisites
175175
shell: bash
176176
run: |
177-
sudo apt-get -y update ; sudo apt-get -y install npm ; sudo npm install cspell -g ;
177+
sudo npm install cspell -g ;
178178
- name: Run `cspell`
179179
shell: bash
180180
run: |

.github/workflows/l10n.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
- name: Install/setup prerequisites
142142
shell: bash
143143
run: |
144-
sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev locales
144+
sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev
145145
sudo locale-gen --keep-existing fr_FR.UTF-8
146146
locale -a | grep -i fr || exit 1
147147
- name: Build coreutils with clap localization support
@@ -312,7 +312,7 @@ jobs:
312312
shell: bash
313313
run: |
314314
## Install/setup prerequisites
315-
sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev locales
315+
sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev
316316
- name: Generate French locale
317317
shell: bash
318318
run: |
@@ -580,7 +580,7 @@ jobs:
580580
## Install/setup prerequisites
581581
case '${{ matrix.job.os }}' in
582582
ubuntu-*)
583-
sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev build-essential locales
583+
sudo apt-get -y update ; sudo apt-get -y install libselinux1-dev build-essential
584584
# Generate French locale for testing
585585
sudo locale-gen --keep-existing fr_FR.UTF-8
586586
locale -a | grep -i fr || echo "French locale generation may have failed"
@@ -912,7 +912,7 @@ jobs:
912912
run: |
913913
## Install/setup prerequisites including locale support
914914
sudo apt-get -y update
915-
sudo apt-get -y install libselinux1-dev locales build-essential
915+
sudo apt-get -y install libselinux1-dev build-essential
916916
917917
# Generate multiple locales for testing
918918
sudo locale-gen --keep-existing en_US.UTF-8 fr_FR.UTF-8 de_DE.UTF-8 es_ES.UTF-8
@@ -1264,7 +1264,7 @@ jobs:
12641264
- name: Install prerequisites
12651265
run: |
12661266
sudo apt-get -y update
1267-
sudo apt-get -y install libselinux1-dev locales
1267+
sudo apt-get -y install libselinux1-dev
12681268
# Generate French locale for testing
12691269
sudo locale-gen --keep-existing fr_FR.UTF-8
12701270
locale -a | grep -i fr || exit 1

0 commit comments

Comments
 (0)