From acba5eb223bad88603a36c7fc7a4d4e98a5a19dd Mon Sep 17 00:00:00 2001 From: William Casarin Date: Fri, 15 Dec 2023 19:52:36 -0800 Subject: [PATCH] make: don't build bindings in `all` Something is messed up on ci --- .github/workflows/c-cpp.yml | 22 +++++++++++----------- Makefile | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index dc09d33..b17b5b0 100644 --- 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 index b8207cd..2bc78ca 100644 --- 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