Skip to content
Snippets Groups Projects

MVP build process

Merged Erick Hitter requested to merge 1-add-build into master
Compare and Show latest version
1 file
+ 17
4
Compare changes
  • Side-by-side
  • Inline
+ 17
4
#!/usr/bin/env bash
# Log when the build occurred.
date
# Capture our starting point for easier navigation.
OG_DIR=$(pwd)
export OG_DIR
echo "$OG_DIR"
ls -la "$OG_DIR"
ls -la "$OG_DIR/../."
ls -la ~/
# Organization
mkdir "$OG_DIR/src"
# Common directories.
OPENSSL_DIR="$OG_DIR/src/openssl"
export OPENSSL_DIR
# Dependency: OpenSSL
echo "Checking out OpenSSL"
git clone -q https://github.com/openssl/openssl.git -b "$OPENSSL_TAG" "$OPENSSL_DIR"
cd "$OPENSSL_DIR" || exit
./config
# Dependency: ngx_brotli
# Dependency: nginx-ct
Loading