-
Notifications
You must be signed in to change notification settings - Fork 531
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
install dotnet in prepare-machine.ps1 #4363
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #4363 +/- ##
==========================================
+ Coverage 84.27% 86.72% +2.45%
==========================================
Files 56 56
Lines 15426 17354 +1928
==========================================
+ Hits 13000 15051 +2051
+ Misses 2426 2303 -123 ☔ View full report in Codecov by Sentry. |
@@ -15,5 +15,5 @@ if [ $sessionCreated -eq 0 ]; then | |||
lttng destroy msquic | |||
|
|||
babeltrace --names all $dirname/data > $dirname/quic.babel.txt | |||
./submodules/clog/src/clog2text/clog2text_lttng/bin/Release/net6.0/publish/clog2text_lttng -i $dirname/quic.babel.txt -s ./src/manifest/clog.sidecar -o $dirname/quic.log --showTimestamp --showCpuInfo | |||
./submodules/clog/src/clog2text/clog2text_lttng/bin/Debug/net6.0/publish/clog2text_lttng -i $dirname/quic.babel.txt -s ./src/manifest/clog.sidecar -o $dirname/quic.log --showTimestamp --showCpuInfo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We shouldn't be using debug
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pwsh ./scripts/prepare-machine.ps1
generates this Debug build automatically though
Maybe this
dotnet build (Join-Path $RootDir submodules clog)
Description
Installing dotnet always hit known issue
https://learn.microsoft.com/en-us/dotnet/core/install/linux-package-mixup?pivots=os-linux-ubuntu
The cause should be because we already set repository for powershell which conflicts with the dotnet components.
Testing
Locally done
Documentation
N/A