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

PS-9542 [9.x]: Add clang-19 to Azure Pipelines #5507

Open
wants to merge 3 commits into
base: trunk
Choose a base branch
from
Open
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
31 changes: 23 additions & 8 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,38 +88,53 @@ jobs:
BuildType: Debug

# clang-12 and newer compilers
clang-18 RelWithDebInfo [Ubuntu 22.04 Jammy]:
clang-19 RelWithDebInfo [Ubuntu 22.04 Jammy]:
imageName: 'ubuntu-22.04'
UBUNTU_CODE_NAME: jammy
Compiler: clang
CompilerVer: 18
CompilerVer: 19
BuildType: RelWithDebInfo

${{ if or(ne(variables['Build.Reason'], 'PullRequest'), contains(variables['Build.SourceBranchName'], 'fullci')) }}:
clang-18 RelWithDebInfo INVERTED [Ubuntu 22.04 Jammy]:
clang-19 RelWithDebInfo INVERTED [Ubuntu 22.04 Jammy]:
imageName: 'ubuntu-22.04'
UBUNTU_CODE_NAME: jammy
Compiler: clang
CompilerVer: 18
CompilerVer: 19
BuildType: RelWithDebInfo
BUILD_PARAMS_TYPE: inverted

${{ if or(ne(variables['Build.Reason'], 'PullRequest'), contains(variables['Build.SourceBranchName'], 'fullci')) }}:
clang-18 Debug [Ubuntu 22.04 Jammy]:
clang-19 Debug [Ubuntu 22.04 Jammy]:
imageName: 'ubuntu-22.04'
UBUNTU_CODE_NAME: jammy
Compiler: clang
CompilerVer: 18
CompilerVer: 19
BuildType: Debug

clang-18 Debug INVERTED [Ubuntu 22.04 Jammy]:
clang-19 Debug INVERTED [Ubuntu 22.04 Jammy]:
imageName: 'ubuntu-22.04'
UBUNTU_CODE_NAME: jammy
Compiler: clang
CompilerVer: 18
CompilerVer: 19
BuildType: Debug
BUILD_PARAMS_TYPE: inverted

${{ if or(ne(variables['Build.Reason'], 'PullRequest'), contains(variables['Build.SourceBranchName'], 'fullci')) }}:
clang-18 RelWithDebInfo [Ubuntu 22.04 Jammy]:
imageName: 'ubuntu-22.04'
UBUNTU_CODE_NAME: jammy
Compiler: clang
CompilerVer: 18
BuildType: RelWithDebInfo

clang-18 Debug [Ubuntu 22.04 Jammy]:
imageName: 'ubuntu-22.04'
UBUNTU_CODE_NAME: jammy
Compiler: clang
CompilerVer: 18
BuildType: Debug

${{ if or(ne(variables['Build.Reason'], 'PullRequest'), contains(variables['Build.SourceBranchName'], 'fullci')) }}:
clang-17 RelWithDebInfo [Ubuntu 22.04 Jammy]:
imageName: 'ubuntu-22.04'
Expand Down