%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 188.40.95.74 / Your IP : 216.73.216.142 Web Server : Apache System : Linux cp01.striminghost.net 3.10.0-1160.119.1.el7.tuxcare.els13.x86_64 #1 SMP Fri Nov 22 06:29:45 UTC 2024 x86_64 User : vlasotin ( 1054) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /opt/cpanel/ea-ruby27/src/passenger-release-6.0.23/dev/ci/tests/binaries/ |
Upload File : |
#!/usr/bin/env bash # This script is from the "Passenger binaries test" Jenkins job. It set ups # a runtime directory for the "build-macos" script. # # Required environment variables: # # WORKSPACE # # Optional environment variables: # # PASSENGER_ROOT (defaults to $WORKSPACE) # OUTPUT_DIR (defaults to $WORKSPACE/output) # CACHE_DIR (defaults to $WORKSPACE/cache) # RUNTIME_DIR (defaults to $CACHE_DIR/runtime) set -e SELFDIR=$(dirname "$0") cd "$SELFDIR/../../../../packaging/binaries" # shellcheck source=../../../../packaging/binaries/shared/lib/library.sh source "./shared/lib/library.sh" require_envvar WORKSPACE "$WORKSPACE" PASSENGER_ROOT="${PASSENGER_ROOT:-$WORKSPACE}" OUTPUT_DIR="${OUTPUT_DIR:-$WORKSPACE/output}" CACHE_DIR="${CACHE_DIR:-$WORKSPACE/cache}" RUNTIME_DIR="${RUNTIME_DIR:-$CACHE_DIR/runtime}" RUNTIME_VERSION=$(cat shared/definitions/macos_runtime_version) run mkdir -p "$OUTPUT_DIR" run mkdir -p "$CACHE_DIR" run mkdir -p "$RUNTIME_DIR/$RUNTIME_VERSION" run ./macos/setup-runtime \ -c "$CACHE_DIR" \ -o "$RUNTIME_DIR/$RUNTIME_VERSION" \ -j 1