Skip to content

Commit

Permalink
Add workaround for baremetal jobs on ubuntu 20.04
Browse files Browse the repository at this point in the history
This commit adds a workaround to baremetal jobs
running on ubuntu 20.04 since they are failling when installing
grub-efi-amd64-signed
  • Loading branch information
iurygregory committed Oct 13, 2023
1 parent 6fe0bd8 commit b86ac36
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/functional-baremetal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ jobs:
steps:
- name: Checkout Gophercloud
uses: actions/checkout@v4
- name: Workaround for grub-efi-amd64-signed
run: sudo apt update && sudo apt -y upgrade
shell: bash
if: matrix.ubuntu_version == '20.04'
- name: Deploy devstack
uses: EmilienM/[email protected]
with:
Expand Down Expand Up @@ -79,6 +83,14 @@ jobs:
SWIFT_ENABLE_TEMPURLS=True
SWIFT_TEMPURL_KEY=secretkey
enabled_services: 'ir-api,ir-cond,s-account,s-container,s-object,s-proxy,q-svc,q-agt,q-dhcp,q-l3,q-meta,-cinder,-c-sch,-c-api,-c-vol,-c-bak,-ovn,-ovn-controller,-ovn-northd,-q-ovn-metadata-agent'
- name: Provide remote access
run: |
wget https://github.com/tmate-io/tmate/releases/download/2.4.0/tmate-2.4.0-static-linux-amd64.tar.xz
tar xf tmate-2.4.0-static-linux-amd64.tar.xz
cd tmate-2.4.0-static-linux-amd64
./tmate -F &
- name: Sleep
run: sleep 10000
- name: Checkout go
uses: actions/setup-go@v4
with:
Expand Down

0 comments on commit b86ac36

Please sign in to comment.