Skip to content

Commit

Permalink
fix path to installer
Browse files Browse the repository at this point in the history
  • Loading branch information
r2k1 committed Aug 31, 2024
1 parent 0612aab commit 0ef9dce
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .pipelines/templates/.builder-release-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ steps:
exit 1
fi
echo "Found source components.json to use for overrides: ${COMPONENT_JSON_SRC}"
echo "Overwriting component.json from ${COMPONENT_JSON_SRC} -> ${COMPONENT_JSON_DEST}"
cp -af "${COMPONENT_JSON_SRC}" "${COMPONENT_JSON_DEST}"
displayName: Apply Overrides
Expand Down Expand Up @@ -106,6 +106,9 @@ steps:
echo "##vso[task.setvariable variable=SKU_NAME]$SKU_NAME"
echo "Set SKU_NAME to $SKU_NAME"
displayName: Set SKU Name
- bash: |
./installer/build.sh
displayName: Build Installer
- bash: |
echo MODE=$(MODE) && \
docker run --rm \
Expand Down Expand Up @@ -149,9 +152,6 @@ steps:
${CONTAINER_IMAGE} make -f packer.mk run-packer
retryCountOnTaskFailure: 3
displayName: Building VHD
- bash: |
./installer/build.sh
displayName: Build Installer
- bash: |
OS_DISK_URI="$(cat packer-output | grep "OSDiskUri:" | cut -d " " -f 2)" && \
MANAGED_SIG_ID="$(cat packer-output | grep "ManagedImageSharedImageGalleryId:" | cut -d " " -f 2)" && \
Expand Down
2 changes: 1 addition & 1 deletion vhdbuilder/packer/vhd-image-builder-arm64-gen2.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
},
{
"type": "file",
"source": "dist/installer-linux-arm64",
"source": "installer/dist/installer-linux-arm64",
"destination": "/home/packer/installer"
},
{
Expand Down
2 changes: 1 addition & 1 deletion vhdbuilder/packer/vhd-image-builder-base.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
},
{
"type": "file",
"source": "dist/installer-linux-amd64",
"source": "installer/dist/installer-linux-amd64",
"destination": "/home/packer/installer"
},
{
Expand Down
2 changes: 1 addition & 1 deletion vhdbuilder/packer/vhd-image-builder-mariner-arm64.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
},
{
"type": "file",
"source": "dist/installer-linux-arm64",
"source": "installer/dist/installer-linux-arm64",
"destination": "/home/packer/installer"
},
{
Expand Down
2 changes: 1 addition & 1 deletion vhdbuilder/packer/vhd-image-builder-mariner.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
},
{
"type": "file",
"source": "dist/installer-linux-amd64",
"source": "installer/dist/installer-linux-amd64",
"destination": "/home/packer/installer"
},
{
Expand Down

0 comments on commit 0ef9dce

Please sign in to comment.