mirror of
https://github.com/netblue30/firejail.git
synced 2026-05-15 14:16:14 -06:00
Some checks failed
Build-extra / build-gcc (push) Has been cancelled
Build-extra / build-clang (push) Has been cancelled
Build / build (push) Has been cancelled
Check-C / scan-build (push) Has been cancelled
Check-C / cppcheck (push) Has been cancelled
Check-C / codeql-cpp (push) Has been cancelled
Check-Profiles / profile-checks (push) Has been cancelled
Codespell / codespell (push) Has been cancelled
Test / test-main (push) Has been cancelled
Test / test-fs (push) Has been cancelled
Test / test-environment (push) Has been cancelled
Test / test-utils (push) Has been cancelled
Test / test-network (push) Has been cancelled
Changes:
* Use `scan-build make` instead of running `scan-build` inside of `make`
(this appears to be necessary for the output synchronization to work)
* Use `-j "$(nproc)"` and `-Orecurse` for the main `make` step in all
jobs (including where this step is currently not parallel)
The main drawback of using parallel make (`-j`) is that the output of
different jobs may be printed interspersed, which makes the output
harder to read and less stable across multiple executions.
Example:
job1: line1
job1: line2
job2: line1
job3: line1
job1: line3
Using `-Orecurse` should fix this by ensuring that the output of all
jobs is still printed sequentially in the order that the jobs were
executed (that is, as if `-j` was not used), even if the jobs themselves
are executed in parallel.
This should ensure that the main `make` step in each job runs its
targets in parallel and has a stable output at the same time, making it
easier to compare the logs of the same job across different CI runs.
Note: The `-O` flag is specific to GNU make and was added in version 4.0
(2013-10-09).
Related commits:
* 500d8f2d6 ("ci: run make in parallel where applicable", 2023-08-14) /
PR #5960
* 1f6400bd8 ("build: sync scan-build target with CI", 2024-02-24) /
PR #6222
80 lines
1.8 KiB
YAML
80 lines
1.8 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
|
|
- 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
|
|
- mkdeb.sh
|
|
- mketc.sh
|
|
|
|
permissions: # added using https://github.com/step-security/secure-workflows
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
timeout-minutes: 10
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@8d3c67de8e2fe68ef647c8db1e6a09f647780f40
|
|
with:
|
|
egress-policy: block
|
|
allowed-endpoints: >
|
|
github.com:443
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
|
- name: print env
|
|
run: ./ci/printenv.sh
|
|
- name: configure
|
|
run: >
|
|
./configure
|
|
--prefix=/usr --enable-fatal-warnings
|
|
--disable-apparmor --disable-selinux
|
|
|| (cat config.log; exit 1)
|
|
- name: make
|
|
run: make -j "$(nproc)" -Orecurse
|
|
- name: make install
|
|
run: sudo make install
|
|
- name: make installcheck
|
|
run: make installcheck
|