Skip to content
Snippets Groups Projects
Commit f501652f authored by Erick Hitter's avatar Erick Hitter
Browse files

Introduce first dependency, OpenSSL

parent 413c4eb1
No related branches found
No related tags found
1 merge request!1MVP build process
Pipeline #532 failed
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
#!/usr/bin/env bash #!/usr/bin/env bash
# Log when the build occurred.
date date
# Capture our starting point for easier navigation.
OG_DIR=$(pwd) OG_DIR=$(pwd)
export OG_DIR export OG_DIR
echo "$OG_DIR" echo "$OG_DIR"
ls -la "$OG_DIR" # Organization
ls -la "$OG_DIR/../." mkdir "$OG_DIR/src"
ls -la ~/
# Common directories.
OPENSSL_DIR="$OG_DIR/src/openssl"
export OPENSSL_DIR
# Dependency: OpenSSL
echo "Checking out OpenSSL"
git clone https://github.com/openssl/openssl.git -b "$OPENSSL_TAG" "$OPENSSL_DIR"
cd "$OPENSSL_DIR" || exit
./Configure
# Dependency: ngx_brotli
# Dependency: nginx-ct
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment