mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
* add check for app update; fix ETUI error handling * validate user args * add goreleaser support * replace cgo dependencies (go-rpm) with go equivalents * add acceptance tests against build snapshot * add brew tap + acceptance test pipeline * add mac acceptance tests * fix compare makefile * fix mac acceptance tests * add release pipeline with wait checks * add token to release step * rm dir presenters int test * enforce dpkg to be non interactive Co-authored-by: Alfredo Deza <adeza@anchore.com> * pin brew formulae * pin skopeo to formulae url * only run acceptance tests Co-authored-by: Alfredo Deza <adeza@anchore.com>
24 lines
665 B
Bash
Executable File
24 lines
665 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -eux
|
|
|
|
docker create --name generate-rpmdb-fixture centos:latest sh -c 'tail -f /dev/null'
|
|
|
|
function cleanup {
|
|
docker kill generate-rpmdb-fixture
|
|
docker rm generate-rpmdb-fixture
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
docker start generate-rpmdb-fixture
|
|
docker exec -i --tty=false generate-rpmdb-fixture bash <<-EOF
|
|
mkdir -p /scratch
|
|
cd /scratch
|
|
rpm --initdb --dbpath /scratch
|
|
curl -sSLO https://github.com/wagoodman/dive/releases/download/v0.9.2/dive_0.9.2_linux_amd64.rpm
|
|
rpm --dbpath /scratch -ivh dive_0.9.2_linux_amd64.rpm
|
|
rm dive_0.9.2_linux_amd64.rpm
|
|
rpm --dbpath /scratch -qa
|
|
EOF
|
|
|
|
docker cp generate-rpmdb-fixture:/scratch/Packages .
|