We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b453be commit 74c1ad5Copy full SHA for 74c1ad5
.github/workflows/c-cpp.yml
@@ -1,4 +1,6 @@
1
-name: C/C++ CI
+name: CI
2
+permissions: read-all
3
+
4
5
on:
6
push:
@@ -13,7 +15,17 @@ jobs:
13
15
14
16
steps:
17
- uses: actions/checkout@v4
- - 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
25
run: make
- - name: make dto-test
- 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