Allow traceroute_t bind rawip sockets to unreserved ports #3104
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: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: quay.io/fedora/fedora:rawhide | |
options: --security-opt seccomp=unconfined | |
steps: | |
- uses: actions/checkout@v4 | |
- run: dnf install --nogpgcheck -y git-core checkpolicy policycoreutils-devel make m4 findutils | |
- run: git clone --depth=1 https://github.com/containers/container-selinux.git /tmp/container-selinux | |
- run: cp /tmp/container-selinux/container.* policy/modules/contrib | |
- run: cp dist/targeted/modules.conf policy | |
- run: make -j $(nproc) policy | |
- run: make -j $(nproc) validate | |
- run: make -j $(nproc) container.pp |