Skip to content

Commit 226f3bd

Browse files
Switch to using Ubuntu 20.04 runners
Azure is rolling out ubuntu-22.04 runners with Linux 6.5, which does not work with older versions of the BeeGFS client. Using Ubuntu 20.04 for broader compatibility.
1 parent 62d778c commit 226f3bd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-test-publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ env:
4141

4242
jobs:
4343
build-test-and-push-images:
44-
runs-on: ubuntu-22.04
44+
runs-on: ubuntu-20.04
4545
timeout-minutes: 10
4646
permissions:
4747
packages: write
@@ -264,7 +264,7 @@ jobs:
264264
make -e IMG=${{ steps.determine_image_name.outputs.OPERATOR_IMAGE }}:${{ github.sha }} -e BUNDLE_IMG=${{ env.OPERATOR_TEST_BUNDLE_NAME }}:${{ github.sha }} bundle bundle-build bundle-push
265265
266266
e2e-tests:
267-
runs-on: ubuntu-22.04
267+
runs-on: ubuntu-20.04
268268
timeout-minutes: 10
269269
needs: build-test-and-push-images
270270
if: github.event_name == 'pull_request'
@@ -360,7 +360,7 @@ jobs:
360360
fi
361361
362362
operator-e2e-tests:
363-
runs-on: ubuntu-22.04
363+
runs-on: ubuntu-20.04
364364
timeout-minutes: 10
365365
needs: build-test-and-push-images
366366
if: github.event_name == 'pull_request'
@@ -533,7 +533,7 @@ jobs:
533533
# We'll keep around a few old test packages to (a) avoid deleting image for workflows running in parallel,
534534
# and (b) it may be useful to pull a package to troubleshoot workflow failures.
535535
cleanup-test-images:
536-
runs-on: ubuntu-22.04
536+
runs-on: ubuntu-20.04
537537
timeout-minutes: 3
538538
needs: [build-test-and-push-images, e2e-tests, operator-e2e-tests]
539539
if: always()

0 commit comments

Comments
 (0)