Skip to content

Commit

Permalink
github: Introduce workflow for generating bootrr.cpio
Browse files Browse the repository at this point in the history
For kernel CI purposes it's convenient to always have access to the
latest bootrr.cpio archive. Introduce a workflow that composes this and
generates an artifact.

Signed-off-by: Bjorn Andersson <[email protected]>
  • Loading branch information
quic-bjorande authored and Konrad Dybcio committed May 8, 2024
1 parent 7ce7fd4 commit 57921a1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/generate-cpio-archive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: generate-cpio-archive
on:
push:
branches: master

jobs:
generate-cpio:
runs-on: ubuntu-latest
steps:
- name: checkout master
uses: actions/checkout@v4
- name: make cpio.gz
run: |
make cpio.gz
- name: archive bootrr.cpio.gz
uses: actions/upload-artifact@v4
with:
name: bootrr.cpio.gz
path: bootrr.cpio.gz

0 comments on commit 57921a1

Please sign in to comment.