-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (38 loc) · 1.22 KB
/
linuxboot-example.yml
File metadata and controls
45 lines (38 loc) · 1.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
name: linuxboot build
on:
push:
permissions:
contents: read
jobs:
build-coreboot-linuxboot-example:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
submodules: 'recursive'
- name: Fetch few missing submodules
run: |
git submodule update --depth 1 --init --recursive --checkout
# ANCHOR: AllFeatures
- name: firmware-action
uses: 9elements/firmware-action@v0.19.6
with:
# Required inputs
config: 'coreboot-linuxboot-example.json'
target: 'coreboot-example-with-linuxboot'
# Build options
recursive: 'true' # Build with dependencies
debug: 'true' # Increase verbosity
# Caching and artifacts
enable-cache: 'true'
auto-download-artifacts: 'true'
auto-upload-artifacts: 'true'
# Artifact configuration
auto-upload-artifacts-if-no-files-found: 'warn'
auto-upload-artifacts-compression-level: '6'
auto-upload-artifacts-overwrite: 'true'
# Remove containers and their volumes after each module is build
prune: 'true'
# ANCHOR_END: AllFeatures