ci: Update build.yml workflow to support parallel builds
This commit is contained in:
parent
240cd21c55
commit
dd3b9bd2f9
52
.github/workflows/build.yml
vendored
52
.github/workflows/build.yml
vendored
|
@ -166,13 +166,15 @@ jobs:
|
||||||
|
|
||||||
- name: Launch build VM
|
- name: Launch build VM
|
||||||
id: azlaunch
|
id: azlaunch
|
||||||
|
timeout-minutes: 10
|
||||||
run: |
|
run: |
|
||||||
echo "Authenticating to Azure..."
|
echo "Authenticating to Azure..."
|
||||||
az login --service-principal -u ${{ secrets.AZ_BUILD_APP_ID }} -p ${{ secrets.AZ_BUILD_PWD }} --tenant ${{ secrets.AZ_BUILD_TENANT_ID }}
|
az login --service-principal -u ${{ secrets.AZ_BUILD_APP_ID }} -p ${{ secrets.AZ_BUILD_PWD }} --tenant ${{ secrets.AZ_BUILD_TENANT_ID }}
|
||||||
|
|
||||||
echo "Creating VM..."
|
echo "Creating VM..."
|
||||||
vminfo=$(az vm create \
|
vminfo=$(az vm create \
|
||||||
--resource-group ghaDatatracker \
|
--resource-group ghaDatatracker \
|
||||||
--name tmpGhaBuildVM \
|
--name tmpGhaBuildVM-${{ github.run_number }} \
|
||||||
--image Ubuntu2204 \
|
--image Ubuntu2204 \
|
||||||
--admin-username azureuser \
|
--admin-username azureuser \
|
||||||
--generate-ssh-keys \
|
--generate-ssh-keys \
|
||||||
|
@ -183,11 +185,19 @@ jobs:
|
||||||
--os-disk-size-gb 100 \
|
--os-disk-size-gb 100 \
|
||||||
--eviction-policy Delete \
|
--eviction-policy Delete \
|
||||||
--nic-delete-option Delete \
|
--nic-delete-option Delete \
|
||||||
|
--os-disk-delete-option Delete \
|
||||||
--output tsv \
|
--output tsv \
|
||||||
--query "publicIpAddress")
|
--query "publicIpAddress")
|
||||||
echo "ipaddr=$vminfo" >> "$GITHUB_OUTPUT"
|
echo "ipaddr=$vminfo" >> "$GITHUB_OUTPUT"
|
||||||
echo "VM Public IP: $vminfo"
|
echo "VM Public IP: $vminfo"
|
||||||
cat ~/.ssh/id_rsa > ${{ github.workspace }}/prvkey.key
|
cat ~/.ssh/id_rsa > ${{ github.workspace }}/prvkey.key
|
||||||
|
|
||||||
|
echo "Fetching SSH host public keys..."
|
||||||
|
until ssh-keyscan -t rsa $vminfo 2> /dev/null
|
||||||
|
do
|
||||||
|
echo "Will try again in 5 seconds..."
|
||||||
|
sleep 5
|
||||||
|
done
|
||||||
ssh-keyscan -t rsa $vminfo >> ~/.ssh/known_hosts
|
ssh-keyscan -t rsa $vminfo >> ~/.ssh/known_hosts
|
||||||
|
|
||||||
- name: Remote SSH into Build VM
|
- name: Remote SSH into Build VM
|
||||||
|
@ -353,29 +363,29 @@ jobs:
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
run: |
|
run: |
|
||||||
echo "Destroying VM..."
|
echo "Destroying VM..."
|
||||||
az vm delete -g ghaDatatracker -n tmpGhaBuildVM --yes --force-deletion true
|
az vm delete -g ghaDatatracker -n tmpGhaBuildVM-${{ github.run_number }} --yes --force-deletion true
|
||||||
|
|
||||||
$resourceOrderRemovalOrder = [ordered]@{
|
# $resourceOrderRemovalOrder = [ordered]@{
|
||||||
"Microsoft.Compute/virtualMachines" = 0
|
# "Microsoft.Compute/virtualMachines" = 0
|
||||||
"Microsoft.Compute/disks" = 1
|
# "Microsoft.Compute/disks" = 1
|
||||||
"Microsoft.Network/networkInterfaces" = 2
|
# "Microsoft.Network/networkInterfaces" = 2
|
||||||
"Microsoft.Network/publicIpAddresses" = 3
|
# "Microsoft.Network/publicIpAddresses" = 3
|
||||||
"Microsoft.Network/networkSecurityGroups" = 4
|
# "Microsoft.Network/networkSecurityGroups" = 4
|
||||||
"Microsoft.Network/virtualNetworks" = 5
|
# "Microsoft.Network/virtualNetworks" = 5
|
||||||
}
|
# }
|
||||||
echo "Fetching remaining resources..."
|
# echo "Fetching remaining resources..."
|
||||||
$resources = az resource list --resource-group ghaDatatracker | ConvertFrom-Json
|
# $resources = az resource list --resource-group ghaDatatracker | ConvertFrom-Json
|
||||||
|
|
||||||
$orderedResources = $resources
|
# $orderedResources = $resources
|
||||||
| Sort-Object @{
|
# | Sort-Object @{
|
||||||
Expression = {$resourceOrderRemovalOrder[$_.type]}
|
# Expression = {$resourceOrderRemovalOrder[$_.type]}
|
||||||
Descending = $False
|
# Descending = $False
|
||||||
}
|
# }
|
||||||
|
|
||||||
echo "Deleting remaining resources..."
|
# echo "Deleting remaining resources..."
|
||||||
$orderedResources | ForEach-Object {
|
# $orderedResources | ForEach-Object {
|
||||||
az resource delete --resource-group ghaDatatracker --ids $_.id --verbose
|
# az resource delete --resource-group ghaDatatracker --ids $_.id --verbose
|
||||||
}
|
# }
|
||||||
|
|
||||||
echo "Logout from Azure..."
|
echo "Logout from Azure..."
|
||||||
az logout
|
az logout
|
||||||
|
|
Loading…
Reference in a new issue