Skip to content
Snippets Groups Projects
Commit 21da676e authored by Dan Williams's avatar Dan Williams
Browse files

Merge request !1299 from 'dco3'

ci: fix a couple DCO check issues

!1299
parents 703eee16 0bf02c88
No related branches found
No related tags found
1 merge request!1299ci: fix a couple DCO check issues
Pipeline #1374442 passed
......@@ -5,8 +5,8 @@ include:
- templates/ubuntu.yml
stages:
- precheck
- container prep
- precheck
- build
.common_variables:
......@@ -25,22 +25,6 @@ stages:
LIBQRTR_BRANCH: 'main'
LIBMBIM_BRANCH: 'main'
verify-dco:
stage: precheck
extends:
- .fdo.distribution-image@ubuntu
- .common_variables
only:
- merge_requests
script: |
if [[ -n "${CI_MERGE_REQUEST_DIFF_BASE_SHA}" ]]; then
export COMMITS=$(git log --no-merges --format="%H" ${CI_MERGE_REQUEST_DIFF_BASE_SHA}.. | xargs)
for c in "${COMMITS}"; do
echo "Checking commit ${c} for DCO Signed-off-by"
git log --format="%b" -1 ${c} | grep "Signed-off-by: .* <.*@.*>"
done
fi
build container:
extends:
- .fdo.container-build@ubuntu
......@@ -86,6 +70,24 @@ before_script:
popd
fi
verify-dco:
stage: precheck
extends:
- .fdo.distribution-image@ubuntu
- .common_variables
only:
- merge_requests
script: |
if [[ -n "${CI_MERGE_REQUEST_DIFF_BASE_SHA}" ]]; then
export COMMITS=$(git log --no-merges --format="%H" ${CI_MERGE_REQUEST_DIFF_BASE_SHA}.. | xargs)
for c in "${COMMITS}"; do
$(git log --format="%b" -1 ${c} | grep -q "^Signed-off-by: .* <.*@.*>") && rc="$?" || rc="$?"
if [[ rc -eq 1 ]]; then
echo "Commit ${c} failed DCO Signed-off-by check"
fi
done
fi
build-no-qmi:
stage: build
extends:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment