Merge branch 'update-templates-and-dependencies-10-6' into 'master'
Update templates and licenses See merge request gitlab-org/gitlab-ce!17637
This commit is contained in:
commit
ac1f3bc3e4
7 changed files with 357 additions and 200 deletions
2
vendor/gitignore/Dart.gitignore
vendored
2
vendor/gitignore/Dart.gitignore
vendored
|
@ -1,4 +1,4 @@
|
|||
# See https://www.dartlang.org/tools/private-files.html
|
||||
# See https://www.dartlang.org/guides/libraries/private-files
|
||||
|
||||
# Files and directories created by pub
|
||||
.dart_tool/
|
||||
|
|
8
vendor/gitignore/Qt.gitignore
vendored
8
vendor/gitignore/Qt.gitignore
vendored
|
@ -1,5 +1,4 @@
|
|||
# C++ objects and libs
|
||||
|
||||
*.slo
|
||||
*.lo
|
||||
*.o
|
||||
|
@ -11,7 +10,6 @@
|
|||
*.dylib
|
||||
|
||||
# Qt-es
|
||||
|
||||
object_script.*.Release
|
||||
object_script.*.Debug
|
||||
*_plugin_import.cpp
|
||||
|
@ -35,13 +33,11 @@ Makefile*
|
|||
target_wrapper.*
|
||||
|
||||
# QtCreator
|
||||
|
||||
*.autosave
|
||||
|
||||
# QtCtreator Qml
|
||||
# QtCreator Qml
|
||||
*.qmlproject.user
|
||||
*.qmlproject.user.*
|
||||
|
||||
# QtCtreator CMake
|
||||
# QtCreator CMake
|
||||
CMakeLists.txt.user*
|
||||
|
||||
|
|
3
vendor/gitignore/R.gitignore
vendored
3
vendor/gitignore/R.gitignore
vendored
|
@ -31,3 +31,6 @@ vignettes/*.pdf
|
|||
# Temporary files created by R markdown
|
||||
*.utf8.md
|
||||
*.knit.md
|
||||
|
||||
# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html
|
||||
rsconnect/
|
||||
|
|
8
vendor/gitignore/TeX.gitignore
vendored
8
vendor/gitignore/TeX.gitignore
vendored
|
@ -110,6 +110,14 @@ acs-*.bib
|
|||
*.gaux
|
||||
*.gtex
|
||||
|
||||
# htlatex
|
||||
*.4ct
|
||||
*.4tc
|
||||
*.idv
|
||||
*.lg
|
||||
*.trc
|
||||
*.xref
|
||||
|
||||
# hyperref
|
||||
*.brf
|
||||
|
||||
|
|
3
vendor/gitignore/VisualStudio.gitignore
vendored
3
vendor/gitignore/VisualStudio.gitignore
vendored
|
@ -259,9 +259,6 @@ FakesAssemblies/
|
|||
.ntvs_analysis.dat
|
||||
node_modules/
|
||||
|
||||
# TypeScript v1 declaration files
|
||||
typings/
|
||||
|
||||
# Visual Studio 6 build log
|
||||
*.plg
|
||||
|
||||
|
|
19
vendor/gitlab-ci-yml/Auto-DevOps.gitlab-ci.yml
vendored
19
vendor/gitlab-ci-yml/Auto-DevOps.gitlab-ci.yml
vendored
|
@ -36,7 +36,6 @@ variables:
|
|||
|
||||
KUBERNETES_VERSION: 1.8.6
|
||||
HELM_VERSION: 2.6.1
|
||||
CODECLIMATE_VERSION: 0.69.0
|
||||
|
||||
stages:
|
||||
- build
|
||||
|
@ -286,6 +285,8 @@ production:
|
|||
export CI_APPLICATION_TAG=$CI_COMMIT_SHA
|
||||
export CI_CONTAINER_NAME=ci_job_build_${CI_JOB_ID}
|
||||
export TILLER_NAMESPACE=$KUBE_NAMESPACE
|
||||
# Extract "MAJOR.MINOR" from CI_SERVER_VERSION and generate "MAJOR-MINOR-stable" for Static Code Analysis
|
||||
export SCA_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
|
||||
|
||||
function sast_container() {
|
||||
if [[ -n "$CI_REGISTRY_USER" ]]; then
|
||||
|
@ -306,20 +307,16 @@ production:
|
|||
}
|
||||
|
||||
function codeclimate() {
|
||||
cc_opts="--env CODECLIMATE_CODE="$PWD" \
|
||||
--volume "$PWD":/code \
|
||||
--volume /var/run/docker.sock:/var/run/docker.sock \
|
||||
--volume /tmp/cc:/tmp/cc"
|
||||
|
||||
docker run ${cc_opts} "codeclimate/codeclimate:${CODECLIMATE_VERSION}" init
|
||||
docker run ${cc_opts} "codeclimate/codeclimate:${CODECLIMATE_VERSION}" analyze -f json > codeclimate.json
|
||||
docker run --env CODECLIMATE_CODE="$PWD" \
|
||||
--volume "$PWD":/code \
|
||||
--volume /var/run/docker.sock:/var/run/docker.sock \
|
||||
--volume /tmp/cc:/tmp/cc \
|
||||
"registry.gitlab.com/gitlab-org/security-products/codequality/codeclimate:${SCA_VERSION}" analyze -f json > codeclimate.json
|
||||
}
|
||||
|
||||
function sast() {
|
||||
case "$CI_SERVER_VERSION" in
|
||||
*-ee)
|
||||
# Extract "MAJOR.MINOR" from CI_SERVER_VERSION and generate "MAJOR-MINOR-stable"
|
||||
SAST_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
|
||||
|
||||
# Deprecation notice for CONFIDENCE_LEVEL variable
|
||||
if [ -z "$SAST_CONFIDENCE_LEVEL" -a "$CONFIDENCE_LEVEL" ]; then
|
||||
|
@ -331,7 +328,7 @@ production:
|
|||
--env SAST_DISABLE_REMOTE_CHECKS="${SAST_DISABLE_REMOTE_CHECKS:-false}" \
|
||||
--volume "$PWD:/code" \
|
||||
--volume /var/run/docker.sock:/var/run/docker.sock \
|
||||
"registry.gitlab.com/gitlab-org/security-products/sast:$SAST_VERSION" /app/bin/run /code
|
||||
"registry.gitlab.com/gitlab-org/security-products/sast:$SCA_VERSION" /app/bin/run /code
|
||||
;;
|
||||
*)
|
||||
echo "GitLab EE is required"
|
||||
|
|
514
vendor/licenses.csv
vendored
514
vendor/licenses.csv
vendored
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue