Skip to content

Commit

Permalink
feat: connector external event log - protobuf (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
luongngocminh committed Jan 5, 2024
1 parent b1a39f6 commit a8f74dd
Show file tree
Hide file tree
Showing 24 changed files with 1,224 additions and 258 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-plz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install dev-tools
run: sudo apt-get install -y --no-install-recommends pkg-config musl-dev musl-tools
run: sudo apt-get install -y --no-install-recommends pkg-config musl-dev musl-tools protobuf-compiler

- name: Install deps
run: sudo apt-get install -y --no-install-recommends libssl-dev libopus-dev libfdk-aac-dev libsoxr-dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:

- name: Install dev-tools
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y --no-install-recommends pkg-config musl-dev musl-tools
run: sudo apt-get install -y --no-install-recommends pkg-config musl-dev musl-tools protobuf-compiler

- name: Patch some libs
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install deps
run: |
sudo apt-get update
sudo apt install -y libsoxr-dev libopus-dev libssl-dev libfdk-aac-dev
sudo apt install -y libsoxr-dev libopus-dev libssl-dev libfdk-aac-dev protobuf-compiler
- name: Install Rust
run: rustup update stable
- name: Install cargo-llvm-cov
Expand Down Expand Up @@ -62,4 +62,4 @@ jobs:
with:
command: check
log-level: error
arguments: --all-features --target ${{ matrix.platform }}
arguments: --all-features --target ${{ matrix.platform }}

0 comments on commit a8f74dd

Please sign in to comment.