Add list and del commands #181
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: C/C++ CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
permissions: | |
checks: write | |
pull-requests: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: apt-get update | |
run: sudo apt-get update | |
- name: Install packages | |
run: sudo apt-get install libcmocka-dev liburing-dev cmake ninja-build | |
- name: configure | |
run: | | |
mkdir build | |
echo 'add_compile_options(-fsanitize=address)' > build/local.cmake | |
echo 'add_link_options(-fsanitize=address)' >> build/local.cmake | |
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug | |
- name: make | |
run: cmake --build build | |
- name: test | |
run: cmake --build build --target test | |
- name: test-log | |
if: failure() | |
run: cat build/Testing/Temporary/LastTest.log | |
- name: Publish Unit Test Results | |
uses: EnricoMi/[email protected] | |
if: always() | |
with: | |
files: build/*.xml |