Sha256: 777c750fe96f3fd300ee1fc861969cb76d5908a79fbebcb9d678ac1a85ae3b19
Contents?: true
Size: 689 Bytes
Versions: 10
Compression:
Stored size: 689 Bytes
Contents
#!/usr/bin/env bash set -e TEST_DYNAMIC_WITH_NGINX_VERSION=1.12.1 NGINX_ADDON_DIR=$(./bin/passenger-config --nginx-addon-dir) echo "+ Nginx addon dir: $NGINX_ADDON_DIR" echo header2 "Compliing Passenger" run drake "-j$COMPILE_CONCURRENCY" nginx:as_dynamic_module echo header2 "Downloading and compiling Nginx" cd buildout run curl -sSLO https://www.nginx.org/download/nginx-$TEST_DYNAMIC_WITH_NGINX_VERSION.tar.gz run tar -xzf nginx-$TEST_DYNAMIC_WITH_NGINX_VERSION.tar.gz echo "+ Entering nginx-$TEST_DYNAMIC_WITH_NGINX_VERSION" cd "nginx-$TEST_DYNAMIC_WITH_NGINX_VERSION" run ./configure --with-cc='ccache cc' --add-dynamic-module="$NGINX_ADDON_DIR" run make "-j$COMPILE_CONCURRENCY"
Version data entries
10 entries across 10 versions & 1 rubygems