Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Availablity of Ubuntu24.04 images #3

Closed
willcl-ark opened this issue Aug 29, 2024 · 5 comments
Closed

Availablity of Ubuntu24.04 images #3

willcl-ark opened this issue Aug 29, 2024 · 5 comments
Assignees

Comments

@willcl-ark
Copy link

Ubuntu 24.04 images are available on GH runners: https://github.com/actions/runner-images?tab=readme-ov-file#available-images

...but I don't know how to select them in runs-on. Are they available to select somehow?

Thanks in advance :)

@crohr
Copy link
Contributor

crohr commented Aug 29, 2024

Not yet, but they will be soon!

@willcl-ark
Copy link
Author

Excellent news, thanks.

@aledbf
Copy link

aledbf commented Sep 11, 2024

@crohr is there any public beta AMI image available? (I need cgroups v2 enabled by default)
Thanks

@crohr
Copy link
Contributor

crohr commented Sep 12, 2024

@aledbf @willcl-ark hello, ubuntu24 images are now available. They are not yet declared as official images in RunsOn, so for now you would first have to declare them as custom images in your .github/runs-on.yml config file:

images:
  ubuntu24-beta-x64:
    platform: "linux"
    arch: "x64"
    owner: "135269210855"
    name: "runs-on-v2.2-ubuntu24-full-x64-*"
  ubuntu24-beta-arm64:
    platform: "linux"
    arch: "arm64"
    owner: "135269210855"
    name: "runs-on-v2.2-ubuntu24-full-arm64-*"

(I'm using beta instead of full since I don't want those to conflict with the official image names when they'll be integrated in RunsOn).

And then in your workflows:

jobs:
  test:
    runs-on:
      - runs-on
      - runner=2cpu-linux-x64
      - image=ubuntu24-beta-x64
      - run-id=${{ github.run_id }}

@crohr crohr self-assigned this Sep 12, 2024
@crohr
Copy link
Contributor

crohr commented Sep 26, 2024

Images are now available when you install the v2.5.4 pre-release of RunsOn (https://github.com/runs-on/runs-on/releases/tag/v2.5.4).

@crohr crohr closed this as completed Sep 26, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants