Skip to content

Commit 5ec6761

Browse files
authored
Merge pull request #1447 from AzureAD/jarias/use-older-xcpretty
Use older version of xcpretty [Common]
2 parents 3f1588a + 5ca20e3 commit 5ec6761

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

azure_pipelines/msal_submodule_check.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,17 @@ jobs:
3939
- script: |
4040
/bin/bash -c "sudo xcode-select -s /Applications/Xcode_15.4.app"
4141
displayName: 'Switch to use Xcode 15.4'
42+
- task: CmdLine@2
43+
displayName: Installing xcpretty
44+
inputs:
45+
script: |
46+
gem install xcpretty -N -v 0.3.0
47+
failOnStderr: true
4248
- task: CmdLine@2
4349
displayName: Installing dependencies
4450
inputs:
4551
script: |
46-
gem install xcpretty slather bundler -N
52+
gem install slather bundler -N
4753
failOnStderr: true
4854

4955
# The following is needed to install the visionOS SDK on macos-14 vm image which

azure_pipelines/pr-validation.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,16 @@ jobs:
2929

3030
steps:
3131
- task: CmdLine@2
32-
displayName: Installing dependencies
32+
displayName: Installing xcpretty
3333
inputs:
3434
script: |
35-
gem install xcpretty slather -N
35+
gem install xcpretty -N -v 0.3.0
36+
failOnStderr: true
37+
- task: CmdLine@2
38+
displayName: Installing slather
39+
inputs:
40+
script: |
41+
gem install slather -N
3642
failOnStderr: true
3743
- checkout: self
3844
clean: true

0 commit comments

Comments
 (0)