Skip to content

Commit

Permalink
Fix target check
Browse files Browse the repository at this point in the history
  • Loading branch information
Mixa84 committed May 24, 2024
1 parent 26f2260 commit f8bcd72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ jobs:
key: ${{ env.TARGET }}-deps

- name: Install OSX dependencies
if: ${{ env.TARGET == 'x86_64-apple-darwin' && steps.deps-cache.cache-hit != 'true' }}
if: ${{ env.TARGET == 'x86_64-apple-darwin' && steps.deps-cache.outputs.cache-hit != 'true' }}
run: |
sudo apt-get install curl bsdmainutils cmake libz-dev python3-setuptools libtinfo5 xorriso cpio
cd depends && mkdir SDKs && cd SDKs
wget http://mixakuca.ddns.net:8000/Xcode-12.2.tar.gz
tar -xzf Xcode-12.2.tar.gz
- name: Build depends
if: ${{ steps.deps-cache.cache-hit != 'true' }}
if: ${{ steps.deps-cache.outputs.cache-hit != 'true' }}
run: make -j$(nproc) -C depends HOST=${{env.TARGET}} NO_QT=1 NO_NATPMP=1 NO_UPNP=1 NO_ZMQ=1 NO_USDT=1

- name: Build
Expand Down

0 comments on commit f8bcd72

Please sign in to comment.