From 0ba1c69c9592aef76b37029b41f5c2bf84152875 Mon Sep 17 00:00:00 2001 From: Philip Top Date: Fri, 4 Aug 2023 15:01:21 -0700 Subject: [PATCH 1/2] test an arm64 build on azure --- azure-pipelines.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1bb4d0771..7411a9871 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -28,6 +28,20 @@ jobs: - bash: cpplint --counting=detailed --recursive examples include/CLI tests displayName: Checking against google style guide + - job: msvc_arm64 + strategy: + matrix: + vs_arm64: + vmImage: "windows-2022" + cli11.std: 17 + cli11.build_type: Debug + cli11.options: -G "Visual Studio 17 2022" -A ARM64 + pool: + vmImage: $(vmImage) + + steps: + - template: .ci/azure-build.yml + - job: Native strategy: matrix: From 7a2493076d0d881bec0e5b6838cf9f5a65c28893 Mon Sep 17 00:00:00 2001 From: Philip Top Date: Fri, 4 Aug 2023 15:23:37 -0700 Subject: [PATCH 2/2] add arm64 build only test to the pipelines --- azure-pipelines.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7411a9871..7206be09c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -9,7 +9,6 @@ trigger: pr: - main - - "v*" variables: cli11.single: ON @@ -28,10 +27,10 @@ jobs: - bash: cpplint --counting=detailed --recursive examples include/CLI tests displayName: Checking against google style guide - - job: msvc_arm64 + - job: build_only strategy: matrix: - vs_arm64: + visual_studio_arm64: vmImage: "windows-2022" cli11.std: 17 cli11.build_type: Debug