Skip to content

Commit

Permalink
try
Browse files Browse the repository at this point in the history
  • Loading branch information
beltram committed Jun 13, 2023
1 parent 937c7f1 commit df12a8e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ jobs:
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: apt-get install protobuf-compiler
- name: build-musl
uses: gmiam/rust-musl-action@master
with:
Expand Down
4 changes: 2 additions & 2 deletions lib/build.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// otherwise fails while building Docker image
#[cfg(not(target_env = "musl"))]
fn main() -> Result<(), Box<dyn std::error::Error>> {
for proto in std::fs::read_dir("tests/grpc/protos")? {
/*for proto in std::fs::read_dir("tests/grpc/protos")? {
tonic_build::compile_protos(proto?.path())?;
}
}*/
Ok(())
}

Expand Down

0 comments on commit df12a8e

Please sign in to comment.