From 94bc923eae2275cd791e53d1d35bfcd7fece2bc6 Mon Sep 17 00:00:00 2001 From: Christopher Chianelli Date: Mon, 27 Jul 2026 15:41:15 -0400 Subject: [PATCH 1/2] test: empty commit Test to see if this fix the downstream; reruning jobs on existing PR's seems to still use the old GraalVM 6.3 version instead of 6.1. From 8682a3e9c697743717c6f8edf804f1d380dfd2d2 Mon Sep 17 00:00:00 2001 From: Christopher Chianelli Date: Mon, 27 Jul 2026 15:44:42 -0400 Subject: [PATCH 2/2] chore: add a code change to trigger CI --- .../java/ai/timefold/solver/core/impl/solver/DefaultSolver.java | 1 + 1 file changed, 1 insertion(+) diff --git a/core/src/main/java/ai/timefold/solver/core/impl/solver/DefaultSolver.java b/core/src/main/java/ai/timefold/solver/core/impl/solver/DefaultSolver.java index 46c3190064..6657746e1a 100644 --- a/core/src/main/java/ai/timefold/solver/core/impl/solver/DefaultSolver.java +++ b/core/src/main/java/ai/timefold/solver/core/impl/solver/DefaultSolver.java @@ -53,6 +53,7 @@ public DefaultSolver(EnvironmentMode environmentMode, Supplier ran BestSolutionRecaller bestSolutionRecaller, BasicPlumbingTermination basicPlumbingTermination, UniversalTermination termination, List> phaseList, SolverScope solverScope, String moveThreadCountDescription) { + // A random comment to trigger workflow super(bestSolutionRecaller, termination, phaseList); this.environmentMode = environmentMode; this.randomFactory = randomFactory;