apparmor.d/.gitlab-ci.yml

151 lines
3.3 KiB
YAML
Raw Normal View History

2021-04-04 00:30:06 +02:00
---
2021-11-09 23:41:12 +01:00
include:
- template: Security/SAST.gitlab-ci.yml
2021-04-04 00:30:06 +02:00
variables:
PKGDEST: $CI_PROJECT_DIR/packages
PACKAGER: 'Alexandre Pujol <alexandre@pujol.io>'
stages:
- lint
2021-12-05 01:21:16 +01:00
- test
2021-09-27 20:20:27 +02:00
- build
2021-04-04 00:30:06 +02:00
- preprocess
2023-01-29 22:18:22 +01:00
- deploy
2021-04-04 00:30:06 +02:00
# Code Linter
# -----------
bash:
stage: lint
image: koalaman/shellcheck-alpine
script:
- shellcheck --shell=bash
2023-03-29 01:19:44 +02:00
PKGBUILD configure dists/build.sh
2021-04-04 00:30:06 +02:00
debian/apparmor.d.postinst debian/apparmor.d.postrm
2021-11-09 23:41:12 +01:00
golangci-lint:
stage: lint
image: golangci/golangci-lint
script:
- golangci-lint run
2021-11-09 23:41:12 +01:00
sast:
stage: lint
2021-04-04 00:30:06 +02:00
2021-12-05 01:21:16 +01:00
# Code test
# ---------
tests:
stage: test
image: golang
2023-01-28 20:44:21 +01:00
coverage: '/Coverage: \d+.\d+/'
2021-12-05 01:21:16 +01:00
script:
- cp tests/journalctl /usr/bin/journalctl
- chmod 755 /usr/bin/journalctl
2023-03-12 18:03:07 +01:00
- mkdir -p /var/log/audit/
- touch /var/log/audit/audit.log /var/log/audit/audit.log.1
2023-01-28 20:44:21 +01:00
- go test ./cmd/aa-log -v -cover -coverprofile=coverage.out
- go tool cover -func=coverage.out
2021-12-05 01:21:16 +01:00
2021-04-04 00:30:06 +02:00
# Package Build
# -------------
2023-03-28 00:18:33 +02:00
archlinux:
2021-09-27 20:20:27 +02:00
stage: build
2023-03-29 01:05:59 +02:00
image: registry.gitlab.com/roddhjav/builders/archlinux
2021-04-04 00:30:06 +02:00
script:
2021-12-05 01:23:49 +01:00
- sudo pacman -Syu --noconfirm --noprogressbar lsb-release
2021-04-04 00:30:06 +02:00
- makepkg -s --noconfirm --noprogressbar
artifacts:
expire_in: 1 day
paths:
- $PKGDEST/*
2023-03-28 00:18:33 +02:00
debian:
2021-09-27 20:20:27 +02:00
stage: build
2023-03-29 01:05:59 +02:00
image: registry.gitlab.com/roddhjav/builders/debian
2021-04-04 00:30:06 +02:00
script:
2023-02-05 01:17:15 +01:00
- git config --global --add safe.directory $CI_PROJECT_DIR
2022-10-16 00:37:10 +02:00
- VERSION="0.$(git rev-list --count HEAD)-1"
2021-04-04 00:30:06 +02:00
- mkdir -p "$PKGDEST"
- sudo apt-get update -q && sudo apt-get install -y golang-go lsb-release config-package-dev rsync
2021-04-04 00:30:06 +02:00
- dch --newversion=$VERSION --urgency=medium --distribution=stable --controlmaint "Release $VERSION"
- dpkg-buildpackage -b -d --no-sign
- mv ../*.deb $PKGDEST/
artifacts:
expire_in: 1 day
paths:
- $PKGDEST/*.deb
2023-03-28 00:38:50 +02:00
ubuntu:
2022-10-16 00:37:10 +02:00
extends: debian
variables:
DIST: ubuntu
2021-04-04 00:30:06 +02:00
# Profile Preprocessing
# ---------------------
2021-09-27 20:20:27 +02:00
preprocess-archlinux:
2021-04-04 00:30:06 +02:00
stage: preprocess
image: archlinux
dependencies:
- archlinux
script:
- pacman -Syu --noconfirm --noprogressbar apparmor
- pacman -U --noconfirm --noprogressbar $PKGDEST/*
2021-04-04 00:30:06 +02:00
- apparmor_parser --preprocess /etc/apparmor.d 1> /dev/null
2021-09-27 20:20:27 +02:00
preprocess-debian:
stage: preprocess
image: debian
dependencies:
- debian
script:
- apt-get update -q
2021-09-27 21:24:22 +02:00
- apt-get install -y apparmor apparmor-profiles
2021-09-27 20:20:27 +02:00
- dpkg --install $PKGDEST/*
- apparmor_parser --preprocess /etc/apparmor.d 1> /dev/null
2022-10-16 00:37:10 +02:00
preprocess-ubuntu:
stage: preprocess
image: ubuntu
dependencies:
- ubuntu
script:
- apt-get update -q
- apt-get install -y apparmor apparmor-profiles
- dpkg --install $PKGDEST/*
- apparmor_parser --preprocess /etc/apparmor.d 1> /dev/null
2023-01-29 22:18:22 +01:00
preprocess-opensuse:
stage: preprocess
2023-03-25 16:10:55 +01:00
image: opensuse/tumbleweed
script:
2023-03-25 16:33:27 +01:00
- zypper install -y apparmor-profiles go git rsync lsb-release util-linux findutils make
- ./configure --complain
- make
- make install
- apparmor_parser --preprocess /etc/apparmor.d 1> /dev/null
2023-01-29 22:18:22 +01:00
# Deploy the documentation
# ------------------------
pages:
stage: deploy
image: python
script:
- pip install -r requirements.txt
- mkdocs build --verbose --site-dir public
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH