-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Lima doesn't seem to work properly with the latest QEMU on GitHub runners. See also lima-vm/lima#2640 and lima-vm/lima#2642 Signed-off-by: Jan Dubois <[email protected]>
- Loading branch information
Showing
2 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
# This script only works for formulas in the homebrew-core. | ||
# It assumes the homebrew-core has been checked out into ./homebrew-core. | ||
# It only needs commit messages, so the checkout can be filtered with tree:0. | ||
|
||
set -eu -o pipefail | ||
|
||
FORMULA=$1 | ||
VERSION=$2 | ||
|
||
export HOMEBREW_NO_AUTO_UPDATE=1 | ||
export HOMEBREW_NO_INSTALL_UPGRADE=1 | ||
export HOMEBREW_NO_INSTALL_CLEANUP=1 | ||
|
||
TAP=lima/tap | ||
if ! brew tap | grep -q "^${TAP}\$"; then | ||
brew tap-new "$TAP" | ||
fi | ||
|
||
# Get the latest commit id for the commit that updated this bottle | ||
SHA=$(git -C homebrew-core log --max-count 1 --grep "^${FORMULA}: update ${VERSION} bottle" --format="%H") | ||
if [[ -z $SHA ]]; then | ||
echo "${FORMULA} ${VERSION} not found" | ||
exit 1 | ||
fi | ||
|
||
OUTPUT="$(brew --repo "$TAP")/Formula/${FORMULA}.rb" | ||
RAW="https://raw.githubusercontent.com/Homebrew/homebrew-core" | ||
curl -s "${RAW}/${SHA}/Formula/${FORMULA::1}/${FORMULA}.rb" -o "$OUTPUT" | ||
|
||
if brew ls -1 | grep -q "^${FORMULA}\$"; then | ||
brew uninstall "$FORMULA" --ignore-dependencies | ||
fi | ||
brew install "${TAP}/${FORMULA}" |