Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
BlobApi
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
BlobApi
Merge requests
!18
You need to sign in or sign up before continuing.
Sprint/2021 03
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Sprint/2021 03
Sprint/2021-03
into
master
Overview
0
Commits
2
Pipelines
2
Changes
11
Merged
Marcel Nellesen
requested to merge
Sprint/2021-03
into
master
4 years ago
Overview
0
Commits
2
Pipelines
2
Changes
11
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
1c1eb58d
2 commits,
4 years ago
11 files
+
44
−
1808
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 @ 1c1eb58d
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
:
Blob
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