fix: add missing nonce serialization for connect request #50
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 linux | |
on: [push] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install LLVM and Clang 16 | |
uses: KyleMayes/install-llvm-action@v1 | |
with: | |
version: '16.0.4' | |
env: true | |
- 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 -- VERBOSE=1 | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: Nimble Serialize Linux Library | |
path: | | |
src/lib/libnimble-serialize.a |