From 8194927c591a8191210f09f8f0697c69e48f4298 Mon Sep 17 00:00:00 2001 From: frostebite Date: Tue, 18 Aug 2026 22:04:46 +0100 Subject: [PATCH] chore: remove diagnostic set -x tracing from runsteps.sh Root cause found: the remaining Docker test failures are a pre-existing, known Unity licensing issue (game-ci/unity-test-runner#265, open since March 2024), not a bug in this repo. The activate step succeeds, but a separate unity-editor invocation for the actual test run sometimes gets 'License is not active (com.unity.editor.headless)' from a fresh licensing daemon - documented as happening ~30% of the time even on the original (pre-thin-wrapper) action, more frequently under concurrent test runs (which a full CI matrix of ~85 parallel jobs against the same Unity license is exactly). Not something to chase further in this repo - tracing has served its purpose. --- dist/platforms/ubuntu/steps/runsteps.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dist/platforms/ubuntu/steps/runsteps.sh b/dist/platforms/ubuntu/steps/runsteps.sh index 7b09183a..1885c0ba 100644 --- a/dist/platforms/ubuntu/steps/runsteps.sh +++ b/dist/platforms/ubuntu/steps/runsteps.sh @@ -11,12 +11,6 @@ # STEPS_DIR="${STEPS_DIR:-/steps}" -# TEMPORARY (round 2): re-tracing after the target-platform fix (#101, -# linux-il2cpp image now pulled correctly) - the Docker test run still -# fails the same way, need to see whether it's the same or a new symptom -# against the correct image. Remove once root-caused. -set -x - source "$STEPS_DIR/set_extra_git_configs.sh" source "$STEPS_DIR/set_gitcredential.sh"