Merge pull request #6187 from kmk3/landlock-add-dev #1626
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
# Builds the project with alternative tools. | |
name: Build-extra | |
on: | |
workflow_dispatch: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
paths: | |
- 'm4/**' | |
- 'src/**.c' | |
- 'src/**.h' | |
- 'src/**.mk' | |
- 'src/**Makefile' | |
- .github/workflows/build-extra.yml | |
- Makefile | |
- ci/printenv.sh | |
- config.mk.in | |
- config.sh.in | |
- configure | |
- configure.ac | |
pull_request: | |
paths: | |
- 'm4/**' | |
- 'src/**.c' | |
- 'src/**.h' | |
- 'src/**.mk' | |
- 'src/**Makefile' | |
- .github/workflows/build-extra.yml | |
- Makefile | |
- ci/printenv.sh | |
- config.mk.in | |
- config.sh.in | |
- configure | |
- configure.ac | |
permissions: # added using https://github.com/step-security/secure-workflows | |
contents: read | |
jobs: | |
build-clang: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 10 | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 | |
with: | |
egress-policy: block | |
allowed-endpoints: > | |
archive.ubuntu.com:80 | |
azure.archive.ubuntu.com:80 | |
github.com:443 | |
packages.microsoft.com:443 | |
ppa.launchpadcontent.net:443 | |
security.ubuntu.com:80 | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 | |
- name: update package information | |
run: sudo apt-get update -qy | |
- name: install dependencies | |
run: > | |
sudo apt-get install -qy | |
libapparmor-dev libselinux1-dev | |
- name: print env | |
run: ./ci/printenv.sh | |
- name: configure | |
run: > | |
CC=clang-14 ./configure --enable-fatal-warnings --enable-apparmor | |
--enable-selinux | |
|| (cat config.log; exit 1) | |
- name: make | |
run: make | |
- name: make install | |
run: sudo make install | |
- name: print version | |
run: command -V firejail && firejail --version |