Merge branch 'ps/gitlab-ci-static-analysis' into ps/gitlab-ci-macos
* ps/gitlab-ci-static-analysis: ci: add job performing static analysis on GitLab CI
This commit is contained in:
@ -51,3 +51,13 @@ test:
|
||||
paths:
|
||||
- t/failed-test-artifacts
|
||||
when: on_failure
|
||||
|
||||
static-analysis:
|
||||
image: ubuntu:22.04
|
||||
variables:
|
||||
jobname: StaticAnalysis
|
||||
before_script:
|
||||
- ./ci/install-docker-dependencies.sh
|
||||
script:
|
||||
- ./ci/run-static-analysis.sh
|
||||
- ./ci/check-directional-formatting.bash
|
||||
|
@ -21,7 +21,7 @@ linux-musl)
|
||||
apache2 apache2-http2 apache2-proxy apache2-ssl apache2-webdav apr-util-dbd_sqlite3 \
|
||||
bash cvs gnupg perl-cgi perl-dbd-sqlite >/dev/null
|
||||
;;
|
||||
linux-*)
|
||||
linux-*|StaticAnalysis)
|
||||
# Required so that apt doesn't wait for user input on certain packages.
|
||||
export DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
@ -31,6 +31,11 @@ linux-*)
|
||||
perl-modules liberror-perl libauthen-sasl-perl libemail-valid-perl \
|
||||
libdbd-sqlite3-perl libio-socket-ssl-perl libnet-smtp-ssl-perl ${CC_PACKAGE:-${CC:-gcc}} \
|
||||
apache2 cvs cvsps gnupg libcgi-pm-perl subversion
|
||||
|
||||
if test "$jobname" = StaticAnalysis
|
||||
then
|
||||
apt install -q -y coccinelle
|
||||
fi
|
||||
;;
|
||||
pedantic)
|
||||
dnf -yq update >/dev/null &&
|
||||
|
Reference in New Issue
Block a user