-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazure-pipelines.yml
66 lines (55 loc) · 1.68 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
trigger:
- main
pr:
- main
variables:
solution: 'SlipeLuaSourceGenerator.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
jobs:
- job: 'dotnet_build'
pool:
vmImage: 'windows-2022'
steps:
- task: CmdLine@2
displayName: 'Git submodule init'
inputs:
script: 'git submodule update --init'
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '6.x'
- task: DotNetCoreCLI@2
displayName: 'dotnet restore'
inputs:
command: 'restore'
feedsToUse: 'select'
- task: MSBuild@1 # We do an MSBuild to make sure the source generator runs properly
inputs:
solution: 'SlipeLuaSourceGenerator.sln'
- task: DotNetCoreCLI@2 # The dotnet build makes sure the Lua files are properly included in the outputs
displayName: 'dotnet build'
inputs:
command: 'build'
- task: DotNetCoreCLI@2
displayName: 'dotnet pack'
inputs:
command: 'pack'
packagesToPack: '**/SlipeLua.CSharpLua.csproj;**/SlipeLua.CodeGenerator.csproj;**/SlipeMTADefinitions.csproj;**/SlipeShared.csproj;**/SlipeClient.csproj;**/SlipeSql.csproj;**/SlipeServer.csproj'
versioningScheme: 'byPrereleaseNumber'
majorVersion: '0'
minorVersion: '1'
patchVersion: '0'
- task: DotNetCoreCLI@2
displayName: 'dotnet publish'
inputs:
command: 'publish'
publishWebProjects: false
projects: 'SlipeLuaSourceGenerator.sln'
arguments: '--output $(Build.ArtifactStagingDirectory)'
- task: PublishBuildArtifacts@1
displayName: 'publish artifacts'
inputs:
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
ArtifactName: 'drop'
publishLocation: 'Container'