aboutsummaryrefslogtreecommitdiffstats
path: root/dist
diff options
context:
space:
mode:
authorumarcor <unai.martinezcorral@ehu.eus>2020-12-29 02:57:46 +0100
committerumarcor <unai.martinezcorral@ehu.eus>2020-12-29 02:57:46 +0100
commitc84df63c85a0a2bc81430b2ea3c3aca165532680 (patch)
treece8963ca467e22386a6396b752a0a19bdc0535f3 /dist
parent1c38bc3933ba4e469811c5898b9aeae896e23afc (diff)
downloadghdl-c84df63c85a0a2bc81430b2ea3c3aca165532680.tar.gz
ghdl-c84df63c85a0a2bc81430b2ea3c3aca165532680.tar.bz2
ghdl-c84df63c85a0a2bc81430b2ea3c3aca165532680.zip
ci: collapse build log of temporary images
Diffstat (limited to 'dist')
-rwxr-xr-xdist/ci-run.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/dist/ci-run.sh b/dist/ci-run.sh
index c61169f9f..43e1c8b66 100755
--- a/dist/ci-run.sh
+++ b/dist/ci-run.sh
@@ -430,6 +430,7 @@ ci_run () {
case "$GHDL_IMAGE_TAG" in
*ubuntu20*|*buster*)
GHDL_TEST_IMAGE="test:$GHDL_IMAGE_TAG-py"
+ gstart "[CI] Docker build $GHDL_TEST_IMAGE" "$ANSI_BLUE"
docker build -t "$GHDL_TEST_IMAGE" . -f- <<-EOF
# syntax=docker/dockerfile:experimental
FROM ghdl/ghdl:$GHDL_IMAGE_TAG
@@ -437,7 +438,8 @@ RUN apt update -qq && apt install -y python3 python3-pip
RUN --mount=type=bind,src=./,target=/tmp/ghdl/ \
pip3 install -r /tmp/ghdl/testsuite/requirements.txt
EOF
- tests+=" pyunit"
+ gend
+ tests+=" pyunit"
;;
*)
GHDL_TEST_IMAGE="ghdl/ghdl:$GHDL_IMAGE_TAG"