Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ variables:
COVERAGE_XML: coverage.xml
JUNIT_XML: report.xml

default:
tags: [shared-podman]

workflow:
rules:
# Avoid running CI on automated dependency updates (often partial)
Expand All @@ -20,6 +17,9 @@ workflow:
# code-scanning-container
# Requires SONAR_TOKEN variable in GitLab project.
include:
- project: rhelwfautomation/rhelwf-images
file: gitlab-ci-runner-tag.yaml
ref: main
- project: security-guild/code-scanning-container
file: code_scanning-gitlab-ci.yml

Expand All @@ -42,6 +42,10 @@ unittests:
path: $COVERAGE_XML

sonarqube-scan-sast:
variables:
# Larger memory requirements for Java/SonarQube
KUBERNETES_MEMORY_REQUEST: "2Gi"
KUBERNETES_MEMORY_LIMIT: "2Gi"
stage: sonarqube
needs:
- unittests
Expand Down