mirror of https://github.com/status-im/evmc.git
AppVeyor CI: Run more tests
This commit is contained in:
parent
1902576903
commit
7b8e411583
12
appveyor.yml
12
appveyor.yml
|
@ -11,9 +11,6 @@ environment:
|
||||||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||||
GENERATOR: "Visual Studio 15 2017 Win64"
|
GENERATOR: "Visual Studio 15 2017 Win64"
|
||||||
|
|
||||||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
||||||
GENERATOR: "Visual Studio 15 2017"
|
|
||||||
|
|
||||||
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
||||||
GENERATOR: "Visual Studio 14 2015 Win64"
|
GENERATOR: "Visual Studio 14 2015 Win64"
|
||||||
cache:
|
cache:
|
||||||
|
@ -22,12 +19,11 @@ cache:
|
||||||
before_build: |
|
before_build: |
|
||||||
if not exist build mkdir build
|
if not exist build mkdir build
|
||||||
cd build
|
cd build
|
||||||
cmake -G "%GENERATOR%" .. -DEVMC_TESTING=ON -DEVMC_EXAMPLES=ON
|
cmake -G "%GENERATOR%" .. -DBUILD_SHARED_LIBS=ON -DEVMC_EXAMPLES=ON -DEVMC_TESTING=ON -DCMAKE_INSTALL_PREFIX=C:\install
|
||||||
|
|
||||||
build:
|
build_script: |
|
||||||
project: c:/projects/evmc/build/evmc.sln
|
cmake --build . --config %CONFIGURATION% --target install
|
||||||
parallel: true
|
|
||||||
verbosity: minimal
|
|
||||||
|
|
||||||
after_build: |
|
after_build: |
|
||||||
C:\projects\evmc\build\test\Release\evmc-test.exe
|
C:\projects\evmc\build\test\Release\evmc-test.exe
|
||||||
|
C:\install\bin\evmc-vmtester.exe C:\install\bin\evmc-examplevm.dll
|
||||||
|
|
Loading…
Reference in New Issue