diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-04-02 12:40:56 +0200 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2020-04-02 12:40:56 +0200 |
commit | c17ed429be9575a99d893a31cd7bf32dc428ede9 (patch) | |
tree | b6bcce05a2d34b6fe85961768c6597d27f0c3157 /ci/ciimage/opensuse | |
parent | e6451c74729662c8bdefeb0f3fe4bd90e49f100f (diff) | |
download | meson-c17ed429be9575a99d893a31cd7bf32dc428ede9.zip meson-c17ed429be9575a99d893a31cd7bf32dc428ede9.tar.gz meson-c17ed429be9575a99d893a31cd7bf32dc428ede9.tar.bz2 |
ci: Retry if dub fetch failed
Diffstat (limited to 'ci/ciimage/opensuse')
-rwxr-xr-x | ci/ciimage/opensuse/install.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ci/ciimage/opensuse/install.sh b/ci/ciimage/opensuse/install.sh index 33eb6a1..5e35ef7 100755 --- a/ci/ciimage/opensuse/install.sh +++ b/ci/ciimage/opensuse/install.sh @@ -2,6 +2,8 @@ set -e +source /ci/common.sh + pkgs=( python3-setuptools python3-wheel python3-pip python3-pytest-xdist python3 ninja make git autoconf automake patch python3-Cython python3-jsonschema @@ -36,9 +38,9 @@ chmod +x /env_vars.sh source /env_vars.sh -dub fetch urld +dub_fetch urld dub build urld --compiler=dmd -dub fetch dubtestproject +dub_fetch dubtestproject dub build dubtestproject:test1 --compiler=dmd dub build dubtestproject:test2 --compiler=dmd |