Skip to content

Commit

Permalink
fix(github): Install python3.9 during github builds (#49)
Browse files Browse the repository at this point in the history
python3.9 is now required by recent versions of stuart.

Signed-off-by: Jake Garver <[email protected]>
  • Loading branch information
jgarver authored May 8, 2023
1 parent 6159be3 commit fda4834
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ jobs:
sudo apt install -y build-essential uuid-dev git gcc python3 virtualenv gcc-aarch64-linux-gnu device-tree-compiler mono-devel
# Make sure everything is up-to-date
sudo apt upgrade
- name: Upgrade python
run: |
sudo apt install -y python3.9 python3-pip python3.9-venv
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.9 1
sudo update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.9 1
- name: Install edkrepo
run: |
mkdir ${{ github.workspace }}/edkrepo
Expand Down

0 comments on commit fda4834

Please sign in to comment.