From 1e9604486d4b123c5b993756106f316ee68ac330 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Mon, 20 Jul 2020 14:37:16 -0500 Subject: [PATCH] Set hostname to avoid Gitlab runner issue --- .gitlab-ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3a6d8fe5..c46d58e4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -105,6 +105,8 @@ Python 3 Conda: script: | sudo apt-get update sudo apt-get install openmpi-bin libopenmpi-dev + # https://gitlab.com/gitlab-org/gitlab-runner/-/issues/26607 + sudo hostname gitlab-ci-runner CONDA_ENVIRONMENT=.test-conda-env-py3.yml curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/build-and-test-py-project-within-miniconda.sh . ./build-and-test-py-project-within-miniconda.sh @@ -115,6 +117,8 @@ Python 3 Conda Examples: script: | sudo apt-get update sudo apt-get install openmpi-bin libopenmpi-dev + # https://gitlab.com/gitlab-org/gitlab-runner/-/issues/26607 + sudo hostname gitlab-ci-runner CONDA_ENVIRONMENT=.test-conda-env-py3.yml curl -L -O -k https://gitlab.tiker.net/inducer/ci-support/raw/master/ci-support.sh . ci-support.sh -- GitLab