overmind-cli 1.5.2 #81
Workflow file for this run
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
name: brew test-bot | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
# Only run this for changes to the formulas | |
- "Formula/*.rb" | |
jobs: | |
test-bot: | |
strategy: | |
matrix: | |
os: [ubuntu-22.04, macos-12, macos-13, macos-14] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set up Homebrew | |
id: set-up-homebrew | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Cache Homebrew Bundler RubyGems | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.set-up-homebrew.outputs.gems-path }} | |
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} | |
restore-keys: ${{ runner.os }}-rubygems- | |
- run: brew test-bot --only-cleanup-before | |
- run: brew test-bot --only-setup | |
- run: brew test-bot --only-tap-syntax | |
- run: brew test-bot --only-formulae --root-url=https://ghcr.io/v2/overmindtech/overmind | |
if: github.event_name == 'pull_request' | |
- name: Upload bottles as artifact | |
if: always() && github.event_name == 'pull_request' | |
# Do not upgrade to v4 due to https://github.com/actions/upload-artifact/issues/478 | |
# Homebrew will need to solve this in the `brew pr-pull` command. We | |
# have disabled rennovate for this repo to stop this gettung upgraded | |
uses: actions/upload-artifact@v3 | |
with: | |
name: bottles | |
path: '*.bottle.*' | |
notify: | |
runs-on: ubuntu-latest | |
needs: test-bot | |
steps: | |
- uses: sarisia/actions-status-discord@v1 | |
with: | |
webhook: ${{ secrets.DISCORD_WEBHOOK }} | |
status: ${{ job.status }} | |
content: "Homebrew bottling finished, time to add the `pr-pull` label! 🏷️" | |
title: "Homebrew Bottling" | |
description: "Pre-compuled bottles created and uploaded" | |
color: 0x5AB855 | |
url: ${{ github.event.pull_request.html_url }} | |
username: GitHub Actions |