Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
Quota
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
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
Quota
Merge requests
!5
Sprint/2021 03
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Sprint/2021 03
Sprint/2021-03
into
master
Overview
0
Commits
2
Pipelines
2
Changes
10
Merged
Marcel Nellesen
requested to merge
Sprint/2021-03
into
master
4 years ago
Overview
0
Commits
2
Pipelines
2
Changes
10
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
4334b321
2 commits,
4 years ago
10 files
+
42
−
1778
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
19
−
50
Options
include
:
-
project
:
coscine/tools/gitlab-ci-templates
file
:
-
/dotnet.yml
stages
:
-
build
-
test
-
docs
-
release
-
releasetrigger
-
publish
variables
:
DOTNET_MAIN_PROJECT_FOLDER
:
Quota
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