Skip to content

build(deps): bump softprops/action-gh-release from 1 to 2 #524

build(deps): bump softprops/action-gh-release from 1 to 2

build(deps): bump softprops/action-gh-release from 1 to 2 #524

Workflow file for this run

name: MacOS Builds
on:
workflow_dispatch:
workflow_call:
push:
pull_request:
jobs:
build:
runs-on: macos-13
steps:
- name: checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: pwd
run: pwd
- name: brew
run: |
brew update
brew upgrade || true
brew link --overwrite python
brew install pkg-config m4 libtool automake autoconf
brew install coreutils
brew install qt
brew link --force qt
- name: build sources
run: |
WORKDIR=`pwd`
cd ..
cmake -DCMAKE_BUILD_TYPE=Release -DAPPLE_FAT_ARCH=OFF -DBUILD_DEPENDENCIES=ON -H. -Bbuild $WORKDIR
cd build
make -j
gls -Q | grep -v EPs | xargs rm -rf
cd ..
echo "==============================================="
cmake -DCMAKE_BUILD_TYPE=Release -DAPPLE_FAT_ARCH=OFF -H. -Bbuild $WORKDIR
cd build
make -j install
ls -l
cd ..