Skip to content

Commit

Permalink
Add testing on bcachefs
Browse files Browse the repository at this point in the history
  • Loading branch information
tarka committed Jun 24, 2024
1 parent 4449014 commit 595a3f2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
# f2fs and exfat modules are in linux-modules-extra-azure
# and cannot be installed reliably:
# https://github.com/actions/runner-images/issues/7587
run: tests/scripts/make-filesystems.sh ext2 ext4 xfs btrfs ntfs fat zfs
run: tests/scripts/make-filesystems.sh ext2 ext4 xfs btrfs bcachefs ntfs fat zfs

- name: Run tests on ext2
run: /fs/ext2/src/tests/scripts/test-linux.sh
Expand All @@ -36,6 +36,10 @@ jobs:
run: /fs/btrfs/src/tests/scripts/test-linux.sh
if: always()

- name: Run tests on bcachefs
run: /fs/bcachefs/src/tests/scripts/test-linux.sh
if: always()

- name: Run tests on ntfs
run: /fs/ntfs/src/tests/scripts/test-linux.sh
if: always()
Expand Down
2 changes: 1 addition & 1 deletion tests/scripts/make-filesystems.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ uname -a
sudo apt update

sudo apt install -y zfsutils-linux xfsprogs \
btrfs-progs ntfs-3g dosfstools
btrfs-progs ntfs-3g dosfstools bcachefs-tools

for fs in "$@"; do
root=/fs/$fs
Expand Down

0 comments on commit 595a3f2

Please sign in to comment.