Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix v2 branch building #5969

Merged
merged 3 commits into from
Aug 30, 2024
Merged

Fix v2 branch building #5969

merged 3 commits into from
Aug 30, 2024

Conversation

andrewlock
Copy link
Member

Summary of changes

The release/2.x branch is broken since I updated the VMs

Reason for change

I updated VMs yesterday, which cleared the build cache. I knew that would slow down release/2.x builds but I forgot it would completely break them due to the centos7 mess.

Implementation details

Backported some PRs to fix the layer caching etc

Test coverage

This is the test, hopefully it works 🤞

## Summary of changes

- Vendor the `dotnet-install.sh` and `dotnet-install.ps1` scripts into
the repo
- Replace the centos7 repo references with vault based ones

## Reason for change

- https://dotnet.microsoft.com/ went down recently, which meant we
couldn't download `dotnet-install.sh` or `dotnet-install.ps1`, which
broke a bunch of things, so vendor it.
- Centos7 recently shut down their repo feed, which means you can no
longer pull packages. Use vault repo instead until we deprecate centos7
entirely

## Implementation details

- Vendor the scripts
- Replace downloading of the script with direct reference
- do some `sed` to replace the centos7 repo

## Test coverage

Largely, this is the test, if it all works, I think we're good

## Other details

Supersedes #5759
Requires updating the VMs

<!-- ⚠️ Note: where possible, please obtain 2 approvals prior to
merging. Unless CODEOWNERS specifies otherwise, for external teams it is
typically best to have one review from a team member, and one review
from apm-dotnet. Trivial changes do not require 2 reviews. -->
## Summary of changes

Replaces the ruby tool `fpm` with `nfpm` and `tar`

## Reason for change

`fpm` is a ruby tool, which means we have to install ruby. This has
historically caused a bunch of issues at various points when
dependencies change (e.g. we add/update anything or change dockerfiles).

