Skip to content

Commit

Permalink
Add code to download tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Sep 15, 2024
1 parent 496e7cd commit 7d9f36a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build/TestTasks/DownloadTestArtifactsTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}

0 comments on commit 7d9f36a

Please sign in to comment.