Skip to content

Commit eeafbd8

Browse files
mergify[bot]jd
andauthored
ci(profiling): disable Python 3.8 and 3.9 on Windows (#4516) (#4521)
The installation of Python on Windows require a reboot, which is impossible to do in the CI: Packages requiring reboot: - vcredist140 (exit code 3010) The recent package changes indicate a reboot is necessary. Please reboot at your earliest convenience. Exited with code exit status 194 (cherry picked from commit e3fff7e) Co-authored-by: Julien Danjou <[email protected]>
1 parent bfe56c4 commit eeafbd8

File tree

1 file changed

+24
-22
lines changed

1 file changed

+24
-22
lines changed

.circleci/config.yml

Lines changed: 24 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -464,25 +464,27 @@ jobs:
464464
# store_coverage: false
465465
# pattern: '^py37-profile'
466466

467-
profile-windows-38:
468-
executor:
469-
name: win/default
470-
shell: bash.exe
471-
steps:
472-
- run: choco install -y python --version=3.8.10 --side-by-side
473-
- run_tox_scenario:
474-
store_coverage: false
475-
pattern: '^py38-profile'
467+
# This requires the machine to reboot :(
468+
# profile-windows-38:
469+
# executor:
470+
# name: win/default
471+
# shell: bash.exe
472+
# steps:
473+
# - run: choco install -y python --version=3.8.10 --side-by-side
474+
# - run_tox_scenario:
475+
# store_coverage: false
476+
# pattern: '^py38-profile'
476477

477-
profile-windows-39:
478-
executor:
479-
name: win/default
480-
shell: bash.exe
481-
steps:
482-
- run: choco install -y python --version=3.9.12 --side-by-side
483-
- run_tox_scenario:
484-
store_coverage: false
485-
pattern: '^py39-profile'
478+
# This requires the machine to reboot :(
479+
# profile-windows-39:
480+
# executor:
481+
# name: win/default
482+
# shell: bash.exe
483+
# steps:
484+
# - run: choco install -y python --version=3.9.12 --side-by-side
485+
# - run_tox_scenario:
486+
# store_coverage: false
487+
# pattern: '^py39-profile'
486488

487489
profile-windows-310:
488490
executor:
@@ -1220,8 +1222,8 @@ requires_tests: &requires_tests
12201222
- profile-windows-35
12211223
- profile-windows-36
12221224
# - profile-windows-37
1223-
- profile-windows-38
1224-
- profile-windows-39
1225+
# - profile-windows-38
1226+
# - profile-windows-39
12251227
- profile-windows-310
12261228

12271229
workflows:
@@ -1322,8 +1324,8 @@ workflows:
13221324
- profile-windows-35: *requires_pre_check
13231325
- profile-windows-36: *requires_pre_check
13241326
# - profile-windows-37: *requires_pre_check
1325-
- profile-windows-38: *requires_pre_check
1326-
- profile-windows-39: *requires_pre_check
1327+
# - profile-windows-38: *requires_pre_check
1328+
# - profile-windows-39: *requires_pre_check
13271329
- profile-windows-310: *requires_pre_check
13281330
# Final reports
13291331
- coverage_report: *requires_tests

0 commit comments

Comments
 (0)