From f6f9f48366cce7ba1438c9310950bde17b36e055 Mon Sep 17 00:00:00 2001 From: Edouard Oger Date: Thu, 14 May 2020 10:13:58 -0400 Subject: [PATCH] Fix libs download link --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index c37453f62..d6b7cd7ee 100644 --- a/build.gradle +++ b/build.gradle @@ -87,7 +87,7 @@ def useDownloadedLibs = !System.getenv('CI') && ext.libsGitSha != null if (useDownloadedLibs) { task downloadAndroidLibs(type: Download) { - src "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.application-services.build.libs.android.${rootProject.ext.libsGitSha}/artifacts/public/android.tar.gz" + src "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.application-services.build.libs.android.${rootProject.ext.libsGitSha}/artifacts/public/build/android.tar.gz" dest new File(buildDir, "libs.android.${rootProject.ext.libsGitSha}.tar.gz") doFirst { @@ -107,11 +107,11 @@ if (useDownloadedLibs) { src { switch (DefaultPlatform.RESOURCE_PREFIX) { case 'darwin': - return "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.application-services.build.libs.desktop.macos.${rootProject.ext.libsGitSha}/artifacts/public/macos.tar.gz" + return "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.application-services.build.libs.desktop.macos.${rootProject.ext.libsGitSha}/artifacts/public/build/macos.tar.gz" case 'linux-x86-64': - return "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.application-services.build.libs.desktop.linux.${rootProject.ext.libsGitSha}/artifacts/public/linux.tar.gz" + return "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.application-services.build.libs.desktop.linux.${rootProject.ext.libsGitSha}/artifacts/public/build/linux.tar.gz" case 'win32-x86-64': - return "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.application-services.build.libs.desktop.win32-x86-64.${rootProject.ext.libsGitSha}/artifacts/public/win.tar.gz" + return "https://firefox-ci-tc.services.mozilla.com/api/index/v1/task/project.application-services.application-services.build.libs.desktop.win32-x86-64.${rootProject.ext.libsGitSha}/artifacts/public/build/win.tar.gz" default: throw new GradleException("Unknown host platform '${DefaultPlatform.RESOURCE_PREFIX}'. " + "Set `ext.libsGitSha = null` in ${rootProject.rootDir}/build.gradle and build your own libs. " +