Skip to content

Commit beaf730

Browse files
committed
[GitHub Actions] install uuid-dev before building x86_64
To fix the "fatal error: uuid/uuid.h: No such file or directory" error. It is also required for arm64. However, we just need to install uuid-dev once. Signed-off-by: Bard Liao <yung-chuan.liao@linux.intel.com>
1 parent 845ad50 commit beaf730

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/buildtest.yml

Lines changed: 5 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"

0 commit comments

Comments
 (0)