Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
ProxyApi
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 project is archived. Its data is
read-only
.
Show more breadcrumbs
Coscine
backend
libraries
ProxyApi
Merge requests
!15
Sprint/2021 01
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Sprint/2021 01
Sprint/2021-01
into
master
Overview
0
Commits
3
Pipelines
2
Changes
16
Merged
Sprint/2021 01
CoscineBot
requested to merge
Sprint/2021-01
into
master
Jan 28, 2021
Overview
0
Commits
3
Pipelines
2
Changes
16
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
41f2cf9e
3 commits,
Jan 28, 2021
16 files
+
95
−
1010
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
16
.gitlab-ci.yml
+
31
−
53
View file @ 41f2cf9e
Edit in single-file editor
Open in Web IDE
include
:
-
project
:
coscine/tools/gitlab-ci-templates
file
:
-
/dotnet.yml
stages
:
-
build
-
test
-
release
-
releasetrigger
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
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
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
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
-
publish
variables
:
DOTNET_MAIN_PROJECT_FOLDER
:
ProxyApi
build-branch
:
extends
:
.build-branch
build-nuget-release
:
extends
:
.build-nuget-release
test
:
extends
:
.test
publish-branch-prerelease
:
extends
:
.publish-branch-prerelease
publish-gitlab-release
:
extends
:
.publish-gitlab-release
publish-master-release
:
extends
:
.publish-master-release
publish-nuget-release
:
extends
:
.publish-nuget-release
\ No newline at end of file
Loading