Merge pull request #1156 from ton-blockchain/safe_features #13
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 (portable, x86-64) | |
on: [push,workflow_dispatch,workflow_call] | |
jobs: | |
build: | |
runs-on: macos-12 | |
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-x86_64-macos-binaries | |
path: artifacts |