-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathverify_msalcpp_per_pr_mac.yml
69 lines (58 loc) · 1.99 KB
/
verify_msalcpp_per_pr_mac.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger: none # Non-PR branches
pr:
branches:
include:
- '*'
pool:
vmImage: 'macOS-14'
variables:
- group: msal-ci-migration-vars
resources:
repositories:
- repository: microsoft-authentication-library-for-cpp
type: github
endpoint: 'PipelineConnectionCPP'
name: AzureAD/microsoft-authentication-library-for-cpp
ref: develop
jobs:
- job: macOS_OnPrCommit
displayName: MSAL CPP checks per commit for macOS
timeoutInMinutes: 40
cancelTimeoutInMinutes: 1
workspace:
clean: all
steps:
- checkout: self
path: CommonCore
- checkout: microsoft-authentication-library-for-cpp
path: s
- task: UsePythonVersion@0
displayName: 'Use Python 3.x'
- script: |
cd $(Agent.BuildDirectory)/CommonCore
commit_number=$(git rev-parse HEAD)
echo "##vso[task.setvariable variable=commit_number]$(git rev-parse HEAD)"
displayName: 'Get latest commit number'
- task: PythonScript@0
displayName: Update subtree and rename files
inputs:
scriptPath: scripts/update_msalobjc_subtree.py
arguments: '--skip-checkout --msal-common-repo $(Agent.BuildDirectory)/CommonCore --remote-ref $(commit_number)'
- task: UsePythonVersion@0
displayName: 'Switch to use Xcode 15.4'
- script: |
/bin/bash -c "sudo xcode-select -s /Applications/Xcode_15.4.app"
- template: azure_pipelines/templates/macos-setup.yml@microsoft-authentication-library-for-cpp
- task: PythonScript@0
name: Build
displayName: 'Build x64 Debug macOS'
inputs:
scriptPath: build.py
arguments: '--clean --arch x64 --configuration Debug --platform macOS --djinni hashfail --test --test-type unit integration --build-projects tests'
env:
MSAL_LAB_VAULT_ACCESS_CERT_LOCATION: $(Agent.TempDirectory)
MSAL_CERTIFICATE_PASSWORD: $(MSAL_CERTIFICATE_PASSWORD)