mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
26 lines
579 B
YAML
26 lines
579 B
YAML
|
name: MacOS TON build (shared, x86-64)
|
||
|
|
||
|
on: [push,workflow_dispatch,workflow_call]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: macos-12
|
||
|
|
||
|
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-12
|
||
|
path: artifacts
|