Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/eng
diff options
context:
space:
mode:
authorParker Bibus <parkerbibus@microsoft.com>2022-03-09 02:57:38 +0300
committerGitHub <noreply@github.com>2022-03-09 02:57:38 +0300
commit220e67755ae6323a01011b83070dff6f84b02519 (patch)
treeafbf1e15cd677784c36b8cca1eb42e4265723a6e /eng
parent78e071de86f8d18e2401730de9220fde7de0d838 (diff)
Partial revert of Maui Install Fix #65904 (#66221)
* Prep for test build run. * Replace the rollback file in the install call as the emscription line has been added to the downloaded json. * Revert "Prep for test build run." This reverts commit 2d7cca803e1cb6b79f83583b4dfa9846be3cf95e. * Fix comment detailing Install Maui Workload setup.
Diffstat (limited to 'eng')
-rw-r--r--eng/pipelines/coreclr/templates/build-perf-maui-apps.yml9
1 files changed, 2 insertions, 7 deletions
diff --git a/eng/pipelines/coreclr/templates/build-perf-maui-apps.yml b/eng/pipelines/coreclr/templates/build-perf-maui-apps.yml
index 3b526c0acc8..998c01ea513 100644
--- a/eng/pipelines/coreclr/templates/build-perf-maui-apps.yml
+++ b/eng/pipelines/coreclr/templates/build-perf-maui-apps.yml
@@ -110,19 +110,14 @@ steps:
# overwriteExistingFiles: true
# cleanDestinationFolder: false
- # Get the current maui nuget config so all things can be found, and add the Emscription version to the rollback file
- # Add emscription line using sed based on https://stackoverflow.com/questions/6739258/how-do-i-add-a-line-of-text-to-the-middle-of-a-file-using-bash.
- # This is a workaround as the current
+ # Get the current maui nuget config so all things can be found and darc based package sources are kept up to date.
- script: |
curl -o NuGet.config 'https://raw.githubusercontent.com/dotnet/maui/main/NuGet.config'
- curl -o rollback.json 'https://maui.blob.core.windows.net/metadata/rollbacks/main.json'
- sed -n 'H;${x;s/^\n//;s/ "microsoft.net.sdk.android".*$/ "microsoft.net.workload.emscripten": "6.0.2",\n&/;p;}' rollback.json > updated_rollback.json
- cat updated_rollback.json
curl -o dotnet-install.sh 'https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh'
chmod -R a+rx .
./dotnet-install.sh --channel 6.0.2xx --quality daily --install-dir .
./dotnet --info
- ./dotnet workload install maui --from-rollback-file ./updated_rollback.json --configfile NuGet.config
+ ./dotnet workload install maui --from-rollback-file https://aka.ms/dotnet/maui/main.json --configfile NuGet.config
displayName: Install MAUI workload
workingDirectory: $(Build.SourcesDirectory)