From 0585d78d117db0a0cd18e0476d50b063b99ba2ce Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Wed, 14 Jun 2023 17:56:37 -0300 Subject: ci: remove commented profile checks from build jobs There already exists a workflow dedicated to profile checks: * .github/workflows/profile-checks.yml. Keep the build and lint jobs separate to make it easier to spot build vs lint failures in CI. See also commit c3b42dbd2 ("ci: disable sort.py on gitlab jobs as well", 2023-04-10). --- .gitlab-ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5befc6f4c..c0d390998 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,14 +12,12 @@ build_ubuntu_package: - apt-get update -qq - > DEBIAN_FRONTEND=noninteractive apt-get install -y -qq - build-essential lintian libapparmor-dev pkg-config python3 gawk + build-essential lintian libapparmor-dev pkg-config gawk - ./ci/printenv.sh - ./configure || (cat config.log; exit 1) - make deb - dpkg -i firejail*.deb - command -V firejail && firejail --version - # - python3 --version - # - python3 contrib/sort.py etc/profile-*/*.profile etc/inc/*.inc build_debian_package: image: debian:buster @@ -55,22 +53,18 @@ build_fedora_package: - make rpms - rpm -i firejail*.rpm - command -V firejail && firejail --version - # - python3 --version - # - python3 contrib/sort.py etc/profile-*/*.profile etc/inc/*.inc build_src_package: image: alpine:latest script: - apk update - apk upgrade - - apk add build-base linux-headers python3 gawk + - apk add build-base linux-headers gawk - ./ci/printenv.sh - ./configure --prefix=/usr || (cat config.log; exit 1) - make - make install-strip - command -V firejail && firejail --version - # - python3 --version - # - python3 contrib/sort.py etc/profile-*/*.profile etc/inc/*.inc build_no_apparmor: image: ubuntu:latest -- cgit v1.2.3-54-g00ecf