@@ -214,13 +214,13 @@ jobs:
214
214
- name : Prepare Amazon Linux
215
215
if : ${{ matrix.distribution.type == 'amazon' }}
216
216
run : |
217
- yum install --assumeyes git sudo
217
+ yum install --assumeyes git
218
218
219
219
- name : Prepare Arch
220
220
if : ${{ matrix.distribution.type == 'arch' }}
221
221
run : |
222
222
pacman --noconfirm -Syu
223
- pacman --noconfirm -S base git sudo openssl-1.1
223
+ pacman --noconfirm -S base git openssl-1.1
224
224
# The behavior we follow in install.sh is unique with Arch in that
225
225
# we leave it to the user to install the appropriate version of python,
226
226
# so we need to install python here in order for the test to succeed.
@@ -232,7 +232,7 @@ jobs:
232
232
DEBIAN_FRONTEND : noninteractive
233
233
run : |
234
234
apt-get --yes update
235
- apt-get install --yes git lsb-release sudo python3-venv
235
+ apt-get install --yes git lsb-release python3-venv
236
236
237
237
- name : Prepare Fedora
238
238
if : ${{ matrix.distribution.type == 'fedora' }}
@@ -242,15 +242,15 @@ jobs:
242
242
- name : Prepare Rocky
243
243
if : ${{ matrix.distribution.type == 'rocky' }}
244
244
run : |
245
- yum install --assumeyes git sudo python39
245
+ yum install --assumeyes git python39
246
246
247
247
- name : Prepare Ubuntu
248
248
if : ${{ matrix.distribution.type == 'ubuntu' }}
249
249
env :
250
250
DEBIAN_FRONTEND : noninteractive
251
251
run : |
252
252
apt-get --yes update
253
- apt-get install --yes git lsb-release sudo
253
+ apt-get install --yes git lsb-release
254
254
MINIMUM=3.9
255
255
if ! apt-get satisfy --yes "python3-venv (>= ${MINIMUM})"
256
256
then
0 commit comments