Skip to content

Commit 1b907e8

Browse files
committed
Renamed and moved the scrip that prints the public key.
1 parent 3642656 commit 1b907e8

File tree

4 files changed

+13
-16
lines changed

4 files changed

+13
-16
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "publish=$publish" >> $GITHUB_OUTPUT
4747
echo "publish=$publish"
4848
49-
linux:
49+
linux_x64:
5050
name: Linux (Q8/Q16/Q16-HDRI, x64)
5151
container:
5252
image: mcr.microsoft.com/dotnet/sdk:9.0
@@ -80,7 +80,7 @@ jobs:
8080
- name: Test OpenMP
8181
run: build/shared/test.Magick.NET.sh x64 OpenMP
8282

83-
linux_musl:
83+
linux_musl_x64:
8484
name: Linux musl (Q8/Q16/Q16-HDRI, x64)
8585
container:
8686
image: mcr.microsoft.com/dotnet/sdk:9.0-alpine
@@ -148,7 +148,7 @@ jobs:
148148
- name: Test OpenMP
149149
run: build/shared/test.Magick.NET.sh arm64 OpenMP
150150

151-
macos:
151+
macos_x64:
152152
name: MacOS (Q8/Q16/Q16-HDRI)
153153
runs-on: macos-15-intel
154154

@@ -200,7 +200,7 @@ jobs:
200200
- name: Test
201201
run: build/shared/test.Magick.NET.sh arm64
202202

203-
windows:
203+
windows_x64:
204204
name: Windows (${{matrix.quantumName}}, ${{matrix.platformName}})
205205
runs-on: windows-2022
206206
needs:
@@ -365,8 +365,13 @@ jobs:
365365
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
366366
name: Sign NuGet packages
367367
needs:
368-
- windows
368+
- windows_x64
369369
- windows_arm64
370+
- linux_x64
371+
- linux_musl_x64
372+
- linux_arm64
373+
- macos_x64
374+
- macos_arm64
370375
- libraries
371376
runs-on: windows-2022
372377

@@ -408,4 +413,4 @@ jobs:
408413
persist-credentials: false
409414

410415
- name: Print cerificate
411-
run: ./github/build/windows/print.certificate.cmd
416+
run: ./build/windows/print.publickey.cmd

Magick.NET.sln

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "windows", "windows", "{C72A
105105
build\windows\install.dependencies.cmd = build\windows\install.dependencies.cmd
106106
build\windows\install.dependencies.ps1 = build\windows\install.dependencies.ps1
107107
build\windows\test.Magick.NET.cmd = build\windows\test.Magick.NET.cmd
108+
build\windows\print.publickey.py = build\windows\print.publickey.py
109+
build\windows\print.publickey.cmd = build\windows\print.publickey.cmd
108110
build\windows\test.Magick.NET.ps1 = build\windows\test.Magick.NET.ps1
109111
EndProjectSection
110112
EndProject
@@ -227,14 +229,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Extensions", "Extensions",
227229
EndProject
228230
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Extensions", "Extensions", "{4C06E01A-0835-40E5-A9A2-49F002C0C12B}"
229231
EndProject
230-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{02EA681E-C7D8-13C7-8484-4AC65E1B71E8}"
231-
EndProject
232-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "windows", "windows", "{D4F81290-2DFD-46AD-ACB7-12FF0DEF0A03}"
233-
ProjectSection(SolutionItems) = preProject
234-
.github\build\windows\print-public-key.py = .github\build\windows\print-public-key.py
235-
.github\build\windows\print-public-key.cmd = .github\build\windows\print-public-key.cmd
236-
EndProjectSection
237-
EndProject
238232
Global
239233
GlobalSection(SolutionConfigurationPlatforms) = preSolution
240234
Debug|Any CPU = Debug|Any CPU
@@ -1846,8 +1840,6 @@ Global
18461840
{5B729307-7C82-4CDB-830F-9383F0FD4B76} = {4C06E01A-0835-40E5-A9A2-49F002C0C12B}
18471841
{606D8D7D-2AD0-495A-B35E-C90B713CF2AD} = {61345F8D-8813-4CA8-B037-2DE221FFB5D2}
18481842
{4C06E01A-0835-40E5-A9A2-49F002C0C12B} = {CADB374F-AC1D-4456-940E-2317DF1372C2}
1849-
{02EA681E-C7D8-13C7-8484-4AC65E1B71E8} = {4D648A8A-59E2-45A4-BEFD-44602709E044}
1850-
{D4F81290-2DFD-46AD-ACB7-12FF0DEF0A03} = {02EA681E-C7D8-13C7-8484-4AC65E1B71E8}
18511843
EndGlobalSection
18521844
GlobalSection(ExtensibilityGlobals) = postSolution
18531845
SolutionGuid = {4F6887AA-E540-48B3-BDC0-068B342ABEBE}
File renamed without changes.

0 commit comments

Comments
 (0)