Remove dependency on unconfined selinux module #391
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: Compile policy | |
on: | |
- pull_request | |
- push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
container: | |
- "docker.io/almalinux:8" | |
- "docker.io/almalinux:9" | |
- "quay.io/centos/centos:stream9" | |
container: | |
image: ${{ matrix.container }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install SELinux | |
run: yum install -y selinux-policy-devel policycoreutils bzip2 perl | |
- name: Compile policy | |
run: make | |
- name: Check syntax of shell scripts | |
run: bash -n *-relabel *-enable *-disable |