1dc7503838
This is a major downside of reworking and generating new CI flows, it's super easy to lose testing what you intend to. Also, we clearly need to figure out a flow where this is shared across repos, since I don't want to copy-paste this into e.g. ostree too. That's https://github.com/coreos/fedora-coreos-tracker/issues/263
16 lines
426 B
Bash
Executable File
16 lines
426 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
|
|
ls -al /usr/bin/rpm-ostree
|
|
rpm-ostree --version
|
|
cd $(mktemp -d)
|
|
cosa init https://github.com/coreos/fedora-coreos-config/
|
|
rsync -rlv /cosa/component-install/ overrides/rootfs/
|
|
cosa fetch
|
|
cosa build
|
|
cosa kola run 'ext.rpm-ostree.*'
|