Unified CI step names

This commit is contained in:
mutouyun 2024-06-02 18:22:27 +08:00
parent 48fa2d9d96
commit 01da1334e1
2 changed files with 13 additions and 7 deletions

View File

@ -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

View File

@ -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