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

Ubuntu 24.04 #45

Merged
merged 4 commits into from
Feb 26, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,22 +33,17 @@ task:
- "Install dependencies ($WORKER_NAME)"

matrix:
- name: Ubuntu 22.04
- name: Ubuntu $VM_RELEASE
env:
VM_NAME: "ubuntu"
VM_RELEASE: "22.04"
WORKER_NAME: $WORKER_NAME_ARM64
VM_ARCH: "arm64"
URL: https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-arm64.img
USER_DATA_FIXTURE: "cloud-init/user-data.distro-with-admin-group"
LATEST: latest
- name: Ubuntu 24.04
env:
VM_NAME: "ubuntu"
VM_RELEASE: "24.04"
matrix:
- VM_RELEASE: "24.04"
URL: https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-arm64.img
LATEST: latest
- VM_RELEASE: "22.04"
URL: https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-arm64.img
WORKER_NAME: $WORKER_NAME_ARM64
VM_ARCH: "arm64"
URL: https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-arm64.img
USER_DATA_FIXTURE: "cloud-init/user-data.distro-with-admin-group"
- name: Debian
env:
Expand Down Expand Up @@ -77,34 +72,39 @@ task:
URL: https://dl.rockylinux.org/pub/rocky/9/images/aarch64/Rocky-9-GenericCloud-Base.latest.aarch64.qcow2
USER_DATA_FIXTURE: "cloud-init/user-data.distro-without-admin-group"
LATEST: latest
- name: Linux Runner ($VM_ARCH)
- name: Linux Runner ($VM_RELEASE $VM_ARCH)
env:
VM_NAME: "ubuntu"
VM_RELEASE: "22.04"
matrix:
- VM_RELEASE: "24.04"
URL: "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-$VM_ARCH.img"
LATEST: latest
- VM_RELEASE: "22.04"
URL: "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-$VM_ARCH.img"
matrix:
- VM_ARCH: "arm64"
WORKER_NAME: $WORKER_NAME_ARM64
- VM_ARCH: "amd64"
WORKER_NAME: $WORKER_NAME_AMD64
URL: "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-$VM_ARCH.img"
USER_DATA_FIXTURE: "cloud-init/user-data.distro-with-admin-group"
CUSTOMIZATION_PATH: "customizations/linux-runner"
CUSTOMIZATION_IMAGE: "ubuntu-runner-$VM_ARCH"
LATEST: latest
- name: Linux Runner w/ GPU ($VM_ARCH)
- name: Linux Runner w/ GPU ($VM_RELEASE $VM_ARCH)
depends_on:
- "Linux Runner ($VM_ARCH)"
- "Linux Runner ($VM_RELEASE $VM_ARCH)"
env:
VM_NAME: "ubuntu"
VM_RELEASE: "22.04"
matrix:
- VM_ARCH: "amd64"
WORKER_NAME: $WORKER_NAME_AMD64
URL: "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-$VM_ARCH.img"
- VM_RELEASE: "24.04"
URL: "https://cloud-images.ubuntu.com/noble/current/noble-server-cloudimg-$VM_ARCH.img"
LATEST: latest
- VM_RELEASE: "22.04"
URL: "https://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-$VM_ARCH.img"
VM_ARCH: "amd64"
WORKER_NAME: $WORKER_NAME_AMD64
USER_DATA_FIXTURE: "cloud-init/user-data.distro-with-admin-group"
CUSTOMIZATION_PATH: "customizations/linux-runner-gpu"
CUSTOMIZATION_IMAGE: "ubuntu-runner-$VM_ARCH-gpu"
LATEST: latest

persistent_worker:
labels:
Expand Down