mirror of
https://github.com/ostreedev/ostree.git
synced 2025-01-03 05:18:24 +03:00
833251cb0d
Until the XFS fsverity stuff lands.
18 lines
564 B
Bash
Executable File
18 lines
564 B
Bash
Executable File
#!/bin/bash
|
|
set -xeuo pipefail
|
|
|
|
# Prow jobs don't support adding emptydir today
|
|
export COSA_SKIP_OVERLAY=1
|
|
# And suppress depcheck since we didn't install via RPM
|
|
export COSA_SUPPRESS_DEPCHECK=1
|
|
ostree --version
|
|
cd $(mktemp -d)
|
|
cosa init https://github.com/coreos/fedora-coreos-config/
|
|
rsync -rlv /cosa/component-install/ overrides/rootfs/
|
|
cosa fetch
|
|
# For composefs
|
|
echo 'rootfs: "ext4verity"' >> src/config/image.yaml
|
|
cosa build
|
|
# For now, Prow just runs the composefs tests, since Jenkins covers the others
|
|
#cosa kola run 'ext.ostree.destructive-rs.composefs*'
|