14 Star 42 Fork 0

itas109/CommLite

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
appveyor.yml 1.36 KB
一键复制 编辑 原始数据 按行查看 历史
itas109 提交于 2020-10-11 22:56 +08:00 . add appveyor ci
version: 1.0.{build}
image: Visual Studio 2015
clone_depth: 1
environment:
build_type: Release
matrix:
- compiler: mingw-4.9.2-posix-win32
generator: MinGW Makefiles
cxx_path: C:\Qt\Tools\mingw492_32\bin
- compiler: mingw-5.3.0-posix-win32
generator: MinGW Makefiles
cxx_path: C:\mingw-w64\i686-5.3.0-posix-dwarf-rt_v4-rev0\mingw32\bin
- compiler: mingw-7.3.0-posix-win64
generator: MinGW Makefiles
cxx_path: C:\mingw-w64\x86_64-7.3.0-posix-seh-rt_v5-rev0\mingw64\bin
install:
- ps: |
# git bash conflicts with MinGW makefiles
if ($env:generator -eq "MinGW Makefiles")
{
$env:path = $env:path.replace("C:\Program Files\Git\usr\bin;", "")
if ($env:cxx_path -ne "")
{
$env:path = "$env:cxx_path;" + $env:path
}
}
Write-Output "APPVEYOR_BUILD_FOLDER: $env:APPVEYOR_BUILD_FOLDER"
Write-Output "Compiler: $env:compiler"
Write-Output "Generator: $env:generator"
# Write-Output "Path: $env:path"
Write-Output "Env:build_type: $env:build_type"
build_script:
- ps: |
cd $env:APPVEYOR_BUILD_FOLDER
mkdir bin
cd bin
cmake -G "$env:generator" -DCMAKE_BUILD_TYPE="$env:build_type" ..
cmake --build .
dir
notifications:
- provider: Email
to:
- itas109@qq.com
on_build_success: true
on_build_failure: true
on_build_status_changed: true
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/itas109/CommLite.git
git@gitee.com:itas109/CommLite.git
itas109
CommLite
CommLite
master

搜索帮助