mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
49 lines
1.8 KiB
Bash
Executable File
49 lines
1.8 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# This script prepares the environment for expect scripts to be recorded in,
|
|
# executes all scripts, and copies the .cast files to our doc's asset folder.
|
|
#
|
|
# Note: A cluster is created in GCP. Therefore you are expected to be logged in
|
|
# via `gcloud` CLI. You credentials at $HOME/.config/gcloud are mounted into the
|
|
# screenrecordings container. A full script run takes ~20min.
|
|
#
|
|
|
|
# Create IAM configuration
|
|
pushd constellation || exit
|
|
constellation config generate gcp
|
|
constellation iam create gcp --update-config --projectID constellation-331613 --serviceAccountID constellation-demo --zone europe-west3-b --yes
|
|
popd || exit
|
|
|
|
docker build -t screenrecodings docker
|
|
|
|
# Create cast
|
|
docker run -it \
|
|
-v "${HOME}"/.config/gcloud:/root/.config/gcloud \
|
|
-v "$(pwd)"/recordings:/recordings \
|
|
-v "$(pwd)"/constellation:/constellation \
|
|
screenrecodings /scripts/github-readme.expect
|
|
|
|
# Fix meta data: width and height are always zero in Docker produced cast files.
|
|
# Header is the first lint of cast file in JSON format, we read, fix and write it.
|
|
head -n 1 recordings/github-readme.cast | yq -M '.width = 95 | .height = 17 | . + {"idle_time_limit": 0.5}' - > new_header.cast
|
|
# Does not work on MacOS due to a different sed
|
|
sed -i 's/idle_time_limit:/"idle_time_limit":/' new_header.cast
|
|
# Then append everything, expect first line from original cast file.
|
|
tail -n+2 recordings/github-readme.cast >> new_header.cast
|
|
|
|
# Then render cast into svg using:
|
|
# https://github.com/nbedos/termtosvg
|
|
termtosvg render new_header.cast readme.svg -t window-frame.svg -D 1ms
|
|
|
|
# Copy and cleanup
|
|
cp readme.svg ../static/img/shell-windowframe.svg
|
|
rm readme.svg new_header.cast
|
|
|
|
# cleanup Constellation
|
|
sudo chown -R "$USER":"$USER" ./constellation
|
|
pushd constellation || exit
|
|
constellation terminate -y
|
|
constellation iam destroy -y
|
|
rm -rf ./*
|
|
popd || exit
|