mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 11:42:18 +00:00
5186c4755c
* add github action for macOS 14 (arm64, M1) * add github action (portable) for macOS 14 (arm64, M1) * rename macOS arm64 output artifact * Colon cannot be used as a path separator for FIFTPATH or -I argument in fift on Windows when absolute paths are used (e.g. C:\path\lib:C:\path\smartcont). Suggestion to use @ as a new path separator on Windows. --------- Co-authored-by: neodiX <neodix42@ton.org>
37 lines
864 B
YAML
37 lines
864 B
YAML
name: MacOS TON build (portable, arm64)
|
|
|
|
on: [push,workflow_dispatch,workflow_call]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-14
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- uses: cachix/install-nix-action@v23
|
|
with:
|
|
extra_nix_config: |
|
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build TON
|
|
run: |
|
|
cp assembly/nix/build-macos-nix.sh .
|
|
chmod +x build-macos-nix.sh
|
|
./build-macos-nix.sh -t
|
|
|
|
- name: Simple binaries test
|
|
run: |
|
|
sudo mv /nix/store /nix/store2
|
|
artifacts/validator-engine -V
|
|
artifacts/lite-client -V
|
|
artifacts/fift -V
|
|
artifacts/func -V
|
|
|
|
- name: Upload artifacts
|
|
uses: actions/upload-artifact@master
|
|
with:
|
|
name: ton-arm64-macos-binaries
|
|
path: artifacts
|