Changes in tools/travis.sh [3daa163:79b39d0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/travis.sh
r3daa163 r79b39d0 52 52 arm32/integratorcp:arm-helenos:image.boot 53 53 arm32/raspberrypi:arm-helenos:uImage.bin 54 arm64/virt:aarch64-helenos:image.iso55 54 ia32:i686-helenos:image.iso 56 55 ia64/i460GX:ia64-helenos:image.boot … … 87 86 echo "Will try to run C style check." 88 87 echo 89 cd tools 90 ./build-ccheck.sh || exit 1 91 cd .. 92 tools/ccheck.sh || exit 1 88 make ccheck || exit 1 93 89 echo "C style check passed." 94 90 exit 0 … … 157 153 fi 158 154 155 159 156 # Build it 160 SRCDIR="$PWD" 161 162 mkdir -p build/$H_ARCH || exit 1 163 cd build/$H_ARCH 164 165 export PATH="/usr/local/cross/bin:$PATH" 166 167 $SRCDIR/configure.sh $H_ARCH || exit 1 168 ninja || exit 1 169 ninja image_path || exit 1 170 171 cd $SRCDIR 157 make "PROFILE=$H_ARCH" HANDS_OFF=y || exit 1 158 test -s "$H_OUTPUT_FILENAME" || exit 1 172 159 173 160 echo … … 198 185 ) >hsct.conf || exit 1 199 186 200 "$HOME/helenos-harbours/hsct.sh" init "$H_HELENOS_HOME" $H_ARCH|| exit 1187 "$HOME/helenos-harbours/hsct.sh" init "$H_HELENOS_HOME" || exit 1 201 188 202 189 # We cannot flood the output as Travis has limit of maximum output size
Note:
See TracChangeset
for help on using the changeset viewer.