git: 8234c1899b30 - main - release: Make fetch happen in GCE images
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 04 Nov 2025 00:35:49 UTC
The branch main has been updated by cperciva:
URL: https://cgit.FreeBSD.org/src/commit/?id=8234c1899b305bcd23323a5870e459028b91bfe4
commit 8234c1899b305bcd23323a5870e459028b91bfe4
Author: Colin Percival <cperciva@FreeBSD.org>
AuthorDate: 2025-11-03 21:44:46 +0000
Commit: Colin Percival <cperciva@FreeBSD.org>
CommitDate: 2025-11-04 00:32:30 +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.
Reviewed by: ivy
MFC after: 3 days
Differential Revision: https://reviews.freebsd.org/D53569
---
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