ci: run macOS jobs on macos-13 instead of macos-13-xlarge (#9177)

macos-13-xlarge was needed to use M1 CPU,
because previously silkworm-go didn't have macOS Intel support
This commit is contained in:
battlmonstr 2024-01-09 11:49:04 +01:00 committed by GitHub
parent 459ccf8de4
commit 302f1f772d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 7 deletions

View File

@ -25,7 +25,10 @@ jobs:
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
strategy:
matrix:
os: [ ubuntu-22.04, macos-13-xlarge ] # list of os: https://github.com/actions/virtual-environments
# list of os: https://github.com/actions/virtual-environments
os:
- ubuntu-22.04
- macos-13
runs-on: ${{ matrix.os }}
steps:

View File

@ -19,11 +19,6 @@ on:
jobs:
long-running-test:
#if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }}
#strategy:
# matrix:
# os: [ ubuntu-22.04, macos-13-xlarge ]
#runs-on: ${{ matrix.os }}
runs-on: self-hosted
env:
ERIGON_DATA_DIR: ${{ github.workspace }}/erigon_data

View File

@ -13,7 +13,10 @@ jobs:
tests:
strategy:
matrix:
os: [ ubuntu-22.04, macos-13-xlarge ] # list of os: https://github.com/actions/virtual-environments
# list of os: https://github.com/actions/virtual-environments
os:
- ubuntu-22.04
- macos-13
runs-on: ${{ matrix.os }}
steps: