mirror of
https://github.com/XFox111/GUTSchedule.git
synced 2026-04-22 06:58:01 +03:00
Merge pull request #6 from XFox111/ci-cd-config
Configured CI pipeline, added status badge to Readme #4
This commit is contained in:
@@ -1,4 +1,7 @@
|
|||||||
# GUTSchedule
|
# GUTSchedule
|
||||||
|
[](https://dev.azure.com/xfox111/GitHub%20CI/_build/latest?definitionId=8&branchName=master)
|
||||||
|

|
||||||
|
|
||||||

|

|
||||||

|

|
||||||
[](https://www.gnu.org/licenses/gpl-3.0)
|
[](https://www.gnu.org/licenses/gpl-3.0)
|
||||||
|
|||||||
+28
-3
@@ -3,9 +3,6 @@
|
|||||||
# Add steps that test, sign, and distribute an app, save build artifacts, and more:
|
# Add steps that test, sign, and distribute an app, save build artifacts, and more:
|
||||||
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin
|
# https://docs.microsoft.com/azure/devops/pipelines/languages/xamarin
|
||||||
|
|
||||||
trigger:
|
|
||||||
- master
|
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'windows-latest'
|
vmImage: 'windows-latest'
|
||||||
|
|
||||||
@@ -20,8 +17,36 @@ steps:
|
|||||||
inputs:
|
inputs:
|
||||||
restoreSolution: '**/*.sln'
|
restoreSolution: '**/*.sln'
|
||||||
|
|
||||||
|
- task: ResharperCli@2
|
||||||
|
inputs:
|
||||||
|
solutionOrProjectPath: 'GUT.Schedule/GUT.Schedule.sln'
|
||||||
|
failBuildLevelSelector: 'Error'
|
||||||
|
failBuildOnCodeIssues: false
|
||||||
|
|
||||||
- task: XamarinAndroid@1
|
- task: XamarinAndroid@1
|
||||||
inputs:
|
inputs:
|
||||||
projectFile: '**/**.csproj'
|
projectFile: '**/**.csproj'
|
||||||
outputDirectory: '$(outputDirectory)'
|
outputDirectory: '$(outputDirectory)'
|
||||||
configuration: '$(buildConfiguration)'
|
configuration: '$(buildConfiguration)'
|
||||||
|
msbuildVersionOption: 'latest'
|
||||||
|
msbuildArchitectureOption: 'x64'
|
||||||
|
jdkOption: 'JDKVersion'
|
||||||
|
|
||||||
|
- task: DeleteFiles@1
|
||||||
|
inputs:
|
||||||
|
SourceFolder: '$(outputDirectory)'
|
||||||
|
Contents: |
|
||||||
|
**/**.pdb
|
||||||
|
**/**.dll
|
||||||
|
|
||||||
|
- task: CopyFiles@2
|
||||||
|
inputs:
|
||||||
|
SourceFolder: '$(Build.SourcesDirectory)'
|
||||||
|
Contents: 'changelog.md'
|
||||||
|
TargetFolder: '$(outputDirectory)'
|
||||||
|
|
||||||
|
- task: PublishBuildArtifacts@1
|
||||||
|
inputs:
|
||||||
|
PathtoPublish: '$(outputDirectory)'
|
||||||
|
ArtifactName: 'bundle'
|
||||||
|
publishLocation: 'Container'
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
# Changelog file
|
||||||
|
## Changelog filling guidelines
|
||||||
|
- Update before every merge to master.
|
||||||
|
- Fill in English
|
||||||
|
- Should be compatible with Google Play changelog format (no Markdown)
|
||||||
Reference in New Issue
Block a user