[`nfpm` is a go tool](https://github.com/goreleaser/nfpm) created
specifically to do pretty much the same thing as `fpm`, but without
requiring ruby. The only slightly annoying thing is that it doesn't
support raw "tar" so we have to use the built-in `tar` for that
(although that's not a big hardship).

## Implementation details

- Install `nfpm` in the docker images and remove the `fpm` install (and
removing all the other ruby-related code)
- Call `tar` to pack the `tar` images, and `nfpm` to pack the `deb/rpm`
packages
- `nfpm` is a "config" based tool, so we dump the yaml config to a file,
and pass that to the execution
- I have validated the nfpm and fpm deb output are essentially
identical, there are just a few nuances
- `fpm` adds a `License` field to the `.deb` header, but that's non
standard. [The correct
approach](https://www.debian.org/doc/debian-policy/ch-docs.html#copyright-information)
is to include a specific license file. See [this
issue](goreleaser/nfpm#847) for more details.
- Similarly, `fpm` adds a `Vendor` field that is non standard (but
`Maintainer` is standard and is added).
- `fpm` adds `Relocations: /var/datadog` to the `.rpm` header, so I have
replicated that for nfpm, but I don't know that we actually _want_
that... If we let people relocate the headers, then the documentation is
wrong for the profiler env vars etc. Left it as-is anyway, to reduce
chance of breaking people, just something I spotted.
- The `"Apache License 2.0"` license string used for `.rpm` previously
is not a valid value, as defined by fedora, so switched it to the
supported moniker
[here](https://docs.fedoraproject.org/en-US/legal/allowed-licenses/).
- The `tar` files were "accidentally" including the before/after
scripts, so I've made sure to still include them, incase anyone was
relying on those (they run the `createLogPath.sh` file, and create a
symlink to dd-dotnet in `/usr/bin`)

## Test coverage

[Ran a full test with all installers
here](https://dev.azure.com/datadoghq/dd-trace-dotnet/_build/results?buildId=162539&view=results)
- ignore the couple of failures in the dotnet tool smoke tests, those
are failures on `master` I need to fix 😅

Will manually compare the output of this run too:
- [x] tar (`tar -tzvf *.tar.gz`)
- The same, except the before/after scripts weren't being made
executable. Fixed
- [x] deb (`dpkg --info *.deb` and `dpkg -c *.deb`)
  - Minor differences: 
    - nfpm adds the directories as entries
    - nfpm doesn't have the non-standard License field (unlike fpm)
    - nfpm adds the license in the required copyright path
    - nfpm doesn't include a dummy changelog.gz file (unlike fpm)
- [x] rpm (`rpm -qipl --scripts *.rpm`)
- Minor differences, nfpm adds the directories as entries, nothing
significant though

## Other details

Stacked on
- #5770

because we need to change the dockerfiles, and we need the Centos7 fixes
in there at the very least. We'll need to update the VMSS images though
after making these changes so I've been delaying until that makes sense
up to this point.
@andrewlock andrewlock added the area:builds project files, build scripts, pipelines, versioning, releases, packages label Aug 30, 2024
@andrewlock andrewlock requested a review from a team as a code owner August 30, 2024 13:00
@datadog-ddstaging
Copy link

datadog-ddstaging bot commented Aug 30, 2024

Datadog Report

Branch report: andrew/ci/fix-v2-branch
Commit report: 35da72d
Test service: dd-trace-dotnet

✅ 0 Failed, 347026 Passed, 1806 Skipped, 14h 25m 16.44s Total Time

@andrewlock
Copy link
Member Author

Execution-Time Benchmarks Report ⏱️

Execution-time results for samples comparing the following branches/commits:

Execution-time benchmarks measure the whole time it takes to execute a program. And are intended to measure the one-off costs. Cases where the execution time results for the PR are worse than latest master results are shown in red. The following thresholds were used for comparing the execution times:

  • Welch test with statistical test for significance of 5%
  • Only results indicating a difference greater than 5% and 5 ms are considered.

Note that these results are based on a single point-in-time result for each branch. For full results, see the dashboard.

Graphs show the p99 interval based on the mean and StdDev of the test run, as well as the mean value of the run (shown as a diamond below the graph).

gantt
    title Execution time (ms) FakeDbCommand (.NET Framework 4.6.2) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (5969) - mean (73ms)  : 64, 81
     .   : milestone, 73,

    section CallTarget+Inlining+NGEN
    This PR (5969) - mean (1,031ms)  : 1007, 1055
     .   : milestone, 1031,

Loading
gantt
    title Execution time (ms) FakeDbCommand (.NET Core 3.1) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (5969) - mean (110ms)  : 106, 114
     .   : milestone, 110,

    section CallTarget+Inlining+NGEN
    This PR (5969) - mean (713ms)  : 695, 730
     .   : milestone, 713,

Loading
gantt
    title Execution time (ms) FakeDbCommand (.NET 6) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (5969) - mean (92ms)  : 90, 95
     .   : milestone, 92,

    section CallTarget+Inlining+NGEN
    This PR (5969) - mean (669ms)  : 645, 693
     .   : milestone, 669,

Loading
gantt
    title Execution time (ms) HttpMessageHandler (.NET Framework 4.6.2) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (5969) - mean (190ms)  : 187, 194
     .   : milestone, 190,

    section CallTarget+Inlining+NGEN
    This PR (5969) - mean (1,116ms)  : 1096, 1136
     .   : milestone, 1116,

Loading
gantt
    title Execution time (ms) HttpMessageHandler (.NET Core 3.1) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (5969) - mean (277ms)  : 272, 282
     .   : milestone, 277,

    section CallTarget+Inlining+NGEN
    This PR (5969) - mean (882ms)  : 862, 903
     .   : milestone, 882,

Loading
gantt
    title Execution time (ms) HttpMessageHandler (.NET 6) 
    dateFormat  X
    axisFormat %s
    todayMarker off
    section Baseline
    This PR (5969) - mean (264ms)  : 260, 268
     .   : milestone, 264,

    section CallTarget+Inlining+NGEN
    This PR (5969) - mean (861ms)  : 843, 880
     .   : milestone, 861,

Loading

@andrewlock
Copy link
Member Author

Benchmarks Report for tracer 🐌

Benchmarks for #5969 compared to master:

  • 1 benchmarks are slower, with geometric mean 1.123
  • All benchmarks have the same allocations

The following thresholds were used for comparing the benchmark speeds:

  • Mann–Whitney U test with statistical test for significance of 5%
  • Only results indicating a difference greater than 10% and 0.3 ns are considered.

Allocation changes below 0.5% are ignored.

Benchmark details

Benchmarks.Trace.ActivityBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master StartStopWithChild net6.0 7.76μs 43.7ns 303ns 0.0148 0.00738 0 5.43 KB
master StartStopWithChild netcoreapp3.1 9.78μs 55.1ns 389ns 0.0241 0.00963 0 5.61 KB
master StartStopWithChild net472 15.8μs 46.9ns 175ns 1.02 0.302 0.103 6.07 KB
#5969 StartStopWithChild net6.0 7.81μs 42.6ns 237ns 0.0126 0.00419 0 5.42 KB
#5969 StartStopWithChild netcoreapp3.1 9.95μs 53.3ns 277ns 0.0213 0.0106 0 5.62 KB
#5969 StartStopWithChild net472 16.1μs 57.5ns 223ns 1 0.288 0.0934 6.07 KB
Benchmarks.Trace.AgentWriterBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master WriteAndFlushEnrichedTraces net6.0 476μs 256ns 990ns 0 0 0 2.7 KB
master WriteAndFlushEnrichedTraces netcoreapp3.1 645μs 131ns 473ns 0 0 0 2.7 KB
master WriteAndFlushEnrichedTraces net472 839μs 659ns 2.55μs 0.417 0 0 3.3 KB
#5969 WriteAndFlushEnrichedTraces net6.0 475μs 525ns 2.03μs 0 0 0 2.7 KB
#5969 WriteAndFlushEnrichedTraces netcoreapp3.1 659μs 145ns 544ns 0 0 0 2.7 KB
#5969 WriteAndFlushEnrichedTraces net472 841μs 231ns 863ns 0.419 0 0 3.3 KB
Benchmarks.Trace.AspNetCoreBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master SendRequest net6.0 187μs 884ns 3.54μs 0.183 0 0 18.45 KB
master SendRequest netcoreapp3.1 207μs 1.1μs 5.91μs 0.209 0 0 20.61 KB
master SendRequest net472 0.0059ns 0.00211ns 0.00818ns 0 0 0 0 b
#5969 SendRequest net6.0 182μs 648ns 2.42μs 0.177 0 0 18.45 KB
#5969 SendRequest netcoreapp3.1 203μs 825ns 3.78μs 0.198 0 0 20.61 KB
#5969 SendRequest net472 0.0016ns 0.000636ns 0.00246ns 0 0 0 0 b
Benchmarks.Trace.CIVisibilityProtocolWriterBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master WriteAndFlushEnrichedTraces net6.0 543μs 1.82μs 6.83μs 0.546 0 0 41.52 KB
master WriteAndFlushEnrichedTraces netcoreapp3.1 677μs 3.19μs 14.6μs 0.329 0 0 41.73 KB
master WriteAndFlushEnrichedTraces net472 875μs 3.56μs 13.8μs 8.13 2.57 0.428 53.27 KB
#5969 WriteAndFlushEnrichedTraces net6.0 564μs 2.2μs 8.51μs 0.561 0 0 41.68 KB
#5969 WriteAndFlushEnrichedTraces netcoreapp3.1 670μs 1.4μs 5.25μs 0.331 0 0 41.8 KB
#5969 WriteAndFlushEnrichedTraces net472 875μs 4.38μs 19.1μs 8.25 2.6 0.434 53.32 KB
Benchmarks.Trace.DbCommandBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master ExecuteNonQuery net6.0 1.35μs 1.31ns 5.06ns 0.0142 0 0 1.02 KB
master ExecuteNonQuery netcoreapp3.1 1.72μs 1.68ns 6.5ns 0.0138 0 0 1.02 KB
master ExecuteNonQuery net472 2.02μs 0.813ns 2.93ns 0.157 0 0 987 B
#5969 ExecuteNonQuery net6.0 1.3μs 0.924ns 3.33ns 0.0144 0 0 1.02 KB
#5969 ExecuteNonQuery netcoreapp3.1 1.67μs 1.09ns 4.08ns 0.0134 0 0 1.02 KB
#5969 ExecuteNonQuery net472 2.09μs 1.65ns 6.17ns 0.157 0 0 987 B
Benchmarks.Trace.ElasticsearchBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master CallElasticsearch net6.0 1.19μs 0.497ns 1.86ns 0.0137 0 0 976 B
master CallElasticsearch netcoreapp3.1 1.46μs 0.583ns 2.1ns 0.0132 0 0 976 B
master CallElasticsearch net472 2.47μs 1.59ns 5.97ns 0.158 0 0 995 B
master CallElasticsearchAsync net6.0 1.35μs 1.64ns 6.37ns 0.0135 0 0 952 B
master CallElasticsearchAsync netcoreapp3.1 1.65μs 0.594ns 2.3ns 0.0142 0 0 1.02 KB
master CallElasticsearchAsync net472 2.51μs 1.25ns 4.67ns 0.166 0 0 1.05 KB
#5969 CallElasticsearch net6.0 1.21μs 1.09ns 4.09ns 0.0138 0 0 976 B
#5969 CallElasticsearch netcoreapp3.1 1.46μs 0.88ns 3.29ns 0.0133 0 0 976 B
#5969 CallElasticsearch net472 2.48μs 0.865ns 3.12ns 0.158 0 0 995 B
#5969 CallElasticsearchAsync net6.0 1.32μs 0.501ns 1.94ns 0.0132 0 0 952 B
#5969 CallElasticsearchAsync netcoreapp3.1 1.64μs 0.526ns 1.97ns 0.0141 0 0 1.02 KB
#5969 CallElasticsearchAsync net472 2.6μs 1.89ns 7.33ns 0.166 0 0 1.05 KB
Benchmarks.Trace.GraphQLBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master ExecuteAsync net6.0 1.34μs 0.561ns 2.1ns 0.013 0 0 952 B
master ExecuteAsync netcoreapp3.1 1.57μs 0.783ns 2.82ns 0.0127 0 0 952 B
master ExecuteAsync net472 1.73μs 0.546ns 2.04ns 0.145 0 0 915 B
#5969 ExecuteAsync net6.0 1.28μs 0.983ns 3.81ns 0.0134 0 0 952 B
#5969 ExecuteAsync netcoreapp3.1 1.61μs 1.15ns 4.14ns 0.0121 0 0 952 B
#5969 ExecuteAsync net472 1.83μs 0.771ns 2.99ns 0.145 0 0 915 B
Benchmarks.Trace.HttpClientBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master SendAsync net6.0 4.14μs 0.957ns 3.58ns 0.0311 0 0 2.22 KB
master SendAsync netcoreapp3.1 5.1μs 2.15ns 8.05ns 0.0359 0 0 2.76 KB
master SendAsync net472 7.75μs 2.41ns 9.35ns 0.496 0 0 3.15 KB
#5969 SendAsync net6.0 4.21μs 1.91ns 7.13ns 0.0318 0 0 2.22 KB
#5969 SendAsync netcoreapp3.1 5.23μs 2.53ns 9.79ns 0.0365 0 0 2.76 KB
#5969 SendAsync net472 7.77μs 3ns 11.6ns 0.498 0 0 3.15 KB
Benchmarks.Trace.ILoggerBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master EnrichedLog net6.0 1.47μs 0.435ns 1.68ns 0.0229 0 0 1.64 KB
master EnrichedLog netcoreapp3.1 2.38μs 0.732ns 2.74ns 0.0225 0 0 1.64 KB
master EnrichedLog net472 2.71μs 1.55ns 5.99ns 0.249 0 0 1.57 KB
#5969 EnrichedLog net6.0 1.45μs 0.593ns 2.22ns 0.0233 0 0 1.64 KB
#5969 EnrichedLog netcoreapp3.1 2.21μs 0.852ns 3.19ns 0.0221 0 0 1.64 KB
#5969 EnrichedLog net472 2.6μs 2.62ns 10.1ns 0.249 0 0 1.57 KB
Benchmarks.Trace.Log4netBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master EnrichedLog net6.0 117μs 134ns 502ns 0.0589 0 0 4.28 KB
master EnrichedLog netcoreapp3.1 121μs 386ns 1.5μs 0 0 0 4.28 KB
master EnrichedLog net472 151μs 215ns 832ns 0.682 0.227 0 4.46 KB
#5969 EnrichedLog net6.0 113μs 137ns 530ns 0.0562 0 0 4.28 KB
#5969 EnrichedLog netcoreapp3.1 120μs 156ns 603ns 0 0 0 4.28 KB
#5969 EnrichedLog net472 150μs 157ns 608ns 0.672 0.224 0 4.46 KB
Benchmarks.Trace.NLogBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master EnrichedLog net6.0 3.07μs 0.986ns 3.69ns 0.0305 0 0 2.2 KB
master EnrichedLog netcoreapp3.1 4.39μs 0.973ns 3.77ns 0.0305 0 0 2.2 KB
master EnrichedLog net472 4.85μs 1.03ns 4.01ns 0.32 0 0 2.02 KB
#5969 EnrichedLog net6.0 3.05μs 0.811ns 3.14ns 0.0305 0 0 2.2 KB
#5969 EnrichedLog netcoreapp3.1 4.12μs 11.4ns 44.1ns 0.0305 0 0 2.2 KB
#5969 EnrichedLog net472 4.88μs 1.42ns 5.51ns 0.32 0 0 2.02 KB
Benchmarks.Trace.RedisBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master SendReceive net6.0 1.31μs 0.747ns 2.79ns 0.0164 0 0 1.14 KB
master SendReceive netcoreapp3.1 1.75μs 0.965ns 3.48ns 0.0158 0 0 1.14 KB
master SendReceive net472 2.14μs 1.44ns 5.38ns 0.183 0 0 1.16 KB
#5969 SendReceive net6.0 1.35μs 0.792ns 3.07ns 0.0157 0 0 1.14 KB
#5969 SendReceive netcoreapp3.1 1.82μs 1.49ns 5.76ns 0.0153 0 0 1.14 KB
#5969 SendReceive net472 2.27μs 1.15ns 4.47ns 0.183 0 0 1.16 KB
Benchmarks.Trace.SerilogBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master EnrichedLog net6.0 2.79μs 1.15ns 4.44ns 0.0224 0 0 1.6 KB
master EnrichedLog netcoreapp3.1 3.94μs 2.01ns 7.77ns 0.0218 0 0 1.65 KB
master EnrichedLog net472 4.35μs 1.25ns 4.67ns 0.322 0 0 2.04 KB
#5969 EnrichedLog net6.0 2.68μs 0.988ns 3.83ns 0.0228 0 0 1.6 KB
#5969 EnrichedLog netcoreapp3.1 3.78μs 2.17ns 8.13ns 0.0227 0 0 1.65 KB
#5969 EnrichedLog net472 4.25μs 1.35ns 5.06ns 0.323 0 0 2.04 KB
Benchmarks.Trace.SpanBenchmark - Same speed ✔️ Same allocations ✔️

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master StartFinishSpan net6.0 400ns 0.257ns 0.993ns 0.00803 0 0 576 B
master StartFinishSpan netcoreapp3.1 574ns 1.16ns 4.5ns 0.00761 0 0 576 B
master StartFinishSpan net472 618ns 0.706ns 2.73ns 0.0916 0 0 578 B
master StartFinishScope net6.0 537ns 0.549ns 2.05ns 0.00971 0 0 696 B
master StartFinishScope netcoreapp3.1 685ns 1.12ns 4.33ns 0.00929 0 0 696 B
master StartFinishScope net472 809ns 0.641ns 2.48ns 0.104 0 0 658 B
#5969 StartFinishSpan net6.0 418ns 0.279ns 1.08ns 0.00815 0 0 576 B
#5969 StartFinishSpan netcoreapp3.1 589ns 0.617ns 2.39ns 0.00779 0 0 576 B
#5969 StartFinishSpan net472 587ns 0.442ns 1.71ns 0.0916 0 0 578 B
#5969 StartFinishScope net6.0 534ns 0.393ns 1.52ns 0.0098 0 0 696 B
#5969 StartFinishScope netcoreapp3.1 658ns 0.578ns 2.24ns 0.00936 0 0 696 B
#5969 StartFinishScope net472 869ns 1.07ns 4.13ns 0.104 0 0 658 B
Benchmarks.Trace.TraceAnnotationsBenchmark - Slower ⚠️ Same allocations ✔️

Slower ⚠️ in #5969

Benchmark diff/base Base Median (ns) Diff Median (ns) Modality
Benchmarks.Trace.TraceAnnotationsBenchmark.RunOnMethodBegin‑net6.0 1.123 582.23 654.05

Raw results

Branch Method Toolchain Mean StdError StdDev Gen 0 Gen 1 Gen 2 Allocated
master RunOnMethodBegin net6.0 582ns 0.413ns 1.6ns 0.00987 0 0 696 B
master RunOnMethodBegin netcoreapp3.1 899ns 1.01ns 3.77ns 0.00949 0 0 696 B
master RunOnMethodBegin net472 1.02μs 1.54ns 5.96ns 0.104 0 0 658 B
#5969 RunOnMethodBegin net6.0 654ns 0.395ns 1.53ns 0.00961 0 0 696 B
#5969 RunOnMethodBegin netcoreapp3.1 1μs 1.16ns 4.5ns 0.00902 0 0 696 B
#5969 RunOnMethodBegin net472 1.1μs 0.947ns 3.67ns 0.104 0 0 658 B

@andrewlock andrewlock merged commit f071cf0 into release/2.x Aug 30, 2024
50 of 54 checks passed
@andrewlock andrewlock deleted the andrew/ci/fix-v2-branch branch August 30, 2024 14:37
@github-actions github-actions bot added this to the vNext-v2 milestone Aug 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:builds project files, build scripts, pipelines, versioning, releases, packages
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants