Skip to content

Commit

Permalink
fix: upgrade flatbuffers version in CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
zipper-meng authored and roseboy-liu committed Dec 8, 2022
1 parent e8bfdf9 commit e30871c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/actions/setup-builder/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ runs:
- name: Install Build Dependencies
shell: bash
run: |
git clone https://github.com/google/flatbuffers.git
git clone -b v22.9.29 --depth 1 https://github.com/google/flatbuffers.git
cd flatbuffers
git checkout v2.0.6
cmake .
make
sudo make install
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,18 +35,17 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: dep
run: |
git clone https://github.com/google/flatbuffers.git
git clone -b v22.9.29 --depth 1 https://github.com/google/flatbuffers.git
cd flatbuffers
git checkout v2.0.6
cmake .
make
sudo make install
sudo ldconfig
flatc --version
- name: test
run: make test

Expand Down

0 comments on commit e30871c

Please sign in to comment.