a geicko-2 based round robin ranking system designed to test c++ battleship submissions battleship.dunkirk.sh
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

debug: add more logging for match compilation

+4 -2
+4 -2
internal/runner/runner.go
··· 206 206 207 207 output, err := runSandboxed(context.Background(), "compile-match", compileArgs, 120) 208 208 if err != nil { 209 - log.Printf("Failed to compile match binary: %s", output) 209 + log.Printf("Failed to compile match binary (err=%v): %s", err, output) 210 210 return 0, 0, 0 211 211 } 212 212 213 + log.Printf("Match compilation output: %s", output) 214 + 213 215 // Check if binary was actually created 214 216 if _, err := os.Stat(combinedBinary); os.IsNotExist(err) { 215 - log.Printf("Match binary was not created at %s, compilation output: %s", combinedBinary, output) 217 + log.Printf("Match binary was not created at %s, compilation succeeded but no binary found", combinedBinary) 216 218 return 0, 0, 0 217 219 } 218 220