summaryrefslogtreecommitdiff
path: root/.gitlab-ci/run-docker.sh
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2018-06-16 11:45:09 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2018-06-16 11:45:09 +0200
commit06660d70e1899d9ad9b3c951073fb9a13652da9d (patch)
tree91406e13193906e6ad85cda38f0d60642acfaee5 /.gitlab-ci/run-docker.sh
parentce0353c25707ee5f200a72a259b6c55b0691382e (diff)
downloadgobject-introspection-06660d70e1899d9ad9b3c951073fb9a13652da9d.tar.gz
ci: Update meson to 0.46.1
glib now requires 0.46.1 and GI uses it as a subproject in CI
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 91694fb3..77eff633 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-gi" \
+TAG="registry.gitlab.gnome.org/gnome/gobject-introspection: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-gi" bash
+ --tty --interactive "${TAG}" bash