Skip to content

Commit

Permalink
add .gitlab-ci-coverage.yml for a scheduled build
Browse files Browse the repository at this point in the history
This will be used by the https://gitlab.com/samba-team/samba
configuration, while https://gitlab.com/samba-team/devel/samba
will still use .gitlab-ci.yml (via the legacy .gitlab-ci-private.yml).

The key point is the usage of the more powerful n1-standard-2
runners for testing.

Signed-off-by: Stefan Metzmacher <[email protected]>
Reviewed-by: Andrew Bartlett <[email protected]>
Reviewed-by: Andreas Schneider <[email protected]>

Autobuild-User(master): Stefan Metzmacher <[email protected]>
Autobuild-Date(master): Tue Apr 13 09:33:14 UTC 2021 on sn-devel-184
  • Loading branch information
metze-samba committed Apr 13, 2021
1 parent 7387da7 commit d575979
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 3 deletions.
10 changes: 10 additions & 0 deletions .gitlab-ci-coverage-runners.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
include:
- /.gitlab-ci-default-runners.yml

.shared_runner_test:
# We need the more powerful n1-standard-2 runners
# in order to handle the lcov overhead.
#
# See .gitlab-ci-default-runners.yml for more details
tags:
- gitlab-org-docker
12 changes: 12 additions & 0 deletions .gitlab-ci-coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This is just used for the scheduled pipelines in the
# https://gitlab.com/samba-team/samba configuration
#

variables:
SAMBA_CI_FLAVOR: "coverage"
# "--enable-coverage" or ""
SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE: "--enable-coverage"

include:
- /.gitlab-ci-coverage-runners.yml
- /.gitlab-ci-main.yml
6 changes: 6 additions & 0 deletions .gitlab-ci-default.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
variables:
SAMBA_CI_FLAVOR: "default"
# "--enable-coverage" or ""
# See .gitlab-ci-coverage.yml
SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE: ""

include:
- /.gitlab-ci-default-runners.yml
- /.gitlab-ci-main.yml
13 changes: 10 additions & 3 deletions .gitlab-ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ variables:
#
GIT_STRATEGY: fetch
GIT_DEPTH: "3"
# "--enable-coverage" or ""
SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE: ""
#
# we run autobuild.py inside a samba CI docker image located on gitlab's registry
# overwrite this variable if you want use your own image registry.
Expand Down Expand Up @@ -89,7 +87,7 @@ include:
AUTOBUILD_JOB_NAME: $CI_JOB_NAME
stage: build
cache:
key: ccache.${CI_JOB_NAME}.${SAMBA_CI_JOB_IMAGE}
key: ccache.${CI_JOB_NAME}.${SAMBA_CI_JOB_IMAGE}.${SAMBA_CI_FLAVOR}
paths:
- ccache
before_script:
Expand Down Expand Up @@ -191,6 +189,7 @@ others:
# the acls again.
- cp -a /sha1sum.txt /tmp/samba-testbase/image-sha1sum.txt
- cp -a /tmp/commit.txt /tmp/samba-testbase/commit.txt
- ln -s /tmp/samba-testbase/${AUTOBUILD_JOB_NAME}/ /tmp/samba-testbase/build_subdir_link
- pushd /tmp && getfacl -R samba-testbase > samba-testbase.acl.dump && popd
- chmod -R +w /tmp/samba-testbase
- mv /tmp/samba-testbase.acl.dump /tmp/samba-testbase/
Expand All @@ -213,6 +212,11 @@ others:
- diff -u /tmp/samba-testbase/commit.txt /tmp/commit.txt
- mv /tmp/samba-testbase/samba-testbase.acl.dump /tmp/samba-testbase.acl.dump
- pushd /tmp && setfacl --restore=/tmp/samba-testbase.acl.dump && popd
- ls -la /tmp/samba-testbase/
- ls -la /tmp/samba-testbase/build_subdir_link
- ls -la /tmp/samba-testbase/build_subdir_link/
- if [ -n "$SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE" ]; then find /tmp/samba-testbase/build_subdir_link/ -type d -printf "'%p'\n" | xargs chmod u+w; fi
- ls -la /tmp/samba-testbase/build_subdir_link/
# gitlab predefines CI_JOB_NAME for each job. The gitlab job usually matches the
# autobuild name, which means we can define a default template that runs most autobuild jobs
- script/autobuild.py $AUTOBUILD_JOB_NAME $SAMBA_CI_AUTOBUILD_ENABLE_COVERAGE --skip-dependencies --verbose --nocleanup --keeplogs --tail --full-testbase /tmp/samba-testbase
Expand Down Expand Up @@ -429,9 +433,12 @@ pages:
- samba-no-opath1
- samba-no-opath2
script:
- ls -la *.info
- ./configure.developer
- make -j
- ls -la *.info
- lcov $(ls *.info | xargs -I{} echo -n "-a {} ") -o all.info
- ls -la *.info
- genhtml all.info --output-directory public --prefix=$(pwd) --title "coverage report for $CI_COMMIT_REF_NAME $CI_COMMIT_SHORT_SHA"
artifacts:
expire_in: 30 days
Expand Down

0 comments on commit d575979

Please sign in to comment.