Build external .NET projects in GitLab CI weekly slow builds
This commit is contained in:
parent
466d052c2d
commit
7b060bada4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue