Update README.md #4
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: build-macos | |
on: | |
push: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
- name: Install latest rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
default: true | |
override: true | |
- name: Install Dependencies and Build hakoniwa-core-cpp-client | |
run: | | |
brew install python3 | |
sudo mkdir -p /usr/local/lib/hakoniwa/ | |
sudo chown $USER /usr/local/lib/hakoniwa/ | |
sudo mkdir -p /usr/local/bin/hakoniwa/ | |
sudo chown $USER /usr/local/bin/hakoniwa/ | |
git clone --recursive https://github.com/toppers/hakoniwa-core-cpp-client.git | |
cd hakoniwa-core-cpp-client | |
bash build.bash | |
bash install.bash | |
- name: Build hakoniwa-conductor | |
run: | | |
cd main | |
bash build.bash |