Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ApiCommons
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
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
libraries
ApiCommons
Merge requests
!52
Topic/1226 api commons library migration
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Topic/1226 api commons library migration
Topic/1226-apiCommonsLibraryMigration
into
Product/407-net5migration
Overview
0
Commits
7
Pipelines
1
Changes
15
Merged
Petar Hristov
requested to merge
Topic/1226-apiCommonsLibraryMigration
into
Product/407-net5migration
4 years ago
Overview
0
Commits
7
Pipelines
1
Changes
15
Expand
coscine/issues#1226
coscine/issues#407
0
0
Merge request reports
Compare
Product/407-net5migration
Product/407-net5migration (base)
and
latest version
latest version
9efde9a0
7 commits,
4 years ago
15 files
+
98
−
1771
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
15
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
31
−
53
Options
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
:
ApiCommons
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