This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add coverity-test job which runs coverity analysis on SCP-firmware. Included in deployment and daily pipelines. Signed-off-by: Mohamed Omar Asaker <[email protected]> Change-Id: I3b1188c04e55cd8fecb6feed3f9d864138b6e70a
- Loading branch information
1 parent
77f20a5
commit e93fccf
Showing
3 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# | ||
# Arm SCP/MCP Software | ||
# Copyright (c) 2024, Arm Limited and Contributors. All rights reserved. | ||
# | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# | ||
|
||
.coverity-test: | ||
image: ${CI_REGISTRY_IMAGE}/coverity-tester-amd64 | ||
tags: | ||
- amd64 | ||
variables: | ||
GIT_SUBMODULE_STRATEGY: recursive | ||
GIT_DEPTH: 1 | ||
SCP_CI_OUTPUT: /scp/output | ||
SCP_CI_PLATFORM: juno | ||
WORKSPACE_PATH: /scp/coverity_workspace | ||
before_script: | ||
- ln -s $(pwd) /scp | ||
script: | ||
- echo "Coverity analysis will run against $SCP_CI_PLATFORM build" | ||
- /coverity_entrypoint.sh | ||
artifacts: | ||
when: always | ||
expire_in: 2 days | ||
paths: | ||
- output/scp-coverity-analysis-log.txt | ||
- output/scp-coverity-analysis-results.tgz |