Various updates #799
Workflow file for this run
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: Ubuntu | |
on: [push, pull_request, workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Install Build dependencies | |
run: | | |
sudo apt-get update -q | |
sudo apt-get install -y \ | |
devscripts debhelper config-package-dev \ | |
auditd apparmor-profiles apparmor-utils | |
sudo rm /etc/apparmor.d/usr.lib.snapd.snap-confine.real | |
- name: Build the apparmor.d package | |
run: | | |
VERSION="0.$(git rev-list --count HEAD)-1" | |
dch --newversion="$VERSION" --urgency=medium --distribution=stable --controlmaint "Release $VERSION" | |
dpkg-buildpackage -b -d --no-sign | |
- name: Install apparmor.d | |
run: sudo dpkg --install ../apparmor.d_*_all.deb | |
- name: Reload AppArmor | |
run: | | |
sudo systemctl restart apparmor.service || true | |
sudo systemctl status apparmor.service | |
- name: Show AppArmor log | |
run: | | |
sudo aa-log | |
sudo aa-log -s | |
- name: Ensure compatibility with some AppArmor userspace tools | |
run: sudo aa-enforce /etc/apparmor.d/aa-notify | |
- name: Show Number of loaded profile | |
run: sudo aa-status --profiled |