1
1
mirror of https://github.com/leon-ai/leon.git synced 2024-12-03 02:45:21 +03:00

ci(python tcp server): set macOS runner to macos-12

This commit is contained in:
louistiti 2024-05-08 19:13:35 +08:00
parent 0ef1ec9247
commit 52cf4afbec
No known key found for this signature in database
GPG Key ID: 92CD6A2E497E1669

View File

@ -13,7 +13,9 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-latest, windows-latest]
# @see https://github.com/actions/runner-images/tree/main/images/macos
# Use macos-12 instead of macos-latest because the latter use ARM64 (M1) architecture
os: [ubuntu-20.04, macos-12, windows-latest]
runs-on: ${{ matrix.os }}