Skip to content
Snippets Groups Projects

MVP build process

Merged Erick Hitter requested to merge 1-add-build into master
1 file
+ 17
4
Compare changes
  • Side-by-side
  • Inline
+ 17
4
#!/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
Loading