Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TreeApi
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
apis
TreeApi
Merge requests
!19
Product/1287 dotnet5 sharepoint
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Product/1287 dotnet5 sharepoint
Product/1287-dotnet5Sharepoint
into
Sprint/2021-03
Overview
0
Commits
2
Pipelines
2
Changes
11
Merged
Petar Hristov
requested to merge
Product/1287-dotnet5Sharepoint
into
Sprint/2021-03
4 years ago
Overview
0
Commits
2
Pipelines
2
Changes
11
coscine/issues#1287
Edited
4 years ago
by
Marcel Nellesen
0
0
Merge request reports
Compare
Sprint/2021-03
Sprint/2021-03 (base)
and
latest version
latest version
7bc5849c
2 commits,
4 years ago
11 files
+
43
−
1805
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
11
.gitlab-ci.yml
+
19
−
49
View file @ 7bc5849c
Edit in single-file editor
Open in Web IDE
include
:
-
project
:
coscine/tools/gitlab-ci-templates
file
:
-
/dotnet.yml
stages
:
-
build
-
test
-
release
-
releasetrigger
-
publish
variables
:
DOTNET_MAIN_PROJECT_FOLDER
:
Tree
build-branch
:
extends
:
.build-branch
cake:Test
:
stage
:
test
script
:
-
PowerShell .\build.ps1 -Target Test -Configuration Debug
variables
:
GIT_STRATEGY
:
clone
artifacts
:
reports
:
junit
:
"
./Artifacts/TestResults.xml"
paths
:
-
"
./Artifacts/*"
except
:
-
master
-
tags
test
:
extends
:
.test
cake:Release
:
stage
:
release
script
:
-
PowerShell .\build.ps1 -Target Release -Configuration Release --nugetApiKey="${NUGET_API_KEY}"
variables
:
GIT_STRATEGY
:
clone
dependencies
:
-
cake:Test
artifacts
:
paths
:
-
"
./Artifacts/*"
only
:
-
tags
publish-gitlab-release
:
extends
:
.publish-gitlab-release
cake:Prerelease
:
stage
:
release
script
:
-
PowerShell .\build.ps1 -Target Prerelease -Configuration Release
variables
:
GIT_STRATEGY
:
clone
dependencies
:
-
cake:Test
artifacts
:
paths
:
-
"
./Artifacts/*"
except
:
-
tags
-
master
publish-master-release
:
extends
:
.publish-master-release
cake:GitlabRelease
:
stage
:
releasetrigger
script
:
-
PowerShell .\build.ps1 -Target GitlabRelease --GitlabProjectPath="${CI_PROJECT_PATH}" --gitlabProjectId="${CI_PROJECT_ID}" --gitlabToken="${GITLAB_TOKEN}"
only
:
-
master
\ No newline at end of file
Loading