fix: add missing nonce serialization for connect request #31
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 mac os | |
on: [push] | |
jobs: | |
build: | |
name: Build MacOS | |
runs-on: macos-12 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup cmake | |
uses: jwlawson/[email protected] | |
with: | |
cmake-version: '3.26.x' | |
- name: Install Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' | |
- name: deps fetch dependencies | |
run: | |
go run github.com/piot/deps/src/deps@main fetch | |
- name: create cmake cache | |
run: cmake -DCMAKE_BUILD_TYPE=Debug . | |
- name: build | |
run: cmake --build . --clean-first | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Nimble Serialize MacOS Library | |
path: | | |
src/lib/libnimble-serialize.a |