This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar-dotpulsar.git
The following commit(s) were added to refs/heads/master by this push:
new 179f549 Update release_validation_linux_macos.md
179f549 is described below
commit 179f549258c190b9ef0cc3a30e2ffd8b821ab283
Author: Lari Hotari <[email protected]>
AuthorDate: Fri Nov 15 01:35:41 2024 -0800
Update release_validation_linux_macos.md
- include information about upgrading to dotnet sdk 9.0.x
- minor other improvements
---
docs/release_validation_linux_macos.md | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/docs/release_validation_linux_macos.md
b/docs/release_validation_linux_macos.md
index 7f62cf6..cfc3bab 100644
--- a/docs/release_validation_linux_macos.md
+++ b/docs/release_validation_linux_macos.md
@@ -6,13 +6,19 @@
#### MacOS
-```
+```shell
brew install --cask dotnet-sdk
```
#### Linux
-You can find install [instructions
here](https://learn.microsoft.com/en-us/dotnet/core/install/linux?WT.mc_id=dotnet-35129-website)
+Using [homebrew](https://brew.sh/) on Linux:
+
+```shell
+brew install --cask dotnet-sdk
+```
+
+You can find alternative installation [instructions
here](https://learn.microsoft.com/en-us/dotnet/core/install/linux?WT.mc_id=dotnet-35129-website).
### Show dotnet-sdk version
@@ -20,6 +26,9 @@ You can find install [instructions
here](https://learn.microsoft.com/en-us/dotne
dotnet --info
```
+pulsar-dotpulsar requires dotnet sdk 9.0.x for building. Run `brew upgrade
--cask dotnet-sdk` to upgrade to 9.0.x unless that is already installed.
+
+
## Validating source release
Set environment variables
@@ -85,7 +94,8 @@ await consumer.Acknowledge(message);
Console.WriteLine("Acknowledged message");
EOF
dotnet build
-docker run --name pulsar-standalone -d --rm -it -p 8080:8080 -p 6650:6650
apachepulsar/pulsar:3.0.5 /pulsar/bin/pulsar standalone -nss -nfw
+docker pull apachepulsar/pulsar:latest
+docker run --name pulsar-standalone -d --rm -it -p 8080:8080 -p 6650:6650
apachepulsar/pulsar:latest /pulsar/bin/pulsar standalone -nss -nfw
dotnet run
docker stop pulsar-standalone
```