Akka.NET cluster management, bootstrapping, and more.
Перейти к файлу
dependabot[bot] 10102e7d41
Bump FluentAssertions from 6.12.0 to 6.12.2 (#2897)
Bumps [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 6.12.0 to 6.12.2.
- [Release notes](https://github.com/fluentassertions/fluentassertions/releases)
- [Changelog](https://github.com/fluentassertions/fluentassertions/blob/develop/AcceptApiChanges.ps1)
- [Commits](https://github.com/fluentassertions/fluentassertions/compare/6.12.0...6.12.2)

---
updated-dependencies:
- dependency-name: FluentAssertions
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-14 14:36:45 +00:00
.github Stop dependabot updates for v1.4 (#1720) 2023-05-03 15:19:36 +00:00
build-system Bump Azure.Storage.Blobs from 12.19.1 to 12.20.0 (#2501) 2024-06-11 17:49:11 +00:00
docs Consolidate Cluster.Bootstrap docs (#2575) 2024-06-18 10:50:51 -05:00
src Bump FluentAssertions from 6.12.0 to 6.12.2 (#2897) 2024-11-14 14:36:45 +00:00
.gitignore Init (#1) 2021-06-04 14:12:41 -05:00
Akka.Management.sln Sample: KubernetesApi cluster bootstraping via HOCON (#2641) 2024-07-10 20:18:52 +00:00
LICENSE Init (#1) 2021-06-04 14:12:41 -05:00
README.md Update main docs and Akka.Management docs (#1183) 2023-01-05 19:56:09 +00:00
RELEASE_NOTES.md Update RELEASE_NOTES.md for 1.5.31 release (#2908) 2024-11-11 16:13:04 -06:00
appsettings.json Init (#1) 2021-06-04 14:12:41 -05:00
azurite.cmd Add Azurite and Kubernetes based sample project (#713) 2022-07-29 12:02:15 -05:00
build.cmd Init (#1) 2021-06-04 14:12:41 -05:00
build.fsx Revert "add `--skip-duplicate` to NuGet publication (#1736)" (#1759) 2023-05-19 09:05:44 -05:00
build.ps1 Init (#1) 2021-06-04 14:12:41 -05:00
build.sh Init (#1) 2021-06-04 14:12:41 -05:00
serve-docs.cmd Init (#1) 2021-06-04 14:12:41 -05:00
serve-docs.ps1 Init (#1) 2021-06-04 14:12:41 -05:00

README.md

Akka Management

This project provides a home for Akka.NET cluster management, bootstrapping, and more. These tools aims to help with cluster management in various dynamic environments such as Azure, Amazon AWS and Kubernetes.

Supported Plugins

Build Instructions

Supported Commands

This project supports a wide variety of commands, all of which can be listed via:

Windows

c:\> build.cmd help

Linux / OS X

c:\> build.sh help

However, please see this readme for full details.

Summary

  • build.[cmd|sh] all - runs the entire build system minus documentation: NBench, Tests, and Nuget.
  • build.[cmd|sh] buildrelease - compiles the solution in Release mode.
  • build.[cmd|sh] runtestsnetcore - compiles the solution in Release mode and runs the unit test suite using the netcoreapp3.1 platform (all projects that end with the .Tests.csproj suffix). All of the output will be published to the ./TestResults folder.
  • build.[cmd|sh] runtestsnet - compiles the solution in Release mode and runs the unit test suite using the net5.0 platform (all projects that end with the .Tests.csproj suffix). All of the output will be published to the ./TestResults folder.
  • build.[cmd|sh] nbench - compiles the solution in Release mode and runs the NBench performance test suite (all projects that end with the .Tests.Performance.csproj suffix). All of the output will be published to the ./PerfResults folder.
  • build.[cmd|sh] nuget - compiles the solution in Release mode and creates Nuget packages from any project that does not have <IsPackable>false</IsPackable> set and uses the version number from RELEASE_NOTES.md.
  • build.[cmd|sh] nuget nugetprerelease=dev - compiles the solution in Release mode and creates Nuget packages from any project that does not have <IsPackable>false</IsPackable> set - but in this instance all projects will have a VersionSuffix of -beta{DateTime.UtcNow.Ticks}. It's typically used for publishing nightly releases.
  • build.[cmd|sh] nuget SignClientUser=$(signingUsername) SignClientSecret=$(signingPassword) - compiles the solution in Release modem creates Nuget packages from any project that does not have <IsPackable>false</IsPackable> set using the version number from RELEASE_NOTES.md, and then signs those packages using the SignClient data below.
  • build.[cmd|sh] nuget SignClientUser=$(signingUsername) SignClientSecret=$(signingPassword) nugetpublishurl=$(nugetUrl) nugetkey=$(nugetKey) - compiles the solution in Release modem creates Nuget packages from any project that does not have <IsPackable>false</IsPackable> set using the version number from RELEASE_NOTES.md, signs those packages using the SignClient data below, and then publishes those packages to the $(nugetUrl) using NuGet key $(nugetKey).
  • build.[cmd|sh] DocFx - compiles the solution in Release mode and then uses DocFx to generate website documentation inside the ./docs/_site folder. Use the ./serve-docs.cmd on Windows to preview the documentation.

This build script is powered by FAKE; please see their API documentation should you need to make any changes to the build.fsx file.