Skip to content

Commit 1bb6a3a

Browse files
authored
circleci: circleci: Remove unnecessary installation on python3.8 on windows. NFC (#17061)
We can use the version of python that is installed by default to bootstrap the emsdk install and from there we get our modern python. This speeds up the windows bot start time by about a minute.
1 parent 3b61729 commit 1bb6a3a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -430,10 +430,9 @@ jobs:
430430
name: Install packages
431431
command: |
432432
choco install cmake.portable ninja
433-
choco install python --version 3.8.0
434433
- run:
435434
name: Add python to bash path
436-
command: echo "export PATH=\"$PATH:/c/python38/:/c/python38/Scripts/\"" >> $BASH_ENV
435+
command: echo "export PATH=\"$PATH:/c/Python27amd64/\"" >> $BASH_ENV
437436
- build
438437
# note we do *not* build all libraries and freeze the cache; as we run
439438
# only limited tests here, it's more efficient to build on demand

0 commit comments

Comments
 (0)