Commit b7d0fb55 authored by Tiffany Rea's avatar Tiffany Rea Committed by Mark Lapierre

Fix remove runner failed error

parent e6234a15
......@@ -2,9 +2,7 @@ include:
template: License-Scanning.gitlab-ci.yml
license_scanning:
tags:
- qa
- test
tags: [secure_license]
script:
- echo "Skipped"
artifacts:
......
......@@ -6,9 +6,7 @@ include:
template: License-Scanning.gitlab-ci.yml
dependency_scanning:
tags:
- qa
- test
tags: [secure_report]
script:
- echo "Skipped"
artifacts:
......@@ -16,9 +14,7 @@ dependency_scanning:
dependency_scanning: gl-dependency-scanning-report.json
container_scanning:
tags:
- qa
- test
tags: [secure_report]
only: null # Template defaults to feature branches only
variables:
GIT_STRATEGY: fetch # Template defaults to none, which stops fetching the premade report
......@@ -29,9 +25,7 @@ container_scanning:
container_scanning: gl-container-scanning-report.json
sast:
tags:
- qa
- test
tags: [secure_report]
only: null # Template defaults to feature branches only
script:
- echo "Skipped"
......@@ -40,9 +34,7 @@ sast:
sast: gl-sast-report.json
dast:
tags:
- qa
- test
tags: [secure_report]
only: null # Template defaults to feature branches only
script:
- echo "Skipped"
......@@ -51,9 +43,7 @@ dast:
dast: gl-dast-report.json
license_scanning:
tags:
- qa
- test
tags: [secure_report]
script:
- echo "Skipped"
artifacts:
......
......@@ -2,9 +2,7 @@ include:
template: License-Scanning.gitlab-ci.yml
.sast-analyzer:
tags:
- qa
- test
tags: [secure_sast]
script:
- echo "Skipped"
artifacts:
......@@ -12,9 +10,7 @@ include:
sast: gl-sast-report.json
license_scanning:
tags:
- qa
- test
tags: [secure_sast]
script:
- echo "Skipped"
artifacts:
......
......@@ -30,7 +30,7 @@ module QA
@runner = Resource::Runner.fabricate! do |runner|
runner.project = @project
runner.name = @executor
runner.tags = %w[qa test]
runner.tags = ['secure_report']
end
# Push fixture to generate Secure reports
......
......@@ -48,7 +48,7 @@ module QA
Resource::Runner.fabricate! do |runner|
runner.project = project
runner.name = "runner-for-#{project.name}"
runner.tags = %w[qa test]
runner.tags = ['secure_sast']
end
end
......
......@@ -17,7 +17,7 @@ module QA
@runner = Resource::Runner.fabricate! do |runner|
runner.project = @project
runner.name = "runner-for-#{@project.name}"
runner.tags = %w[qa test]
runner.tags = ['secure_license']
end
end
......
......@@ -24,7 +24,7 @@ module QA
@runner = Resource::Runner.fabricate! do |runner|
runner.project = @project
runner.name = executor
runner.tags = %w[qa test]
runner.tags = ['secure_license']
end
Resource::Repository::ProjectPush.fabricate! do |project_push|
......
......@@ -22,7 +22,7 @@ module QA
@runner = Resource::Runner.fabricate! do |runner|
runner.project = @project
runner.name = @executor
runner.tags = %w[qa test]
runner.tags = ['secure_report']
end
# Push fixture to generate Secure reports
......
......@@ -44,7 +44,7 @@ module QA
@runner = Resource::Runner.fabricate_via_api! do |runner|
runner.project = @project
runner.name = "runner-for-#{@project.name}"
runner.tags = %w[qa test]
runner.tags = ['secure_report']
end
# Push fixture to generate Secure reports
......
......@@ -30,7 +30,7 @@ module QA
@runner = Resource::Runner.fabricate! do |runner|
runner.project = @project
runner.name = @executor
runner.tags = %w[qa test]
runner.tags = ['secure_report']
end
@source = Resource::Repository::ProjectPush.fabricate! do |push|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment