Skip to content

Commit

Permalink
Merge pull request #2225 from k8s-infra-cherrypick-robot/cherry-pick-…
Browse files Browse the repository at this point in the history
…2198-to-release-1.2

[release-1.2] Update make target when ccm test
  • Loading branch information
k8s-ci-robot authored Apr 13, 2022
2 parents 1352fa2 + 7eabe29 commit fe7aa42
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions scripts/ci-build-azure-ccm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,15 @@ setup() {

main() {
if [[ "$(can_reuse_artifacts)" == "false" ]]; then
echo "Building Azure cloud controller manager and cloud node manager..."
make -C "${AZURE_CLOUD_PROVIDER_ROOT}" image push
echo "Build Linux Azure amd64 cloud controller manager"
make -C "${AZURE_CLOUD_PROVIDER_ROOT}" build-ccm-image-amd64 push-ccm-image-amd64
if [[ -n "${TEST_WINDOWS:-}" ]]; then
echo "Building Linux amd64 and Windows ltsc2022 amd64 cloud node managers"
make -C "${AZURE_CLOUD_PROVIDER_ROOT}" build-node-image-linux-amd64 push-node-image-linux-amd64 push-node-image-windows-ltsc2022-amd64 manifest-node-manager-image-windows-ltsc2022-amd64
else
echo "Building Linux amd64 cloud node manager"
make -C "${AZURE_CLOUD_PROVIDER_ROOT}" build-node-image-linux-amd64 push-node-image-linux-push-name-amd64
fi
fi
}

Expand Down

0 comments on commit fe7aa42

Please sign in to comment.