diff options
-rw-r--r-- | .gitlab-ci.yml | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a43a2de686..5b15f0280a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,4 @@ stages: - - initialization - stage1-testing # we utilize the images generated by the build-images project, to @@ -13,26 +12,6 @@ variables: CPPCHECK_OPTIONS: "--enable=style --enable=performance --enable=portability --std=c99 --suppressions-list=devel/cppcheck.suppressions --template='{id}:{file}:{line},{severity},{message}'" GET_SOURCES_ATTEMPTS: "3" -################ -# Initialization -################ - -init/Fedora/x86_64: - stage: initialization - image: $CI_REGISTRY/$BUILD_IMAGES_PROJECT:$FEDORA_BUILD - script: - - make autoreconf - - ./configure --prefix=/usr --libdir=/usr/lib64 --disable-cxx --disable-non-suiteb-curves --disable-maintainer-mode --disable-guile - - make syntax-check - tags: - - shared - artifacts: - expire_in: 1 week - when: on_failure - paths: - - ./*.log - - ################################################## # Stage 1, documentation, and advanced checks ################################################## @@ -201,6 +180,7 @@ static-analyzers/Fedora/x86_64: script: - make autoreconf - scan-build ./configure --disable-doc --disable-guile --enable-fips140-mode --enable-valgrind-tests + - make -j$(nproc) syntax-check - make -j$(nproc) -C gl - scan-build --status-bugs -o scan-build-lib make -j$(nproc) -C lib - scan-build --status-bugs -o scan-build-libdane make -j$(nproc) -C libdane |