Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
libvlc-nuget
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
libvlc-nuget
Commits
57019f4e
Unverified
Commit
57019f4e
authored
11 months ago
by
Martin Finkel
Committed by
GitHub
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
libvlc windows preview: switch to llvm builds (#47)
parent
252f8490
No related branches found
No related tags found
No related merge requests found
Pipeline
#514108
passed with stage
in 16 minutes and 35 seconds
Changes
1
Pipelines
154
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
buildsystem/build.cake
+6
-6
6 additions, 6 deletions
buildsystem/build.cake
with
6 additions
and
6 deletions
buildsystem/build.cake
+
6
−
6
View file @
57019f4e
...
...
@@ -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")
...
...
@@ -136,12 +136,12 @@ async Task DownloadArtifact(string arch)
client.Dispose();
string artifact = string.Empty;
if(arch
==
"win32")
if(arch
.StartsWith(
"win32")
)
{
packageVersionWin32 = today;
artifact = $"artifact-{packageVersionWin32}-{arch}";
}
else if(arch
==
"win64")
else if(arch
.StartsWith(
"win64")
)
{
packageVersionWin64 = today;
artifact = $"artifact-{packageVersionWin64}-{arch}";
...
...
@@ -178,8 +178,8 @@ void PrepareForPackaging()
{
Console.WriteLine("PrepareForPackaging...");
var artifactwin32 = $"../artifacts/artifact-{packageVersionWin32}-win32";
var artifactwin64 = $"../artifacts/artifact-{packageVersionWin64}-win64";
var artifactwin32 = $"../artifacts/artifact-{packageVersionWin32}-win32
-llvm
";
var artifactwin64 = $"../artifacts/artifact-{packageVersionWin64}-win64
-llvm
";
var libsWin32 = new []
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment