File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,10 @@ jobs:
250
250
-G Ninja \
251
251
-S ${{ github.workspace }}/SourceCache/ds2
252
252
cmake --build ${{ github.workspace }}/BinaryCache/ds2 --config Release
253
- tar -C ${{ github.workspace }}/BinaryCache -cvf ${{ github.workspace }}/BinaryCache/ds2.tar ds2
253
+
254
+ # Tar the output to preserve permissions.
255
+ - name : tar output
256
+ run : tar -C ${{ github.workspace }}/BinaryCache -cvf ${{ github.workspace }}/BinaryCache/ds2.tar ds2
254
257
255
258
- uses : actions/upload-artifact@v4
256
259
with :
Original file line number Diff line number Diff line change @@ -36,9 +36,9 @@ static struct utsname const *GetCachedUTSName() {
36
36
37
37
char const *Platform::GetOSVersion () { return GetCachedUTSName ()->release ; }
38
38
39
- char const *Platform::GetOSBuild () { return GetCachedUTSName ()->version ; }
39
+ char const *Platform::GetOSBuild () { return GetCachedUTSName ()->release ; }
40
40
41
- char const *Platform::GetOSKernelPath () { return nullptr ; }
41
+ char const *Platform::GetOSKernelVersion () { return GetCachedUTSName ()-> version ; }
42
42
43
43
const char *Platform::GetSelfExecutablePath () {
44
44
return Host::FreeBSD::ProcStat::GetExecutablePath (getpid ()).c_str ();
You can’t perform that action at this time.
0 commit comments