From 7d9f36ad1eef869eb0f775b68e06068292284b63 Mon Sep 17 00:00:00 2001 From: Dean Ellis Date: Sun, 15 Sep 2024 23:28:52 +0100 Subject: [PATCH] Add code to download tests --- build/TestTasks/DownloadTestArtifactsTask.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/TestTasks/DownloadTestArtifactsTask.cs b/build/TestTasks/DownloadTestArtifactsTask.cs index 46118bcfd52..7356fe8b428 100644 --- a/build/TestTasks/DownloadTestArtifactsTask.cs +++ b/build/TestTasks/DownloadTestArtifactsTask.cs @@ -16,5 +16,8 @@ public override async Task RunAsync(BuildContext context) }; context.CreateDirectory("tests-tools"); await context.GitHubActions().Commands.DownloadArtifact($"tests-tools-{os}", "tests-tools"); + await context.GitHubActions().Commands.DownloadArtifact($"tests-desktopgl-{os}", "tests-desktopgl"); + if (context.IsRunningOnWindows()) + await context.GitHubActions().Commands.DownloadArtifact($"tests-windowsdx-{os}", "tests-windowsdx"); } }