2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-22 10:07:12 +00:00

Update .gitlab-ci.yml file with -j $(nproc) lines for faster building

Signed-off-by: Ryan Lee <ryan.lee@canonical.com>
This commit is contained in:
Ryan Lee 2024-10-18 11:45:38 -07:00
parent cb0f84e101
commit 88287d4eec

View File

@ -43,9 +43,9 @@ build-all:
- profiles/ - profiles/
script: script:
- *install-c-build-deps - *install-c-build-deps
- cd libraries/libapparmor && ./autogen.sh && ./configure --with-perl --with-python --prefix=/usr && make && cd ../.. || { cat config.log ; exit 1 ; } - cd libraries/libapparmor && ./autogen.sh && ./configure --with-perl --with-python --prefix=/usr && make -j $(nproc) && cd ../.. || { cat config.log ; exit 1 ; }
- make -C parser - make -C parser -j $(nproc)
- make -C binutils - make -C binutils -j $(nproc)
- make -C utils - make -C utils
- make -C changehat/mod_apparmor - make -C changehat/mod_apparmor
- make -C changehat/pam_apparmor - make -C changehat/pam_apparmor