init repo.
This commit is contained in:
29
3party/rpc_core/.github/workflows/build.yml
vendored
Normal file
29
3party/rpc_core/.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
name: build
|
||||
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- '**.md'
|
||||
|
||||
jobs:
|
||||
Linux:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: CMake
|
||||
run: |
|
||||
mkdir build && cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=Debug -DRPC_CORE_TEST_PLUGIN=ON ..
|
||||
|
||||
- name: Init thirdparty
|
||||
run: cd build && make rpc_core_test_init
|
||||
|
||||
- name: Build
|
||||
run: cd build && make -j2
|
||||
|
||||
- name: Run
|
||||
run: cd build && ./rpc_core_test
|
Reference in New Issue
Block a user