Skip to content

Commit

Permalink
ci: install gcovr using pipx
Browse files Browse the repository at this point in the history
PEP 668 related fix, also reverts commit 4d3c2b2
  • Loading branch information
pi-alexander-popel committed Oct 21, 2024
1 parent df8ee7c commit 661dd4d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions ci/options.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,26 +62,26 @@
"RunPerformance": true
},
{
"Image": "ubuntu-22.04",
"Image": "ubuntu-latest",
"Name": "Ubuntu_x64_Debug",
"Configuration": "Debug",
"Arch": "x64"
},
{
"Image": "ubuntu-22.04",
"Image": "ubuntu-latest",
"Name": "Ubuntu_x86_Release",
"Configuration": "Release",
"Arch": "x86",
"RunPerformance": true
},
{
"Image": "ubuntu-22.04",
"Image": "ubuntu-latest",
"Name": "Ubuntu_x86_Debug",
"Configuration": "Debug",
"Arch": "x86"
},
{
"Image": "ubuntu-22.04",
"Image": "ubuntu-latest",
"Name": "Ubuntu_x64_Release",
"Configuration": "Release",
"Arch": "x64",
Expand Down
2 changes: 1 addition & 1 deletion ci/setup-environment.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ if ($BuildMethod -eq "msbuild") {
}

if ($IsLinux -or $IsMacOS) {
python -m pip install --user 'gcovr~=7.2' || $(throw "gcovr install failed")
pipx install 'gcovr~=7.2' || $(throw "gcovr install failed")
}

0 comments on commit 661dd4d

Please sign in to comment.