Skip to content
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
8 changes: 6 additions & 2 deletions .github/workflows/build-rpi-github-hosted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:

# Use proper Vagrantfile and set ENV variable of config.vm.box
cp -av ci/Vagrant/Vagrantfile ./
echo vm_box='fedora/40-cloud-base' > .env
echo vm_box='fedora/41-cloud-base' > .env

# Date stamp
date_stamp=$(date -u '+%Y%m%d')
Expand Down Expand Up @@ -329,6 +329,10 @@ jobs:

sudo vagrant up fedora

- name: Install requisite packages
run: |
sudo vagrant ssh fedora -c "sudo dnf install -y -q xfsprogs"

- name: Tune SElinux
run: |
# set the mode SELinux is running in into Permissive
Expand All @@ -347,7 +351,7 @@ jobs:
- name: Install Docker on the Vagrant VM
run: |
sudo vagrant ssh fedora -c "sudo dnf -y -q install dnf-plugins-core"
sudo vagrant ssh fedora -c "sudo dnf -y -q config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo"
sudo vagrant ssh fedora -c "sudo dnf -y -q config-manager addrepo --from-repofile=https://download.docker.com/linux/fedora/docker-ce.repo"
sudo vagrant ssh fedora -c "sudo dnf -y -q install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin"
sudo vagrant ssh fedora -c "sudo systemctl start docker"

Expand Down
Loading