Skip to content

Bump ansible from 9.2.0 to 9.3.0 #131

Bump ansible from 9.2.0 to 9.3.0

Bump ansible from 9.2.0 to 9.3.0 #131

Workflow file for this run

name: test
on:
push:
branches:
- main
paths:
- ".github/workflows/test.yml"
- "base/**"
- "meta/**"
- "templates/**"
- "ansible.cfg"
- "goss.yaml"
- "requirements.txt"
- "Vagrantfile"
- "variables.yml"
- "vars.yaml"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [focal, jammy, rhel8, rhel9]
steps:
- uses: actions/checkout@v4
- name: Enable KVM group perms
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: Cache Vagrant boxes
uses: actions/cache@v4
with:
path: ~/.vagrant.d/boxes
key: ${{ runner.os }}-vagrant-${{ hashFiles('Vagrantfile') }}
restore-keys: |
${{ runner.os }}-vagrant-
- name: Install Python
uses: actions/setup-python@v5
with:
cache: pip
- name: Install virtualbox
run: |
sudo apt-get update -qq
sudo apt-get install -y virtualbox gpg lsb-release
- name: Install vagrant
run: |
curl -L https://apt.releases.hashicorp.com/gpg | sudo gpg --dearmor -o /usr/share/keyrings/hashicorp-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture) 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
sudo apt update -qq
sudo apt install vagrant
- name: Run tests in Vagrant
run: |
pip install --upgrade pip
python -m venv env
source env/bin/activate
pip install -r requirements.txt
vagrant up ${{ matrix.os }}