Skip to content

Commit 57921a1

Browse files
quic-bjorandeKonrad Dybcio
authored and
Konrad Dybcio
committed
github: Introduce workflow for generating bootrr.cpio
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]>
1 parent 7ce7fd4 commit 57921a1

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: generate-cpio-archive
2+
on:
3+
push:
4+
branches: master
5+
6+
jobs:
7+
generate-cpio:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: checkout master
11+
uses: actions/checkout@v4
12+
- name: make cpio.gz
13+
run: |
14+
make cpio.gz
15+
- name: archive bootrr.cpio.gz
16+
uses: actions/upload-artifact@v4
17+
with:
18+
name: bootrr.cpio.gz
19+
path: bootrr.cpio.gz

0 commit comments

Comments
 (0)