mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-06 08:09:28 +00:00
29 lines
1.4 KiB
YAML
29 lines
1.4 KiB
YAML
name: 'Setup Vagrant and Libvirt'
|
|
description: 'A composite action that installs latest versions of vagrant and libvirt for use on ubuntu based runners'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Add vagrant to apt-get sources
|
|
shell: bash
|
|
run: |
|
|
curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
|
|
echo "deb [signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
|
|
- name: Install vagrant and libvirt
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libvirt-daemon libvirt-daemon-system vagrant=2.4.1-1 ruby-libvirt
|
|
sudo systemctl enable --now libvirtd
|
|
- name: Install vagrant dependencies
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get install -y --no-install-recommends libxslt-dev libxml2-dev libvirt-dev ruby-bundler ruby-dev zlib1g-dev
|
|
# This is a workaround for the libvirt group not being available in the current shell
|
|
# https://github.com/actions/runner-images/issues/7670#issuecomment-1900711711
|
|
- name: Make the libvirt socket rw accessible to everyone
|
|
shell: bash
|
|
run: |
|
|
sudo chmod a+rw /var/run/libvirt/libvirt-sock
|
|
- name: Install vagrant-libvirt plugin
|
|
shell: bash
|
|
run: vagrant plugin install vagrant-libvirt |