Skip to content

Commit 14d290b

Browse files
committed
fix(ci): correct GPAC fallback download URL for Windows builds
Fixes build failures when Chocolatey returns 503 errors by correcting the fallback download URL for GPAC 2.4. Changes: - Updated URL from release/2.4.0/ to release/2.4/ - Fixed filename to match actual GPAC 2.4 release artifact - Verified URL returns 200 OK from official GPAC download server The previous URL returned 404 because: 1. Directory path used patch version (2.4.0) instead of minor (2.4) 2. Filename had incorrect commit hash This change maintains all existing logic including the 3-retry Chocolatey fallback mechanism and silent install parameters.
1 parent 047c953 commit 14d290b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build_windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
# Fallback: Download from GPAC website
6060
if (-not $chocoSuccess) {
6161
Write-Host "Chocolatey failed, downloading GPAC directly..."
62-
$gpacUrl = "https://download.tsi.telecom-paristech.fr/gpac/release/2.4.0/gpac-2.4.0-rev0-gc05db8ba-master-x64.exe"
62+
$gpacUrl = "https://download.tsi.telecom-paristech.fr/gpac/release/2.4/gpac-2.4-rev0-g5d70253a-master-x64.exe"
6363
$installer = "$env:TEMP\gpac-installer.exe"
6464
Invoke-WebRequest -Uri $gpacUrl -OutFile $installer -UseBasicParsing
6565
Start-Process -FilePath $installer -ArgumentList "/S" -Wait

0 commit comments

Comments
 (0)