Skip to content

Commit

Permalink
Adding t430-vboot and x230-vboot boards into CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
tlaurion committed Sep 18, 2020
1 parent 9a27034 commit 7b9b974
Showing 1 changed file with 26 additions and 8 deletions.
34 changes: 26 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,22 +151,40 @@ jobs:
path: build/x230-hotp-verification

- run:
name: librem_mini-NoTPM
name: x230-vboot
command: |
rm -rf build/librem_mini-NoTPM/* build/log/* && make --load 2 \
rm -rf build/x230-vboot/* build/log/* && make --load 2 \
V=1 \
BOARD=librem_mini-NoTPM || (find ./build/ -name "*.log" -type f -mmin -1|while read log; do echo ""; echo '==>' "$log" '<=='; echo ""; cat $log;done; exit 1) \
BOARD=x230-vboot || (find ./build/ -name "*.log" -type f -mmin -1|while read log; do echo ""; echo '==>' "$log" '<=='; echo ""; cat $log;done; exit 1) \
no_output_timeout: 3h
- run:
name: Ouput librem_mini-NoTPM hashes
name: Ouput x230-vboot hashes
command: |
cat build/librem_mini-NoTPM/hashes.txt \
cat build/x230-vboot/hashes.txt \
- run:
name: Archiving build logs for librem_mini-NoTPM
name: Archiving build logs for x230-vboot
command: |
tar zcvf build/librem_mini-NoTPM/logs.tar.gz build/log/*
tar zcvf build/x230-vboot/logs.tar.gz build/log/*
- store-artifacts:
path: build/librem_mini-NoTPM
path: build/x230-vboot

- run:
name: t430-vboot
command: |
rm -rf build/t430-vboot/* build/log/* && make --load 2 \
V=1 \
BOARD=t430-vboot || (find ./build/ -name "*.log" -type f -mmin -1|while read log; do echo ""; echo '==>' "$log" '<=='; echo ""; cat $log;done; exit 1) \
no_output_timeout: 3h
- run:
name: Ouput t430-vboot hashes
command: |
cat build/t430-vboot/hashes.txt \
- run:
name: Archiving build logs for t430-vboot
command: |
tar zcvf build/t430-vboot/logs.tar.gz build/log/*
- store-artifacts:
path: build/t430-vboot

- run:
name: qemu-coreboot
Expand Down

0 comments on commit 7b9b974

Please sign in to comment.