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:
578
578
isAzDOTestingJob : true
579
579
buildArgs : --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
580
580
beforeBuild :
581
- - bash : " ./eng/scripts/install-nginx-mac .sh"
581
+ - bash : " ./eng/scripts/install-nginx.sh"
582
582
displayName : Installing Nginx
583
583
artifacts :
584
584
- name : MacOS_Test_Logs_Attempt_$(System.JobAttempt)
@@ -599,7 +599,7 @@ stages:
599
599
useHostedUbuntu : false
600
600
buildArgs : --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
601
601
beforeBuild :
602
- - bash : " ./eng/scripts/install-nginx-linux .sh"
602
+ - bash : " ./eng/scripts/install-nginx.sh"
603
603
displayName : Installing Nginx
604
604
- bash : " echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p"
605
605
displayName : Increase inotify limit
Original file line number Diff line number Diff line change @@ -639,7 +639,7 @@ extends:
639
639
isAzDOTestingJob : true
640
640
buildArgs : --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
641
641
beforeBuild :
642
- - bash : " ./eng/scripts/install-nginx-mac .sh"
642
+ - bash : " ./eng/scripts/install-nginx.sh"
643
643
displayName : Installing Nginx
644
644
artifacts :
645
645
- name : MacOS_Test_Logs_Attempt_$(System.JobAttempt)
@@ -660,7 +660,7 @@ extends:
660
660
useHostedUbuntu : false
661
661
buildArgs : --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
662
662
beforeBuild :
663
- - bash : " ./eng/scripts/install-nginx-linux .sh"
663
+ - bash : " ./eng/scripts/install-nginx.sh"
664
664
displayName : Installing Nginx
665
665
- bash : " echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p"
666
666
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 )"
6
6
reporoot=" $( dirname " $( dirname " $scriptroot " ) " ) "
7
7
nginxinstall=" $reporoot /.tools/nginx"
8
8
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 /
10
10
./configure --prefix=$nginxinstall --with-http_ssl_module --without-http_rewrite_module
11
11
make
12
12
make install
You can’t perform that action at this time.
0 commit comments