Skip to content

Commit

Permalink
.github/workflows: mount an fs-verity-enabled fs
Browse files Browse the repository at this point in the history
The tests need fs-verity support enabled, which we don't have.  Let's
get us some.

Closes #5
  • Loading branch information
allisonkarlitskaya committed Oct 15, 2024
1 parent 2d4135b commit e44cf4a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,21 @@ env:
jobs:
build:

runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- name: Create and mount an fs-verity-enabled filesystem
run: |
sudo truncate --size 4GiB /verity.fs
sudo mkfs.ext4 -O verity /verity.fs
sudo mkdir /verity
sudo mount -o loop /verity.fs /verity
sudo chmod 1777 /verity
mkdir /verity/worker
mkdir -p ~/.var
ln -sf /verity/worker ~/.var/tmp
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
Expand Down

0 comments on commit e44cf4a

Please sign in to comment.