Skip to content

Commit

Permalink
CI: Support latest GitHub runners, use latest working EDK2 release tag
Browse files Browse the repository at this point in the history
* Closes #1.
  • Loading branch information
olljanat authored and pbatard committed Jan 21, 2025
1 parent 34e769c commit 88d9fc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/Linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
env:
BUILD_TYPE: RELEASE
COMPILER: GCC5
EDK2_BASE: edk2-stable202411
GCC5_ARM_PREFIX: arm-linux-gnueabi-
GCC5_AARCH64_PREFIX: aarch64-linux-gnu-
GCC5_RISCV64_PREFIX: riscv64-linux-gnu-
Expand Down Expand Up @@ -55,11 +56,11 @@ jobs:
- name: Set up Linux environment
run: |
sudo apt-get update
sudo apt-get -y --no-install-recommends install python3-distutils nasm uuid-dev ${{ matrix.TARGET_PKGS }}
sudo apt-get -y --no-install-recommends install python3-setuptools nasm uuid-dev ${{ matrix.TARGET_PKGS }}
- name: Set up EDK2
run: |
git clone --recursive https://github.com/tianocore/edk2.git
git clone --recursive https://github.com/tianocore/edk2.git -b ${{ env.EDK2_BASE }}
make -C edk2/BaseTools
- name: Build UEFI bootloader
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
arch: [x64, ia32, aa64, arm]
arch: [x64, ia32, aa64]

steps:
- name: Checkout repository and submodules
Expand Down

0 comments on commit 88d9fc9

Please sign in to comment.