Skip to content

Commit

Permalink
Unified CI step names
Browse files Browse the repository at this point in the history
  • Loading branch information
mutouyun committed Jun 2, 2024
1 parent 48fa2d9 commit 01da133
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,16 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: cmake
- name: Checkout Code
uses: actions/checkout@v2

- name: Configure
run: cmake -DCMAKE_BUILD_TYPE=Release -DLIBIPC_BUILD_TESTS=ON .
- name: make

- name: Build
run: make -j
- name: test
run: export LD_LIBRARY_PATH=./lib:$LD_LIBRARY_PATH && ./bin/test-ipc

- name: Test
env:
LD_LIBRARY_PATH: ./lib
run: ./bin/test-ipc
4 changes: 2 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
run: cmake -DCMAKE_BUILD_TYPE=Debug -DLIBIPC_BUILD_TESTS=ON -DLIBIPC_CODECOV=ON .

- name: Build
run: make -j
run: make -j

- name: Test
env:
LD_LIBRARY_PATH: ./lib
Expand Down

0 comments on commit 01da133

Please sign in to comment.