mirror of
https://github.com/pezkuwichain/pez-solochain-template.git
synced 2026-04-21 23:47:59 +00:00
13 lines
420 B
YAML
13 lines
420 B
YAML
name: Install macOS dependencies
|
|
description: Installs dependencies required to compile the template on macOS
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- run: |
|
|
curl https://sh.rustup.rs -sSf -y | sh
|
|
brew install protobuf
|
|
rustup target add wasm32-unknown-unknown --toolchain stable-aarch64-apple-darwin
|
|
rustup component add rust-src --toolchain stable-aarch64-apple-darwin
|
|
shell: sh
|