Skip to content

Commit b479df4

Browse files
authored
V1.2.2/service update (#7)
📦️ updated NuGet package definition ⬆️ bump dependecies 💬 updated community health pages 👷 update ci pipeline for consistency cross-codebeltnet
1 parent 7d2aaf0 commit b479df4

File tree

10 files changed

+55
-17
lines changed

10 files changed

+55
-17
lines changed

.docfx/Dockerfile.docfx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG NGINX_VERSION=1.29.4-alpine
1+
ARG NGINX_VERSION=1.29.5-alpine
22

33
FROM --platform=$BUILDPLATFORM nginx:${NGINX_VERSION} AS base
44
RUN rm -rf /usr/share/nginx/html/*

.docfx/docfx.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
],
4848
"globalMetadata": {
4949
"_appTitle": "Extensions for BenchmarkDotNet by Codebelt",
50-
"_appFooter": "<span>Generated by <strong>DocFX</strong>. Copyright 2025 Geekle. All rights reserved.</span>",
50+
"_appFooter": "<span>Generated by <strong>DocFX</strong>. Copyright 2025-2026 Geekle. All rights reserved.</span>",
5151
"_appLogoPath": "images/50x50.png",
5252
"_appFaviconPath": "images/favicon.ico",
5353
"_googleAnalyticsTagId": "G-K2NG2TXDWQ",

.github/workflows/ci-pipeline.yml

Lines changed: 30 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,14 @@ jobs:
2121
name: call-build
2222
strategy:
2323
matrix:
24+
arch: [X64, ARM64]
2425
configuration: [Debug, Release]
2526
uses: codebeltnet/jobs-dotnet-build/.github/workflows/default.yml@v3
2627
with:
2728
configuration: ${{ matrix.configuration }}
2829
strong-name-key-filename: benchmarkdotnet.snk
30+
runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
31+
upload-build-artifact-name: build-${{ matrix.configuration }}-${{ matrix.arch }}
2932
secrets: inherit
3033

3134
pack:
@@ -38,26 +41,45 @@ jobs:
3841
with:
3942
configuration: ${{ matrix.configuration }}
4043
version: ${{ needs.build.outputs.version }}
44+
download-build-artifact-pattern: build-${{ matrix.configuration }}-X64
4145

42-
test:
43-
name: call-test
46+
test_linux:
47+
name: call-test-linux
4448
needs: [build]
4549
strategy:
4650
fail-fast: false
4751
matrix:
48-
os: [ubuntu-24.04, windows-2025, ubuntu-24.04-arm, windows-11-arm]
4952
configuration: [Debug, Release]
53+
arch: [X64, ARM64]
5054
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
5155
with:
56+
runs-on: ${{ matrix.arch == 'ARM64' && 'ubuntu-24.04-arm' || 'ubuntu-24.04' }}
5257
configuration: ${{ matrix.configuration }}
53-
runs-on: ${{ matrix.os }}
5458
build-switches: -p:SkipSignAssembly=true
5559
build: true # we need to build due to xUnitv3
5660
restore: true # we need to restore due to xUnitv3
61+
download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }}
62+
63+
test_windows:
64+
name: call-test-windows
65+
needs: [build]
66+
strategy:
67+
fail-fast: false
68+
matrix:
69+
configuration: [Debug, Release]
70+
arch: [X64, ARM64]
71+
uses: codebeltnet/jobs-dotnet-test/.github/workflows/default.yml@v3
72+
with:
73+
runs-on: ${{ matrix.arch == 'ARM64' && 'windows-11-arm' || 'windows-2025' }}
74+
configuration: ${{ matrix.configuration }}
75+
build-switches: -p:SkipSignAssembly=true
76+
build: true # we need to build due to xUnitv3
77+
restore: true # we need to restore due to xUnitv3
78+
download-pattern: build-${{ matrix.configuration }}-${{ matrix.arch }}
5779

5880
sonarcloud:
5981
name: call-sonarcloud
60-
needs: [build, test]
82+
needs: [build, test_linux, test_windows]
6183
uses: codebeltnet/jobs-sonarcloud/.github/workflows/default.yml@v3
6284
with:
6385
organization: geekle
@@ -67,23 +89,23 @@ jobs:
6789

6890
codecov:
6991
name: call-codecov
70-
needs: [build, test]
92+
needs: [build, test_linux, test_windows]
7193
uses: codebeltnet/jobs-codecov/.github/workflows/default.yml@v1
7294
with:
7395
repository: codebeltnet/benchmarkdotnet
7496
secrets: inherit
7597

7698
codeql:
7799
name: call-codeql
78-
needs: [build, test]
100+
needs: [build, test_linux, test_windows]
79101
uses: codebeltnet/jobs-codeql/.github/workflows/default.yml@v3
80102
permissions:
81103
security-events: write
82104

83105
deploy:
84106
if: github.event_name != 'pull_request'
85107
name: call-nuget
86-
needs: [build, pack, test, sonarcloud, codecov, codeql]
108+
needs: [build, pack, test_linux, test_windows, sonarcloud, codecov, codeql]
87109
uses: codebeltnet/jobs-nuget-push/.github/workflows/default.yml@v2
88110
with:
89111
version: ${{ needs.build.outputs.version }}

.nuget/Codebelt.Extensions.BenchmarkDotNet.Console/PackageReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version: 1.2.2
2+
Availability: .NET 10 and .NET 9
3+
 
4+
# ALM
5+
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
6+
 
17
Version: 1.2.1
28
Availability: .NET 10 and .NET 9
39

.nuget/Codebelt.Extensions.BenchmarkDotNet/PackageReleaseNotes.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version: 1.2.2
2+
Availability: .NET 10 and .NET 9
3+
 
4+
# ALM
5+
- CHANGED Dependencies have been upgraded to the latest compatible versions for all supported target frameworks (TFMs)
6+
 
17
Version: 1.2.1
28
Availability: .NET 10 and .NET 9
39

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
44

55
For more details, please refer to `PackageReleaseNotes.txt` on a per assembly basis in the `.nuget` folder.
66

7+
## [1.2.2] - 2026-02-15
8+
9+
This is a service update that focuses on package dependencies.
10+
711
## [1.2.1] - 2026-01-20
812

913
This is a service update that focuses on package dependencies.

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<PropertyGroup Condition="'$(IsSourceProject)' == 'true'">
2121
<TargetFrameworks>net10.0;net9.0</TargetFrameworks>
22-
<Copyright>Copyright © Geekle 2025. All rights reserved.</Copyright>
22+
<Copyright>Copyright © Geekle 2025-2026. All rights reserved.</Copyright>
2323
<Authors>gimlichael</Authors>
2424
<Company>Geekle</Company>
2525
<Product>Extensions for BenchmarkDotNet API by Codebelt</Product>

Directory.Packages.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
<PackageVersion Include="BenchmarkDotNet" Version="0.15.8" />
77
<PackageVersion Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.15.8" />
88
<PackageVersion Include="Codebelt.Bootstrapper.Console" Version="5.0.2" />
9-
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.0.4" />
10-
<PackageVersion Include="Cuemon.Core" Version="10.1.1" />
9+
<PackageVersion Include="Codebelt.Extensions.Xunit.App" Version="11.0.5" />
10+
<PackageVersion Include="Cuemon.Core" Version="10.2.1" />
1111
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
1212
<PackageVersion Include="MinVer" Version="7.0.0" />
13-
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
14-
<PackageVersion Include="coverlet.msbuild" Version="6.0.4" />
13+
<PackageVersion Include="coverlet.collector" Version="8.0.0" />
14+
<PackageVersion Include="coverlet.msbuild" Version="8.0.0" />
1515
<PackageVersion Include="xunit.v3" Version="3.2.2" />
1616
<PackageVersion Include="xunit.v3.runner.console" Version="3.2.2" />
1717
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2025 Geekle
3+
Copyright (c) 2025-2026 Geekle
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

testenvironments.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
{
1010
"name": "Docker-Ubuntu",
1111
"type": "docker",
12-
"dockerImage": "gimlichael/ubuntu-testrunner:net8.0.417-9.0.309-10.0.102"
12+
"dockerImage": "codebeltnet/ubuntu-testrunner:net8.0.418-9.0.311-10.0.103"
1313
}
1414
]
1515
}

0 commit comments

Comments
 (0)