Skip to content

Commit

Permalink
.github/worksflows: install composefs before testing
Browse files Browse the repository at this point in the history
Closes #5
  • Loading branch information
allisonkarlitskaya committed Oct 14, 2024
1 parent 28ee458 commit 11a30e9
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,33 @@ env:
jobs:
build:

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

steps:
- name: install composefs
run: |
(
sudo apt-get install fsverity
touch ~/xyz
fsverity enable ~/xyz || true
fsverity measure ~/xyz || true
sudo touch /abc
sudo fsverity enable /abc || true
sudo fsverity measure /abc || true
cat /proc/mounts
df ~
df
sudo apt-get install meson
git clone https://github.com/containers/composefs
cd composefs
meson setup _build
ninja -C _build
sudo ninja -C _build install
sudo ldconfig
)
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
Expand Down

0 comments on commit 11a30e9

Please sign in to comment.