BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
17b9d86a
Commit
17b9d86a
authored
Dec 16, 2017
by
Kamil Trzciński
Committed by
Oswaldo Ferreira
Dec 19, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge branch 'skip-sast-on-ce' into 'master'
Avoid running autodevops sast job on GitLab CE Closes gl-sast#3 See merge request gitlab-org/gitlab-ce!15962 (cherry picked from commit
169a8c35
)
8153f734
Avoid running autodevops sast job on GitLab CE
parent
6f1c38d2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
Auto-DevOps.gitlab-ci.yml
vendor/gitlab-ci-yml/Auto-DevOps.gitlab-ci.yml
+12
-1
No files found.
vendor/gitlab-ci-yml/Auto-DevOps.gitlab-ci.yml
View file @
17b9d86a
...
...
@@ -89,7 +89,7 @@ sast:
POSTGRES_DB
:
"
false"
allow_failure
:
true
script
:
-
/app/bin/run
.
-
sast
.
artifacts
:
paths
:
[
gl-sast-report.json
]
...
...
@@ -232,6 +232,17 @@ production:
docker run ${cc_opts} codeclimate/codeclimate:0.69.0 analyze -f json > codeclimate.json
}
function sast() {
case "$CI_SERVER_VERSION" in
*-ee)
/app/bin/run "$@"
;;
*)
echo "GitLab EE is required"
;;
esac
}
function deploy() {
track="${1-stable}"
name="$CI_ENVIRONMENT_SLUG"
...
...
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