1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00

Don't bother trying to set a PowerShell array from YAML

Just set a string and split it in the script.
This commit is contained in:
AnyOldName3 2020-07-13 22:34:58 +01:00
parent 000b52fc05
commit cd4ab320d8

View File

@ -47,10 +47,10 @@ MacOS:
- build/OpenMW-*.dmg
variables: &engine-targets
targets: "'openmw', 'openmw-essimporter', 'openmw-iniimporter', 'openmw-launcher', 'openmw-wizard'"
targets: "openmw,openmw-essimporter,openmw-iniimporter,openmw-launcher,openmw-wizard"
variables: &cs-targets
targets: "'openmw-cs', 'bsatool', 'esmtool', 'niftest'"
targets: "openmw-cs,bsatool,esmtool,niftest"
.Windows_Ninja_Base:
tags:
@ -72,7 +72,7 @@ variables: &cs-targets
- sh CI/before_script.msvc.sh -c $config -p Win64 -v 2019 -k -V -N
- cd MSVC2019_64_Ninja
- .\ActivateMSVC.ps1
- cmake --build . --config $config --target $targets
- cmake --build . --config $config --target ($targets.Split(','))
- cd $config
- |
if (Get-ChildItem -Recurse *.pdb) {
@ -159,7 +159,7 @@ Windows_Ninja_CS_RelWithDebInfo:
- echo "started by ${GITLAB_USER_NAME}"
- sh CI/before_script.msvc.sh -c $config -p Win64 -v 2019 -k -V
- cd MSVC2019_64
- cmake --build . --config $config --target $targets
- cmake --build . --config $config --target ($targets.Split(','))
- cd $config
- |
if (Get-ChildItem -Recurse *.pdb) {