Skip to content

Commit 0613b66

Browse files
committed
[GitHub Actions] install uuid-dev before building x86_64 and arm64
To fix the "fatal error: uuid/uuid.h: No such file or directory" error. Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
1 parent 845ad50 commit 0613b66

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/buildtest.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,11 @@ jobs:
133133
sudo apt update
134134
sudo apt install -y build-essential
135135
136+
- name: Install uuid-dev
137+
run: |
138+
sudo apt update
139+
sudo apt install -y uuid-dev
140+
136141
- name: build start
137142
run: |
138143
export ARCH=x86_64 KCFLAGS="-Wall -Werror"
@@ -179,6 +184,11 @@ jobs:
179184
sudo apt update
180185
sudo apt install -y gcc-aarch64-linux-gnu
181186
187+
- name: Install uuid-dev
188+
run: |
189+
sudo apt update
190+
sudo apt install -y uuid-dev
191+
182192
- name: build start
183193
run: |
184194
export ARCH=arm64 CROSS_COMPILE=/usr/bin/aarch64-linux-gnu- KCFLAGS="-Wall -Werror"

0 commit comments

Comments
 (0)