Skip to content

Commit

Permalink
rename auto-build folder for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
neodiX committed Apr 16, 2024
1 parent d84c5cf commit 2dbfc92
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/macos-wallet-compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:
path: wallet-desktop
- name: Compile macos desktop wallet
run: |
cd wallet-desktop/auto-build/macos-10.15
cd wallet-desktop/auto-build/macos-11.7
chmod +x compile.sh
./compile.sh
- name: Find & copy binaries
run: |
mkdir artifacts
chmod -R 777 wallet-desktop/auto-build/macos-10.15/wallet-desktop/out/Release/Wallet.app
cp -R wallet-desktop/auto-build/macos-10.15/wallet-desktop/out/Release/Wallet.app artifacts
chmod -R 777 wallet-desktop/auto-build/macos-11.7/wallet-desktop/out/Release/Wallet.app
cp -R wallet-desktop/auto-build/macos-11.7/wallet-desktop/out/Release/Wallet.app artifacts
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ cd gtest
git checkout d62d6c6556
cd ../../..

git apply $rootPath/wallet-desktop/auto-build/macos-10.15/crashpad.patch
git apply $rootPath/wallet-desktop/auto-build/macos-11.7/crashpad.patch
test $? -eq 0 || { echo "Can't apply crashpad.patch"; exit 1; }

build/gyp_crashpad.py -Dmac_deployment_target=10.8
Expand Down Expand Up @@ -186,7 +186,7 @@ cd $rootPath/wallet-desktop/Wallet/
./configure.sh -D DESKTOP_APP_USE_PACKAGED=OFF
test $? -eq 0 || { echo "Can't configure wallet"; exit 1; }

git apply $rootPath/wallet-desktop/auto-build/macos-10.15/wallet.patch
git apply $rootPath/wallet-desktop/auto-build/macos-11.7/wallet.patch
test $? -eq 0 || { echo "Can't apply wallet.patch"; exit 1; }
cd ../out

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion docs/building-xcode.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Automatic build
You can try an auto-build script for macOS 10.15 [compile.sh](../auto-build/macos-10.15/compile.sh).
You can try an auto-build script for macOS 11.7 [compile.sh](../auto-build/macos-11.7/compile.sh).

The latest compiled TON Wallet can also be downloaded from our [Git actions](https://github.com/newton-blockchain/wallet-desktop/actions/workflows/macos-wallet-compile.yml).
Do not forget to apply following commands after you have extracted the artifact:
Expand Down

0 comments on commit 2dbfc92

Please sign in to comment.