From fdb8268fc99dd09f1c637290b6aa580119e801e8 Mon Sep 17 00:00:00 2001 From: Trammell hudson Date: Tue, 18 Sep 2018 13:07:14 -0400 Subject: [PATCH] remove coreboot-gcc target (it will be built anyway) and add x230 --- .circleci/config.yml | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 545fe0ce..30d6e22b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -47,13 +47,6 @@ jobs: BOARD=qemu-coreboot \ musl-cross - - run: - name: coreboot gcc - command: | - ./build/make-4.2.1/make \ - V=1 \ - BOARD=qemu-coreboot \ - coreboot-gcc \ - run: name: qemu-coreboot @@ -63,11 +56,13 @@ jobs: -j4 \ V=1 \ BOARD=qemu-coreboot \ + - store-artifacts: path: build/qemu-coreboot/coreboot.rom - store-artifacts: path: build/qemu-coreboot/hashes.txt + - run: name: qemu-linuxboot command: | @@ -75,11 +70,27 @@ jobs: -j4 \ V=1 \ BOARD=qemu-linuxboot \ + - store-artifacts: path: build/qemu-linuxboot/linuxboot.rom - store-artifacts: path: build/qemu-linuxboot/hashes.txt + + - run: + name: x230 + command: | + ./build/make-4.2.1/make \ + -j4 \ + V=1 \ + BOARD=x230 \ + + - store-artifacts: + path: build/x230/coreboot.rom + - store-artifacts: + path: build/x230/hashes.txt + + workflows: version: 2 build_and_test: