Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/run-nightly-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
set -x
uname -a

sudo dnf remove -y nvme-cli libnvme

sudo dnf install -y gcc clang make util-linux llvm gawk fio udev \
kmod coreutils g++ gzip e2fsprogs xfsprogs f2fs-tools btrfs-progs \
device-mapper-multipath blktrace kernel-headers liburing \
Expand Down Expand Up @@ -58,13 +60,17 @@ jobs:

cd blktests
make
mkdir -p results
nvme --version | tee -a results/nvme-cli.version
sudo nvme --version | tee -a results/nvme-cli.version

# Run blktests nvme and md group
cat > config << EF
TEST_DEVS=(${BDEV0})
NVMET_TRTYPES="loop rdma tcp"
EXCLUDE=(nvme/010 nvme/012 nvme/034 nvme/035)
EF
sudo ./check nvme md
sudo ./check nvme md/001
- name: Run nvme-cli tests in VM
uses: ./.github/actions/kubevirt-action
with:
Expand Down