mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
20 lines
504 B
Bash
Executable File
20 lines
504 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
bazel run //:bazeldnf -- fetch \
|
|
--repofile rpm/repo.yaml
|
|
bazel run //:bazeldnf -- rpmtree \
|
|
--workspace rpm/rpms.bzl \
|
|
--buildfile rpm/BUILD.bazel \
|
|
--repofile rpm/repo.yaml \
|
|
--name cryptsetup-devel \
|
|
cryptsetup-devel
|
|
bazel run //:bazeldnf -- rpmtree \
|
|
--workspace rpm/rpms.bzl \
|
|
--buildfile rpm/BUILD.bazel \
|
|
--repofile rpm/repo.yaml \
|
|
--name libvirt-devel \
|
|
libvirt-devel
|
|
bazel run //rpm:ldd-cryptsetup
|
|
bazel run //rpm:ldd-libvirt
|
|
bazel run //rpm:ldd-glibc
|