Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task: Move ACR images publishing to Azure pipelines #6077

Merged
merged 26 commits into from
Mar 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 112 additions & 0 deletions .azure-pipelines/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ variables:
buildPlatform: "Any CPU"
buildConfiguration: "Release"
ProductBinPath: '$(Build.SourcesDirectory)\src\kiota\bin\$(BuildConfiguration)'
REGISTRY: 'msgraphprodregistry.azurecr.io'
IMAGE_NAME: 'public/openapi/kiota'
PREVIEW_BRANCH: 'refs/heads/main'
TAG: '$(Build.BuildId)'

parameters:
- name: previewBranch
Expand Down Expand Up @@ -867,3 +871,111 @@ extends:
packageParentPath: "$(Pipeline.Workspace)"
nuGetFeedType: external
publishFeedCredentials: "OpenAPI Nuget Connection"
- job: PushDockerImage
displayName: 'Push Docker Image'
dependsOn: []
condition: and(or(startsWith(variables['Build.SourceBranch'], 'refs/tags/v'), eq(variables['Build.SourceBranch'], variables['PREVIEW_BRANCH'])), not(contains(variables['Build.SourceBranch'], '-preview')))
pool:
name: Azure-Pipelines-1ESPT-ExDShared
image: ubuntu-latest
os: linux
steps:
- checkout: self

- task: AzureCLI@2
displayName: 'Login to Azure Container Registry'
inputs:
azureSubscription: 'ACR Images Push Service Connection'
scriptType: bash
scriptLocation: inlineScript
inlineScript: |
az acr login --name $(REGISTRY)

- powershell: |
$runNumber = "$(Build.BuildNumber)" -replace "^\d+\.", ""
$truncatedNumber = $runNumber.Substring([Math]::Max(0, $runNumber.Length - 4))
Write-Host "##vso[task.setvariable variable=truncatedRunNumber]$truncatedNumber"
displayName: 'Get truncated run number'
condition: eq(variables['Build.SourceBranch'], variables['PREVIEW_BRANCH'])

- powershell: |
$result = ./scripts/get-prerelease-version.ps1 -currentBranch $(Build.SourceBranch) -previewBranch $(PREVIEW_BRANCH) -excludeHeadingDash
Write-Host "##vso[task.setvariable variable=versionSuffix;isoutput=true]$result"
displayName: 'Set version suffix'
name: getversionsuffix

- powershell: |
./scripts/update-version-suffix-for-source-generator.ps1 -versionSuffix "$(getversionsuffix.versionSuffix)"
displayName: 'Set version suffix in csproj for generators'
condition: eq(variables['Build.SourceBranch'], variables['PREVIEW_BRANCH'])

- powershell: |
$version = ./scripts/get-version-from-csproj.ps1
Write-Host "Version found: $version"
Write-Host "##vso[task.setvariable variable=version;isoutput=true]$version"
displayName: 'Get Kiota version number'
name: getversion

- powershell: |
$version = if ("$(Build.SourceBranch)" -eq "$(PREVIEW_BRANCH)") { "Unreleased" } else { "$(getversion.version)" }
./scripts/get-release-notes.ps1 -version $version
displayName: 'Get release notes from CHANGELOG.md'

- powershell: |
./scripts/update-versions.ps1
displayName: 'Update dependencies versions'

- script: |
docker run --privileged --rm tonistiigi/binfmt --install all
displayName: 'Enable multi-platform builds'

- script: |
docker buildx create --use --name mybuilder
displayName: 'Set up Docker BuildX'

- script: |
docker buildx inspect --bootstrap
displayName: 'Ensure BuildX is working'

- powershell: |
$date = Get-Date -Format "yyyyMMdd"
Write-Host "##vso[task.setvariable variable=currentDate]$date"
displayName: 'Get current date'
condition: eq(variables['Build.SourceBranch'], variables['PREVIEW_BRANCH'])

- bash: |
# Debug version variable
echo "Version is: $(getversion.version)"
VERSION=$(echo "$(getversion.version)" | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')
echo "Cleaned version: $VERSION"

# Debug other variables
echo "Current date: $(currentDate)"
echo "Truncated run number: $(truncatedRunNumber)"

# Use explicit variable references and ensure proper context path
docker buildx build \
--platform linux/amd64,linux/arm64/v8,linux/arm/v7 \
--push \
-t $(REGISTRY)/$(IMAGE_NAME):nightly \
-t $(REGISTRY)/$(IMAGE_NAME):$VERSION-preview.$(currentDate)$(truncatedRunNumber) \
--build-arg version_suffix=preview.$(currentDate)$(truncatedRunNumber) \
"$(Build.SourcesDirectory)"
displayName: 'Build and Push Preview Image'
condition: eq(variables['Build.SourceBranch'], variables['PREVIEW_BRANCH'])

- bash: |
# Debug version variable
echo "Version is: $(getversion.version)"
VERSION=$(echo "$(getversion.version)" | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')
echo "Cleaned version: $VERSION"

# Use explicit variable references and ensure proper context path
docker buildx build \
--platform linux/amd64,linux/arm64/v8,linux/arm/v7 \
--push \
-t $(REGISTRY)/$(IMAGE_NAME):latest \
-t $(REGISTRY)/$(IMAGE_NAME):$VERSION \
"$(Build.SourcesDirectory)"
displayName: 'Build and Push Release Image'
condition: startsWith(variables['Build.SourceBranch'], 'refs/tags/v')
19 changes: 0 additions & 19 deletions .azure-pipelines/docker.yml

This file was deleted.

111 changes: 0 additions & 111 deletions .github/workflows/docker.yml

This file was deleted.

4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0 AS build-env
FROM --platform=${BUILDPLATFORM} mcr.microsoft.com/dotnet/sdk:9.0 AS build-env
ARG version_suffix
WORKDIR /app

Expand All @@ -23,4 +23,4 @@ ENV KIOTA_CONTAINER=true DOTNET_TieredPGO=1 DOTNET_TC_QuickJitForLoops=1
ENTRYPOINT ["dotnet", "kiota.dll"]
LABEL description="# Welcome to Kiota Generator \
To start generating SDKs checkout [the getting started documentation](https://learn.microsoft.com/openapi/kiota/install#run-in-docker) \
[Source dockerfile](https://github.com/microsoft/kiota/blob/main/Dockerfile)"
[Source dockerfile](https://github.com/microsoft/kiota/blob/main/Dockerfile)"
Loading