Skip to content

Commit

Permalink
Ignore brew boost uninstall error for iOS (#1471)
Browse files Browse the repository at this point in the history
It may not be present as it appeared

Relates-To: OLPEDGE-2861

Signed-off-by: Rustam Gamidov <[email protected]>
  • Loading branch information
rustam-gamidov-here authored Feb 6, 2024
1 parent 53d1685 commit 2e70b67
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/ios/azure_ios_build_psv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@
# License-Filename: LICENSE

# Getting rid of boost installed to the CI image (not clear when it appeared)
# asciidoc and source-highlight are using it so dependencies are ignored
brew uninstall --ignore-dependencies boost
# asciidoc and source-highlight are using it so dependencies are ignored.
# Sometimes there is no boost and there is no need to fail in this case.
brew uninstall --ignore-dependencies boost || true

# Due to some bug which is cmake cannot detect compiler while called
# from cmake itself when project is compiled with XCode 12.4 we must
Expand Down

0 comments on commit 2e70b67

Please sign in to comment.