Skip to content
This repository was archived by the owner on Jul 6, 2019. It is now read-only.

Commit 5a03594

Browse files
committed
more logging
1 parent bd65561 commit 5a03594

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

support/build-jenkins.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@ echo " * rustc version: `rustc --version`"
66

77
if [ "$PLATFORM" == "native" ]; then
88
# build unit tests
9+
echo " * building zinc"
910
cargo test --features test --lib --verbose
11+
echo " * building ioreg"
1012
(cd ./ioreg; cargo build --verbose; cargo test --verbose)
13+
echo " * building platformtree"
1114
(cd ./platformtree; cargo build --verbose; cargo test --verbose)
15+
echo " * building platformtree macro"
1216
(cd ./macro_platformtree; cargo build --verbose; cargo test --verbose)
17+
echo " * building zinc macro"
1318
(cd ./macro_zinc; cargo test --verbose)
1419

1520
echo " * generating coverage data"
@@ -51,6 +56,8 @@ else
5156
;;
5257
esac
5358

59+
ls -lR /home/travis/build/hackndev/zinc
60+
5461
./configure --host=arm-none-eabi
5562
cargo build --target=$TARGET --verbose --features "mcu_$PLATFORM" --lib
5663

0 commit comments

Comments
 (0)