nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

commit acba5eb223bad88603a36c7fc7a4d4e98a5a19dd
parent c1d1d59076de51b00b069f5674a8183daeebcecc
Author: William Casarin <jb55@jb55.com>
Date:   Fri, 15 Dec 2023 19:52:36 -0800

make: don't build bindings in `all`

Something is messed up on ci

Diffstat:
M.github/workflows/c-cpp.yml | 22+++++++++++-----------
MMakefile | 2+-
2 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml @@ -18,19 +18,19 @@ jobs: - name: Install required tools run: | sudo apt-get update - sudo apt-get install -y build-essential git cmake ninja-build flatbuffers-compiler + sudo apt-get install -y build-essential git cmake ninja-build #flatbuffers-compiler # Step to clone and build flatcc - - name: Build flatcc - run: | - git clone https://github.com/dvidelabs/flatcc.git - cd flatcc - git checkout v0.6.1 - ./scripts/build.sh - sudo cp bin/flatcc /usr/bin - - - name: flatc version - run: flatc --version + #- name: Build flatcc + # run: | + # git clone https://github.com/dvidelabs/flatcc.git + # cd flatcc + # git checkout v0.6.1 + # ./scripts/build.sh + # sudo cp bin/flatcc /usr/bin + + #- name: flatc version + # run: flatc --version - name: make all run: make diff --git a/Makefile b/Makefile @@ -18,7 +18,7 @@ BIN=ndb CHECKDATA=testdata/db/v0/data.mdb -all: $(BIN) lib bindings ndb +all: lib ndb lib: benches test