mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
516c1340b3
And move everything that was in it directly in `ci/`. There's a bunch more cleanups here that we need to do (and more changes to upstream from the rpm-ostree copies of this).
17 lines
377 B
Bash
Executable File
17 lines
377 B
Bash
Executable File
#!/usr/bin/bash
|
|
# Prepare the current environment
|
|
|
|
set -xeuo pipefail
|
|
|
|
dn=$(dirname $0)
|
|
. ${dn}/libbuild.sh
|
|
pkg_upgrade
|
|
pkg_install_buildroot
|
|
pkg_install sudo which attr fuse strace \
|
|
libubsan libasan libtsan PyYAML elfutils
|
|
pkg_install_if_os fedora gjs gnome-desktop-testing parallel coccinelle clang
|
|
|
|
if test -n "${CI_PKGS:-}"; then
|
|
pkg_install ${CI_PKGS}
|
|
fi
|