Reduce Appveyor building time
Keep only x64 release build in Appveyor.
This commit is contained in:
parent
cecd161570
commit
02e4202d68
22
appveyor.yml
22
appveyor.yml
|
@ -9,24 +9,24 @@ image: Visual Studio 2022
|
||||||
environment:
|
environment:
|
||||||
python_dir: C:\Python311-x64
|
python_dir: C:\Python311-x64
|
||||||
matrix:
|
matrix:
|
||||||
- compiler: MSC
|
#- compiler: MSC
|
||||||
platform: Win32
|
# platform: Win32
|
||||||
|
|
||||||
- compiler: MSC
|
- compiler: MSC
|
||||||
platform: x64
|
platform: x64
|
||||||
|
|
||||||
- compiler: MSC
|
#- compiler: MSC
|
||||||
platform: arm64
|
# platform: arm64
|
||||||
|
|
||||||
- compiler: GCC
|
#- compiler: GCC
|
||||||
platform: i686
|
# platform: i686
|
||||||
|
|
||||||
- compiler: GCC
|
#- compiler: GCC
|
||||||
platform: x86_64
|
# platform: x86_64
|
||||||
|
|
||||||
configuration:
|
configuration:
|
||||||
- Release
|
- Release
|
||||||
- Debug
|
#- Debug
|
||||||
|
|
||||||
before_build:
|
before_build:
|
||||||
- ps: |
|
- ps: |
|
||||||
|
@ -123,8 +123,8 @@ for:
|
||||||
Copy-Item "$env:APPVEYOR_BUILD_FOLDER\PowerEditor\installer\filesForTesting\overrideMap.xml" -Destination "$env:APPVEYOR_BUILD_FOLDER\PowerEditor\bin\functionList"
|
Copy-Item "$env:APPVEYOR_BUILD_FOLDER\PowerEditor\installer\filesForTesting\overrideMap.xml" -Destination "$env:APPVEYOR_BUILD_FOLDER\PowerEditor\bin\functionList"
|
||||||
|
|
||||||
cd .\PowerEditor\Test\FunctionList\
|
cd .\PowerEditor\Test\FunctionList\
|
||||||
#.\unitTestLauncher.ps1
|
.\unitTestLauncher.ps1
|
||||||
#if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
|
if ($LastExitCode -ne 0) { $host.SetShouldExit($LastExitCode) }
|
||||||
|
|
||||||
cd ..\UrlDetection
|
cd ..\UrlDetection
|
||||||
.\verifyUrlDetection.ps1
|
.\verifyUrlDetection.ps1
|
||||||
|
|
Loading…
Reference in New Issue