Skip to content

Commit b9a2337

Browse files
committed
Add workaround for baremetal jobs on ubuntu 20.04
This commit adds a workaround to baremetal jobs running on ubuntu 20.04 since they are failling when installing grub-efi-amd64-signed
1 parent 6fe0bd8 commit b9a2337

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/functional-baremetal.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@ jobs:
4040
steps:
4141
- name: Checkout Gophercloud
4242
uses: actions/checkout@v4
43+
- name: Workaround for grub-efi-amd64-signed
44+
run: sudo rm /var/cache/debconf/config.dat
45+
shell: bash
46+
if: matrix.ubuntu_version == '20.04'
47+
- name: Ensure update and upgrade
48+
run: sudo apt update && sudo apt -y upgrade
49+
shell: bash
50+
if: matrix.ubuntu_version == '20.04'
4351
- name: Deploy devstack
4452
uses: EmilienM/devstack-action@v0.11
4553
with:

0 commit comments

Comments
 (0)