mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
264b2df902
* image: upgrade mkosi distro version to Fedora 38 * image: remove downgrade of GCP kernel * ci: upgrade expected measurements for Fedora 38 * deps: upgrade bazeldnf packages to Fedora 38 * deps: upgrade container images to Fedora 38
50 lines
1.2 KiB
Bash
Executable File
50 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -exuo pipefail
|
|
shopt -s inherit_errexit
|
|
|
|
bazel run //:bazeldnf -- fetch \
|
|
--repofile rpm/repo.yaml
|
|
bazel run //:bazeldnf -- rpmtree \
|
|
--workspace WORKSPACE.bazel \
|
|
--to-macro rpm/rpms.bzl%rpms \
|
|
--buildfile rpm/BUILD.bazel \
|
|
--repofile rpm/repo.yaml \
|
|
--name cryptsetup-devel \
|
|
cryptsetup-devel
|
|
bazel run //:bazeldnf -- rpmtree \
|
|
--workspace WORKSPACE.bazel \
|
|
--to-macro rpm/rpms.bzl%rpms \
|
|
--buildfile rpm/BUILD.bazel \
|
|
--repofile rpm/repo.yaml \
|
|
--name glibc \
|
|
glibc
|
|
bazel run //:bazeldnf -- rpmtree \
|
|
--workspace WORKSPACE.bazel \
|
|
--to-macro rpm/rpms.bzl%rpms \
|
|
--buildfile rpm/BUILD.bazel \
|
|
--repofile rpm/repo.yaml \
|
|
--name libvirt-devel \
|
|
libvirt-devel
|
|
bazel run //:bazeldnf -- rpmtree \
|
|
--workspace WORKSPACE.bazel \
|
|
--to-macro rpm/rpms.bzl%rpms \
|
|
--buildfile rpm/BUILD.bazel \
|
|
--repofile rpm/repo.yaml \
|
|
--name containerized-libvirt \
|
|
libvirt-daemon-config-network \
|
|
libvirt-daemon-kvm \
|
|
qemu-kvm \
|
|
swtpm \
|
|
swtpm-tools \
|
|
iptables-legacy \
|
|
dnsmasq \
|
|
libvirt-client
|
|
bazel run //:bazeldnf -- prune \
|
|
--workspace WORKSPACE.bazel \
|
|
--to-macro rpm/rpms.bzl%rpms \
|
|
--buildfile rpm/BUILD.bazel
|
|
bazel run //rpm:ldd-cryptsetup
|
|
bazel run //rpm:ldd-libvirt
|
|
bazel run //rpm:ldd-glibc
|