tweak yaml

This commit is contained in:
Trammell hudson 2018-09-15 05:56:58 -04:00
parent 265ed9d043
commit b826e4c705
Failed to extract signature

View File

@ -5,7 +5,9 @@ jobs:
- image: ubuntu:18.04
steps:
- checkout
- run: |
- run:
name: Install dependencies
command: |
apt install -y \
build-essential \
zlib1g-dev \
@ -28,9 +30,18 @@ jobs:
cpio \
ccache \
- run: 'git clone https://github.com/osresearch/heads'
- run: 'make BOARD=qemu-coreboot'
- run: 'make BOARD=qemu-linuxboot'
- run:
name: Checkout
command: |
git clone https://github.com/osresearch/heads
- run:
name: qemu-coreboot
command: |
make BOARD=qemu-coreboot
- run:
name: qemu-linuxboot
command: |
make BOARD=qemu-linuxboot
workflows:
version: 2
build_and_test: