Hopefully fix GitLab CI being unable to build ExternalProjects
This commit is contained in:
parent
871036c81a
commit
3ceb0fab8e
|
@ -49,7 +49,7 @@ build_ext_projs:
|
||||||
- if: '$CI_PIPELINE_SOURCE == "schedule"'
|
- if: '$CI_PIPELINE_SOURCE == "schedule"'
|
||||||
when: always
|
when: always
|
||||||
script:
|
script:
|
||||||
- for d in $CI_PROJECT_DIR/ExternalProjects/*; do if [ -e "$d/build_release.sh" ]; then cd "$d" && file -bi *.csproj && ./build_release.sh; fi; done
|
- for d in $CI_PROJECT_DIR/ExternalProjects/*; do if [ -e "$d/build_release.sh" ] && (find "$d" -name '*.csproj' -maxdepth 1 -quit); then cd "$d" && ./build_release.sh; fi; done
|
||||||
stage: test
|
stage: test
|
||||||
|
|
||||||
build_ext_tools:
|
build_ext_tools:
|
||||||
|
|
Loading…
Reference in New Issue