Skip to content
Draft

TRIAL #8203

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
12 changes: 8 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@
# The kubernetes based jobs don't use directly any job artefact, thus pulling artefact
# is explicitly disabled by default.

workflow:
rules:
# Disable pipelines triggered by Merge Requests
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
when: never
# Allow branch pushes, tag pushes, etc.
- when: always

stages:
# build rpm, tar, deb, oci container
- build
Expand Down Expand Up @@ -635,10 +643,6 @@ Extract Coverage:
- .no_release_rules
dependencies:
- get_jacoco_cli
needs:
- job: get_jacoco_cli
artifacts: true
- job: NFS4.x protocol compliance tests
script:
- JACOCO_CLI_PATH="jacoco-${JACOCO_VERSION}/lib/jacococli.jar"
- PODS=$(kubectl -n $K8S_NAMESPACE get pods -l app.kubernetes.io/instance=store -o jsonpath='{.items[*].metadata.name}')
Expand Down
Loading