The branch stable/15 has been updated by cperciva: URL: https://cgit.FreeBSD.org/src/commit/?id=eee338692b02bdb763a8256fe720efb5ffa07fe5
commit eee338692b02bdb763a8256fe720efb5ffa07fe5 Author: Colin Percival <[email protected]> AuthorDate: 2025-11-11 02:33:54 +0000 Commit: Colin Percival <[email protected]> CommitDate: 2025-11-12 18:44:58 +0000 Azure: Fix image names We need to specify the correct image names -- *.vhdf, not *.vhd -- in order for them to upload. 15.0 candidate Reviewed by: lwhsu MFC after: 2 days Differential Revision: https://reviews.freebsd.org/D53684 (cherry picked from commit df84867e8af49437bdc76a0df41d78f5a362cd24) --- release/Makefile.azure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/Makefile.azure b/release/Makefile.azure index 09dcde6af636..577221ee3899 100644 --- a/release/Makefile.azure +++ b/release/Makefile.azure @@ -39,7 +39,7 @@ azure-check-depends: .endif .for _FS in ${AZURE_FSLIST} -AZURE_IMG_${_FS}= ${.OBJDIR}/azure.${_FS}.vhd +AZURE_IMG_${_FS}= ${.OBJDIR}/azure.${_FS}.vhdf AZURE_TARGET_${_FS}= ${OSRELEASE}-${_FS}${SNAPSHOT_DATE} azure-do-upload-${_FS}:
