Skip to content

Commit

Permalink
Switch to using Ubuntu 20.04 runners
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
iamjoemccormick committed Feb 27, 2024
1 parent 62d778c commit 226f3bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ env:

jobs:
build-test-and-push-images:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
timeout-minutes: 10
permissions:
packages: write
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
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
e2e-tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
timeout-minutes: 10
needs: build-test-and-push-images
if: github.event_name == 'pull_request'
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:
fi
operator-e2e-tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
timeout-minutes: 10
needs: build-test-and-push-images
if: github.event_name == 'pull_request'
Expand Down Expand Up @@ -533,7 +533,7 @@ jobs:
# We'll keep around a few old test packages to (a) avoid deleting image for workflows running in parallel,
# and (b) it may be useful to pull a package to troubleshoot workflow failures.
cleanup-test-images:
runs-on: ubuntu-22.04
runs-on: ubuntu-20.04
timeout-minutes: 3
needs: [build-test-and-push-images, e2e-tests, operator-e2e-tests]
if: always()
Expand Down

0 comments on commit 226f3bd

Please sign in to comment.