Skip to content

Commit 74c1ad5

Browse files
authored
update workflow (#15)
1 parent 9b453be commit 74c1ad5

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

.github/workflows/c-cpp.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
name: C/C++ CI
1+
name: CI
2+
permissions: read-all
3+
24

35
on:
46
push:
@@ -13,7 +15,17 @@ jobs:
1315

1416
steps:
1517
- uses: actions/checkout@v4
16-
- name: make
18+
- name: Install accel-config
19+
run: sudo apt install -y accel-config libaccel-config-dev
20+
- name: Install uuid
21+
run: sudo apt install -y uuid-dev
22+
- name: Install libnuma
23+
run: sudo apt install -y libnuma-dev
24+
- name: Build
1725
run: make
18-
- name: make dto-test
19-
run: make dto-test
26+
- name: Install DTO
27+
run: sudo make install
28+
- name: Build dto-test
29+
run: export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib64/; make dto-test
30+
- name: Run dto-test
31+
run: LD_LIBRARY_PATH=/usr/lib64 ./dto-test

0 commit comments

Comments
 (0)