Skip to content

Commit

Permalink
make: don't build bindings in all
Browse files Browse the repository at this point in the history
Something is messed up on ci
  • Loading branch information
jb55 committed Dec 16, 2023
1 parent c1d1d59 commit acba5eb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ BIN=ndb

CHECKDATA=testdata/db/v0/data.mdb

all: $(BIN) lib bindings ndb
all: lib ndb

lib: benches test

Expand Down

0 comments on commit acba5eb

Please sign in to comment.