mirror of
https://github.com/GerbilSoft/rom-properties.git
synced 2025-06-18 19:45:41 -04:00
appveyor.sh, appveyor.yml: More variable fixes.
- appveyor.sh: %OPTFEAT% -> ${OPTFEAT} - appveyor.yml: ${configuration} -> ${CONFIGURATION}
This commit is contained in:
parent
20c6227238
commit
cf578dcd65
@ -13,4 +13,4 @@ OPTFEAT="-DENABLE_EXTRA_SECURITY=${OPTEN} -DENABLE_JPEG=${OPTEN} -DENABLE_XML=${
|
||||
|
||||
mkdir build
|
||||
cd build
|
||||
cmake .. -G Ninja -DBUILD_TESTING=ON -DENABLE_LTO=OFF -DENABLE_PCH=OFF %OPTFEAT%
|
||||
cmake .. -G Ninja -DBUILD_TESTING=ON -DENABLE_LTO=OFF -DENABLE_PCH=OFF ${OPTFEAT}
|
||||
|
12
appveyor.yml
12
appveyor.yml
@ -40,23 +40,23 @@ before_build:
|
||||
# then build again with optional features turned on.
|
||||
build_script:
|
||||
- cmd: cd %APPVEYOR_BUILD_FOLDER%\build
|
||||
- cmd: cmake --build . --config %configuration%
|
||||
- cmd: cmake --build . --config %CONFIGURATION%
|
||||
- cmd: cd ..
|
||||
- cmd: appveyor.cmd ON
|
||||
- cmd: cd %APPVEYOR_BUILD_FOLDER%\build
|
||||
- cmd: cmake --build . --config %configuration%
|
||||
- cmd: cmake --build . --config %CONFIGURATION%
|
||||
- sh: cd ${APPVEYOR_BUILD_FOLDER}/build
|
||||
- sh: cmake --build . --config ${configuration}
|
||||
- sh: cmake --build . --config ${CONFIGURATION}
|
||||
- sh: cd ..
|
||||
- sh: ./appveyor.sh ON
|
||||
- sh: cd ${APPVEYOR_BUILD_FOLDER}/build
|
||||
- sh: cmake --build . --config ${configuration}
|
||||
- sh: cmake --build . --config ${CONFIGURATION}
|
||||
|
||||
test_script:
|
||||
- cmd: cd %APPVEYOR_BUILD_FOLDER%\build
|
||||
- cmd: ctest -V -C %configuration%
|
||||
- cmd: ctest -V -C %CONFIGURATION%
|
||||
- sh: cd ${APPVEYOR_BUILD_FOLDER}/build
|
||||
- sh: ctest -V -C ${configuration}
|
||||
- sh: ctest -V -C ${CONFIGURATION}
|
||||
|
||||
after_test:
|
||||
- cmd: cd %APPVEYOR_BUILD_FOLDER%\build
|
||||
|
Loading…
Reference in New Issue
Block a user