Skip to content

Commit 5c731ef

Browse files
author
jayeshmepani
committed
fix: resolve build tools missing and already installed errors on runners
1 parent b9e156b commit 5c731ef

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release-prebuilt-libs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323

2424
- name: Install build tools
25-
run: sudo apt-get update && sudo apt-get install -y curl autoconf automake libtool pkg-config git
25+
run: sudo apt-get update && sudo apt-get install -y build-essential curl autoconf automake libtool pkg-config git
2626

2727
- name: Compile shared library
2828
run: bash build/compile-linux.sh
@@ -44,7 +44,7 @@ jobs:
4444
- uses: actions/checkout@v4
4545

4646
- name: Install build tools
47-
run: sudo apt-get update && sudo apt-get install -y curl autoconf automake libtool pkg-config git
47+
run: sudo apt-get update && sudo apt-get install -y build-essential curl autoconf automake libtool pkg-config git
4848

4949
- name: Compile shared library
5050
run: bash build/compile-linux.sh
@@ -66,7 +66,7 @@ jobs:
6666
- uses: actions/checkout@v4
6767

6868
- name: Install build tools
69-
run: brew install autoconf automake libtool pkg-config
69+
run: brew install autoconf automake libtool pkg-config || true
7070

7171
- name: Compile shared library
7272
run: bash build/compile-macos.sh
@@ -88,7 +88,7 @@ jobs:
8888
- uses: actions/checkout@v4
8989

9090
- name: Install build tools
91-
run: brew install autoconf automake libtool pkg-config
91+
run: brew install autoconf automake libtool pkg-config || true
9292

9393
- name: Compile shared library
9494
run: bash build/compile-macos.sh

0 commit comments

Comments
 (0)