forked from samba-team/samba
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add .gitlab-ci-coverage.yml for a scheduled build
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
1 parent
7387da7
commit d575979
Showing
4 changed files
with
38 additions
and
3 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
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 |
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,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 |
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 |
---|---|---|
@@ -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 |
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