File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,16 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
14
14
steps :
15
- - uses : actions/checkout@v2
16
- - name : cmake
15
+ - name : Checkout Code
16
+ uses : actions/checkout@v2
17
+
18
+ - name : Configure
17
19
run : cmake -DCMAKE_BUILD_TYPE=Release -DLIBIPC_BUILD_TESTS=ON .
18
- - name : make
20
+
21
+ - name : Build
19
22
run : make -j
20
- - name : test
21
- run : export LD_LIBRARY_PATH=./lib:$LD_LIBRARY_PATH && ./bin/test-ipc
23
+
24
+ - name : Test
25
+ env :
26
+ LD_LIBRARY_PATH : ./lib
27
+ run : ./bin/test-ipc
Original file line number Diff line number Diff line change 19
19
run : cmake -DCMAKE_BUILD_TYPE=Debug -DLIBIPC_BUILD_TESTS=ON -DLIBIPC_CODECOV=ON .
20
20
21
21
- name : Build
22
- run : make -j
23
-
22
+ run : make -j
23
+
24
24
- name : Test
25
25
env :
26
26
LD_LIBRARY_PATH : ./lib
You can’t perform that action at this time.
0 commit comments