e2e_tests: Update prebuild URL to crosvm-infra

We no longer need to use the ChromeOS infra for storing the prebuilts
and have updated all other references already. This one was missed.

BUG=None
TEST=run_tests

Change-Id: Ie8ee25d731591c78e3b49ad0dadbed87aaafdf49
Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/4005658
Reviewed-by: Daniel Verkamp <dverkamp@chromium.org>
Auto-Submit: Dennis Kempin <denniskempin@google.com>
Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
This commit is contained in:
Dennis Kempin 2022-11-04 18:05:51 +00:00 committed by crosvm LUCI
parent 5e8a3f1580
commit 004417152f

View file

@ -28,7 +28,7 @@ use base::syslog;
use libc::O_DIRECT; use libc::O_DIRECT;
use tempfile::TempDir; use tempfile::TempDir;
const PREBUILT_URL: &str = "https://storage.googleapis.com/chromeos-localmirror/distfiles"; const PREBUILT_URL: &str = "https://storage.googleapis.com/crosvm/integration_tests";
#[cfg(target_arch = "x86_64")] #[cfg(target_arch = "x86_64")]
const ARCH: &str = "x86_64"; const ARCH: &str = "x86_64";
@ -47,7 +47,7 @@ fn prebuilt_version() -> &'static str {
fn kernel_prebuilt_url() -> String { fn kernel_prebuilt_url() -> String {
format!( format!(
"{}/crosvm-testing-bzimage-{}-{}", "{}/guest-bzimage-{}-{}",
PREBUILT_URL, PREBUILT_URL,
ARCH, ARCH,
prebuilt_version() prebuilt_version()
@ -56,7 +56,7 @@ fn kernel_prebuilt_url() -> String {
fn rootfs_prebuilt_url() -> String { fn rootfs_prebuilt_url() -> String {
format!( format!(
"{}/crosvm-testing-rootfs-{}-{}", "{}/guest-rootfs-{}-{}",
PREBUILT_URL, PREBUILT_URL,
ARCH, ARCH,
prebuilt_version() prebuilt_version()