Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
1f7c7e6b
Commit
1f7c7e6b
authored
Apr 29, 2020
by
Lucas Charles
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate License-Scanning CI template to rules syntax
Relates to
https://gitlab.com/gitlab-org/gitlab/-/issues/36543
parent
ad3904e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
62 additions
and
8 deletions
+62
-8
changelogs/unreleased/e2300-lm-template.yml
changelogs/unreleased/e2300-lm-template.yml
+5
-0
ee/spec/lib/gitlab/ci/templates/license_scanning_gitlab_ci_yaml_spec.rb
...tlab/ci/templates/license_scanning_gitlab_ci_yaml_spec.rb
+52
-0
lib/gitlab/ci/templates/Security/License-Scanning.gitlab-ci.yml
...tlab/ci/templates/Security/License-Scanning.gitlab-ci.yml
+5
-8
No files found.
changelogs/unreleased/e2300-lm-template.yml
0 → 100644
View file @
1f7c7e6b
---
title
:
Migrate License-Scanning CI template to rules syntax
merge_request
:
30784
author
:
type
:
changed
ee/spec/lib/gitlab/ci/templates/license_scanning_gitlab_ci_yaml_spec.rb
0 → 100644
View file @
1f7c7e6b
# frozen_string_literal: true
require
'spec_helper'
describe
'License-Scanning.gitlab-ci.yml'
do
subject
(
:template
)
{
Gitlab
::
Template
::
GitlabCiYmlTemplate
.
find
(
'License-Scanning'
)
}
describe
'the created pipeline'
do
let
(
:user
)
{
create
(
:admin
)
}
let
(
:default_branch
)
{
'master'
}
let
(
:project
)
{
create
(
:project
,
:custom_repo
,
files:
{
'README.txt'
=>
''
})
}
let
(
:service
)
{
Ci
::
CreatePipelineService
.
new
(
project
,
user
,
ref:
'master'
)
}
let
(
:pipeline
)
{
service
.
execute!
(
:push
)
}
let
(
:build_names
)
{
pipeline
.
builds
.
pluck
(
:name
)
}
before
do
stub_ci_pipeline_yaml_file
(
template
.
content
)
allow_any_instance_of
(
Ci
::
BuildScheduleWorker
).
to
receive
(
:perform
).
and_return
(
true
)
allow
(
project
).
to
receive
(
:default_branch
).
and_return
(
default_branch
)
end
context
'when project has no license'
do
it
'includes no jobs'
do
expect
{
pipeline
}.
to
raise_error
(
Ci
::
CreatePipelineService
::
CreateError
)
end
end
context
'when project has Ultimate license'
do
let
(
:license
)
{
create
(
:license
,
plan:
License
::
ULTIMATE_PLAN
)
}
before
do
allow
(
License
).
to
receive
(
:current
).
and_return
(
license
)
end
context
'by default'
do
it
'includes job'
do
expect
(
build_names
).
to
match_array
(
%w[license_scanning]
)
end
end
context
'when LICENSE_MANAGEMENT_DISABLED=1'
do
before
do
create
(
:ci_variable
,
project:
project
,
key:
'LICENSE_MANAGEMENT_DISABLED'
,
value:
'1'
)
end
it
'includes no jobs'
do
expect
{
pipeline
}.
to
raise_error
(
Ci
::
CreatePipelineService
::
CreateError
)
end
end
end
end
end
lib/gitlab/ci/templates/Security/License-Scanning.gitlab-ci.yml
View file @
1f7c7e6b
...
...
@@ -23,11 +23,8 @@ license_scanning:
reports
:
license_scanning
:
$LM_REPORT_FILE
dependencies
:
[]
only
:
refs
:
-
branches
variables
:
-
$GITLAB_FEATURES =~ /\blicense_scanning\b/
except
:
variables
:
-
$LICENSE_MANAGEMENT_DISABLED
rules
:
-
if
:
$LICENSE_MANAGEMENT_DISABLED
when
:
never
-
if
:
$CI_COMMIT_BRANCH &&
$GITLAB_FEATURES =~ /\blicense_scanning\b/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment