updated readme and ci

This commit is contained in:
Ruixiang Du
2020-10-23 14:36:40 +08:00
parent 2c188ba8b3
commit 0a6b4facff
3 changed files with 12 additions and 7 deletions

View File

@@ -13,10 +13,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: sudo apt-get install -y build-essential cmake libasio-dev
# - name: Install dependencies
# run: sudo apt-get install -y build-essential cmake libasio-dev
- name: Update git submodule
run: git submodule update --init --recursive
- name: Build and pack
run: pwd && ls && mkdir build && cd build && cmake -DBUILD_TESTS=ON .. && cmake --build . && cpack
run: mkdir build && cd build && cmake -DBUILD_TESTS=ON .. && cmake --build . && cpack
- name: Run tests
run: ./build/bin/gtest_all