Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Feb 2025 17:48:15 GMT
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 9f284aad585e - main - full-test.sh: Update to 14.2
Message-ID:  <202502181748.51IHmFpb023078@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=9f284aad585e4531d8f72b193f7b08fac0d29e21

commit 9f284aad585e4531d8f72b193f7b08fac0d29e21
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2025-02-18 17:43:01 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2025-02-18 17:43:20 +0000

    full-test.sh: Update to 14.2
    
    Update the cached things we use to build the tests to 14.2. Also, reduce
    the nunber of architectures for now since there's problems with the
    other ones (do this by restricting the default list, rather than
    removing the code).
    
    Sponsored by:           Netflix
---
 tools/boot/full-test.sh | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/tools/boot/full-test.sh b/tools/boot/full-test.sh
index 89d2ac3b7277..bdb030361b1f 100644
--- a/tools/boot/full-test.sh
+++ b/tools/boot/full-test.sh
@@ -19,8 +19,8 @@
 
 # What version of FreeBSD to we snag the ISOs from to extract the binaries
 # we are testing
-FREEBSD_VERSION=13.1
-# eg https://download.freebsd.org/releases/amd64/amd64/ISO-IMAGES/13.1/FreeBSD-13.1-RELEASE-amd64-bootonly.iso.xz
+FREEBSD_VERSION=14.2
+# eg https://download.freebsd.org/releases/amd64/amd64/ISO-IMAGES/14.2/FreeBSD-14.2-RELEASE-amd64-bootonly.iso.xz
 URLBASE="https://download.freebsd.org/releases"
 : ${STAND_ROOT:="${HOME}/stand-test-root"}
 CACHE=${STAND_ROOT}/cache
@@ -40,7 +40,8 @@ fi
 # All the architectures under test
 # Note: we can't yet do armv7 because we don't have a good iso for it and would
 # need root to extract the files.
-ARCHES="amd64:amd64 i386:i386 powerpc:powerpc powerpc:powerpc64 powerpc:powerpc64le powerpc:powerpcspe arm64:aarch64 riscv:riscv64"
+#ARCHES="amd64:amd64 i386:i386 powerpc:powerpc powerpc:powerpc64 powerpc:powerpc64le powerpc:powerpcspe arm64:aarch64 riscv:riscv64"
+ARCHES="amd64:amd64 arm64:aarch64"
 
 # The smallest FAT32 filesystem is 33292 KB
 espsize=33292



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202502181748.51IHmFpb023078>