The branch releng/15.0 has been updated by cperciva: URL: https://cgit.FreeBSD.org/src/commit/?id=4291f032c45ec7457b93a40f2f40561f6fa44384
commit 4291f032c45ec7457b93a40f2f40561f6fa44384 Author: Colin Percival <[email protected]> AuthorDate: 2025-11-03 21:44:46 +0000 Commit: Colin Percival <[email protected]> CommitDate: 2025-11-06 23:11:28 +0000 release: Make fetch happen in GCE images We want to fetch distfiles, regardless of whether they contain known vulnerabilities or we're building images for a different version of FreeBSD. Approved by: re (cperciva) Reviewed by: ivy MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D53569 (cherry picked from commit 8234c1899b305bcd23323a5870e459028b91bfe4) (cherry picked from commit 3b01c7da327853e9f3347ff0cae9d075460f5a27) --- release/tools/gce.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/release/tools/gce.conf b/release/tools/gce.conf index ef1cf7e8f985..2fa23f6e54f4 100644 --- a/release/tools/gce.conf +++ b/release/tools/gce.conf @@ -103,8 +103,9 @@ EOF _INSTALLED_PACKAGES=$(pkg -r ${DESTDIR} info -o -q -a | grep -v ^base/) for PACKAGE in ${_INSTALLED_PACKAGES}; do make -C ${DESTDIR}/usr/ports/${PACKAGE} fetch \ - DISTDIR=${DESTDIR}/usr/ports/distfiles - + DISTDIR=${DESTDIR}/usr/ports/distfiles \ + DISABLE_VULNERABILITIES=YES \ + I_DONT_CARE_IF_MY_BUILDS_TARGET_THE_WRONG_RELEASE=YES done fi
