ci: install protoc binary

This commit is contained in:
appflowy 2022-02-08 23:52:00 +08:00
parent 15d91d3cbe
commit 1ab3f42477
2 changed files with 5 additions and 0 deletions

View File

@ -31,6 +31,7 @@ jobs:
run: |
cargo install --force cargo-make
cargo install --force duckscript_cli
brew install protobuf
cargo make flowy_dev
- name: Build
working-directory: frontend
@ -71,6 +72,7 @@ jobs:
run: |
cargo install --force cargo-make
cargo install --force duckscript_cli
sudo apt-get install protobuf-compiler
cargo make flowy_dev
- name: Build
working-directory: frontend

View File

@ -1,8 +1,10 @@
#![allow(unused_imports)]
#![allow(unused_attributes)]
use std::fs::File;
use std::io::Write;
use walkdir::WalkDir;
#[allow(dead_code)]
pub fn gen(name: &str, root: &str) {
let mut paths = vec![];
let mut file_names = vec![];
@ -31,6 +33,7 @@ pub fn gen(name: &str, root: &str) {
}
#[cfg(feature = "dart")]
#[allow(dead_code)]
fn gen_pb_for_dart(name: &str, root: &str, paths: &Vec<String>, file_names: &Vec<String>) {
let output = format!(
"{}/{}/{}",