Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .azure/pipelines/ci-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ stages:
isAzDOTestingJob: true
buildArgs: --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
beforeBuild:
- bash: "./eng/scripts/install-nginx-mac.sh"
- bash: "./eng/scripts/install-nginx.sh"
displayName: Installing Nginx
artifacts:
- name: MacOS_Test_Logs_Attempt_$(System.JobAttempt)
Expand All @@ -539,7 +539,7 @@ stages:
useHostedUbuntu: false
buildArgs: --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
beforeBuild:
- bash: "./eng/scripts/install-nginx-linux.sh"
- bash: "./eng/scripts/install-nginx.sh"
displayName: Installing Nginx
- bash: "echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p"
displayName: Increase inotify limit
Expand Down
4 changes: 2 additions & 2 deletions .azure/pipelines/ci-unofficial.yml
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ extends:
beforeBuild:
- script: git submodule update --init
displayName: Update submodules
- bash: "./eng/scripts/install-nginx-mac.sh"
- bash: "./eng/scripts/install-nginx.sh"
displayName: Installing Nginx
artifacts:
- name: MacOS_Test_Logs_Attempt_$(System.JobAttempt)
Expand All @@ -579,7 +579,7 @@ extends:
beforeBuild:
- script: git submodule update --init
displayName: Update submodules
- bash: "./eng/scripts/install-nginx-linux.sh"
- bash: "./eng/scripts/install-nginx.sh"
displayName: Installing Nginx
- bash: "echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p"
displayName: Increase inotify limit
Expand Down
4 changes: 2 additions & 2 deletions .azure/pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ extends:
isAzDOTestingJob: true
buildArgs: --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
beforeBuild:
- bash: "./eng/scripts/install-nginx-mac.sh"
- bash: "./eng/scripts/install-nginx.sh"
displayName: Installing Nginx
artifacts:
- name: MacOS_Test_Logs_Attempt_$(System.JobAttempt)
Expand All @@ -569,7 +569,7 @@ extends:
useHostedUbuntu: false
buildArgs: --all --test --binaryLog /p:RunTemplateTests=false /p:SkipHelixReadyTests=true $(_InternalRuntimeDownloadArgs)
beforeBuild:
- bash: "./eng/scripts/install-nginx-linux.sh"
- bash: "./eng/scripts/install-nginx.sh"
displayName: Installing Nginx
- bash: "echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p"
displayName: Increase inotify limit
Expand Down
184 changes: 92 additions & 92 deletions eng/Version.Details.props

Large diffs are not rendered by default.

370 changes: 185 additions & 185 deletions eng/Version.Details.xml

Large diffs are not rendered by default.

5 changes: 0 additions & 5 deletions eng/scripts/install-nginx-mac.sh

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ scriptroot="$( cd -P "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
reporoot="$(dirname "$(dirname "$scriptroot")")"
nginxinstall="$reporoot/.tools/nginx"

curl -sSL http://nginx.org/download/nginx-1.26.3.tar.gz --retry 5 | tar zxfv - -C /tmp && cd /tmp/nginx-1.26.3/
curl -sSL http://nginx.org/download/nginx-1.29.1.tar.gz --retry 5 | tar zxfv - -C /tmp && cd /tmp/nginx-1.29.1/
./configure --prefix=$nginxinstall --with-http_ssl_module --without-http_rewrite_module
make
make install
Expand Down
6 changes: 3 additions & 3 deletions global.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
"jdk": "latest"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25479.115",
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25479.115",
"Microsoft.DotNet.SharedFramework.Sdk": "10.0.0-beta.25479.115",
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25507.103",
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25507.103",
"Microsoft.DotNet.SharedFramework.Sdk": "10.0.0-beta.25507.103",
"Microsoft.Build.NoTargets": "3.7.0",
"Microsoft.Build.Traversal": "3.4.0",
"Microsoft.WixToolset.Sdk": "5.0.2-dotnet.2737382"
Expand Down
Loading