-
Notifications
You must be signed in to change notification settings - Fork 0
270 lines (233 loc) · 9.22 KB
/
build-and-package.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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
name: Build, Package, and Release
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: write
packages: write
env:
DOTNET_VERSION: '8.0.x'
GO_VERSION: '1.22.2'
NUGET_PACKAGE_NAME: 'D2Sharp'
CI: true
jobs:
build:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Cache NuGet packages
uses: actions/cache@v3
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Install GCC (Ubuntu)
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y gcc
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal
- name: Build native library
run: |
cd src/D2Sharp/d2wrapper
go build -buildmode=c-shared -o d2wrapper${{ runner.os == 'Windows' && '.dll' || runner.os == 'macOS' && '.dylib' || '.so' }} .
- name: Upload D2Sharp build artifact
uses: actions/upload-artifact@v3
with:
name: d2net-${{ matrix.os }}
path: src/D2Sharp/bin/Release/net8.0/D2Sharp.*
- name: Upload native library
uses: actions/upload-artifact@v3
with:
name: d2wrapper-${{ matrix.os }}
path: src/D2Sharp/d2wrapper/d2wrapper*
- name: Upload build logs on failure
if: failure()
uses: actions/upload-artifact@v3
with:
name: build-logs-${{ matrix.os }}
path: |
**/*.log
**/*.trx
package:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Check for relevant changes
id: check_changes
run: |
if git diff --name-only HEAD^ HEAD | grep -qE '^src/|^examples/|\.csproj$|\.sln$|packages\.lock\.json$|go\.mod$|go\.sum$'; then
echo "Relevant changes detected"
echo "run_package=true" >> $GITHUB_OUTPUT
else
echo "No relevant changes detected"
echo "run_package=false" >> $GITHUB_OUTPUT
fi
- name: Setup .NET
if: steps.check_changes.outputs.run_package == 'true'
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Download artifacts
if: steps.check_changes.outputs.run_package == 'true'
uses: actions/download-artifact@v4.1.7
with:
path: artifacts
- name: Prepare files for packaging
if: steps.check_changes.outputs.run_package == 'true'
run: |
mkdir -p package/lib/net8.0
mkdir -p package/runtimes/win-x64/native
mkdir -p package/runtimes/linux-x64/native
mkdir -p package/runtimes/osx-x64/native
cp artifacts/d2net-ubuntu-latest/D2Sharp.dll package/lib/net8.0/
cp artifacts/d2wrapper-windows-latest/d2wrapper.dll package/runtimes/win-x64/native/
cp artifacts/d2wrapper-ubuntu-latest/d2wrapper.so package/runtimes/linux-x64/native/
cp artifacts/d2wrapper-macos-latest/d2wrapper.dylib package/runtimes/osx-x64/native/
- name: Get version
if: steps.check_changes.outputs.run_package == 'true'
id: get_version
run: |
VERSION=$(grep -oP '(?<=<VersionPrefix>).*(?=</VersionPrefix>)' src/D2Sharp/D2Sharp.csproj)
SUFFIX=$(grep -oP '(?<=<VersionSuffix>).*(?=</VersionSuffix>)' src/D2Sharp/D2Sharp.csproj)
if [ ! -z "$SUFFIX" ]; then
VERSION="$VERSION-$SUFFIX"
fi
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
- name: Create nuspec file
if: steps.check_changes.outputs.run_package == 'true'
run: |
cat << EOF > D2Sharp.nuspec
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>D2Sharp</id>
<version>${{ steps.get_version.outputs.VERSION }}</version>
<authors>Alrik Olson</authors>
<description>A .NET wrapper for the D2 library</description>
<projectUrl>https://github.com/AlrikOlson/D2Sharp</projectUrl>
<repository type="git" url="https://github.com/AlrikOlson/D2Sharp.git" />
<tags>d2 diagram visualization</tags>
<readme>README.nuget.md</readme>
<dependencies>
<group targetFramework="net8.0">
<dependency id="Microsoft.Extensions.Logging" version="8.0.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="lib/net8.0/D2Sharp.dll" target="lib/net8.0" />
<file src="runtimes/**/*" target="runtimes" />
<file src="../README.nuget.md" target="\" />
</files>
</package>
EOF
- name: Pack NuGet package
if: steps.check_changes.outputs.run_package == 'true'
run: nuget pack D2Sharp.nuspec -BasePath package
- name: Upload NuGet package
if: steps.check_changes.outputs.run_package == 'true'
uses: actions/upload-artifact@v3
with:
name: nuget-package
path: ./*.nupkg
- name: Skip packaging
if: steps.check_changes.outputs.run_package != 'true'
run: |
echo "No relevant changes for packaging, skipping this job"
release:
needs: package
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Check for relevant changes
id: check_changes
run: |
if git diff --name-only HEAD^ HEAD | grep -qE '^src/|^examples/|\.csproj$|\.sln$|packages\.lock\.json$|go\.mod$|go\.sum$'; then
echo "Relevant changes detected"
echo "run_release=true" >> $GITHUB_OUTPUT
else
echo "No relevant changes detected"
echo "run_release=false" >> $GITHUB_OUTPUT
fi
- name: Get current version
if: steps.check_changes.outputs.run_release == 'true'
id: get_version
run: |
VERSION=$(grep -oP '(?<=<VersionPrefix>).*(?=</VersionPrefix>)' src/D2Sharp/D2Sharp.csproj)
SUFFIX=$(grep -oP '(?<=<VersionSuffix>).*(?=</VersionSuffix>)' src/D2Sharp/D2Sharp.csproj)
if [ ! -z "$SUFFIX" ]; then
VERSION="$VERSION-$SUFFIX"
fi
echo "CURRENT_VERSION=$VERSION" >> $GITHUB_OUTPUT
- name: Get latest release version
if: steps.check_changes.outputs.run_release == 'true'
id: get_latest_release
run: |
LATEST_RELEASE=$(curl -s https://api.github.com/repos/${{ github.repository }}/releases/latest | jq -r .tag_name | sed 's/^v//')
echo "LATEST_RELEASE=$LATEST_RELEASE" >> $GITHUB_OUTPUT
- name: Compare versions
if: steps.check_changes.outputs.run_release == 'true'
id: compare_versions
run: |
if [ "${{ steps.get_version.outputs.CURRENT_VERSION }}" != "${{ steps.get_latest_release.outputs.LATEST_RELEASE }}" ]; then
echo "VERSION_CHANGED=true" >> $GITHUB_OUTPUT
else
echo "VERSION_CHANGED=false" >> $GITHUB_OUTPUT
fi
- name: Download NuGet package
if: steps.check_changes.outputs.run_release == 'true' && steps.compare_versions.outputs.VERSION_CHANGED == 'true'
uses: actions/download-artifact@v4.1.7
with:
name: nuget-package
- name: Create Release
if: steps.check_changes.outputs.run_release == 'true' && steps.compare_versions.outputs.VERSION_CHANGED == 'true'
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ steps.get_version.outputs.CURRENT_VERSION }}
release_name: Release ${{ steps.get_version.outputs.CURRENT_VERSION }}
draft: false
prerelease: true
- name: Upload Release Asset
if: steps.check_changes.outputs.run_release == 'true' && steps.compare_versions.outputs.VERSION_CHANGED == 'true'
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./${{ env.NUGET_PACKAGE_NAME }}.${{ steps.get_version.outputs.CURRENT_VERSION }}.nupkg
asset_name: ${{ env.NUGET_PACKAGE_NAME }}.${{ steps.get_version.outputs.CURRENT_VERSION }}.nupkg
asset_content_type: application/octet-stream
- name: Publish to NuGet
if: steps.check_changes.outputs.run_release == 'true' && steps.compare_versions.outputs.VERSION_CHANGED == 'true'
run: dotnet nuget push ./*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
- name: Skip release
if: steps.check_changes.outputs.run_release != 'true'
run: |
echo "No relevant changes for release, skipping this job"