mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-20 21:43:11 +00:00
39 lines
727 B
YAML
39 lines
727 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: ubuntu:18.04
|
|
steps:
|
|
- checkout
|
|
- run: |
|
|
apt install -y \
|
|
build-essential \
|
|
zlib1g-dev \
|
|
uuid-dev \
|
|
libdigest-sha-perl \
|
|
libelf-dev \
|
|
bc \
|
|
bzip2 \
|
|
bison \
|
|
flex \
|
|
git \
|
|
gnupg \
|
|
iasl \
|
|
m4 \
|
|
nasm \
|
|
patch \
|
|
python \
|
|
wget \
|
|
gnat \
|
|
cpio \
|
|
ccache \
|
|
|
|
- run: 'git clone https://github.com/osresearch/heads'
|
|
- run: 'make BOARD=qemu-coreboot'
|
|
- run: 'make BOARD=qemu-linuxboot'
|
|
workflows:
|
|
version: 2
|
|
build_and_test:
|
|
jobs:
|
|
- build
|