Skip to content

Commit

Permalink
UEFI Shell 24H1
Browse files Browse the repository at this point in the history
* From edk2-stable202405
* Closes #5
* And thanks for the bloody SILENT & UNWARRANTED rate-limiting, GitHub Actions!
  • Loading branch information
pbatard committed May 30, 2024
1 parent b32dc14 commit 0aa4f3d
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
19 changes: 17 additions & 2 deletions .github/workflows/linux_gcc_edk2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,13 @@ jobs:
sudo ln -s /usr/bin/riscv64-linux-gnu-gcc-12 /usr/bin/riscv64-linux-gnu-gcc
sudo ln -s /usr/bin/riscv64-linux-gnu-gcc-ar-12 /usr/bin/riscv64-linux-gnu-gcc-ar
- name: Fix the BROKEN cmocka.git EDK2 dependency
run: git config --global url."https://github.com/tianocore/edk2-cmocka.git".insteadOf "https://git.cryptomilk.org/projects/cmocka.git"

- name: Checkout repository and submodules
uses: actions/checkout@v4
with:
# Need fetch-depth: 0 to obtain the EDK2 stable tag
fetch-depth: 0
submodules: recursive

Expand Down Expand Up @@ -67,6 +71,15 @@ jobs:
done
done
- name: Create individual Shell binaries
run: |
for ARCH in ${{ env.ARCHS }}; do
cp edk2/Build/Shell/RELEASE_${{ env.COMPILER }}/$ARCH/Shell_${{ env.FULL_SHELL_GUID }}.efi ./shell${ARCH,,}.efi
done
if [ -f ./shellaarch64.efi ]; then
mv ./shellaarch64.efi ./shellaa64.efi
fi
- name: Create ISO filesystem structure
run: |
for BUILD_TYPE in ${{ env.BUILD_TYPES }}; do
Expand Down Expand Up @@ -117,9 +130,10 @@ jobs:
sha256sum $BUILD_TYPE/efi/boot/*.efi
done
sha256sum *.iso
sha256sum *.efi
- name: Upload artifacts
uses: actions/upload-artifact@v3
- name: Upload ISO artifacts
uses: actions/upload-artifact@v4
with:
name: ISOs
path: ./*.iso
Expand All @@ -139,4 +153,5 @@ jobs:
body_path: ./body.txt
files: |
./*.iso
./*.efi
./Version.xml
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ UEFI-Shell

[![Build status](https://img.shields.io/github/actions/workflow/status/pbatard/UEFI-Shell/linux_gcc_edk2.yml?label=Build%20Status&style=flat-square)](https://github.com/pbatard/UEFI-Shell/actions/workflows/linux_gcc_edk2.yml)
[![Github stats](https://img.shields.io/github/downloads/pbatard/UEFI-Shell/total.svg?label=Downloads&style=flat-square)](https://github.com/pbatard/UEFI-Shell/releases)
[![Release](https://img.shields.io/badge/Latest%20Release-23H2%20(edk2--stable202311)-blue.svg?style=flat-square)](https://github.com/pbatard/UEFI-Shell/releases)
[![Release](https://img.shields.io/badge/Latest%20Release-24H1%20(edk2--stable202405)-blue.svg?style=flat-square)](https://github.com/pbatard/UEFI-Shell/releases)
[![License](https://img.shields.io/badge/License-BSD%202--Clause-orange.svg)](https://opensource.org/licenses/BSD-2-Clause)

This repository contains pre-built UEFI Shell binary images, generated from
Expand Down
2 changes: 1 addition & 1 deletion edk2
Submodule edk2 updated 1046 files

0 comments on commit 0aa4f3d

Please sign in to comment.