From 7fb07bf24ecd923fa666e728fb3be1cbf98c10aa Mon Sep 17 00:00:00 2001 From: levoncrypto <95240473+levoncrypto@users.noreply.github.com> Date: Thu, 2 May 2024 12:42:03 +0400 Subject: [PATCH] Macos git action build fix (#1435) * Macos git action build fix * Update Git action for mac --- .github/workflows/ci-master.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-master.yml b/.github/workflows/ci-master.yml index 79b5109f51..659e995015 100644 --- a/.github/workflows/ci-master.yml +++ b/.github/workflows/ci-master.yml @@ -172,7 +172,7 @@ jobs: - name: Use Xcode instead of Command Line Tools run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer - name: Install Required Packages - run: brew install automake coreutils pkg-config + run: brew install automake coreutils pkg-config python-setuptools # Workaround for macOS: https://github.com/actions/runner/issues/2958 - name: Install setuptools run: sudo -H pip install setuptools @@ -181,7 +181,7 @@ jobs: working-directory: ${{ env.SOURCE_ARTIFACT }} - name: Build Firo run: | - ./configure --disable-jni --prefix=$(grealpath depends/x86_64-apple-darwin*) + ./configure --prefix=`pwd`/depends/`depends/config.guess` make -j$(sysctl -n hw.activecpu) working-directory: ${{ env.SOURCE_ARTIFACT }} - name: Prepare Files for Artifact