diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-07 20:55:25 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-07 21:01:24 +0300 |
commit | 475099510d3cf88ec3e7b53a1e001fa711425480 (patch) | |
tree | 23549e78b2587a3da65bb99aed16d23a981dab7c /appveyor.yml | |
parent | AppVeyor: build cmake/examples (diff) | |
download | cmake-common-475099510d3cf88ec3e7b53a1e001fa711425480.tar.gz cmake-common-475099510d3cf88ec3e7b53a1e001fa711425480.zip |
AppVeyor: verify .exe architecture
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/appveyor.yml b/appveyor.yml index 8b70c13..1a8b1e3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -18,14 +18,17 @@ environment: build_script: - echo Simple CMake projects - - '"%python_exe%" ./cmake/build/build.py --install C:\install\simple --configuration Release -- cmake/examples/simple' + - '"%python_exe%" ./cmake/build/build.py --install C:\install\simple --configuration Release -- cmake/examples/simple -A x64' - C:\install\simple\bin\foo.exe + - ps: .\.ci\verify_arch.ps1 -Path C:\install\simple\bin\foo.exe -Arch x64 - '"%python_exe%" ./cmake/build/build.py --install C:\install\static --configuration Debug -- cmake/examples/static -A Win32' - C:\install\static\bin\foo.exe + - ps: .\.ci\verify_arch.ps1 -Path C:\install\static\bin\foo.exe -Arch x86 - - '"%python_exe%" ./cmake/build/build.py --install C:\install\dynamic --configuration Release -- cmake/examples/dynamic' + - '"%python_exe%" ./cmake/build/build.py --install C:\install\dynamic --configuration Release -- cmake/examples/dynamic -A x64' - C:\install\dynamic\bin\foo.exe + - ps: .\.ci\verify_arch.ps1 -Path C:\install\dynamic\bin\foo.exe -Arch x64 - '"%python_exe%" ./boost/build/build.py download 1.58.0' - '"%python_exe%" ./boost/build/build.py download --cache . 1.72.0' |