mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
28 lines
657 B
YAML
28 lines
657 B
YAML
|
name: MacOS-13 TON build (portable, x86-64)
|
||
|
|
||
|
on: [push,workflow_dispatch,workflow_call]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: macos-13
|
||
|
|
||
|
steps:
|
||
|
- name: Check out repository
|
||
|
uses: actions/checkout@v3
|
||
|
with:
|
||
|
submodules: 'recursive'
|
||
|
|
||
|
- name: Build TON
|
||
|
run: |
|
||
|
git submodule sync --recursive
|
||
|
git submodule update
|
||
|
cp assembly/native/build-macos-portable.sh .
|
||
|
chmod +x build-macos-portable.sh
|
||
|
./build-macos-portable.sh -t -a
|
||
|
|
||
|
- name: Upload artifacts
|
||
|
uses: actions/upload-artifact@master
|
||
|
with:
|
||
|
name: ton-x86_64-macos
|
||
|
path: artifacts
|