[gha] limit macos concurrent build to one

This commit is contained in:
R4SAS 2025-11-08 00:42:58 +03:00 committed by GitHub
parent f386b2e209
commit 1a8a0df1df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,49 +0,0 @@
name: Build on OSX
on:
push:
branches:
- '*'
paths:
- .github/workflows/build-osx.yml
- daemon/**
- i18n/**
- libi2pd/**
- libi2pd_client/**
- Makefile
- Makefile.homebrew
tags:
- '*'
pull_request:
branches:
- '*'
jobs:
build:
name: Build on ${{ matrix.target-name }}
runs-on: ${{ matrix.target }}
strategy:
fail-fast: true
matrix:
include:
- target: macos-latest
target-name: ARM64
- target: macos-latest-large
target-name: Intel x86_64
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install required formulae
run: |
find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
brew update
brew install boost miniupnpc openssl@3.5
- name: List installed formulae
run: brew list
- name: Build application
run: make HOMEBREW=1 USE_UPNP=ON PREFIX=$GITHUB_WORKSPACE/output -j3