Skip to content

Commit 01da133

Browse files
committed
Unified CI step names
1 parent 48fa2d9 commit 01da133

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

.github/workflows/c-cpp.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,16 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
16-
- name: cmake
15+
- name: Checkout Code
16+
uses: actions/checkout@v2
17+
18+
- name: Configure
1719
run: cmake -DCMAKE_BUILD_TYPE=Release -DLIBIPC_BUILD_TESTS=ON .
18-
- name: make
20+
21+
- name: Build
1922
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

.github/workflows/codecov.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
run: cmake -DCMAKE_BUILD_TYPE=Debug -DLIBIPC_BUILD_TESTS=ON -DLIBIPC_CODECOV=ON .
2020

2121
- name: Build
22-
run: make -j
23-
22+
run: make -j
23+
2424
- name: Test
2525
env:
2626
LD_LIBRARY_PATH: ./lib

0 commit comments

Comments
 (0)