Revert "Update ci image to noble" #141
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI in Docker (fast, no full system-access) | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
- '.github/workflows/ci-vm.yml' | |
- 'vm-resources/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: ubuntu:lunar | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -yqq ansible git python3-apt build-essential sudo | |
- run: id | |
- name: Run demo playbook | |
run: ansible-playbook -v --inventory "localhost," --connection=local playbook.yaml | |
- run: bwrap --version | |
- run: conmon --version | |
- run: containerd --version | |
- run: crio --version | |
- run: crun --version | |
- run: ctop -v | |
- run: ignite version | |
- run: podman --version | |
- run: rootlesskit --version | |
- run: runc --version | |
- run: runsc --version | |
- run: skopeo --version |