Skip to content

Commit

Permalink
Merge pull request #25 from tsirysndr/fix/ci/protoc
Browse files Browse the repository at this point in the history
ci: install protoc from homebrew
  • Loading branch information
tsirysndr authored Jan 25, 2025
2 parents bb97014 + 6d4c4d7 commit dd7b576
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ jobs:
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential libasound2-dev protobuf-compiler
sudo apt-get install -y build-essential libasound2-dev
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- run: brew install protobuf
- name: Setup Fluent CI
uses: fluentci-io/setup-fluentci@v5
- name: Run tests
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
- x86_64-unknown-linux-gnu
steps:
- uses: actions/checkout@v3
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- run: brew install protobuf
- uses: fluentci-io/setup-fluentci@v5
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
Expand Down

0 comments on commit dd7b576

Please sign in to comment.