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
b7c47d95
Unverified
Commit
b7c47d95
authored
Mar 08, 2018
by
James Lopez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update templates and licenses
parent
7734e85b
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
22 additions
and
21 deletions
+22
-21
Dart.gitignore
vendor/gitignore/Dart.gitignore
+1
-1
Qt.gitignore
vendor/gitignore/Qt.gitignore
+2
-6
R.gitignore
vendor/gitignore/R.gitignore
+3
-0
TeX.gitignore
vendor/gitignore/TeX.gitignore
+8
-0
VisualStudio.gitignore
vendor/gitignore/VisualStudio.gitignore
+0
-3
Auto-DevOps.gitlab-ci.yml
vendor/gitlab-ci-yml/Auto-DevOps.gitlab-ci.yml
+8
-11
licenses.csv
vendor/licenses.csv
+0
-0
No files found.
vendor/gitignore/Dart.gitignore
View file @
b7c47d95
# 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/
...
...
vendor/gitignore/Qt.gitignore
View file @
b7c47d95
# 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
# QtC
t
reator Qml
# QtCreator Qml
*.qmlproject.user
*.qmlproject.user.*
# QtC
t
reator CMake
# QtCreator CMake
CMakeLists.txt.user*
vendor/gitignore/R.gitignore
View file @
b7c47d95
...
...
@@ -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/
vendor/gitignore/TeX.gitignore
View file @
b7c47d95
...
...
@@ -110,6 +110,14 @@ acs-*.bib
*.gaux
*.gtex
# htlatex
*.4ct
*.4tc
*.idv
*.lg
*.trc
*.xref
# hyperref
*.brf
...
...
vendor/gitignore/VisualStudio.gitignore
View file @
b7c47d95
...
...
@@ -259,9 +259,6 @@ FakesAssemblies/
.ntvs_analysis.dat
node_modules/
# TypeScript v1 declaration files
typings/
# Visual Studio 6 build log
*.plg
...
...
vendor/gitlab-ci-yml/Auto-DevOps.gitlab-ci.yml
View file @
b7c47d95
...
...
@@ -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:$S
AST
_VERSION" /app/bin/run /code
"registry.gitlab.com/gitlab-org/security-products/sast:$S
CA
_VERSION" /app/bin/run /code
;;
*)
echo "GitLab EE is required"
...
...
vendor/licenses.csv
View file @
b7c47d95
This diff is collapsed.
Click to expand it.
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