Skip to content
Snippets Groups Projects

MVP build process

Merged Erick Hitter requested to merge 1-add-build into master
Compare and
3 files
+ 45
0
Compare changes
  • Side-by-side
  • Inline
Files
3
scripts/build.sh 0 → 100644
+ 25
0
 
#!/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"
 
 
# 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