mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-20 14:41:34 +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:
parent
000b52fc05
commit
cd4ab320d8
1 changed files with 4 additions and 4 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue