Skip to content

Commit

Permalink
Test for /etc/fstab mount
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaublitz committed May 14, 2024
1 parent e97781c commit 37298c2
Showing 1 changed file with 76 additions and 0 deletions.
76 changes: 76 additions & 0 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,79 @@ jobs:
run: udevadm control --reload
- name: Test ${{ matrix.task }} on ${{ matrix.toolchain }} toolchain
run: ${{ matrix.task }}

# /etc/fstab tests
fstab-checks:
strategy:
matrix:
include:
- toolchain: 1.77.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
task: |
sudo losetup -f img.bin
LOOPBACK=$(losetup -j img.bin | awk '{ print $1 }' | sed -e "s/://")
sudo stratis pool create testpool $LOOPBACK
- toolchain: 1.77.0 # CURRENT DEVELOPMENT RUST TOOLCHAIN
components: cargo
task: |
sudo losetup -f img.bin
LOOPBACK=$(losetup -j img.bin | awk '{ print $1 }' | sed -e "s/://")
echo "thisisatest\nthisisatest\n" | sudo stratis key set --capture-key testkey
sudo stratis pool create testpool --key-desc=testkey $LOOPBACK
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Install dependencies for Ubuntu
run: sudo apt-get update
- name: Install dependencies for Ubuntu
run: >
sudo DEBIAN_FRONTEND=noninteractive
apt-get install -y
asciidoc
clang
curl
libblkid-dev
libcryptsetup-dev
libdbus-1-dev
libdevmapper-dev
libglib2.0-dev
libsystemd-dev
libudev-dev
make
python3-pip
sudo
systemd
thin-provisioning-tools
udev
xfsprogs
- name: Install stratis-cli
run: |
sudo pip install --upgrade pip
git clone https://github.com/stratis-storage/stratis-cli
sudo pip install ./stratis-cli
- uses: dtolnay/rust-toolchain@master
with:
components: ${{ matrix.components }}
toolchain: ${{ matrix.toolchain }}
- name: Build stratisd
run: PROFILEDIR=debug make -f Makefile build-all
- name: Install stratisd
run: sudo PROFILEDIR=debug make -f Makefile install
- name: Reload udev
run: sudo udevadm control --reload
- name: Start stratisd
run: sudo systemctl start stratisd
- name: Create loopback device backing file
run: truncate -s 5g img.bin
- name: Create Stratis pool
run: ${{ matrix.task }}
- name: Create Stratis filesystem
run: sudo stratis fs create testpool testfs
- name: Stop Stratis pool
run: sudo stratis pool stop --name testpool
- name: Edit /etc/fstab
run: |
POOL_UUID=$(stratis pool list --stopped | tail -1 | awk '{ print $2 }')
sudo systemctl start stratis-fstab-setup@$POOL_UUID.service
- name: Mount filesystem
run: sudo mount /dev/stratis/testpool/testfs

0 comments on commit 37298c2

Please sign in to comment.