1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-06-20 10:11:33 +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 - build/OpenMW-*.dmg
variables: &engine-targets 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 variables: &cs-targets
targets: "'openmw-cs', 'bsatool', 'esmtool', 'niftest'" targets: "openmw-cs,bsatool,esmtool,niftest"
.Windows_Ninja_Base: .Windows_Ninja_Base:
tags: tags:
@ -72,7 +72,7 @@ variables: &cs-targets
- sh CI/before_script.msvc.sh -c $config -p Win64 -v 2019 -k -V -N - sh CI/before_script.msvc.sh -c $config -p Win64 -v 2019 -k -V -N
- cd MSVC2019_64_Ninja - cd MSVC2019_64_Ninja
- .\ActivateMSVC.ps1 - .\ActivateMSVC.ps1
- cmake --build . --config $config --target $targets - cmake --build . --config $config --target ($targets.Split(','))
- cd $config - cd $config
- | - |
if (Get-ChildItem -Recurse *.pdb) { if (Get-ChildItem -Recurse *.pdb) {
@ -159,7 +159,7 @@ Windows_Ninja_CS_RelWithDebInfo:
- echo "started by ${GITLAB_USER_NAME}" - echo "started by ${GITLAB_USER_NAME}"
- sh CI/before_script.msvc.sh -c $config -p Win64 -v 2019 -k -V - sh CI/before_script.msvc.sh -c $config -p Win64 -v 2019 -k -V
- cd MSVC2019_64 - cd MSVC2019_64
- cmake --build . --config $config --target $targets - cmake --build . --config $config --target ($targets.Split(','))
- cd $config - cd $config
- | - |
if (Get-ChildItem -Recurse *.pdb) { if (Get-ChildItem -Recurse *.pdb) {