Skip to content

Commit c6d317b

Browse files
authored
Merge pull request #368 from bratpiorka/rrudnick_qemu_fix
fix qemu workflow - change ubuntu image wget path
2 parents b415e78 + 59ba450 commit c6d317b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/qemu.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ jobs:
6262
6363
sudo -Sk genisoimage -output ubuntu-cloud-init.iso -volid cidata -joliet -rock ./user-data ./meta-data
6464
- name: Download ubuntu image
65-
run: wget https://cloud-images.ubuntu.com/lunar/current/lunar-server-cloudimg-amd64.img
65+
run: wget https://cloud-images.ubuntu.com/releases/lunar/release/ubuntu-23.04-server-cloudimg-amd64.img
6666
- name: Resize image
67-
run: qemu-img resize ./lunar-server-cloudimg-amd64.img +4G
67+
run: qemu-img resize ./ubuntu-23.04-server-cloudimg-amd64.img +4G
6868
- name: Run qemu
6969
run: |
7070
sudo qemu-system-x86_64 \
71-
-drive file=./lunar-server-cloudimg-amd64.img,format=qcow2,index=0,media=disk,id=hd \
71+
-drive file=./ubuntu-23.04-server-cloudimg-amd64.img,format=qcow2,index=0,media=disk,id=hd \
7272
-cdrom ./ubuntu-cloud-init.iso \
7373
-machine q35,usb=off,hmat=on \
7474
-enable-kvm \

0 commit comments

Comments
 (0)