mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-21 06:45:29 -06:00
Add `on.workflow_dispatch`. See: * https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#onworkflow_dispatch * https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch
90 lines
2.2 KiB
YAML
90 lines
2.2 KiB
YAML
# Checks that `make dist` works and builds the project with the default
|
|
# configuration.
|
|
|
|
name: Build
|
|
|
|
# Note: Keep this list in sync with DISTFILES in ../../Makefile.
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches-ignore:
|
|
- 'dependabot/**'
|
|
paths:
|
|
- 'contrib/**'
|
|
- 'etc/**'
|
|
- 'm4/**'
|
|
- 'platform/**'
|
|
- 'src/**'
|
|
- 'test/**'
|
|
- .github/workflows/build.yml
|
|
- COPYING
|
|
- Makefile
|
|
- README
|
|
- RELNOTES
|
|
- ci/printenv.sh
|
|
- config.mk.in
|
|
- config.sh.in
|
|
- configure
|
|
- configure.ac
|
|
- install.sh
|
|
- mkdeb.sh
|
|
- mketc.sh
|
|
pull_request:
|
|
paths:
|
|
- 'contrib/**'
|
|
- 'etc/**'
|
|
- 'm4/**'
|
|
- 'platform/**'
|
|
- 'src/**'
|
|
- 'test/**'
|
|
- .github/workflows/build.yml
|
|
- COPYING
|
|
- Makefile
|
|
- README
|
|
- RELNOTES
|
|
- ci/printenv.sh
|
|
- config.mk.in
|
|
- config.sh.in
|
|
- configure
|
|
- configure.ac
|
|
- install.sh
|
|
- mkdeb.sh
|
|
- mketc.sh
|
|
|
|
permissions: # added using https://github.com/step-security/secure-workflows
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@8ca2b8b2ece13480cda6dacd3511b49857a23c09
|
|
with:
|
|
egress-policy: block
|
|
allowed-endpoints: >
|
|
azure.archive.ubuntu.com:80
|
|
github.com:443
|
|
packages.microsoft.com:443
|
|
ppa.launchpadcontent.net:443
|
|
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
|
|
- name: update package information
|
|
run: sudo apt-get update -qy
|
|
- name: install dependencies
|
|
run: >
|
|
sudo apt-get install -qy
|
|
gcc-12 libapparmor-dev libselinux1-dev expect xzdec whois
|
|
bridge-utils
|
|
- name: print env
|
|
run: ./ci/printenv.sh
|
|
- name: configure
|
|
run: >
|
|
CC=gcc-12 ./configure --prefix=/usr --enable-fatal-warnings
|
|
--enable-analyzer --enable-apparmor --enable-selinux
|
|
|| (cat config.log; exit 1)
|
|
- name: make
|
|
run: make
|
|
- name: make install
|
|
run: sudo make install
|
|
- name: print firejail version
|
|
run: command -V firejail && firejail --version
|