Skip to content

Commit

Permalink
Install needed kafka pkg on linux 386 and macos
Browse files Browse the repository at this point in the history
  • Loading branch information
MrAlias committed Sep 16, 2021
1 parent 8d2f066 commit 01c54e8
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,14 @@ jobs:
- uses: actions/setup-go@v2.1.4
with:
go-version: ${{ matrix.go-version }}
- name: Install librdkafka-dev for ubuntu
if: contains(matrix.os, 'ubuntu') && matrix.arch == '386'
run: |
sudo apt-get update
sudo apt-get -y install librdkafka-devel
- name: Install librdkafka-dev for MacOS
if: contains(matrix.os, 'macos')
run: brew install librdkafka pkg-config
- run: make test-short
env:
GOARCH: ${{ matrix.arch }}
Expand Down

0 comments on commit 01c54e8

Please sign in to comment.