-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GHA ci with fsverity #389
Comments
I hit this same issue in composefs_experiments and solved it the same way (loopback-mounted verity-enabled ext4). I specifically wanted to avoid the tune2fs approach because it hardcodes the name of the root device which could maybe change. |
Sure, just replace |
That's something I could get behind :) |
...instead of using an extra loopback partition. Suggested by Colin in containers/composefs#389.
...instead of using an extra loopback partition. Suggested by Colin in containers/composefs#389.
...instead of using an extra loopback partition. Suggested by Colin in containers/composefs#389.
Works great. Just did this in containers/composefs-rs#19 |
Previously I added a hacky loopback mounted ext4, but in some quick testing I noticed that testing via the default GHA runner just needs
tune2fs -O verity /dev/sda1
for reference.We should be able to rework some of our tests to use this.
The text was updated successfully, but these errors were encountered: