mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-06-26 15:10:43 -04:00
11 lines
416 B
Bash
Executable file
11 lines
416 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
docker build -t screenrecodings docker
|
|
|
|
# Generate cast to verify CLI
|
|
docker run -it -v "$(pwd)"/recordings:/recordings screenrecodings verify-cli.expect
|
|
cp recordings/verify-cli.cast ../static/assets/verify-cli.cast
|
|
|
|
# Generate cast to check SBOM
|
|
docker run -it -v "$(pwd)"/recordings:/recordings screenrecodings check-sbom.expect
|
|
cp recordings/check-sbom.cast ../static/assets/check-sbom.cast
|