-
-
Notifications
You must be signed in to change notification settings - Fork 18
189 lines (181 loc) · 6.93 KB
/
build.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
on:
push:
branches:
- main
tags:
- v*
pull_request:
env:
Configuration: Release
TreatWarningsAsErrors: true
WarningsNotAsErrors: 1591,NU5128
Deterministic: true
RunCodeAnalysis: false
jobs:
pre_build:
runs-on: ubuntu-20.04
outputs:
version: ${{ steps.version.outputs.version }}
version3: ${{ steps.version.outputs.version3 }}
defaults:
run:
working-directory: src
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: dotnet tool install -g GitVersion.Tool --version 5.11.1
- name: Resolve version
id: version
run: |
dotnet-gitversion > version.json
version="$(jq -r '.SemVer' version.json)"
version3="$(jq -r '.MajorMinorPatch' version.json)"
pr_version="$(jq -r '.MajorMinorPatch' version.json)-$(jq -r '.PreReleaseLabel' version.json).${{ github.run_number }}.${{ github.run_attempt }}"
if [ "${{ github.event_name }}" = "pull_request" ]; then version=$pr_version; fi
echo "Resolved version: $version"
echo "version=${version}" >> $GITHUB_OUTPUT
echo "Resolved version3: $version3"
echo "version3=${version3}" >> $GITHUB_OUTPUT
build_nuget:
needs: pre_build
runs-on: ubuntu-20.04
env:
Configuration: Release
TreatWarningsAsErrors: true
WarningsNotAsErrors: 1591
defaults:
run:
working-directory: src/Snippetica.VisualStudio
outputs:
Version: ${{ needs.pre_build.outputs.version }}
steps:
- uses: actions/checkout@v3
- run: dotnet restore
- run: dotnet format --no-restore --verify-no-changes --severity info
- run: dotnet build --no-restore
- run: dotnet test --no-build
- run: dotnet pack --no-build
- uses: actions/upload-artifact@v3
with:
name: nuget_packages
path: src/Snippetica.VisualStudio/bin/Release/*.*nupkg
build_vs_extension:
needs: pre_build
runs-on: windows-latest
env:
Version: ${{ needs.pre_build.outputs.version }}
DeployExtension: false
defaults:
run:
working-directory: src/Snippetica.VisualStudio.Vsix
steps:
- uses: actions/checkout@v3
- run: (Get-Content source.extension.vsixmanifest) -replace 'Version="1.0.0"', 'Version="${{ needs.pre_build.outputs.version3 }}"' | Set-Content source.extension.vsixmanifest
- run: dotnet restore
working-directory: src/Snippetica.CodeGeneration.SnippetGenerator
- run: dotnet build --no-restore
working-directory: src/Snippetica.CodeGeneration.SnippetGenerator
- run: "src/Snippetica.CodeGeneration.SnippetGenerator/bin/Release/net8.0/Snippetica.CodeGeneration.SnippetGenerator src src/Snippetica.CodeGeneration.Metadata/Data"
name: "Generate snippets"
working-directory: "."
- uses: microsoft/[email protected]
- run: msbuild -m
- uses: actions/upload-artifact@v3
name: "Upload vsix file"
with:
name: vs_extension
path: src/Snippetica.VisualStudio.Vsix/bin/Release/*.vsix
- uses: actions/upload-artifact@v3
name: "Upload manifest file"
with:
name: vs_extension
path: src/Snippetica.VisualStudio.Vsix/manifest.json
- uses: actions/upload-artifact@v3
with:
name: vs_extension
path: src/Snippetica.VisualStudio.Vsix/Overview.md
- uses: actions/upload-artifact@v3
name: "Upload Visual Studio snippets"
with:
name: vs_snippets
path: src/Snippetica.VisualStudio.Vsix/**/*.snippet
build_vs_code_extensions:
needs: pre_build
runs-on: ubuntu-20.04
env:
Version: ${{ needs.pre_build.outputs.version }}
DefineConstants: VSCODE
strategy:
matrix:
component:
- name: cpp
directoryName: Snippetica.Cpp
- name: csharp
directoryName: Snippetica.CSharp
- name: vb
directoryName: Snippetica.VisualBasic
defaults:
run:
working-directory: "src/Snippetica.VisualStudioCode.Vsix/${{ matrix.component.directoryName }}/package"
steps:
- uses: actions/checkout@v3
- run: dotnet restore
working-directory: src/Snippetica.CodeGeneration.SnippetGenerator
- run: dotnet build --no-restore
working-directory: src/Snippetica.CodeGeneration.SnippetGenerator
- run: "./src/Snippetica.CodeGeneration.SnippetGenerator/bin/Release/net8.0/Snippetica.CodeGeneration.SnippetGenerator src src/Snippetica.CodeGeneration.Metadata/Data"
working-directory: "."
name: "Generate snippets"
- run: >
sed -i 's/"version": "1.0.0"/"version": "${{ needs.pre_build.outputs.version3 }}"/' "package.json"
- run: npm install -g @vscode/vsce
- run: vsce package
- uses: actions/upload-artifact@v3
with:
name: "vs_code_extension_${{ matrix.component.name }}"
path: "src/Snippetica.VisualStudioCode.Vsix/${{ matrix.component.directoryName }}/package/*.vsix"
# publish_nuget:
# runs-on: ubuntu-20.04
# needs: build_nuget
# if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
# steps:
# - uses: actions/download-artifact@v4
# with:
# name: nuget_packages
# path: nuget_packages
# - run: dotnet nuget push "*.nupkg" -k ${{ secrets.NUGET_API_KEY }} -s "https://api.nuget.org/v3/index.json"
# working-directory: nuget_packages
publish_vs_extension:
needs: build_vs_extension
runs-on: windows-latest
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
steps:
- uses: actions/download-artifact@v4
with:
name: vs_extension
path: vs_extension
- run: |
$visualStudioPath = vswhere -latest -products * -requires Microsoft.VisualStudio.Component.VSSDK -property installationPath
$vsixPublisher = Join-Path "$visualStudioPath" "VSSDK\VisualStudioIntegration\Tools\Bin\VsixPublisher.exe"
& "$vsixPublisher" publish -payload Snippetica.VisualStudio.vsix -publishManifest manifest.json -personalAccessToken ${{ secrets.VS_MARKETPLACE_TOKEN }}
working-directory: vs_extension
name: Publish VS extension to Marketplace
publish_vs_code_extension:
needs: [ pre_build, build_vs_code_extensions ]
runs-on: ubuntu-20.04
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
strategy:
matrix:
component:
- name: cpp
- name: csharp
- name: vb
steps:
- uses: actions/download-artifact@v4
with:
name: vs_code_extension_${{ matrix.component.name }}
path: vs_code_extension
- run: npm install -g @vscode/vsce
- run: vsce publish -p ${{ secrets.VS_MARKETPLACE_TOKEN }} -i "snippetica-${{ matrix.component.name }}-${{ needs.pre_build.outputs.version3 }}.vsix"
working-directory: vs_code_extension