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
#!/usr/bin/env bash | |
# Helper script for fetching the required Binaryen and LLVM revisions for the current release of Emscripten in Homebrew/core. | |
# TODO: | |
# - print output in a machine-readable format (e.g. JSON) | |
# - remove dependency on `rg` | |
# - automate updating `emscripten.rb` | |
REQUIRED_COMMANDS=(jq curl brew base64 rg python3) | |
for prog in "${REQUIRED_COMMANDS[@]}"; do | |
if ! command -v "${prog}" &>/dev/null; then |
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
#!/usr/bin/env brew ruby | |
# Marks a comment in the tracking issue as resolved if it is about a formula that is already bottled. | |
ISSUE = 184132 | |
bottle_tag = Utils::Bottles::Tag.new(arch: :arm64, system: :sequoia) | |
MINIMIZE_COMMENT_MUTATION = <<~GRAPHQL | |
mutation ($input: MinimizeCommentInput!) { | |
minimizeComment(input: $input) { | |
clientMutationId |
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
#!/bin/bash | |
LIMIT=250 | |
CLOSE_MESSAGE="please reopen against master" | |
failed_prs="$(gh pr list --limit $LIMIT --search 'status:failure' | cut -f1)" | |
git fetch origin | |
for pr in $failed_prs | |
do |
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
Homebrew build logs for luvit on macOS 11 | |
Build date: 2021-01-20 11:45:46 |
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
Homebrew build logs for llvm on macOS 11.1 | |
Build date: 2020-12-17 15:30:01 |
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
Homebrew build logs for gcc on macOS 11.1 | |
Build date: 2020-12-17 14:57:30 |