Also use old mac workers for plugins job (#12495)

Repeat from #12493

Now we see failures on main
This commit is contained in:
Stefan Holderbach 2024-04-12 21:43:36 +02:00 committed by GitHub
parent 50fb8243c8
commit 3a11b9d69d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -165,7 +165,11 @@ jobs:
strategy:
fail-fast: true
matrix:
platform: [windows-latest, macos-latest, ubuntu-20.04]
# Using macOS 13 runner because 14 is based on the M1 and has half as much RAM (7 GB,
# instead of 14 GB) which is too little for us right now.
#
# Failure occuring with clippy for rust 1.77.2
platform: [windows-latest, macos-13, ubuntu-20.04]
runs-on: ${{ matrix.platform }}