heads/.circleci/config.yml
2018-09-15 05:52:38 -04:00

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