Skip to content

Commit e6f1fd8

Browse files
authored
[PERF] Remove lttng-modules-dkms package at beginning of microbenchmark runs (#101142)
Add removal of lttng-modules-dkms package as it is currently causing microbenchmarking runs to fail.
1 parent d30369a commit e6f1fd8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

eng/pipelines/coreclr/templates/run-performance-job.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ jobs:
9393
echo "** Installing prerequistes **";
9494
echo "** Waiting for dpkg to unlock (up to 2 minutes) **" &&
9595
timeout 2m bash -c 'while sudo fuser /var/lib/dpkg/lock-frontend >/dev/null 2>&1; do if [ -z "$printed" ]; then echo "Waiting for dpkg lock to be released... Lock is held by: $(ps -o cmd= -p $(sudo fuser /var/lib/dpkg/lock-frontend))"; printed=1; fi; echo "Waiting 5 seconds to check again"; sleep 5; done;' &&
96+
sudo apt-get remove -y lttng-modules-dkms &&
9697
sudo apt-get -y install python3-pip &&
9798
python3 -m pip install --user -U pip &&
9899
sudo apt-get -y install python3-venv &&
@@ -194,4 +195,4 @@ jobs:
194195
WorkItemDirectory: '$(WorkItemDirectory)' # WorkItemDirectory can not be empty, so we send it some docs to keep it happy
195196
CorrelationPayloadDirectory: '$(PayloadDirectory)' # it gets checked out to a folder with shorter path than WorkItemDirectory so we can avoid file name too long exceptions
196197
ProjectFile: ${{ parameters.projectFile }}
197-
osGroup: ${{ parameters.osGroup }}
198+
osGroup: ${{ parameters.osGroup }}

0 commit comments

Comments
 (0)