9 lines
246 B
Bash
Executable file
9 lines
246 B
Bash
Executable file
#!/bin/bash
|
|
set -xeuo pipefail
|
|
|
|
# Prow jobs don't support adding emptydir today
|
|
export COSA_SKIP_OVERLAY=1
|
|
cosa init --force https://github.com/coreos/fedora-coreos-config/
|
|
cosa fetch
|
|
cosa build
|
|
cosa kola run --qemu-firmware uefi 'ext.bootupd.*'
|