Sha256: f6c33f59fb8af9c2609d987b297ce5bf204286f5812aedb4ca3d1ab56fe292ae
Contents?: true
Size: 681 Bytes
Versions: 7
Compression:
Stored size: 681 Bytes
Contents
#!/bin/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
7 entries across 7 versions & 1 rubygems