Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1165,10 +1165,9 @@ jobs:
- run:
name: Install packages
command: |
choco install -y cmake.portable ninja
# Choco can return 0 even if package installation/resolution fails (e.g. 504 Gateway Timeout).
# See: https://github.com/chocolatey/choco/issues/1609
# Explicitly check version commands to ensure executables exist in PATH.
# Use pip rather than chocolatey here as have has trouble to
# the reliablity of chocolatey in the past.
pip install cmake ninja
cmake --version
ninja --version
- install-emsdk
Expand Down Expand Up @@ -1235,10 +1234,9 @@ jobs:
- run:
name: Install packages
command: |
choco install -y cmake.portable ninja
# Choco can return 0 even if package installation/resolution fails (e.g. 504 Gateway Timeout).
# See: https://github.com/chocolatey/choco/issues/1609
# Explicitly check version commands to ensure executables exist in PATH.
# Use pip rather than chocolatey here as have has trouble to
# the reliablity of chocolatey in the past.
pip install cmake ninja
cmake --version
ninja --version
# note we do *not* build all libraries and freeze the cache; as we run
Expand Down
Loading