We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24aba62 commit 93c3a1bCopy full SHA for 93c3a1b
.github/workflows/menlo-build.yml
@@ -309,7 +309,7 @@ jobs:
309
continue-on-error: true
310
uses: actions/setup-python@v4
311
with:
312
- python-version: '3.10'
+ python-version: '3.12'
313
314
- name: Install tools on Windows
315
if: runner.os == 'Windows'
@@ -319,8 +319,13 @@ jobs:
319
- name: Install tools on Linux
320
if: runner.os == 'Linux'
321
run: |
322
+ set -euxo pipefail
323
+ sudo apt-get update -y
324
sudo apt-get install -y ninja-build
- python3 -m pip install awscli
325
+ python3 -m venv .venv
326
+ . .venv/bin/activate
327
+ python -m pip install -U pip
328
+ python -m pip install awscli
329
330
if [ "${{ matrix.os }}${{ matrix.name }}" == "linuxarm64" ]; then
331
sudo apt-get install -y ccache
0 commit comments