Skip to content
Merged
Show file tree
Hide file tree
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
9 changes: 2 additions & 7 deletions .github/workflows/basic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v6

- name: Setup Python 3.10
- name: Setup Python 3.13
uses: actions/setup-python@v6
with:
python-version: '3.10'

- name: Install system packages
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get install libpython3.9 libtinfo5
python-version: '3.13'

Comment thread
Evagan2018 marked this conversation as resolved.
- name: Activate vcpkg
uses: ARM-software/cmsis-actions/vcpkg@v1
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/basic_w_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,12 @@ jobs:
uses: actions/checkout@v6

# Install Python used by the report utility
- name: Setup Python 3.10
- name: Setup Python 3.13
uses: actions/setup-python@v6
with:
python-version: '3.10'
python-version: '3.13'
- run:
pip install junit_reporter

# Install system packages required by FVP VSI extensions
- name: Install system packages
run: |
sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get install libpython3.9 libtinfo5

# Install vcpkg tools from the vcpkg-configuration.json and activate an Arm tools license
- name: Activate vcpkg
Expand Down