Skip to content

Commit 0a0ad8c

Browse files
committed
Add Linux dependencies installation to CI workflow
Installs required Linux packages on Ubuntu runners in the CI workflow to support building the cnativeapi Android example and related tasks.
1 parent c9e7548 commit 0a0ad8c

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,19 @@ jobs:
128128
distribution: 'temurin'
129129
java-version: '17'
130130

131+
- name: Install Linux dependencies
132+
if: matrix.os == 'ubuntu-latest'
133+
run: |
134+
sudo apt-get update
135+
sudo apt-get install -y \
136+
libgtk-3-dev \
137+
libblkid-dev \
138+
liblzma-dev \
139+
pkg-config \
140+
cmake \
141+
ninja-build \
142+
clang
143+
131144
- name: Build cnativeapi example Android
132145
if: matrix.os == 'ubuntu-latest'
133146
run: |

0 commit comments

Comments
 (0)