Skip to content

Commit

Permalink
add macos
Browse files Browse the repository at this point in the history
  • Loading branch information
tmori committed Dec 30, 2023
1 parent 0578eb0 commit 91e28d1
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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
mkdir -p ${HOME}/lib/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

0 comments on commit 91e28d1

Please sign in to comment.