* .gitlab-ci.yml: Move scan-build results to parent directory

This commit is contained in:
Tim Rühsen 2021-06-06 23:48:42 +02:00
parent a0e0965d1e
commit 89fc8d84b7

View File

@ -334,7 +334,7 @@ Scan-Build:
- scan-build ./configure $CONFIGURE_BASE_FLAGS --cache-file ../cache/config.cache - scan-build ./configure $CONFIGURE_BASE_FLAGS --cache-file ../cache/config.cache
- make -C lib -j$(nproc) - make -C lib -j$(nproc)
- make -C src css_.o - make -C src css_.o
- scan-build -v -enable-checker nullability --keep-empty --status-bugs -o scan-build make -j$(nproc) - scan-build -v -enable-checker nullability --keep-empty --status-bugs -o ../scan-build make -j$(nproc)
tags: tags:
- shared - shared
- linux - linux
@ -348,7 +348,7 @@ Scan-Build:
expire_in: 2 weeks expire_in: 2 weeks
when: on_failure when: on_failure
paths: paths:
- wget-*/scan-build/* - scan-build/
CoverageReports: CoverageReports:
stage: test-from-tarball stage: test-from-tarball