Skip to content

Commit eafa278

Browse files
committed
CI: Fix up aio upgrade job for ARC runner
This job is not present in yoga, so was not tested there.
1 parent 6329f1c commit eafa278

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/stackhpc-all-in-one.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ jobs:
251251
# The same tag may be reused (e.g. stackhpc/yoga), so ensure we have the latest image.
252252
- name: Pull previous Kayobe image
253253
run: |
254-
sudo docker image pull ${{ steps.kayobe_image.outputs.kayobe_image }}
254+
docker image pull ${{ steps.kayobe_image.outputs.kayobe_image }}
255255
if: inputs.upgrade
256256

257257
# The same tag may be reused (e.g. pr-123), so ensure we have the latest image.
@@ -281,7 +281,7 @@ jobs:
281281

282282
- name: Service deploy
283283
run: |
284-
sudo -E docker run -t --rm \
284+
docker run -t --rm \
285285
-v $(pwd):/stack/kayobe-automation-env/src/kayobe-config \
286286
-e KAYOBE_ENVIRONMENT -e KAYOBE_VAULT_PASSWORD -e KAYOBE_AUTOMATION_SSH_PRIVATE_KEY \
287287
${{ steps.kayobe_image.outputs.kayobe_image }} \
@@ -291,7 +291,7 @@ jobs:
291291

292292
- name: Configure aio resources
293293
run: |
294-
sudo -E docker run -t --rm \
294+
docker run -t --rm \
295295
-v $(pwd):/stack/kayobe-automation-env/src/kayobe-config \
296296
-e KAYOBE_ENVIRONMENT -e KAYOBE_VAULT_PASSWORD -e KAYOBE_AUTOMATION_SSH_PRIVATE_KEY \
297297
${{ steps.kayobe_image.outputs.kayobe_image }} \
@@ -319,7 +319,7 @@ jobs:
319319
# Now begin upgrade
320320
- name: Host upgrade
321321
run: |
322-
sudo -E docker run -t --rm \
322+
docker run -t --rm \
323323
-v $(pwd):/stack/kayobe-automation-env/src/kayobe-config \
324324
-e KAYOBE_ENVIRONMENT -e KAYOBE_VAULT_PASSWORD -e KAYOBE_AUTOMATION_SSH_PRIVATE_KEY \
325325
$KAYOBE_IMAGE \
@@ -330,7 +330,7 @@ jobs:
330330

331331
- name: Host configure
332332
run: |
333-
sudo -E docker run -t --rm \
333+
docker run -t --rm \
334334
-v $(pwd):/stack/kayobe-automation-env/src/kayobe-config \
335335
-e KAYOBE_ENVIRONMENT -e KAYOBE_VAULT_PASSWORD -e KAYOBE_AUTOMATION_SSH_PRIVATE_KEY \
336336
$KAYOBE_IMAGE \

0 commit comments

Comments
 (0)