File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 33sudo add-apt-repository ppa:haxe/releases -y
44sudo apt-get update
55sudo apt-get install haxe -y
6+ haxelib --global update haxelib
67mkdir ~ /haxelib && haxelib setup ~ /haxelib
78haxelib install hxcpp
89haxelib git hashlink https://github.com/HaxeFoundation/hashlink.git master other/haxelib/
Original file line number Diff line number Diff line change @@ -514,6 +514,7 @@ private static async Task TestAsync(
514514 {
515515 string exeRoot = GetIncludedRuntimeRoot ( langEnvConfig : langEnvConfig , buildOutputRoot : buildOutputRoot , buildOutput : buildOutput ) ;
516516 exeName = Path . Combine ( exeRoot , exeName ) ;
517+ await ProcessUtils . RunCommandAsync ( $ "chmod +x \" { exeName } \" ", asyncRead : false , workingDir : buildOutput ) . ConfigureAwait ( false ) ;
517518 }
518519
519520 string runtimeVersionParameter = langEnvConfig . RuntimeVersionParameter . FallBackTo ( langConfig . RuntimeVersionParameter ) ;
@@ -625,6 +626,7 @@ private static async Task BenchAsync(
625626 {
626627 string exeRoot = GetIncludedRuntimeRoot ( langEnvConfig : langEnvConfig , buildOutputRoot : buildOutputRoot , buildOutput : buildOutput ) ;
627628 exeName = Path . Combine ( exeRoot , exeName ) ;
629+ await ProcessUtils . RunCommandAsync ( $ "chmod +x \" { exeName } \" ", asyncRead : false , workingDir : buildOutput ) . ConfigureAwait ( false ) ;
628630 }
629631
630632 YamlBenchmarkProblemConfig problemTestConfig = benchConfig . Problems . FirstOrDefault ( i => i . Name == problem . Name ) ;
You can’t perform that action at this time.
0 commit comments