File tree Expand file tree Collapse file tree 4 files changed +5
-10
lines changed Expand file tree Collapse file tree 4 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -578,7 +578,7 @@ stages:
578578 isAzDOTestingJob : true
579579 buildArgs : --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
580580 beforeBuild :
581- - bash : " ./eng/scripts/install-nginx-mac .sh"
581+ - bash : " ./eng/scripts/install-nginx.sh"
582582 displayName : Installing Nginx
583583 artifacts :
584584 - name : MacOS_Test_Logs_Attempt_$(System.JobAttempt)
@@ -599,7 +599,7 @@ stages:
599599 useHostedUbuntu : false
600600 buildArgs : --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
601601 beforeBuild :
602- - bash : " ./eng/scripts/install-nginx-linux .sh"
602+ - bash : " ./eng/scripts/install-nginx.sh"
603603 displayName : Installing Nginx
604604 - bash : " echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p"
605605 displayName : Increase inotify limit
Original file line number Diff line number Diff line change @@ -639,7 +639,7 @@ extends:
639639 isAzDOTestingJob : true
640640 buildArgs : --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
641641 beforeBuild :
642- - bash : " ./eng/scripts/install-nginx-mac .sh"
642+ - bash : " ./eng/scripts/install-nginx.sh"
643643 displayName : Installing Nginx
644644 artifacts :
645645 - name : MacOS_Test_Logs_Attempt_$(System.JobAttempt)
@@ -660,7 +660,7 @@ extends:
660660 useHostedUbuntu : false
661661 buildArgs : --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
662662 beforeBuild :
663- - bash : " ./eng/scripts/install-nginx-linux .sh"
663+ - bash : " ./eng/scripts/install-nginx.sh"
664664 displayName : Installing Nginx
665665 - bash : " echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p"
666666 displayName : Increase inotify limit
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ scriptroot="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
66reporoot=" $( dirname " $( dirname " $scriptroot " ) " ) "
77nginxinstall=" $reporoot /.tools/nginx"
88
9- curl -sSL http://nginx.org/download/nginx-1.26.3 .tar.gz --retry 5 | tar zxfv - -C /tmp && cd /tmp/nginx-1.26.3 /
9+ curl -sSL http://nginx.org/download/nginx-1.29.1 .tar.gz --retry 5 | tar zxfv - -C /tmp && cd /tmp/nginx-1.29.1 /
1010./configure --prefix=$nginxinstall --with-http_ssl_module --without-http_rewrite_module
1111make
1212make install
You can’t perform that action at this time.
0 commit comments