nvme: replace ZNS identify data in place during namespace update (#41) #162
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
# SPDX-License-Identifier: BSD-3-Clause | |
# All rights reserved. | |
# | |
name: ci | |
on: | |
pull_request: | |
paths-ignore: | |
- 'doc/**' | |
- '*.md' | |
branches: | |
# on pull requests to master and release branches | |
- master | |
- 'v*' | |
push: | |
paths-igonre: | |
- 'doc/**' | |
- '*.md' | |
branches: | |
# on pull requests to master and release branches | |
- master | |
- 'v*' | |
jobs: | |
tests: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 120 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y astyle libcunit1-dev libaio-dev libssl-dev \ | |
libnuma-dev uuid-dev lcov nasm meson ninja-build python3-pyelftools | |
git submodule update --init | |
export MAKEFLAGS="-j$(nproc)" | |
- name: Lint | |
run: ./scripts/check_format.sh | |
- name: Build | |
run: | | |
./configure --enable-werror --enable-debug --enable-coverage --enable-asan --with-crypto | |
make | |
- name: Running Tests | |
run: ./test/unit/unittest.sh |