Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PlanetRed
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Digital Experience Group
PlanetRed
Compare revisions
master to master
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
dxg/PlanetRed
Select target project
No results found
master
Select Git revision
Branches
4.0_templates
4.1_templates-symlink
develop
git-fixes
master
5 results
Swap
Target
JSTUREK8/PlanetRed
Select target project
tneumann9/PlanetRed
JSTUREK8/PlanetRed
smccoy12/PlanetRed
dkuzelka2/PlanetRed
s-cwiedel5/PlanetRed
dxg/PlanetRed
6 results
master
Select Git revision
Branches
4.0_templates
4.1_templates-symlink
develop
git-fixes
master
5 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source
2
Update .gitlab-ci.yml file validate PHP
· 28bd720d
Jeff Sturek
authored
Nov 19, 2021
28bd720d
Update .gitlab-ci.yml file remove linter since issue with base Elgg code
· eab82bb7
Jeff Sturek
authored
Nov 22, 2021
eab82bb7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+42
-0
42 additions, 0 deletions
.gitlab-ci.yml
with
42 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
View file @
eab82bb7
# To use this script, you must have the following variables defined
# You can define them at the project or the group level
#
# SONAR_URL: Full URL to the SonarQube server
# SONAR_TOKEN: API token for SonarQube
stages
:
-
Security
-
QA
Dependency Check
:
stage
:
Security
image
:
its-registry.unl.edu/unl-its/docker-ci/dependency-check
tags
:
-
docker
cache
:
policy
:
push
paths
:
-
dep_check
script
:
-
dependency-check -noupdate -f JSON -f XML -f HTML -s . -o ./dep_check --project "$CI_PROJECT_TITLE" --enableExperimental
SonarQube
:
stage
:
QA
image
:
its-registry.unl.edu/unl-its/docker-ci/static-code-analysis:php
tags
:
-
docker
only
:
-
master
cache
:
policy
:
pull
paths
:
-
dep_check
script
:
-
sonar-scanner -Dsonar.host.url=$SONAR_URL -Dsonar.login=$SONAR_TOKEN
-Dsonar.projectKey=$CI_PROJECT_PATH_SLUG -Dsonar.projectName="$CI_PROJECT_TITLE"
-Dsonar.sources=.
-Dsonar.dependencyCheck.reportPath=./dep_check/dependency-check-report.xml
-Dsonar.dependencyCheck.jsonReportPath=./dep_check/dependency-check-report.json
-Dsonar.dependencyCheck.htmlReportPath=./dep_check/dependency-check-report.html
This diff is collapsed.
Click to expand it.