Skip to content

Commit

Permalink
libvlc windows preview: switch to llvm builds
Browse files Browse the repository at this point in the history
  • Loading branch information
mfkl committed Apr 16, 2024
1 parent 252f849 commit c89cf14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildsystem/build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ Task("Package-windows-classic-nightly")
Task("Download-win32-nightly")
.Does(async () =>
{
await DownloadArtifact("win32");
await DownloadArtifact("win32-llvm");
});

Task("Download-win64-nightly")
.IsDependentOn("Clean")
.Does(async () =>
{
await DownloadArtifact("win64");
await DownloadArtifact("win64-llvm");
});

Task("Publish")
Expand Down

0 comments on commit c89cf14

Please sign in to comment.