aboutsummaryrefslogtreecommitdiffstats
path: root/testing/testing.conf
diff options
context:
space:
mode:
authorTobias Brunner <tobias@strongswan.org>2015-11-20 17:50:29 +0100
committerTobias Brunner <tobias@strongswan.org>2016-06-15 17:58:24 +0200
commit257e5db0d0c8ec3c1afb4836cfbe465dc9041c92 (patch)
tree566af487a7ad05629ec7e982b9d9d81b4fabe9ba /testing/testing.conf
parent0889628957e8ae6a007f5290b217c8c7bface3c5 (diff)
downloadstrongswan-257e5db0d0c8ec3c1afb4836cfbe465dc9041c92.tar.bz2
strongswan-257e5db0d0c8ec3c1afb4836cfbe465dc9041c92.tar.xz
testing: Update base image to Debian jessie
Several packages got renamed/updated, libgcrypt was apparently installed by default previously. Since most libraries changed we have to completely rebuild all the tools installed in the root image. We currently don't provide a clean target in the recipes, and even if we did we'd have to track which base image we last built for. It's easier to just use a different build directory for each base image, at the cost of some additional disk space (if not manually cleaned). However, that's also the case when updating kernel or software versions.
Diffstat (limited to 'testing/testing.conf')
-rw-r--r--testing/testing.conf9
1 files changed, 5 insertions, 4 deletions
diff --git a/testing/testing.conf b/testing/testing.conf
index 9842456f8..b23cd50ee 100644
--- a/testing/testing.conf
+++ b/testing/testing.conf
@@ -35,8 +35,6 @@ fi
# Build directory where the guest kernel and images will be built
: ${BUILDDIR=$TESTDIR/build}
-# Directory shared between host and guests
-: ${SHAREDDIR=$BUILDDIR/shared}
# Logfile
: ${LOGFILE=$BUILDDIR/testing.log}
@@ -50,12 +48,15 @@ fi
# Base image settings
# The base image is a pristine OS installation created using debootstrap.
-: ${BASEIMGSIZE=1400}
-: ${BASEIMGSUITE=wheezy}
+: ${BASEIMGSIZE=1600}
+: ${BASEIMGSUITE=jessie}
: ${BASEIMGARCH=amd64}
: ${BASEIMG=$IMGDIR/debian-$BASEIMGSUITE-$BASEIMGARCH.$IMGEXT}
: ${BASEIMGMIRROR=http://http.debian.net/debian}
+# Directory shared between host and guests
+: ${SHAREDDIR=$BUILDDIR/shared/$BASEIMGSUITE}
+
# Root image settings
# The root image is the origin of all guest images. It is a clone of the base
# image and contains additional test-specific software and patches.