Skip to content

Commit 8b3eb71

Browse files
committed
ci: Remove old condition
This condition was when we had Ubuntu 18.04 and added 20.04. When we dropped 18.04, and moved to 20.04+22.04, this condition should've been enabled everywhere.
1 parent bcdba1c commit 8b3eb71

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -286,11 +286,7 @@ jobs:
286286
# Set flag in a delayed manner to avoid issues with installing other
287287
# packages
288288
if [[ "${{ runner.os }}" != 'macOS' ]]; then
289-
if [[ "$(lsb_release -r -s)" == "20.04" ]]; then
290-
export CPPFLAGS='--coverage -fprofile-abs-path'
291-
else
292-
export CPPFLAGS='--coverage'
293-
fi
289+
export CPPFLAGS='--coverage -fprofile-abs-path'
294290
fi
295291
296292
python -m pip install --no-deps --no-build-isolation --verbose \

0 commit comments

Comments
 (0)