]> git.ipfire.org Git - thirdparty/strongswan.git/blame - testing/make-testing
testing: Converted ipv6/rw-compress-ikev2 to swanctl
[thirdparty/strongswan.git] / testing / make-testing
CommitLineData
997358a6 1#!/bin/bash
997358a6 2
aafc0a17
RB
3DIR=$(dirname `readlink -f $0`)
4. $DIR/testing.conf
997358a6 5
aa5803e0 6rm -f $LOGFILE
2c4954ad 7mkdir -p $BUILDDIR
997358a6 8
aa5803e0
RB
9if [ $ENABLE_BUILD_BASEIMAGE = "yes" ]
10then
aafc0a17 11 $DIR/scripts/build-baseimage || exit 1
aa5803e0
RB
12fi
13
90dd71e4 14if [ $ENABLE_BUILD_ROOTIMAGE = "yes" ]
997358a6 15then
aafc0a17 16 $DIR/scripts/build-rootimage || exit 1
997358a6
MW
17fi
18
90dd71e4 19if [ $ENABLE_BUILD_GUESTKERNEL = "yes" ]
997358a6 20then
aafc0a17 21 $DIR/scripts/build-guestkernel || exit 1
997358a6
MW
22fi
23
44e83859 24if [ $ENABLE_BUILD_GUESTIMAGES = "yes" ]
997358a6 25then
aafc0a17 26 $DIR/scripts/build-guestimages $HOSTS || exit 1
997358a6 27fi