From 7b060bada44b6476a7a9efa3e529a0489ddd47d4 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Wed, 28 Sep 2022 07:20:02 +1000 Subject: [PATCH] Build external .NET projects in GitLab CI weekly slow builds --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5872167fcd..8b7248ae90 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -42,6 +42,16 @@ build_asms_release: - Dist/BuildRelease.sh stage: build +build_ext_projs: + allow_failure: true + image: mcr.microsoft.com/dotnet/sdk:6.0 + rules: + - if: '$CI_PIPELINE_SOURCE == "schedule"' + when: always + script: + - for d in $CI_PROJECT_DIR/ExternalProjects/*; do if [ -e "$d/build_release.sh" ]; then cd "$d" && ./build_release.sh; fi; done + stage: test + build_ext_tools: allow_failure: true image: mcr.microsoft.com/dotnet/sdk:6.0