File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed
profiler/src/ProfilerEngine/Datadog.Profiler.Native Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,17 @@ jobs:
3232 cd build-release
3333 cmake .. -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Release
3434 make -j6 Datadog.Profiler.Native Datadog.Linux.ApiWrapper.x64
35+ cd ../profiler/_build/DDProf-Deploy/linux-x64/
36+ cp Datadog.Profiler.Native.so Pyroscope.Profiler.Native.so
37+ cp Datadog.Linux.ApiWrapper.x64.so Pyroscope.Linux.ApiWrapper.x64.so
3538
3639 - name : Release
3740 uses : softprops/action-gh-release@v1
3841 if : startsWith(github.ref, 'refs/tags/')
3942 with :
4043 files : |
41- ./profiler/_build/DDProf-Deploy/linux-x64/Datadog .Linux.ApiWrapper.x64.so
42- ./profiler/_build/DDProf-Deploy/linux-x64/Datadog .Profiler.Native.so
44+ ./profiler/_build/DDProf-Deploy/linux-x64/Pyroscope .Linux.ApiWrapper.x64.so
45+ ./profiler/_build/DDProf-Deploy/linux-x64/Pyroscope .Profiler.Native.so
4346
4447
4548
Original file line number Diff line number Diff line change 55 <ImplicitUsings >enable</ImplicitUsings >
66 <Nullable >enable</Nullable >
77 <GeneratePackageOnBuild >true</GeneratePackageOnBuild >
8- <PackageVersion >0.6 .0</PackageVersion >
9- <AssemblyVersion >0.6 .0</AssemblyVersion >
10- <FileVersion >0.6 .0</FileVersion >
8+ <PackageVersion >0.7 .0</PackageVersion >
9+ <AssemblyVersion >0.7 .0</AssemblyVersion >
10+ <FileVersion >0.7 .0</FileVersion >
1111 <LangVersion >10</LangVersion >
1212 </PropertyGroup >
1313
Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ bool OpSysTools::IsSafeToStartProfiler(double coresThreshold)
344344
345345 // We assume that the profiler library is in the same folder as the wrapper library
346346 auto currentModulePath = fs::path (shared::GetCurrentModuleFileName ());
347- auto wrapperLibrary = currentModulePath.parent_path () / " Datadog .Linux.ApiWrapper.x64.so" ;
347+ auto wrapperLibrary = currentModulePath.parent_path () / " Pyroscope .Linux.ApiWrapper.x64.so" ;
348348 auto wrapperLibraryPath = wrapperLibrary.string ();
349349
350350 auto * instance = dlopen (wrapperLibraryPath.c_str (), RTLD_LAZY | RTLD_LOCAL);
@@ -383,4 +383,4 @@ bool OpSysTools::IsSafeToStartProfiler(double coresThreshold)
383383 return true ;
384384
385385#endif
386- }
386+ }
You can’t perform that action at this time.
0 commit comments