From: Ankit Jain Date: Thu, 15 Dec 2022 01:50:52 +0000 (-0500) Subject: [wasm] dotnet-runtime-perf: Fix V8 version to 11.0.162 (#79682) X-Git-Tag: accepted/tizen/unified/riscv/20231226.055536~5006 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0fbdc7311a32303e3eb87077da0391a2dea798d7;p=platform%2Fupstream%2Fdotnet%2Fruntime.git [wasm] dotnet-runtime-perf: Fix V8 version to 11.0.162 (#79682) * [wasm] dotnet-runtime-perf: Fix V8 version to 11.0.162 Context: investigating https://github.com/dotnet/perf-autofiling-issues/issues/10711 The `baseline` was run with V8 `11.0.162`, whereas the the `compare` was run with `11.0.216`. Fixing the version to the baseline one to check if V8 might the cause here. --- diff --git a/eng/pipelines/coreclr/templates/run-performance-job.yml b/eng/pipelines/coreclr/templates/run-performance-job.yml index 40b19c0..b355f43 100644 --- a/eng/pipelines/coreclr/templates/run-performance-job.yml +++ b/eng/pipelines/coreclr/templates/run-performance-job.yml @@ -71,7 +71,9 @@ jobs: curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash - && sudo apt-get -y install nodejs && npm install --prefix $HELIX_WORKITEM_PAYLOAD jsvu -g && - $HELIX_WORKITEM_PAYLOAD/bin/jsvu --os=linux64 --engines=v8,javascriptcore + $HELIX_WORKITEM_PAYLOAD/bin/jsvu --os=linux64 v8@11.0.162 && + rm -f ~/.jsvu/v8 && + ln -s ~/.jsvu/v8-11.0.162 ~/.jsvu/v8 - ${{ if ne(parameters.runtimeType, 'wasm') }}: - HelixPreCommandsWasmOnLinux: echo - HelixPreCommandStemWindows: 'set ORIGPYPATH=%PYTHONPATH%;py -m pip install -U pip;py -3 -m venv %HELIX_WORKITEM_PAYLOAD%\.venv;call %HELIX_WORKITEM_PAYLOAD%\.venv\Scripts\activate.bat;set PYTHONPATH=;py -3 -m pip install -U pip;py -3 -m pip install azure.storage.blob==12.0.0;py -3 -m pip install azure.storage.queue==12.0.0;set "PERFLAB_UPLOAD_TOKEN=$(HelixPerfUploadTokenValue)"'