From 27f99ab1201e68ec7300b5ac04c3e31fde9b76b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Suzanne=20Dup=C3=A9ron?= Date: Fri, 10 Jan 2020 01:43:09 +0100 Subject: [PATCH] build_and_deploy_website depends on build_and_package_binaries build_and_deploy_website depended implicitly on build_and_package_binaries. I guess it needs to come after, still (from Tom Jack) --- .gitlab-ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 075ab44a1..6a41afad7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,9 +22,13 @@ stages: - dist/package/**/* .website_build: &website_build - # To run in sequence and save CPU usage, use stage: build_and_deploy_website - stage: test + stage: build_and_deploy_website image: node:8 + dependencies: + - build-and-package-debian-9 + - build-and-package-debian-10 + - build-and-package-ubuntu-18-04 + - build-and-package-ubuntu-19-04 before_script: - scripts/install_native_dependencies.sh - scripts/install_opam.sh # TODO: or scripts/install_build_environment.sh ?