加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
appveyor.yml 1.33 KB
一键复制 编辑 原始数据 按行查看 历史
version: '{build}'
skip_tags: true
skip_branch_with_pr: true
install: []
environment:
matrix:
- VSVERSION: Visual Studio 9 2008
- VSVERSION: Visual Studio 10 2010
- VSVERSION: Visual Studio 11 2012
- VSVERSION: Visual Studio 12 2013
- VSVERSION: Visual Studio 14 2015
- VSVERSION: Visual Studio 15 2017
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- VSVERSION: Visual Studio 16 2019
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
platform:
- Win32
- x64
matrix:
exclude:
- platform: x64
VSVERSION: Visual Studio 9 2008
# VS 2019 / 64-bit is tested in GitHub Actions instead.
- platform: x64
VSVERSION: Visual Studio 16 2019
configuration:
- Debug
# Removed to reduce configuration explosion.
# - RelWithDebInfo
# - MinSizeRel
- Release
build_script:
- md build
- cd build
- if NOT "%VSVERSION%"=="Visual Studio 16 2019" if "%PLATFORM%"=="x64" cmake -G "%VSVERSION% Win64" ../test
- if NOT "%VSVERSION%"=="Visual Studio 16 2019" if "%PLATFORM%"=="Win32" cmake -G "%VSVERSION%" ../test
- if "%VSVERSION%"=="Visual Studio 16 2019" cmake -G "%VSVERSION%" -A "%PLATFORM%" ../test
- msbuild /m /p:Configuration="%CONFIGURATION%" /p:Platform="%PLATFORM%" hashmap.sln
- copy %CONFIGURATION%\hashmap_test.exe hashmap_test.exe
test_script:
- hashmap_test.exe
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化