run full tests on build

This commit is contained in:
John
2022-02-13 15:19:10 +01:00
parent 845bb1ab6a
commit fcf948c25b
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ ENV EBUSD_ARCH $TARGETARCH$TARGETVARIANT
ENV EBUSD_VERSION $EBUSD_VERSION
ADD . /build
RUN ./make_debian.sh
RUN RUNTEST=full ./make_debian.sh
+2 -1
View File
@@ -14,7 +14,7 @@ function replaceTemplate () {
# devel update
version_variant='-devel'
make='./make_debian.sh'
make='RUNTEST=full ./make_debian.sh'
upload_lines=''
copydeb='COPY --from=build /build/ebusd-*_mqtt1.deb ebusd.deb'
copyentry='COPY --from=build /build/contrib/docker/docker-entrypoint.sh /'
@@ -23,6 +23,7 @@ replaceTemplate
# release update
version_variant=''
make='./make_debian.sh'
copydeb="ADD https://github.com/john30/ebusd/releases/download/v\${EBUSD_VERSION}/ebusd-\${EBUSD_VERSION}_\${TARGETARCH}\${TARGETVARIANT}-\${EBUSD_IMAGE}_mqtt1.deb ebusd.deb"
copyentry='COPY contrib/docker/docker-entrypoint.sh /'
namesuffix='.release'