circleci needs to use the new 4.2.1 make

This commit is contained in:
Trammell hudson 2018-09-18 06:55:16 -04:00
parent 292a8bec81
commit 5555e9e8ac
Failed to extract signature

View File

@ -35,19 +35,19 @@ jobs:
- run:
name: Bootstrap make
command: |
make `pwd`/build/make-4.2/make
make `pwd`/build/make-4.2.1/make
- run:
name: Bootstrap musl
command: |
./build/make-4.2/make -j4 musl-cross V=1
./build/make-4.2.1/make -j4 musl-cross V=1
- run:
name: qemu-coreboot
command: |
./build/make-4.2/make -j4 BOARD=qemu-coreboot V=1
./build/make-4.2.1/make -j4 BOARD=qemu-coreboot V=1
- run:
name: qemu-linuxboot
command: |
./build/make-4.2/make -j4 BOARD=qemu-linuxboot V=1
./build/make-4.2.1/make -j4 BOARD=qemu-linuxboot V=1
workflows:
version: 2
build_and_test: