Skip to content

Commit 484711a

Browse files
committed
Fixes to Makefile
1 parent 653e97d commit 484711a

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/build_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- name: Install dependencies
49-
run: sudo apt update && sudo apt-get install libgpac-dev
49+
run: sudo apt update && sudo apt-get install libgpac-dev libnanomsg-dev
5050
- uses: actions/checkout@v4
5151
- name: run autogen
5252
run: ./autogen.sh

.github/workflows/build_mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848
- uses: actions/checkout@v4
4949
- name: Install dependencies
50-
run: brew install pkg-config autoconf automake libtool gpac
50+
run: brew install pkg-config autoconf automake libtool gpac nanomsg
5151
- name: run autogen
5252
run: ./autogen.sh
5353
working-directory: ./mac

.github/workflows/test_rust.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ jobs:
3333
with:
3434
toolchain: stable
3535
override: true
36+
- name: Install dependencies
37+
run: sudo apt update && sudo apt-get install libnanomsg-dev
3638
- name: Test main module
3739
run: cargo test
3840
working-directory: ./src/rust

0 commit comments

Comments
 (0)