Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- checkout
#- restore_cache:
- run: sudo apt install cmake build-essential libmbedtls-dev
- run: sudo apt install cmake build-essential libmbedtls-dev jq
- run: npm i
- run: npm t

Expand Down
3 changes: 2 additions & 1 deletion compile
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#!/bin/bash
if [ ! -d nng ]; then
rm -rf deps nng build && mkdir deps
git clone --depth 1 https://github.com/nanomsg/nng && cd nng
LATEST_TAG=$(curl --silent "https://api.github.com/repos/nanomsg/nng/releases/latest" | jq -r .tag_name)
git clone --depth 1 https://github.com/nanomsg/nng --branch "$LATEST_TAG" --single-branch && cd nng
else
cd nng
git pull
Expand Down