Skip to content
Merged
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
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,20 @@ jobs:
- name: Build UEFI app (release)
run: make release

- name: Build UEFI app (QEMU)
run: make qemu
- name: Generate artifact version
run: |
echo "VERSIONINFO=$(date -u +'%Y-%m-%d-%H-%M-%S')_$GITHUB_SHA" >> $GITHUB_ENV

# Upload release first to get fast builds from CI
- name: Upload UEFI app (release)
uses: actions/upload-artifact@v6
with:
name: inputmodules.efi
name: inputmodules_release_${{ env.VERSIONINFO }}
path: target/x86_64-unknown-uefi/release/inputmodules.efi

- name: Build UEFI app (QEMU)
run: make qemu

lints:
name: Lints
runs-on: ubuntu-24.04
Expand Down