summaryrefslogtreecommitdiff
path: root/.gitlab-ci/run-docker.sh
diff options
context:
space:
mode:
authorChristoph Reiter <creiter@src.gnome.org>2018-02-17 11:55:40 +0100
committerChristoph Reiter <creiter@src.gnome.org>2018-02-19 19:43:42 +0100
commit65c3f532cf1bf8b595c93bd7a9719d8452eeb17b (patch)
treea200aa3144d2ce4585e1e9dadf213b876a814e5d /.gitlab-ci/run-docker.sh
parent4a0854484f928869f0d9a40a86034d310ae256c3 (diff)
downloadgtk+-65c3f532cf1bf8b595c93bd7a9719d8452eeb17b.tar.gz
gitlab-ci: run parts of the test suite
This runs the tests in testsuite/{css,gtk,tools} All others suites have failing tests and need more work.
Diffstat (limited to '.gitlab-ci/run-docker.sh')
-rwxr-xr-x.gitlab-ci/run-docker.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/.gitlab-ci/run-docker.sh b/.gitlab-ci/run-docker.sh
index 9568cab8a0..af8af9030a 100755
--- a/.gitlab-ci/run-docker.sh
+++ b/.gitlab-ci/run-docker.sh
@@ -2,8 +2,10 @@
set -e
-sudo docker build --build-arg HOST_USER_ID="$UID" --tag "gitlab-gtk" \
+TAG="lazka/gitlab-gtk:v1"
+
+sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \
--file "Dockerfile" .
sudo docker run --rm \
--volume "$(pwd)/..:/home/user/app" --workdir "/home/user/app" \
- --tty --interactive "gitlab-gtk" bash
+ --tty --interactive "${TAG}" bash