Skip to content

Commit

Permalink
Remove macOS 10.15 builder
Browse files Browse the repository at this point in the history
- Remove deprecated macOS 10.15 builder in favour of macOS 11 and 12.
- Also merge upstream changes from https://github.com/dawidd6/homebrew-tap.
  • Loading branch information
harens committed Sep 18, 2022
1 parent 7719020 commit 893f763
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/building-uploading-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ jobs:
matrix:
os:
- ubuntu-18.04
- macos-10.15
- macos-11
- macos-12
runs-on: ${{matrix.os}}
steps:
- name: Set up Homebrew
Expand Down
23 changes: 15 additions & 8 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
check:
runs-on: ubuntu-latest
container:
image: ghcr.io/homebrew/ubuntu16.04:master
image: ghcr.io/homebrew/ubuntu22.04:master
steps:
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
Expand All @@ -23,20 +23,27 @@ jobs:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-18.04
- macos-10.15
include:
- os: ubuntu-latest
container:
image: ghcr.io/homebrew/ubuntu22.04:master
options: --user=linuxbrew
- os: macos-11
- os: macos-12
runs-on: ${{matrix.os}}
container: ${{matrix.container}}
steps:
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Build bottles
run: |
brew test-bot --only-cleanup-before
brew test-bot --only-formulae --skip-recursive-dependents
mkdir ~/bottles
cd ~/bottles
brew test-bot
- name: Upload bottles
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: bottles
path: '*.bottle.*'
path: ~/bottles
if-no-files-found: error
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ or alternatively...
brew install beartype/beartype/<FORMULA>
```

Pre-compiled bottles are available for macOS Catalina, Big Sur and x86_64 Linux.
Pre-compiled bottles are available for macOS Big Sur, Monterey and x86_64 Linux.

## Formulae/Casks

Expand Down

0 comments on commit 893f763

Please sign in to comment.