Skip to content

Commit

Permalink
Rollback harfbuzz to version 7.3.0_1
Browse files Browse the repository at this point in the history
  • Loading branch information
vpolikarpov-akvelon authored and tobbi committed Aug 15, 2023
1 parent 7c75baf commit 84f49b9
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ name: MacOS
on:
push:
branches:
- master
- rollback-harfbuzz
tags:
- '*'
pull_request: {}
Expand Down Expand Up @@ -58,6 +58,17 @@ jobs:
sudo mv /Library/Frameworks/Mono.framework \
/Library/Frameworks/Mono.framework-disabled
- name: Rollback harfbuzz version
if: ${{ matrix.os == 'macos-11' }}
run: |
PKG_NAME=harfbuzz
FORMULA_COMMIT=beb314d142c6ba06c23c761699ebe6a96d0d9864
brew uninstall --ignore-dependencies "${PKG_NAME}" || true
FORMULA_URL="https://raw.githubusercontent.com/Homebrew/homebrew-core/${FORMULA_COMMIT}/Formula/${PKG_NAME}.rb"
FORMULA_FILE=$(find $(brew --repository) -path "*/Formula/${PKG_NAME}.rb")
curl -fsSL "$FORMULA_URL" > "${FORMULA_FILE}"
HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_FROM_API=1 brew install "${PKG_NAME}"
- name: Set compiler
run: |
# This ensures for now we use clang11
Expand Down

0 comments on commit 84f49b9

Please sign in to comment.