Merge pull request #1016 from ton-blockchain/testnet #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: MacOS TON build (shared, arm64) | |
on: [push,workflow_dispatch,workflow_call] | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
- name: Build TON | |
run: | | |
cp assembly/native/build-macos-shared.sh . | |
chmod +x build-macos-shared.sh | |
./build-macos-shared.sh -t -a | |
- name: Upload artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: ton-binaries-macos-14 | |
path: artifacts |