You've already forked build-coreboot
mirror of
https://github.com/Dasharo/build-coreboot.git
synced 2026-03-06 15:02:45 -08:00
26 lines
559 B
YAML
26 lines
559 B
YAML
name: Build coreboot
|
|
description: Build coreboot firmware
|
|
inputs:
|
|
defconfig:
|
|
description: 'Path to platform defconfig'
|
|
required: true
|
|
outputs:
|
|
binary:
|
|
description: 'Path of the compiled coreboot binary'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Copy platform defconfig
|
|
run: cp $INPUT_DEFCONFIG .config
|
|
shell: bash
|
|
env:
|
|
INPUT_DEFCONFIG: ${{ inputs.defconfig }}
|
|
|
|
- name: Run olddefconfig
|
|
run: make olddefconfig
|
|
shell: bash
|
|
|
|
- name: Build coreboot
|
|
run: make -j $(nproc)
|
|
shell: bash
|